@charset "UTF-8";
/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

h2 {
  font-size: 2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spacer {
  height: 60px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .spacer {
    height: 0;
    width: 0;
  }
}

section.section-default {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  section.section-default {
    padding: 80px 0;
  }
}
section.section-default .section_inner {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner {
    padding: 0 30px;
  }
}
section.section-default .section_inner .section_main {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main {
    max-width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

.dim {
  color: rgba(0, 0, 0, 0.5);
}

/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 200lvh;
  top: 0;
  left: 0;
  background-color: #FCFDF8;
}
@media screen and (max-width: 768px) {
  .fixed_bg {
    background-size: 1920px;
  }
}

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loader {
  max-width: 200px;
  width: 30%;
  opacity: 0.32;
}

/*-------------------------------*/
/*nav----------------------------*/
/*-------------------------------*/
/*sharebtn-----------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  gap: 5px;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

.share_btns-square {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.share_btns-square::before {
  content: "";
  letter-spacing: 0.1em;
  padding-right: 10px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url(img/asset-light/share.svg);
  background-size: contain;
  background-position: center center;
}
.share_btns-square li {
  cursor: pointer;
  width: 24px;
}
.share_btns-square li img {
  transition: 0.2s;
}
.share_btns-square li img:hover {
  opacity: 0.5;
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
@keyframes noise {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 800px;
  }
}
.noise_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg_l.webp);
  background-repeat: repeat;
  background-size: 200px;
  animation: noise 2s steps(10) infinite;
  line-height: 0;
  opacity: 0.4;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .noise_overlay {
    background-size: 200px;
  }
}

/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-inview------------------------*/
.fadeIn {
  opacity: 0;
  transition: 0.5s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(5px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.fadeFromLeft {
  opacity: 0;
  transition: 1s;
  transform: translateX(-20px);
}
.fadeFromLeft.is-inview {
  transform: translateX(0);
  opacity: 1;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*gnav (PC fixed top, fade-out to left)*/
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  padding: 0 20px;
  /* TOPの左端から右に向かって透明 → 不透明にフェード */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.9) 75%, rgb(255, 255, 255) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .gnav {
    display: none;
  }
}
.gnav {
  /* 下線の dashed もグラデーションで消えるように */
}
.gnav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 100%);
  -webkit-mask-image: repeating-linear-gradient(to right, #000 0 4px, transparent 4px 8px);
  mask-image: repeating-linear-gradient(to right, #000 0 4px, transparent 4px 8px);
}
.gnav .gnav__list {
  display: flex;
  align-items: center;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gnav .gnav__item a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  transition: 0.2s;
}
.gnav .gnav__item a:hover {
  opacity: 0.5;
}
.gnav .gnav__item--icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  letter-spacing: 0;
  text-indent: 0;
}
.gnav .gnav__item--icon a img {
  width: 20px;
  height: auto;
}

/*-------------------------------*/
/*gnav__btn (SP hamburger ⇆ X)--*/
.gnav__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .gnav__btn {
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 7px;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 110;
    border: none;
    cursor: pointer;
    padding: 16px;
    /* TOP内は非表示、抜けたらフェードイン */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s, background-color 0.3s;
  }
  .gnav__btn span {
    display: block;
    height: 3px;
    background-color: #000;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
  }
  .gnav__btn {
    /* 棒線の長さ・透明度をデザインに合わせて変化 */
  }
  .gnav__btn span:nth-child(1) {
    width: 28px;
    opacity: 0.3;
  }
  .gnav__btn span:nth-child(2) {
    width: 22px;
    background-color: #C4D700;
    opacity: 1;
  }
  .gnav__btn span:nth-child(3) {
    width: 12px;
    opacity: 0.3;
  }
  .gnav__btn.is-active {
    opacity: 1;
    visibility: visible;
  }
  .gnav__btn {
    /* 開いている時：ハンバーガー → ✕（片方ダーク、片方dim） */
  }
  .gnav__btn.is-open span {
    align-self: center; /* X時は中央寄せにして交点を揃える */
  }
  .gnav__btn.is-open span:nth-child(1) {
    width: 26px;
    opacity: 1;
    transform: translateY(10px) rotate(45deg);
    background-color: #C4D700;
  }
  .gnav__btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .gnav__btn.is-open span:nth-child(3) {
    width: 26px;
    opacity: 0.4;
    background-color: #000;
    transform: translateY(-10px) rotate(-45deg);
  }
}

/*-------------------------------*/
/*gnav-sp (SP overlay menu)------*/
.gnav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .gnav-sp {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100lvh;
    background-color: #fff;
    z-index: 105;
    padding: 40px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    /* 閉じる時：項目が消え終わってから背景を消す */
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }
  .gnav-sp.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }
  .gnav-sp.is-closing {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease 0.15s, visibility 0s linear 0.5s;
  }
}
.gnav-sp .gnav-sp__list {
  list-style: none;
  margin: 0;
  padding: 0 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  height: 80%;
  justify-content: center;
  /* 罫線は pseudo-element に分離して上→下に展開できるように */
}
.gnav-sp .gnav-sp__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, #000 0 50%, transparent 50%);
  background-size: 1px 4px;
  background-repeat: repeat-y;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0s;
}
.gnav-sp .gnav-sp__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.gnav-sp .gnav-sp__item a {
  display: inline-block;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}
