/* =================================================================
   協賛婚 先行登録LP — style.css
   方針：アイボリー × シャンパンゴールド × エスプレッソ
   モバイルファースト・角丸・余白広め・可読性重視（Noto Sans JP）
   ================================================================= */

:root {
  /* カラー（淡いピンク × 白 × モカブラウン × 金箔／ブライダル） */
  --bg:          #ffffff;
  --bg-soft:     #fdf4f6;   /* 淡いピンク（セクション交互） */
  --bg-pink:     #fceef1;   /* ピンクのパネル */
  --accent:      #c9a86a;   /* 金箔ゴールド（線・装飾・focus） */
  --accent-dark: #7e6452;   /* モカブラウン（見出し・強調テキスト） */
  --accent-soft: #e6d3b2;   /* 淡いゴールド */
  --rose:        #d87e98;   /* ローズ（CTA・主要ボタン） */
  --rose-dark:   #c45e7d;   /* 濃いローズ（金額・強調・ホバー） */
  --rose-soft:   #f4dfe3;   /* 淡いローズ（枠線） */
  --text:        #6e5c52;   /* 本文（ウォームブラウングレー） */
  --text-muted:  #8a7468;   /* ミュート */
  --note:        #9a8478;   /* 注記・細字 */
  --line:        #f1dde1;   /* 罫線（ピンク寄り） */
  --white:       #ffffff;

  /* レイアウト（やわらかい：角は丸め・余白広め） */
  --maxw:        1080px;
  --maxw-narrow: 720px;
  --radius:      18px;
  --radius-sm:   14px;
  --blush:       #d7a59c;   /* くすみピンク（差し色・少量使用） */
  --blush-soft:  #f5e7e3;   /* 淡いブラッシュ（背景アクセント） */
  --shadow:      0 12px 34px rgba(196, 94, 125, 0.13);
  --shadow-soft: 0 4px 18px rgba(196, 94, 125, 0.08);

  --font: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
          "Hiragino Sans", Meiryo, sans-serif;
  --font-serif: "Klee One", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-dark); text-underline-offset: 2px; }
h1, h2, h3 {
  line-height: 1.5; margin: 0;
  font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.04em;
  color: var(--accent-dark);
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- レイアウト土台 ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 20px;
}
.container.narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }
.sp-only { display: inline; }

.section { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }

.section-title {
  font-size: clamp(20px, 5.4vw, 28px);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.section-sub { color: var(--text-muted); margin-bottom: 28px; }
.pc-only { display: none; }

/* 英字サブ見出し（B）＋ 金の装飾線（C） */
.section-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px; font-weight: 600; font-style: italic;
  letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 6px;
}
.section-eyebrow.center { text-align: center; }
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 0 0 26px;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: 48px;
  background: linear-gradient(to right, transparent, var(--accent-soft));
}
.ornament::after { background: linear-gradient(to left, transparent, var(--accent-soft)); }
.ornament i {
  flex: 0 0 auto; width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23deb0bd'%3E%3Cellipse cx='12' cy='5.5' rx='3' ry='4.5'/%3E%3Cellipse cx='12' cy='18.5' rx='3' ry='4.5'/%3E%3Cellipse cx='5.5' cy='12' rx='4.5' ry='3'/%3E%3Cellipse cx='18.5' cy='12' rx='4.5' ry='3'/%3E%3C/g%3E%3Ccircle cx='12' cy='12' r='3.2' fill='%23c9a86a'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* =================================================================
   ヘッダー
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: #fef9f9;
  border-bottom: 1px solid #f1dde1;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 58px;
  gap: 12px;
}
.logo { font-family: var(--font-serif); font-weight: 600; font-size: 20px; letter-spacing: 0.12em; color: var(--accent-dark); text-decoration: none; }
.logo img { height: 28px; width: auto; }
.badge {
  font-size: 11px; font-weight: 500;
  padding: 4px 12px; border-radius: 999px; white-space: nowrap;
  letter-spacing: 0.04em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.badge--prep {
  background: #fdf5f6; color: #a88066;
  border: 1px solid #e6d3b2;
}

/* =================================================================
   ① ヒーロー
   ================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 242, 232, 0.08) 0%, rgba(247, 242, 232, 0.76) 220px, var(--bg-soft) 330px, var(--bg) 100%),
    url("assets/hero-wedding-luxury.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 330px;
  padding: 230px 0 44px;
}
.hero-inner { display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 1; }
.hero-copy { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  align-self: flex-start;
  font-family: var(--font-serif);
  font-size: 13px; font-weight: 700; color: var(--accent-dark);
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(176, 144, 79, 0.28);
  padding: 4px 12px;
  border-radius: 999px;
}
.hero-eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.hero-title {
  font-size: clamp(34px, 8.4vw, 64px);
  line-height: 1.28; letter-spacing: 0.03em;
  margin: 4px 0 10px;
  color: var(--text);
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}
.hero-lead-main {
  font-family: var(--font-serif);
  font-size: clamp(17px, 4.8vw, 23px);
  font-weight: 600; color: var(--accent-dark); line-height: 1.7;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.78);
  overflow-wrap: anywhere;
}
.hero-sub { color: var(--text-muted); font-size: 15px; }
.hero-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 4px;
  width: 100%;
}
.hero-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(176, 144, 79, 0.28);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  box-shadow: 0 8px 24px rgba(60, 50, 30, 0.08);
  backdrop-filter: blur(8px);
  min-width: 0;
}
.hero-benefit-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: var(--bg-pink);
  color: transparent;
  font-family: var(--font-serif);
  font-size: 0;
  font-weight: 700;
  line-height: 1;
}
.hero-benefit-icon::after {
  content: attr(data-icon);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.hero-benefit p { line-height: 1.5; min-width: 0; }
.hero-benefit strong {
  display: block;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}
.hero-benefit span {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 12.5px;
  overflow-wrap: anywhere;
}
.hero-note {
  font-size: 12.5px; color: var(--text-muted); line-height: 1.7;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(176, 144, 79, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  backdrop-filter: blur(8px);
}
.hero-visual {
  order: -1; /* モバイルは画像を上に */
  border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

/* CTAブロック */
.cta-block {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.cta-subnote {
  margin-top: 2px; font-size: 12px; color: var(--text-muted); line-height: 1.7;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.8);
}

/* =================================================================
   ボタン
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; text-align: center; text-decoration: none;
  font-weight: 600; font-family: inherit; cursor: pointer;
  letter-spacing: 0.06em;
  border-radius: 999px; border: 1.5px solid transparent;
  padding: 15px 28px; font-size: 16px; line-height: 1.4;
  transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }
.btn--primary {
  background: var(--rose); color: #fff;
  border-color: rgba(201, 168, 106, 0.45);
  box-shadow: 0 8px 22px rgba(216, 126, 152, 0.28);
}
.btn--primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }
.btn--outline {
  background: #fff; color: var(--accent-dark);
  border-color: var(--accent-soft);
}
.btn--outline:hover { background: var(--bg-pink); }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: .6; cursor: not-allowed; transform: none; box-shadow: none;
}

/* =================================================================
   ② 共感
   ================================================================= */
.empathy-lead {
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto 24px;
  font-size: 15.5px;
}
.empathy-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.empathy-list li {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}
.empathy-list strong {
  display: block; color: var(--accent-dark); margin-bottom: 4px; font-size: 15.5px;
}
.empathy-close {
  margin-top: 8px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--accent-dark);
}

/* =================================================================
   ③ 仕組み（3ステップ）
   ================================================================= */
.steps { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.solution-intro {
  max-width: var(--maxw-narrow);
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text);
  font-weight: 500;
}
.solution-intro p + p { margin-top: 14px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-soft);
}
.step-num {
  flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-dark); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 600; font-size: 19px;
}
.step-title { font-size: 17px; margin-bottom: 6px; color: var(--accent-dark); }
.step-body p { color: var(--text-muted); font-size: 15px; }
.step-body p + p { margin-top: 8px; }

.proof-box {
  max-width: var(--maxw-narrow);
  margin: 24px auto 0;
  padding: 22px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.proof-box h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--accent-dark);
  text-align: center;
}
.proof-box p {
  color: var(--text-muted);
  font-size: 14.5px;
}
.proof-box p + p { margin-top: 10px; }

.fineprint {
  margin-top: 22px; font-size: 12.5px; color: var(--note); line-height: 1.75;
  background: var(--bg-soft); border-radius: var(--radius-sm); padding: 14px 16px;
}

/* =================================================================
   ④ メリット
   ================================================================= */
.merit-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 8px;
}
.merit-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; box-shadow: var(--shadow-soft);
}
.merit-icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg-pink); color: var(--accent-dark);
  font-size: 20px; margin-bottom: 12px;
}
.merit-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.merit-card p { color: var(--text-muted); font-size: 14.5px; }
.offer-note {
  margin-top: 18px;
  text-align: center;
  color: var(--note);
  font-size: 12.5px;
  line-height: 1.7;
}

/* =================================================================
   N：先行案内の限定性
   ================================================================= */
.priority-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
}
.priority-list {
  display: grid;
  gap: 16px;
}
.priority-list li {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  position: relative;
}
.priority-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
}
.priority-list strong {
  color: var(--accent-dark);
  font-family: var(--font-serif);
  font-size: 16px;
}
.priority-list span {
  color: var(--text-muted);
  font-size: 14.5px;
}
.priority-note {
  margin-top: 16px;
  color: var(--note);
  font-size: 12.5px;
  line-height: 1.7;
}

/* =================================================================
   ⑤ FAQ
   ================================================================= */
