@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%;
}
@media (min-width: 576px){
  html {
    font-size: 75%;
  }
}
@media (min-width: 1024px){
}

:root {
  --color-base:        #E2AF94;
  --color-base-dark:   hsl(21, 45%, 58%);
  --color-main:        #FFF;
  --color-accent:      #000;
  --color-sale:        #FD0061;
  --color-sale-btn:    #FFF;
  --color-link:        #00B5DA;
  --color-price:       #FF0000;

  --color-category01:  #D98D9A;
  --color-category02:  #9986BF;
  --color-category03:  #BFB169;
  --color-category04:  #7CBFB4;

  --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: #FFF;
  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-main);
  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-base-dark);
  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: 576px) {
  .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;
  background: var(--color-base);
}


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



/* headline */
.headline {
  position: relative;
  overflow: hidden;
  padding: 0;
  padding: 60px 0 80px;
}
.headline .inner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.headline .inner p {
  margin: 0 20px;
}
.headline p {
  letter-spacing: 0.1em;
  font-size: 24px;
  font-weight: bold;
  line-height: 2.0;
  text-align: center;
  /* wbrタグ用 */
  /* word-break: keep-all;  */
}
.headline .inner p + p {
  margin-top: 20px;
}
.headline p span.red {
  font-size: 140%;
  font-weight: bold;
  padding: 0 0.2em 0.1em;
  margin: 0 0.2em;
  background-color: var(--color-sale);
  line-height: 2.0;
}
.headline p span.category {
  padding: 2px 12px 4px;
  border-radius: 30px;
  margin-right: 0.5em;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  font-size: 115%;
  display: inline-block;
  line-height: 1.4;
}
.headline p span.category::before {
  content: "#";
}
.headline p span.category:nth-of-type(1) {  background: var(--color-category01);}
.headline p span.category:nth-of-type(2) {  background: var(--color-category02);}
.headline p span.category:nth-of-type(3) {  background: var(--color-category03);}
.headline p span.category:nth-of-type(4) {  background: var(--color-category04);}

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



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

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

  color: var(--color-base-dark);
  background: #FFF;
  padding: 8px 15px;
  min-width: 260px;
  border-radius: 30px;
  text-align: center;
}

@media (max-width: 575px) {
  .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;
  }
}



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



/* menu */
.menu {
  position: relative;
  width: 100%;
  text-align: center;
  border-top:    solid 8px #FFF;
  border-bottom: solid 8px #FFF;
  overflow: hidden;
}
.menu_title {
  width: 40vw;
  margin-bottom: 5vw;
}
.menu ol {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6vw;
  z-index: 20;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.menu ol li a {
  font-size: 5vw;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 40px;
  width: fit-content;
  display: block;
}
.menu ol li:nth-of-type(1) a {background-color: var(--color-category01);}
.menu ol li:nth-of-type(2) a {background-color: var(--color-category02);}
.menu ol li:nth-of-type(3) a {background-color: var(--color-category03);}
.menu ol li:nth-of-type(4) a {background-color: var(--color-category04);}

@media (min-width: 576px) {
  .menu {}
  .menu_title {
    width: 25vw;
    margin-bottom: 3.75vw;
  }
  .menu ol {
    left: 12vw;
    gap: 2vw;
  }
  .menu ol li a {
    font-size: 2.5vw;
    padding: 0.5vw 2vw;
    border-radius: 20vw;
  }
}

@media (min-width: 1024px) {
  .menu {
    height: 728px;
    padding: 0 calc(50vw - 50%);
  }
  .menu_title {
    width: 256px;
    margin-bottom: 38px;
  }
  .menu ol {
    left: 12%;
    gap: 20px;
  }
  .menu ol li a {
    font-size: 26px;
    padding: 5px 20px;
    border-radius: 40px;
  }
}

/* swiper */
.menu-bg {
  width: 100%;
  height: 141vw;
  position: relative;
}
.swiper-container-main,
.swiper-container-bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper-container-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  mix-blend-mode: overlay;
}
.swiper-container-bg .swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.8;
}
.swiper-container-bg .swiper-slide[aria-label="1 / 4"]:after {background: var(--color-category01);}
.swiper-container-bg .swiper-slide[aria-label="2 / 4"]:after {background: var(--color-category02);}
.swiper-container-bg .swiper-slide[aria-label="3 / 4"]:after {background: var(--color-category03);}
.swiper-container-bg .swiper-slide[aria-label="4 / 4"]:after {background: var(--color-category04);}

