@charset "UTF-8";
/* =========================
   Generic Film Page SCSS
   - Layout first (color/font swap OK)
========================= */
/* ---- Tokens (作品ごとに差し替える場所) ---- */
:root {
  --bg: #ffffff;
  --fg: #421c52;
  --muted: rgba(17, 17, 17, 0.7);
  --line: rgba(17, 17, 17, 0.14);
  --section: #f2f2f2; /* TRailer/劇場背景など “面” を作る色 */
  --section2: #85ade1; /* 通常背景 */
  --accent: #421c52; /* リンク/見出しに使う想定（好きに） */
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --maxw: 980px; /* 中身の最大幅 */
  --gutter: 24px; /* 左右余白 */
}

/* ---- Base reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  margin-block-start: 0;
  margin-block-end: 0;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

iframe {
  width: 100%;
  display: block;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(40px, 2vw, 80px);
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

/* ---- Helpers ---- */
.p-film {
  min-height: 100svh;
}

/* =========================
   Floating menu + Right drawer
========================= */
/* 右上ハンバーガー（常に表示） */
.c-fabMenu {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c-fabMenu__icon {
  width: 18px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  box-shadow: 0 -6px 0 var(--fg), 0 6px 0 var(--fg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

/* 開いてる時に「×」っぽくする（JSが .is-open を付ける） */
.c-fabMenu.is-open .c-fabMenu__icon {
  box-shadow: none;
  transform: rotate(45deg);
}

.c-fabMenu.is-open .c-fabMenu__icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transform: rotate(90deg);
}

/* オーバーレイ */
.c-drawerOverlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.c-drawerOverlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* 右からスライドするドロワー */
.c-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 75;
  width: min(360px, 88vw);
  height: 100svh;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  transition: transform 0.28s ease;
}

.c-drawer.is-open {
  transform: translateX(0);
}

.c-drawer__inner {
  padding: 18px 18px 26px;
  display: grid;
  gap: 10px;
}

.c-drawer__close {
  justify-self: end;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--fg);
}

.c-drawer__link {
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--fg);
  text-decoration: none;
}
.c-drawer__link:hover {
  color: rgba(0, 0, 0, 0.92);
  background: rgba(0, 0, 0, 0.04);
  text-decoration: none;
}
.c-drawer__link img.x {
  width: 40px;
}