.faq { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.faq-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 48px 18px 20px; position: relative;
  font-weight: 600; font-size: 15.5px; color: var(--accent-dark);
  font-family: var(--font-serif);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); color: var(--accent); font-weight: 700;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-a { padding: 0 20px 18px; }
.faq-a p { color: var(--text-muted); font-size: 14.5px; }

/* =================================================================
   ⑥ 安心材料
   ================================================================= */
.trust-list {
  display: flex; flex-direction: column; gap: 12px; margin-top: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-soft);
}
.trust-list li { font-size: 14.5px; color: var(--text-muted); padding-left: 18px; position: relative; }
.trust-list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-soft);
}
.trust-list strong { color: var(--text); font-weight: 700; }

/* =================================================================
   ⑦ 最終CTA
   ================================================================= */
.final-cta {
  background:
    radial-gradient(800px 380px at 50% 120%, var(--bg-pink) 0%, rgba(252,238,240,0) 70%),
    var(--bg-soft);
}
.final-cta-title { font-size: clamp(21px, 6vw, 30px); margin-bottom: 14px; line-height: 1.5; }
.final-cta-lead { color: var(--text-muted); margin-bottom: 26px; font-size: 15.5px; }
.final-cta-note {
  margin-top: 14px;
  color: var(--note);
  font-size: 12.5px;
  line-height: 1.7;
}

/* =================================================================
   ⑧ フォーム
   ================================================================= */
.section--form { background: var(--bg-soft); }
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px 22px;
}
.form-lead { color: var(--text-muted); font-size: 14.5px; margin-bottom: 24px; }

.field { margin-bottom: 18px; }
.field label {
  display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 8px;
}
.req { color: #fff; background: var(--accent); font-size: 11px; font-weight: 700;
       padding: 2px 8px; border-radius: 999px; margin-left: 6px; vertical-align: 2px; }
.opt { color: var(--text-muted); background: var(--line); font-size: 11px; font-weight: 500;
       padding: 2px 8px; border-radius: 999px; margin-left: 6px; vertical-align: 2px; }

.field input[type="email"],
.field input[type="text"],
.field select {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--text);
  padding: 14px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; appearance: none; -webkit-appearance: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a6d30' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 144, 79, 0.18);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
}
.field-err { color: #c9302c; font-size: 12.5px; margin-top: 6px; }

/* チェックボックス */
.field--checkbox { margin-top: 6px; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; cursor: pointer; }
.checkbox input { width: 22px; height: 22px; margin: 0; flex: 0 0 auto; accent-color: var(--accent); }
.checkbox span { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

.form-foot-note { text-align: center; color: var(--note); font-size: 12px; margin-top: 12px; }
.form-error {
  margin-top: 16px; background: #fdecea; color: #c0392b;
  border-radius: var(--radius-sm); padding: 12px 14px; font-size: 13.5px; text-align: center;
}

/* =================================================================
   サンキュー
   ================================================================= */
.thanks { padding: 72px 0; background:
    radial-gradient(700px 360px at 50% -10%, var(--bg-pink) 0%, rgba(252,238,240,0) 70%), var(--bg); }
.thanks-check {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 38px;
  display: grid; place-items: center;
}
.thanks-title { font-size: clamp(22px, 6vw, 30px); margin-bottom: 16px; }
.thanks-lead { color: var(--text-muted); margin-bottom: 36px; }
.thanks-survey {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-soft);
}
.thanks-survey h3 { font-size: 17px; margin-bottom: 8px; }
.thanks-survey p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 18px; }
.thanks-survey iframe { border-radius: var(--radius-sm); margin-top: 8px; }

/* =================================================================
   フッター
   ================================================================= */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 36px 0 calc(36px + env(safe-area-inset-bottom)); }
