@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:   6%;
    padding-right:  6%;
    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
------------------------- */



/* 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.0;
  text-align: center;
}
@media (min-width: 600px) {
  .introduction p {
    font-size: var(--font_size_20);
    line-height: 2.0;
    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);
}



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






/* -------------------------
  common
------------------------- */

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 50px;
}

@media (max-width: 1079px) {
  .section__inner {
    padding: 80px 30px;
  }
}

@media (max-width: 767px) {
  .section__inner {
    padding: 80px 5vw;
  }
}


/* -------------------------
  hero
------------------------- */

/* スクロールの位置上書き */
.scrolldown {
  top:auto;
  bottom: 10px;
}

.section--hero {
  background-color: transparent;
  overflow: hidden;
}

.hero__bg {
  position: relative;
  background-color: transparent;
  width: 100%;
  position: fixed;
  aspect-ratio: 1440 / 918;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background-image: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}

.section--hero {
  aspect-ratio: 1440 / 918;
  position: relative;
  width: 100%;
  height: 100%;
}

.section__inner--hero {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero__title-image {
  width: clamp(300px, 50vw, 868px);
  margin: 0 auto;
}


@media (max-width: 767px) {
  .hero__bg {
    aspect-ratio: 390 / 844;
    height: 97vh;
    height: 97svh;
  }
  .section--hero {
    aspect-ratio: 390 / 844;
    height: 97vh;
    height: 97svh;
  }

  .hero__bg::after::before {
    height: 150px;
  }

  .section__inner--hero {
    justify-content: start;
  }

  .hero__title-image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }


}

@media (max-width: 599px) {
  .hero__title {
    margin-top: 10px;
  }
}


@media (max-width: 399px) {

  .scrolldown {
    top:auto;
    bottom: 15px;
  }

  .hero__bg {
    height: 103vh;
    height: 103svh;
  }
  .section--hero {
    height: 103vh;
    height: 103svh;
  }

  .hero__title-image {
    width: 94%;
  }
}



/* -------------------------
  投票について
------------------------- */

.project_link {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 45px;
  display: inline-block;
}

.section--vote {
  background-color: #D9D9D9;
}

.section__inner--vote {
  padding-top: 20px;
  padding-bottom: 20px;
}

.vote__items {
  list-style: disc;
  padding-left: 20px;
}

.vote__item {
  font-size: 1.6rem;
  line-height: 2;
}

.vote__link {
  color: #039BE5;
  position: relative;
  padding-left: 1.5em;
}

.vote__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url(../../../img/campaign/new_heroine_project2025_final/icon-link.svg) no-repeat left center;
  background-size: 1em 1em;
  margin-top: 0.1em;
}

@media (max-width: 767px) {
  .vote__item {
    font-size: 1.4rem;
  }
}

/* -------------------------
  FINALIST
------------------------- */


.finalist__title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0px;
}

.finalist__discription {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 46px;
}

.finalist__items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  /* 1〜3番目のアイテムを1行目に */
  .finalist__item:nth-child(-n+3) {
    order: 0;
  }

  /* 4〜7番目のアイテムを2行目に */
  .finalist__item:nth-child(n+4) {
    order: 2;
  }

  /* 4番目のアイテムの前で改行させるための疑似要素 */
  .finalist__items::before {
    content: '';
    order: 1;
  }
}

.finalist__item{
  max-width: calc((100% - 3 * 40px) / 4);
}

.finalist__item-image {
  position: relative;
}

.finalist__item-image-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 224 / 316;
  margin: 0 auto;
  border-radius: 8px;
}

.finalist__item-image-rank {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(30px, 5.4vw, 54px);
  object-fit: contain;
  z-index: 1;
}

.finalist__item-name {
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 10px;
}

.finalist__item-name-text {
  font-size: 1.3rem;
  font-weight: bold;
}

.finalist__item-name-en {
  font-size: 1.0rem;
}

