/* 月詠みの母 逢坂月子 ─ 入口LP（フックA）ゴテゴテ荘厳・和スピリチュアル / スマホ最優先 */
:root {
  /* 背景 濃紫→ほぼ黒 */
  --bg-top: #1a0f2e;
  --bg-bottom: #0d0716;
  /* 金 */
  --gold: #e8c877;
  --gold-mid: #d8b45f;
  --gold-deep: #c9a24b;
  --gold-dark: #9c7c34;
  /* 朱（差し色） */
  --shu: #b5443a;
  --shu-soft: #cf5a4f;
  /* 文字 */
  --ink: #f6f0e2;
  --ink-soft: #ded3ba;
  --ink-dim: #a99a7e;
  /* パネル */
  --panel: rgba(40, 24, 60, 0.55);
  --panel-border: rgba(232, 200, 119, 0.28);
  --line: #06c755;
  --line-dark: #05a847;
  --radius: 14px;
  --max: 520px;
  --mincho: "Shippori Mincho B1", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --gothic: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--gothic);
  color: var(--ink);
  background:
    radial-gradient(140% 70% at 50% -8%, rgba(232, 200, 119, 0.14) 0%, transparent 55%),
    radial-gradient(120% 60% at 50% 108%, rgba(181, 68, 58, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 62%, #08040f 100%);
  background-attachment: fixed;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  min-height: 100svh;
  overflow-x: hidden;
}

.lp {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px env(safe-area-inset-bottom);
}

/* ステップ共通 */
.step {
  display: none;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0 48px;
  animation: fade 0.5s ease both;
}
.step.is-active {
  display: flex;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-inner {
  width: 100%;
}

/* 金の見出し 共通 */
.gold-text {
  background: linear-gradient(180deg, #fbe7b0 0%, var(--gold) 42%, var(--gold-deep) 78%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

/* 装飾罫（金の二重罫＋中央紋） */
.fv-divider {
  position: relative;
  height: 18px;
  margin: 14px auto 16px;
  max-width: 240px;
}
.fv-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 0;
  border-top: 1px solid rgba(232, 200, 119, 0.7);
  box-shadow: 0 3px 0 -2px rgba(232, 200, 119, 0.35);
}
.fv-divider::after {
  content: "❖";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 14px;
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  padding: 0 12px;
  text-shadow: 0 0 8px rgba(232, 200, 119, 0.5);
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 17px 20px;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--gothic);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.04em;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  color: #33230a;
  background: linear-gradient(135deg, #fbe9b3 0%, var(--gold) 45%, var(--gold-deep) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 240, 200, 0.6) inset,
    0 10px 30px rgba(201, 162, 75, 0.4),
    0 0 22px rgba(232, 200, 119, 0.35);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-cta {
  font-size: 18px;
  padding: 19px 20px;
}
.btn-line {
  color: #fff;
  background: var(--line);
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.35);
}
.btn-line:hover {
  background: var(--line-dark);
}

/* ① FV ─ 鑑定士を主役に（枠なし・大写し・背景に溶け込ませる） */
/* 大写しヒーローが入るので、中央寄せでなく上詰めにして溢れないようにする */
.step-fv {
  justify-content: flex-start;
  padding-top: 14px;
}
.fv-inner {
  text-align: center;
}

/* 鑑定士ヒーロー：画面幅いっぱい近くまで大きく、周囲をフェードして背景（濃紫→黒）に溶かす */
.fv-hero {
  position: relative;
  /* .lp の左右パディング18pxを打ち消して画面幅いっぱいに寄せる */
  width: calc(100% + 36px);
  margin: -14px -18px 0;
  aspect-ratio: 3 / 4.1;
  max-height: 62svh;
  overflow: hidden;
}
.fv-aura {
  position: absolute;
  inset: -6% 0 auto;
  height: 78%;
  background:
    radial-gradient(58% 48% at 50% 40%, rgba(232, 200, 119, 0.4) 0%, rgba(232, 200, 119, 0.1) 42%, transparent 72%),
    radial-gradient(70% 60% at 50% 52%, rgba(181, 68, 58, 0.18) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
  animation: aura 6s ease-in-out infinite;
}
@keyframes aura {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.fv-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  /* 下端・左右をフェードして矩形の縁を消し、人物を背景から浮かび上がらせる */
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 60%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 60%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-composite: intersect;
}
/* マスクの下端フェードに重ねて、背景色そのものへ確実に溶け込ませる保険オーバーレイ */
.fv-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 7, 22, 0.55) 55%, var(--bg-bottom) 100%);
}
/* 画像に重なる鑑定士名・肩書き */
.fv-hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  z-index: 3;
  text-align: center;
  padding: 0 18px;
}
.fv-title-small {
  font-family: var(--mincho);
  font-size: 14px;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  color: var(--gold);
  margin: 4px 0 6px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 10px rgba(232, 200, 119, 0.35);
}
.fv-name {
  font-family: var(--mincho);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
  background: linear-gradient(180deg, #fdeeba 0%, var(--gold) 40%, var(--gold-deep) 75%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 14px rgba(232, 200, 119, 0.25));
}
.fv-name ruby {
  ruby-position: over;
}
.fv-name rt {
  font-size: 11px;
  letter-spacing: 0.3em;
  -webkit-text-fill-color: var(--ink-dim);
  color: var(--ink-dim);
  font-weight: 500;
  font-family: var(--mincho);
}
.fv-realname {
  font-family: var(--mincho);
  font-size: 17px;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
  color: var(--ink-soft);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}
/* FV下部の説明・導線ブロック */
.fv-body {
  margin-top: 6px;
}
.fv-realname .kamon {
  color: var(--gold);
  font-size: 11px;
  vertical-align: 2px;
  margin: 0 6px;
}
.fv-copy-main {
  font-family: var(--mincho);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.fv-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.8;
}
.fv-about {
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.9;
  margin: 0 0 24px;
}
.fv-about strong {
  color: var(--gold);
  font-weight: 700;
}
/* 流れの導線（① 質問 → ② 生年月日 → ③ 鑑定書） */
.fv-flow {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.fv-flow li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.fv-flow-no {
  color: var(--gold);
  font-family: var(--mincho);
  font-weight: 700;
}
.fv-flow-sep {
  color: var(--gold-dark);
  font-size: 12px;
}
.fv-note {
  font-size: 12.5px;
  color: var(--ink-dim);
  margin: 10px 0 0;
  letter-spacing: 0.04em;
}

/* ② ミニ選択 */
.progress-label {
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.15em;
  margin: 0 0 8px;
}
.progress-label .now {
  color: var(--gold);
  font-weight: 700;
}
.q-title {
  font-family: var(--mincho);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.choice {
  appearance: none;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  color: var(--ink);
  font-family: var(--gothic);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease, box-shadow 0.2s ease;
}
.choice:active {
  transform: scale(0.97);
}
.choice.is-selected,
.choice:hover {
  border-color: var(--gold);
  background: rgba(232, 200, 119, 0.14);
  box-shadow: 0 0 14px rgba(232, 200, 119, 0.2);
}

/* ③ 生年月日 */
.birth-form {
  margin-top: 4px;
}
.birth-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.birth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-dim);
}
.birth-field select,
.word-field textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  color: var(--ink);
  border-radius: 12px;
  padding: 13px 12px;
  font-size: 16px;
  font-family: inherit;
}
.birth-field select:focus,
.word-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(232, 200, 119, 0.18);
}
.word-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 12px;
}
.word-field textarea {
  resize: vertical;
}
.micro {
  font-size: 12.5px;
  color: var(--ink-dim);
  margin: 0 0 18px;
}
.form-error {
  color: var(--shu-soft);
  font-size: 13px;
  margin: 0 0 12px;
}