.swiper-container-main {
  position: absolute;
  width: 57%;
  height: 80%;
  top:  10%;
  right: 6%;
  z-index: 10;
}

.swiper-wrapper {
  position: relative;
}
.swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}
.swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 576px) {
  .menu-bg {
    height: 71vw;
  }
  .swiper-container-main,
  .swiper-container-bg {
  }
  .swiper-container-bg::before {
  }
  .swiper-container-bg .swiper-slide::after {
  }
  .swiper-container-bg .swiper-slide[aria-label="1 / 4"]:after {}
  .swiper-container-bg .swiper-slide[aria-label="2 / 4"]:after {}
  .swiper-container-bg .swiper-slide[aria-label="3 / 4"]:after {}
  .swiper-container-bg .swiper-slide[aria-label="4 / 4"]:after {}
  
  .swiper-container-main {
    width: 40%;
    height: 90%;
    top:  5%;
    right: 12%;
  }
  .swiper-wrapper {
  }
  .swiper-wrapper .swiper-slide {
  }
  .swiper-wrapper .swiper-slide {
  }
  .swiper-wrapper .swiper-slide img {
  }
}

@media (min-width: 1024px) {
  .menu-bg {
    height: 100%;
    width: 1024px;
    margin: 0 auto;
  }
  .swiper-container-main,
  .swiper-container-bg {
  }

  .swiper-container-bg {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .swiper-container-bg::before {
  }
  .swiper-container-bg .swiper-slide::after {
  }
  .swiper-container-bg .swiper-slide[aria-label="1 / 4"]:after {}
  .swiper-container-bg .swiper-slide[aria-label="2 / 4"]:after {}
  .swiper-container-bg .swiper-slide[aria-label="3 / 4"]:after {}
  .swiper-container-bg .swiper-slide[aria-label="4 / 4"]:after {}
  
  .swiper-container-main {
  }
  .swiper-wrapper {
  }
  .swiper-wrapper .swiper-slide {
  }
  .swiper-wrapper .swiper-slide {
  }
  .swiper-wrapper .swiper-slide img {
  }
}



/* sale 装飾 */
.sale {
  z-index: 10;
  position: relative;
  color: #FFF;
}
.sale-wrap {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.sale_title {
  width: 100%;
  margin-left:  auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: -5vw;
}
.sale_title img img {
  width: 100%;
}
.sale .inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .sale {
  }
  .sale-wrap {
  }
  .sale_title {
    width: 40vw;
    /* margin-bottom: -5vw; */
  }
  .sale_title img img {
  }
  .sale .inner {
  }
}

@media (min-width: 1024px) {
  .sale {
  }
  .sale-wrap {
  }
  .sale_title {
    width: 410px;
    margin-bottom: -50px;
  }
  .sale_title img img {
  }
  .sale .inner {
  }
}


/* sale-group */
.sale-group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 21.3vw;
  padding: 21.3vw 0 26.6vw;
  border-bottom: solid 8px #FFF;
}
.sale-group:nth-of-type(1) {background-color: var(--color-category01);}
.sale-group:nth-of-type(2) {background-color: var(--color-category02);}
.sale-group:nth-of-type(3) {background-color: var(--color-category03);}
.sale-group:nth-of-type(4) {background-color: var(--color-category04);}