.finalist__item-info {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.finalist__item-info-button {
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  padding: 5px;
  min-width: 130px;
}

.finalist__item-info-button--profile {
  border: 1px solid #000;
  background-color: #fff;
}

.finalist__item-info-button--photobook {
  background-color: #000;
  color: #fff;
}

.finalist__item-info-button--like {
  background-color: #FF0081;
  color: #fff;
}

.finalist__item-info-button-like-icon {
  padding-left: 1em;
  background: url(../../../img/campaign/new_heroine_project2025_final/icon-heart.svg) no-repeat center center;
  background-size: 0.9em 0.9em;
  margin-left: 0.3em;
  top: 0.08em;
  position: relative;
}

.finalist__item-info-button-like-check {
  padding-left: 1em;
  background: url(../../../img/campaign/new_heroine_project2025_final/icon-check.svg) no-repeat center center;
  background-size: 0.9em 0.9em;
  margin-left: 0.3em;
  top: 0.08em;
  position: relative;
}

.finalist__item-info-button--ended {
  color: #222;
  background-color: #CACACA;
  pointer-events: none;
}

.finalist__item-info {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 1023px) {
  .finalist__items {
    row-gap: 40px;
    column-gap: 3.9vw;
  }
}

@media (max-width: 767px) {
  .finalist__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .finalist__item {
    max-width: 100%;
  }

  .finalist__item-image-rank {
    width: 54px;
  }

  .finalist__item-name-text {
    font-size: 1.5rem;
  }

  .finalist__item-name-en {
    font-size: 1.2rem;
  }

}



/* -------------------------
  PROFILE
------------------------- */

.profile__title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  background-color: #FFF419;
  line-height: 1;
  padding: 1em 0;
}

.section--profile {
  position: relative;
  background-color: #fff;
}

.section--profile::before {
  content: '';
  border-left: 66px solid #FFF419;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 1199px) {
  .section__inner--profile {
    padding-left: 100px;
  }
}

.section__inner--profile {
  padding-left: 100px;
  padding-top: 0;
}

.profile-items {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.profile-items * {
  min-width: auto;
}

.profile-item {
  display: grid;
  grid-template-columns: minmax(0, 350px) 1fr;
  gap: clamp(80px, 9.4vw, 136px);
  padding-top: 50px;
}

.profile-item-main-image-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 350 / 494;
  object-fit: cover;
}

.profile-item-main-swiper {
  border-radius: 8px;
}

.profile-item-sub-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.profile-item-sub-images-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 350 / 494;
  object-fit: cover;
  border-radius: 8px;
  line-height: 1.2;
}

.profile-item-thumbs-swiper {
  margin-top: 24px;
}

.profile-item-thumbs-swiper .swiper-slide {
  cursor: pointer;
}