.gnav-sp .gnav-sp__item--icon a {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
  text-indent: 0;
  padding-left: 7px;
}
.gnav-sp .gnav-sp__item--icon a img {
  width: 20px;
  height: auto;
}
.gnav-sp {
  /* 開く時：上から順に stagger で出てくる */
}
.gnav-sp.is-open .gnav-sp__list::before {
  clip-path: inset(0);
  transition: clip-path 0.7s ease-out 0.05s;
}
.gnav-sp.is-open .gnav-sp__item {
  opacity: 1;
  transform: translateY(0);
}
.gnav-sp.is-open .gnav-sp__item:nth-child(1) {
  transition-delay: 0.2s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(2) {
  transition-delay: 0.28s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(3) {
  transition-delay: 0.36s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(4) {
  transition-delay: 0.44s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(5) {
  transition-delay: 0.52s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(6) {
  transition-delay: 0.6s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(7) {
  transition-delay: 0.68s;
}
.gnav-sp.is-open .gnav-sp__item:nth-child(8) {
  transition-delay: 0.76s;
}
.gnav-sp {
  /* 閉じる時：上から順に消える（軽く上へスライド） */
}
.gnav-sp.is-closing .gnav-sp__list::before {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.35s ease-in;
}
.gnav-sp.is-closing .gnav-sp__item {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease-in, transform 0.3s ease-in;
}
.gnav-sp.is-closing .gnav-sp__item:nth-child(1) {
  transition-delay: 0s;
}
.gnav-sp.is-closing .gnav-sp__item:nth-child(2) {
  transition-delay: 0.04s;
}
.gnav-sp.is-closing .gnav-sp__item:nth-child(3) {
  transition-delay: 0.08s;
}
.gnav-sp.is-closing .gnav-sp__item:nth-child(4) {
  transition-delay: 0.12s;
}
.gnav-sp.is-closing .gnav-sp__item:nth-child(5) {
  transition-delay: 0.16s;
}
.gnav-sp.is-closing .gnav-sp__item:nth-child(6) {
  transition-delay: 0.2s;
}
.gnav-sp.is-closing .gnav-sp__item:nth-child(7) {
  transition-delay: 0.24s;
}
.gnav-sp.is-closing .gnav-sp__item:nth-child(8) {
  transition-delay: 0.28s;
}

/*-------------------------------*/
/*top_btn-----------------------*/
.top_btn {
  z-index: 99;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: scale(1, 0.6);
  color: #000;
  cursor: pointer;
}
.top_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top_btn.active {
    opacity: 1;
  }
}
.top_btn:hover {
  transform: scale(1, 0.6) translateY(2px);
  opacity: 0.5;
}

/*-------------------------------*/
footer .footer {
  background: linear-gradient(180deg, #FFF 0%, #FBFFD7 100%);
  position: relative;
  z-index: 2;
  transition: 1s;
  padding: 50px 50px 120px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 50px 20px 80px;
  }
}
footer .footer .copyright {
  font-size: 0.7em;
  margin-top: 10px;
  text-align: center;
}
footer .footer ul.specs {
  margin-top: 20px;
}
footer .footer ul.specs li {
  font-size: 0.7em;
  line-height: 1.6;
  text-align: center;
}
footer .footer ul.specs li span {
  display: inline-block;
}

/*billing-----------------------*/
section.billing {
  background-color: transparent;
}
section.billing .billing__inner {
  max-width: 670px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.billing .billing__inner {
    max-width: 280px;
  }
}

/*-------------------------------*/
/*section common----------------*/
.section {
  position: relative;
  z-index: 2;
  padding: 120px 50px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 30px;
  }
}
.section h2 {
  margin-bottom: 2em;
}
.section .section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section .section__inner {
    max-width: 500px;
  }
}
.section--story, .section--staff {
  background: linear-gradient(to bottom, #FAFDFA, #fff);
}
.section {
  /* 見出し下に小画像・◇を置くセクションは見出し下余白を詰める */
}
.section--introduction h2, .section--story h2 {
  margin-bottom: 1.2em;
}

/* 見出し下の小さな装飾画像（INTRODUCTION / STORY 共通） */
.section__thumb {
  width: 200px;
  max-width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section__thumb {
    width: 130px;
  }
}
.section__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* セクション間のフルブリード画像帯（Frame6 = 君のために / Frame2 = 4枚帯） */
.band {
  position: relative;
  z-index: 2;
  width: 100%;
  line-height: 0;
}
.band img {
  width: 100%;
  height: auto;
  display: block;
}
.band--base {
  position: relative;
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
}
@media screen and (max-width: 768px) {
  .band--base {
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
  }
}
.band--text {
  position: absolute;
  width: 2.8%;
  top: 18%;
  left: 48.5%;
}
@media screen and (max-width: 768px) {
  .band--text {
    width: 4%;
    top: 17%;
  }
}
.band--strip {
  background-color: #fff;
  display: flex;
}
@media screen and (max-width: 768px) {
  .band--strip {
    flex-direction: column;
    padding: 0 20px;
  }
}
.band .imgs {
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
  border-right: solid 2px #000;
}
@media screen and (max-width: 768px) {
  .band .imgs {
    width: 90%;
    border-bottom: solid 1px #000;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    border-left: solid 1px #000;
    gap: 10px;
  }
}
.band .imgs:last-of-type {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .band .imgs:last-of-type {
    border-right: solid 1px #000;
  }
}
.band .imgs:nth-of-type(2), .band .imgs:nth-of-type(4) {
  margin: 0 0 0 auto;
}
/* FRAME6（band--story-top）インビュー演出：
   base = brightness 200%→100% でフェードイン、text = 少し遅れて blur 10px→0 でフェードイン */
.band--story-top {
  /* コンテナ自体の .fadeIn(opacity) は止めて、子要素で演出する */
}
.band--story-top.fadeIn {
  opacity: 1;
}
.band--story-top .band--base {
  opacity: 0;
  filter: brightness(2);
  transition: opacity 1.2s ease, filter 1.2s ease;
}
.band--story-top .band--text {
  opacity: 0;
  filter: blur(10px);
  /* base より少し後（0.7s遅れ）から */
  transition: opacity 1s ease 0.7s, filter 1s ease 0.7s;
}
.band--story-top.is-inview .band--base {
  opacity: 1;
  filter: brightness(1);
}
.band--story-top.is-inview .band--text {
  opacity: 1;
  filter: blur(0);
}

/* FRAME2（band--strip）インビュー演出：INTROバナーと同じトーンで4枚を順にふわり
   （brightness 1.6→1・下から少し・ゆるやかease） */
.band--strip {
  /* コンテナ自体の .fadeIn(opacity) は止めて、子要素で演出する */
}
.band--strip.fadeIn {
  opacity: 1;
}
.band--strip .imgs {
  opacity: 0;
  filter: brightness(1.6);
  transform: translateY(24px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1.2s ease;
}
.band--strip .imgs:nth-of-type(1) {
  transition-delay: 0s;
}
.band--strip .imgs:nth-of-type(2) {
  transition-delay: 0.15s;
}
.band--strip .imgs:nth-of-type(3) {
  transition-delay: 0.3s;
}
.band--strip .imgs:nth-of-type(4) {
  transition-delay: 0.45s;
}
.band--strip.is-inview .imgs {
  opacity: 1;
  transform: none;
  filter: brightness(1);
}

/* ◇◇◇ の装飾（INTRODUCTION / STORY 共通） */
.section__diamonds {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 26px 0 40px;
}
@media screen and (max-width: 768px) {
  .section__diamonds {
    gap: 9px;
    margin: 20px 0 28px;
  }
}
.section__diamonds span {
  width: 10px;
  height: 10px;
  border: 1px solid #C4D700;
  transform: rotate(45deg);
}

.section__title {
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  text-indent: 0.5em;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 18px;
    text-indent: 0.1em;
    letter-spacing: 0.5em;
  }
}
.section__title {
  /* 1文字ずつ下からフェードイン（scrub: スクロール量に応じてJSが値を直書き） */
}
.section__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

/*-------------------------------*/
#top {
  position: relative;
  overflow: hidden;
  background-color: #FFF;
}
@media screen and (max-width: 768px) {
  #top {
    height: 181vw;
  }
}
#top .main {
  width: 49%;
  position: relative;
  opacity: 0;
  transition: 1s;
  overflow: hidden;
  filter: brightness(200%) blur(10px);
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
  }
}
#top .main img {
  transition: 2s;
  transform: scale(1.05);
}
#top .main.active {
  opacity: 1;
  filter: brightness(100%) blur(0px);
}
#top .main.active img {
  transform: scale(1);
}
#top .main2 {
  width: 49%;
  position: relative;
  opacity: 0;
  transition: 1s;
  overflow: hidden;
  filter: brightness(200%) blur(10px);
}
@media screen and (max-width: 768px) {
  #top .main2 {
    width: 100%;
  }
}
#top .main2 img {
  transition: 2s;
  transform: scale(1.05);
}
#top .main2.active {
  opacity: 1;
  filter: brightness(100%) blur(0px);
}
#top .main2.active img {
  transform: scale(1);
}
#top .title {
  position: absolute;
  width: 25%;
  bottom: 21%;
  left: 53%;
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 33%;
    bottom: 40%;
    left: 6%;
  }
}
#top .title {
  opacity: 0;
  transition: 2s;
  filter: blur(10px);
}
#top .title.active {
  filter: blur(0px);
  opacity: 1;
}
#top .title2 {
  position: absolute;
  width: 28%;
  bottom: 32%;
  left: 53%;
}
@media screen and (max-width: 768px) {
  #top .title2 {
    width: 39%;
    bottom: 42.5%;
    left: 35%;
  }
}
#top .title2 {
  opacity: 0;
  transition: 2s;
  filter: blur(10px);
}
#top .title2.active {
  filter: blur(0px);
  opacity: 1;
}
#top .copy {
  position: absolute;
  width: 5.5%;
  top: 7%;
  right: 4%;
}
@media screen and (max-width: 768px) {
  #top .copy {
    width: 31%;
    top: 1.5%;
    right: 3%;
  }
}
#top .copy {
  opacity: 0;
  transition: 2s;
}
#top .copy.active {
  opacity: 1;
}
#top .copy_tate {
  position: absolute;
  width: 2%;
  top: 46%;
  left: 34%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    width: 4.3%;
    top: 40%;
    left: 88%;
  }
}
#top .copy_tate {
  opacity: 0;
  transition: 2s;
}
#top .copy_tate.active {
  opacity: 1;
}
#top .copy_yoko {
  position: absolute;
  width: 38%;
  top: 7%;
  left: 53%;
}
@media screen and (max-width: 768px) {
  #top .copy_yoko {
    width: 90%;
    top: 76%;
    left: 5.5%;
  }
}
#top .copy_yoko {
  opacity: 0;
  transition: 2s;
}
#top .copy_yoko.active {
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 10%;
  top: 88.5%;
  left: 86%;
  width: 11%;
}
@media screen and (max-width: 768px) {
  #top .release {
    top: 74%;
    width: 22%;
    left: 73%;
  }
}
#top .release {
  opacity: 0;
  transition: 2s;
}
#top .release.active {
  opacity: 1;
}
#top .release2 {
  position: absolute;
  width: 10%;
  top: 87%;
  left: 86%;
  width: 11%;
}
@media screen and (max-width: 768px) {
  #top .release2 {
    top: 84%;
    width: 20%;
    left: 73.5%;
  }
}
#top .release2 {
  opacity: 0;
  transition: 2s;
}
#top .release2.active {
  opacity: 1;
}
#top .credit {
  position: absolute;
  width: 29%;
  bottom: 3%;
  left: 53%;
}
@media screen and (max-width: 768px) {
  #top .credit {
    width: 90%;
    left: 5%;
    bottom: 3%;
  }
}
#top .credit {
  opacity: 0;
  transition: 2s;
}
#top .credit.active {
  opacity: 1;
}
#top .credit2 {
  position: absolute;
  width: 27%;
  bottom: 5%;
  left: 53%;
}
@media screen and (max-width: 768px) {
  #top .credit2 {
    width: 80%;
    left: 5%;
    bottom: 0%;
  }
}
#top .credit2 {
  opacity: 0;
  transition: 2s;
}
#top .credit2.active {
  opacity: 1;
}

