@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');

/* MediaQuery = SP => Tablet(600px) => PC(1024px) */

/* -------------------------
  root設定
------------------------- */
:root {
  /* font-size: 62.5%; */
  font-size: 2.1333vw;

  /* カラー変数 */
  --color_base:           #fff;
  --color_baseRGB:        254, 254, 246;
  --color_baseHalf:       #FEFEF6;
  --color_baseHalfRGB:    254, 254, 246;
  --color_baseDark:       #FEFEF6;
  --color_baseDarkRGB:    254, 254, 246;
  --color_main:           #fff419;
  --color_mainRGB:        255, 244, 25;
  --color_mainHalf:       #fff419;
  --color_mainHalfRGB:    255, 244, 25;
  --color_mainDark:       #fff419;
  --color_mainDarkRGB:    255, 244, 25;
  --color_accent:         #fff419;
  --color_accentRGB:      255, 244, 25;
  --color_accentHalf:     #fff419;
  --color_accentHalfRGB:  255, 244, 25;
  --color_accentDark:     #fff419;
  --color_accentDarkRGB:  255, 244, 25;
  --color_text:           hsl(0, 0%, 0%);

  /* フォントファミリー変数 */
  --font_family_ENG: "Inter", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  --font_weight_ENG: 700;
  
  /* border-radius変数 */
  --radius_xs:   3px;
  --radius_sm:   6px;
  --radius_md:   8px;
  --radius_lg:  12px;
  --radius_xl:  24px;

  /* line-height変数 */
  --line_height_sm:  1.3;
  --line_height_md:  1.5;
  --line_height_lg:  1.7;
  --line_height_xl:  2.0;
  --line_height_2xl: 2.2;

  /* サイズ変数 */
  --header_height: 50px;
  --contents__maxWidth: 100%;

  /* フォントサイズ変数 */
  /* --font_size_10: 2.6667vw; 
  --font_size_11: 2.9333vw; 
  --font_size_12: 3.2vw;    
  --font_size_13: 3.4667vw; 
  --font_size_14: 3.7333vw; 
  --font_size_15: 4vw;      
  --font_size_16: 4.2667vw; 
  --font_size_18: 4.8vw;    
  --font_size_20: 5.3333vw; 
  --font_size_22: 5.8667vw; 
  --font_size_24: 6.4vw;    
  --font_size_28: 7.4667vw; 
  --font_size_32: 8.5333vw; 
  --font_size_36: 9.6vw;    
  --font_size_40: 10.6667vw;
  --font_size_44: 11.7333vw;
  --font_size_48: 12.8vw;    */

  --font_size_10: 1.0rem;
  --font_size_11: 1.1rem;
  --font_size_12: 1.2rem;
  --font_size_13: 1.3rem;
  --font_size_14: 1.4rem;
  --font_size_15: 1.5rem;
  --font_size_16: 1.6rem;
  --font_size_18: 1.8rem;
  --font_size_20: 2.0rem;
  --font_size_22: 2.2rem;
  --font_size_24: 2.4rem;
  --font_size_28: 2.8rem;
  --font_size_32: 3.2rem;
  --font_size_36: 3.6rem;
  --font_size_40: 4.0rem;
  --font_size_44: 4.4rem;
  --font_size_48: 4.8rem;
}

/* タブレット変数 */
@media (min-width: 600px) {
  :root {
    font-size: 62.5%;
    /* font-size: 72.5%; */

    /* サイズ変数 */
    --header_height: 50px;
    --contents__maxWidth: 100%;

    /* フォントサイズ変数 */
    --font_size_10: 1.0rem;
    --font_size_11: 1.1rem;
    --font_size_12: 1.2rem;
    --font_size_13: 1.3rem;
    --font_size_14: 1.4rem;
    --font_size_15: 1.5rem;
    --font_size_16: 1.6rem;
    --font_size_18: 1.8rem;
    --font_size_20: 2.0rem;
    --font_size_22: 2.2rem;
    --font_size_24: 2.4rem;
    --font_size_28: 2.8rem;
    --font_size_32: 3.2rem;
    --font_size_36: 3.6rem;
    --font_size_40: 4.0rem;
    --font_size_44: 4.4rem;
    --font_size_48: 4.8rem;
  }
}

/* PC変数 */
@media (min-width: 1024px) {
  :root {
    font-size: 62.5%;
    /* font-size: 72.5%; */

    /* サイズ変数 */
    --header_height: 70px;
    --contents__maxWidth: 600px;
  }
}


