@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%;
}

:root {
  /* color set */
  --color-base:    #FFF;
  /* --color-main:    #E6005A; */
  --color-main:    #e52872;
  --color-accent:  #00B5DA;
  --color-text:    hsl(0, 0%, 15%);
  --color-link:    #00B5DA;
  --color-price:   #F00000;
  --color-plus:    #a08200;
  /* color loading */
  --color-loading_bg:  var(--color-base);
  --color-loading_txt: var(--color-main);
  /* color body */
  --color-body_bg:  var(--color-base);
  --color-body_txt: var(--color-text);
  /* color headline */
  --color-headline_bg:  var(--color-base);
  --color-headline_txt: var(--color-text);
  --color-headline_txt_red: var(--color-main);
  /* color title */
  --color-title_deco: var(--color-main);
  --color-title_txt:  var(--color-text);
  /* color gallery */
  --color-gallery_bg:  var(--color-base);
  --color-gallery_balloon_bg:  var(--color-main);
  --color-gallery_balloon_txt: #FFF;
  /* color sale */
  --color-sale_bg: #FFF;
  --color-sale_txt: var(--color-text);
  /* color footer */
  --color-footer_bg:  #f28989;
  --color-footer_txt: #FFF;
  --color-footer_btn_bg:  #FFF;
  --color-footer_btn_txt: var(--color-text);
  /* space set */
  --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 */
  /* fonts set */
  --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: var(--color-body_txt);
  background: var(--color-body_bg);
  text-align: justify;
  font-feature-settings: "palt";
  overflow-x: hidden;

  /* コピー禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  touch-callout:none;
  user-select:none;
}

/* ローディング中の画面 */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-loading_bg);
  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-loading_txt);
  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: #000;
  border-radius: 30px;
  margin: 0 0 8px auto;
  padding-right: 12px;
  transition: width 0.2s;
}
.share-btn .fa-twitter {
  padding-top: 1px;
  padding-left: 2px;
}

.share-btn a img {
  width:  21px;
  height: 21px;
  object-fit: contain;
}

.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: 8px;
    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;
}
.hero .inner {
  position: relative;
  width: 100%;
}
.hero .inner h1 img.bg {
  width: 100%;
  position: relative;
}
.hero .inner h1 img.logo {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;

  opacity: 0;
  transform: translateY(-30px);
}
.loaded .hero .inner h1 img.logo {
  transition: 1.5s 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}
.hero .inner h1 .coupon_badge {
  position: absolute;
  /* bottom: 2.0vw; */
  bottom: 1vw;
  right:  6.8vw;
  width:  16vw;
  height: 16vw;
  max-width:  300px;
  max-height: 300px;
}
@media (max-width: 575px) {
  .hero .inner h1 .coupon_badge {
    top:    32.8vw;
    right:  2vw;
    width:  27vw;
    height: 27vw;
    /* top: 130.3vw;
    right: 4vw;
    width: 27vw;
    height: 27vw; */
  }
}
@media (hover: hover) {
  .hero .inner h1 .coupon_badge {
    transition: 0.15s;
  }
  .hero .inner h1 .coupon_badge:hover {
    opacity: 0.85;
    scale: 1.1;
  }
}
.hero .inner h1 .coupon_badge img {
  width:  100%;
  height: 100%;
}
body:not(.loaded) .hero .inner h1 .coupon_badge img {
  opacity: 0;
  scale: 1.3;
}
body.loaded .hero .inner h1 .coupon_badge img {
  opacity: 1;
  scale: 1;
  transition: 0.5s 1s;
}

.coupon_badge {
  animation: 2s 0.8s infinite fuwafuwa;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  80% {

  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 575px) {
  @keyframes fuwafuwa {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-1.5vw);
    }
    80% {
  
    }
    100% {
      transform: translateY(0);
    }
  }
}



/* headline */
.headline {
  background: var(--color-headline_txt);
  position: relative;
  overflow: hidden;
  padding: 0;
  padding: 40px 0 60px;
  background: var(--color-headline_bg);
}
.headline .inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.headline .inner p {
  margin: 0 8vw;
}
.headline p {
  letter-spacing: 0.1em;
  font-size: 2.0vw;
  font-weight: bold;
  line-height: 2;
  /* wbrタグ用 */
  /* word-break: keep-all;  */
}
.headline .inner p + p {
  margin-top: 2.0vw;
}
.headline p span.red {
  font-size: 130%;
  font-weight: bold;
  margin: 0 0.1em;
  color: var(--color-headline_txt_red);
  line-height: 1.0;
  /* padding: 0 0.1em; */
  /* background-color: var(--color-headline_txt_red); */
}
@media (max-width: 1023px) {
  .headline p {
    font-size: 2.6vw;
  }
}
@media (max-width: 575px) {
  .headline {
    position: relative;
    overflow: hidden;
    padding: 30px 0 20px;
  }
  .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; */
  }
}

