/* =============================================================
   lp-top.css — トップページ（docs/mockups/lp/top-page-reference.png 準拠）
   夜空の世界観。見出しは明朝（Shippori Mincho）、本文は丸ゴシック（M PLUS Rounded 1c）
   ============================================================= */
:root {
  --lp-bg: #141838;
  --lp-bg-2: #1B1F4B;
  --lp-bg-3: #232A5E;
  --lp-cream: #F3E9D7;
  --lp-gold: #F6C56A;
  --lp-text: #DAD4E8;
  --lp-muted: #A9A2BC;
  --lp-orange: #E87F50;
  --lp-orange-2: #F2A46B;
  --lp-paper: #FAF3EC;
  --lp-paper-2: #F2EAF6;
  --lp-ink: #3B2F5C;
  --lp-ink-soft: #6E6488;
  --lp-line: rgba(255,255,255,0.12);
  --font-display: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-body: 'M PLUS Rounded 1c', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--lp-bg); color: var(--lp-text); font-family: var(--font-body); font-size: 15px; line-height: 1.9; letter-spacing: 0.01em; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0; letter-spacing: 0.03em; }
p { margin: 0; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.sp-only { display: none; }
@media (max-width: 640px) { .sp-only { display: inline; } .pc-only { display: none !important; } }

/* ---------- 共通パーツ ---------- */
.btn-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 30px; border-radius: 999px; background: linear-gradient(135deg, var(--lp-orange) 0%, var(--lp-orange-2) 100%); color: #fff; font-weight: 700; font-size: 16px; text-decoration: none; box-shadow: 0 10px 28px rgba(232,127,80,0.38), inset 0 1px 0 rgba(255,255,255,0.35); transition: transform .15s, box-shadow .15s; border: none; cursor: pointer; font-family: var(--font-body); white-space: nowrap; }
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(232,127,80,0.45); }
.btn-cta .arr { font-size: 18px; line-height: 1; }
.btn-ghost { display: inline-flex; align-items: center; gap: 6px; padding: 11px 22px; border-radius: 999px; border: 1px solid rgba(243,233,215,0.5); color: var(--lp-cream); text-decoration: none; font-weight: 600; font-size: 14px; background: rgba(255,255,255,0.04); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-size: 13px; color: var(--lp-cream); opacity: .9; }
.meta-row span::before { content: '✦'; color: var(--lp-gold); margin-right: 6px; font-size: 11px; }
.kicker { display: inline-block; font-size: 13px; letter-spacing: 0.18em; color: var(--lp-gold); font-family: var(--font-display); margin-bottom: 10px; }
.kicker::before { content: '✧ '; }
.sec-title { font-size: clamp(24px, 3.2vw, 32px); color: var(--lp-cream); text-align: center; line-height: 1.5; }
.sec-lead { text-align: center; color: var(--lp-text); font-size: 15px; margin-top: 12px; line-height: 2; }
.sec-title.ink, .sec-lead.ink { color: var(--lp-ink); }
.sec-lead.ink { color: var(--lp-ink-soft); }
.star-deco { position: absolute; width: 22px; height: 26px; background: url('../img/design/sparkle.webp') center / contain no-repeat; opacity: .9; pointer-events: none; }

/* ---------- ヘッダー ---------- */
.lp-hd { position: sticky; top: 0; z-index: 50; background: rgba(12,14,40,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--lp-line); }
.lp-hd-inner { max-width: 1120px; margin: 0 auto; padding: 10px 20px; display: flex; align-items: center; gap: 24px; }
.lp-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--lp-cream); }
.lp-brand img { width: 40px; height: 40px; }
.lp-brand-name { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; line-height: 1.1; }
.lp-brand-tag { display: block; font-size: 10.5px; color: var(--lp-muted); letter-spacing: 0.08em; margin-top: 2px; font-family: var(--font-body); }
.lp-nav { display: flex; gap: 22px; margin-left: 12px; }
.lp-nav a { color: var(--lp-text); text-decoration: none; font-size: 13.5px; font-weight: 600; }
.lp-nav a:hover { color: var(--lp-gold); }
.lp-hd-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.lp-hd-actions .btn-cta { padding: 10px 20px; font-size: 13.5px; }
.lp-hd-login { color: var(--lp-text); text-decoration: none; font-size: 13.5px; font-weight: 600; }
.lp-hd-register { color: var(--lp-gold); text-decoration: none; font-size: 13.5px; font-weight: 700; }
@media (max-width: 900px) { .lp-nav { display: none; } }
@media (max-width: 640px) { .lp-hd-inner { padding: 8px 14px; gap: 10px; } .lp-brand img { width: 34px; height: 34px; } .lp-brand-name { font-size: 19px; } .lp-brand-tag { display: none; } .lp-hd-login, .lp-hd-register { display: none; } .lp-hd-actions .btn-cta { padding: 9px 14px; font-size: 12.5px; } }