/* -------------------------
  デバイス判定
------------------------- */
@media (max-width: 599px) {
  .pc {
    display: none !important;
  }
  .tablet:not(.sp) {
    display: none !important;
  }
}
@media (min-width: 600px) 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;
  }
}


/* -------------------------
  html body
------------------------- */
html {
  touch-action: manipulation;
  background-color: var(--color_base);
  overscroll-behavior: none;
  /* scroll-behavior: smooth; */
}
body {
  font-family: 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  /* font-size: 1vw; */
  font-weight: normal;
  line-height: var(--line_height_md);
  background: var(--color_base);
  color: var(--color_text);
  text-align: left;
  font-feature-settings: "palt";
  background-color: var(--color_base);
}
@media (min-width: 600px) {
  body {
    /* font-size: calc(1vw * 0.8); */
  }
}
@media (min-width: 1024px) {
  body {
    /* font-size: calc(var(--contents__maxWidth) * 0.01); */
    /* font-size: calc(var(--contents__maxWidth) * 0.008); */
  }
}
body * {
  letter-spacing: 0.1em;
}


/* -------------------------
  ローディング中の画面
------------------------- */
.loading__maskWrapp {
  /* カラー変数 */
  --loading_bg_color:#000;

  z-index: 1000;
  position: fixed;
  top:  50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 80%;
  aspect-ratio: 9/16;
  background-color: transparent;
}
/* デバイスが縦長の向き */
@media (orientation: portrait) {
  .loading__maskWrapp {
    height: 60%;
    max-height: 100vw;
  }
}
/* デバイスが横長の向き */
@media (orientation: landscape) {
  .loading__maskWrapp {
    height: 80%;
  }
}
.loading__maskWrapp>span.luminous {
  position: absolute;
  z-index: -1;
  top:  -1px;
  left: -1px;
  width:  calc(100% + 2px);
  height: calc(100% + 2px);
  background-color: #fff;
}

body.loaded.start .loading__maskWrapp {
  transition: scale 1.5s 0.5s cubic-bezier(0.7, 0, 0.84, 0), opacity 0.5s 2s;
  opacity: 0;
  scale: 4;
  transform-origin: top left;
  pointer-events: none;
  user-select: none;
}
body.loaded.start .loading__maskWrapp>span.luminous {
  transition: 1s 0.75s ease-in;
  opacity: 0;
}