.footer-brand { font-weight: 700; font-size: 18px; color: var(--accent-dark); margin-bottom: 10px; }
.footer-note { font-size: 12px; color: var(--note); line-height: 1.75; margin-bottom: 16px; }
.footer-links { font-size: 13.5px; margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-links span { color: var(--line); margin: 0 8px; }
.footer-copy { font-size: 12px; color: var(--note); }

/* =================================================================
   スクロール追従CTA（モバイル）
   ================================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { box-shadow: 0 6px 18px rgba(138, 109, 48, 0.28); }

/* =================================================================
   レスポンシブ（PC）
   ================================================================= */
@media (min-width: 768px) {
  body { font-size: 16.5px; }
  .sp-only { display: none; }
  .pc-only { display: inline; }
  .section { padding: 96px 0; }

  /* ヒーローを2カラムに */
  .hero {
    min-height: calc(100vh - 58px);
    display: flex;
    align-items: center;
    background:
      linear-gradient(90deg, rgba(247, 242, 232, 0.98) 0%, rgba(247, 242, 232, 0.9) 35%, rgba(247, 242, 232, 0.48) 58%, rgba(247, 242, 232, 0.08) 100%),
      linear-gradient(180deg, rgba(44, 39, 35, 0.08) 0%, rgba(44, 39, 35, 0.02) 42%, rgba(44, 39, 35, 0.22) 100%),
      url("assets/hero-wedding-luxury.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 72px 0 76px;
  }
  .hero-inner {
    flex-direction: row; align-items: center; gap: 48px;
  }
  .hero-copy { flex: 0 1 660px; }
  .hero-visual { order: 0; flex: 0 0 42%; max-width: 460px; }
  .hero-benefits { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cta-block { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .cta-block .btn { min-width: 320px; }
  .cta-subnote { flex-basis: 100%; }

  .empathy-list { gap: 18px; }
  .merit-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .solution-intro { margin-bottom: 34px; }
  .steps { gap: 20px; }
  .step { padding: 26px 26px; }
  .proof-box { padding: 28px 32px; }
  .priority-box { padding: 28px 32px; }

  .form-card { padding: 40px 44px; }

  /* PCでは追従CTAを出さない（画面内CTAで十分） */
  .sticky-cta { display: none; }
}

@media (min-width: 1024px) {
  .merit-grid { grid-template-columns: repeat(4, 1fr); }
}

/* モバイルで追従CTA分の余白を確保 */
@media (max-width: 767px) {
  body.has-sticky { padding-bottom: 84px; }
  .header-inner { justify-content: flex-start; padding-inline: 20px; }
  .logo { flex: 0 0 auto; }
  .badge { max-width: 190px; margin-left: 12px; }
  .hero {
    min-height: calc(100svh - 58px);
    background:
      linear-gradient(180deg, rgba(247, 242, 232, 0.04) 0%, rgba(247, 242, 232, 0.12) 20%, rgba(247, 242, 232, 0.82) 39%, rgba(247, 242, 232, 0.96) 100%),
      url("assets/hero-wedding-mobile.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: clamp(150px, 23vh, 190px) 0 18px;
  }
  .hero-inner { gap: 0; }
  .hero-copy { width: calc(100vw - 40px); max-width: calc(100vw - 40px); }
  .hero-eyebrow {
    font-size: 11.5px;
    gap: 9px;
    padding: 3px 11px;
    letter-spacing: 0.04em;
  }
  .hero-eyebrow::before { width: 18px; }
  .hero-title {
    font-size: clamp(30px, 9.4vw, 36px);
    line-height: 1.2;
    margin: 8px 0 7px;
  }
  .hero-lead-main {
    font-size: clamp(13.5px, 4.05vw, 15.5px);
    line-height: 1.48;
    word-break: normal;
  }
  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 10px 0 4px;
    max-width: 340px;
  }
  .hero-benefit {
    display: flex;
    gap: 7px;
    padding: 8px 8px;
  }
  .hero-benefit-icon { width: 22px; height: 22px; font-size: 11px; }
  .hero-benefit-icon::after { font-size: 11px; }
  .hero-benefit strong { font-size: 11.5px; line-height: 1.26; word-break: break-all; }
  .hero-benefit span { font-size: 9.5px; line-height: 1.3; word-break: break-all; }
  .hero-note { margin-top: 7px; font-size: 10px; line-height: 1.45; padding: 8px 9px; }
  .cta-block { margin-top: 8px; gap: 8px; }
  .btn { padding: 13px 18px; font-size: 14px; }
  .btn--lg { padding: 14px 20px; font-size: 14.5px; }
  .hero .btn { width: 100%; }
  .cta-subnote { font-size: 10.5px; line-height: 1.55; }
}

/* =================================================================
   スクロール連動の出現演出（A1: scrollReveal）
   JSが <html> に .js-reveal を付与し、対象に .reveal-init→.reveal-in を切替。
   ヒーローは対象外（FVは別途A2で演出）。
   ================================================================= */
.js-reveal .reveal-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}
.js-reveal .reveal-init.reveal-in {
  opacity: 1;
  transform: none;
}

/* =================================================================
   ファーストビューの段階表示（A2: heroRise）
   ページ表示時にコピーを順に立ち上げる（CSSのみ・JS不要）
   ================================================================= */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero-eyebrow, .hero-title, .hero-lead-main, .hero-benefits, .cta-block {
  animation: heroRise .8s cubic-bezier(.2, .7, .2, 1) both;
}
.hero-eyebrow   { animation-delay: .05s; }
.hero-title     { animation-delay: .18s; }
.hero-lead-main { animation-delay: .34s; }
.hero-benefits  { animation-delay: .50s; }
.cta-block      { animation-delay: .66s; }

/* アクセシビリティ：モーション軽減 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  /* 出現演出・段階表示は無効化し、必ず表示状態にする（消えたまま事故の防止） */
  .reveal-init { opacity: 1 !important; transform: none !important; }
}

/* =================================================================
   LINEボタン
   ================================================================= */
.btn--line {
  background: #06C755; color: #fff;
  box-shadow: 0 8px 22px rgba(6, 199, 85, 0.30);
}
.btn--line:hover { background: #05b14b; transform: translateY(-1px); }
.btn--line:active { transform: translateY(0); }
.line-ico {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; letter-spacing: 0.02em;
  background: #fff; color: #06C755; border-radius: 6px;
  padding: 2px 6px; line-height: 1;
}

/* =================================================================
   査定シミュレーター
   ================================================================= */
.sim { padding-top: 40px; }
.sim-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 22px;
}
.sim-title {
  font-size: clamp(22px, 6vw, 30px);
  text-align: center; letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.sim-sub { text-align: center; color: var(--text-muted); margin-bottom: 24px; }

.sim-form { display: grid; gap: 16px; }
.sim-field { display: grid; gap: 6px; }
.sim-field label { font-size: 14px; font-weight: 700; color: var(--text); }
.sim-field .opt {
  font-size: 11px; font-weight: 500; color: var(--note);
  border: 1px solid var(--line); border-radius: 999px; padding: 1px 8px; margin-left: 6px;
}
.sim-field input[type="number"],
.sim-field input[type="text"],
.sim-field select {
  width: 100%; padding: 13px 14px; font-size: 16px; font-family: inherit;
  color: var(--text); background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  -webkit-appearance: none; appearance: none; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.sim-field input:focus,
.sim-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 144, 79, 0.16);
}
.sim-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a6d30' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px;
}
.sim-guests-wrap { display: flex; align-items: center; gap: 10px; }
.sim-guests-wrap input { flex: 1; }
.sim-unit { font-size: 15px; color: var(--text-muted); font-weight: 700; }
.sim-form .btn { margin-top: 6px; }

/* ---------- 結果 ---------- */
.sim-result {
  margin-top: 26px; padding-top: 26px;
  border-top: 1px dashed var(--line);
  animation: simFade .4s ease both;
}
@keyframes simFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.sim-result-label { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.sim-amount {
  text-align: center; color: var(--accent-dark);
  font-size: clamp(30px, 9vw, 46px); font-weight: 700; line-height: 1.2;
  margin-bottom: 18px;
}
.sim-amount .sim-man { font-size: 0.5em; font-weight: 700; }

.sim-compare {
  background: var(--bg-pink); border-radius: var(--radius-sm);
  padding: 14px 16px; display: grid; gap: 10px; margin-bottom: 16px;
}
.sim-compare-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 14px; }
.sim-compare-row span { color: var(--text-muted); }
.sim-compare-row strong { font-size: 18px; white-space: nowrap; }
.sim-compare-row--accent strong { color: var(--accent-dark); }

.sim-message { text-align: center; font-size: 16px; margin-bottom: 12px; }
.sim-message strong { color: var(--accent-dark); }
.sim-note { font-size: 12px; line-height: 1.7; color: var(--note); margin-bottom: 22px; }
.sim-note a { color: var(--note); text-decoration: underline; }

.sim-cta {
  background: var(--bg-soft); border-radius: var(--radius-sm);
  padding: 20px 18px; text-align: center;
}
.sim-cta-lead { font-weight: 700; margin-bottom: 12px; }
.sim-cta-points {
  text-align: left; margin: 14px auto 0; max-width: 360px;
  display: grid; gap: 8px;
}
.sim-cta-points li { position: relative; padding-left: 24px; font-size: 14px; color: var(--text); }
.sim-cta-points li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: #06C755; font-weight: 800;
}
.sim-survey-link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; color: var(--text-muted); text-decoration: underline;
}

