@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');
@font-face {font-family: "DSEG7"; src: url("../fonts/DSEG7Classic-BoldItalic.woff") format("woff");}


html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
  /* scroll-padding-top: 0px; */
}
@media (min-width: 576px){
  html {scroll-padding-top: 0px;}
}
@media (min-width: 1024px){
  html {scroll-padding-top: 0px;}
}

:root {
  --color-base:    #e50012;
  --color-main:    #fff9eb;
  --color-accent:  #8dc21f;
  --color-sale:    #832326;
  --color-sale-btn:#FFF;
  --color-link:    #00B5DA;
  --color-price:   #FF0000;

  --space-unit: 0.8rem;
  --space-xxs:  calc( 0.5 * var(--space-unit)); /*   4 */
  --space-xs:   calc( 1   * var(--space-unit)); /*   8 */
  --space-sm:   calc( 2   * var(--space-unit)); /*  16 */
  --space-md:   calc( 3   * var(--space-unit)); /*  24 */
  --space-lg:   calc( 5   * var(--space-unit)); /*  40 */
  --space-xl:   calc( 8   * var(--space-unit)); /*  64 */
  --space-xxl:  calc(13   * var(--space-unit)); /* 104 */
  --space-3xl:  calc(21   * var(--space-unit)); /* 168 */

  --font-serif: 'Noto Serif JP', serif;
  --font-Inter: 'Inter', sans-serif;
}

body {
  position: relative;
  font-size: 1.4rem;
  font-family: 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #fff9eb;
  background: #FFF;
  text-align: justify;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

/* ローディング中の画面 */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-base);
  z-index: 1000;
  opacity: 1;
  transition: 0.5s 0.25s;
}
body.loaded::before {
  transform: translateY(-100%);
  /* opacity: 0; */
  pointer-events: none;
}
.loading {
  /* content: "loading..."; */
  font-family: sans-serif;
  color: var(--color-main);
  opacity: 1;
  z-index: 1001;
  position: fixed;
  width: 100vw;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  transition: opacity 0.5s 0.0s;
  animation: flash 0.25s 0.5s step-start infinite ;
  pointer-events: none;
}
body.loaded .loading {
  animation: flashEnd 0.5s 0.0s forwards;
  pointer-events: none;
}
@keyframes flash {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}
@keyframes flashEnd {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}



/* common */
* {
  user-select: none;
  letter-spacing: 0.075em;
  backface-visibility: hidden;/* animation時のにじみ防止 */
	-webkit-backface-visibility: hidden;/* animation時のにじみ防止 */
	-webkit-font-smoothing: antialiased;/* animation時の文字にじみ防止 */
	-moz-osx-font-smoothing: grayscale;/* animation時の文字にじみ防止 */
}

span.br {
  display: inline-block;
}

/* Microsoft Edgeで画像検索無効に */
main img {
  pointer-events: none;
}

/* 端末判定 */
@media (max-width: 575px) {
  .pc {
    display: none !important;
  }
  .tablet:not(.sp) {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 1023px) {
  .tablet ~ .pc:not(.tablet) {
    display: none !important;
  }
  .sp:not(.tablet) {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .sp {
    display: none !important;
  }
  .tablet:not(.pc) {
    display: none !important;
  }
}
/* デバイスが縦長の向き */
@media (orientation: portrait) {
  .landscape {
    display: none !important;
  }
}
/* デバイスが横長の向き */
@media (orientation: landscape) {
  .portrait {
    display: none !important;
  }
}

/* pagetop */
#page-top {
  position: fixed;
  bottom: -200px;
  right: 20px;
  margin: 0;
  padding: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-bottom: 15px;
}

@media (max-width:575px){
  #page-top {
    right: 10px;
    padding-bottom: 0;
  }
}

#page-top .pagetop-btn {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  background: rgba(0,0,0,0.5);
  border-radius: 30px;
  color: #fff;
  transition: 0.2s ease;
  margin-left: auto;
  padding-right: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#page-top .pagetop-btn img {
  margin-top: 2px;
}