.loading__maskWrapp::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--loading_bg_color);
}
.loading__maskWrapp::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--loading_bg_color);
}
.loading__maskWrapp>span.frame::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background-color: var(--loading_bg_color);
}
.loading__maskWrapp>span.frame::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background-color: var(--loading_bg_color);
}
.loading__mask {
  z-index: 1001;
  position: absolute;
  top:  -1px;
  left: -1px;
  width:  calc(100% + 2px);
  height: calc(100% + 2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
  text-align: center;
  background: var(--loading_bg_color);
  will-change: clip-path;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
body.loaded.start .loading__mask {
  clip-path: polygon(0 0, 0 20%, 0 80%, 0% 100%);
  transition: clip-path 1.75s cubic-bezier(0.65, 0, 0.35, 1);
}

.loading__progress {
  --progress_percent: 0%;
  --bar_height: 4px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 70vw;
  height: auto;
  max-width: 300px;
  pointer-events: none;
  z-index: 100000;
}
.loading__progressText {
  position: absolute;
  top: -1.3em;
  left: 0;
  width: 100%;
  font-size: 12px;
  height: 1em;
  line-height: 1;
}
.loading__progressText::before,
.loading__progressText::after {
  content: '';
  color: currentColor;
  font-family: system-ui;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.loading__progressText::before {
  content: 'LOADING...';
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  animation: loadingText 0.75s infinite linear;
}
@keyframes loadingText {
  0%   {content: 'LOADING   ';}
  25%  {content: 'LOADING.  ';}
  50%  {content: 'LOADING.. ';}
  75%  {content: 'LOADING...';}
  100% {content: 'LOADING   ';}
}

.loading__progressText::after {
  content: attr(data-progress);
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
}

.loading__progressBar {
  width: 100%;
  height: var(--bar_height);
  background-color: hsla(0, 0%, 100%, 0.1);
  border-radius: var(--bar_height);
  overflow: hidden;
}
.loading__progressBarFill {
  border-radius: var(--bar_height);
  height: 100%;
  width: var(--progress_percent);
  background-color: hsla(0, 0%, 100%, 1);
  transition: width 0.2s ease-in-out;
}

body.loaded .loading__progress {
  opacity: 0;
  transition: 0.3s;
}


/* -------------------------
  common
------------------------- */
*:focus {
  outline: none;
}
img {
  display: block;
  /* Microsoft Edgeで画像検索無効に */
  pointer-events: none;
}
span.br {
  display: inline-block;
}
::selection {
  /* background-color: yellow; */
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.1em;
  line-height: var(--line_height_sm);
  font-weight: bold;
}
/* @media (any-hover: hover) {
  a[href] {
    transition: opacity 0.1s;
  }
  a[href]:hover {
    transition: opacity 0.2s;
    opacity: 0.5;
  }
} */
a[href] {
  transition: opacity 0.15s, scale 0.15s;
}
@media (any-hover: hover) {
  a[href]:hover {
    opacity: 0.6;
    transition: opacity 0.1s, scale 0.1s;
  }
}
a[href]:active {
  opacity: 0.7;
  transition: opacity 0.1s, scale 0.1s;
}

.inner {
  padding-left:   5%;
  padding-right:  5%;
  padding-top:    80px;
  padding-bottom: 90px;
  overflow: hidden;
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) {
  .inner {
    padding-left:   6%;
    padding-right:  6%;
    padding-top:    90px;
    padding-bottom: 105px;
  }
}
@media (min-width: 1024px) {
  .inner {
    padding-left:   8%;
    padding-right:  8%;
    padding-top:    100px;
    padding-bottom: 120px;
  }
}

h2 {
  text-align: center;
  font-size: var(--font_size_32);
  margin-bottom: 1.5em;
}


/* -------------------------
  header
------------------------- */
header {

}

/* -------------------------
  nav
------------------------- */
nav {
  position: fixed;
  top:   0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
}
nav.isOpen {
  pointer-events: all;
}
#nav__background {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
}
nav.isOpen #nav__background {
  opacity: 1;
}
.nav__modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 490px;
  background-color: var(--color_accent);
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
  transform: translateX(20%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
nav.isOpen .nav__modal {
  pointer-events: all;
  transform: translate(0,0);
  opacity: 1;
}
.nav__inner {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100%;
  padding: 80px 60px 60px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.1s;
}
nav.isOpen .nav__inner {
  opacity: 1;
}
.nav__inner ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: auto;
}
.nav__inner ul li {
  font-size: 5vw;
  font-weight: bold;
}
.nav__inner ul li a {
  display: inline-block;
  border-bottom: 2px solid currentColor;
}
nav .sns__container {
  margin-top: 80px;
  align-items: flex-start;
}
nav .sns__title {
  font-size: var(--font_size_15)
}
nav .sns__links {
  gap: 20px;
}
nav .sns__links a {
  width:  48px;
  height: 48px;
  padding: 13px;
}
@media (min-width: 600px) {
  .nav__inner {
    padding: 60px 80px 60px;
  }
  .nav__inner ul {
    gap: 35px;
  }
  .nav__inner ul li {
    font-size: var(--font_size_20);
  }
  nav .sns__container {
    margin-top: 80px;
  }
}
#nav__btn {
  position: fixed;
  top:    0px;
  right:  0px;
  width:  56px;
  height: 56px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  background: #000;
  overflow: hidden;
}
#nav__btn img {
  position: absolute;
  top: 0;
  left: 0;
  width:  100%;
  height: 100%;
  scale: 0.75;
  object-fit: contain;
  transform: translateX(0%);
  transition: opacity 0.15s, transform 0.15s;
}
#nav__btn img +img {
  opacity: 0;
  transform: translateX(50%);
}
@media (min-width: 1024px) {
  #nav__btn {
    top:    20px;
    right:  20px;
    width:  56px;
    height: 56px;
  }
}
nav.isOpen + #nav__btn img {
  opacity: 0;
  transform: translateX(-50%);
}
nav.isOpen + #nav__btn img +img {
  opacity: 1;
  transform: translateX(0%);
}
body.start:not(.loading) #nav__btn {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.5s;
}


/* -------------------------
  main
------------------------- */
main {
  position: relative;
}


