/* ══════════════════════════════════════════════════════════
 * クラウド・アルカナ ティザーLP 専用CSS
 *
 * 設計方針:
 *   - 既存 ../style.css のデザイントークン（:root変数）を継承
 *   - ただしゲーム固有レイアウト（#app, #topbar, #screen, .navbtn等）は使わない
 *   - LPは縦1枚スクロール、max-width 1100px
 *   - PC / タブレット(768-1023) / スマホ(〜767) の3段ブレイクポイント
 * ══════════════════════════════════════════════════════════ */

@import url("../style.css");

/* style.css がページ全体に当てている #app 制約を上書きせず、
   LP は body 直下に独自レイアウトを敷く（既存ゲーム本体には影響しない） */

/* === Reset & Base === */
.lp-body{
  background:radial-gradient(ellipse at top,#2a1a4a 0%,#0f0820 70%);
  color:var(--ink);
  line-height:1.75;
  font-feature-settings:"palt";
  min-height:100vh;
}
.lp-body a{color:var(--accent3);text-decoration:none;transition:color .15s}
.lp-body a:hover{color:var(--accent)}
.lp-body img{max-width:100%;height:auto;display:block}
.lp-body ul{list-style:none;padding:0;margin:0}

/* === レイアウト共通 === */
.lp-section{
  position:relative;
  padding:96px 20px;
}
.lp-section-alt{
  background:linear-gradient(180deg,#0a0518 0%,#1a0f2e 50%,#0a0518 100%);
}
.lp-inner{
  max-width:1100px;
  margin:0 auto;
}
.lp-inner-narrow{
  max-width:780px;
  margin:0 auto;
}

.lp-eyebrow{
  font-size:12px;
  letter-spacing:6px;
  color:var(--accent3);
  text-transform:uppercase;
  margin:0 0 8px;
  font-weight:700;
}
.lp-h2{
  font-size:34px;
  font-weight:900;
  letter-spacing:3px;
  margin:0 0 28px;
  background:linear-gradient(90deg,#ffd166,#9b6bff,#5ad7ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1.4;
}
.lp-h3-section{
  font-size:18px;
  letter-spacing:2px;
  color:var(--accent);
  margin:48px 0 18px;
  border-left:4px solid var(--accent2);
  padding-left:12px;
}
.lp-lead{
  font-size:16px;
  line-height:1.95;
  color:var(--ink-dim);
  max-width:760px;
  margin:0 0 24px;
}
.lp-note-small{
  font-size:11px;
  color:var(--ink-dim);
  opacity:.65;
  margin-top:16px;
}

/* === ボタン === */
.lp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:12px;
  font-weight:700;
  letter-spacing:2px;
  font-size:15px;
  border:none;
  cursor:pointer;
  transition:transform .15s, filter .15s, box-shadow .15s;
  text-align:center;
  line-height:1.4;
}
.lp-btn-primary{
  background:linear-gradient(135deg,#ffd166 0%,#9b6bff 50%,#5ad7ff 100%);
  color:#0a0518;
  box-shadow:0 6px 24px #9b6bff66, var(--shadow);
}
.lp-btn-primary:hover{transform:translateY(-2px);filter:brightness(1.12);box-shadow:0 10px 30px #9b6bff88}
.lp-btn-ghost{
  background:#ffffff10;
  color:var(--ink);
  border:1px solid #ffffff33;
}
.lp-btn-ghost:hover{background:#ffffff20;border-color:var(--accent)}
.lp-btn-block{display:flex;width:100%}
.lp-btn-large{padding:18px 36px;font-size:17px;letter-spacing:3px}

/* ══════════════════════════════════════════════════════════
 * ヘッダー
 * ══════════════════════════════════════════════════════════ */
.lp-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(15,8,32,.78);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #ffffff14;
}
.lp-header-inner{
  max-width:1100px;
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  gap:24px;
}
.lp-brand{
  display:flex;
  flex-direction:column;
  text-decoration:none;
}
.lp-brand-logo{
  font-size:18px;
  font-weight:900;
  letter-spacing:3px;
  background:linear-gradient(90deg,#ffd166,#9b6bff,#5ad7ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  line-height:1.1;
}
.lp-brand-sub{
  font-size:10px;
  color:var(--ink-dim);
  letter-spacing:2px;
  margin-top:2px;
}
.lp-nav{
  display:flex;
  gap:20px;
  margin-left:auto;
}
.lp-nav a{
  color:var(--ink-dim);
  font-size:13px;
  letter-spacing:1px;
  font-weight:500;
}
.lp-nav a:hover{color:var(--accent)}
.lp-cta-mini{
  background:linear-gradient(135deg,#9b6bff,#5ad7ff);
  color:#0a0518 !important;
  padding:8px 16px;
  border-radius:8px;
  font-weight:700;
  font-size:13px;
  letter-spacing:1px;
  white-space:nowrap;
}
.lp-cta-mini:hover{filter:brightness(1.15);color:#0a0518 !important}

/* ══════════════════════════════════════════════════════════
 * §1 HERO
 * ══════════════════════════════════════════════════════════ */
.lp-hero{
  min-height:80vh;
  padding:80px 20px 100px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.lp-hero-bg{position:absolute;inset:0;z-index:0;pointer-events:none}
.lp-hero-star-field{position:absolute;inset:0}
.lp-star{
  position:absolute;
  width:3px;height:3px;
  border-radius:50%;
  background:#fff;
  opacity:.6;
  animation:lp-twinkle 3s ease-in-out infinite;
}
.lp-star:nth-child(2){animation-delay:.5s}
.lp-star:nth-child(3){animation-delay:1s}
.lp-star:nth-child(4){animation-delay:1.5s}
.lp-star:nth-child(5){animation-delay:2s}
@keyframes lp-twinkle{0%,100%{opacity:.2;transform:scale(1)}50%{opacity:1;transform:scale(1.8)}}

.lp-hero-inner{
  position:relative;
  z-index:1;
  max-width:1100px;
  width:100%;
  text-align:center;
}
.lp-hero-badge{
  display:inline-block;
  padding:8px 20px;
  border-radius:24px;
  background:linear-gradient(135deg,#ffd16622,#9b6bff22);
  border:1px solid var(--accent);
  color:var(--accent);
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:24px;
  box-shadow:0 0 24px #ffd16633;
  animation:lp-badge-pulse 3s ease-in-out infinite;
}
@keyframes lp-badge-pulse{0%,100%{box-shadow:0 0 20px #ffd16633}50%{box-shadow:0 0 36px #ffd16677}}

.lp-hero-logo{
  font-size:clamp(40px,7vw,72px);
  font-weight:900;
  letter-spacing:8px;
  background:linear-gradient(90deg,#ffd166,#9b6bff,#5ad7ff,#ffd166);
  background-size:200% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  filter:drop-shadow(0 0 30px #9b6bff66);
  margin:0 0 12px;
  animation:lp-hue 10s linear infinite;
  line-height:1.2;
}
@keyframes lp-hue{0%{background-position:0% 50%}100%{background-position:200% 50%}}

.lp-hero-sub{
  font-size:18px;
  color:var(--accent);
  letter-spacing:4px;
  margin:0 0 28px;
  font-weight:500;
}
.lp-hero-catch{
  font-size:16px;
  line-height:2;
  color:var(--ink-dim);
  max-width:680px;
  margin:0 auto 36px;
}
.lp-hero-catch strong{color:var(--ink)}

.lp-hero-cta{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.lp-hero-note{
  font-size:12px;
  color:var(--ink-dim);
  opacity:.7;
  margin:0 0 48px;
}

/* ヒーロービジュアル：メインビジュアル */
.lp-hero-visual{
  position:relative;
  width:100%;
  max-width:1100px;
  margin:24px auto 0;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 60px #000a, 0 0 80px #9b6bff33;
  border:1px solid #ffffff14;
  animation:lp-hero-glow 6s ease-in-out infinite;
}
.lp-hero-image{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:16/9;
  object-fit:cover;
}
@keyframes lp-hero-glow{
  0%,100%{box-shadow:0 30px 60px #000a, 0 0 80px #9b6bff33}
  50%{box-shadow:0 30px 60px #000a, 0 0 120px #9b6bff66}
}

.lp-scroll-hint{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  font-size:10px;
  letter-spacing:3px;
  color:var(--ink-dim);
  opacity:.5;
  animation:lp-scroll-bob 2s ease-in-out infinite;
}
.lp-scroll-arrow{
  width:1px;height:30px;
  background:linear-gradient(180deg,transparent,var(--ink-dim));
}
@keyframes lp-scroll-bob{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)}}

/* ══════════════════════════════════════════════════════════
 * §2 30秒で分かる（3カラム）
 * ══════════════════════════════════════════════════════════ */
.lp-three-col{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:36px;
}
.lp-feature-card{
  padding:36px 24px;
  border-radius:18px;
  background:linear-gradient(160deg,#ffffff0a,#ffffff03);
  border:1px solid #ffffff18;
  text-align:center;
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.lp-feature-card:hover{
  transform:translateY(-6px);
  border-color:var(--accent2);
  box-shadow:0 16px 40px #9b6bff33;
}
.lp-feature-icon{
  font-size:48px;
  margin-bottom:16px;
  filter:drop-shadow(0 0 12px #ffd16666);
}
.lp-feature-title{
  font-size:18px;
  font-weight:800;
  letter-spacing:2px;
  color:var(--accent);
  margin:0 0 12px;
}
.lp-feature-card p{
  font-size:14px;
  line-height:1.9;
  color:var(--ink-dim);
  margin:0;
}
.lp-feature-card strong{color:var(--accent)}

/* ══════════════════════════════════════════════════════════
 * §3 13人のアルカナ
 * ══════════════════════════════════════════════════════════ */
/* 主役4人：2×2 大判 */
.lp-hero-chars{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.lp-hero-char{
  display:flex;
  gap:18px;
  padding:18px;
  border-radius:16px;
  background:linear-gradient(160deg,#2a1a4a,#1a0f2e);
  border:2px solid var(--card-edge);
  box-shadow:var(--shadow);
  transition:transform .25s, border-color .25s, box-shadow .25s;
  overflow:hidden;
}
.lp-hero-char:hover{
  transform:translateY(-4px);
  border-color:var(--accent);
  box-shadow:0 16px 40px #9b6bff44;
}
.lp-hero-char-img{
  flex:0 0 140px;
  border-radius:12px;
  overflow:hidden;
  background:#0a0518;
  border:1px solid #ffffff22;
}
.lp-hero-char-img img{
  width:100%;
  aspect-ratio:2/3;
  object-fit:cover;
  object-position:top center;
}
.lp-hero-char-info{
  flex:1;
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.lp-hero-char-role{
  font-size:11px;
  letter-spacing:3px;
  color:var(--accent3);
  margin-bottom:4px;
}
.lp-hero-char-name{
  font-size:24px;
  font-weight:900;
  letter-spacing:4px;
  color:var(--accent);
  margin-bottom:8px;
}
.lp-hero-char-truename{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
  padding:3px 10px;
  border-radius:6px;
  background:#0008;
  color:var(--ink-dim);
  border:1px solid #ffffff22;
  width:fit-content;
  margin-bottom:10px;
  cursor:help;
  transition:color .2s, background .2s;
}
.lp-hero-char:hover .lp-hero-char-truename{
  color:var(--accent);
  background:var(--bg2);
  border-color:var(--accent);
}
.lp-hero-char-line{
  font-size:13px;
  line-height:1.8;
  color:var(--ink-dim);
  margin:0;
  font-style:italic;
}

/* サムネ9人：3×3 */
.lp-thumb-chars{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.lp-thumb-char{
  position:relative;
  padding:12px;
  border-radius:14px;
  background:linear-gradient(160deg,#1a0f2e,#0a0518);
  border:1px solid var(--card-edge);
  text-align:center;
  cursor:pointer;
  overflow:hidden;
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.lp-thumb-char:hover{
  transform:translateY(-4px);
  border-color:var(--accent);
  box-shadow:0 12px 28px #9b6bff44;
}
.lp-thumb-char img{
  width:100%;
  aspect-ratio:2/3;
  object-fit:cover;
  object-position:top center;
  border-radius:10px;
  margin-bottom:8px;
}
.lp-thumb-name{
  font-size:14px;
  font-weight:800;
  letter-spacing:2px;
  color:var(--accent);
}
.lp-thumb-role{
  font-size:10px;
  color:var(--ink-dim);
  letter-spacing:1px;
  margin-top:2px;
}
.lp-thumb-truename{
  position:absolute;
  bottom:12px;
  left:12px;right:12px;
  padding:8px;
  border-radius:8px;
  background:linear-gradient(135deg,#ffd166,#9b6bff);
  color:#0a0518;
  font-size:13px;
  font-weight:900;
  letter-spacing:2px;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .25s, transform .25s;
  pointer-events:none;
}
.lp-thumb-char:hover .lp-thumb-truename,
.lp-thumb-char:focus .lp-thumb-truename,
.lp-thumb-char.is-tapped .lp-thumb-truename{
  opacity:1;
  transform:translateY(0);
}

/* ══════════════════════════════════════════════════════════
 * §4 ストーリー断片
 * ══════════════════════════════════════════════════════════ */
.lp-story-stage{
  display:flex;
  gap:24px;
  margin-top:32px;
  align-items:flex-end;
  flex-wrap:wrap;
}
.lp-story-portrait{
  flex:0 0 240px;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(160deg,#2a1a4a,#1a0f2e);
  border:2px solid var(--accent2);
  box-shadow:0 16px 40px #9b6bff44, var(--shadow);
}
.lp-story-portrait img{
  width:100%;
  aspect-ratio:2/3;
  object-fit:cover;
  object-position:top center;
}
.lp-story-dialog{
  flex:1;
  min-width:280px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.lp-dialog{
  background:#0009;
  border:1px solid var(--accent2);
  border-radius:12px;
  padding:16px 20px;
  line-height:1.95;
}
.lp-dialog-you{border-color:#ffffff33}
.lp-speaker{
  font-size:12px;
  font-weight:700;
  letter-spacing:3px;
  color:var(--accent);
  margin-bottom:6px;
}
.lp-dialog-you .lp-speaker{color:var(--accent3)}
.lp-dialog p{
  margin:0;
  font-size:15px;
  color:var(--ink);
  line-height:1.95;
}
.lp-story-continue{
  text-align:right;
  font-size:13px;
  color:var(--accent);
  margin:8px 0 0;
  font-style:italic;
  letter-spacing:2px;
}

/* ══════════════════════════════════════════════════════════
 * §5 学習効果テーブル
 * ══════════════════════════════════════════════════════════ */
.lp-table-wrap{
  margin-top:24px;
  overflow-x:auto;
  border-radius:12px;
  border:1px solid #ffffff22;
}
.lp-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
  min-width:640px;
}
.lp-table thead{
  background:linear-gradient(135deg,#9b6bff33,#5ad7ff33);
}
.lp-table th{
  text-align:left;
  padding:14px 16px;
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  color:var(--accent);
  border-bottom:2px solid var(--accent2);
}
.lp-table td{
  padding:12px 16px;
  border-bottom:1px solid #ffffff14;
  color:var(--ink-dim);
}
.lp-table tbody tr{transition:background .15s}
.lp-table tbody tr:hover{background:#ffffff06}
.lp-table tbody tr:last-child td{border-bottom:none}
.lp-table td:first-child{
  color:var(--accent3);
  font-weight:700;
  letter-spacing:1px;
  white-space:nowrap;
}
.lp-yes{
  color:var(--ok) !important;
  font-weight:900;
  text-align:center;
}
.lp-dash{
  color:var(--ink-dim);
  text-align:center;
  opacity:.5;
}

/* ══════════════════════════════════════════════════════════
 * §6 プレイ動画
 * ══════════════════════════════════════════════════════════ */
.lp-movie-frame{
  margin-top:32px;
  aspect-ratio:16/9;
  border-radius:16px;
  background:linear-gradient(160deg,#1a0f2e,#0a0518);
  border:2px solid var(--accent2);
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.lp-movie-frame::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center,#9b6bff22,transparent 70%);
  animation:lp-movie-glow 4s ease-in-out infinite;
}
@keyframes lp-movie-glow{0%,100%{opacity:.4}50%{opacity:.9}}
.lp-movie-placeholder{
  position:relative;
  z-index:1;
  text-align:center;
}
.lp-movie-icon{
  font-size:80px;
  color:var(--accent);
  filter:drop-shadow(0 0 20px #ffd16666);
  margin-bottom:8px;
}
.lp-movie-text{
  font-size:24px;
  font-weight:900;
  letter-spacing:4px;
  color:var(--accent);
  margin-bottom:6px;
}
.lp-movie-sub{
  font-size:12px;
  color:var(--ink-dim);
  letter-spacing:2px;
}
.lp-movie-alt{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  text-align:center;
}
.lp-movie-alt p{margin:0;color:var(--ink-dim);font-size:14px}

/* ══════════════════════════════════════════════════════════
 * §7 価格プラン
 * ══════════════════════════════════════════════════════════ */
.lp-free-banner{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 24px;
  border-radius:14px;
  background:linear-gradient(135deg,#ffd166,#9b6bff,#5ad7ff);
  color:#0a0518;
  font-size:15px;
  font-weight:700;
  margin-bottom:36px;
  box-shadow:0 8px 30px #9b6bff66, 0 0 40px #ffd16644;
  animation:lp-free-banner-glow 3s ease-in-out infinite;
}
@keyframes lp-free-banner-glow{0%,100%{box-shadow:0 8px 30px #9b6bff66,0 0 40px #ffd16644}50%{box-shadow:0 8px 40px #9b6bff88,0 0 60px #ffd16677}}
.lp-free-banner-icon{font-size:32px;flex-shrink:0}
.lp-free-banner strong{font-weight:900;letter-spacing:1px}

.lp-pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:32px;
}
.lp-price-card{
  position:relative;
  padding:32px 22px;
  border-radius:16px;
  background:linear-gradient(160deg,#1a0f2e,#0a0518);
  border:1px solid #ffffff22;
  display:flex;
  flex-direction:column;
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.lp-price-card:hover{
  transform:translateY(-4px);
  border-color:var(--accent2);
  box-shadow:0 16px 36px #9b6bff33;
}
.lp-price-card-featured{
  border:2px solid var(--accent);
  background:linear-gradient(160deg,#2a1a4a,#1a0f2e);
  box-shadow:0 0 30px #ffd16644, var(--shadow);
}
.lp-price-badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:linear-gradient(135deg,#ffd166,#9b6bff);
  color:#0a0518;
  padding:4px 16px;
  border-radius:20px;
  font-size:11px;
  font-weight:900;
  letter-spacing:3px;
}
.lp-price-name{
  font-size:18px;
  font-weight:800;
  letter-spacing:3px;
  color:var(--accent);
  margin-bottom:14px;
  text-align:center;
}
.lp-price-yen{
  font-size:42px;
  font-weight:900;
  text-align:center;
  color:var(--ink);
  letter-spacing:1px;
  margin-bottom:6px;
  line-height:1.1;
}
.lp-yen{font-size:20px;color:var(--accent);margin-right:2px}
.lp-price-tagline{
  text-align:center;
  font-size:12px;
  color:var(--ink-dim);
  letter-spacing:2px;
  margin-bottom:24px;
}
.lp-price-features{
  flex:1;
  margin-bottom:20px;
}
.lp-price-features li{
  padding:8px 0 8px 24px;
  border-bottom:1px dashed #ffffff14;
  font-size:13px;
  line-height:1.7;
  color:var(--ink-dim);
  position:relative;
}
.lp-price-features li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:8px;
  color:var(--ok);
  font-weight:900;
}
.lp-price-features li:last-child{border-bottom:none}

/* ══════════════════════════════════════════════════════════
 * §8 最終CTA
 * ══════════════════════════════════════════════════════════ */
.lp-section-cta{
  background:radial-gradient(ellipse at center,#2a1a4a 0%,#0f0820 70%);
  position:relative;
  overflow:hidden;
}
.lp-section-cta::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:conic-gradient(from 0deg,#9b6bff33,#5ad7ff33,#ffd16633,#ff6b9b33,#9b6bff33);
  filter:blur(80px);
  animation:lp-aurora-spin 20s linear infinite;
  z-index:0;
}
@keyframes lp-aurora-spin{to{transform:rotate(360deg)}}
.lp-cta-inner{
  position:relative;
  z-index:1;
  text-align:center;
}
.lp-cta-h2{margin-bottom:18px}
.lp-cta-lead{
  font-size:17px;
  line-height:2;
  color:var(--ink);
  margin:0 0 36px;
}
.lp-cta-buttons{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.lp-x-icon{
  font-size:18px;
  font-weight:900;
}
.lp-cta-note{
  font-size:12px;
  color:var(--ink-dim);
  margin:0;
}

/* ══════════════════════════════════════════════════════════
 * §9 FAQ
 * ══════════════════════════════════════════════════════════ */
.lp-faq{
  margin-top:14px;
  border-radius:12px;
  background:linear-gradient(160deg,#ffffff0a,#ffffff03);
  border:1px solid #ffffff18;
  overflow:hidden;
  transition:border-color .2s;
}
.lp-faq[open]{border-color:var(--accent2);box-shadow:0 8px 20px #9b6bff22}
.lp-faq summary{
  padding:18px 56px 18px 22px;
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
  color:var(--ink);
  cursor:pointer;
  list-style:none;
  position:relative;
  transition:background .15s;
}
.lp-faq summary::-webkit-details-marker{display:none}
.lp-faq summary::after{
  content:"+";
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  font-size:24px;
  font-weight:300;
  color:var(--accent);
  transition:transform .25s;
}
.lp-faq[open] summary::after{transform:translateY(-50%) rotate(45deg)}
.lp-faq summary:hover{background:#ffffff06}
.lp-faq-body{
  padding:4px 22px 22px;
  border-top:1px solid #ffffff14;
}
.lp-faq-body p{
  font-size:14px;
  line-height:1.95;
  color:var(--ink-dim);
  margin:14px 0 0;
}
.lp-faq-body strong{color:var(--accent)}

/* ══════════════════════════════════════════════════════════
 * §10 フッター
 * ══════════════════════════════════════════════════════════ */
.lp-footer{
  background:#06030f;
  border-top:1px solid #ffffff14;
  padding:56px 20px 32px;
}
.lp-footer-inner{
  max-width:1100px;
  margin:0 auto;
}
.lp-footer-cols{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:32px;
  margin-bottom:36px;
}
.lp-footer-brand{
  font-size:20px;
  font-weight:900;
  letter-spacing:3px;
  background:linear-gradient(90deg,#ffd166,#9b6bff,#5ad7ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:8px;
}
.lp-footer-desc{
  font-size:12px;
  color:var(--ink-dim);
  line-height:1.8;
  margin:0;
  max-width:260px;
}
.lp-footer-heading{
  font-size:12px;
  font-weight:700;
  letter-spacing:3px;
  color:var(--accent);
  margin-bottom:14px;
  text-transform:uppercase;
}
.lp-footer-col ul li{
  padding:5px 0;
}
.lp-footer-col ul a{
  color:var(--ink-dim);
  font-size:13px;
}
.lp-footer-col ul a:hover{color:var(--accent)}

.lp-footer-bottom{
  border-top:1px solid #ffffff14;
  padding-top:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.lp-copyright{
  font-size:12px;
  color:var(--ink-dim);
  margin:0;
}
.lp-disclaimer{
  font-size:10px;
  line-height:1.75;
  color:var(--ink-dim);
  opacity:.65;
  margin:0;
  max-width:760px;
  letter-spacing:.3px;
}

/* ══════════════════════════════════════════════════════════
 * レスポンシブ：タブレット 768〜1023px
 * ══════════════════════════════════════════════════════════ */
@media (max-width:1023px){
  .lp-section{padding:72px 18px}
  .lp-h2{font-size:28px;letter-spacing:2px}

  /* ヘッダー：ナビ簡略化 */
  .lp-nav{display:none}

  /* §2 3カラム→2カラム */
  .lp-three-col{grid-template-columns:repeat(2,1fr);gap:18px}
  .lp-three-col .lp-feature-card:last-child{grid-column:1 / -1;max-width:480px;margin:0 auto;width:100%}

  /* §3 主役4人 2×2は維持、サムネ3×3も維持 */
  .lp-hero-char-img{flex:0 0 110px}
  .lp-hero-char-name{font-size:20px}

  /* §7 価格 4カラム→2カラム */
  .lp-pricing-grid{grid-template-columns:repeat(2,1fr);gap:16px}

  /* §10 フッター 4カラム→2カラム */
  .lp-footer-cols{grid-template-columns:1fr 1fr;gap:24px}

  /* ヒーロー */
  .lp-hero{min-height:auto;padding:60px 18px 80px}
  .lp-hero-card{width:160px}
}

/* ══════════════════════════════════════════════════════════
 * レスポンシブ：スマホ 〜767px
 * ══════════════════════════════════════════════════════════ */
@media (max-width:767px){
  .lp-section{padding:56px 16px}
  .lp-h2{font-size:24px;letter-spacing:1px}
  .lp-h3-section{font-size:16px;margin:36px 0 14px}
  .lp-eyebrow{font-size:11px;letter-spacing:4px}
  .lp-lead{font-size:14px}

  /* ヘッダー */
  .lp-header-inner{padding:10px 14px;gap:12px}
  .lp-brand-logo{font-size:15px;letter-spacing:2px}
  .lp-brand-sub{font-size:9px}
  .lp-cta-mini{padding:7px 12px;font-size:12px;letter-spacing:0}

  /* §1 ヒーロー */
  .lp-hero{padding:48px 16px 64px}
  .lp-hero-badge{font-size:11px;letter-spacing:1px;padding:6px 14px}
  .lp-hero-sub{font-size:14px;letter-spacing:2px}
  .lp-hero-catch{font-size:14px;line-height:1.95}
  .lp-hero-cta{flex-direction:column;gap:10px}
  .lp-hero-cta .lp-btn{width:100%;max-width:320px;margin:0 auto}
  .lp-hero-card{width:110px}
  .lp-hero-card-2{transform:translateY(-12px) scale(1.05)}
  .lp-hero-visual{gap:8px;min-height:200px}

  /* §2 3カラム→1カラム */
  .lp-three-col{grid-template-columns:1fr;gap:14px}
  .lp-three-col .lp-feature-card:last-child{max-width:none}
  .lp-feature-card{padding:24px 18px}

  /* §3 主役 2×2→1×4 */
  .lp-hero-chars{grid-template-columns:1fr;gap:14px}
  .lp-hero-char{flex-direction:row;padding:14px;gap:12px}
  .lp-hero-char-img{flex:0 0 100px}
  .lp-hero-char-name{font-size:18px;letter-spacing:2px}
  .lp-hero-char-line{font-size:12px}

  /* §3 サムネ 3×3→2×？ */
  .lp-thumb-chars{grid-template-columns:repeat(2,1fr);gap:10px}
  .lp-thumb-char{padding:8px}
  .lp-thumb-name{font-size:12px}
  .lp-thumb-role{font-size:9px}
  .lp-thumb-truename{font-size:11px;padding:6px}

  /* §4 ストーリー */
  .lp-story-stage{flex-direction:column;gap:16px}
  .lp-story-portrait{flex:none;width:60%;max-width:240px;margin:0 auto}
  .lp-dialog{padding:12px 16px}
  .lp-dialog p{font-size:14px}

  /* §5 テーブル：横スクロール許可 */
  .lp-table{font-size:12px}
  .lp-table th,.lp-table td{padding:10px 12px}

  /* §6 動画 */
  .lp-movie-icon{font-size:60px}
  .lp-movie-text{font-size:20px;letter-spacing:2px}

  /* §7 価格 4カラム→1カラム */
  .lp-pricing-grid{grid-template-columns:1fr;gap:14px}
  .lp-price-card{padding:24px 20px}

  /* §7 無料バナー */
  .lp-free-banner{
    flex-direction:column;
    text-align:center;
    padding:18px;
    font-size:13px;
    gap:8px;
  }
  .lp-free-banner-icon{font-size:28px}

  /* §8 CTA */
  .lp-cta-lead{font-size:15px}
  .lp-cta-buttons{flex-direction:column}
  .lp-cta-buttons .lp-btn{width:100%;max-width:320px;margin:0 auto}
  .lp-btn-large{padding:16px 28px;font-size:15px;letter-spacing:2px}

  /* §9 FAQ */
  .lp-faq summary{padding:16px 48px 16px 18px;font-size:14px}
  .lp-faq summary::after{right:18px}
  .lp-faq-body{padding:4px 18px 18px}

  /* §10 フッター */
  .lp-footer{padding:40px 16px 24px}
  .lp-footer-cols{grid-template-columns:1fr;gap:20px;margin-bottom:24px}
  .lp-disclaimer{font-size:9px}
}

/* ══════════════════════════════════════════════════════════
 * ゲーム画面ギャラリー
 * ══════════════════════════════════════════════════════════ */
.lp-ss-main{border-radius:14px;overflow:hidden;box-shadow:0 12px 48px #0009,0 0 0 1px #ffffff14;margin-bottom:16px}
.lp-ss-fig{margin:0;position:relative}
.lp-ss-img{width:100%;display:block;border-radius:14px;transition:opacity .25s ease}
.lp-ss-caption{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(transparent,#000d);
  color:#fff;font-size:13px;line-height:1.65;
  padding:30px 16px 14px;border-radius:0 0 14px 14px;
}
.lp-ss-thumbs{
  display:flex;gap:10px;overflow-x:auto;padding-bottom:4px;
  scrollbar-width:thin;scrollbar-color:#ffffff22 transparent;
}
.lp-ss-thumb{
  flex:0 0 calc(20% - 8px);min-width:100px;border:2px solid #ffffff22;
  border-radius:10px;overflow:hidden;cursor:pointer;background:none;
  padding:0;display:flex;flex-direction:column;
  transition:border-color .2s,transform .15s;
}
.lp-ss-thumb:hover{border-color:var(--accent);transform:scale(1.03)}
.lp-ss-thumb--active{border-color:var(--accent);box-shadow:0 0 12px #9b6bff66}
.lp-ss-thumb img{width:100%;display:block;aspect-ratio:16/9;object-fit:cover}
.lp-ss-thumb span{display:block;font-size:10px;color:var(--ink-dim);padding:4px 6px;text-align:center;background:#0008;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lp-ss-thumb--active span{color:#fff}

/* ══════════════════════════════════════════════════════════
 * Print（PDF化対策）
 * ══════════════════════════════════════════════════════════ */
@media print{
  .lp-header,.lp-section-cta,.lp-scroll-hint{display:none}
  body{background:#fff;color:#000}
}

/* ══════════════════════════════════════════════════════════
 * Motion reduce 対応
 * ══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion:reduce){
  .lp-hero-logo,.lp-hero-card,.lp-star,.lp-scroll-hint,
  .lp-section-cta::before,.lp-hero-badge,.lp-free-banner,
  .lp-movie-frame::before{
    animation:none !important;
  }
}