/* ---------- ヒーロー ---------- */
.hero { position: relative; overflow: hidden; background: #171B45 url('../img/design/bg-night.jpg?v=20260923a') center 30% / cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,16,48,0.55) 0%, rgba(14,16,48,0.25) 40%, rgba(20,24,56,0.85) 100%); }
.hero-inner { position: relative; max-width: 1120px; margin: 0 auto; padding: 64px 20px 56px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 32px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.35; color: var(--lp-cream); text-shadow: 0 4px 30px rgba(0,0,0,0.45); }
.hero h1 .accent { color: var(--lp-gold); }
.hero-lead { margin-top: 22px; font-size: 16px; line-height: 2.05; color: #EDE7F5; max-width: 480px; }
.hero-cta { margin-top: 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero-cta .btn-cta { padding: 17px 34px; font-size: 17px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-phone { width: min(100%, 440px); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%), linear-gradient(180deg, transparent 0, #000 9%, #000 88%, transparent 100%); -webkit-mask-composite: source-in; mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%), linear-gradient(180deg, transparent 0, #000 9%, #000 88%, transparent 100%); mask-composite: intersect; }
.hero-sub-link { font-size: 13px; color: var(--lp-cream); opacity: .85; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(243,233,215,0.5); }
.hero-sub-link:hover { opacity: 1; }
/* 安心バッジ */
.badges { background: #101436; border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line); padding: 14px 0; }
.badges-inner { display: flex; justify-content: center; align-items: center; gap: 10px 36px; flex-wrap: wrap; }
.badge-item { display: flex; align-items: baseline; gap: 8px; font-size: 12.5px; color: var(--lp-muted); }
.badge-item::before { content: '✦'; color: var(--lp-gold); font-size: 11px; align-self: center; }
.badge-item strong { font-family: var(--font-display); font-size: 15px; color: var(--lp-cream); letter-spacing: 0.04em; }
@media (max-width: 640px) { .badges { padding: 10px 0; } .badges-inner { gap: 6px 16px; } .badge-item { font-size: 11px; gap: 5px; } .badge-item strong { font-size: 13px; } .badge-item span { display: none; } }
/* 中間 CTA */
.mid-cta { background: var(--lp-bg-2); padding: 0 0 64px; }
.mid-cta-box { text-align: center; background: linear-gradient(90deg, rgba(60,50,120,0.5), rgba(30,34,90,0.7)); border: 1px solid rgba(246,197,106,0.28); border-radius: 26px; padding: 32px 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.mid-cta-box p { font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 22px); color: var(--lp-cream); line-height: 1.8; }
.mid-cta-btns { display: flex; justify-content: center; align-items: center; gap: 12px 16px; flex-wrap: wrap; margin-top: 18px; }
@media (max-width: 640px) { .mid-cta { padding-bottom: 48px; } .mid-cta-box { padding: 24px 16px; } .mid-cta-btns .btn-cta { width: 100%; padding: 15px 18px; font-size: 15px; } }
.final-sub { margin-top: 18px; }
.hero-bubble { position: absolute; right: -6px; top: -8px; background: rgba(250,243,236,0.96); color: var(--lp-ink); font-family: var(--font-display); font-size: 13px; line-height: 1.7; padding: 12px 16px; border-radius: 18px 18px 18px 4px; box-shadow: 0 10px 24px rgba(0,0,0,0.3); max-width: 190px; }
.hero-cat { position: absolute; right: -20px; bottom: -14px; width: 160px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
.hero-moon { position: absolute; left: -30px; bottom: 30px; width: 110px; opacity: .95; filter: drop-shadow(0 0 24px rgba(246,197,106,0.45)); }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 44px 20px 40px; gap: 28px; } .hero-lead { margin-left: auto; margin-right: auto; } .hero-cta { align-items: center; } .hero-phone { width: min(100%, 340px); } .hero-bubble { right: 0; top: -6px; max-width: 170px; font-size: 12px; } .hero-cat { width: 120px; right: 0; } .hero-moon { left: 0; width: 80px; } }
@media (max-width: 640px) { .hero h1 { font-size: 31px; } .hero-lead { font-size: 15px; } .hero-cta .btn-cta { padding: 15px 22px; font-size: 15.5px; width: 100%; max-width: 360px; } .hero-visual { padding: 0 8px; } }

/* ---------- 共感（明るい帯） ---------- */
.empathy { background: linear-gradient(180deg, #F6EEF2 0%, var(--lp-paper-2) 100%); color: var(--lp-ink); padding: 56px 0 52px; position: relative; }
.empathy .sec-title { color: var(--lp-ink); }
.empathy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.empathy-item { text-align: center; padding: 18px 10px 14px; border-radius: 18px; background: rgba(255,255,255,0.7); }
.empathy-item img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 10px; filter: drop-shadow(0 6px 10px rgba(59,47,92,0.18)); }
.empathy-item p { font-size: 14px; font-weight: 700; color: var(--lp-ink); line-height: 1.7; }
.empathy-msg { margin-top: 26px; text-align: center; font-family: var(--font-display); font-size: 17px; color: var(--lp-ink); line-height: 1.9; }
.empathy-msg strong { color: #B85C2E; font-weight: 700; }
@media (max-width: 900px) { .empathy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .empathy { padding: 44px 0; } .empathy-grid { gap: 12px; margin-top: 24px; } .empathy-item { padding: 14px 8px 10px; } .empathy-item img { width: 52px; height: 52px; } .empathy-item p { font-size: 13px; } .empathy-msg { font-size: 15.5px; } }

/* ---------- 夢タイプ診断（体験） ---------- */
.trial { background: radial-gradient(ellipse at 20% 0%, rgba(120,90,200,0.25), transparent 55%), var(--lp-bg-2); padding: 72px 0; position: relative; overflow: hidden; }
.trial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.trial h2 { font-size: clamp(30px, 4vw, 44px); color: var(--lp-cream); line-height: 1.3; }
.trial-lead { margin-top: 12px; font-size: 15.5px; color: var(--lp-text); }
.trial .meta-row { margin-top: 14px; }
.trial-box { margin-top: 22px; background: rgba(250,243,236,0.97); border-radius: 22px; padding: 22px 20px 20px; color: var(--lp-ink); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.hero-trial-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--lp-ink); margin-bottom: 10px; }
.hero-trial-label .badge { font-size: 10px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2)); border-radius: 20px; padding: 2px 9px; letter-spacing: 0.06em; }
.trial-box textarea { width: 100%; min-height: 140px; border: 1px solid rgba(59,47,92,0.18); border-radius: 14px; padding: 14px; font-size: 15px; line-height: 1.8; font-family: var(--font-body); color: var(--lp-ink); background: #fff; resize: vertical; outline: none; }
.trial-box textarea:focus { border-color: var(--lp-orange); box-shadow: 0 0 0 3px rgba(232,127,80,0.18); }
.trial-box textarea::placeholder { color: #A59CB8; }
.trial-count { text-align: right; font-size: 11px; color: var(--lp-ink-soft); margin-top: 4px; }
.trial-btn { width: 100%; margin-top: 10px; padding: 15px 20px; border: none; border-radius: 999px; background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2)); color: #fff; font-weight: 700; font-size: 16px; cursor: pointer; font-family: var(--font-body); box-shadow: 0 10px 24px rgba(232,127,80,0.35); }
.trial-btn:hover { opacity: .94; }
.trial-btn:disabled { opacity: .5; cursor: not-allowed; }
.trial-note { text-align: center; font-size: 11.5px; color: var(--lp-ink-soft); margin-top: 10px; line-height: 1.7; }
.trial-used { text-align: center; padding: 14px 6px 4px; }
.trial-used p { font-size: 14px; color: var(--lp-ink); line-height: 1.9; }
.trial-used a { display: inline-block; margin-top: 12px; padding: 12px 22px; border-radius: 999px; background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2)); color: #fff; font-weight: 700; text-decoration: none; }
.cta-note { font-size: 11.5px; color: var(--lp-ink-soft); line-height: 1.7; }
/* 診断結果 */
.trial-result { display: none; margin-top: 22px; border-top: 1px dashed rgba(59,47,92,0.2); padding-top: 20px; }
.trial-result h3 { text-align: center; font-size: 18px; color: var(--lp-ink); margin-bottom: 14px; }
.dream-type-card { text-align: center; background: #fff; border-radius: 18px; padding: 18px 16px; border: 1px solid rgba(59,47,92,0.1); }
.dream-type-card .type-image img { width: 132px; height: 132px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(246,197,106,0.7), 0 12px 26px rgba(59,47,92,0.2); }
.dream-type-card .type-label { font-size: 12px; color: var(--lp-ink-soft); }
.dream-type-card .type-name { font-family: var(--font-display); font-size: 26px; color: var(--lp-ink); margin: 2px 0 6px; }
.dream-type-card .type-name span { color: #C9622F; }
.dream-type-card .type-desc { font-size: 13.5px; color: var(--lp-ink-soft); line-height: 1.8; }
.trial-scores-section { margin-top: 14px; }
.trial-scores-section h4 { margin: 0 0 10px; text-align: center; font-size: 13px; color: var(--lp-ink-soft); font-weight: 700; }
.trial-scores { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.trial-score-item { display: flex; justify-content: space-between; align-items: center; background: #fff; border-radius: 12px; padding: 10px 14px; border: 1px solid rgba(59,47,92,0.08); }
.trial-score-item .score-label { font-size: 13px; color: var(--lp-ink); }
.trial-score-item .score-value { font-family: var(--font-display); font-size: 22px; color: #C9622F; }
.trial-summary { margin-top: 14px; }
.trial-summary-peek { font-size: 14px; color: var(--lp-ink); line-height: 1.9; }
.trial-locked { position: relative; margin-top: 6px; border-radius: 12px; overflow: hidden; }
.trial-locked .blurred { filter: blur(6px); user-select: none; pointer-events: none; color: var(--lp-ink-soft); font-size: 14px; line-height: 1.9; }
.trial-locked .trial-advice.blurred { color: #C9622F; margin-top: 8px; }
.trial-lock-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 16px; background: linear-gradient(180deg, rgba(250,243,236,0.3), rgba(250,243,236,0.92)); }
.trial-lock-overlay .lock-icon { width: 46px; height: 46px; }
.trial-lock-overlay p { font-size: 13px; color: var(--lp-ink); line-height: 1.7; font-weight: 700; }
.trial-save-cta { margin-top: 16px; text-align: center; }
.trial-save-cta .cta-primary { display: inline-block; padding: 14px 26px; border-radius: 999px; background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2)); color: #fff; font-weight: 700; text-decoration: none; box-shadow: 0 10px 24px rgba(232,127,80,0.35); }
.trial-save-cta .cta-note { margin-top: 8px; }
.trial-keep { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 10px; }
.trial-keep span { font-size: 11px; color: var(--lp-ink); background: #fff; border: 1px solid rgba(59,47,92,0.12); border-radius: 999px; padding: 3px 10px; }
.share-section { margin-top: 16px; text-align: center; }
.share-title { font-size: 12px; color: var(--lp-ink-soft); margin-bottom: 8px; }
.share-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.share-btn { border: none; border-radius: 999px; padding: 9px 16px; color: #fff; font-weight: 700; font-size: 12.5px; cursor: pointer; font-family: var(--font-body); }
.share-line { background: #06C755; } .share-x { background: #000; } .share-fb { background: #1877F2; } .share-email { background: var(--lp-ink); }
/* 右側: スマホ画像 + 結果の一例 */
.trial-visual { position: relative; display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
.trial-phone { width: 100%; max-width: 360px; margin: 0 auto; border-radius: 26px; box-shadow: 0 26px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08); }
.example-card { background: var(--lp-paper); color: var(--lp-ink); border-radius: 20px; padding: 18px 18px 16px; box-shadow: 0 18px 44px rgba(0,0,0,0.35); position: relative; }
.example-card .ex-label { position: absolute; top: -12px; left: 16px; background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2)); color: #fff; font-size: 11.5px; font-weight: 800; padding: 3px 12px; border-radius: 999px; letter-spacing: 0.06em; }
.example-body { display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: center; }
.example-body img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(246,197,106,0.7), 0 10px 20px rgba(59,47,92,0.2); }
.ex-type-label { font-size: 11.5px; color: var(--lp-ink-soft); }
.ex-type-name { font-family: var(--font-display); font-size: 24px; color: var(--lp-ink); line-height: 1.3; }
.ex-type-name span { color: #C9622F; }
.ex-type-cat { font-size: 12.5px; color: var(--lp-ink-soft); margin-top: 2px; }
.ex-desc { font-size: 13px; color: var(--lp-ink); line-height: 1.8; margin-top: 10px; }
.ex-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ex-tags span { font-size: 11.5px; color: var(--lp-ink); background: #fff; border: 1px solid rgba(59,47,92,0.14); border-radius: 999px; padding: 3px 10px; }
@media (min-width: 901px) { .trial-visual { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .trial-inner { grid-template-columns: 1fr; gap: 28px; } .trial-visual { grid-template-columns: 1fr; } .trial-phone { max-width: 320px; } }
@media (max-width: 640px) { .trial { padding: 52px 0; } .trial h2 { font-size: 32px; } .trial-box { padding: 18px 14px 16px; } .example-body { grid-template-columns: 84px 1fr; gap: 12px; } .example-body img { width: 84px; height: 84px; } .ex-type-name { font-size: 20px; } .trial-scores { grid-template-columns: 1fr; } }

/* ---------- できること ---------- */
.features { background: linear-gradient(180deg, var(--lp-bg-2) 0%, var(--lp-bg-3) 100%); padding: 72px 0 64px; position: relative; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.feature-card { background: rgba(255,255,255,0.05); border: 1px solid var(--lp-line); border-radius: 22px; padding: 20px 16px 16px; text-align: center; backdrop-filter: blur(6px); }
.feature-icon { width: 48px; height: 48px; object-fit: contain; margin: 0 auto 8px; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4)); }
.feature-card h3 { font-size: 18px; color: var(--lp-cream); }
.feature-card p { font-size: 13.5px; color: var(--lp-text); line-height: 1.85; margin-top: 8px; min-height: 5.6em; }
.feature-card img.shot { margin-top: 14px; border-radius: 16px; box-shadow: 0 16px 34px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08); }
.feature-more { margin-top: 30px; }
.feature-more h3 { text-align: center; font-size: 16px; color: var(--lp-gold); letter-spacing: 0.12em; }
.feature-more-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.feature-mini { display: flex; gap: 12px; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid var(--lp-line); border-radius: 16px; padding: 10px; }
.feature-mini img { width: 72px; height: 90px; object-fit: cover; object-position: center 40%; border-radius: 10px; flex: none; }
.feature-mini strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--lp-cream); }
.feature-mini span { font-size: 12px; color: var(--lp-muted); line-height: 1.6; display: block; margin-top: 2px; }
@media (max-width: 900px) { .feature-grid, .feature-more-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features { padding: 52px 0; } .feature-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; } .feature-card { padding: 14px 10px 12px; border-radius: 18px; } .feature-card h3 { font-size: 15px; } .feature-card p { font-size: 12px; min-height: 0; } .feature-more-grid { grid-template-columns: 1fr; } }

/* ---------- 引用の帯 ---------- */
.quote { background: var(--lp-bg-2); padding: 0 0 56px; }
.quote-band { position: relative; display: grid; grid-template-columns: 200px 1fr auto; gap: 24px; align-items: center; background: linear-gradient(90deg, rgba(60,50,120,0.55), rgba(30,34,90,0.7)); border: 1px solid rgba(246,197,106,0.28); border-radius: 26px; padding: 22px 28px; box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.quote-band img { width: 190px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5)); margin: -50px 0 -30px; }
.quote-band p { font-family: var(--font-display); font-size: clamp(18px, 2.4vw, 24px); color: var(--lp-cream); line-height: 1.75; }
.quote-band .btn-ghost { justify-self: end; }
@media (max-width: 900px) { .quote-band { grid-template-columns: 1fr; text-align: center; padding: 24px 20px; } .quote-band img { margin: -60px auto 0; width: 150px; } .quote-band .btn-ghost { justify-self: center; } }

/* ---------- YumeLogとは / 安心 ---------- */
.about { background: var(--lp-bg-3); padding: 64px 0; }
.about-lead { max-width: 720px; margin: 16px auto 0; text-align: center; font-size: 15px; line-height: 2.05; color: var(--lp-text); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,0.05); border: 1px solid var(--lp-line); border-radius: 18px; padding: 16px; }
.trust-item img { width: 44px; height: 44px; object-fit: contain; flex: none; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--lp-cream); margin-bottom: 4px; }
.trust-item p { font-size: 13px; color: var(--lp-muted); line-height: 1.75; }
.lp-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.lp-link { display: flex; gap: 12px; align-items: center; text-decoration: none; border-radius: 16px; padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--lp-line); color: var(--lp-text); }
.lp-link:hover { border-color: rgba(246,197,106,0.5); }
.lp-link img { width: 42px; height: 42px; object-fit: contain; flex: none; }
.lp-link strong { display: block; font-size: 13.5px; color: var(--lp-cream); }
.lp-link span { font-size: 12px; color: var(--lp-muted); }
@media (max-width: 900px) { .trust-grid, .lp-links { grid-template-columns: 1fr; } }

/* ---------- はじめかた ---------- */
.how { background: var(--lp-bg-2); padding: 64px 0; }
.how-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; position: relative; }
.how-step { position: relative; display: flex; gap: 14px; align-items: center; background: var(--lp-paper); color: var(--lp-ink); border-radius: 20px; padding: 18px 18px 18px 16px; box-shadow: 0 14px 34px rgba(0,0,0,0.3); }
.how-step img { width: 56px; height: 56px; object-fit: contain; flex: none; filter: drop-shadow(0 6px 10px rgba(59,47,92,0.2)); }
.how-num { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em; color: #C9622F; }
.how-step h3 { font-size: 16.5px; color: var(--lp-ink); line-height: 1.5; margin-top: 2px; }
.how-step p { font-size: 12.5px; color: var(--lp-ink-soft); margin-top: 3px; line-height: 1.7; }
.how-step::after { content: '›'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); font-size: 30px; color: var(--lp-gold); }
.how-step:last-child::after { display: none; }
@media (max-width: 900px) { .how-list { grid-template-columns: 1fr; gap: 12px; } .how-step::after { content: '⌄'; right: auto; left: 50%; top: auto; bottom: -26px; transform: translateX(-50%); } }

/* ---------- プラン ---------- */
.pricing { background: linear-gradient(180deg, var(--lp-bg-2) 0%, #101436 100%); padding: 64px 0 72px; position: relative; overflow: hidden; }
.pricing-inner { display: grid; grid-template-columns: 1fr 260px; gap: 28px; align-items: center; }
.pricing-card { background: var(--lp-paper); border-radius: 26px; padding: 26px 24px 24px; color: var(--lp-ink); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.pricing-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pricing-head h2 { font-size: 24px; color: var(--lp-ink); }
.pricing-head p { font-size: 13px; color: var(--lp-ink-soft); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.plan { border-radius: 18px; padding: 18px 16px 16px; background: #fff; border: 1px solid rgba(59,47,92,0.1); display: flex; flex-direction: column; }
.plan.recommended { border-color: rgba(232,127,80,0.6); box-shadow: 0 0 0 3px rgba(232,127,80,0.12); position: relative; }
.plan.recommended::before { content: 'おすすめ'; position: absolute; top: -11px; left: 14px; background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2)); color: #fff; font-size: 11px; font-weight: 800; padding: 2px 10px; border-radius: 999px; }
.plan-name { font-family: var(--font-display); font-size: 16px; color: var(--lp-ink); }
.plan-price { font-family: var(--font-display); font-size: 30px; color: #C9622F; line-height: 1.2; margin-top: 4px; }
.plan-price small { font-size: 12px; color: var(--lp-ink-soft); font-family: var(--font-body); margin-left: 2px; }
.plan-for { font-size: 12px; color: var(--lp-ink-soft); margin-top: 4px; }
.plan ul { list-style: none; margin: 12px 0 0; padding: 12px 0 0; border-top: 1px dashed rgba(59,47,92,0.2); flex: 1; }
.plan li { font-size: 12.5px; color: var(--lp-ink); line-height: 1.6; padding: 3px 0 3px 20px; position: relative; }
.plan li::before { content: '✓'; position: absolute; left: 2px; color: #C9622F; font-weight: 800; }
.plan .btn-plan { margin-top: 14px; display: block; text-align: center; padding: 11px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; text-decoration: none; color: var(--lp-ink); border: 1px solid rgba(59,47,92,0.25); background: #fff; }
.plan.recommended .btn-plan, .plan.premium .btn-plan { background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2)); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(232,127,80,0.3); }
.pricing-side { text-align: center; position: relative; }
.pricing-side img.crystal { width: 200px; margin: 0 auto; filter: drop-shadow(0 0 30px rgba(180,150,255,0.5)); }
.pricing-side p { font-family: var(--font-display); font-size: 20px; color: var(--lp-cream); line-height: 1.8; margin-top: 8px; writing-mode: vertical-rl; margin-left: auto; margin-right: auto; height: 220px; }
.pricing-side img.cat { width: 150px; margin: 6px auto 0; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
@media (max-width: 900px) { .pricing-inner { grid-template-columns: 1fr; } .plan-grid { grid-template-columns: 1fr; } .plan.recommended { order: -1; } .pricing-side { display: flex; align-items: center; justify-content: center; gap: 12px; } .pricing-side img.crystal { width: 120px; margin: 0; } .pricing-side img.cat { width: 110px; margin: 0; } .pricing-side p { height: auto; writing-mode: horizontal-tb; font-size: 17px; } }
@media (max-width: 640px) { .pricing { padding: 48px 0 56px; } .pricing-card { padding: 20px 14px 18px; border-radius: 20px; } .pricing-side { flex-wrap: wrap; } }

/* ---------- FAQ ---------- */
.faq { background: #101436; padding: 0 0 64px; }
.faq-card { background: var(--lp-paper); color: var(--lp-ink); border-radius: 26px; padding: 24px 24px 12px; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.faq-card h2 { font-size: 22px; color: var(--lp-ink); display: flex; align-items: center; gap: 10px; }
.faq-card h2 img { width: 30px; height: 30px; }
.faq-list { margin-top: 12px; }
.faq-item { border-top: 1px solid rgba(59,47,92,0.12); }
.faq-item:first-child { border-top: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 4px; cursor: pointer; font-weight: 700; font-size: 14.5px; color: var(--lp-ink); }
.faq-q::before { content: '✦'; color: var(--lp-gold); margin-right: 8px; font-size: 12px; }
.faq-q span { flex: 1; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--lp-ink-soft); font-weight: 400; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 4px 16px 26px; font-size: 13.5px; color: var(--lp-ink-soft); line-height: 1.9; }
.faq-item.open .faq-a { display: block; }
/* 読みもの */
.reads { background: #101436; padding: 0 0 56px; }
.reads h2 { font-size: 20px; color: var(--lp-cream); text-align: center; }
.reads-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px; }
.read-card { display: block; text-decoration: none; background: rgba(255,255,255,0.05); border: 1px solid var(--lp-line); border-radius: 16px; padding: 14px; color: var(--lp-text); }
.read-card:hover { border-color: rgba(246,197,106,0.5); }
.read-card h3 { font-size: 15px; color: var(--lp-cream); line-height: 1.6; font-family: var(--font-body); font-weight: 700; }
.read-card p { font-size: 12px; color: var(--lp-muted); margin-top: 6px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.reads-more { text-align: center; margin-top: 14px; font-size: 13px; }
.reads-more a { color: var(--lp-gold); text-decoration: none; }
@media (max-width: 900px) { .reads-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reads-grid { grid-template-columns: 1fr; } .faq-card { padding: 20px 16px 8px; border-radius: 20px; } }

/* ---------- 最後のCTA ---------- */
.final { position: relative; overflow: hidden; background: #0E1233 url('../img/design/bg-night-lake.jpg?v=20260923a') center 70% / cover no-repeat; padding: 96px 0 110px; text-align: center; }
.final::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,20,54,0.9) 0%, rgba(16,20,54,0.35) 45%, rgba(10,12,40,0.55) 100%); }
.final .wrap { position: relative; }
.final h2 { font-size: clamp(26px, 3.6vw, 36px); color: var(--lp-cream); text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.final .btn-cta { margin-top: 26px; padding: 17px 36px; font-size: 17px; }
.final .meta-row { justify-content: center; margin-top: 16px; }
.final-note { font-family: var(--font-display); color: var(--lp-cream); font-size: 15px; margin-top: 30px; opacity: .9; }
@media (max-width: 640px) { .final { padding: 64px 0 80px; } .final .btn-cta { width: 100%; max-width: 360px; padding: 15px 22px; font-size: 15.5px; } }

/* ---------- フッター ---------- */
.lp-footer { background: #070B2A; padding: 28px 0 32px; border-top: 1px solid var(--lp-line); }
.lp-footer-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.lp-footer .lp-brand-name { font-size: 20px; }
.lp-footer-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-left: auto; }
.lp-footer-nav a { color: var(--lp-muted); text-decoration: none; font-size: 12.5px; }
.lp-footer-nav a:hover { color: var(--lp-cream); }
.lp-footer-copy { font-size: 11.5px; color: #6E6A88; margin-top: 14px; }
@media (max-width: 640px) { .lp-footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; } .lp-footer-nav { margin-left: 0; } }

/* ---------- スマホの固定CTA ---------- */
.top-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px)); background: rgba(12,14,40,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--lp-line); transform: translateY(110%); transition: transform .25s; display: none; }
.top-sticky-cta.show { transform: translateY(0); }
.top-sticky-cta .btn-cta { width: 100%; padding: 13px 16px; font-size: 15px; }
@media (max-width: 640px) { .top-sticky-cta { display: block; } body { padding-bottom: 0; } }

/* ---------- 2026-09-24 文言改訂で増えた部品 ---------- */
.hero-note { font-size: 12.5px; color: var(--lp-muted); line-height: 1.75; margin: 12px 0 10px; }
.hero-cta .hero-sub-link { display: inline-block; }
.how .sec-lead { text-align: center; margin-top: 10px; }
.how-step { align-items: flex-start; }
.how-step img { margin-top: 6px; }
.usecases { background: var(--lp-bg-3); padding: 64px 0; }
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.usecase { display: flex; flex-direction: column; background: var(--lp-paper); color: var(--lp-ink); border-radius: 22px; padding: 22px 20px 20px; box-shadow: 0 14px 34px rgba(0,0,0,0.3); }
.usecase img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 10px; filter: drop-shadow(0 6px 10px rgba(59,47,92,0.2)); }
.usecase h3 { font-size: 17px; color: var(--lp-ink); line-height: 1.5; }
.usecase p { font-size: 13.5px; color: var(--lp-ink-soft); line-height: 1.9; margin-top: 10px; }
.usecase p.quote-lines { font-family: var(--font-display); color: var(--lp-ink); font-size: 14px; line-height: 2; }
.usecase a.more { margin-top: auto; padding-top: 14px; font-size: 13px; font-weight: 700; color: #C9622F; text-decoration: none; }
.usecase a.more:hover { text-decoration: underline; }
.safe { background: var(--lp-bg-2); padding: 64px 0 56px; }
.safe .sec-lead { text-align: center; margin-top: 10px; line-height: 2; }
.mid-cta { padding-top: 0; }
.mid-cta-box h2 { font-size: clamp(22px, 3vw, 30px); color: var(--lp-cream); line-height: 1.6; }
.mid-cta-box .lines { font-family: var(--font-display); font-size: 15px; color: var(--lp-cream); line-height: 2.1; margin-top: 14px; opacity: .95; }
.mid-cta-box .note { font-size: 12.5px; color: var(--lp-muted); margin-top: 12px; line-height: 1.7; }
.reads-lead { text-align: center; font-size: 14px; color: var(--lp-muted); line-height: 1.9; margin-top: 10px; }
.pricing-simple h2 { font-size: clamp(22px, 3vw, 28px); color: var(--lp-ink); line-height: 1.55; }
.pricing-simple p { font-size: 14px; color: var(--lp-ink-soft); line-height: 2; margin-top: 12px; }
.pricing-simple .price-line { font-family: var(--font-display); font-size: 18px; color: #C9622F; margin-top: 16px; line-height: 1.7; }
.pricing-simple .price-line span { display: block; font-family: var(--font-body); font-size: 13px; color: var(--lp-ink-soft); }
.pricing-simple .btn-cta { margin-top: 18px; }
.final .lines { font-family: var(--font-display); font-size: 15.5px; color: var(--lp-cream); line-height: 2.1; margin-top: 18px; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
.final .cta-note { font-size: 12.5px; color: var(--lp-cream); opacity: .85; margin-top: 12px; line-height: 1.7; }
@media (max-width: 900px) { .usecase-grid { grid-template-columns: 1fr; } .trust-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .usecases, .safe { padding: 48px 0; } .usecase { padding: 20px 16px 18px; border-radius: 18px; } .mid-cta-box h2 { font-size: 21px; } .final .lines { font-size: 14px; } .pricing-simple .btn-cta { width: 100%; } }


/* ---------- 2026-09-25 文言・デザイン修正 ---------- */
/* ヘッダー: 料金 / よくある質問 / 無料で始める（# のページ内リンクは使わない） */
.lp-hd-link { background: none; border: none; padding: 0; cursor: pointer; color: var(--lp-text); text-decoration: none; font-size: 13.5px; font-weight: 600; font-family: var(--font-body); white-space: nowrap; }
.lp-hd-link:hover { color: var(--lp-gold); }
.lp-hd-actions { gap: 20px; }
@media (max-width: 640px) { .lp-hd-actions { gap: 12px; } .lp-hd-link { font-size: 13px; } }
.lp-footer-link { background: none; border: none; padding: 0; cursor: pointer; color: var(--lp-muted); font-size: 12.5px; font-family: var(--font-body); }
.lp-footer-link:hover { color: var(--lp-cream); }
/* ヒーロー */
.hero h1 { font-size: clamp(30px, 3.3vw, 40px); line-height: 1.45; }
@media (min-width: 901px) { .hero-inner { grid-template-columns: 1.15fr 0.85fr; } }
.hero h1 .accent { color: var(--lp-gold); }
.hero-lead { max-width: 520px; }
.hero-cta { gap: 12px; }
.hero-sub-link { background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font-body); }
.hero-bubble { right: 4px; top: 4px; font-size: 14px; max-width: 200px; padding: 12px 18px; }
@media (max-width: 900px) { .hero-visual { margin-top: 6px; } .hero-bubble { right: 2px; top: 6px; font-size: 13px; max-width: 170px; } }
@media (max-width: 640px) { .hero h1 { font-size: 24px; line-height: 1.55; } .hero-lead { font-size: 14.5px; line-height: 1.95; } .hero-bubble { right: 6px; top: 2px; font-size: 12.5px; padding: 10px 14px; border-radius: 16px 16px 16px 4px; } }
.badge-item strong { font-size: 14.5px; }
@media (max-width: 640px) { .badges-inner { gap: 4px 12px; } .badge-item strong { font-size: 12.5px; } }
/* 体験: 背景画像、結果の一例を入力欄より前に */
.trial { background: #171B45 url('../img/design/bg-night-crystal.jpg') center 40% / cover no-repeat; }
.trial::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,24,56,0.78) 0%, rgba(20,24,56,0.6) 50%, rgba(20,24,56,0.85) 100%); }
.trial .wrap { position: relative; }
.trial-inner { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.trial-copy .trial-visual { margin-top: 22px; }
.trial-form { padding-top: 6px; }
.trial-form .trial-box { margin-top: 0; }
.example-card { padding: 20px 18px 18px; }
.example-card .ex-label { left: 18px; }
.example-body { grid-template-columns: 104px 1fr; align-items: center; }
.example-body img { width: 104px; height: 104px; }
.ex-type-name { font-size: 22px; line-height: 1.25; }
.ex-type-name span { display: block; font-size: 17px; }
.ex-desc { font-size: 13px; line-height: 1.8; margin-top: 12px; padding-top: 12px; border-top: 1px dashed rgba(59,47,92,0.18); }
/* アプリの ScoreBar 風の指標バー（一例と体験結果で共通） */
.ex-scores { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.ex-score { background: linear-gradient(90deg, rgba(255,255,255,0.92), rgba(255,255,255,0.6)); border: 1px solid rgba(214,170,100,0.35); border-radius: 16px; padding: 10px 14px 11px; box-shadow: 0 2px 10px rgba(59,47,92,0.08); }
.ex-score-head { display: flex; align-items: center; gap: 8px; }
.ex-star { font-size: 11px; color: #E8912A; text-shadow: 0 0 6px rgba(232,145,42,0.6); line-height: 1; }
.ex-score-stress .ex-star { color: #E23F3F; text-shadow: 0 0 6px rgba(226,63,63,0.5); }
.ex-score-label { flex: 1; font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: var(--lp-ink); letter-spacing: 0.02em; }
.ex-score-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #C9622F; line-height: 1; }
.ex-bar { position: relative; height: 10px; border-radius: 99px; background: rgba(59,47,92,0.08); margin-top: 7px; overflow: visible; }
.ex-bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, #F5B48A, #EE6B3A, #E23F3F); position: relative; }
.ex-score-happiness .ex-bar i { background: linear-gradient(90deg, #F9DC9E, #F3B04C, #E8912A); }
.ex-bar i::after { content: '✦'; position: absolute; right: -7px; top: 50%; transform: translateY(-50%); font-size: 12px; color: #F6C56A; text-shadow: 0 0 6px rgba(246,197,106,0.8); }
.ex-level { font-size: 11px; color: var(--lp-ink-soft); margin-top: 5px; }
.ex-level::before { content: '✦ '; color: var(--lp-gold); font-size: 9px; }
.trial-result .trial-scores-section h4 { text-align: left; }
@media (max-width: 900px) { .trial-inner { grid-template-columns: 1fr; gap: 24px; } .trial-copy .trial-visual { margin-top: 20px; } .trial-form { padding-top: 0; } }
@media (max-width: 640px) { .example-body { grid-template-columns: 84px 1fr; } .example-body img { width: 84px; height: 84px; } .ex-type-name { font-size: 20px; } .ex-type-name span { font-size: 15px; } }
/* 料金: 猫と一言 ＋ 3 プランのカード（月額 / 年額） */
.pricing-head-row { display: flex; align-items: center; gap: 22px; margin-bottom: 22px; }
.pricing-head-row img.cat { width: 132px; height: auto; flex: none; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }
.pricing-head-row h2 { font-size: clamp(22px, 3vw, 30px); color: var(--lp-cream); line-height: 1.55; }
.pricing-tag { font-family: var(--font-display); font-size: 16px; color: var(--lp-gold); letter-spacing: 0.12em; margin-top: 8px; }
.plan-toggle { display: inline-flex; gap: 4px; background: rgba(59,47,92,0.08); border-radius: 999px; padding: 4px; margin: 0 auto 18px; }
.plan-toggle { display: flex; width: max-content; }
.plan-toggle button { border: none; background: transparent; color: var(--lp-ink-soft); font-family: var(--font-body); font-weight: 700; font-size: 13.5px; padding: 8px 18px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.plan-toggle button.is-active { background: #fff; color: var(--lp-ink); box-shadow: 0 2px 8px rgba(59,47,92,0.15); }
.plan-toggle .plan-save { font-size: 10.5px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2)); border-radius: 999px; padding: 1px 8px; }
.plan-grid { margin-top: 0; }
.plan-grid[data-cycle="monthly"] .price-yearly { display: none; }
.plan-grid[data-cycle="yearly"] .price-monthly { display: none; }
.plan-price small { font-size: 12px; }
.plan-note { font-size: 12.5px; color: var(--lp-ink-soft); line-height: 1.8; margin-top: 16px; text-align: center; }
.plan-note a { color: #C9622F; font-weight: 700; text-decoration: none; margin-left: 6px; }
.plan-note a:hover { text-decoration: underline; }
@media (max-width: 900px) { .pricing-head-row { gap: 16px; } .pricing-head-row img.cat { width: 104px; } .plan-grid { grid-template-columns: 1fr; } .plan.recommended { order: 0; } }
@media (max-width: 640px) { .pricing-head-row { flex-direction: row; align-items: center; margin-bottom: 18px; } .pricing-head-row img.cat { width: 88px; } .pricing-head-row h2 { font-size: 20px; } .pricing-tag { font-size: 14px; } .plan-toggle { margin: 0 auto 14px; } .plan-toggle button { padding: 8px 14px; font-size: 13px; } }
/* 読みもの */
.reads-lead { margin-top: 8px; }

/* 体験: 診断済みの表示（バッジに文言を入れる） */
.trial-used-badge { text-align: center; margin-bottom: 12px; }
.trial-used-badge .badge { display: inline-block; font-size: 12.5px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--lp-orange), var(--lp-orange-2)); border-radius: 999px; padding: 6px 16px; letter-spacing: 0.04em; box-shadow: 0 6px 16px rgba(232,127,80,0.3); }
.trial-used { padding-top: 4px; }
.trial-used p { font-size: 13.5px; }
.trial-used .cta-note { margin-top: 8px; }

/* 幅 360px 以下（小さめのスマホ）: ヘッダーを詰め、見出しを 2 行に */
@media (max-width: 360px) { .lp-hd-inner { gap: 8px; } .lp-brand img { width: 30px; height: 30px; } .lp-brand-name { font-size: 17px; } .lp-hd-actions { gap: 10px; } .lp-hd-actions .btn-cta { padding: 8px 12px; font-size: 12px; } .hero h1 { font-size: 20px; } .hero-lead { font-size: 14px; } }

/* 一例のカード: 有料プランで見える指標（アプリの無料表示と同じ、ぼかしたバーの上に案内） */
.ex-locked { position: relative; border-radius: 16px; overflow: hidden; padding: 12px 14px; background: rgba(255,255,255,0.55); border: 1px dashed rgba(59,47,92,0.22); min-height: 78px; }
.ex-locked-bars { display: flex; flex-direction: column; gap: 12px; padding: 4px 0; filter: blur(2.5px); opacity: .55; }
.ex-locked-bars i { display: block; height: 10px; border-radius: 99px; background: linear-gradient(90deg, #F28A5A, #E8632A); }
.ex-locked-bars i:nth-child(1) { width: 62%; } .ex-locked-bars i:nth-child(2) { width: 48%; background: linear-gradient(90deg, #8FA4F2, #5B7BE0); } .ex-locked-bars i:nth-child(3) { width: 74%; background: linear-gradient(90deg, #B592F0, #9A6BE0); }
.ex-locked-msg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 12px; background: linear-gradient(180deg, rgba(250,243,236,0.35), rgba(250,243,236,0.9)); }
.ex-locked-msg img { width: 34px; height: 34px; flex: none; }
.ex-locked-msg strong { display: block; font-family: var(--font-display); font-size: 13.5px; color: var(--lp-ink); letter-spacing: 0.02em; }
.ex-locked-msg span { display: block; font-size: 11.5px; color: var(--lp-ink-soft); line-height: 1.5; margin-top: 2px; }

/* 安心バッジ（スマホ）: 1 行目に「30秒登録」、2 行目に「完全無料」「音声」 */
@media (max-width: 640px) { .badges-inner { row-gap: 6px; } .badge-item-wide { flex-basis: 100%; justify-content: center; } }
