@charset "UTF-8";

/* ==============================
   Prism Nova — NEXT STAR AUDITION
   デザイン設計.md 準拠
============================== */

:root {
  /* ベース */
  --c-bg:        #FFFFFF;
  --c-bg-tint:   #F7F8FC;
  --c-grid:      #E9ECF4;
  /* テキスト */
  --c-text:      #1B1F2E;
  --c-text-sub:  #5A6178;
  --c-heading:   #12142B;
  /* 差し色 */
  --c-pink:      #FF4D8D;
  --c-cyan:      #22C7E5;
  --c-yellow:    #FFC93C;
  --c-pink-deep: #E3336F;
  /* グラデ */
  --grad-prism: linear-gradient(105deg, #FF4D8D 0%, #FF8A5C 25%, #FFC93C 50%, #4ADE9E 75%, #22C7E5 100%);
  --grad-prism-wide: linear-gradient(90deg, #FF4D8D, #FF8A5C, #FFC93C, #4ADE9E, #22C7E5, #FF4D8D);
  --grad-cta: linear-gradient(100deg, #FF4D8D 0%, #FF7A45 100%);
  /* 影 */
  --shadow-card: 0 4px 20px rgba(27, 31, 46, .07);
  --shadow-cta:  0 6px 18px rgba(255, 77, 141, .35);
  /* フォント */
  --font-round: "M PLUS Rounded 1c", sans-serif;
  --font-en:    "Montserrat", sans-serif;
  --font-body:  "Noto Sans JP", sans-serif;
  /* レイアウト */
  --sp-section: 72px;
  --sp-inner: 24px;
  --content-max: 1080px;
  --radius-card: 16px;
  --radius-btn: 999px;
  --header-h: 56px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- utility ---------- */
.u-prism {
  background: var(--grad-prism-wide);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: prismFlow 8s linear infinite;
}
@keyframes prismFlow {
  from { background-position: 0% 0; }
  to   { background-position: 300% 0; }
}
.u-pink { color: var(--c-pink); font-weight: 700; }
.u-marker {
  background: linear-gradient(transparent 72%, var(--c-yellow) 72%, var(--c-yellow) 94%, transparent 94%);
  padding: 0 .1em;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 100%;
  transition: background-size .9s cubic-bezier(.25, .8, .25, 1) .15s;
}
/* JS環境ではマーカー未描画で待機し、スクロール到達で左から引く */
.js .u-marker { background-size: 0% 100%; }
.js .u-marker.is-drawn { background-size: 100% 100%; }
.u-sp { display: inline; }
.u-pc { display: none; }
@media (min-width: 768px) {
  .u-sp { display: none; }
  .u-pc { display: inline; }
}

/* ---------- 共通パーツ ---------- */

.btn-cta {
  display: block;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  padding: 17px 24px;
  background: var(--grad-cta);
  color: #fff;
  font-family: var(--font-round);
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-cta);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 77, 141, .45);
}
.btn-cta--l { padding: 19px 24px; font-size: 18px; }

/* ---------- loader ---------- */
/* JSが動く環境でのみ表示。JS不発時は最初からページが見える */
.loader { display: none; }
.js .loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--c-bg);
  transition: opacity .5s ease, visibility .5s ease;
  /* 失敗時の保険：JSが止まっても4秒で必ず明ける */
  animation: loaderFailsafe .01s linear 4s forwards;
}
.js .loader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes loaderFailsafe { to { opacity: 0; visibility: hidden; } }

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader__mark {
  width: 54px;
  height: 54px;
  background: var(--grad-prism-wide);
  background-size: 300% 100%;
  clip-path: polygon(16% 4%, 96% 50%, 16% 96%);
  animation: prismFlow 3s linear infinite, loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
/* 明け際のズーム中：明滅・グラデ流しを止め、拡大をGPUに任せる */
.loader__mark.is-zoom {
  animation: none;
  opacity: 1;
  will-change: transform;
}

.loader__text {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .14em;
  color: var(--c-heading);
}
.loader__bar {
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: var(--c-grid);
  overflow: hidden;
}
.loader__bar-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--grad-prism);
  animation: loaderBar 1.4s ease-out forwards;
}
/* 最低表示時間(1.6s)+明け動作(0.22s)に合わせ、最後まで一定の滑らかさで100%へ */
@keyframes loaderBar { from { width: 0; } to { width: 100%; } }
.loader__bar-fill { animation-duration: 1.82s; animation-timing-function: cubic-bezier(.45, 0, .3, 1); }