.profile-item-catch {
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.profile-item-name-text {
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.2;
}

.profile-item-name-en {
  font-size: 3.2rem;
  margin-bottom: 0.5em;
}

.profile-item-sns {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.profile-item-sns:not(:has(.sns-icon)) {
  margin-bottom: 15px;
}

.sns-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: invert(1);
}

.sns-icon::before {
  content: '';
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
}

.sns-icon--x::before {
  background-image: url(../../../img/campaign/new_heroine_project2025_final/logo__x.svg);
}

.sns-icon--instagram::before {
  background-image: url(../../../img/campaign/new_heroine_project2025_final/logo__instagram.svg);
}

.sns-icon--tiktok::before {
  background-image: url(../../../img/campaign/new_heroine_project2025_final/logo__tiktok.svg);
}

.sns-icon--youtube::before {
  background-image: url(../../../img/campaign/new_heroine_project2025_final/logo__youtube.svg);
  background-size: 24px 24px;
}

.profile-item-links {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.profile-item-link {
  width: clamp(180px, 15.4vw, 223px);
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1;
  padding: 15px 10px;
  border-radius: 30px;
  border: 1px solid #000;
  position: relative;
  padding-left: 60px;
}

.profile-item-link::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 32px 32px;
}

.profile-item-link--movie::before {
  background-image: url(../../../img/campaign/new_heroine_project2025_final/icon-movie.svg);
  background-color: #FF0004;
}

.profile-item-link--photobook::before {
  background-image: url(../../../img/campaign/new_heroine_project2025_final/icon-book.svg);
  background-color: #00B3D6;
}

.profile-item-data {
  width: 100%;
  font-size: 1.5rem;
}

.profile-item-data th {
  width: 100px;
}

.profile-item-data th,
.profile-item-data td {
  padding: 0.3em 0px;
  font-weight: bold;
  line-height: 1.7;
}

.profile-item-data td strong {
  padding-top: 0.2em;
  display: inline-block;
}

.profile-item-data td p {
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 0.2em;
}


@media (max-width: 767px) {

  .profile__title {
    font-size: 3.2rem;
  }

  .section--profile::before {
    border-left-width: 8px;
  }

  .section__inner--profile {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .profile-items {
    gap: 50px;
  }

  .profile-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .profile-item-content {
    display: contents;
  }

  .profile-item-catch {
    font-size: 1.6rem;
  }

  .profile-item-name {
  order: 1;
  text-align: center;
  }
  .profile-item-name-text {
  font-size: 3.2rem;
  line-height: 1.5;
  }
  .profile-item-name-en {
  font-size: 2.0rem;
  margin-bottom: -10px;
  }

  .profile-item-sns {
  order: 2;
  margin: 0 auto;
  }
  .profile-item-images {
  order: 3;
  }

  .profile-item-thumbs-swipe {
    margin-top: 15px;
  }

  .profile-item-links {
    order: 4;
    margin: 0 auto;
  }
  .profile-item-data {
    order: 5;
  }

  .profile-item-links {
    gap: 10px;
    justify-content: start;
  }

  .profile-item-link {
    width: auto;
    width: 160px;
    font-size: 1.6rem;
    padding: 10px 10px;
  }

  .profile-item-link {
    width: auto;
    width: clamp(160px, 15.4vw, 180px);
    font-size: 1.6rem;
    padding: 10px 10px;
    padding-left: 44px;
  }

  .profile-item-link::before {
    left: 5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-size: 21px 21px;
  }

  .profile-item-data {
    font-size: 1.6rem;
  }

  .profile-item-data td p {
    font-size: 1.4rem;
  }


}

@media (max-width: 399px) {
  .profile-item-link {
    width: clamp(100px, 40vw, 160px);
  }
}

/* -------------------------
  グランプリ発表！
------------------------- */

.section--announce {
  background-color: #FFF419;
}

.announce__title {
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  background-color: #FFF419;
  padding: 42px 0;
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  .announce__title {
    font-size: 3.6rem;
    padding: 20px 0;
  }
}

/* -------------------------
  footer image
------------------------- */

.footer__image {
  width: 100%;
  max-width: 100%;
  object-position: center 32%;
  object-fit: cover;
  aspect-ratio: 1440 / 654;
  background-color: #fff;
}

@media (max-width: 767px) {
  .footer__image {
    aspect-ratio: 1440 / 935;
  }
}




/* -------------------------
  footer
------------------------- */

.footer {
  color: rgba(255, 255, 255, 0.9);
  background-color: #262626;
  line-height: 1.6;
}

.footer__inner {
  position: relative;
  max-width: var(--container_width);
  margin: 0 auto;
  padding: 80px var(--container_padding);
  padding-top: 100px;
}

.footer__info {
  text-align: center;
  font-weight: bold;
}

.footer__info-title {
  font-size: 3.2rem;
  margin-bottom: 20px;
}


.footer__info-text {
  font-size: 1.8rem;
  margin-bottom: 60px;
}

.footer__copyright {
  font-size: 1.3rem;
  text-align: center;
}




.vote__start {
  width: 100%;
  margin: 0 auto;
}

.vote__start-text {
  display: inline-block;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
  background-color: #FFF419;
  padding: 0 0.5em;
}

@media (max-width: 599px) {
  .vote__start-text {
    font-size: 2.6rem;
    padding: 0.35em 0.8em;
    line-height: 1.5;
  }
}