/* ④ 解析演出 */
.analyze-inner {
  text-align: center;
}
.analyze-mon {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(232, 200, 119, 0.5);
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 200, 119, 0.25) 0%, transparent 70%);
  position: relative;
  animation: monspin 9s linear infinite;
}
.analyze-mon::before {
  content: "☾";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 30px;
  text-shadow: 0 0 14px rgba(232, 200, 119, 0.6);
}
@keyframes monspin {
  to { transform: rotate(360deg); }
}
.analyze-text {
  font-family: var(--mincho);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 26px;
  min-height: 2.6em;
  letter-spacing: 0.03em;
}
.wave-wrap {
  width: 100%;
  margin: 0 auto 26px;
}
.wave-svg {
  width: 100%;
  height: 140px;
  display: block;
}
.wave-path {
  stroke: var(--gold);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 6px rgba(232, 200, 119, 0.6));
  stroke-linecap: round;
}
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(232, 200, 119, 0.2);
}
.progress-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), #fbe9b3);
  box-shadow: 0 0 12px rgba(232, 200, 119, 0.6);
  transition: width 0.2s linear;
}

/* ⑤ 鑑定書カード */
.result-head {
  text-align: center;
  margin-bottom: 8px;
}
.result-eyebrow {
  font-family: var(--mincho);
  font-size: 13px;
  letter-spacing: 0.24em;
  padding-left: 0.24em;
  color: var(--gold);
  margin: 0 0 6px;
  text-shadow: 0 0 8px rgba(232, 200, 119, 0.3);
}
.result-title {
  font-family: var(--mincho);
  font-size: 30px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #fdeeba 0%, var(--gold) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(232, 200, 119, 0.22));
}