/*info--------------------------*/
#info {
  padding: 60px 50px;
  z-index: 2;
  position: relative;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #info {
    background-color: #FFF;
    padding: 20px 20px 0px;
  }
}
#info .info__follow {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}
#info .info__follow a {
  width: 80%;
  max-width: 220px;
}
#info .info__follow a:hover {
  opacity: 0.7;
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto 40px;
}

/*-------------------------------*/
/*trailer-----------------------*/
#trailer .section__inner {
  max-width: 940px;
}
#trailer .trailer__embed {
  width: 100%;
}

.youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background-color: #d9d9d9;
}
.youtube_embed iframe, .youtube_embed #embed_movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer_tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  flex-wrap: wrap;
}
.trailer_tabs li {
  margin-top: 2px;
  height: 3em;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 900;
  color: #FEFEFE;
  background-color: #1a1a1a;
}
.trailer_tabs .tab.active {
  background-color: #c5cc76;
  pointer-events: none;
}
.trailer_tabs .tab.active::before {
  content: "●";
  letter-spacing: 0.25em;
}

/*-------------------------------*/
/*introduction------------------*/
#introduction {
  /* セクションの左右パディングは内側だけに付け、バナーはフルブリードにする */
  padding: 0 0 120px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #introduction {
    padding: 0 0 80px;
  }
}
#introduction .section__inner {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #introduction .section__inner {
    padding: 0 20px;
  }
}
#introduction {
  /* 上部コラージュバナー（フルブリード） */
}
#introduction .introduction__banner {
  width: 100%;
  position: relative;
  margin-bottom: -40px;
}
@media screen and (max-width: 768px) {
  #introduction .introduction__banner {
    margin-bottom: 40px;
  }
}
#introduction .introduction__banner img {
  width: 100%;
  height: auto;
  display: block;
}
#introduction .introduction__banner .banner1 {
  position: relative;
}
#introduction .introduction__banner .banner2, #introduction .introduction__banner .banner3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#introduction .introduction__banner {
  /* インビュー演出：1=左, 2=上, 3=右 から順にふわり */
  /* コンテナ自体の fadeInUp は無効化し、各bannerで演出 */
}
#introduction .introduction__banner.fadeInUp {
  opacity: 1;
  transform: none;
}
#introduction .introduction__banner .banner1, #introduction .introduction__banner .banner2, #introduction .introduction__banner .banner3 {
  opacity: 0;
  /* 明るいところから沈めて柔らかく（FRAME6と同様のbrightness） */
  filter: brightness(1.6);
  /* ゆるやかなease＋長めの時間で柔らかく */
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1.2s ease;
}
#introduction .introduction__banner .banner1 {
  transform: translateX(-28px);
}
#introduction .introduction__banner { /* 左から */ }
#introduction .introduction__banner .banner2 {
  transform: translateY(-20px);
  transition-delay: 0.2s;
}
#introduction .introduction__banner { /* 上から（少し遅れて） */ }
#introduction .introduction__banner .banner3 {
  transform: translateX(28px);
  transition-delay: 0.4s;
}
#introduction .introduction__banner { /* 右から（さらに遅れて） */ }
#introduction .introduction__banner.is-inview .banner1, #introduction .introduction__banner.is-inview .banner2, #introduction .introduction__banner.is-inview .banner3 {
  opacity: 1;
  transform: none;
  filter: brightness(1);
}
#introduction .section__thumb {
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  #introduction .section__thumb {
    margin-bottom: 20px;
  }
}
#introduction .introduction__lead {
  text-align: center;
}
#introduction .introduction__credit {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  #introduction .introduction__credit {
    font-size: 16px;
  }
}
#introduction .introduction__credit {
  /* 出演者・監督名は Regular（太め）で強調 */
}
#introduction .introduction__credit .introduction__name {
  font-weight: 400;
}
#introduction .introduction__credit {
  /* 中野量太の上に乗る作品名ルビ */
}
#introduction .introduction__credit .introduction__ruby {
  font-size: 0.4em;
  font-weight: 300;
  letter-spacing: 0.02em;
}
#introduction .introduction__catch {
  margin: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  #introduction .introduction__catch {
    font-size: 16px;
    line-height: 1.6;
  }
}
#introduction .introduction__body {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1.8em;
}
#introduction .introduction__body p {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #introduction .introduction__body p {
    font-size: 14px;
    line-height: 2;
  }
}

