/* =========================================================
   サブスク婚活 リニューアル提案デモ
   配色：生成りアイボリー × ローズブラウン × 真鍮ゴールド
   フォント：見出し明朝(Zen Old Mincho) / 本文ゴシック(Zen Kaku Gothic New) / 数字(Cormorant)
   ========================================================= */
:root {
  --rose:       #8a4b52;   /* メイン：落ち着いたローズブラウン */
  --rose-deep:  #6b383f;   /* 濃いローズ（帯・アクセント面） */
  --rose-soft:  #b3808a;   /* やわらかいローズ */
  --brass:      #b08a4f;   /* アクセント：真鍮ゴールド（CTAのみ） */
  --brass-soft: #cbab77;
  --ink:        #3a322f;   /* 本文テキスト（真っ黒にしない） */
  --mute:       #6d6259;   /* 補助テキスト */
  --paper:      #faf6f0;   /* ベース背景（真っ白にしない） */
  --cream:      #f3ebe0;   /* セクション交互用 */
  --white:      #fdfaf5;   /* カード面 */
  --line:       #e7ddd0;   /* 罫線 */
  --en:  "Cormorant", serif;
  --min: "Zen Old Mincho", serif;
  --jp:  "Zen Kaku Gothic New", sans-serif;
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
@media (max-width: 880px) { html { scroll-padding-top: 90px; } }
body {
  font-family: var(--jp); background: var(--paper); color: var(--ink);
  line-height: 1.9; font-size: 16px; letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
s { color: var(--mute); }

/* ごく薄い紙テクスチャでのっぺり感を消す */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.en  { font-family: var(--en); }
.min { font-family: var(--min); }

/* ---- 共通見出しパーツ ---- */
.kicker {
  font-family: var(--en); font-size: 1.05rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--brass);
  display: inline-flex; align-items: center; gap: 12px;
}
.kicker::before { content: ''; width: 26px; height: 1px; background: var(--brass); }
.kicker.center { justify-content: center; }
.kicker.center::before { display: none; }
.kicker.light { color: var(--brass-soft); }

.sec-title {
  font-family: var(--min); font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem); line-height: 1.55;
  letter-spacing: .05em; margin-top: 14px; color: var(--ink);
}
.sec-title.left  { text-align: left; }
.sec-title.white { color: var(--paper); }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-desc { margin-top: 18px; color: var(--mute); font-size: .95rem; max-width: 40em; margin-inline: auto; }

.section { max-width: var(--maxw); margin: 0 auto; padding: 108px 6vw; }

/* ---- reveal ---- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rv.on { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .12s; }
.rv.d2 { transition-delay: .24s; }
.rv.d3 { transition-delay: .36s; }

/* ---- ボタン ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: inherit; font-size: .95rem; font-weight: 500; letter-spacing: .08em;
  padding: 16px 34px; border-radius: 8px; border: none; cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .3s, color .3s, border-color .3s;
}
.cta-demo-note { margin-top: 18px; font-size: .74rem; color: #cbb8b3; text-align: center; }
.btn.lg { padding: 19px 44px; font-size: 1.02rem; }
.btn-primary { background: var(--rose); color: #fdf8f2; font-weight: 700; box-shadow: 0 6px 18px rgba(138,75,82,.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(138,75,82,.42); }
.btn-outline { border: 1px solid var(--rose); color: var(--rose); background: transparent; }
.btn-outline:hover { background: var(--rose); color: #fff; }
.btn-ghost { border: 1px solid rgba(58,50,47,.28); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }
.btn-line { background: rgba(255,255,255,.1); color: var(--paper); border: 1px solid rgba(253,250,245,.4); }
.btn-line:hover { background: rgba(255,255,255,.2); border-color: var(--paper); }
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   デモ注記リボン
   ========================================================= */
.demo-ribbon {
  background: var(--rose-deep); color: #f5e9e2;
  font-size: .74rem; letter-spacing: .05em; text-align: center;
  padding: 7px 16px; line-height: 1.5;
}

/* =========================================================
   ヘッダー
   ========================================================= */
