/* =========================================
   Reset & Base
========================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Yu Gothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.85;
  color: #2a2a2a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
table { border-collapse: collapse; }

/* =========================================
   Variables
========================================= */
:root {
  --primary: #990000;
  --primary-dark: #6e0000;
  --primary-hover: #b00000;
  --primary-tint: #fdf3f3;
  --line: #06c755;
  --line-dark: #05a847;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --border: #e8e8e8;
  --border-soft: #efefef;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10);
  --radius: 10px;
  --radius-lg: 16px;
}

/* =========================================
   Layout
========================================= */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* Utility */
.sp-only { display: none; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
}

.emph-red { color: var(--primary); }

/* =========================================
   Typography
========================================= */
.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin: 12px auto 0;
}

.section-title {
  font-family: inherit;
  font-weight: 900;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.55;
  letter-spacing: .04em;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text);
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.hero-title,
.story-title,
.cta-title,
.divider-title,
.trap-title,
.weapon-title,
.case-step-title {
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.section-title-sub {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 18px;
  line-height: 2;
  color: var(--text-muted);
  margin: 0 auto 64px;
  max-width: 720px;
  text-align: center;
}
@media (max-width: 768px) {
  .section-lead { font-size: 16px; margin-bottom: 40px; }
}

/* =========================================
   Buttons
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
  letter-spacing: .04em;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(153, 0, 0, .25);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 24px rgba(153, 0, 0, .35);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(153, 0, 0, .25);
}

.btn-line {
  background: var(--line);
  color: #fff;
  box-shadow: 0 6px 20px rgba(6, 199, 85, .35);
  padding: 22px 40px;
}
.btn-line:hover { background: #08d35e; box-shadow: 0 10px 28px rgba(6, 199, 85, .45); }

.btn-sm { padding: 12px 20px; font-size: 13px; }
.btn-lg {
  padding: 22px 32px;
  flex-direction: column;
  gap: 6px;
  min-width: 320px;
  font-size: 17px;
}
.btn-xl {
  padding: 26px 48px;
  font-size: 19px;
  min-width: 400px;
}

.btn-sub {
  font-size: 12px;
  font-weight: 500;
  opacity: .9;
  letter-spacing: .1em;
}
.btn-main {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .06em;
}

.btn-line-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-line-icon svg { width: 100%; height: 100%; }
.btn-line-body { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.btn-line-body .btn-main { font-size: 19px; }

/* =========================================
   Header
========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo img { height: 52px; width: auto; }
.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-tel { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.header-tel-label { font-size: 12px; color: var(--text-muted); }
.header-tel-number {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .02em;
}

@media (max-width: 768px) {
  .header-inner { height: 64px; }
  .header-logo img { height: 40px; }
  .header-tel { display: none; }
}

/* =========================================
   Hero (with video background)
========================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  padding: 96px 0 88px;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  filter: blur(4px);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.10) 45%, rgba(0,0,0,.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
}
.hero-logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.hero-logo-mark img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.45));
}
@media (max-width: 768px) {
  .hero-logo-mark img { width: 160px; }
  .hero-logo-mark { margin-bottom: 20px; }
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  color: #fff;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: inherit;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
  margin-bottom: 36px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.85), 0 0 18px rgba(0,0,0,.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-title-text {
  font-size: clamp(28px, 4.2vw, 48px);
  display: block;
}
.hero-title-logo {
  width: clamp(190px, 20vw, 260px);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.45));
}
.hero-emph {
  position: relative;
  display: inline-block;
  color: #ffd089;
}
.hero-emph::before {
  content: "";
  position: absolute;
  left: -.05em;
  right: -.05em;
  bottom: .12em;
  height: .35em;
  background: rgba(255, 208, 137, .25);
  z-index: -1;
  border-radius: 2px;
}
.hero-lead {
  font-size: 18px;
  line-height: 2.05;
  margin-bottom: 48px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-single { min-width: 380px; }
@media (max-width: 768px) {
  .btn-single { min-width: 0; width: 100%; }
}

/* Hero jump link to second-opinion section */
.hero-jump-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}
.hero-jump-link:hover {
  color: #fff;
  border-color: #fff;
}
.hero-jump-arrow {
  font-weight: 700;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .hero-jump-link { font-size: 12px; margin-top: 20px; }
}