#page-top .pagetop-btn::before {
  content: "";
  opacity: 0;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  #page-top .pagetop-btn:hover {
    background: #000;
    transition: width 0.2s;
    width: 120px;
  }
  #page-top .pagetop-btn:hover::before {
    content: "PageTop";
    font-size: 13px;
    margin-left: 5px;
    margin-right: 10px;
    opacity: 1;
  }
}
@media (hover: none) {
  /* #page-top .pagetop-btn:active {
    background: #000;
    transition: width 0.2s;
    width: 120px;
  }
  #page-top .pagetop-btn:active::before {
    content: "PageTop";
    font-size: 13px;
    margin-left: 5px;
    margin-right: 10px;
    opacity: 1;
  } */
}

/* shareボタン */
.share-btn a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #fff;
  z-index: 1000;
  background-color: #00acee;
  border-radius: 30px;
  margin: 0 0 8px auto;
  padding-right: 10.5px;
  transition: width 0.2s;
}
.share-btn .fa-twitter {
  padding-top: 1px;
  padding-left: 2px;
}

.share-btn a::before {
  content: "";
  opacity: 0;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .share-btn a:hover {
    transition: width 0.2s;
    width: 105px;
  }
  .share-btn a:hover::before {
    content: "SHARE";
    font-size: 13px;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
  }
}
@media (hover: none) {
  .share-btn a:active {
    transition: width 0.2s;
    width: 105px;
  }
  .share-btn a:active::before {
    content: "SHARE";
    font-size: 13px;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
  }
}

/* タイマー */
#period {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  /* pointer-events: none; */
  white-space: nowrap
}
#period .campaign-timer {
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  padding: 8px 6px 0px;
  min-width: 240px;
  min-height: 26px;
  text-align: center;
}

@media (max-width: 575px) {
  #period {
    min-width: 224px;
  }
  #period .campaign-timer {
    min-width: 224px;
  }
}

#period .view_timer {
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
  display: block;
  /* margin-bottom: 2px; */
}
@media (max-width: 575px) {
  #period .view_timer {
    font-size: 11px;
  }
}

#period #CDT {
  display: block;
  font-size: 24px;
  color: #ffe600;
  margin: 0;
  width: 100%;
}
@media (max-width: 575px) {
  #period #CDT {
    font-size: 22px;
  }
}

#period #CDT .unit {
  writing-mode: vertical-rl;
  line-height: 1;
  font-size: 46%;
  margin: 0 5px 0 2px;
  transform: skewX(-4deg);
}
#period #CDT .number {
  font-family: "DSEG7";
  position: relative;
  letter-spacing: 0;
  z-index: 1;
  /* line-height: 1; */
}
@-moz-document url-prefix() {
  /* Firefoxのみ適応 */
  #period #CDT .number {
    line-height: 1;
  }
}
#period #CDT .number::before{
  content: "88";
  color: #fff;
  opacity: 0.2;
  position: absolute;
  z-index: -1;
  width: 100%;
  overflow: hidden;
}

#btn-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px;
  width: 26px;
  height: 26px;
}
.round_btn {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;  /* 丸みの度合い */
  background: #000; /* ボタンの背景色 */
}
.round_btn::before, .round_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 66%;
  background: #fff; /* バツ印の色 */
}
.round_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.round_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

#period.close {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
}



/* header */
header {
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
}
header .logo a img {
  height: 24px;
}
@media (max-width: 1024px) {
  header {
    height: 40px;
  }
  header .logo a img {
    height: 24px;
  }
}



/* main */
main {
  overflow: hidden;
}


/* hero */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-base);
}
.hero .inner {
  position: relative;
  width: 100%;
}
.hero .inner .bg img,
.hero .inner h1 img {
  display: block;
  width: 100%;
}
.hero .bg {
  width: 100%;
}
.hero h1 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

/* swiper */
.swiper-container {
  overflow: hidden;
  position: absolute;
  top: 22%;
  width: 18%;
  height: auto;
  aspect-ratio:  9 / 15;
}
.swiper-container.left {
  left: 8%;
}
.swiper-container.right {
  right: 8%;
}
@media (max-width: 575px) {
  .swiper-container-sp {
    position: absolute;
    overflow: hidden;
    width: 106%;
    top: 54%;
    left: 50%;
    transform: translateX(-50%);
  }
  .swiper-container-sp .swiper-wrapper {
    transition-timing-function: linear !important;
  }
  .swiper-container-sp .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 9 / 15;
  }
  .swiper-container-sp .swiper-slide .swiper-slide-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .swiper-container-sp .swiper-slide .swiper-slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.swiper-container .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.swiper-container .swiper-slide .swiper-slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-container .swiper-slide .swiper-slide-inner>div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-container .swiper-slide .swiper-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-container .swiper-slide .swiper-slide-inner,