/* -------------------------
  hero
------------------------- */
.hero .hero__titleWrap {
  background-color: #fff;
}
.hero,
.hero__titleWrap,
.main__background {
  position: relative;
  overflow: hidden;
  width:  100%;
  height: 100%;
  height: 100lvh;
}
.main__background,
.main__background .hero__titleWrap {
  position: fixed;
  background-color: var(--color_base);
  transform-origin: center !important;
}
.main__background .hero__titleWrap > * {
  transform-origin: center !important;
}
.hero__titleWrap .hero__bg01 {
  position: relative;
  width:  100%;
  height: 100%;
}
.hero__titleWrap .hero__bg02,
.hero__titleWrap .hero__title {
  position: absolute;
  top:  50%;
  left: 50%;
  width:  100%;
  height: 100%;
  transform: translate(-50%,-50%);
  transform-origin: center;
}
.hero__titleWrap .hero__bg02 {
  transform: translate(-50%,-50%) scale(1.06);
}
.hero__title {
  max-width: 300vh;
}
.hero__titleWrap img {
  position: relative;
  width:  100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__title .hero__logo02 {
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transform-origin: top left;
}
/* デバイスが縦長の向き */
@media (orientation: portrait) {
  .hero__titleWrap .hero__title {
    width: 165%;
  }
  @media (min-width: 600px) {
    .hero__titleWrap .hero__title {
      width: 140%;
    }
  }
  .hero__titleWrap .hero__title img {
    object-fit: contain;
    object-position: center;
    padding-bottom: 10%;
  }
}

/* ローディング明けモーション */
body .hero .hero__titleWrap {
  filter: blur(3vw);
  transition: filter 3.0s 0.5s, opacity 0s;
  will-change: filter;
}
body.loaded.start .hero .hero__titleWrap {
  filter: blur(0);
}
body.loaded.start:not(.loading) .hero .hero__titleWrap {
  opacity: 0;
}
body .hero .hero__titleWrap img {
  transition: scale 3.0s 0.5s;
  will-change: scale;
}
.hero .hero__bg01 img {
  scale: 1.5;
}
body.loaded.start .hero .hero__bg01 img {
  scale: 1;
}
.hero .hero__bg02 img {
  scale: 2;
}
body.loaded.start .hero .hero__bg02 img {
  scale: 1;
}
.hero .hero__logo {
  scale: 4;
}
body.loaded.start .hero .hero__logo {
  scale: 1;
}

.hero .hero__logo02 {
  translate: -2vw 0.0vw;
  opacity: 0;
  filter: blur(1.5vw);
}
body.loaded.start .hero .hero__logo02 {
  translate: 0 0;
  opacity: 1;
  filter: blur(0);
  transition: opacity 0.5s 3.5s ,filter 0.5s 3.5s, translate 0.5s 3.5s; 
}

/* gsap */
.jsGsapHero01,
.jsGsapHero02,
.jsGsapHero03 {
  will-change: transform;
}

/* scrolldown
------------------------- */
.scrolldown {
  --scrolldown_height: 10vh;
  position: absolute;
  top: calc(100svh - var(--scrolldown_height));
  height: var(--scrolldown_height);
  left:  50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  user-select: none;
}
@media (max-height: 360px) {
    .scrolldown {
      display: none;
    }
  }
.scrolldown__text {
  font-size: 13px;
  line-height: 1;
  font-family: var(--font_family_ENG);
  font-weight: var(--font_weight_ENG);
  height: 12px;
}
.scrolldown__line {
  opacity: 0.5;
  --scrolldown_line_height: calc( var(--scrolldown_height) - 20px);
  width: 1px;
  height: var(--scrolldown_line_height);
  display: block;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%);
  background-position: 0 calc(var(--scrolldown_line_height) * -1);
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown {
  0% {
    background-position: 0 calc(var(--scrolldown_line_height) * -1);
  }
  75% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 var(--scrolldown_line_height);
  }
}
body.loading .scrolldown {
  opacity: 0;
  pointer-events: none;
}
body:not(.loading) .scrolldown {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.5s;
}


/* -------------------------
  main__contents
------------------------- */
.main__contents section {
  position: relative;
  width: 100%;
  overflow: hidden;
}


/* -------------------------
  introduction
------------------------- */
.introduction {
  position: relative;
}
.introduction * {
  letter-spacing: 0.15em !important;
}
.introduction {
  width: 100%;
  text-align: center;
}
.introduction p {
  font-size: 4.0vw;
  font-weight: bold;
  line-height: 2.4;
  text-align: center;
}
@media (min-width: 600px) {
  .introduction p {
    font-size: var(--font_size_20);
    line-height: 2.4;
    font-weight: bold;
    text-align: center;
  }
}