/* Hero outline button (replaces secondary on hero) */
.btn-hero-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
}
.btn-hero-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

@media (max-width: 768px) {
  .hero { padding: 64px 0 56px; min-height: 420px; }
  .hero-image { object-position: left 40%; }
  .hero-eyebrow { font-size: 10px; padding: 6px 14px; margin-bottom: 24px; letter-spacing: .2em; }
  .hero-title { flex-direction: column; line-height: 1.5; gap: 14px; margin-bottom: 28px; }
  .hero-title-text { font-size: 28px; }
  .hero-title-logo { width: 200px; }
  .hero-lead { font-size: 16px; margin-bottom: 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-lg { min-width: 0; width: 100%; }
}


/* =========================================
   Problem section (こんなお悩み)
========================================= */
.section-problem {
  background: var(--bg-alt);
}
.problem-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 56px auto 0;
  max-width: 1080px;
}
@media (max-width: 960px) {
  .problem-list { grid-template-columns: repeat(2, 1fr); }
}
.problem-item {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.problem-item::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 36px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  transition: border-color .25s ease;
}
.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.problem-item:hover::after {
  border-color: var(--primary);
}
.problem-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--primary);
  background: var(--primary-tint);
  padding: 6px 12px;
  border-radius: 4px;
  margin: 0;
}
.problem-text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--text);
  letter-spacing: .02em;
  margin: 0;
}
.problem-text strong {
  color: var(--primary);
  font-weight: 900;
  background: linear-gradient(transparent 65%, rgba(153,0,0,.15) 65%);
  padding: 0 2px;
}
@media (max-width: 768px) {
  .problem-list { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .problem-item { padding: 24px 22px 22px; }
  .problem-text { font-size: 16px; }
}

/* =========================================
   Traps section
========================================= */
.section-traps {
  background: #fff;
}
.traps-list {
  display: grid;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.trap-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.trap-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.trap-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--primary);
  background: var(--primary-tint);
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
  align-self: start;
}
.trap-body {}
.trap-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
  letter-spacing: .03em;
}
.trap-text {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .trap-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }
  .trap-number { justify-self: start; }
  .trap-title { font-size: 19px; }
  .trap-text { font-size: 15px; }
}

/* =========================================
   Weapons section
========================================= */
.section-weapons {
  background: var(--bg-alt);
}
.weapons-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.weapon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.weapon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.weapon-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.weapon-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: var(--primary-tint);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: .08em;
}
.weapon-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: .03em;
  color: var(--text);
}
.weapon-text {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-muted);
  text-align: left;
}
.weapon-text strong {
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 768px) {
  .weapons-list { grid-template-columns: 1fr; }
  .weapon-card { padding: 32px 24px; }
  .weapon-title { font-size: 20px; }
  .weapon-text { font-size: 15px; }
}