/*-------------------------------*/
/*story-------------------------*/
#story .story__img {
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  /* 親(.fadeInUp)の opacity/translate は無効化して、中の img だけ動かす */
  margin-bottom: 2em;
}
#story .story__img.fadeInUp {
  opacity: 1;
  transform: none;
}
#story .story__img img {
  transform: scale(1.1);
  opacity: 0;
  transition: transform 3s ease-out, opacity 3s ease-out;
}
#story .story__img.is-inview img {
  transform: scale(1);
  opacity: 1;
}
#story .story__body {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  line-height: 2.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #story .story__body {
    font-size: 14px;
    gap: 10px;
  }
}
#story .story__body p {
  margin: 0;
}

/*-------------------------------*/
/*cast--------------------------*/
#cast, #staff {
  /* カード2カラムのグリッド（写真＋Profile & Commentボタン → モーダル） */
}
#cast .cast-grid, #staff .cast-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #cast .cast-grid, #staff .cast-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
#cast, #staff {
  /* STAFF は1枚のみ中央に */
}
#cast .cast-grid--staff, #staff .cast-grid--staff {
  grid-template-columns: minmax(0, 580px);
  justify-content: center;
}
#cast .cast-grid__item, #staff .cast-grid__item {
  width: 100%;
}
#cast .cast-card, #staff .cast-card {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
#cast .cast-card:focus-visible, #staff .cast-card:focus-visible {
  outline: 2px solid #C4D700;
  outline-offset: 4px;
}
#cast .cast-card__thumb, #staff .cast-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  background-color: #d9d9d9;
  overflow: hidden;
  border: solid 2px #000;
}
@media screen and (max-width: 768px) {
  #cast .cast-card__thumb, #staff .cast-card__thumb {
    border: solid 1px #000;
  }
}
#cast .cast-card__thumb img, #staff .cast-card__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
#cast .cast-card:hover .cast-card__thumb img, #staff .cast-card:hover .cast-card__thumb img {
  transform: scale(1.04);
}
#cast .cast-card:hover, #staff .cast-card:hover {
  /* ホバーで◆が右へ2px */
}
#cast .cast-card:hover .cast-card__bar-text::before, #staff .cast-card:hover .cast-card__bar-text::before {
  transform: translateX(6px);
}
#cast .cast-card__bar, #staff .cast-card__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(51, 56, 0, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
}
@media screen and (max-width: 768px) {
  #cast .cast-card__bar, #staff .cast-card__bar {
    height: 40px;
  }
}
#cast .cast-card__bar-text, #staff .cast-card__bar-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  display: inline-flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #cast .cast-card__bar-text, #staff .cast-card__bar-text {
    font-size: 13px;
  }
}
#cast .cast-card__bar-text::after, #staff .cast-card__bar-text::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 1px;
  margin-left: 14px;
  background-color: #fff;
}
#cast .cast-card__bar-text::before, #staff .cast-card__bar-text::before {
  content: "◆";
  display: inline-block;
  font-size: 10px;
  color: #fff;
  position: absolute;
  right: -8px;
  line-height: 1;
  transition: transform 0.3s ease;
}
#cast .cast-card__name, #staff .cast-card__name {
  display: block;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #cast .cast-card__name, #staff .cast-card__name {
    font-size: 20px;
  }
}
#cast .cast-card__role, #staff .cast-card__role {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  #cast .cast-card__role, #staff .cast-card__role {
    font-size: 13px;
  }
}