.swiper-container .swiper-slide .swiper-slide-inner>div {
  /*切り替わり中は前のスライドのアニメーションを遅らせる*/
  transition-delay: 0.5s;
}

.swiper-container .swiper-slide .swiper-slide-inner {
  transform: translateX(100%);
}
.swiper-container .swiper-slide .swiper-slide-inner>div {
  transform: translateX(-100%);
}

.swiper-container .swiper-slide-prev .swiper-slide-inner,
.swiper-container .swiper-slide-duplicate-prev .swiper-slide-inner {
  transform: translateX(-100%);
}
.swiper-container .swiper-slide-prev .swiper-slide-inner>div,
.swiper-container .swiper-slide-duplicate-prev .swiper-slide-inner>div {
  transform: translateX(100%);
}

.swiper-container .swiper-slide-active,
.swiper-container .swiper-slide-duplicate-active  {
  /*アクティブなスライドが一番上に来るように*/
  z-index: 2;
}

.swiper-container .swiper-slide-active .swiper-slide-inner,
.swiper-container .swiper-slide-active .swiper-slide-inner>div, 
.swiper-container .swiper-slide-duplicate-active .swiper-slide-inner,
.swiper-container .swiper-slide-duplicate-active .swiper-slide-inner>div {
  transition-delay: 0s;
  transition-duration: 0.5s;
  transform: translate(0%);
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}


.swiper-container-gallery {
  width: 80%;
  margin: 0 10%;
}
@media (max-width: 575px) {
  .swiper-container-gallery {
    width: 180%;
    margin: 0 -40%;
  }
}
.swiper-container-gallery .swiper-wrapper {
  
}
.swiper-container-gallery .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 9 / 15;
  border-radius: 16px;
}
@media (max-width: 575px) {
  .swiper-container-gallery .swiper-wrapper .swiper-slide {
    border-radius: 8px;
  }
}
.swiper-container-gallery .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}
.swiper-container-gallery .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 576px) {
  .swiper-container-gallery .swiper-slide {
    transition: all 0.1s, scale 0.2s;
  }
  @media (hover: hover) {
    .swiper-container-gallery :is(.swiper-container-gallery .swiper-slide-active, .swiper-container-gallery .swiper-slide-prev, .swiper-container-gallery .swiper-slide-next).swiper-slide:hover {
      /* filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.3)); */
      scale: 1.04;
      /* transition: scale 0.2s; */
      transition: scale 0.3s cubic-bezier(.6,2.4,.64,1);
    }
  }
  .swiper-container-gallery :not(.swiper-slide-active, .swiper-slide-prev, .swiper-slide-next).swiper-slide {
    filter: brightness(70%);
  }
  .swiper-container-gallery :not(.swiper-slide-active, .swiper-slide-prev, .swiper-slide-next).swiper-slide a {
    pointer-events: none;
  }
}
@media (max-width: 575px) {
  .swiper-container-gallery .swiper-slide {
    transition: all 0.3s;
  }
  .swiper-container-gallery :not(.swiper-slide-active).swiper-slide {
    scale: 0.95;
    filter: brightness(80%);
  }
  .swiper-container-gallery :is(.swiper-slide-active).swiper-slide {
    scale: 1.05;
    /* filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3)); */
  }
  .swiper-container-gallery :not(.swiper-slide-active).swiper-slide a {
    pointer-events: none;
  }
}