/* Section header with character (Problem 新規向け) */
.section-header-with-character {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 48px;
}
.section-header-with-character .section-title {
  margin-bottom: 0;
  text-align: left;
}
.section-character {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .section-header-with-character {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .section-header-with-character .section-title {
    text-align: center;
  }
  .section-header-with-character .section-character {
    width: 140px;
    margin: 0 auto;
    order: -1;
  }
}

/* CTA character (新規向けCTA) */
.cta-character {
  width: 200px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
@media (max-width: 768px) {
  .cta-character { width: 160px; }
}

/* Divider with character (Second Opinion) */
.divider-with-character {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
.divider-character {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.5));
}
.divider-content { text-align: left; }
.divider-with-character .divider-eyebrow { margin-bottom: 20px; }
.divider-with-character .divider-title { text-align: left; }
.divider-with-character .divider-lead { margin: 0; text-align: left; }
@media (max-width: 768px) {
  .divider-with-character {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .divider-character { width: 160px; margin: 0 auto; }
  .divider-content,
  .divider-with-character .divider-title,
  .divider-with-character .divider-lead { text-align: center; }
}

/* Problem closing message (新規向け) */
.problem-message {
  margin: 48px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
  color: var(--text);
  padding: 24px 24px;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.problem-message strong {
  color: var(--primary);
  font-weight: 900;
}
@media (max-width: 768px) {
  .problem-message { font-size: 15px; padding: 20px 18px; margin-top: 32px; }
}

/* Second-opinion problem list (3 cards) */
.problem-list-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}
@media (max-width: 960px) {
  .problem-list-3 { grid-template-columns: 1fr; gap: 24px; }
}

/* =========================================
   Second Opinion divider
========================================= */
.second-opinion-divider {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.second-opinion-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 200, 100, .08) 0%, transparent 70%);
  pointer-events: none;
}
.second-opinion-divider .container {
  position: relative;
  z-index: 1;
}
.divider-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .35em;
  color: #ffc99b;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,201,155,.4);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.divider-title {
  font-family: inherit;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .04em;
  margin-bottom: 24px;
  color: #fff;
}
.emph-yellow {
  color: #ffc99b;
}
.divider-lead {
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,.85);
  max-width: 720px;
  margin: 0 auto;
}
.pc-only { display: inline; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .second-opinion-divider { padding: 56px 0; }
  .divider-eyebrow { font-size: 11px; padding: 6px 16px; }
  .divider-lead { font-size: 14px; }
}

/* Section background variations */
.section-problem-second {
  background: #fff;
}
.section-cta-second {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--primary-tint) 100%);
}

/* =========================================
   Cases (Before / After)
========================================= */
.section-cases {
  background: #fff;
}
.cases-list {
  display: grid;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.case-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.case-tag {
  grid-column: 1 / -1;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  background: var(--primary);
  padding: 8px 18px;
  border-radius: 999px;
  width: fit-content;
}
.case-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-step {
  background: #fafafa;
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 3px solid #ccc;
}
.case-step-before {
  background: #f7f7f7;
}
.case-step-after {
  background: var(--primary-tint);
  border-left-color: var(--primary);
}
.case-step-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.case-step-before .case-step-label {
  color: #888;
  background: #e8e8e8;
}
.case-step-after .case-step-label {
  color: #fff;
  background: var(--primary);
}
.case-step-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 4px;
  color: var(--text);
}
.case-step-title strong {
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
}
.case-step-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 6px;
}
.case-step-result {
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0 0;
  color: var(--text);
}
.case-arrow {
  text-align: center;
  font-size: 14px;
  color: var(--primary);
  font-weight: 900;
  line-height: 1;
}
.case-result {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.case-result-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  color: #fff;
  background: rgba(255,255,255,.18);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.case-result-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,.9);
}
.case-result-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
  margin-top: 4px;
}
.cases-message {
  margin: 56px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 17px;
  line-height: 2;
  color: var(--text);
  padding: 28px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}
.cases-message strong {
  color: var(--primary);
  font-weight: 900;
  font-size: 19px;
}

@media (max-width: 768px) {
  .case-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 22px;
  }
  .case-step-title { font-size: 15px; }
  .case-step-title strong { font-size: 17px; }
  .case-result-num { font-size: 28px; }
  .cases-message { font-size: 15px; padding: 24px 20px; }
  .cases-message strong { font-size: 17px; }
}

