@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=Noto+Serif+JP:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');
@font-face {font-family: "DSEG7"; src: url("../fonts/DSEG7Classic-BoldItalic.woff") format("woff");}


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

:root {
  --color-base:    #cf46cf;
  --color-base-rgb: 207, 70, 207;
  --color-main:    #FFF;
  --color-accent:  #caa846;
  --color-sale:    #B41118;
  --color-sale-btn:rgba(255, 255, 255, 0.2);
  --color-link:    #FFF;
  --color-grajapa: #00b3d6;

  --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;
  
  --height-header: 40px;
  --height-svh: calc(var(--vh, 1vh) * 100);
  /* --height-contents: calc(var(--height-svh) - var(--height-header)); */
  --height-contents: calc(100vh - var(--height-header));
}

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: var(--color-base);
  text-align: left;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

/* ローディング中の画面 */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-base);
  z-index: 1000;
  opacity: 1;
  transition: 0.5s 0.25s;
}
body.loaded::before {
  transform: translateY(-100%);
  /* opacity: 0; */
  pointer-events: none;
}
.loading {
  /* content: "loading..."; */
  font-family: sans-serif;
  color: #FFF;
  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;
}

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: var(--height-header);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
}
header .logo a img {
  height: 24px;
}
@media (max-width: 1024px) {
  header {
  }
  header .logo a img {
    height: 24px;
  }
}



/* main */
main {
  /* overflow: hidden; */
}
@media (orientation: portrait) {
  main, .hero {
    overflow: hidden;
  }
}


/* hero */
.hero {
  position: relative;
  width: 100%;
  /* overflow: hidden; */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: var(--space-xxl);

  /* padding: 0 5vw; */
}

.bg {
  position: fixed;

  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  width: 100%;
  z-index: -100;
  /* height: 100vh; */
  background: url(../img/bg.jpg) center / cover no-repeat;
}

.bg .bg-inner {
  width: 110%;
  height: 110vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 1fr);
  overflow: hidden;
  gap: 1vw;
  mix-blend-mode: multiply;
  mix-blend-mode: overlay;
}

.bg .bg-inner .bg-thumbnail {
  opacity: 0.15;
  aspect-ratio: 1 / 1.666;
}

.bg .bg-inner .bg-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero>.inner {
  /* flex: 1; */
  top: 0;
  position: relative;
  width: 100%;
  max-width: 60%;
  overflow: hidden;
  margin-left: 3vw;
}

.hero .hero-image {
  position: relative;
  width: 100%;
  height: var(--height-contents);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .hero-image .title {
  /* position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-50%); */
  width:  calc(100% - 8vw);
  height: 80%;
  /* margin-bottom: 8%; */
  object-fit: contain;

  opacity: 0;
  transform: translateY(15px);
}
.loaded .hero .hero-image .title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s .5s, transform 1s .5s;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.15));
}

.hero .hero-image .scroll {
  width: 60px;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  display: grid;
  place-content: center;

  opacity: 0;
  translate: 0 -8px;
}
.loaded .hero .hero-image .scroll {
  opacity: 1;
  translate: 0 0;
  transition: opacity .8s 1.5s, translate .8s 1.5s;
  animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 2s infinite alternate;
}

@keyframes arrow {
  0% {
    opacity: 1;
    translate: 0 0;
  }

  100% {
    opacity: 0.5;
    translate: 0 -8px;
  }
}

.hero .slider {
  top: var(--height-header);
  position:sticky;
  width: auto;
  height: var(--height-contents);
  aspect-ratio: 1 / 1.48;
  /* position: relative; */
  overflow: hidden;
  padding: 3.5vw;
  
  margin-right: 3vw;
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .slider .slider-inner {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.618;
}
/* swiper */
.hero .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
}
.hero .swiper-container.photo {
  overflow: hidden;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.3);
}

.hero .swiper-wrapper {
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
}

.hero .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.hero .swiper-container.photo::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.3) 100%);
}

.hero .swiper-container.photo .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .slider-deco-txt {
  position: absolute;
  top: -2%;
  left: -4%;
  font-family: var(--font-Inter);
  font-size: 1vw;
  line-height: 1.4;
}

.hero .slider-txt-wrap {
  font-family: var(--font-serif);
  position: relative;
  bottom: -3%;
  left: -8%;
  width: 84%;
}

.hero .slider-txt-wrap small {
  display: inline-block;
  line-height: 1.2;
}

