/* ============================================
   命式の読み方 ─ LP styles
   Brand: 紺 × 金 × 和紙 × 墨
   ============================================ */

:root {
  --navy-deep: #1a2a4a;
  --navy-mid:  #2c4068;
  --navy-soft: #3a527c;
  --gold:      #c9a961;
  --gold-light:#e6d29a;
  --gold-dark: #a88a4a;
  --vermilion: #8b2e2a;
  --paper:     #f4ecd8;
  --paper-mid: #ece2c4;
  --paper-deep:#e0d3ad;
  --ink:       #1a1a1a;
  --ink-soft:  #3a3a3a;
  --line:      rgba(26, 42, 74, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  color: var(--ink);
  background-color: var(--paper);
  background-image: url("assets/paper_texture.png");
  background-size: 600px 600px;
  background-repeat: repeat;
  line-height: 1.85;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-deep); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: 820px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 236, 216, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--navy-deep);
}
.brand-mark { width: 36px; height: 36px; }
.brand-text { font-weight: 500; }

.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.header-nav a { color: var(--ink-soft); }
.header-nav a:hover { color: var(--gold-dark); }

.header-cta {
  background: var(--navy-deep);
  color: var(--paper) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.1em;
  border: 1px solid var(--gold);
  transition: all 0.25s;
}
.header-cta:hover {
  background: var(--navy-mid);
  color: var(--gold-light) !important;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("assets/hero_bg.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 120px 32px 100px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 74, 0.78) 0%,
    rgba(26, 42, 74, 0.35) 50%,
    rgba(244, 236, 216, 0.05) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-title {
  width: min(560px, 80vw);
  margin: 0 auto 36px;
  filter: drop-shadow(0 4px 24px rgba(26, 42, 74, 0.25)) brightness(1.05);
  background: rgba(244, 236, 216, 0.78);
  padding: 24px 40px;
  border-radius: 2px;
}
.hero-tagline {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--paper);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  line-height: 2;
}
.hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  margin-bottom: 44px;
  background: rgba(26, 42, 74, 0.55);
  padding: 12px 28px;
  border: 1px solid rgba(201, 169, 97, 0.5);
}
.hero-meta .dot { color: var(--gold); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 20px 56px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 2px;
  border: 2px solid var(--gold-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s;
}
.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}
.cta-line-icon {
  background: #06c755;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.hero-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--paper);
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.hero-compass {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 480px;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
}

/* ============ Divider ============ */
.divider {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.7;
}

/* ============ Sections common ============ */
section { padding: 100px 0; }
.section-title {
  text-align: center;
  font-size: clamp(24px, 3.2vw, 34px);
  color: var(--navy-deep);
  margin-bottom: 56px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-weight: 500;
}
.section-title.left { text-align: left; }
.section-title-sub {
  display: block;
  font-size: 13px;
  color: var(--gold-dark);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  font-weight: 400;
}

/* ============ Lead ============ */
.lead-section { padding: 110px 0; }
.lead-text {
  font-size: 17px;
  line-height: 2.2;
  color: var(--ink-soft);
}
.lead-text p { margin-bottom: 28px; }
.lead-text em { font-style: normal; color: var(--vermilion); font-weight: 500; }
.lead-text strong { color: var(--navy-deep); font-weight: 600; }
.lead-sign {
  text-align: right;
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  color: var(--navy-deep);
  letter-spacing: 0.08em;
}
.lead-seal { width: 60px; height: 60px; }

/* ============ Why ============ */
.why-section { background: rgba(244, 236, 216, 0.45); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: rgba(244, 236, 216, 0.9);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 44px 32px;
  position: relative;
}
.why-card-num {
  position: absolute;
  top: -22px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: var(--navy-deep);
  color: var(--gold);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  letter-spacing: 0;
}
.why-card h3 {
  font-size: 19px;
  color: var(--navy-deep);
  margin-bottom: 20px;
  margin-top: 8px;
  line-height: 1.7;
  font-weight: 600;
}
.why-card h3 .gold { color: var(--gold-dark); }
.why-card p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.why-card-detail {
  font-size: 14px !important;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  color: var(--navy-mid) !important;
}
.why-card-detail strong { color: var(--vermilion); font-weight: 600; }

/* ============ Gogyo split ============ */
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-text p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.split-text strong { color: var(--navy-deep); font-weight: 600; }
.split-image img { width: 100%; max-width: 480px; margin: 0 auto; }
.split-image.small img { max-width: 340px; }

/* ============ Sample ============ */
.sample-section { background: rgba(26, 42, 74, 0.04); }
.sample-lead {
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  line-height: 2;
}
.sample-figure {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(26, 42, 74, 0.18), 0 4px 12px rgba(26, 42, 74, 0.08);
  border: 1px solid var(--gold-light);
}
.sample-figure img { width: 100%; }
.sample-figure figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 16px;
  letter-spacing: 0.06em;
}