/* =========================================
   Costs / Fees
========================================= */
.section-costs {
  background: var(--bg-alt);
}
.costs-table-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.costs-table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 16px;
}
.costs-table thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 16px 24px;
  font-size: 14px;
  letter-spacing: .05em;
}
.costs-table tbody th {
  text-align: left;
  font-weight: 700;
  padding: 18px 24px;
  width: 38%;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.costs-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.costs-table tbody tr:last-child th,
.costs-table tbody tr:last-child td {
  border-bottom: 0;
}
.costs-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
@media (max-width: 768px) {
  .costs-table { font-size: 14px; }
  .costs-table thead th { padding: 14px 16px; font-size: 13px; }
  .costs-table tbody th,
  .costs-table tbody td { padding: 14px 16px; }
  .costs-table tbody th { width: 42%; }
}

/* =========================================
   Compare table
========================================= */
.section-compare {
  background: #fff;
}
.compare-table-wrap {
  margin: 56px auto 0;
  max-width: 880px;
}
.compare-table {
  width: 100%;
  text-align: center;
  font-size: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th,
.compare-table td {
  padding: 22px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.7;
}
.compare-table thead th {
  font-size: 14px;
  font-weight: 700;
  padding: 20px 16px;
  letter-spacing: .05em;
}
.th-empty { background: #fff; border-bottom: 1px solid var(--border); }
.th-other {
  background: #f5f5f5;
  color: var(--text-muted);
}
.th-iekomachi {
  background: var(--primary);
  color: #fff;
}
.th-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.3;
}
.th-brand-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  opacity: .9;
}
.th-brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
}
.compare-table tbody th {
  text-align: left;
  font-weight: 700;
  background: #fafafa;
  width: 22%;
  font-size: 15px;
  color: var(--text);
}
.td-x {
  color: var(--text-muted);
  background: #fff;
  font-size: 15px;
}
.td-x::before {
  content: "✕";
  display: inline-block;
  margin-right: 8px;
  color: #c0c0c0;
  font-weight: 900;
}
.td-o {
  color: var(--primary);
  background: var(--primary-tint);
  font-weight: 700;
  font-size: 15px;
}
.td-o::before {
  content: "◯";
  display: inline-block;
  margin-right: 8px;
  font-weight: 900;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 768px) {
  .compare-table { font-size: 14px; }
  .compare-table th, .compare-table td { padding: 16px 8px; }
  .compare-table tbody th { font-size: 13px; }
  .th-brand-sub { font-size: 10px; }
  .th-brand-name { font-size: 16px; }
  .td-x, .td-o { font-size: 13px; }
}

/* =========================================
   Story section / CEO Message
========================================= */
.section-story {
  background: var(--bg-alt);
}
.story-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

/* Photo column with name card */
.story-photo-col {
  position: sticky;
  top: 100px;
}
.story-photo {
  position: relative;
}
.story-photo img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-md);
  display: block;
}
.story-name-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: -32px;
  margin-left: 24px;
  margin-right: 24px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 3px solid var(--primary);
}
.story-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--primary);
  margin-bottom: 6px;
}
.story-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.story-name-en {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--text-muted);
  font-family: inherit;
}

/* Body column */
.story-body .section-eyebrow {
  text-align: left;
  padding-left: 0;
  margin-bottom: 16px;
}
.story-body .section-eyebrow::after {
  margin: 12px 0 0;
}
.story-title {
  font-family: inherit;
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .05em;
  margin-bottom: 32px;
  text-align: left;
}
.story-text {
  font-size: 17px;
  line-height: 2.1;
  margin-bottom: 24px;
  color: var(--text);
}
.story-text strong {
  font-weight: 900;
  background: linear-gradient(transparent 65%, rgba(153,0,0,.12) 65%);
  padding: 0 2px;
}
.story-text-strong {
  font-size: 18px;
  font-weight: 700;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  margin-top: 32px;
}