.hero .slider-year {
  font-size: 1.6vw;
  line-height: 1.3;
  margin-bottom: 0.3em;
}

.hero .slider-name {
  font-size: 4vw;
  line-height: 1.1;
  letter-spacing: 0.025em;
}

.hero .slider-links {
  position: absolute;
  bottom: -3%;
  right: -8%;
  width:  7.5vw;
  height: 7.5vw;
  border-radius: 100%;
  font-size: 1.2vw;
  background-color: #000;
  display: grid;
  place-items: center;
  line-height: 1;

  translate: 7% 0;
  opacity: 0;
  transition: all 0.3s;
}
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-active .slider-links,
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-duplicate-active .slider-links {
  translate: 0 0;
  opacity: 1;
  transition: all 0.3s 0.3s, background-color 0.15s;
}
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-prev .slider-links,
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-duplicate-prev .slider-links {
  translate: -7% 0;
  opacity: 0;
  transition: all 0.15s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-next .slider-links,
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-duplicate-next .slider-links {
  translate: 7% 0;
  opacity: 0;
  transition: all 0.15s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
@media (hover: hover) {
  .hero .slider-links:hover {
    background-color: var(--color-grajapa);
  }
}
@media (hover: none) {
  .hero .slider-links:active {
    background-color: var(--color-grajapa);
  }
}


/* swiper ページネーション */
.hero .swiper-pagination {
  pointer-events: none;
  position: absolute;
  top: -2%;
  left: auto;
  right: -6%;
  width: auto;
  color: #fff;
  font-family: var(--font-Inter);
  font-size: 2.4vw;
  line-height: 1.2;
}

/* swiper スライドボタン */
.hero .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.hero .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after
 {
  display: none;
}

.hero .swiper-button-prev,
.hero .swiper-button-next {
  outline: none;
  cursor: pointer;
}

.hero .swiper-button-prev {
  left: -3vw;
}

.hero .swiper-button-next {
  right: -3vw;
}

.hero .swiper-button-prev::before,
.hero .swiper-button-next::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width:  2.5vw;
  height: 2.5vw;
  filter: drop-shadow(0 0 2vw rgba(0,0,0,0.5));
}

@media (hover: hover) {
  .hero .swiper-button-prev,
  .hero .swiper-button-next {
    transition: 0.15s;
  }
  .hero .swiper-button-prev:hover,
  .hero .swiper-button-next:hover {
    filter: brightness(120%);
  }
}
@media (hover: none) {
  .hero .swiper-button-prev:active,
  .hero .swiper-button-next:active {
    filter: brightness(120%);
  }
}

.hero .swiper-button-prev::before {
  left: 0;
  background: url("../img/swiper-btn-prev.svg") center / contain no-repeat;
}

.hero .swiper-button-next::before {
  right: 0;
  background: url("../img/swiper-btn-next.svg") center / contain no-repeat;  
}

/* swiper スライドチェンジアニメーション */
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide .slider-txt-wrap,
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-duplicate .slider-txt-wrap {
  opacity: 0;
  transition: opacity 0.15s;
}
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-active .slider-txt-wrap,
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-duplicate-active .slider-txt-wrap {
  translate: 0 0;
  opacity: 1;
  transition: translate 1.0s, opacity 1.0s;
}
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-prev .slider-txt-wrap,
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-duplicate-prev .slider-txt-wrap {
  translate: -7% 0;
  transition: translate 0s 0.15s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-next .slider-txt-wrap,
.hero .swiper-container.txt-data .swiper-wrapper .swiper-slide-duplicate-next .slider-txt-wrap {
  translate: 7% 0;
  transition: translate 0s 0.15s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}

/* headline */
.headline {
  position: relative;
  overflow: hidden;
  padding: 6vw 0 0vw;
  margin-top: 4vw;
  margin-bottom: var(--height-header);
  min-height: var(--height-contents);
  display: grid;
  place-content: center;
}

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

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

.headline p {
  letter-spacing: 0.15em;
  font-size: 1.5vw;
  /* font-weight: bold; */
  line-height: 2.2;
  text-align: left;
  /* wbrタグ用 */
  /* word-break: keep-all;  */
}
.headline p big {
  font-weight: bold;
  letter-spacing: 0.10em;
  font-size: 200%;
  line-height: 1.5;
}
.headline p br {
  display: none;
}

.headline .inner p:first-of-type {
  padding-bottom: 1vw;
}
.headline .inner p + p {
  margin-top: 2.0vw;
}

.headline p span.red {
  font-size: 100%;
  font-weight: bold;
  padding: 0 0.1em;
  margin: 0 0.1em;
  background-color: var(--color-sale);
  /* color: #F22800; */
  line-height: 1;
}
.headline p.caption-txt {
  font-size: 1.3rem;
  line-height: 1.5;
}
.headline .inner p.caption-txt + p.caption-txt {
  margin-top: 1.3rem;
}




/* hero, swiper, headline */
/* デバイスが縦長の向き */
@media (orientation: portrait) {
  /* hero */
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 10vw;

    padding-top: 10vw;
  }

  .bg .bg-inner {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 1.5vw;
  }

  .hero>.inner {
    display: contents;
  }

  .hero .hero-image {
    display: contents;
  }

  .hero .hero-image .title {
    width: 85%;
    height: auto;
    margin-bottom: 0;
    padding-bottom: 2vw;
    object-fit: contain;

    margin: 0 auto;
    order: -2;
  }

  .hero .hero-image .scroll {
    width: 30px;
    position: relative;
    margin: 10vw 0 5vw;
  }

  .hero .slider {
    top: 0;
    position: relative;
    width: 100%;
    height: 148vw;
    padding: 11vw;
    margin-right: 0;
    max-width: 100%;

    order: -1;
    opacity: 0;
    transform: translateY(15px);
  }

  .loaded .hero .slider {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s 1.0s, transform 1s 1.0s;
  }

  .hero .slider .slider-inner {
    height: 100%;
  }

  /* swiper */
  .hero .slider-deco-txt {
    top: -2%;
    left: -4%;
    font-size: 3vw;
    line-height: 1.4;
  }

  .hero .slider-txt-wrap {
    bottom: -3%;
    left: -8%;
    width: 84%;
  }

  .hero .slider-txt-wrap small {
    line-height: 1.2;
  }

  .hero .slider-year {
    font-size: 4.5vw;
  }

  .hero .slider-name {
    font-size: 10.5vw;
    line-height: 1.1;
    letter-spacing: 0.025em;
  }

  .hero .slider-links {
    bottom: -3%;
    right: -8%;
    width: 25vw;
    height: 25vw;
    border-radius: 25vw;
    font-size: 3.6vw;
  }

  /* swiper ページネーション */
  .hero .swiper-pagination {
    top: -2%;
    right: -6%;
    font-size: 6vw;
    line-height: 1.2;
  }

  /* swiper スライドボタン */
  .hero .swiper-button-prev {
    left: -7vw;
  }
  .hero .swiper-button-next {
    right: -7vw;
  }

  .hero .swiper-button-prev::before,
  .hero .swiper-button-next::before {
    width: 5vw;
    height: 5vw;
  }

  /* headline */
  .headline {
    padding: 6vw 0 0vw;
    margin-top: 4vw;
    margin-bottom: 0;
    min-height: auto;
  }

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

  .headline p {
    letter-spacing: 0.15em;
    font-size: 3.6vw;
    line-height: 1.8;
    text-align: left;
  }
  .headline p big {
    letter-spacing: 0.10em;
    font-size: 180%;
    line-height: 1.4;
  }

  .headline .inner p:first-of-type {
    padding-bottom: 2vw;
  }
  .headline .inner p + p {
    margin-top: 4.0vw;
  }

  .headline p.caption-txt {
    font-size: 1.1rem;
  }
  .headline .inner p.caption-txt + p.caption-txt {
    margin-top: 1.1rem;
  }

}



/* sale 装飾 */
.sale {
  z-index: 10;
  /* background-color: #5FCACC; */
  position: relative;
  /* color: #FFFFFF; */
  /* padding: 7vw 0; */
  /* background: rgba(var(--color-base-rgb), 0.3); */
  /* border-radius: 5vw; */
  overflow: hidden;
  /* color: #000; */
}

.sale-wrap {
  /* border-radius: 12px; */
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.sale_title-wrap {
  width: 100%;
  padding: var(--space-xl) 0;
}
.sale_title {
  width: 40%;
  max-width: 480px;
  margin: 30px auto 30px;
  text-align: center;
}
.sale_title img {
  width: 100%;
}


@media (max-width: 992px) {
  .sale_title-wrap {
    padding: var(--space-lg) 0;
  }
    .sale_title {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .sale_title-wrap {
    padding: var(--space-md) 0;
  }
    .sale_title {
    width: 80%;
  }
}

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

.navi {
  position: relative;
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
}

.navi .navi-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
  max-width: 1024px;
  margin: 0 auto;
}

.navi .navi-inner .navi-btn {
  position: relative;
  width: 30%;
  color: #FFF;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.25);
  /* border-bottom: solid 2px; */
  transition: 0.15s ease;
}

.navi .navi-inner .navi-btn a {
  display: block;
  line-height: 1;
  padding: 20px 8px 24px;
  font-size: 24px;
  font-family: var(--font-serif);
}

@media (max-width: 575px) {
  .navi .navi-inner {
    flex-direction: column;
    gap: 10px;
    padding: 0 5vw;
  }
  .navi .navi-inner .navi-btn {
    width: 100%;
  }
  .navi .navi-inner .navi-btn a {
    padding: 20px 8px 24px;
    font-size: 6vw;
  }
}

.navi .navi-inner .navi-btn:before {
  display: block;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0;
  height: 0;
  margin-top: -5px;
  border: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.5);
  transition: 0.15s ease;
}
@media (hover: hover) {
  .navi .navi-inner .navi-btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .navi .navi-inner .navi-btn:hover:before {
    border-top: 5px solid rgba(255, 255, 255, 1);
  }
}
@media (hover: none) {
  .navi .navi-inner .navi-btn:active {
    background: rgba(255, 255, 255, 0.2);
  }
  .navi .navi-inner .navi-btn:before {
    border-top: 5px solid rgba(255, 255, 255, 1);
  }
}


.sale-group-title {
  /* margin-top: 5vw; */
  width: 100%;
  text-align: center;
}
.sale-group-title img {
  margin-top: 40px;
  width: 100%;
  max-width: 1024px;
}
@media (max-width: 1024px) {
  .sale-group-title {
    /* margin-top: 10vw; */
  }
  .sale-group-title img {
    max-width: none;
  }
}


/* sale item 装飾 */
.sale-item_award-wrap {
  position: relative;
  margin-bottom: 0.75em;
  min-height: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sale-item_award-year {
  line-height: 1.2;
  font-size: 2rem;
  font-weight: bold;
  word-break: keep-all;
  margin-top: 0.25em;
}
.sale-item_award-year:first-child {
  margin-top: 0;
}
.sale-item_award-year small {
  font-size: 1.2rem;
}
.sale-item_award-name {
  line-height: 1.5;
  font-size: 1.3rem;
}
@media (max-width: 575px) {
  .sale-item_award-wrap {
    min-height: 4.0rem;
  }
  .sale-item_award-year {
    font-size: 1.8rem;
  }
  .sale-item_award-name {
    font-size: 1.2rem;
  }
}

/* register */
.register {
  margin: var(--space-xl) calc(4vw - 12px) var(--space-lg);
  display: flex;
  justify-content: center;
}

.register-inner {
}

@media (max-width: 575px) {
  .register {
  }
}

.btn-user {
  color: var(--color-link);
  position: relative;
  font-size: 15px;
  font-weight: bold;
  margin: 0 12px;
  display: inline-block;
  transition: 0.1s;
  padding: 0.5em 1em;
  border: 2px solid;
  border-radius: 0.5em;
}

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

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

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

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

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



/* plus-member */
.plus-member {
  height: 40px;
  position: relative;
  background: url(../img/plus-member_wh.svg) center / contain, rgba(0, 0, 0, 0.2);
  animation: slider 400s linear infinite;
  will-change: background-position;
  z-index: 20;
  /* border-top: 2px solid #FFFF00; */
  /* border-bottom: 2px solid #FFFF00; */
}
@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;
  }
}



/* footer */
footer {
  color: hsl(0, 0%, 100%);
  text-align: center;
  padding: calc(5vw + 70px) 30px 50px;
  position: relative;
  background-color: hsla(0, 0%, 0%, 0.3);
  backdrop-filter: blur(20px);
}
@media (max-width: 575px) {
  footer {
    padding: calc(5vw + 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%);
  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: 6px;
  transition: 0.15s ease;
  display: inline-block;
  /* border: 2px solid #FFF; */
  background: rgba(255, 255, 255, 0.15);
}
.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);
}
@media (max-width: 575px) {
  .btn-info {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .btn-info:hover {
    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 {
  will-change: opacity,transform;
  opacity: 0;
  transform: translateY(30px) scale(1.1);
  transform-origin: top center;
  transition: 
  opacity .6s 0s,
  transform .6s 0s;
}
.aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}