/* ---------- header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-grid);
  z-index: 100;
  transition: box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-card); }
.header__inner {
  max-width: var(--content-max);
  height: 100%;
  margin-inline: auto;
  padding-inline: 16px var(--sp-inner);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo { display: flex; align-items: center; gap: 7px; }
.header__logo-mark {
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--c-pink);
  filter: drop-shadow(2px 0 0 var(--c-cyan));
}
.header__logo-text {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 17px;
  color: var(--c-heading);
  letter-spacing: .02em;
}
.header__cta {
  background: var(--grad-cta);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1;
  padding: 11px 22px;
  border-radius: var(--radius-btn);
  transition: opacity .25s ease;
}
.header__cta:hover { opacity: .85; }

/* ---------- progress bar ---------- */
.progress {
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 99;
  pointer-events: none;
}
.progress__fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad-prism);
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- section 共通 ---------- */
.section { padding: var(--sp-section) 0; }
.section--white { background: var(--c-bg); }
.section--tint  { background: var(--c-bg-tint); }
/* カラーセクション（差し色と同じ原色。白カードが乗る前提） */
.section--pink   { background: var(--c-pink); }
.section--blue   { background: var(--c-cyan); }
.section--yellow { background: var(--c-yellow); }
/* 原色背景上の見出しまわり調整 */
.section--pink .section__en,
.section--blue .section__en { color: #fff; }
.section--yellow .section__en { color: var(--c-heading); }
.section--pink .section__ttl,
.section--blue .section__ttl { color: #fff; }
/* マーカーは背景と喧嘩しない色に差し替え */
.section--pink .u-marker,
.section--blue .u-marker {
  background: linear-gradient(transparent 72%, rgba(18, 20, 43, .35) 72%, rgba(18, 20, 43, .35) 94%, transparent 94%);
}
.section--yellow .u-marker {
  background: linear-gradient(transparent 72%, #fff 72%, #fff 94%, transparent 94%);
}
.section--pink .section__lead,
.section--blue .section__lead { color: #fff; }
.section--yellow .section__lead { color: var(--c-text); }
/* 水色背景の注記はグレーだと沈むので白に */
.section--blue .req__notes { color: #fff; }
.section__inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--sp-inner);
  position: relative;
}
.section__head { text-align: center; margin-bottom: 40px; }
.section__en {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--c-cyan);
  margin-bottom: 10px;
}
.section__ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.5;
  color: var(--c-heading);
}
.section__lead { margin-top: 18px; font-size: 14px; color: var(--c-text-sub); }

/* 装飾：プリズムの光片（菱形◇・十字キラ✦・玉ボケ○） */
.fx { position: absolute; pointer-events: none; }
.fx--dia {
  width: 58px; height: 58px;
  transform: rotate(45deg);
}
.fx--dia-s { width: 32px; height: 32px; }
/* 塗りは各色2色グラデ×透過65%（GSAPのopacityアニメと干渉させない） */
.fx--c-yellow {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--c-yellow) 65%, transparent),
    color-mix(in srgb, #FF8A5C 65%, transparent));
}
.fx--c-pink {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--c-pink) 65%, transparent),
    color-mix(in srgb, #FF8A5C 65%, transparent));
}
.fx--c-cyan {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--c-cyan) 65%, transparent),
    color-mix(in srgb, #4ADE9E 65%, transparent));
}
/* 枠線だけの菱形（ベタ塗りに重ねて使う） */
.fx--line {
  background: transparent;
  border: 1.5px solid #A9AFC0;
}
/* 特大サイズ（背景寄りの飾り） */
.fx--dia-l { width: 110px; height: 110px; }
/* ピント外＝手前の光片。ぼかしで被写界深度を出す（テキストには使わない） */
.fx--blur   { filter: blur(7px); }
.fx--blur-s { filter: blur(3px); }
/* 重ね用オフセット：同じ位置クラスのベタ塗りから右下にずらす */
.fx--off { margin: 22px 0 0 26px; }
/* bottom基準の要素はmargin-topが効かないので、margin-bottomで下へずらす */
.fx--ab2.fx--off { margin: 0 0 -22px 26px; }
/* 特大ベタ塗りに重ねる枠線は、内側に埋没しないよう角へ大きくずらす */
.fx--dia-l + .fx--off { margin: 74px 0 0 82px; }
/* PC専用の菱形（SPでは非表示） */
.fx--pc { display: none; }

/* 配置（FV・クロージング共通のp1〜p8） */
.fx--p1 { top: 16%; left: 8%; }
.fx--p2 { top: 12%; right: 10%; }
.fx--p3 { top: 38%; right: 5%; }
.fx--p4 { bottom: 7%; left: 6%; }
.fx--p5 { bottom: 16%; right: 14%; }
.fx--p6 { top: 47%; left: -14px; }
.fx--p7 { top: 26%; left: 18%; }
.fx--p8 { bottom: 40%; right: 20%; }

/* クロージングは本文が多いため、被りやすい2個を左右の端へ逃がす */
.closing__deco .fx--p5 { right: -16px; bottom: 20%; }
.closing__deco .fx--p8 { right: auto; left: -14px; bottom: 34%; }