/* ユーザーが「動き少なめ」設定ならアニメ切る */
@media (prefers-reduced-motion: reduce) {
  .c-drawer,
  .c-drawerOverlay,
  .c-fabMenu__icon {
    transition: none !important;
  }
}
/* =========================
   KV
========================= */
.s-kv {
  background: var(--section2);
  width: 100%;
}
.s-kv__inner {
  width: min(var(--maxw), 100% - var(--gutter) * 2);
  margin-inline: auto;
  width: 100%;
  display: flex;
  align-items: center;
}
.s-kv__inner .info {
  width: 50%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 40px;
  gap: 20px;
  align-items: end;
}
.s-kv__inner .info img {
  display: block;
}
.s-kv__inner .info img.laurel {
  height: 80px;
}
.s-kv__inner .info img.title-info {
  width: 80%;
}
.s-kv__inner .info img.credit {
  width: 80%;
}
.s-kv__inner .info img.unifrance {
  height: clamp(20px, 2vw, 40px);
}
.s-kv__inner .kv {
  width: 50%;
  height: -webkit-fill-available;
  background: url(../img/kv-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .s-kv__inner {
    flex-direction: column-reverse;
  }
  .s-kv__inner .info {
    width: 100%;
    align-items: center;
    padding: 20px;
  }
  .s-kv__inner .info img.laurel, .s-kv__inner .info img.title-info {
    display: none;
  }
  .s-kv__inner .info img.credit {
    width: 90%;
  }
  .s-kv__inner .kv {
    background: url(../img/kv-sp.png);
    width: 100%;
    background-size: contain;
    height: auto;
    aspect-ratio: 1462/2062;
  }
}

.release-info {
  padding: 20px 0px;
  background: var(--section);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.release-info img {
  display: block;
  width: 70%;
  max-width: 500px;
  margin: 0px auto;
}
.release-info img.x {
  width: 40px;
}

/* =========================
   Section Title
========================= */
.c-sectionTitle {
  text-align: center;
}

/* =========================
   Trailer (面 + 中央寄せ + 動画幅固定)
   “ホーリーカウ感”の核：セクションがベタ面で切り替わる
========================= */
.s-trailer {
  background: var(--accent);
  padding: 56px 0;
}
@media (max-width: 720px) {
  .s-trailer {
    padding: 40px 0;
  }
}
.s-trailer {
  color: #f2f2f2;
}
.s-trailer__video {
  width: min(var(--maxw), 100% - var(--gutter) * 2);
  margin-inline: auto;
  max-width: 860px; /* 動画を真ん中にドン */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #000;
}
.s-trailer__video iframe {
  aspect-ratio: 16/9;
}
.s-trailer__video .s-trailer__media {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
}

/* =========================
   Quote block (シンプル版)
   ※背景画像に文字重ねをしたいなら、ここを拡張すればOK
========================= */
.s-quote {
  background: var(--section2);
  padding: 24px 0 10px;
}
.s-quote__bg {
  width: min(var(--maxw), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.s-quote__items {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}
.s-quote__item {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.03);
}
.s-quote__item blockquote {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.s-quote__item figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   Intro
========================= */
.s-intro {
  background: var(--section);
  padding: 56px 0;
}
@media (max-width: 720px) {
  .s-intro {
    padding: 40px 0;
  }
}
.s-intro__inner {
  width: min(var(--maxw), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.s-intro__head {
  max-width: 860px;
  margin-inline: auto;
}
.s-intro__lead {
  margin: 0;
  font-weight: 900;
  color: var(--fg);
  font-size: clamp(20px, 3vw, 40px);
  line-height: 1.3;
}
.s-intro__body {
  max-width: 860px;
  margin-inline: auto;
}
.s-intro__body p {
  margin: 10px 0 0;
}

/* stills row */
.s-stills {
  display: flex;
  width: 100%;
}
.s-stills img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 33.3333333333%;
}
/* =========================
   Theater (面 + タブ + 表を読みやすく)
========================= */
.s-theater {
  background: var(--section2);
  padding: 56px 0;
}
.s-theater h2 {
  color: var(--bg);
}
@media (max-width: 720px) {
  .s-theater {
    padding: 40px 0;
  }
}

.s-theater__inner {
  width: min(var(--maxw), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.s-theater__updated {
  margin: -6px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

/* テーブル（1個だけ想定） */
.theaterTable {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.theaterTable th,
.theaterTable td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  font-size: 13px;
  vertical-align: top;
}
.theaterTable th {
  background: var(--accent);
  color: var(--bg);
  font-weight: 800;
}
.theaterTable td {
  color: var(--muted);
}
.theaterTable a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.theaterTable {
  /* 最終行の線を消す（好み） */
}
.theaterTable tbody tr:last-child td {
  border-bottom: none;
}
.theaterTable {
  /* SPで備考が邪魔なら非表示（必要なら） */
}
@media (max-width: 720px) {
  .theaterTable th:nth-child(4),
  .theaterTable td:nth-child(4) {
    display: none;
  }
  .theaterTable th,
  .theaterTable td {
    padding: 10px 8px;
  }
}

/* =========================
   Footer
========================= */
.l-footer {
  background: var(--accent); /* ここは作品で差し替え想定 */
  color: var(--bg);
  padding: 28px 0 40px;
}
.l-footer__inner {
  width: min(var(--maxw), 100% - var(--gutter) * 2);
  margin-inline: auto;
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    flex-direction: column-reverse;
    align-items: end;
  }
}
.l-footer__logo {
  width: 20%;
  min-width: 200px;
}
.l-footer__credit {
  font-size: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer__credit {
    text-align: right;
  }
}
.l-footer__text {
  margin: 0 0 10px;
  opacity: 0.9;
}
.l-footer__copy {
  opacity: 0.8;
  font-size: 12px;
}