.sale-list {
  width: 100%;
}
.sale-list .sale-item-wrap {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
}
.sale-list:nth-of-type(odd) .sale-item-wrap {
  flex-direction: row;
}
.sale-sample {
  position: relative;
  width: 80%;
  margin-left: -6vw;
  aspect-ratio: 1 / 1.618;
  overflow: hidden;
  z-index: 0;
}
.sale-list:nth-of-type(odd) .sale-sample {
  border-radius: 40vw;
}
.sale-sample::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.sale-sample::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 75%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.sale-sample img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sale-item {
  position: absolute;
  text-align: center;
  width: 28.57vw;
  height: auto;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  top: 25vw;
}
.sale-list:nth-of-type(odd) .sale-item  {
  right: 10vw;
}
.sale-list:nth-of-type(even) .sale-item  {
  left: 10vw;
}
.sale-item p.name {
  white-space: nowrap;
  position: absolute;
  top: -18vw;
  font-size: 8.5vw;
  font-weight: bold;
  letter-spacing: 0.025em;
}
.sale-item p.name small {
  font-size: 50%;
}
.sale-list:nth-of-type(odd) .sale-item p.name {
  text-align: right;
  right: -5vw;
}
.sale-list:nth-of-type(even) .sale-item p.name {
  text-align: left;
  left:  -5vw;
}

.sale-comment {
  position: relative;
  z-index: 10;
  width: 90%;
  margin: -12vw 5% 0;
  padding: 4%;
  border-radius: 16px;
  border: solid 3px #FFF;
}
.sale-comment:before {
  content: "";
  position: absolute;
  top: -20px;
  left: 80%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-bottom: 15px solid #FFF;
}
.sale-list:nth-of-type(odd) .sale-comment:before {
  left: 20%;
}
.sale-comment p {
  font-weight: bold;
}

.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%;
  object-fit: contain;
  transition: all 0.25s ease-in-out;
  vertical-align: bottom;
}
.sale-item a dl {
  margin: 4px 0 8px;
  /* overflow: hidden; */
  width: 100%;
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  text-align: left;
}
.sale-item a dl dt {
  margin-top: 0.3em;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: normal;
  order: 1;
  white-space: nowrap;
}
.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;
  display: none;
}
.sale-item a dl dt .before {
  font-size: 1.2rem;
  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;
}
.sale-item a dl dt .after {
  letter-spacing: 0.05em;
  /* color: #fff; */
  color: #FFF;
  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.3rem;
  letter-spacing: 0.05em;
  overflow: hidden;

  /* 単一行 */
  /* text-overflow: ellipsis; */
  /* white-space: nowrap; */

  /* 複数行 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@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);
  }
}

@media (min-width: 576px) {
  .sale-group {
    gap: 14vw;
    padding: 8vw 0 14vw;
  }
  .sale-group:nth-of-type(1) {}
  .sale-group:nth-of-type(2) {}
  .sale-group:nth-of-type(3) {}
  .sale-group:nth-of-type(4) {}
  
  .sale-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .sale-list .sale-item-wrap {
    display: contents;
  }
  .sale-list:nth-of-type(odd) .sale-item-wrap {
  }
  .sale-sample {
    width: 50%;
    margin: 0 6vw;
  }
  .sale-list:nth-of-type(even) .sale-sample {
    margin-left: auto;
    /* border-radius: 40vw; */
  }
  .sale-sample::before {
  }
  .sale-sample::after {
  }
  .sale-sample img {
  }
  .sale-item {
    /* width: 28.57vw; */
    /* height: auto; */
    /* display: flex; */
    /* flex-direction: column; */
    justify-content: center;
    top: 0;
    
    align-items: center;
    position: relative;
    margin: auto 0 15%;
  }
  .sale-list:nth-of-type(odd) .sale-item  {
    right: auto;
  }
  .sale-list:nth-of-type(even) .sale-item  {
    left: 10vw;
    order: -1;
  }
  .sale-item p.name {
    position: relative;
    top: 0;
    font-size: 6vw;
    letter-spacing: 0.1em;

    text-align: center;
    margin-bottom: 3.5vw;
  }
  .sale-item p.name small {
  }
  .sale-list:nth-of-type(odd) .sale-item p.name {
    /* text-align: right; */
    right: 0;
  }
  .sale-list:nth-of-type(even) .sale-item p.name {
    /* text-align: left; */
    left:  0;
  }
  
  .sale-comment {
    /* width: 33.57vw; */
    width: 45vw;
    margin: -10% 7.5% auto;
    padding: 1.5vw;
    /* border-radius: 16px; */
    /* border: solid 3px #FFF; */
  }
  .sale-list:nth-of-type(odd) .sale-comment {
    margin-left: auto;
  }
  .sale-comment:before {
    content: none;
    position: absolute;
    top: -30px;
    left: 80%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-bottom: 22px solid #FFF;
  }
  .sale-list:nth-of-type(odd) .sale-comment:before {
    left: 20%;
  }
  .sale-comment p {
    font-size: 1.6vw;
    line-height: 1.8;
  }
  
  .sale-item a {
  }
  .sale-item a:first-child {
  }
  .sale-item a figure {
    width: 80%;
  }
  .sale-item a figure::after {
  }
  .sale-item a figure img {
  }
  .sale-item a dl {
    margin: 1vw 0 1vw;
    text-align: center;
  }
  .sale-item a dl dt {
    margin-top: 0.5vw;
    font-size: 1.5vw;
  }
  .sale-item a dl dt small {
    font-size: 1vw;
  }
  .sale-item a dl dt i {
    display: inline-block;
  }
  .sale-item a dl dt br {
    display: none;
  }
  .sale-item a dl dt .before {
    font-size: 1.2vw;
  }
  .sale-item a dl dt .after {
    padding: 0 1vw;
  }
  .sale-item a dl dt .before::before,
  .sale-item a dl dt .after::before {
  }
  .sale-item a dl dd {
    font-size: 1.5vw;
    font-weight: bold;
  }
}