header {
  position: fixed; top: 33px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 6vw; transition: background .4s, box-shadow .4s, padding .4s, top .3s;
}
/* スクロール後はリボンが隠れるのでヘッダーを最上部へ */
header.solid { top: 0; }
header.solid {
  background: rgba(250,246,240,.94); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line); padding: 13px 6vw;
}
.logo {
  font-family: var(--min); font-weight: 700; font-size: 1.32rem;
  letter-spacing: .08em; color: var(--rose); line-height: 1.1;
}
.logo small {
  display: block; font-family: var(--en); font-size: .56rem;
  letter-spacing: .34em; color: var(--brass); margin-top: 3px; font-weight: 400;
}
nav { display: flex; gap: 28px; align-items: center; }
nav a { font-size: .86rem; letter-spacing: .08em; color: var(--ink); position: relative; }
nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--rose); transition: width .35s;
}
nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--rose); color: #fff !important; padding: 10px 22px;
  border-radius: 8px; font-weight: 700; letter-spacing: .06em;
  transition: background .3s, transform .3s;
}
.nav-cta:hover { background: var(--rose-deep); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(80vw, 300px);
  background: var(--white); z-index: 99; padding: 90px 32px 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.22,1,.36,1);
  box-shadow: -12px 0 40px rgba(58,50,47,.12);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { padding: 14px 6px; font-size: 1rem; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .mm-cta {
  margin-top: 18px; background: var(--rose); color: #fdf8f2; text-align: center;
  border-radius: 8px; border: none; font-weight: 700; padding: 15px;
}

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(720px 520px at 88% 12%, rgba(203,171,119,.16), transparent 62%),
    linear-gradient(158deg, #fbf7f1 0%, #f5ebe1 60%, #efe2d6 100%);
}
.hero-deco {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 82%, rgba(138,75,82,.07), transparent 40%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center; gap: clamp(30px, 5vw, 70px);
  padding: 150px 6vw 118px;
}
.hero-kicker { font-family: var(--en); font-size: .96rem; letter-spacing: .3em; color: var(--brass); }
.hero h1 {
  font-family: var(--min); font-weight: 700;
  font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.6; letter-spacing: .04em;
  margin-top: 22px; color: var(--ink);
}
.hero h1 .stress {
  color: var(--rose);
  background: linear-gradient(transparent 66%, rgba(203,171,119,.4) 66%);
}
.hero-lead { margin-top: 26px; font-size: 1rem; color: #6b615c; max-width: 30em; line-height: 2; }
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  list-style: none; margin-top: 34px; display: flex; flex-wrap: wrap;
  gap: 10px 26px; font-size: .86rem; color: var(--ink);
}
.hero-badges li { display: flex; align-items: center; gap: 9px; }
.hero-badges b { color: var(--rose); font-weight: 700; }
.hero-badges .chk {
  width: 18px; height: 18px; border-radius: 50%; background: var(--rose);
  position: relative; flex-shrink: 0;
}
.hero-badges .chk::after {
  content: ''; position: absolute; left: 5px; top: 4px; width: 5px; height: 8px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(42deg);
}

/* ヒーロー ビジュアル（リング） */
.hero-visual { display: flex; justify-content: center; }
.ring-card {
  background: var(--white); border-radius: 20px; padding: 40px 40px 34px;
  box-shadow: 0 24px 60px rgba(107,56,63,.14); width: min(360px, 100%);
  border: 1px solid rgba(231,221,208,.9); position: relative;
}
.ring-card::after {
  content: ''; position: absolute; inset: 12px; border: 1px solid rgba(203,171,119,.4);
  border-radius: 12px; pointer-events: none;
}
.rings { width: 100%; height: auto; }
.ring { fill: none; stroke-width: 6; }
.ring-a { stroke: var(--brass); }
.ring-b { stroke: var(--rose); }
.ring-stone { fill: var(--brass-soft); }
.ring-label { text-align: center; margin-top: 18px; }
.rl-en { display: block; font-family: var(--en); font-style: italic; font-size: 1.2rem; color: var(--brass); letter-spacing: .04em; }
.rl-jp { display: block; font-family: var(--min); font-size: 1.02rem; color: var(--rose); margin-top: 6px; letter-spacing: .06em; }

.hero-scroll {
  position: absolute; left: 6vw; bottom: 26px; z-index: 2;
  display: flex; align-items: center; gap: 13px;
  font-family: var(--en); font-size: .68rem; letter-spacing: .34em; color: var(--mute);
}
.hero-scroll .bar { width: 60px; height: 1px; background: rgba(133,122,117,.3); position: relative; overflow: hidden; }
.hero-scroll .bar::after {
  content: ''; position: absolute; inset: 0; background: var(--brass);
  transform: translateX(-100%); animation: slideline 2.6s ease-in-out infinite;
}
@keyframes slideline { 0%{transform:translateX(-100%)} 55%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* =========================================================
   トラストバー
   ========================================================= */
.stats { background: var(--rose-deep); color: #f6ece7; }
.stats-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 52px 6vw;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat { text-align: center; padding: 8px 6px; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 16%; bottom: 16%; width: 1px; background: rgba(246,236,231,.16); }
.stat .num { font-family: var(--en); font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1.1; color: var(--brass-soft); font-weight: 600; }
.stat .num span { font-size: .9rem; margin-left: 3px; font-weight: 400; }
.stat .lbl { font-size: .84rem; letter-spacing: .1em; color: #e3d0c9; margin-top: 8px; }
.stat .lbl small { display: block; font-size: .68rem; color: #c2a9a2; letter-spacing: .06em; margin-top: 2px; }

/* =========================================================
   悩み共感（1カラム・余白）
   ========================================================= */
.empathy { text-align: center; padding-block: 128px; }
.empathy-kicker { font-family: var(--en); font-style: italic; font-size: 1.3rem; letter-spacing: .06em; color: var(--brass); }
.empathy-lead {
  font-family: var(--min); font-weight: 600;
  font-size: clamp(1.5rem, 3.6vw, 2.35rem); line-height: 1.9; letter-spacing: .04em;
  margin-top: 20px; color: var(--ink);
}
.empathy-lead em { font-style: normal; color: var(--rose); }
.empathy-text { margin-top: 30px; max-width: 40em; margin-inline: auto; color: #5f5651; font-size: 1rem; line-height: 2.05; }

/* =========================================================
   料金プラン
   ========================================================= */
.plan-sec { background: var(--cream); max-width: none; }
.plan-sec > * { max-width: var(--maxw); margin-inline: auto; }
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.plan-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 42px 38px 38px; position: relative; display: flex; flex-direction: column;
  transition: transform .4s, box-shadow .4s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(107,56,63,.1); }
.plan-card.featured { border: 1.5px solid var(--brass); box-shadow: 0 16px 40px rgba(176,138,79,.14); }
.plan-ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: #fdf8f2; font-size: .76rem; font-weight: 700;
  letter-spacing: .1em; padding: 6px 22px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-family: var(--min); font-weight: 700; font-size: 1.28rem; letter-spacing: .04em; color: var(--rose); }
.pp-permonth { font-size: .84rem; color: var(--rose); font-weight: 700; margin-top: 2px; }
.plan-tag { font-size: .84rem; color: var(--mute); margin-top: 6px; }
.plan-price { margin: 26px 0 6px; display: flex; align-items: baseline; gap: 4px; color: var(--ink); }
.pp-num { font-family: var(--en); font-size: 3.2rem; font-weight: 600; line-height: 1; color: var(--ink); }
.pp-unit { font-size: .92rem; color: var(--mute); }
.plan-init { font-size: .88rem; color: #5f5651; padding-bottom: 22px; border-bottom: 1px dashed var(--line); }
.plan-init b { color: var(--rose); }
.plan-feat { list-style: none; margin: 24px 0 30px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.plan-feat li { position: relative; padding-left: 28px; font-size: .92rem; color: var(--ink); line-height: 1.7; }
.plan-feat li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  border-radius: 50%; background: rgba(176,138,79,.16);
}
.plan-feat li::after {
  content: ''; position: absolute; left: 5px; top: 10px; width: 4px; height: 7px;
  border: solid var(--brass); border-width: 0 2px 2px 0; transform: rotate(42deg);
}
.plan-card .btn { width: 100%; }
.plan-note { margin-top: 26px; font-size: .8rem; color: var(--mute); text-align: center; }

/* =========================================================
   IBJとは（左右交互）
   ========================================================= */
.about-row { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 78px); align-items: center; }
.about-visual {
  background: linear-gradient(155deg, #fbf7f1, #f1e5d8);
  border: 1px solid var(--line); border-radius: 16px; padding: 46px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.about-visual::before {
  content: 'IBJ'; position: absolute; right: -6px; bottom: -24px;
  font-family: var(--en); font-size: 6.5rem; font-weight: 600;
  color: rgba(176,138,79,.08); letter-spacing: .04em; line-height: 1;
}
.stat-orb {
  width: 168px; height: 168px; margin: 0 auto; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #9d5860, var(--rose-deep));
  color: #fbeee9; display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(107,56,63,.22); position: relative; z-index: 1;
}
.orb-num { font-family: var(--min); font-weight: 700; font-size: 1.6rem; letter-spacing: .02em; }
.orb-sub { font-size: .78rem; color: #e6cfca; margin-top: 4px; letter-spacing: .08em; }
.orb-points { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 11px; position: relative; z-index: 1; }
.orb-points li { font-size: .9rem; color: var(--ink); display: flex; align-items: center; justify-content: center; gap: 9px; }
.orb-points li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); flex-shrink: 0; }
.about-text p { margin-top: 20px; color: #5f5651; font-size: .96rem; line-height: 2; }
.about-text p b { color: var(--rose); }

/* =========================================================
   低価格の理由（番号横組み）
   ========================================================= */
.reason { background: var(--paper); position: relative; overflow: hidden; }
.reason-row {
  display: grid; grid-template-columns: 150px 1fr; gap: 40px; align-items: baseline;
  padding: 46px 0; border-bottom: 1px solid var(--line);
}
.reason-row:first-of-type { border-top: 1px solid var(--line); }
.rno { font-family: var(--en); font-size: 3rem; font-weight: 600; color: var(--brass); line-height: 1; }
.rno small { display: block; font-family: var(--jp); font-size: .62rem; letter-spacing: .28em; color: var(--mute); margin-top: 10px; }
.rbody h3 { font-family: var(--min); font-weight: 600; font-size: 1.22rem; letter-spacing: .04em; margin-bottom: 12px; color: var(--ink); line-height: 1.6; }
.rbody p { color: #5f5651; font-size: .95rem; max-width: 46em; line-height: 2; }

/* =========================================================
   会員の声（顔写真なし・モノグラム）
   ========================================================= */
.voice { background: var(--cream); max-width: none; }
.voice > * { max-width: var(--maxw); margin-inline: auto; }
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.voice-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 34px 34px 32px; transition: transform .4s, box-shadow .4s;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(107,56,63,.1); }
.vc-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.monogram {
  width: 58px; height: 58px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(150deg, #a15f66, var(--rose));
  color: #fbeee9; display: flex; align-items: center; justify-content: center;
  font-family: var(--en); font-size: 1.15rem; font-weight: 600; letter-spacing: .04em;
  box-shadow: 0 6px 16px rgba(107,56,63,.2);
}
.vc-who { font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.5; }
.vc-who small { display: block; font-size: .78rem; font-weight: 400; color: var(--brass); letter-spacing: .04em; margin-top: 2px; }
.vc-text { font-size: .92rem; color: #5f5651; line-height: 1.95; position: relative; padding-left: 4px; }
.vc-text::before {
  content: '\201C'; font-family: var(--en); font-size: 2.4rem; color: rgba(176,138,79,.35);
  position: absolute; left: -4px; top: -18px; line-height: 1;
}

/* =========================================================
   ご入会の流れ
   ========================================================= */
.flow-steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; counter-reset: none; }
.step { position: relative; padding-top: 26px; }
.step::before { content: ''; position: absolute; top: 0; left: 0; right: -26px; height: 2px; background: var(--line); }
.step:last-child::before { right: 0; }
.step::after { content: ''; position: absolute; top: -5px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px rgba(176,138,79,.18); }
.step .sno { font-family: var(--en); font-size: .82rem; letter-spacing: .18em; color: var(--brass); font-weight: 600; }
.step h3 { font-family: var(--min); font-weight: 600; font-size: 1.02rem; letter-spacing: .03em; margin: 10px 0 8px; color: var(--ink); line-height: 1.5; }
.step p { font-size: .84rem; color: var(--mute); line-height: 1.8; }

/* =========================================================
   活動フロー（帯・ダーク）
   ========================================================= */
.journey { background: var(--rose-deep); color: #f6ece7; position: relative; overflow: hidden; }
.journey::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(680px 420px at 82% 8%, rgba(203,171,119,.16), transparent 60%);
}
.journey-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 100px 6vw; }
.journey-line { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 56px; }
.jstep { text-align: center; position: relative; padding-top: 44px; }
.jstep::before { content: ''; position: absolute; top: 15px; left: 50%; right: -50%; height: 1px; background: rgba(246,236,231,.22); }
.jstep:last-child::before { display: none; }
.jstep .jno {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--paper); color: var(--rose-deep);
  font-family: var(--en); font-weight: 600; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.jstep.goal .jno { background: var(--brass); color: #fff; box-shadow: 0 0 0 6px rgba(203,171,119,.25); }
.jstep h3 { font-family: var(--min); font-weight: 600; font-size: 1.06rem; letter-spacing: .04em; }
.jstep.goal h3 { color: var(--brass-soft); }
.jstep p { font-size: .8rem; color: #e0cbc5; margin-top: 6px; line-height: 1.7; }

/* =========================================================
   実績・受賞
   ========================================================= */
.result-row { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(36px, 6vw, 76px); align-items: center; }
.result-award {
  background: linear-gradient(158deg, #fbf7f1, #f1e5d8);
  border: 1px solid var(--line); border-radius: 16px; padding: 46px 38px; text-align: center;
}
.award-icon { width: 96px; height: auto; margin: 0 auto 22px; }
.aw-circle { fill: none; stroke: var(--brass); stroke-width: 3; }
.aw-star { fill: var(--brass); }
.aw-ribbon { fill: none; stroke: var(--rose); stroke-width: 3; stroke-linejoin: round; }
.award-name { font-family: var(--min); font-weight: 700; font-size: 1.34rem; color: var(--rose); letter-spacing: .04em; }
.award-sub { font-size: .86rem; color: var(--mute); margin-top: 10px; line-height: 1.8; }
.result-text p { margin-top: 20px; color: #5f5651; font-size: .96rem; line-height: 2; }
.result-quote {
  margin-top: 30px; background: var(--cream); border-left: 3px solid var(--brass);
  border-radius: 0 10px 10px 0; padding: 24px 28px;
}
.result-quote p { margin-top: 0; font-size: .92rem; color: var(--ink); font-style: normal; }
.rq-who { display: block; margin-top: 12px; font-size: .8rem; color: var(--brass); letter-spacing: .04em; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 900px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-of-type { border-top: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; gap: 18px;
  padding: 24px 6px; font-size: .98rem; font-weight: 500; letter-spacing: .02em; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .q { font-family: var(--en); color: var(--brass); font-size: 1.2rem; font-weight: 600; flex-shrink: 0; }
.faq-list summary .toggle { margin-left: auto; width: 13px; height: 13px; position: relative; flex-shrink: 0; }
.faq-list summary .toggle::before, .faq-list summary .toggle::after { content: ''; position: absolute; background: var(--brass); transition: transform .35s; }
.faq-list summary .toggle::before { left: 0; right: 0; top: 5.5px; height: 2px; }
.faq-list summary .toggle::after { top: 0; bottom: 0; left: 5.5px; width: 2px; }
.faq-list details[open] summary .toggle::after { transform: scaleY(0); }
.faq-list .a { display: flex; gap: 18px; padding: 0 6px 26px; color: #5f5651; font-size: .9rem; line-height: 1.95; }
.faq-list .a .mark { font-family: var(--en); color: var(--rose); font-size: 1.2rem; font-weight: 600; flex-shrink: 0; }

/* =========================================================
   CTA
   ========================================================= */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  color: #fbeee9;
  background:
    radial-gradient(560px 340px at 50% 0%, rgba(203,171,119,.22), transparent 65%),
    linear-gradient(160deg, #7a4048, var(--rose-deep));
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 108px 6vw; }
.cta-band h2 { font-family: var(--min); font-weight: 700; font-size: clamp(1.5rem, 3.2vw, 2.15rem); line-height: 1.75; letter-spacing: .05em; margin-top: 18px; }
.cta-lead { margin-top: 22px; color: #e8d1cb; font-size: .96rem; line-height: 2; }
.cta-actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   フッター
   ========================================================= */
footer { background: #2f2724; color: #b3a49d; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 60px 6vw 40px; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-logo { color: #f3ebe0; }
.foot-logo small { color: var(--brass-soft); }
.foot-tag { font-size: .84rem; margin-top: 14px; max-width: 26em; line-height: 1.8; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 12px 26px; align-content: flex-start; max-width: 420px; }
.foot-nav a { font-size: .84rem; letter-spacing: .04em; }
.foot-nav a:hover { color: var(--brass-soft); }
.foot-demo { max-width: var(--maxw); margin: 0 auto; padding: 0 6vw 30px; font-size: .74rem; color: #8a7c75; line-height: 1.8; border-top: 1px solid rgba(179,164,157,.14); padding-top: 26px; }
.copy { text-align: center; padding: 0 6vw 34px; font-family: var(--en); font-size: .7rem; letter-spacing: .26em; color: #6e625c; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1000px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .stat:nth-child(-n+2) { padding-bottom: 22px; }
  .stat:nth-child(3)::before, .stat:nth-child(1)::before { display: none; }
}

@media (max-width: 880px) {
  nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding: 132px 6vw 90px; gap: 44px; }
  /* SPではコピー→CTAを先に見せる（リングカードは下へ） */
  .ring-card { width: min(300px, 100%); }
  .hero-scroll { display: none; }
  .about-row { grid-template-columns: 1fr; }
  .result-row { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .voice-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 34px 26px; }
  .step:nth-child(odd)::before { right: -26px; }
  .step:nth-child(even)::before, .step:last-child::before { right: 0; }
  .journey-line { grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
  .jstep { text-align: left; padding: 20px 0 20px 52px; }
  .jstep::before { top: 44px; bottom: -20px; left: 15px; right: auto; width: 1px; height: auto; }
  .jstep:last-child::before { display: none; }
  .jstep .jno { left: 0; transform: none; top: 18px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .section { padding: 76px 6vw; }
  .demo-ribbon { font-size: .68rem; }
  .stats-inner { grid-template-columns: 1fr; gap: 26px; }
  .stat + .stat::before { display: none; }
  .stat { padding-bottom: 22px; border-bottom: 1px solid rgba(246,236,231,.14); }
  .stat:last-child { border-bottom: none; padding-bottom: 8px; }
  .reason-row { grid-template-columns: 1fr; gap: 8px; padding: 36px 0; }
  .rno { font-size: 2.4rem; }
  .flow-steps { grid-template-columns: 1fr; gap: 0; }
  .step { padding: 18px 0 18px 34px; }
  .step::before { top: 24px; bottom: -18px; left: 5px; right: auto; width: 2px; height: auto; }
  .step:last-child::before { display: none; }
  .step::after { top: 22px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .plan-card, .voice-card { padding: 32px 26px; }
  .empathy { padding-block: 88px; }
}

/* アクセシビリティ：動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero-scroll .bar::after { animation: none; }
  * { scroll-behavior: auto; }
}