/* =================================================================
   ポップアップ
   ================================================================= */
.sim-pop {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; transition: opacity .25s ease;
}
/* hidden属性の時は完全に非表示（透明なまま最前面に残りクリックを奪うのを防ぐ） */
.sim-pop[hidden] { display: none; }
.sim-pop.is-open { opacity: 1; }
.sim-pop-backdrop { position: absolute; inset: 0; background: rgba(40, 30, 35, 0.5); }
.sim-pop-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(40, 30, 35, 0.3);
  padding: 30px 24px 26px; width: 100%; max-width: 400px; text-align: center;
  transform: translateY(14px) scale(0.98); transition: transform .25s ease;
}
.sim-pop.is-open .sim-pop-card { transform: none; }
.sim-pop-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--note); padding: 6px 10px;
}
.sim-pop-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--accent-dark);
  background: var(--bg-pink); border-radius: 999px; padding: 4px 12px; margin-bottom: 12px;
}
.sim-pop-title { font-size: clamp(22px, 6.5vw, 28px); line-height: 1.4; margin-bottom: 10px; }
.sim-pop-text { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }

@media (min-width: 768px) {
  .sim-card { padding: 40px 44px; }
  .sim-form {
    grid-template-columns: 1fr 1fr;
  }
  .sim-form .sim-field:nth-child(5),  /* 式場名 */
  .sim-form .btn { grid-column: 1 / -1; }
}