.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after
 {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  outline: none;
  cursor: pointer;
}
.swiper-button-prev {left:  -10.5%;}
.swiper-button-next {right: -10.5%;}
@media (max-width: 575px) {
  .swiper-button-prev {left:  24%;}
  .swiper-button-next {right: 24%;}
}
.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width:  10vw;
  height: 10vw;
  max-width: 120px;
  max-height: 75px;
  filter: drop-shadow(0 0 2vw rgba(0,0,0,0.5));
}
@media (hover: hover) {
  .swiper-button-prev,
  .swiper-button-next {
    transition: 0.15s;
  }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    filter: brightness(120%);
  }
}
@media (hover: none) {
  .swiper-button-prev:active,
  .swiper-button-next:active {
    filter: brightness(120%);
  }
}
.swiper-button-prev::before {
  left: 0;
  background: url("../img/swiper-btn-prev.svg") center / contain no-repeat;
}
.swiper-button-next::before {
  right: 0;
  background: url("../img/swiper-btn-next.svg") center / contain no-repeat;  
}
@media (max-width: 575px) {
  .swiper-button-prev::before,
  .swiper-button-next::before {
    width:  15vw;
    height: 15vw;
  }
}

/* swiper ページネーション */
.swiper-pagination {
  pointer-events: none;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 32px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #FFF;
  font-family: var(--font-Inter);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 0 2vw rgba(0,0,0,0.5));
}
@media (max-width: 575px) {
  .swiper-pagination {
    bottom: 3.5%;
    width: 90px;
    height: 28px;
    font-size: 14px;
  }
}



/* headline */
.headline {
  position: relative;
  overflow: hidden;
  padding: 0;
  padding: 60px 0 80px;
  background: var(--color-base);
}

.headline .inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.headline .inner p {
  margin: 0 6vw;
}

.headline p {
  letter-spacing: 0.1em;
  font-size: 2.0vw;
  font-weight: bold;
  line-height: 2.0;
  text-align: center;
  /* wbrタグ用 */
  /* word-break: keep-all;  */
}

.headline .inner p + p {
  margin-top: 2.0vw;
}

.headline p span.red {
  font-size: 140%;
  font-weight: bold;
  /* padding: 0 0.1em; */
  margin: 0 0.1em;
  /* background-color: var(--color-main); */
  color: #FBB03B;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .headline p {
    font-size: 2.6vw;
  }
}
@media (max-width: 575px) {
  .headline {
    position: relative;
    overflow: hidden;
    padding: 30px 0 50px;
  }
  .headline p {
    /* padding: 0 4vw; */
    /* text-align: left; */
    font-size: 4.0vw;
    line-height: 2;
  }
  .headline .inner p + p {
    margin-top: 4.0vw;
  }
  .headline p br {
    /* display: none; */
  }
}


.decoration {
  position: relative;
  width: 100%;
}

.decoration img {
  position: relative;
  width: 100%;
}



/* register */
.register {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
}

.register-inner {
}

@media (max-width: 575px) {
  .register {
    margin-top: var(--space-md);
  }
}

.btn-user {
  color: var(--color-main);
  position: relative;
  font-size: 15px;
  font-weight: bold;
  margin: 0 12px;
  display: inline-block;
  transition: 0.1s;

  color: #036eb7;
  background: #FFF;
  padding: 8px 15px;
  min-width: 260px;
  border-radius: 30px;
  text-align: center;
}

@media (max-width: 565px) {
  .register-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .btn-user {
    font-size: 13px;
  }
}

.btn-user:first-child {
  margin-bottom: 15px;
}

.btn-user i {
  margin-right: 5px;
}

@media (hover: hover) {
  .btn-user:hover {
    /* color: #000; */
    opacity: 0.7;
  }
}
@media (hover: none) {
  .btn-user:active {
    /* color: #000; */
    opacity: 0.7;
  }
}

.btn-user.plus{
  /* margin-bottom: 30px; */
}



/* plus-member */
.plus-member {
  height: 40px;
  position: relative;
  background: url(../img/plus-member_wh.svg) center / contain, var(--color-base);
  animation: slider 400s linear infinite;
  will-change: background-position;
  z-index: 20;
  /* border-top: 2px solid var(--color-base); */
  /* border-bottom: 2px solid var(--color-base); */
}
@media (max-width: 575px) {
  .plus-member {
    height: 35px;
  }
}
@keyframes slider {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -9999px 0;
  }
}

header .plus-member {
  position: absolute;
  bottom: -20px;
  right: 1.25vw;
  width: 280px;
  height: 35px;
}

@media (max-width: 1023px) {
  header .plus-member {
    display: none;
  }
}



