/* ============================================================
   KURASHILOG（くらしログ）スモークテストLP — 共通スタイル
   Primary: #1c3464（Log系共通ネイビー）  Accent: #5F7A61（落ち着いたセージグリーン）
   02_共通ブランド方針.md 準拠（Primaryはブランド共通、Accentのみ製品差別化）
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #1c3464;
  --primary-dark:  #14254a;
  --primary-light: #e3eaf5;
  --accent:        #5F7A61;
  --accent-light:  #e7ede8;
  --accent-hover:  #4c6350;
  --text:          #1f2937;
  --text-sub:      #374151;
  --text-muted:    #6b7280;
  --border:        #e2e5ea;
  --bg-page:       #f4f5f7;
  --bg-white:      #ffffff;
  --success:       #047857;
  --danger:        #b91c1c;
  --radius:        10px;
  --shadow:        0 2px 10px rgba(0,0,0,.07);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN","Hiragino Sans","Yu Gothic UI",
    "Yu Gothic Medium","Yu Gothic","Meiryo", sans-serif;
  color: var(--text);
  background: var(--bg-page);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { text-wrap: pretty; }

.container { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section--alt { background: var(--bg-white); }
.section__label {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent);
  border-radius: 4px; padding: 3px 10px; margin-bottom: 16px;
}
.section__title { font-size: clamp(20px, 3vw, 26px); font-weight: 700; color: var(--primary); line-height: 1.5; margin-bottom: 12px; }
.section__lead { font-size: 14px; color: var(--text-sub); max-width: 620px; margin-bottom: 28px; }

/* ---- ナビ ---- */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--primary); padding: 14px 0; box-shadow: 0 1px 4px rgba(0,0,0,.18); }
.site-nav__inner { max-width: 760px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 32px; height: 32px; background: var(--accent); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0; }
.nav-name { font-weight: 700; font-size: 16px; color: #fff; letter-spacing: 0.02em; }
.nav-tagline { font-size: 11px; color: #c8d3c9; font-weight: 400; }

/* ---- ヒーロー ---- */
.hero { background: linear-gradient(160deg, #14254a 0%, #1c3464 60%, #29563f 130%); padding: 68px 20px 60px; text-align: center; color: #fff; }
.hero__eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #c8dccb; border: 1px solid rgba(200,220,203,.4); border-radius: 4px; padding: 4px 12px; margin-bottom: 22px; }
.hero__heading { font-size: clamp(24px, 4.6vw, 36px); font-weight: 700; line-height: 1.45; margin-bottom: 18px; }
.hero__heading em { font-style: normal; color: #9cd0a8; }
.hero__sub { font-size: clamp(14px, 1.8vw, 16px); color: #d3ddd4; max-width: 540px; margin: 0 auto 28px; }
.hero__cta {
  display: inline-block; background: var(--accent); color: #fff; font-weight: 700; font-size: 16px;
  padding: 16px 36px; border-radius: 8px; box-shadow: 0 4px 16px rgba(95,122,97,.4);
}
.hero__cta:hover { background: var(--accent-hover); text-decoration: none; }
.hero__note { font-size: 12px; color: #a9c0ac; margin-top: 12px; }

/* ---- アンカーカード（損失額アンカー） ---- */
.anchor-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 20px 22px; margin: 28px auto 0; max-width: 480px; text-align: left;
}
.anchor-card__label { font-size: 11px; font-weight: 700; color: #9cd0a8; letter-spacing: .08em; margin-bottom: 8px; }
.anchor-card__body { font-size: 14px; line-height: 1.8; color: #fff; }
.anchor-card__amount { font-weight: 700; font-size: 20px; color: #9cd0a8; }
.anchor-card__note { font-size: 11px; color: #a9c0ac; margin-top: 10px; line-height: 1.7; }

/* ---- カード共通 ---- */
.card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }

/* ---- フォーム ---- */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-weight: 700; font-size: 14px; color: var(--primary); margin-bottom: 10px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill {
  border: 1.5px solid var(--border); border-radius: 999px; padding: 9px 16px; font-size: 13px;
  cursor: pointer; background: var(--bg-white); color: var(--text-sub); transition: all .12s;
}
.radio-pill input { display: none; }
.radio-pill.is-selected { border-color: var(--accent); background: var(--accent-light); color: var(--primary); font-weight: 700; }
.adl-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.adl-row { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; background: var(--bg-white); }
.adl-row__title { font-weight: 700; font-size: 13px; color: var(--primary); margin-bottom: 10px; }

.btn-primary {
  display: inline-block; background: var(--accent); color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 30px; border-radius: 8px; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary {
  display: inline-block; background: #fff; color: var(--primary); font-weight: 700; font-size: 13px;
  padding: 10px 20px; border-radius: 8px; border: 1.5px solid var(--border); cursor: pointer;
}
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }
.form-error { font-size: 13px; color: var(--danger); margin-top: 10px; display: none; }
.form-success { font-size: 13px; color: var(--success); margin-top: 10px; display: none; }

/* ---- タイムライン ---- */
.timeline { position: relative; margin-top: 30px; }
.timeline-phase { display: flex; gap: 18px; margin-bottom: 26px; }
.timeline-phase__marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-phase__dot { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.timeline-phase__line { flex: 1; width: 2px; background: var(--border); margin-top: 4px; min-height: 30px; }
.timeline-phase__body { flex: 1; padding-bottom: 4px; }
.timeline-phase__title { font-weight: 700; font-size: 15px; color: var(--primary); }
.timeline-phase__period { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.timeline-phase__desc { font-size: 13px; color: var(--text-sub); margin-bottom: 12px; }

.tip-card { background: var(--accent-light); border: 1px solid #cfdccf; border-radius: var(--radius); padding: 16px 18px; }
.tip-card__label { font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--accent-hover); text-transform: uppercase; margin-bottom: 6px; }
.tip-card__title { font-weight: 700; font-size: 14px; color: var(--primary); margin-bottom: 8px; }
.tip-card__body { font-size: 13px; color: var(--text-sub); line-height: 1.8; }
.tip-card__amount { display: inline-block; margin-top: 8px; font-weight: 700; color: var(--success); font-size: 15px; }
.tip-card__source { margin-top: 10px; padding-top: 10px; border-top: 1px dashed #cfdccf; font-size: 11px; color: var(--text-muted); line-height: 1.7; }
.badge-verified { display: inline-block; font-size: 10px; font-weight: 700; background: var(--success); color: #fff; border-radius: 4px; padding: 2px 7px; margin-left: 6px; }

.program-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; background: var(--bg-white); }
.program-card__category { font-size: 10px; font-weight: 700; color: var(--accent-hover); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }
.program-card__title { font-weight: 700; font-size: 14px; color: var(--primary); margin-bottom: 6px; }
.program-card__body { font-size: 13px; color: var(--text-sub); line-height: 1.75; }
.program-card__note { font-size: 12px; color: var(--text-muted); margin-top: 8px; line-height: 1.7; }
.legal-note { font-size: 11px; color: var(--text-muted); margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--border); line-height: 1.7; }

/* ---- 危機パスCTA ---- */
.crisis-block { background: var(--primary); color: #fff; border-radius: 16px; padding: 32px 26px; margin-top: 36px; text-align: center; }
.crisis-block__name { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: #c8dccb; margin-bottom: 10px; text-transform: uppercase; }
.crisis-block__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.crisis-block__price { font-size: 30px; font-weight: 700; margin-bottom: 4px; }
.crisis-block__price span { font-size: 13px; font-weight: 400; color: #c8dccb; }
.crisis-block__desc { font-size: 13px; color: #d3ddd4; max-width: 460px; margin: 12px auto 20px; line-height: 1.85; }
.crisis-block__note { font-size: 11px; color: #a9c0ac; margin-top: 14px; line-height: 1.7; }

/* ---- TsunagiLog送客（限定箇所のみ・非バナー） ---- */
.cross-sell-note { margin-top: 20px; padding: 14px 16px; border-radius: var(--radius); background: #f4f2f8; border: 1px solid #e2ddec; font-size: 12px; color: var(--text-sub); line-height: 1.8; }
.cross-sell-note a { font-weight: 700; }

/* ---- フッター ---- */
.site-footer { background: var(--primary-dark); color: #a9c0ac; padding: 28px 20px; font-size: 12px; text-align: center; line-height: 1.9; }
.site-footer .disclaimer { color: #7d947f; font-size: 11px; max-width: 620px; margin: 12px auto 0; line-height: 1.8; }

/* ---- ステップ表示 ---- */
.step-track { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.step-track__item { font-size: 11px; padding: 5px 12px; border-radius: 999px; background: var(--border); color: var(--text-muted); }
.step-track__item.is-active { background: var(--accent); color: #fff; font-weight: 700; }

@media (max-width: 600px) {
  .section { padding: 40px 0; }
  .hero { padding: 48px 16px 44px; }
  .crisis-block { padding: 26px 18px; }
}