/* Pull-quote */
.story-quote {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 36px 32px;
  margin: 32px 0;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.story-quote::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: inherit;
  font-size: 72px;
  font-weight: 900;
  color: var(--primary);
  opacity: .15;
  line-height: 1;
}
.story-quote p {
  font-size: 17px;
  line-height: 2.05;
  color: var(--text);
  margin-bottom: 16px;
}
.story-quote p:last-child { margin-bottom: 0; }
.story-quote strong {
  font-weight: 900;
  color: var(--primary);
}

/* Philosophy / Vision */
.story-philosophy {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 16px;
}
.story-philosophy-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: baseline;
}
.story-philosophy-row dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--primary);
  background: var(--primary-tint);
  padding: 6px 10px;
  border-radius: 4px;
  text-align: center;
}
.story-philosophy-row dd {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--text);
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-photo-col { position: static; max-width: 280px; margin: 0 auto; }
  .story-text { font-size: 16px; }
  .story-quote { padding: 28px 24px 24px; margin: 24px 0; }
  .story-quote p { font-size: 16px; }
  .story-philosophy-row { grid-template-columns: 1fr; gap: 8px; }
  .story-philosophy-row dt { justify-self: start; padding: 4px 10px; }
  .story-philosophy-row dd { font-size: 15px; }
}

/* =========================================
   Office
========================================= */
.section-office {
  background: #fff;
}
.office-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.office-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
  position: relative;
}
.office-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.office-photo:hover img {
  transform: scale(1.03);
}
.office-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255,255,255,.92);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  padding: 6px 14px;
  border-radius: 999px;
  border-left: 3px solid var(--primary);
}

@media (max-width: 768px) {
  .office-grid { grid-template-columns: 1fr; gap: 20px; }
  .office-photo img { height: 240px; }
}

/* =========================================
   Final CTA
========================================= */
.section-cta {
  background: linear-gradient(180deg, #fff 0%, var(--primary-tint) 100%);
  text-align: center;
}
.cta-inner { max-width: 800px; }
.cta-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--primary);
  margin-bottom: 16px;
}
.cta-title {
  font-family: inherit;
  font-size: clamp(24px, 4.5vw, 40px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.cta-lead {
  font-size: 17px;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.cta-lead strong { color: var(--text); font-weight: 700; }
.cta-button-wrap { margin-bottom: 20px; }
.cta-button-wrap-double {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.cta-note {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: .1em;
}
@media (max-width: 768px) {
  .btn-xl { min-width: 0; width: 100%; padding: 22px 24px; }
  .btn-line-body .btn-main { font-size: 17px; }
  .cta-lead { font-size: 16px; }
}

/* =========================================
   Footer
========================================= */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 64px 0 0;
  font-size: 15px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  color: #fff;
  line-height: 1.4;
}
.footer-brand-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #ccc;
}
.footer-brand-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .04em;
  color: #fff;
}
.footer-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.footer-info-row { display: flex; gap: 16px; }
.footer-info-row dt {
  flex: 0 0 80px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.footer-info-row dd {
  font-size: 14px;
  line-height: 1.7;
  color: #bbb;
}
.footer-info-row a { color: #bbb; }
.footer-info-row a:hover { color: #fff; }
.footer-corp {
  margin-top: 24px;
  font-size: 14px;
}
.footer-corp a { color: #ffc99b; }
.footer-corp a:hover { text-decoration: underline; }

.footer-copy {
  border-top: 1px solid #333;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-info-list { grid-template-columns: 1fr; }
}

/* =========================================
   Sticky Mobile CTA
========================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--line);
  color: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 900;
  font-size: 15px;
  align-items: center;
  gap: 10px;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .2s ease, opacity .2s ease;
}
.sticky-cta:active { transform: translateX(-50%) scale(.97); }
.sticky-cta-icon { width: 22px; height: 22px; display: inline-flex; }
.sticky-cta-icon svg { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .sticky-cta { display: inline-flex; }
  body { padding-bottom: 80px; }
}