/* =================================================================
   協賛企業（準備中の枠）— A4
   ================================================================= */
.sponsor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 8px; }
.sponsor-slot {
  display: grid; place-items: center; aspect-ratio: 3 / 2;
  background: #fff; border: 1px dashed var(--accent-soft);
  border-radius: var(--radius); color: var(--note);
}
.sponsor-slot span {
  font-family: var(--font-serif); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; text-align: center;
}
.sponsor-note { margin-top: 16px; text-align: center; color: var(--note); font-size: 12.5px; }
@media (min-width: 768px) {
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* =================================================================
   お問い合わせ・サポート窓口 — A5
   ================================================================= */
.support-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 8px; }
.support-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 24px 22px; text-align: center;
  display: flex; flex-direction: column; gap: 8px;
}
.support-card h3 { font-size: 16.5px; color: var(--accent-dark); }
.support-card p { color: var(--text-muted); font-size: 14px; flex: 1 0 auto; }
.support-card .btn { margin-top: 8px; }
.support-ico {
  align-self: center; display: inline-flex; align-items: center; justify-content: center;
  min-width: 52px; height: 30px; padding: 0 12px; border-radius: 999px;
  background: #06C755; color: #fff; font-weight: 800; font-size: 12px; letter-spacing: 0.02em;
}
.support-ico--mail { background: var(--accent-dark); font-size: 16px; min-width: 40px; }
.support-phone { margin-top: 16px; text-align: center; color: var(--note); font-size: 12.5px; line-height: 1.7; }
@media (min-width: 768px) {
  .support-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* =================================================================
   FAQ末尾のLINE相談導線（目的別ナビをFAQへ統合）
   ================================================================= */
.faq-foot { margin-top: 22px; display: grid; justify-items: center; gap: 12px; text-align: center; }
.faq-foot-text { color: var(--text-muted); font-size: 14px; }
.faq-foot .btn { min-width: 260px; }

/* お問い合わせ窓口：LINEのみ（中央寄せ） */
.support-grid--single { max-width: 420px; margin-inline: auto; }
@media (min-width: 768px) {
  .support-grid--single { grid-template-columns: 1fr; }
}

/* =================================================================
   花のあしらい（ボディ装飾）
   ・#rose/#leaf/#baby を各セクション・カードの角に配置
   ・.has-floral は overflow:hidden で角からのぞかせる／本文は前面
   ================================================================= */
.floral { position: absolute; z-index: 0; pointer-events: none; line-height: 0; opacity: .9; }
.floral svg { display: block; width: 100%; height: 100%; }
.floral--lg { width: 86px; height: 86px; }
.floral--md { width: 58px; height: 58px; }
.floral--sm { width: 38px; height: 38px; }
.floral--tl { left: -14px; top: -14px; transform: rotate(-15deg); }
.floral--tr { right: -14px; top: -12px; transform: rotate(16deg); }
.floral--bl { left: -14px; bottom: -14px; transform: rotate(22deg); }
.floral--br { right: -14px; bottom: -14px; transform: rotate(-16deg); }

.has-floral { position: relative; overflow: hidden; }
.has-floral > .container { position: relative; z-index: 1; }

.sim-card { position: relative; overflow: hidden; }
.sim-card > :not(.floral):not(.petals) { position: relative; z-index: 1; }

@media (min-width: 768px) {
  .floral--lg { width: 112px; height: 112px; }
  .floral--md { width: 74px; height: 74px; }
  .floral--sm { width: 48px; height: 48px; }
}

/* =================================================================
   試算ボタンの指輪モチーフ（💍）
   ================================================================= */
.btn-ring { width: 1.3em; height: 1.3em; flex: 0 0 auto; }

/* =================================================================
   協賛金ガチャ風リビール演出
   ・シャッフル（is-rolling）→ 最終額をポンッと表示（is-revealed）
   ・モーション軽減時はJS側で即表示（演出スキップ）
   ================================================================= */
.sim-rolling-note {
  text-align: center; font-size: 13px; font-weight: 500;
  color: var(--rose-dark); letter-spacing: .06em;
  min-height: 1.3em; margin-bottom: 8px;
}
#sim-result .sim-amount { color: var(--rose-dark); font-variant-numeric: tabular-nums; position: relative; }
.sim-amount-inner {
  display: inline-block; position: relative;
  transform-origin: center; will-change: transform, opacity;
}
/* 花束を束ねている間は金額を隠す（レイアウト高さは保持してスクロール位置を安定させる） */
#sim-result.is-rolling .sim-amount-inner { opacity: 0; }

#sim-result .sim-compare,
#sim-result .sim-message,
#sim-result .sim-note,
#sim-result .sim-cta { transition: opacity .5s ease, transform .5s ease; }
#sim-result.is-rolling .sim-compare,
#sim-result.is-rolling .sim-message,
#sim-result.is-rolling .sim-note,
#sim-result.is-rolling .sim-cta { opacity: 0; transform: translateY(10px); pointer-events: none; }
#sim-result.is-revealed .sim-compare { transition-delay: .04s; }
#sim-result.is-revealed .sim-message { transition-delay: .14s; }
#sim-result.is-revealed .sim-note    { transition-delay: .22s; }
#sim-result.is-revealed .sim-cta     { transition-delay: .30s; }

/* ④ 金額の「ボンッ」 */
@keyframes simPop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.14); opacity: 1; } 100% { transform: scale(1); } }
#sim-result.is-revealed .sim-amount-inner { animation: simPop .56s cubic-bezier(.2, .9, .25, 1.3) both; }
/* 安全策：pop完了後（またはアニメが動かない端末でも）金額を確実に表示する */
#sim-result.is-revealed.bq-done .sim-amount-inner { animation: none; opacity: 1; transform: none; }