.jsSplitType .line {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0;
}

/* playmovie
------------------------- */
.playmovie {
  display: block;
  position: relative;
  overflow: hidden;
  width: 80%;
  max-width: 640px;
  aspect-ratio: 16/9;
  background-color: #fff;
  margin-left:  auto;
  margin-right: auto;
  border-radius: 8px;
  margin-bottom: 60px;
}
@media (min-width: 600px) {
  .playmovie {
    width: 70%;
    border-radius: 10px;
    margin-bottom: 70px;
  }
}
@media (min-width: 1024px) {
  .playmovie {
    /* width: 60%; */
    /* border-radius: 12px; */
    margin-bottom: 80px;
  }
}
.playmovie img {
  position: absolute;
  top:  50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width:  100%;
  height: 100%;
  object-fit: contain;
}
.playmovie img.playmovie__icon {
  width:  110%;
  height: 110%;
  max-width: 440px;
}
@media (min-width: 600px) {
  .playmovie img.playmovie__icon {
    width:  100%;
    height: 100%;
  }
}
.playmovie .playmovie__filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 30%, 0.7);
}
@media (any-hover: hover) {
  .playmovie img.playmovie__icon {
    transition: scale 0.3s;
    transform-origin: top left;
  }
  .playmovie:hover img.playmovie__icon {
    scale: 1.05;
  }
  .playmovie .playmovie__filter {
    transition: opacity 0.3s;
  }
  .playmovie:hover span {
    opacity: 0.8;
  }
}


/* -------------------------
  SNS
------------------------- */
.sns__container {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
.sns__title {
  font-size: var(--font_size_20) !important;
  line-height: var(--line_height_md) !important;
  font-weight: bold;
}
.sns__description {
  margin-top: 1em;
  font-size: var(--font_size_16) !important;
  line-height: var(--line_height_md) !important;
  font-weight: normal !important;
  color: hsl(0, 0%, 60%);
}
.sns__links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.sns__container a {
  width:  56px;
  height: 56px;
  padding: 16px;
  border-radius: 28px;
  background: hsla(0, 0%, 0%, 0.85);
}
.sns__container a img {
  width:  100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}


/* -------------------------
  benefits
------------------------- */
.benefits {

}
.benefits .inner {
  
}
.benefits h2 {
  margin-bottom: 1.5em;
}
.benefits h2 span{
  font-size: var(--font_size_48);
}
.benefits__content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  margin: 40px auto;
  width: 100%;
  gap: 5px 10px;
}
.benefit__number {
  width: 100%;
}
.benefits__name {
  font-size: var(--font_size_28);
  font-weight: bold;
  white-space: nowrap;
  z-index: 1;
}
.benefits__name:has(small) {
  line-height: 1;
}
.benefits__name small {
  font-size: 45%;
  font-weight: normal;
  vertical-align: 0.25em;
}
.benefits__content:nth-of-type(2) .benefits__name {
  font-size: var(--font_size_24);
}
.benefits__img {
  width: 90%;
  margin: auto;
  grid-column: span 2;
  border-radius: 8px;
}
@media (min-width: 600px) {
  .benefits__content {
    font-size: var(--font_size_24);
    grid-template-columns: auto 11em minmax(auto,15em) ;
    width: fit-content;
  }
  .benefits__img {
    width: 100%;
    grid-column: span 1;
  }
}