/* register */
.register {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
}
@media (max-width: 575px) {
  .register {
    margin-top: var(--space-md);
  }
}

.btn-user {
  position: relative;
  font-size: 15px;
  font-weight: bold;
  margin: 0 12px;
  display: inline-block;
  transition: 0.1s;
  line-height: 50px;
  color: #FFF;
  background: var(--color-link);
  padding: 0 15px;
  min-width: 300px;
  border-radius: calc(infinity * 1px);
  text-align: center;
}
.btn-user: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 #FFF;
}

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

.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;
  }
}



/* gallery */
.gallery {
  background: var( --color-gallery_bg);
  position: relative;
  width: 100%;
  text-align: center;
  /* padding-top: var(--space-lg); */
  padding-bottom: var(--space-lg);
  border-top: 6px;
}

.title {
  font-weight: bold;
  text-align: center;
}
.title small {
  font-size: 1.6vw;
  /* color: var(--color-title_deco); */
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-color: var(--color-title_deco);
  padding: 0.05em 0.5em;
  padding-left: 0.65em;
  line-height: 1;
  border-radius: 0.3em;
  position: relative;
}
.title small::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.5) 40%, rgba(255,255,255,0) 100%);
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.title p {
  font-size: 4vw;
  color: var(--color-title_txt);
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
}
.title p::before,
.title p::after {
  display: block;
  content: "";
  height: 4px;
  border-radius: 2px;
  flex-grow: 1;
  background-color: var(--color-title_deco);
}
.title p:before { margin-right: 4rem;}
.title p:after {  margin-left:  4rem;}
@media (max-width: 575px) {
  .title small {
    font-size: 3.8vw;
  }
  .title p {
    font-size: 8.5vw;
    padding: 0 15px;
  }
  .sale .title p {
    font-size: 7vw;
    letter-spacing: 0.075em;
  }
  .title p:before { margin-right: 2rem;}
  .title p:after {  margin-left:  2rem;}
}

.gallery_title {
  margin: 0 auto var(--space-lg);
}
@media (max-width: 575px) {
  .gallery {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }
  .gallery_title {
    margin: 0 auto var(--space-lg);
  }
}



/* gallery swiper */
.swiper-container-gallery-wrapper {
  padding: 12vw 0 12vw;
  position: relative;
  display: block;
  width: 100%;
  background: url(../img/gallery_bg.jpg) center center / cover no-repeat;
}
@media (max-width: 575px) {
  .swiper-container-gallery-wrapper {
    padding: 16vw 0 20vw;
  }
}
.swiper-container-gallery-wrapper::before,
.swiper-container-gallery-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 15vw;
  background: url(../img/gallery_separate.png) bottom center / contain no-repeat;
}
.swiper-container-gallery-wrapper::before {
  top: -1px;
  transform: rotate(180deg);
}
.swiper-container-gallery-wrapper::after {
  bottom: -1px;
}
.separate {
  position: relative;
  z-index: -10;
  transform: rotate(180deg);
  width: 100%;
  background-color: var(--color-footer_bg);
  margin-top:    -1px;
  margin-bottom: -1px;
}
.separate img {
  width: 100%;
}

.swiper-container-gallery {
  position: relative;
  width: 80%;
  margin: 0 10%;
}
@media (max-width: 575px) {
  .swiper-container-gallery {
    /* width: 180%; */
    /* margin: 0 -40%; */
    width: 210%;
    margin: 0 -55%;
  }
}
.swiper-container-gallery .swiper-wrapper {
  
}
.swiper-container-gallery .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
  aspect-ratio: 9 / 15;
}
@media (max-width: 575px) {
  .swiper-container-gallery .swiper-wrapper .swiper-slide {
    border-radius: 8px;
  }
}
.swiper-container-gallery .swiper-wrapper .swiper-slide .balloon {
  color: var(--color-gallery_balloon_txt);
  font-weight: bold;
  position: absolute;
  top:  -12px;
  left: -10px;
  /* height: 30px; */
  font-size: 16px;
  padding: 6px 18px 6px;
  background: var(--color-gallery_balloon_bg);
  border-radius: calc(infinity * 1px);
  transition: 0.3s;
}
@media (max-width: 575px) {
  .swiper-container-gallery .swiper-wrapper .swiper-slide .balloon {
    top: -10px;
    left: -6px;
    font-size: 14px;
    padding: 3px 12px 5px;
  }
}
.swiper-container-gallery .swiper-wrapper .swiper-slide .balloon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 50%;
  bottom: -8px;
  border-style: solid;
  border-color: var(--color-gallery_balloon_bg) transparent transparent transparent ;
  border-width: 10px 0 0 10px;
}
.swiper-container-gallery .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  display: block;
}
.swiper-container-gallery .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