/* セクション内ワンポイント */

/* ABOUTの菱形（テキストの背面に敷く）
   横は画面外への見切れをクリップ（横スクロール対策）、縦はパララックスで
   セクション境界を越えて見えるよう逃がす */
.about { overflow-x: clip; overflow-y: visible; }
.about .section__inner { z-index: 0; position: relative; }
.about .fx { z-index: -1; }
.fx--ab1 { top: -16px; right: -56px; }
.fx--ab2 { bottom: -36px; left: -24px; }
.fx--ab4 { bottom: -84px; right: -18px; }
@media (min-width: 768px) {
  .fx--ab1 { top: -8px; right: -12px; }
  .fx--ab2 { bottom: -24px; left: 24px; }
  .fx--ab3 { bottom: 30%; right: 120px; }
  .fx--ab4 { bottom: -60px; right: 7%; }
  /* 特大枠線は左下の塗りペアと縦に重ならないよう、左辺の中段へ離して置く */
  .fx--ab5 { bottom: 46%; left: -34px; }
}

/* ---------- FV ---------- */
.fv {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 40px) 0 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.fv__grid, .closing__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-grid) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .55;
  pointer-events: none;
}
.fv__bg-en {
  position: absolute;
  top: calc(var(--header-h) + 22px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(40px, 11.5vw, 96px);
  line-height: 1.05;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-grid);
  letter-spacing: .02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.fv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--sp-inner);
}
.fv__catch {
  position: relative;
  z-index: 2;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(28px, 8.5vw, 32px);
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--c-heading);
  margin-bottom: 24px;
}
.fv__catch-line { display: block; white-space: nowrap; position: relative; }
/* 虹グラデ文字はbackground-clipのためtext-shadowが効かない。下層に白グローの影武者を敷く */
.fv__catch-line::before {
  content: attr(data-txt);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: #fff;
  text-shadow: 0 0 12px #fff, 0 0 8px #fff, 0 0 4px #fff, 0 0 2px #fff;
}
.fv__sub {
  position: relative;
  z-index: 2;
  /* キャラ立ち絵の上でも読ませるための白グロー（塗り帯を敷かずに可読性を確保） */
  text-shadow: 0 0 10px #fff, 0 0 6px #fff, 0 0 3px #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 32px;
}
.fv__cta-wrap { position: relative; z-index: 2; }

/* FV 図形 */
.fv__deco, .closing__deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
/* （旧・三角紙吹雪は.fxプリズム光片に置換済み） */

/* 再生ボタン（輪郭のみ・虹） */
.fv__play {
  position: absolute;
  right: 5%;
  top: 30%;
  width: 64px;
  height: 64px;
}
.fv__play::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 3px;
  background: var(--grad-prism);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .8;
}
.fv__play::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--c-pink);
  opacity: .75;
}

/* FV キャラクター */
.fv__chara {
  position: absolute;
  right: -111px;
  top: calc(var(--header-h) - 119px);
  z-index: 1;
  height: 550px;
  width: auto;
  filter: drop-shadow(0 6px 24px rgba(27, 31, 46, .12));
  pointer-events: none;
}

/* ---------- ABOUT ---------- */
.about__body { max-width: 640px; margin-inline: auto; }
.about__body p + p { margin-top: 1.4em; }

/* ---------- WANTED / SUPPORT カード ---------- */
.wanted__cards, .support__cards {
  display: grid;
  gap: 20px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
}
.card__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
}
.card__num--s { font-size: 15px; color: var(--c-pink); -webkit-text-fill-color: currentColor; background: none; animation: none; margin-bottom: 6px; }
.card__ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-heading);
  margin-bottom: 10px;
}
.card__txt { font-size: 14px; line-height: 1.9; }
.card--icon { text-align: center; }
.card--icon .card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  color: var(--c-cyan);
}
.card--icon .card__txt { text-align: left; }

/* ---------- REQUIREMENTS ---------- */
.req__card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  max-width: 640px;
  margin-inline: auto;
}
.req__card + .req__card { margin-top: 20px; }
.req__ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-heading);
  margin-bottom: 14px;
}
.req__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.8;
}
.req__list li + li { margin-top: 10px; }
.req__list li::before {
  position: absolute;
  left: 0;
  font-weight: 800;
  font-family: var(--font-en);
}
.req__list--must li::before { content: "✓"; color: var(--c-pink); }
.req__list--plus li::before { content: "+"; color: var(--c-cyan); font-size: 17px; top: -1px; }
.req__notes {
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--c-text-sub);
}