/* -------------------------
  method
------------------------- */
.method {
  background-color: hsl(0, 0%, 90%);
  text-align: center;
}
.method h2 {
  margin-bottom: 1.5em;
}
.method h3 {
  font-size: var(--font_size_24);
  margin-bottom: 0.5em;
}
.method h3:not(:first-of-type) {
}
.method h3:not(:first-of-type)::before {
  content: "";
  display: block;
  margin: 16px auto 16px;
  width: 12px;
  aspect-ratio: 1.2/1;
  background-color: hsla(0, 0%, 0%, 0.2);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.method small {
  display: block;
  font-size: var(--font_size_14);
  font-weight: normal;
  color: hsl(0, 0%, 50%);
  margin-bottom: 0.25em;
}
.method p {
  font-size: var(--font_size_16);
  font-weight: normal;
  margin: 0.5em 0;
}
.method h3 .subTitle {
  font-size: 80%;
  margin-top: 0.5em;
  display: block;
}
@media (min-width: 600px) {

}

/* -------------------------
  schedule
------------------------- */
.schedule {
  background-color: hsl(0, 0%, 86%);
}
.schedule h2 {
}
.schedule__list {
  
}
.schedule__item {
  position: relative;
  background-color: #fff;
  background-color: hsla(0, 0%, 100%, 0.4);
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.schedule__item > * {
  z-index: 1;
}
.schedule__item:not(.isActive) > * {
  opacity: 0.3;
}
.schedule__item.isActive {
  background-color: #fff;
}
.schedule__item.isActive::after {
  content: "";
  position: absolute;
  top:  0;
  left: 0;
  width:  100%;
  height: 100%;
  background-color: var(--color_accent);
  animation: blinking 1s ease-in-out infinite alternate;
}
@keyframes blinking {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.schedule__item.isEnded {
  background-color: hsla(0, 0%, 100%, 0.4);
}
.schedule__item.isEnded > * {
  opacity: 0.3;
}
.schedule__item.isActive ~ .schedule__item {
  background-color: #fff;
}
.schedule__item.isActive ~ .schedule__item > * {
  opacity: 1;
}
.schedule__item:not(:first-of-type) {
  margin-top: 26px;
}
.schedule__item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 12px;
  aspect-ratio: 1.2/1;
  background-color: hsla(0, 0%, 0%, 0.2);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.schedule__date {
  font-weight: bold;
  font-size: 13px;
}
.schedule__name {
  font-weight: bold;
  font-size: 16px;
}
.schedule__name small {
  font-size: 12px;
  font-weight: normal;
  vertical-align: 0.25em;
}
.schedule .inner > small {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: hsla(0, 0%, 0%, 0.5);
}
@media (min-width: 600px) {
  .schedule__item {
    padding: 20px 30px;
    grid-template-columns: 150px 1fr;
    align-items: center;
  }
  .schedule__date {
    font-size: var(--font_size_15);
  }
  .schedule__name {
    font-size: var(--font_size_20);
  }
  .schedule .inner > small {
    margin-top: 25px;
    font-size: var(--font_size_14);
  }
}


/* -------------------------
  requirements
------------------------- */
.requirements {
  background-color: hsl(0, 0%, 82%);
}
.requirements h2 {
}
.requirements ul {
  padding: 30px 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: var(--line_height_lg);
  gap: 0.75em;
}
.requirements ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.requirements ul li::before {
  content: '●';
  font-feature-settings: normal;
  font-size: 60%;
  transform: translateY(-50%);
  padding-right: 0.5em;
  opacity: 0.2;
}
@media (min-width: 600px) {
  .requirements ul {
    padding: 40px 40px;
    font-size: var(--font_size_15);
    gap: 0.75em;
  }
}


/* -------------------------
  slider
------------------------- */
.slider {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  width: 100%;
  min-height: 0 !important;
  padding: 0;
}
.slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
  z-index: 10;
}
.slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color_accent);
  opacity: 0.05;
  z-index: 20;
}
.splide {
  position: relative;
  width: 100%;
  height: 360px;
  max-height: 70vw;
  pointer-events: none;
  user-select: none;
}
.splide .splide__track {
  width: 100%;
  height: 100%;
}
.splide .splide__track .splide__list {
  width: 100%;
  height: 100%;
}
.splide .splide__track .splide__list .splide__slide {
  width: fit-content;
  height: 100%;
}
.splide .splide__track .splide__list .splide__slide img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.splide__imgWrap {
  width:  fit-content;
  height: fit-content;
}