/* gallery */
.gallery {
  position: relative;
  width: 100%;
  background: url("../img/bg.jpg") no-repeat center / cover;
  text-align: center;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xxl);
  border-top: 6px;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 16px;
  background: url(../img/border.svg) repeat-x center / contain, linear-gradient(#FBB03B,#FBB03B);
}
.gallery::before {
  top: 0;
}
.gallery::after {
  bottom: 0;
}

.gallery_title {
  margin: var(--space-md) auto var(--space-lg);
}
@media (max-width: 575px) {
  .gallery {
    padding-top: var(--space-lg);
    padding-bottom: calc(var(--space-xl) + var(--space-xs));
    background: url("../img/bg.jpg") no-repeat center / cover;
  }
  .gallery_title {
    margin: var(--space-sm) auto var(--space-md);
  }
}

.gallery-contents {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  overflow: hidden;
  padding: 24px;
  /* gap: 3px; */
}
.gallery-contents .grid-item:nth-child(n + 6) {
  display: none;
}
@media (max-width: 1024px) {
  .gallery-contents {
    grid-template-columns: repeat(3,1fr);
    padding: 16px;
  }
  .gallery-contents .grid-item:nth-child(n + 4) {
    display: none;
  }
}
@media (max-width: 575px) {
  .gallery-contents {
    grid-template-columns: repeat(2,1fr);
    padding: 8px;
  }
  .gallery-contents .grid-item:nth-child(n + 4) {
    display: block;
  }
  .gallery-contents .grid-item:nth-child(n + 5) {
    display: none;
  }
}

.gallery-contents .grid-item {
  background: #FFFFFF;
}

@media (hover: hover) {
  .gallery-contents .grid-item:hover img {
    animation: 0.4s ease both active;
  }
}
@media (hover: none) {
  .gallery-contents .grid-item:active {
    animation: 0.4s ease both active;
  }
}
@keyframes active {
  0% {
    /* opacity: 0.5; */
    filter: brightness(150%) contrast(120%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%) contrast(100%);
  }
}

.gallery-contents img {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 1 / 1.41; */
  object-fit: cover;
}



/* sale 装飾 */
.sale {
  /* padding-top: var(--space-xxl); */
  z-index: 10;
  /* background-color: #5FCACC; */
  position: relative;
  color: #000;
  padding: var(--space-xl) 25px 8px;
  background: #F15A24;
}

.sale-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  background: #FFF;
}

.sale_title, .gallery_title {
  width: 35%;
  max-width: 540px;
  margin-left:  auto;
  margin-right: auto;
  text-align: center;
}
.sale_title img, .gallery_title img {
  width: 100%;
}
.sale_title {
  margin-top: var(--space-xl);
}

@media (max-width: 1023px) {
  .sale {
    padding-top: var(--space-xl);
    padding: var(--space-xl) 15px 8px;
  }
  .sale_title, .gallery_title {
    width: 45%;
  }
}
@media (max-width: 575px) {
  .sale {
    padding-top: var(--space-lg);
    padding: var(--space-lg) 5px 8px;
  }
  .sale_title, .gallery_title {
    width: 70%;
  }
  .sale_title {
    margin-top: var(--space-md);
  }
}

.sale .inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
}



/* sale-group */
.sale-group {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: center;
  gap: 60px 3%;
  width: 100%;
  padding: 80px 7% 120px;
  overflow: hidden;
  /* background: #F2F2F2; */

  width: calc(100% + 50px);
  margin-left: -25px;
}
@media (max-width: 1200px) {
  .sale-group {
    grid-template-columns: repeat(auto-fit, 170px);
    gap: 60px 3%;
  }
}
@media (max-width: 1023px) {
  .sale-group {
    grid-template-columns: repeat(auto-fit, 150px);
    padding: 60px 30px 90px;

    width: calc(100% + 30px);
    margin-left: -15px;
    }
}
@media (max-width: 767px) {
  .sale-group {
    gap: 50px 3.5%;

    width: calc(100% + 10px);
    margin-left: -5px;
  }
}
@media (max-width: 575px) {
  .sale-group {
    grid-template-columns: repeat(auto-fit, minmax(100px,1fr));
    gap: 40px 3.5%;
    padding: 40px 15px 60px;
  }
}