/* ---------- PROCESS ---------- */
.process__steps { max-width: 640px; margin-inline: auto; }
.process__step {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-grid);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.process__step + .process__step { margin-top: 40px; }
/* つなぎ線（シアン点線） */
.process__step + .process__step::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 44px;
  height: 40px;
  border-left: 3px dotted var(--c-cyan);
  transform-origin: top;
}
.process__num {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.process__num-en {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--c-text-sub);
  margin-bottom: 4px;
}
.process__num .u-prism {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 40px;
}
.process__ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-heading);
  margin-bottom: 8px;
}
.process__txt { font-size: 14px; line-height: 1.9; }
.process__notes {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 12px;
  color: var(--c-text-sub);
}

/* ---------- FAQ ---------- */
.faq__list { max-width: 640px; margin-inline: auto; }
.faq__item {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq__item + .faq__item { margin-top: 14px; }
.faq__q {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 44px 18px 20px;
  position: relative;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-heading);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q-mark {
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--c-pink);
  flex-shrink: 0;
}
.faq__toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--c-cyan);
  transform: translateY(-50%);
  transition: transform .3s ease;
}
.faq__toggle::after { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__toggle::after { transform: translateY(-50%) rotate(0deg); }
/* 閉じアニメ中はopenのままなので、アイコンだけ先に「＋」へ戻す */
.faq__item.is-closing .faq__toggle::after { transform: translateY(-50%) rotate(90deg); }
.faq__a-outer { overflow: hidden; }
.faq__a-wrap { padding: 0 20px 20px 46px; }
.faq__a { font-size: 14px; line-height: 1.9; }

/* ---------- クロージング ---------- */
.closing {
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
  padding: 88px 0 96px;
  text-align: center;
}
.closing__bg-en {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(72px, 24vw, 200px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-grid);
  letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.closing__inner { position: relative; z-index: 2; }
.closing__ttl {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 28px;
  color: var(--c-heading);
  margin-bottom: 28px;
  padding-top: 40px;
}
.closing__body p + p { margin-top: 1.3em; }
.closing__last { margin-top: 1.6em !important; }
.closing__cta-wrap { margin-top: 36px; }
.closing__note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--c-text-sub);
}

/* ---------- footer ---------- */
.footer {
  background: var(--c-heading);
  color: #fff;
  text-align: center;
  padding: 36px var(--sp-inner) 40px;
}
.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 12px;
}
.footer__txt { font-size: 11px; opacity: .7; }

/* ---------- JSアニメ初期状態 ---------- */
.js .js-fade, .js .js-step { opacity: 0; }
.js .wanted .card, .js .wanted .card__num { opacity: 0; }
.js .fv__catch-line, .js .js-fv-sub, .js .js-fv-cta, .js .fv__bg-en { opacity: 0; }
.js .fv__deco .fx, .js .closing__deco .fx, .js .fv__play, .js .fv__chara { opacity: 0; }

/* ---------- PC ---------- */
@media (min-width: 768px) {
  body { font-size: 16px; line-height: 2; }
  .section { padding: 120px 0; }
  .section__en { font-size: 15px; }
  .section__ttl { font-size: 36px; }
  .section__head { margin-bottom: 56px; }

  .header__inner { padding-inline: 32px; }

  .fv { padding-top: calc(var(--header-h) + 64px); }
  .fv__catch { font-size: 72px; line-height: 1.3; margin-bottom: 32px; }
  .fv__sub { font-size: 16px; margin-bottom: 40px; }
  .fv__inner { text-align: left; }
  .fv__cta-wrap { max-width: 420px; }
    /* PCはキャラ＋菱形で十分なため▶︎モチーフは非表示 */
  .fv__play { display: none; }
  /* PC専用菱形：画面右側のバランス取り */
  .fx--pc { display: block; }
  .fx--p2 { top: 10%; right: 6%; }
  .fx--p9 { top: 62%; right: 37%; }
  .fv__chara {
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
    height: min(78svh, 560px);
    margin: 0;
  }

  .wanted__cards, .support__cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .card { padding: 32px 26px; }

  .process__steps {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .process__step { flex-direction: column; }
  .process__step + .process__step { margin-top: 0; }
  /* PC: つなぎは横矢印 */
  .process__step + .process__step::before {
    content: "";
    top: 50%;
    left: -32px;
    height: auto;
    width: 0; height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent var(--c-cyan);
    transform: translateY(-50%);
  }

  .closing { padding: 140px 0 150px; }
  .closing__ttl { font-size: 40px; padding-top: 64px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .u-prism { animation: none; }
  .js .loader { display: none; }
  .js .wanted .card, .js .wanted .card__num,
  .js .js-fade, .js .js-step,
  .js .fv__catch-line, .js .js-fv-sub, .js .js-fv-cta, .js .fv__bg-en,
  .js .fv__deco .fx, .js .closing__deco .fx, .js .fv__play, .js .fv__chara { opacity: 1; }
}