/* -------------------------
  entry
------------------------- */
.entry {
  background-color: var(--color_accent);
  text-align: center;
}
.title__eng {
  position: relative;
  font-size: 22vw;
  font-family: var(--font_family_ENG);
  font-weight: var(--font_weight_ENG);
  line-height: 1;
  color: hsla(0, 0%, 100%, 0.9);
  letter-spacing: 0;
  margin: 0 calc(50% - 50vw);
}
@media (min-width: 600px) {
  .title__eng {
    font-size: 100px;
  }
}
.title__eng::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color_accent);
  opacity: 0.7;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 0.5s 0.2s;
}
.isActive .title__eng::after  {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.entry h2 {
  font-size: var(--font_size_36);
  margin-bottom: 1em;
}
.entry ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 20px 0;
}
.entry ul li {
  font-size: 12px;
  color: hsla(0, 0%, 0%, 0.7);
}
.entry__btn {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  display: block;
  width: 80%;
  max-width: 400px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  color: #fff;
  background-color: #000;
  margin: 25px auto;
}
.entry__btn::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  aspect-ratio: 1/1;
  /* background: url(../img/icon__externaLlink.svg) center / contain no-repeat; */
  -webkit-mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  background-color: hsla(0, 0%, 100%, 0.5);
}
.entry__btn > span {
  z-index: 1;
}
@media (any-hover: hover) {
  .entry__btn {
    opacity: 1 !important;
  }
  .entry__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    background-color: #fff;
    transition: all 0.15s !important;
    mix-blend-mode: screen;
  }
  .entry__btn:hover span {
    opacity: 1 !important;
    color: #000 !important;
    scale: 1.1;
    transition: all 0.3s !important;
  }
  .entry__btn:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: all 0.3s !important;
  }
  .entry__btn:hover::after {
   background-color: hsla(0, 0%, 0%, 0.5);
    transition: all 0.3s !important;
  }
  .privacy__btn {
    transition: opacity 0.15s;
  }
  .privacy__btn:hover {
    opacity: 0.6;
    transition: opacity 0.1s, scale 0.1s;
  }
}
.entry__qrTitle {
  font-size: 14px;
}
.entry__qr {
  margin: 10px auto;
  width: 80%;
  max-width: 270px;
}
.privacy__btn {
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-left:  auto;
  margin-right: auto;
  border-bottom: 2px solid currentColor;
  margin-top: 25px;
}
@media (min-width: 600px) {
  .entry__btn {
    font-size: var(--font_size_24);
  }
  .entry__qrTitle {
    font-size: var(--font_size_16);
  }
  .privacy__btn {
    font-size: var(--font_size_16);
  }
}
.entry__caution {
  position: relative;
  margin-top: 40px;
  font-size: var(--font_size_20);
  line-height: var(--line_height_lg);
  font-weight: bold;
  width: 95%;
  max-width: 400px;
  margin-left:  auto;
  margin-right: auto;
  color: hsla(0, 0%, 0%, 0.7);
}
.entry__caution::before,
.entry__caution::after {
  content: "";
  position: absolute;
  width:  1.5em;
  height: 1.5em;
  background: url(../img/icon__quote.svg) center / contain no-repeat;
  opacity: 0.1;
}
.entry__caution::before {
  top:  0;
  left: 0;
  transform: translate(0%,25%);
  scale: -1 -1;
}
.entry__caution::after {
  bottom: 0;
  right: 0;
  transform: translate(0%,25%);
}


/* privacy__modal
------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
  transition: opacity 0.1s;
  z-index: 1000000;
}
body.isModalOpen *:not(.modal.isActive, .modal.isActive *) {
  user-select: none;
}
.isModalOpen .modal.isActive {
  opacity: 1;
  pointer-events: all;
  user-select: all;
  transition: opacity 0.3s;
}
.modal__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.7);
  z-index: -1;
}
.modal__body {
  width: 100%;
  height: 100%;
  max-width: 720px;
  max-height: fit-content;
  padding: 30px 20px 40px;
  background-color: #fff;
  border-radius: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal__body h3 {
  font-size: var(--font_size_24);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.modal__detail {}
.modal__detail p {
  font-size: 13px;
  line-height: var(--line_height_lg);
  margin-bottom: 20px;
  text-align: left;
}
.modal__detail ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: auto;
  padding-left: 2.5em;
}
.modal__detail ol li {
  font-size: 13px;
  line-height: var(--line_height_lg);
  text-align: left;
}
.modal__detail ol li::marker {
  font-weight: bold;
}
.modal__detail ol li strong {
  display: block;
}
.modal__detail a {
  border-bottom: solid 1px currentColor;
}
.modal__close {
  text-align: center;
  color: #fff;
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
  user-select: none;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.5em;
}
.icon__close {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  color: #fff;
}
.icon__close:before, .icon__close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  line-height: 1;
  width: 120%;
  height: 2px;
  background: currentColor;
  rotate: 45deg;
  transform-origin: top left;
}
.icon__close:after {
  rotate: -45deg;
  transform-origin: top left;
}
.privacy__agreeBtn {
  display: block;
  text-align: center;
  margin: 30px auto 0;
  padding: 0.5em 2em;
  font-size: var(--font_size_16);
  font-weight: bold;
  background-color: var(--color_accent);
  color: #fff;
  border-radius: 30px;
  user-select: none;
}
@media (min-width: 600px) {
  .modal {
    padding: 40px 15px;
  }
  .modal__body {
    max-width: 720px;
    max-height: fit-content;
    padding: 60px 40px;
    border-radius: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .modal__body h3 {
    font-size: var(--font_size_24);
    margin-bottom: 40px;
  }
  .modal__detail p {
    font-size: var(--font_size_14);
    margin-bottom: 20px;
  }
  .modal__detail ol {
    gap: 10px;
    padding-left: 2.5em;
  }
  .modal__detail ol li {
    font-size: var(--font_size_13);
    line-height: var(--line_height_lg);
  }
  .modal__close {
    margin-top: 20px;
    font-size: var(--font_size_14);
  }
}


/* -------------------------
  footer
------------------------- */
footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 0 30PX;
  background-color: hsl(0, 0%, 15%);
  color: hsl(0, 0%, 90%);
}
@media (min-width: 600px) {
footer {
  padding: 30px 15px;
}
}
footer .copyright {
  color: hsl(0, 0%, 70%);
  font-size: 11px;
  text-align: center;
}