.sale-item {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sale-item a {
  width: 100%;
  text-decoration: none;
}
.sale-item a:first-child {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sale-item a figure {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.sale-item a figure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30%;
  width: 100%;
  background: left bottom/contain no-repeat url("../img/sale.svg");
  display: flex;
  align-items: center;
  justify-content: center;
}
.sale-item a figure img {
  width: 100%;
  height: 100%;
  /* max-height: 282px; */
  object-fit: contain;
  transition: all 0.25s ease-in-out;
  vertical-align: bottom;
}
@media (max-width: 575px) {
  .sale-item a figure img {
    /* max-height: 200px; */
  }
}
.sale-item a dl {
  margin: 6px 0 12px;
  overflow: hidden;
  width: 100%;
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .sale-item a dl {
    margin: 4px 0 8px;
  }
}
.sale-item a dl dt {
  margin-top: 0.5em;
  font-size: 1.4rem;
  font-weight: normal;
  order: 1;
}
@media (max-width: 575px) {
  .sale-item a dl dt {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-top: 0.3em;
  }
}

.sale-item a dl dt small {
  font-size: 1.0rem;
}

.sale-item a dl dt i {
  letter-spacing: 0.05em;
  opacity: 0.5;
  margin: 0 0.2em;
}

@media (min-width: 1201px) {
  .sale-item a dl dt br {
    display: none;
  }
}
@media (max-width: 1200px) {
  .sale-item a dl dt i {
    display: none;
  }
}
.sale-item a dl dt .before {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  background: linear-gradient(transparent 0.8em, #000 0, #000 calc(0.8em + 1px), transparent 0, transparent calc(0.8em + 3px));
  /* background: linear-gradient(transparent 0.8em, #FFF 0, #FFF calc(0.8em + 1px), transparent 0, transparent calc(0.8em + 3px)); */
  /* color: #fff; */
  opacity: 0.7;
}
@media (max-width: 575px) {
  .sale-item a dl dt .before {
    font-size: 1.2rem;
  }
}

.sale-item a dl dt .after {
  letter-spacing: 0.05em;
  /* color: #fff; */
  color: var(--color-price);
  /* background-color: var(--color-sale); */
  padding: 0 3px;
  font-weight: bold;
  /* line-height: 1.8; */
}

.sale-item a dl dt .before::before,
.sale-item a dl dt .after::before {
  /* エンマークを表示 */
  content: "\0a5";
  margin-right: 0.1em;
}

.sale-item a dl dd {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .sale-item a dl dd {
    font-size: 1.3rem;
  }
}
.sale-item a dl dd:nth-of-type(2) {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
}
@media (max-width: 575px) {
  .sale-item a dl dd:nth-of-type(2) {
    font-size: 1.0rem;
  }
}

@media (hover: hover) {
  .sale-item a:hover img {
    transform: scale(1.075, 1.075);
    filter: opacity(0.8);
  }
  .sale-item a:hover dl {
    filter: opacity(0.7);
  }
}
@media (hover: none) {
  .sale-item a:active img {
    filter: opacity(0.7);
  }
  .sale-item a:active dl {
    filter: opacity(0.7);
  }
}

/* sale btn */
.btn-sample, .btn-cart {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-weight: bold;
  display: block;
  width: 100%;
  /* max-width: 180px; */
  height: 30px;
  line-height: 30px;
  margin: 0 auto 10px;
  font-size: 1.4rem;
  border-radius: 4px;
  transition: 0.15s;
}
.btn-sample i, .btn-cart i {
  padding-right: 0.75rem;
}
@media (max-width: 575px) {
  .btn-sample, .btn-cart {
    margin: 0 auto 5px;
  }
    .btn-sample i, .btn-cart i {
    display: none;
  }
}

.btn-sample {
  position: relative;
  background: var(--color-accent);
  color: var(--color-sale-btn);
}
@media (max-width: 575px) {
  .btn-sample {
    font-size: 1.2rem;
  }
}
@media (hover: hover) {
  .btn-sample:hover {
    filter: opacity(0.8);
  }
}
@media (hover: none) {
  .btn-sample:active {
    filter: opacity(0.8);
  }
}
.btn-cart {
  background: var(--color-accent);
  color: var(--color-sale-btn);
  border: none;
}
@media (max-width: 575px) {
  .btn-cart {
    font-size: 1.1rem;
  }
}
@media (hover: hover) {
  .btn-cart:hover {
    filter: opacity(0.8);
  }
}
@media (hover: none) {
  .btn-cart:active {
    filter: opacity(0.8);
  }
}

.btn-browser,.btn-app {
  background: #ff0060;
  color: #fff;
}
@media (max-width: 575px) {
  .btn-browser,.btn-app {
    font-size: 1.2rem;
  }
}
@media (hover: hover) {
  .btn-browser:hover,.btn-app:hover {
    filter: opacity(0.8);
  }
}
@media (hover: none) {
  .btn-browser:hover,.btn-app:active {
    filter: opacity(0.8);
  }
}

.btn-sample::before
,.btn-cart::before
,.btn-browser::before
,.btn-app::before
 {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* clip-path: polygon(100% 0, 0% 100%, 100% 100%); */
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
  border-radius: 4px;
}

.btn-browser::before
,.btn-app::before
 {
  background: rgba(255, 255, 255, 0.3);
  /* clip-path: polygon(0 0, 0% 100%, 100% 0); */
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  mix-blend-mode: screen;
}



/* footer */
footer {
  color: hsl(0, 0%, 100%);
  text-align: center;
  padding: 70px 30px 50px;
  position: relative;
  background: #F15A24;
}
@media (max-width: 575px) {
  footer {
    padding: 40px 20px 30px;
  }
}

footer .inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto 0;
  z-index: 10;
}

footer .register {
  padding-top: 40px;
}
@media (max-width: 575px) {
  footer .register {
    padding-top: 30px;
  }
}
footer .footer-info {
  padding: 0 0 40px;
  /* border-top: 1px solid rgba(0, 0, 0, 0.2); */
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
footer .footer-inner {
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  footer .footer-inner {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
footer h4 {
  margin-bottom: 1em;
  font-size: 2rem;
  font-weight: bold;
}
footer p {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (max-width: 575px) {
  footer h4 {
    font-size: 1.8rem;
  }
    footer p {
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.7;
  }
}
footer .logo {
  margin: 2.5em 0 1.5em;
}
@media (max-width: 575px) {
  footer .logo {
    text-align: center;
  }
}
footer .logo a img {
  width: 200px;
  height: auto;
}
footer .copyright,
footer address {
  opacity: 1;
}
footer .copyright {
  font-size: 1.2rem;
}
footer address {
  margin-top: 1em;
  font-size: 1.1rem;
}
@media (max-width: 575px) {
  footer .inner {
    padding: 0;
  }
}

/* footer-btn */
.btn-info {
  /* color: hsl(0, 0%, 100%); */
  color: var(--color-base);
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  transition: 0.15s ease;
  display: inline-block;
  border: none;
  /* border: 2px solid #FFF; */
  background: #FFF;
}
.btn-info:before {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 5px solid transparent;
	/* border-left: 5px solid rgba(255, 255, 255, 0.5); */
	border-left: 5px solid var(--color-base);
}
@media (max-width: 575px) {
  .btn-info {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .btn-info:hover {
    opacity: 0.7;
    /* background: rgba(255, 255, 255, 0.3);; */
  }
  .btn-info:hover:before {
    /* border-left: 5px solid rgba(255, 255, 255, 1); */
  }
}
@media (hover: none) {
  .btn-info:active {
    background: rgba(255, 255, 255, 0.3);;
  }
  .btn-info:active:before {
    border-left: 5px solid rgba(255, 255, 255, 1);
  }
}



/* lenis推奨 */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
} 



/* AOS アニメーション */
.aos-init {
}
.aos-animate {
}

.aos-init {
  will-change: opacity,transform;
  opacity: 0;
  transform: translateY(30px);
  transition: 
  opacity .6s 0s,
  transform .6s 0s;
}
.aos-animate {
  opacity: 1;
  transform: translateY(0);
}



/* end版 */
#period {
  display: none;
}

.sale-item a dl dt .before {
  background: none;
  opacity: 1;
  font-size: 100%;
}
@media (max-width: 575px) {
  .sale-item a dl dt .before {
    font-size: 100%;
  }
}

.sale-item a figure::after,
.sale-item dl dt i,
.sale-item dl dt .after{
  display: none;
}