/*-------------------------------*/
/*staff-------------------------*/
/* STAFF（中野量太）はCASTカードと異なり、枠付き画像＋名前＋Commentボタン＋PROFILEを
   ページ上に直接表示するレイアウト（Figma 2080-2 準拠）。
   Commentボタンのみモーダル（COMMENT）を開く。背景グラデは _section.scss の .section--staff。 */
#staff .staff__item {
  width: 100%;
  /* Figma: 1200インナーの中でさらに左右50pxインセット */
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #staff .staff__item {
    gap: 24px;
  }
}
#staff {
  /* 画像＋名前・Commentの上段（画像下端に名前とボタンを揃える） */
}
#staff .staff__head {
  display: flex;
  align-items: stretch;
  /* SP: 画像を小さめの枠にし、Commentバーを画像下端に重ねて右へ伸ばす（Figma 2102-663） */
}
@media screen and (max-width: 768px) {
  #staff .staff__head {
    display: grid;
    grid-template-columns: 60% 1fr;
    align-items: start;
  }
}
#staff {
  /* 枠付き画像：376×385 の縦長トリミング（上寄せ） */
}
#staff .staff__thumb {
  flex: 0 0 auto;
  max-width: 320px;
  width: 32%;
  border: 2px solid #000;
}
@media screen and (max-width: 768px) {
  #staff .staff__thumb {
    border: 1px solid #000;
  }
}
#staff .staff__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
#staff .staff__thumb {
  /* SP: 画像枠の高さを確定させる（この高さの下端にComment帯を重ねるため必須）。Figma SP=200×205 */
}
@media screen and (max-width: 768px) {
  #staff .staff__thumb {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 200/205;
    overflow: hidden;
    border: 1px solid #000;
  }
}
#staff {
  /* 画像の右側：名前とCommentボタンを下端に寄せる */
}
#staff .staff__meta {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  /* SP: グリッドに直接並べるため箱を解除（名前とCommentをheadのグリッドへ） */
}
@media screen and (max-width: 768px) {
  #staff .staff__meta {
    display: contents;
  }
}
#staff .staff__name {
  margin: 0;
  margin-left: 40px;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #staff .staff__name {
    grid-column: 1/-1;
    grid-row: 2;
    margin-left: 0;
    font-size: 24px;
  }
}
#staff .staff__name .staff__role {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  #staff .staff__name .staff__role {
    font-size: 14px;
  }
}
#staff {
  /* ※ Commentボタン(.staff__comment / .staff__comment-text)はモーダル廃止に伴い削除 */
  /* PROFILE（ページ上に直接表示） */
}
#staff .staff__body {
  width: 100%;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #staff .staff__body {
    padding-left: 0;
  }
}
#staff {
  /* PROFILEとCOMMENTの区切り（モーダルの .modal__line と同じ点線／間隔は .staff__item の gap で確保） */
}
#staff .staff__line {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #000;
}
#staff .staff__label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.7em;
  color: #C4D700;
}
#staff .staff__profile {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
  /* COMMENTなど段落が続く場合の段落間隔 */
}
#staff .staff__profile + .staff__profile {
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  #staff .staff__profile {
    font-size: 13px;
  }
}