#sim-result.is-revealed .sim-amount-inner::before,
#sim-result.is-revealed .sim-amount-inner::after {
  content: "\2726"; position: absolute; color: var(--accent);
  font-size: .36em; opacity: 0;
}
#sim-result.is-revealed .sim-amount-inner::before { left: -10%; top: -6%; animation: simSpark .9s ease-out .12s both; }
#sim-result.is-revealed .sim-amount-inner::after  { right: -10%; bottom: 0%; animation: simSpark .9s ease-out .34s both; }
@keyframes simSpark {
  0% { opacity: 0; transform: scale(.4) rotate(0); }
  50% { opacity: 1; transform: scale(1.2) rotate(18deg); }
  100% { opacity: 0; transform: scale(.7) rotate(36deg); }
}

/* =================================================================
   花束バースト・シネマ演出（協賛金リビール／全画面・光あり）
   花が画面の四方から中央へ集まる → 開花（ため）→ 豪華に弾ける＋光 → 金額
   ・各シーンは #wedding-cine の状態クラスで切替（s-gather→s-bloom→s-burst→s-reveal→s-done）
   ・花の動きはJSのWAAPI、光と金額はCSS。シーン送りはsetTimeoutなので
     アニメ非対応端末でも最終状態に到達し、閉じるとインライン結果へ
   ・prefers-reduced-motion時はオーバーレイを出さずJS側で即インライン表示
   ================================================================= */
.wcine {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; opacity: 0; pointer-events: none;
  transition: opacity .5s ease; -webkit-tap-highlight-color: transparent;
}
/* hidden時は確実に消す（.wcineのdisplay:flexがhidden属性を上書きしてしまう事故の防止） */
.wcine[hidden] { display: none !important; }
.wcine.is-on { opacity: 1; pointer-events: auto; }
.wcine-sky {
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 16%, #ffffff 0%, #fdf4f6 44%, #f3dde3 100%);
}
.wcine-sky::after { /* バージンロードのうっすらした明暗 */
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 64%; height: 50%; transform: translateX(-50%);
  background: linear-gradient(to top, rgba(201,168,106,.16), transparent);
  clip-path: polygon(32% 100%, 68% 100%, 57% 0, 43% 0);
}
.wcine-skip {
  position: absolute; top: 16px; right: 16px; z-index: 6;
  background: rgba(255,255,255,.7); color: var(--text-muted);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 600; padding: 7px 14px; cursor: pointer;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.wcine-skip:hover { color: var(--accent-dark); }

/* ---- 花束が集まる場所 ---- */
.bq-scene {
  position: relative; z-index: 3; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.bq-stage { position: absolute; left: 50%; top: 50%; width: 0; height: 0; z-index: 3; }
.bq-flower {
  position: absolute; left: 0; top: 0; opacity: 0;
  will-change: transform, opacity;
}
.bq-flower svg { width: 100%; height: 100%; display: block; }
.bq-flower.bq-rose,
.bq-flower.bq-rose2 { filter: drop-shadow(0 5px 9px rgba(196,94,125,.22)); }
.bq-flower.bq-baby { filter: drop-shadow(0 2px 4px rgba(120,100,90,.16)); }

/* 中央の柔らかい光（だんだん強くなる） */
.bq-halo {
  position: absolute; left: 50%; top: 50%; width: 64vmin; height: 64vmin; z-index: 2;
  transform: translate(-50%,-50%) scale(.4); opacity: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(255,250,235,.95) 0%, rgba(255,238,205,.5) 38%, rgba(255,236,200,0) 70%);
}
.s-gather .bq-halo { opacity: .5;  transform: translate(-50%,-50%) scale(.85); transition: opacity 1.4s ease, transform 1.8s ease; }
.s-bloom  .bq-halo { opacity: .85; transform: translate(-50%,-50%) scale(1.05); transition: opacity .8s ease, transform 1s ease; }
.s-burst  .bq-halo,
.s-reveal .bq-halo,
.s-done   .bq-halo { opacity: .95; transform: translate(-50%,-50%) scale(1.5); transition: opacity .6s ease, transform 1s ease; }

/* 放射状の光線（ゆっくり回転） */
.bq-rays {
  position: absolute; left: 50%; top: 50%; width: 150vmax; height: 150vmax; z-index: 1;
  opacity: 0; pointer-events: none; mix-blend-mode: screen;
  background: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(255,243,218,0) 0deg, rgba(255,243,218,.5) 3deg, rgba(255,243,218,0) 7deg);
  transform: translate(-50%,-50%) rotate(0deg);
  animation: bqRays 22s linear infinite;
}
@keyframes bqRays { to { transform: translate(-50%,-50%) rotate(360deg); } }
.s-bloom  .bq-rays { opacity: .3; transition: opacity 1s ease; }
.s-burst  .bq-rays,
.s-reveal .bq-rays,
.s-done   .bq-rays { opacity: .6; transition: opacity .6s ease; }