/* ============ Steps ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  text-align: center;
  padding: 24px;
}
.step-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 24px;
}
.step-card h3 {
  font-size: 19px;
  color: var(--navy-deep);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.step-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 2;
}

/* ============ Price ============ */
.price-section { background: rgba(244, 236, 216, 0.45); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 32px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.recommended {
  background: var(--navy-deep);
  color: var(--paper);
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(26, 42, 74, 0.25);
}
.recommended-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 12px;
  padding: 6px 18px;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.price-card h3 {
  text-align: center;
  font-size: 20px;
  color: var(--navy-deep);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.price-card.recommended h3 { color: var(--gold); border-bottom-color: rgba(201, 169, 97, 0.4); }
.price-amount {
  text-align: center;
  font-size: 38px;
  color: var(--navy-deep);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: 0;
}
.price-card.recommended .price-amount { color: var(--gold-light); }
.price-amount span { font-size: 14px; margin-left: 4px; letter-spacing: 0.1em; color: var(--ink-soft); }
.price-card.recommended .price-amount span { color: var(--paper); opacity: 0.75; }
.price-card ul { list-style: none; }
.price-card li {
  font-size: 14px;
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.price-card.recommended li { color: var(--paper); border-bottom-color: rgba(244, 236, 216, 0.15); }
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "─";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}
.price-card.recommended li::before { color: var(--gold); }
.price-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 36px;
  letter-spacing: 0.06em;
}

/* ============ About ============ */
.seal-frame {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  background: rgba(244, 236, 216, 0.6);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-mark { width: 240px; }
.about-seal {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}
.split-text p {
  font-size: 16px;
  line-height: 2.1;
  margin-bottom: 18px;
}
.about-quote {
  margin-top: 28px !important;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 169, 97, 0.08);
  font-size: 15px !important;
  color: var(--navy-deep) !important;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ============ FAQ ============ */
.faq-section { padding: 100px 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 36px 22px 32px;
  position: relative;
  font-size: 17px;
  color: var(--navy-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "問";
  position: absolute;
  left: 0;
  top: 22px;
  width: 26px;
  height: 26px;
  background: var(--navy-deep);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}
.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 22px;
  font-size: 22px;
  color: var(--gold-dark);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: "─"; }
.faq-item summary:hover { color: var(--gold-dark); }
.faq-item p {
  padding: 0 32px 28px 32px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 2;
}

/* ============ CTA ============ */
.cta-section {
  background: var(--navy-deep);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 169, 97, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(139, 46, 42, 0.15) 0%, transparent 40%);
  color: var(--paper);
  text-align: center;
  padding: 120px 0;
}
.cta-mark {
  width: 96px;
  margin: 0 auto 32px;
  filter: brightness(1.2);
}
.cta-heading {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--paper);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  font-weight: 500;
}
.cta-text {
  font-size: 16px;
  color: var(--gold-light);
  margin-bottom: 44px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.cta-text strong { color: var(--gold); font-weight: 600; }
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #06c755;
  color: #fff !important;
  padding: 22px 60px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: 0.1em;
  box-shadow: 0 12px 32px rgba(6, 199, 85, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s;
}
.cta-button span {
  background: #fff;
  color: #06c755;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.cta-button:hover {
  background: #05b04b;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(6, 199, 85, 0.5);
  color: #fff !important;
}
.cta-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--gold-light);
  opacity: 0.7;
  letter-spacing: 0.06em;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.footer-mark { width: 48px; filter: brightness(1.2); }