/* sponsored
------------------------- */
.sponsored__wrap {
  text-align: center;
}
.sponsored__wrap + .sponsored__wrap {
  margin-top: 60px;
}
.sponsored__wrap h2 {
  font-size: var(--font_size_36);
  margin-bottom: 0.8em;
}
.sponsored__wrap p {
  font-size: var(--font_size_24);
  font-weight: bold;
  line-height: var(--line_height_md);
  margin-top: 1em;
}
.sponsored__wrap.contact h2 {
  font-size: var(--font_size_28);
  margin-bottom: 0.8em;
}
.sponsored__wrap.contact p {
  font-size: var(--font_size_20);
  font-weight: bold;
  line-height: var(--line_height_md);
  margin-top: 1em;
}
.sponsored__wrap.contact p a {
  font-size: var(--font_size_18);
  font-weight: normal;
}
.sponsored__wrap p + p {
  margin-top: 0.2em !important;
}
@media (min-width: 600px) {

}


/* -------------------------
  pagetop
------------------------- */
.fixed__btnWrap {
  position: fixed;
  bottom: 10px;
  right:  10px;
  margin-left: auto;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: bottom 0.3s;
}
@media (min-width:1024px){
  .fixed__btnWrap {
    bottom: 20px;
    right:  20px;
  }
}
.fixed__btnWrap.aos-init:not(.aos-animate) {
  bottom: -50px;
}
.fixed__btnWrap .btn__pageTop {
  width: 50px;
  height: 50px;
  line-height: 1;
  text-align: right;
  background: rgba(0,0,0,1);
  border-radius: 25px;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed__btnWrap .btn__pageTop img {
  margin-top: 2px;
}
@media (any-hover: hover) {
  .fixed__btnWrap .btn__pageTop:hover {
    background: rgba(0,0,0,0.75);
  }
}
.fixed__btnWrap .btn__pageTop:active {
  background: rgba(0,0,0,1);
}

.fixed__btnWrap {
  transition: opacity 0.3s;
}
.fixed__btnWrap:not(.isActive) {
  opacity: 0;
  pointer-events: none;
}
.fixed__btnWrap.isActive {
  opacity: 1;
  pointer-events: all;
}


/* =========================
  OverlayScrollbars カスタム
========================= */
.os-scrollbar {
  --os-handle-min-size: 33px; /* default 33px */
  --os-handle-max-size: none; /* default none */
  --os-handle-perpendicular-size: 100%; /* default 100% */
  --os-handle-perpendicular-size-hover:  100%; /* default 100% */
  --os-handle-perpendicular-size-active: 100%; /* default 100% */
  --os-handle-interactive-area-offset: 0; /* default 0 */
}
.os-scrollbar:has(.os-scrollbar-handle:hover) {
  --os-handle-perpendicular-size-hover:  calc(100% + 1px); /* default 100% */
  --os-handle-perpendicular-size-active: calc(100% + 1px); /* default 100% */
}
.os-theme-dark, .os-theme-light {
  --os-size: 16px;
  --os-padding-perpendicular: 5px;
  --os-padding-axis: 6px;
  --os-track-border-radius: 8px;
  --os-handle-interactive-area-offset: 4p;
  --os-handle-border-radius: 10px;
  box-sizing: border-box;
}
.os-theme-dark {
  --os-handle-bg: rgba(0, 0, 0, .2);
  --os-handle-bg-hover: rgba(0, 0, 0, .35);
  --os-handle-bg-active: rgba(0, 0, 0, .5);
}