@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;
  }

  .swiper-container-gallery :not(.swiper-slide-active, .swiper-slide-prev, .swiper-slide-next).swiper-slide .balloon {
    opacity: 0;
    transition: 0.15s;
  }
}
@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-container-gallery :not(.swiper-slide-active).swiper-slide .balloon {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.15s, transform 0s 0.15s;
  }
}

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

/* swiper スライドローディング中 */
.swiper-container-gallery .swiper-slide>a:has(:not(.swiper-lazy-loaded)) {
  background-color: hsl(0, 0%, 70%);
}
.swiper-container-gallery .swiper-slide>a:has(:not(.swiper-lazy-loaded))::before {
  content: "";
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 45px;
  aspect-ratio: 1;
  --c: no-repeat linear-gradient(#fff 0 0);
  background: 
    var(--c) 0%   50%,
    var(--c) 50%  50%,
    var(--c) 100% 50%;
  background-size: 20% 100%;
  animation: l1 1s infinite linear;
}
@keyframes l1 {
  0%  {background-size: 20% 100%,20% 100%,20% 100%}
  33% {background-size: 20% 10% ,20% 100%,20% 100%}
  50% {background-size: 20% 100%,20% 10% ,20% 100%}
  66% {background-size: 20% 100%,20% 100%,20% 10% }
  100%{background-size: 20% 100%,20% 100%,20% 100%}
}
@media (max-width: 575px) {
  .swiper-container-gallery .swiper-slide>a:has(:not(.swiper-lazy-loaded))::before {
    width: 30px;
  }
}

/* swiper ページネーション */
.swiper-container-gallery .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-container-gallery .swiper-pagination {
    bottom: 3.5%;
    width: 90px;
    height: 28px;
    font-size: 14px;
  }
}



/* plus-member オビ */
.plus-member {
  height: 40px;
  position: relative;
  background: url(../img/plus-member_wh.svg) center / contain, var(--color-plus);
  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;
  }
}



/* sale 装飾 */
.sale {
  background: var(--color-sale_bg);
  color: var(--color-sale_txt);
}

.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);
}

.sale_title .balloon {
position: relative;
color: #FFF;
font-weight: bold;
/* position: absolute; */
/* top:  -12px; */
/* left: -10px; */
/* height: 30px; */
font-size: 16px;
padding: 0.3em 0.9em;
background: var(--color-plus);
border-radius: calc(infinity * 1px);
transition: 0.3s;
display: inline-block;
margin-top: 12px;
}
.sale_title .balloon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 20%;
  top: -10px;
  border-style: solid;
  border-color: transparent var(--color-plus) transparent transparent ;
  border-width: 0 12px 12px 0;
  rotate: 180deg;
}
@media (max-width: 575px) {
  .sale_title .balloon {
    font-size: 3.0vw;
    margin-top: 8px;
  }
  .sale_title .balloon::after {
    top: -8px;
    border-width: 0 10px 10px 0;
  }
}

@media (max-width: 1023px) {
  .sale {
  }
  .sale_title, .gallery_title {
    /* width: 45%; */
  }
}
@media (max-width: 575px) {
  .sale {
  }
  .sale_title, .gallery_title {
    /* width: 70%; */
  }
  .sale_title {
    margin-top: var(--space-md);
  }
}

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