@media (min-width: 1024px) {
  .sale-group {
    gap: 144px;
    padding: 82px 0 144px;
  }
  .sale-group:nth-of-type(1) {}
  .sale-group:nth-of-type(2) {}
  .sale-group:nth-of-type(3) {}
  .sale-group:nth-of-type(4) {}
  
  .sale-list {
    width: 1024px;
    margin: 0 auto;
  }
  .sale-list .sale-item-wrap {
  }
  .sale-list:nth-of-type(odd) .sale-item-wrap {
  }
  .sale-sample {
    margin: 0 6%;
  }
  .sale-list:nth-of-type(even) .sale-sample {
  }
  .sale-sample::before {
  }
  .sale-sample::after {
  }
  .sale-sample img {
  }
  .sale-item {
    width: 28.57%;
  }
  .sale-list:nth-of-type(odd) .sale-item  {
  }
  .sale-list:nth-of-type(even) .sale-item  {
    left: 10%;
    order: -1;
  }
  .sale-item p.name {
    font-size: 61px;
    margin-bottom: 36px;
  }
  .sale-item p.name small {
  }
  .sale-list:nth-of-type(odd) .sale-item p.name {
  }
  .sale-list:nth-of-type(even) .sale-item p.name {
  }
  
  .sale-comment {
    width: 45%;
    padding: 15px;
  }
  .sale-list:nth-of-type(odd) .sale-comment {
  }
  .sale-comment:before {
  }
  .sale-list:nth-of-type(odd) .sale-comment:before {
  }
  .sale-comment p {
    font-size: 16px;
  }
  
  .sale-item a {
  }
  .sale-item a:first-child {
  }
  .sale-item a figure {
    width: 80%;
  }
  .sale-item a figure::after {
  }
  .sale-item a figure img {
  }
  .sale-item a dl {
    margin: 10px 0 10px;
    text-align: center;
  }
  .sale-item a dl dt {
    margin-top: 5px;
    font-size: 16px;
  }
  .sale-item a dl dt small {
    font-size: 11px;
  }
  .sale-item a dl dt i {
  }
  .sale-item a dl dt br {
    display: none;
  }
  .sale-item a dl dt .before {
    font-size: 14px;
  }
  .sale-item a dl dt .after {
    padding: 0 5px;
  }
  .sale-item a dl dt .before::before,
  .sale-item a dl dt .after::before {
  }
  .sale-item a dl dd {
    font-size: 16px;
    font-weight: bold;
  }
}