/*-------------------------------*/
/*modal-------------------------*/
/* CAST / STAFF のプロフィール＋コメント モーダル */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: rgba(234, 237, 207, 0.92);
  /* 背景をふわっとフェード。閉じる時はフェード後に非表示へ */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 0;
  }
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}

/* 白いボックスの内側だけがスクロール（背景は固定） */
.modal__box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 70px 80px 80px;
  background-color: #fff;
  /* 少し下から浮き上がって出現 */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 768px) {
  .modal__box {
    max-width: 500px;
    max-height: 100vh;
    min-height: 100vh;
    padding: 60px 20px 50px;
  }
}

.modal.is-open .modal__box {
  opacity: 1;
  transform: translateY(0);
}

/* モーション控えめ設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal__box,
  .modal__close span {
    transition-duration: 0.01ms;
  }
  .modal__box {
    transform: none;
  }
}
/* 閉じるボタン：画面の右上角に固定。装飾・動きはSPメニューの✕（.gnav__btn）と同一 */
.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 60px;
  height: 60px;
  padding: 16px;
  border: none;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.modal__close span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #000;
  opacity: 0.3;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

/* モーダルが開くと2本のバーが回転して✕になる（SPメニューと同じ動き） */
.modal.is-open .modal__close span:nth-child(1) {
  opacity: 1;
  background-color: #C4D700;
  transform: translateY(5px) rotate(45deg);
}
.modal.is-open .modal__close span:nth-child(2) {
  opacity: 0.4;
  background-color: #000;
  transform: translateY(-5px) rotate(-45deg);
}

