@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:       #00C7D9;
  --color-baseDark:   #009DAC;
  --color-main:       #FF1966;
  --color-accent:     #00C7D9;
  --color-text:       #222222;
  --color-link:       #00B5DA;
  --color-price:      #FF1966;
  --color-plus:       #a08200;
  /* color loading */
  --color-loading_bg:  var(--color-baseDark);
  --color-loading_txt: #fff;
  /* 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: #fff;
  --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: var(--color-baseDark);
  --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);
}



/* headline */
.headline {
  color: 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 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-size: 120%;
  font-weight: bold;
  margin: 0 0.1em;
  color: #fff;
  line-height: 1.6;
  padding: 0 0.2em 0.05em;
  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: 20px 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; */
  }
}

.headline p small {
  font-size: 50%;
  vertical-align: text-top;
}
@media (max-width: 575px) {
  .headline p small {
    font-size: 11px;
  }
}

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

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

/* scroll-infinity */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(-50%);
  }
    to {
    transform: translateX(-150%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
    to {
    transform: translateX(0);
  }
}
.scroll-infinity {
  padding-top: 40px;
}
.scroll-infinity:nth-of-type(1) {
  padding-top: 0;
  padding-bottom: 20px;
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  will-change: transform;
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
}
.scroll-infinity__list--right {
  will-change: transform;
  animation: infinity-scroll-right 60s infinite linear 0.5s both;
}
.scroll-infinity__item {
  /* width: calc(100vw / 0.2); */
  max-width: 2398px;
  width: 500vw;
}
.scroll-infinity__item>img {
  width: 100%;
}


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

.title {
  font-weight: bold;
  text-align: center;
}
.title small {
  font-size: 1.6vw;
  color: var(--color-title_deco);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.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: var(--space-xl) auto var(--space-xxl);
}
@media (max-width: 575px) {
  .gallery {
    /* padding-top: var(--space-lg); */
    padding-bottom: calc(var(--space-xl) + var(--space-sm));
  }
  .gallery_title {
    margin: var(--space-xl) auto var(--space-xl);
  }
}



/* gallery swiper */
.swiper-container-gallery {
  width: 80%;
  margin: 0 10%;
  position: relative;
}
.swiper-container-gallery::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 4px;
  background-color: #E0B360;
}
@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;

  transform-origin: top center;
}
@media (max-width: 575px) {
  .swiper-container-gallery .swiper-wrapper .swiper-slide {
  }
}
.swiper-container-gallery .swiper-wrapper .swiper-slide::before,
.swiper-container-gallery .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  top: -7%;
  left: 50%;
  width:  12%;
  height: 12%;
  transform: translateX(-50%);
  pointer-events: none;
}
.swiper-container-gallery .swiper-wrapper .swiper-slide::before {
  background: url("../img/gallery-clip-back.svg") top center / contain no-repeat;
  z-index: -1;
}
.swiper-container-gallery .swiper-wrapper .swiper-slide::after {
  background: url("../img/gallery-clip-front.svg") top center / contain no-repeat;
}
.swiper-container-gallery .swiper-wrapper .swiper-slide .balloon {
  color: var(--color-gallery_balloon_txt);
  font-weight: bold;
  position: absolute;
  top:  -1%;
  left: -4%;
  /* height: 30px; */
  font-size: 1.3vw;
  padding: 0.3em 1em 0.4em;
  background: var(--color-gallery_balloon_bg);
  border-radius: calc(infinity * 1px);
  transition: 0.3s;
  min-width: 5vw;
  z-index: 10;
  /* rotate: -10deg; */
}
.swiper-container-gallery .swiper-wrapper .swiper-slide .balloon small {
  display: block;
  /* vertical-align: 0.2em; */
}
@media (max-width: 575px) {
  .swiper-container-gallery .swiper-wrapper .swiper-slide .balloon {
    top:  -2%;
    left: -8%;
    font-size: 3.6vw;
  }
}
.swiper-container-gallery .swiper-wrapper .swiper-slide .balloon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: calc(50% - 4px);
  bottom: -8px;
  border-style: solid;
  border-color: var(--color-gallery_balloon_bg) transparent transparent transparent ;
  border-width: 8px 0 0 8px;
}
.swiper-container-gallery .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  border: solid #FFF;
  border-width: 24px 12px;
  border-width: 2.2vw 1.1vw;
  background-color: #e6e6e6;
}
.swiper-container-gallery .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .swiper-container-gallery .swiper-wrapper .swiper-slide a {
    border-width: 5vw 2.5vw;
  }
}

@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-container-gallery .swiper-rtl .swiper-button-next:after,
.swiper-container-gallery .swiper-button-next:after, .swiper-container-gallery .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::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-pagination {
  pointer-events: none;
  position: absolute;
  bottom: 3.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: -2%;
    width: 90px;
    height: 28px;
    font-size: 14px;
  }
}

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



/* 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;
  position: relative;
  z-index: 20;
}
.sale_title img, .gallery_title img {
  /* width: 100%; */
  width: 50%;
  max-width: 540px;
}
@media (max-width: 575px) {
  .sale_title img, .gallery_title img {
    width: 75%;
  }
}
.sale_title {
  margin-top: var(--space-xxl);
}

.sale_title .balloon {
position: relative;
color: #FFF;
font-weight: bold;
/* position: absolute; */
/* top:  -12px; */
/* left: -10px; */
/* height: 30px; */
font-size: 1.5vw;
padding: 6px 16px 6px;
background: var(--color-plus);
border-radius: calc(infinity * 1px);
transition: 0.3s;
display: inline-block;
margin-top: 16px;
}
.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 10px 10px 0;
  rotate: 180deg;
}
@media (max-width: 575px) {
  .sale_title .balloon {
    font-size: 3.5vw;
    margin-top: 12px;
  }
  .sale_title .balloon::after {
    top: -8px;
    border-width: 0 8px 8px 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-xl);
  }
}

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



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



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