.footer-title { font-size: 16px; letter-spacing: 0.1em; color: var(--gold); }
.footer-sub { font-size: 12px; letter-spacing: 0.06em; color: var(--paper); opacity: 0.65; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(244, 236, 216, 0.15);
  border-bottom: 1px solid rgba(244, 236, 216, 0.15);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.footer-nav a { color: var(--paper); opacity: 0.7; }
.footer-nav a:hover { color: var(--gold); opacity: 1; }
.footer-copy {
  margin-top: 24px;
  font-size: 12px;
  color: var(--paper);
  opacity: 0.5;
  text-align: center;
  letter-spacing: 0.08em;
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .why-grid, .steps-grid, .price-grid { grid-template-columns: 1fr; gap: 36px; }
  .price-card.recommended { transform: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-image img { max-width: 360px; }
  .hero-compass { width: 320px; right: -80px; bottom: -80px; }
  section { padding: 72px 0; }
  .hero { min-height: 80vh; padding: 100px 24px 80px; }
  .hero-title { padding: 18px 28px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 12px 20px; gap: 12px; }
  .brand-text { display: none; }
  .header-cta { padding: 8px 14px; font-size: 11px; }
  .hero-cta { padding: 18px 36px; font-size: 16px; }
  .cta-button { padding: 18px 36px; font-size: 16px; }
  .section-title { margin-bottom: 40px; }
  .price-card { padding: 36px 24px; }
  .seal-frame { width: 240px; height: 240px; }
  .about-mark { width: 180px; }
}

/* ============================================
   CV最適化 追加スタイル（2026-06-02）
   ============================================ */

/* ---------- 緊急性帯 ---------- */
.promo-bar {
  background: linear-gradient(90deg, var(--vermilion), #a83a35);
  color: #fff8e8;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 110;
}
.promo-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.promo-bar-tag {
  background: var(--gold-light);
  color: var(--vermilion);
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.promo-bar-text { font-size: 13px; }
.promo-bar-text strong { color: var(--gold-light); font-weight: 700; }
.promo-bar-cta {
  background: #fff8e8;
  color: var(--vermilion);
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  transition: transform 0.2s;
}
.promo-bar-cta:hover { transform: translateY(-1px); color: var(--vermilion); }

/* ---------- ヒーロー二段CTA ---------- */
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-cta-primary {
  background: #06c755;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.42);
}
.hero-cta-secondary {
  background: transparent;
  color: var(--navy-deep);
  border: 2px solid var(--navy-deep);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.2s;
}
.hero-cta-secondary:hover {
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-2px);
}
.cta-sub-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.92;
}
.hero-proof {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-proof li {
  position: relative;
  padding-left: 18px;
}
.hero-proof li::before {
  content: "✓";
  color: var(--gold-dark);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.hero-proof strong { color: var(--navy-deep); font-weight: 700; }

/* ---------- 社会的証明 ---------- */
.social-proof-section {
  padding: 80px 0 90px;
  background: rgba(255, 252, 240, 0.5);
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px 0 70px;
}
.proof-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.proof-stat-num {
  display: block;
  font-family: "ヒラギノ明朝 ProN", serif;
  font-size: 48px;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 12px;
}
.proof-stat-num small {
  font-size: 18px;
  margin-left: 4px;
  color: var(--ink-soft);
}
.proof-stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.proof-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-voice {
  padding: 28px 24px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}
.proof-voice-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
}
.proof-voice-meta {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

/* ---------- 価格セクション拡張 ---------- */
.price-tier-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}
.price-tier {
  padding: 28px 28px;
  background: var(--navy-deep);
  color: #f4ecd8;
  border-radius: 4px;
  text-align: center;
}
.price-tier-mid { background: var(--navy-mid); }
.price-tier-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border: 1px solid var(--gold-light);
  border-radius: 2px;
  margin-bottom: 14px;
  color: var(--gold-light);
}
.price-tier h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.price-tier .price-amount {
  font-size: 30px;
  color: var(--gold-light);
  margin: 8px 0 8px;
}
.price-tier .price-amount span {
  font-size: 13px;
  color: rgba(255, 248, 232, 0.7);
}
.price-tier-note {
  font-size: 12px;
  color: rgba(255, 248, 232, 0.78);
  line-height: 1.7;
}
.price-subhead {
  text-align: center;
  font-size: 22px;
  color: var(--navy-deep);
  margin: 30px 0 32px;
}
.price-subhead .section-title-sub {
  display: block;
  font-size: 13px;
  color: var(--gold-dark);
  margin-bottom: 6px;
  letter-spacing: 0.15em;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.price-card-cta {
  display: block;
  margin-top: 18px;
  padding: 11px 16px;
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.price-card-cta:hover { background: var(--navy-mid); color: #fff; }
.price-card.recommended .price-card-cta { background: var(--vermilion); }
.price-card.recommended .price-card-cta:hover { background: #a83a35; }

.price-bundle {
  margin: 40px 0 30px;
  padding: 22px 28px;
  background: var(--paper-deep);
  border: 1px dashed var(--gold-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.price-bundle-tag {
  display: inline-block;
  background: var(--vermilion);
  color: #fff8e8;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  border-radius: 2px;
}
.price-bundle-text {
  font-size: 15px;
  color: var(--ink);
}
.price-bundle-amount {
  font-size: 22px;
  color: var(--vermilion);
  font-weight: 700;
}
.price-bundle-off {
  font-size: 13px;
  color: var(--gold-dark);
  margin-left: 4px;
}
.price-bundle-cta {
  background: var(--vermilion);
  color: #fff8e8;
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}
.price-bundle-cta:hover { color: #fff8e8; background: #a83a35; }

.price-coupon-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--navy-deep);
  background: rgba(201, 169, 97, 0.12);
  padding: 12px 20px;
  border-radius: 4px;
}
.price-coupon-note a {
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- 最終CTAセクション拡張 ---------- */
.cta-benefits {
  list-style: none;
  margin: 24px auto 32px;
  text-align: left;
  max-width: 460px;
  font-size: 15px;
  line-height: 2.1;
}
.cta-benefits li {
  padding-left: 4px;
  color: var(--ink-soft);
}
.cta-benefits li strong { color: var(--navy-deep); }
.cta-secondary {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.cta-secondary-text {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.cta-secondary-button {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--navy-deep);
  color: var(--navy-deep);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.cta-secondary-button:hover {
  background: var(--navy-deep);
  color: #fff8e8;
}

/* ---------- Exit-intent ポップアップ ---------- */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-popup[hidden] { display: none; }
.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 38, 0.72);
  backdrop-filter: blur(4px);
}
.exit-popup-inner {
  position: relative;
  max-width: 480px;
  width: calc(100% - 32px);
  padding: 36px 32px 32px;
  background: var(--paper);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: popup-in 0.3s ease-out;
}
@keyframes popup-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.exit-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 28px;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
}
.exit-popup-mark {
  width: 60px;
  margin: 0 auto 12px;
  opacity: 0.85;
}
.exit-popup-title {
  font-family: "ヒラギノ明朝 ProN", serif;
  font-size: 22px;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.exit-popup-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.exit-popup-cta {
  display: block;
  padding: 14px 24px;
  background: #06c755;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.3);
  transition: transform 0.2s;
}
.exit-popup-cta:hover { transform: translateY(-1px); color: #fff; }
.exit-popup-sub {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 920px) {
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .proof-voices { grid-template-columns: 1fr; }
  .price-tier-row { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .promo-bar-inner { padding: 8px 14px; gap: 8px; }
  .promo-bar-text { font-size: 12px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-primary, .hero-cta-secondary { width: 100%; max-width: 320px; }
  .proof-stat-num { font-size: 38px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-bundle { flex-direction: column; align-items: stretch; text-align: center; }
}