.modal__head {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .modal__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 30px;
  }
}

/* Figma準拠：キャストは 580×368 の横長トリミング */
.modal__img {
  flex: 0 0 auto;
  width: 61.7%;
  max-width: 580px;
  aspect-ratio: 580/368;
  overflow: hidden;
  border: solid 2px #000;
}
.modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .modal__img {
    border: solid 1px #000;
    width: 100%;
    max-width: 100%;
  }
}
/* 監督モーダルは 462×473 のほぼ正方トリミング */
.modal--staff .modal__img {
  width: 49.1%;
  max-width: 462px;
  aspect-ratio: 462/473;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .modal--staff .modal__img {
    width: 50%;
  }
}

.modal__name-block {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .modal__name-block {
    text-align: left;
    margin: 0 auto 0 0;
  }
}

.modal__name {
  margin: 0;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .modal__name {
    font-size: 22px;
  }
}
.modal__name .modal__role {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .modal__name .modal__role {
    font-size: 13px;
  }
}

.modal__romaji {
  margin: 8px 0 0;
  color: #C4D700;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  .modal__romaji {
    font-size: 12px;
  }
}

.modal__body p {
  margin: 0 0 1.2em;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
}
.modal__body p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .modal__body p {
    font-size: 13px;
  }
}

p.modal__label {
  display: block;
  margin-bottom: 0.25em;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.7em;
  color: #C4D700;
}
@media screen and (max-width: 768px) {
  p.modal__label {
    margin-bottom: 0.25em;
  }
}

.modal__line {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #000;
  margin: 30px 0;
}

/* モーダル表示中は背面スクロールを止める */
body.modal-open {
  overflow: hidden;
}

/*-------------------------------*//*# sourceMappingURL=style.css.map */