/* カード全体を鑑定書の巻物風に */
.curtain-core {
  position: relative;
  border-radius: var(--radius);
  padding: 6px 6px;
  margin-bottom: 22px;
  background:
    linear-gradient(180deg, rgba(30, 18, 48, 0.7), rgba(16, 9, 28, 0.75));
  border: 1px solid rgba(232, 200, 119, 0.35);
  box-shadow:
    0 0 0 1px rgba(232, 200, 119, 0.12) inset,
    0 18px 46px rgba(0, 0, 0, 0.5);
}
.curtain-core::before,
.curtain-core::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 0;
  border-top: 1px solid rgba(232, 200, 119, 0.4);
}
.curtain-core::before { top: 3px; }
.curtain-core::after { bottom: 3px; }

/* 各鑑定項目カード */
.kantei-card {
  position: relative;
  padding: 16px 16px 18px;
  border-bottom: 1px solid rgba(232, 200, 119, 0.18);
}
.kantei-card:last-child {
  border-bottom: none;
}
/* 見出し帯 */
.kantei-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(181, 68, 58, 0.9), rgba(140, 44, 38, 0.9));
  box-shadow: 0 2px 10px rgba(181, 68, 58, 0.3), 0 0 0 1px rgba(232, 200, 119, 0.35) inset;
}
.kantei-card-head .mon {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 6px rgba(232, 200, 119, 0.5);
}
.kantei-card-head h3 {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.06em;
  color: #fdeeba;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.kantei-card-body {
  font-size: 15.5px;
  line-height: 1.95;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* 導入文（鑑定書の書き出し） */
.kantei-intro {
  font-family: var(--mincho);
  font-size: 15.5px;
  line-height: 2.05;
  margin: 0;
  padding: 18px 16px 20px;
  color: var(--ink);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(232, 200, 119, 0.18);
}

/* 章タイトル（鑑定書内の区切り見出し） */
.kantei-section-title {
  font-family: var(--mincho);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 4px 6px 2px;
  padding: 16px 0 12px;
  text-shadow: 0 0 10px rgba(232, 200, 119, 0.22);
}
.kantei-section-title::before,
.kantei-section-title::after {
  content: "―";
  color: rgba(232, 200, 119, 0.5);
  margin: 0 8px;
}

/* 下半期の月ごとの流れ */
.kantei-months {
  margin: 0 6px 4px;
  padding: 4px 12px 14px;
}
.kantei-month {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(232, 200, 119, 0.14);
}
.kantei-month:last-child {
  border-bottom: none;
}
.kantei-month-label {
  flex: none;
  width: 46px;
  font-family: var(--mincho);
  font-size: 15.5px;
  font-weight: 700;
  color: #fdeeba;
  letter-spacing: 0.04em;
}
.kantei-month-text {
  flex: 1;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink);
}
.kantei-month.is-locked .kantei-month-label {
  color: var(--ink-dim);
}
.kantei-month-text.is-blur {
  filter: blur(4.5px);
  color: var(--ink-dim);
  user-select: none;
}
.kantei-month-seal {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #fbe9b3;
  background: radial-gradient(circle at 40% 35%, var(--shu-soft), var(--shu) 70%, #7c2620);
  box-shadow: 0 0 0 1px rgba(232, 200, 119, 0.5), 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* 締めの言葉 */
.kantei-outro {
  font-family: var(--mincho);
  font-size: 15px;
  line-height: 2.05;
  margin: 0;
  padding: 18px 16px 20px;
  color: var(--ink);
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(232, 200, 119, 0.18);
}

/* ロック項目（封印感） */
.kantei-lock-wrap {
  margin: 2px 6px 4px;
  padding: 14px 12px 16px;
  border-radius: 10px;
  border: 1px dashed rgba(232, 200, 119, 0.4);
  background: linear-gradient(180deg, rgba(232, 200, 119, 0.05), rgba(0, 0, 0, 0.2));
}
.kantei-lock {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 6px;
  border-bottom: 1px solid rgba(232, 200, 119, 0.14);
}
.kantei-lock:last-of-type {
  border-bottom: none;
}
.kantei-lock .seal {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: #fbe9b3;
  background: radial-gradient(circle at 40% 35%, var(--shu-soft), var(--shu) 70%, #7c2620);
  box-shadow: 0 0 0 1px rgba(232, 200, 119, 0.5), 0 2px 6px rgba(0, 0, 0, 0.4);
}
.kantei-lock .lock-body {
  flex: 1;
}
.kantei-lock .lock-title {
  font-family: var(--mincho);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 4px;
  letter-spacing: 0.03em;
}
.kantei-lock .lock-blur {
  font-size: 13.5px;
  color: var(--ink-dim);
  filter: blur(4.5px);
  user-select: none;
  margin: 0;
  line-height: 1.7;
}
.kantei-lock-note {
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--gold);
  text-align: center;
  margin: 14px 0 0;
  letter-spacing: 0.03em;
  line-height: 1.7;
  text-shadow: 0 0 8px rgba(232, 200, 119, 0.25);
}

/* 運気の図解（すりガラス演出） */
.kantei-charts {
  margin: 2px 6px 4px;
  padding: 14px 12px 16px;
  border-radius: 10px;
  border: 1px dashed rgba(232, 200, 119, 0.4);
  background: linear-gradient(180deg, rgba(232, 200, 119, 0.05), rgba(0, 0, 0, 0.2));
}
.kantei-charts-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chart-block {
  text-align: center;
}
.chart-title {
  font-family: var(--mincho);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin: 0 0 8px;
  text-shadow: 0 0 8px rgba(232, 200, 119, 0.2);
}
.chart-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(232, 200, 119, 0.28);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(40, 24, 60, 0.7), rgba(13, 7, 22, 0.85));
  box-shadow: 0 0 0 1px rgba(232, 200, 119, 0.1) inset, 0 8px 22px rgba(0, 0, 0, 0.45);
}
.chart-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 340px;
  margin: 0 auto;
  padding: 6px 4px;
}
/* すりガラスで覆う本体側（形・色は分かるが数値は読めない） */
.chart-frame.is-frosted .chart-svg {
  filter: blur(6px);
}
/* すりガラス層（frosted glass）＋金/白の半透明オーバーレイ */
.chart-frost {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 235, 0.10), rgba(232, 200, 119, 0.10)),
    rgba(20, 12, 32, 0.28);
  -webkit-backdrop-filter: blur(2.5px);
  backdrop-filter: blur(2.5px);
}
/* 中央の封のアイコン */
.chart-frost-seal {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mincho);
  font-size: 19px;
  font-weight: 700;
  color: #fbe9b3;
  background: radial-gradient(circle at 40% 35%, var(--shu-soft), var(--shu) 70%, #7c2620);
  box-shadow:
    0 0 0 2px rgba(232, 200, 119, 0.55),
    0 0 18px rgba(181, 68, 58, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.5);
}
/* チャート内の色（すりガラス越しに形・色は見える） */
.chart-grid,
.radar-grid,
.radar-spoke {
  stroke: rgba(232, 200, 119, 0.22);
  stroke-width: 1;
  fill: none;
}
.chart-area {
  fill: rgba(232, 200, 119, 0.16);
}
.chart-line {
  stroke: var(--gold);
  stroke-width: 2.4;
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.chart-dot {
  fill: var(--gold);
}
.chart-peak-ring {
  fill: rgba(181, 68, 58, 0.35);
  stroke: var(--shu-soft);
  stroke-width: 1.5;
}
.chart-peak-mark {
  fill: #fbe9b3;
  font-size: 12px;
  text-anchor: middle;
}
.chart-label {
  fill: var(--ink-dim);
  font-family: var(--gothic);
  font-size: 10px;
  text-anchor: middle;
}
.radar-shape {
  fill: rgba(181, 68, 58, 0.30);
  stroke: var(--shu-soft);
  stroke-width: 2;
}
.radar-dot {
  fill: var(--gold);
}
.radar-label {
  fill: var(--ink-soft);
  font-family: var(--mincho);
  font-size: 11px;
}
.kantei-charts-cta {
  font-family: var(--mincho);
  font-size: 13.5px;
  color: var(--gold);
  text-align: center;
  margin: 14px 0 0;
  letter-spacing: 0.02em;
  line-height: 1.7;
  text-shadow: 0 0 8px rgba(232, 200, 119, 0.25);
}

/* ⑥ LINE */
.line-title {
  font-family: var(--mincho);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 22px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.line-reassure {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}
.line-reassure li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink-soft);
}
.line-reassure li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--line);
  font-weight: 700;
}
.line-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-dim);
  margin: 14px 0 0;
}

/* フッター */
.lp-footer {
  border-top: 1px solid var(--panel-border);
  padding: 22px 0 40px;
  margin-top: 8px;
}
.footer-details {
  font-size: 13px;
  color: var(--ink-dim);
}
.footer-details summary {
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: revert;
}
.footer-body h3 {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 16px 0 4px;
}
.footer-body p {
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0;
}
.footer-copy {
  font-family: var(--mincho);
  font-size: 12px;
  color: var(--ink-dim);
  margin: 20px 0 0;
  text-align: center;
  letter-spacing: 0.06em;
}

/* 広め画面 */
@media (min-width: 560px) {
  .fv-name {
    font-size: 46px;
  }
  .fv-copy-main {
    font-size: 24px;
  }
}