/* 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: 34px;
  line-height: 34px;
  margin: 5px auto 5px;
  font-size: 1.3rem;
  border-radius: 50px;
  transition: 0.15s;
  scale: 1.12;
}
.btn-sample i, .btn-cart i {
  padding-right: 0.5rem;
  scale: 1.2;
}

.btn-sample {
  position: relative;
  background: var(--color-accent);
  color: var(--color-sale-btn);
}
@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 (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 (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(255, 255, 255, 0.2); */
  /* clip-path: polygon(100% 0, 0% 100%, 100% 100%); */
  /* clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%); */
  /* clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); */
  mix-blend-mode: screen;
  pointer-events: none;
  border-radius: 50px;
}

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

@media (min-width: 576px) {
  .btn-sample, .btn-cart {
    width:     16vw;
    max-width: 16vw;
    height:      4.5vw;
    line-height: 4.5vw;
    margin: 0vw auto;
    font-size: 1.3rem;
    border-radius: 3vw;
    transition: 0.15s;
    scale: 1;
    font-size: 1.6vw;
  }
  .btn-sample i, .btn-cart i {
    padding-right: 0.5rem;
    scale: 1.2;
  }
  
  .btn-sample {
    position: relative;
    background: var(--color-accent);
    color: var(--color-sale-btn);
  }
  @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 (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 (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(255, 255, 255, 0.2); */
    /* clip-path: polygon(100% 0, 0% 100%, 100% 100%); */
    /* clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0% 100%); */
    /* clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); */
    mix-blend-mode: screen;
    pointer-events: none;
    border-radius: 50px;
  }
  
  .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;
  }
}

@media (min-width: 1024px) {
  .btn-sample, .btn-cart {
    width:     164px;
    max-width: 164px;
    height:      46px;
    line-height: 46px;
    border-radius: 23px;
    font-size: 18px;
  }
}


/* footer */
footer {
  color: hsl(0, 0%, 100%);
  text-align: center;
  padding: 70px 30px 50px;
  position: relative;
  background: var(--color-base-dark);
}
@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-dark);
  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: 25px;
  transition: 0.15s ease;
  display: inline-block;
  border: none;
  /* border: 2px solid #FFF; */
  background: rgba(255, 255, 255, 1);
}
.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-dark);
}
@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:not(.sale-list):not(.menu) {
  will-change: opacity,transform;
  opacity: 0;
  transform: translateY(30px);
  transition: 
  opacity .6s 0s,
  transform .6s 0s;
}
.aos-animate:not(.sale-list):not(.menu) {
  opacity: 1;
  transform: translateY(0);
}

.aos-init .sale-sample,
.aos-init .sale-item,
.aos-init .sale-comment {
  will-change: opacity,transform;
  opacity: 0;
  transform: translateY(30px);
  transition: 
  opacity .6s 0s,
  transform .6s 0s;
}
.aos-init .sale-sample  {transition-delay: 0.0s;}
.aos-init .sale-item    {transition-delay: 0.3s;}
.aos-init .sale-comment {transition-delay: 0.6s;}
.aos-animate .sale-sample,
.aos-animate .sale-item,
.aos-animate .sale-comment {
  opacity: 1;
  transform: translateY(0);
}


.aos-init .swiper-container-main,
.aos-init .menu_title,
.aos-init.menu ol li {
  will-change: opacity,transform;
  opacity: 0;
  transform: translateY(30px);
  transition: 
  opacity .6s 0s,
  transform .6s 0s;
}
.aos-init .swiper-container-main    {transition-delay: 0.0s;}
.aos-init .menu_title               {transition-delay: 0.3s;}
.aos-init.menu ol li:nth-of-type(1) {transition-delay: 0.5s;}
.aos-init.menu ol li:nth-of-type(2) {transition-delay: 0.6s;}
.aos-init.menu ol li:nth-of-type(3) {transition-delay: 0.7s;}
.aos-init.menu ol li:nth-of-type(4) {transition-delay: 0.8s;}
.aos-animate .swiper-container-main,
.aos-animate .menu_title,
.aos-animate.menu ol li {
  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 a dl dt i,
.sale-item dl dt .after{
  display: none;
}