/* coupon */
.coupon_banner_wrap {
	position: fixed;
	height: auto;
	z-index: 100;
	left: 50%;
	transform: translateX(-50%);
	bottom: -200px;
	width: calc(100% - 140px);
	max-width: 320px;
}
.coupon_banner_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 575px) {
	.coupon_banner_wrap {
		width: calc(100% - 140px);
		max-width: 240px;
	}
}
@media (hover: hover) {
  .coupon_banner {
    transition: 0.15s;
		display: block;
  }
  .coupon_banner:hover {
    opacity: 0.85;
    scale: 1.05;
  }
}
.coupon {
	width: 100%;
	padding: 40px;
	display: block;
	position: relative;
	margin: 0 auto;
	background-color: var(--color-footer_bg);
}
@media (max-width: 575px) {
	.coupon {
		width: 100%;
		max-width: 1200px;
		padding: 30px 10px;
		display: block;
		position: relative;
		margin: 0 auto;
	}
}
.coupon .coupon_inner {
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 16px;
	padding: 30px;
	filter: drop-shadow(0px 0px 10px hsla(337, 78%, 53%, 0.5));
	background-color: #fff;
}
@media (max-width: 575px) {
	.coupon .coupon_inner {
		padding: 30px 10px;
	}
}
.coupon h2 {
	text-align: center;
	font-weight: bold;
	font-size: 32px;
	line-height: 1.3;
	margin-bottom: 0.75em;
}
.coupon h2 img {
	width: 90%;
	max-width: 600px;
}
.coupon h2 ~ P {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
}
.coupon h2 ~ P .strong {
	color: var(--color-main);
}
.coupon ul:not([class]) {
	text-align: center;
}
.coupon ul:not([class])>li {
	margin: 1em 0;
	line-height: 1.3;
}
.coupon ul:not([class])>li h3 {
	text-align: center;
	font-weight: bold;
	padding: 0.3em 0.8em 0.3em;
	border-radius: 2em;
	background-color: var(--color-main);
	color: #fff;
	display: block;
	width: fit-content;
	line-height: 1;
	margin: auto;
	margin-bottom: 0.5em;
}
.coupon ul.coupon_caution {
	padding: 15px 25px;
	border-radius: 10px;
	background-color: hsl(0, 0%, 95%);
	text-align: left;
	width: 100%;
	max-width: 1024px;
	margin: 30px auto;
}
@media (max-width: 575px) {
	.coupon ul.coupon_caution {
		padding: 10px;
	}
}
.coupon ul.coupon_caution h3 {
	margin-bottom: 0.75em;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.coupon ul.coupon_caution li {
	font-size: 12px;
	color: hsl(0, 0%, 30%);
	line-height: 1.5;
	margin: 0.5em 0;
}
.coupon ul.coupon_caution {
	list-style: none;
}
.coupon ul.coupon_caution li{
	text-indent: -1.0em;
	margin-left: 1em;
}
.coupon ul.coupon_caution li:before{
	content: "※";
}

.coupon a:not([class]) {
	color: var(--color-accent);
	border-bottom: 1px solid var(--color-accent);
	margin: 0 0.1em;
}
.coupon .coupon_btn-wrap {
	width: 100%;
	text-align: center;
}
.coupon .btn_sale-list {
	padding: 0.8em 2em;
	border-radius: 2em;
	background-color: var(--color-accent);
	color: #fff;
	font-weight: bold;
	text-align: center;
	display: inline-block;
}



/* footer */
footer {
  color: var(--color-footer_txt);
  text-align: center;
  padding: 70px 30px 50px;
  position: relative;
  background: var(--color-footer_bg);
}
@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-footer_btn_txt);
  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;
  background: var(--color-footer_btn_bg);
}
.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 var(--color-footer_btn_txt);
}
@media (max-width: 575px) {
  .btn-info {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .btn-info:hover {
    opacity: 0.7;
  }
  .btn-info:hover:before {
  }
}
@media (hover: none) {
  .btn-info:active {
    opacity: 0.7;
  }
  .btn-info:active:before {
  }
}



/* 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);
} */

.coupon_banner_wrap.aos-init {
  opacity: 1;
  transition: opacity 0.15s;
} 
.coupon_banner_wrap.aos-animate {
  opacity: 0;
  pointer-events: none;
}


/* sale_itemにマイクアイコン吹き出し */
.sale_item_balloon_voice {
  position: absolute;
  top:   -20px;
  right: -8px;
  width:  fit-content;
  height: 30px;
  padding-left: 0.5em;
  padding-right: 0.75em;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: var(--color-accent);
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
}
.sale_item_balloon_voice::before {
  content: "";
  position: relative;
  width:  1.2em;
  height: 1.2em;
  margin-right: 0.1em;
  background: url(../img/sale/icon_voice.svg) no-repeat center / contain;
}
.sale_item_balloon_voice::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 20px;
  bottom: -10px;
  border-style: solid;
  border-color: transparent var(--color-accent) transparent transparent;
  border-width: 0 10px 10px 0;
  rotate: -90deg;
}