/* 破裂のフラッシュ */
.bq-flash {
  position: absolute; left: 50%; top: 50%; width: 34vmin; height: 34vmin; z-index: 4;
  transform: translate(-50%,-50%) scale(.2); opacity: 0; pointer-events: none;
  background: radial-gradient(circle, #fff 0%, rgba(255,250,235,.7) 35%, rgba(255,245,225,0) 70%);
}
.s-burst .bq-flash { animation: bqFlash .75s ease-out 1; }
@keyframes bqFlash {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(.2); }
  18%  { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(2.2); }
}

/* 金額（弾けた光の中に出る） */
.wc-reveal {
  position: relative; z-index: 5; text-align: center;
  opacity: 0; transform: scale(.5); pointer-events: none;
}
.s-reveal .wc-reveal, .s-done .wc-reveal {
  opacity: 1; transform: scale(1); pointer-events: auto;
  transition: opacity .6s ease .15s, transform .6s cubic-bezier(.2,1,.3,1.3) .15s;
}
.wc-amount-label { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.wc-amount {
  font-family: var(--font-serif); color: var(--rose-dark);
  font-size: clamp(34px, 11vw, 60px); font-weight: 700; line-height: 1.15;
  font-variant-numeric: tabular-nums; text-shadow: 0 2px 18px rgba(255,240,210,.9);
}
.wc-amount .wc-man { font-size: .5em; }
.wc-more {
  margin-top: 20px; background: var(--rose); color: #fff; border: none;
  border-radius: 999px; font-size: 15px; font-weight: 700; padding: 12px 28px;
  cursor: pointer; box-shadow: var(--shadow); opacity: 0;
}
.s-done .wc-more { opacity: 1; transition: opacity .5s ease; }
.wc-more:hover { background: var(--rose-dark); }

/* キャプション */
.wcine-caption {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%); z-index: 5;
  font-family: var(--font-serif); color: var(--accent-dark);
  font-size: clamp(15px, 4.4vw, 20px); letter-spacing: .08em; text-align: center;
  opacity: 0; transition: opacity .6s ease; white-space: nowrap;
}
.wcine-caption.is-show { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .wcine { display: none !important; }
}

/* =================================================================
   人物アイコン（ヒーローの「呼びたい人をみんな招待」）
   ================================================================= */
.hero-benefit-icon .hbi-svg {
  position: absolute; inset: 0; margin: auto;
  width: 16px; height: 16px;
}

/* =================================================================
   試算セクションの「花びらが舞う」演出（細かい花びらがふわふわ落ちる）
   ・カード内の背景レイヤー（本文の後ろ）／モーション軽減時は自動でオフ
   ================================================================= */
.petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.petal {
  position: absolute; top: -26px; width: 13px; height: 13px; opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1 C16 6 16 14 10 19 C4 14 4 6 10 1 Z' fill='%23f1c9d4'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: petalFall 10s linear infinite;
  will-change: transform, opacity;
}
.petal:nth-child(2n) {
  width: 11px; height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1 C16 6 16 14 10 19 C4 14 4 6 10 1 Z' fill='%23f8dbe2'/%3E%3C/svg%3E");
  animation-name: petalFall2;
}
.petal:nth-child(3n) { width: 14px; height: 14px; }
@keyframes petalFall {
  0%   { transform: translate(0, -10px) rotate(0deg); opacity: 0; }
  12%  { opacity: .75; }
  85%  { opacity: .7; }
  100% { transform: translate(26px, 560px) rotate(320deg); opacity: 0; }
}
@keyframes petalFall2 {
  0%   { transform: translate(0, -10px) rotate(0deg); opacity: 0; }
  12%  { opacity: .7; }
  85%  { opacity: .65; }
  100% { transform: translate(-24px, 560px) rotate(-300deg); opacity: 0; }
}
