:root {
  --navy: #123b56;
  --navy-2: #0b2c42;
  --ink: #13242f;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --gold: #c99536;
  --gold-soft: #e7d0a2;
  --green: #26725f;
  --line: #d9d3c7;
  --muted: #65737a;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
button { appearance: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(201, 149, 54, .55);
  outline-offset: 3px;
}
.hero-grid > *,
.section-grid > *,
.compare-card > *,
.diagnosis-section .section-shell > *,
.promise-shell > *,
.ten-hero > *,
.ten-diagnostic > * {
  min-width: 0;
}
.arrow { flex: none; font-size: 18px; line-height: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(18, 59, 86, .12);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1180px, calc(100% - 48px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .11em;
}
.brand-sub {
  margin-top: 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 32px;
  color: #40525d;
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a:hover { color: var(--navy); }
.header-cta, .primary-button, .secondary-button, .gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta {
  min-height: 46px;
  padding: 0 20px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.header-cta:hover, .primary-button:hover, .gold-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(7, 37, 57, .18);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  background:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px),
    var(--cream);
  background-size: 56px 56px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 68% 44%, rgba(255,255,255,.95), rgba(255,255,255,0) 38%);
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(201, 149, 54, .3);
  border-radius: 999px;
}
.orbit-one { width: 540px; height: 540px; right: 6%; top: 80px; }
.orbit-two { width: 680px; height: 680px; right: -2%; top: 10px; }
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 85px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 65px;
}
.hero-kicker, .eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero-kicker::before, .eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 12px 4px 0;
  background: currentColor;
}
.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.46;
}
.hero h1 span {
  position: relative;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 5px;
  background: rgba(201, 149, 54, .22);
}
.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: #40525d;
  font-size: 16px;
  line-height: 2;
}
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 26px; }
.primary-button {
  min-height: 62px;
  padding: 0 30px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.primary-button.full { width: 100%; margin-top: 25px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
}
.reassurance-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.reassurance-row span {
  padding: 7px 10px;
  border: 1px solid rgba(38, 114, 95, .3);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 700;
}
.report-wrap {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-sheet {
  position: relative;
  z-index: 2;
  width: 430px;
  padding: 34px;
  background: #fff;
  border: 1px solid #e7e0d4;
  box-shadow: 0 35px 70px rgba(22, 45, 60, .16);
  transform: rotate(1.5deg);
}
.report-sheet-back {
  position: absolute;
  z-index: 1;
  height: 490px;
  background: #f7f4ec;
  transform: translate(20px, 12px) rotate(5deg);
  box-shadow: none;
}
.report-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
}
.report-sample { color: #aeb6b8; font-size: 9px; letter-spacing: .22em; }
.report-kicker {
  margin: 22px 0 12px;
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 700;
}
.report-property-line { width: 60%; height: 5px; background: #edf0f1; }
.mini-scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 25px; }
.mini-scenario {
  min-height: 100px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9dfe1;
  color: var(--navy);
}
.mini-scenario.featured { border-color: var(--gold); background: #fbf5e8; }
.mini-scenario span { color: var(--gold); font-size: 8px; }
.mini-scenario strong { margin: auto 0 5px; font-size: 13px; }
.mini-scenario small { color: var(--muted); font-size: 8px; }
.report-bars { margin-top: 26px; display: grid; gap: 16px; }
.report-bars div {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  color: #637078;
}
.report-bars div::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 7px;
  background: #edf0f1;
}
.report-bars i {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  height: 7px;
  background: var(--navy);
}
.report-note {
  margin-top: 25px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--green);
  background: #eff7f4;
  color: var(--green);
}
.report-note strong { font-size: 10px; }
.report-note span { font-size: 9px; }
.hero-foot {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  color: #718087;
}
.hero-foot span { font-size: 8px; letter-spacing: .2em; }
.hero-foot i { width: 60px; height: 1px; background: var(--gold); }
.hero-foot p { margin: 0; font-size: 10px; }

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0;
}
.section-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 110px;
  align-items: start;
}
.section-title {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .02em;
}
.section-copy { padding-top: 38px; color: #52626a; font-size: 15px; line-height: 2.05; }
.section-copy p { margin: 0 0 24px; }
.section-copy .large-copy { color: var(--ink); font-family: "Yu Mincho", serif; font-size: 21px; line-height: 1.9; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 75px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-card { min-height: 220px; padding: 32px 26px; border-right: 1px solid var(--line); }
.price-card:first-child { border-left: 1px solid var(--line); }
.price-card > span { color: var(--gold); font-size: 11px; letter-spacing: .12em; }
.price-card h3 { margin: 42px 0 14px; color: var(--navy); font-size: 19px; }
.price-card p { margin: 0; color: #68777e; font-size: 13px; line-height: 1.8; }

.scenario-section {
  width: auto;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: #f4f7f7;
}
.center-heading { text-align: center; }
.center-heading .eyebrow::before { display: none; }
.center-heading > p:last-child { margin: 20px 0 0; color: #64747c; font-size: 14px; }
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 70px; }
.scenario-card {
  position: relative;
  min-height: 440px;
  padding: 38px 34px;
  background: #fff;
  border: 1px solid #dde4e5;
}
.scenario-card.featured-card {
  transform: translateY(-16px);
  border-color: var(--gold);
  box-shadow: 0 25px 55px rgba(18, 59, 86, .10);
}
.recommended {
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px 14px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.scenario-number { color: #aab7ba; font-family: "Yu Mincho", serif; font-size: 38px; }
.scenario-tag { margin: 45px 0 8px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.scenario-card h3 { margin: 0 0 22px; color: var(--navy); font-family: "Yu Mincho", serif; font-size: 29px; }
.scenario-card > p:not(.scenario-tag) { min-height: 92px; color: #607078; font-size: 13px; line-height: 1.9; }
.scenario-card ul {
  margin: 23px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid #e2e6e7;
  color: #3e555f;
  font-size: 12px;
  line-height: 2;
}
.scenario-card li::before { content: "—"; margin-right: 8px; color: var(--gold); }

.report-section {
  padding: 130px max(24px, calc((100% - 1180px) / 2));
  background: var(--navy);
  color: #fff;
}
.eyebrow.light, .section-title.light { color: #fff; }
.eyebrow.light { opacity: .76; }
.report-intro { margin: 45px 0 0; color: #c7d3d9; font-size: 15px; line-height: 2; }
.report-items {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
  border-left: 1px solid rgba(255,255,255,.2);
}
.report-items article {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.report-items span { color: var(--gold-soft); font-size: 10px; }
.report-items h3 { margin: 28px 0 10px; font-size: 17px; }
.report-items p { margin: 0; color: #afc0c7; font-size: 12px; line-height: 1.8; }

.compare-section { padding-top: 120px; padding-bottom: 120px; }
.compare-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 510px; border: 1px solid var(--line); }
.compare-copy { padding: 65px; background: #fff; }
.compare-copy .section-title { font-size: clamp(31px, 3vw, 43px); }
.compare-copy > p:not(.eyebrow) { margin: 28px 0; color: #5c6d75; font-size: 14px; line-height: 2; }
.secondary-button { border-color: var(--navy); color: var(--navy); font-size: 13px; font-weight: 700; }
.secondary-button:hover { background: var(--navy); color: #fff; }
.compare-visual { padding: 70px 55px; background: var(--cream); }
.compare-axis {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: #829097;
  font-size: 10px;
}
.compare-axis i { height: 1px; background: var(--gold); }
.compare-row { margin-top: 42px; display: grid; grid-template-columns: 90px 1fr; gap: 10px 20px; align-items: center; }
.compare-row > span { color: var(--navy); font-size: 13px; font-weight: 700; }
.compare-row > div { height: 16px; background: rgba(18,59,86,.1); }
.compare-row > div i { display: block; height: 100%; background: var(--navy); }
.compare-row strong { grid-column: 2; color: #7b888e; font-size: 10px; font-weight: 500; }
.compare-visual > p { margin-top: 50px; color: #879297; font-size: 9px; line-height: 1.7; }

.diagnosis-section {
  padding: 130px max(24px, calc((100% - 1180px) / 2));
  background: var(--navy-2);
}
.section-shell { width: min(1180px, 100%); margin: 0 auto; }
.diagnosis-section .section-shell {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.diagnosis-intro h2, .promise-shell h2 {
  margin: 0;
  color: #fff;
  font-family: "Yu Mincho", serif;
  font-size: clamp(34px, 3.5vw, 49px);
  font-weight: 600;
  line-height: 1.55;
}
.diagnosis-intro > p:not(.eyebrow) { margin: 26px 0; color: #bdcbd1; font-size: 14px; line-height: 2; }
.promise-list { margin: 28px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; color: #dfe8e9; font-size: 12px; }
.promise-list li { display: flex; align-items: center; gap: 9px; }
.check {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #79b8a8;
  border: 1px solid #4e897a;
  border-radius: 50%;
}
.quiz-card { min-height: 530px; padding: 48px 52px; background: #fff; box-shadow: 0 30px 70px rgba(0,0,0,.16); }
.quiz-progress { display: flex; align-items: center; gap: 22px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.progress-track { flex: 1; height: 3px; background: #ebe8df; }
.progress-track i { display: block; height: 100%; background: var(--gold); transition: width .25s ease; }
.quiz-copy { margin: 42px 0 28px; }
.quiz-copy h3, .result-card h3 { margin: 0 0 12px; color: var(--navy); font-family: "Yu Mincho", serif; font-size: 27px; }
.quiz-copy p, .result-card > p { margin: 0; color: #718087; font-size: 12px; line-height: 1.8; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quiz-options button {
  min-height: 70px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dce2e3;
  background: #fff;
  color: #344b56;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  transition: border .2s, background .2s, transform .2s;
}
.quiz-options button:hover, .quiz-options button:focus-visible {
  border-color: var(--gold);
  background: #fdf9ef;
  transform: translateY(-1px);
}
.quiz-back {
  margin: 22px auto 0;
  display: block;
  border: 0;
  border-bottom: 1px solid #9aa5a8;
  background: transparent;
  color: #738087;
  font-size: 11px;
  cursor: pointer;
}
.result-label { margin-bottom: 20px !important; color: var(--gold) !important; font-size: 10px !important; font-weight: 800; letter-spacing: .12em; }
.result-tag {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 11px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}
.result-card > p:not(.result-label) { font-size: 14px; line-height: 2; }
.result-caveat {
  margin-top: 25px;
  padding: 15px;
  border-left: 3px solid var(--green);
  background: #eff7f4;
  color: #52726b;
  font-size: 10px;
  line-height: 1.7;
}
.noscript { padding: 18px; background: #fff1ee; color: #803728; line-height: 1.8; }

.process-section { padding-top: 120px; }
.process-list {
  margin: 75px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}
.process-list li { min-height: 230px; padding: 32px 25px; border-right: 1px solid var(--line); }
.process-list li:first-child { border-left: 1px solid var(--line); }
.process-list > li > span { color: var(--gold); font-size: 11px; }
.process-list h3 { margin: 38px 0 13px; color: var(--navy); font-size: 17px; }
.process-list p { margin: 0; color: #68787f; font-size: 12px; line-height: 1.8; }

.promise-section {
  padding: 110px max(24px, calc((100% - 1180px) / 2));
  background: #244d63;
}
.promise-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.promise-shell h2 { font-size: clamp(31px, 3vw, 42px); }
.promise-cards { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.promise-cards article { min-height: 150px; padding: 25px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.promise-cards span { color: var(--gold-soft); font-size: 10px; }
.promise-cards p { margin: 22px 0 0; color: #eef3f4; font-size: 12px; line-height: 1.9; }

.faq-section { padding-top: 120px; padding-bottom: 120px; }
.faq-grid { gap: 80px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 80px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font-size: 19px; font-weight: 400; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 0 0; padding: 0 40px 28px 10px; color: #67767d; font-size: 12px; line-height: 1.9; }

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 130px 24px;
  background: radial-gradient(circle at 50% 50%, rgba(36, 77, 99, .8), rgba(11,44,66,.98) 55%), var(--navy-2);
  color: #fff;
  text-align: center;
}
.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 650px;
  height: 650px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201,149,54,.18);
  border-radius: 50%;
}
.final-cta::after { width: 850px; height: 850px; }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta .eyebrow::before { display: none; }
.final-cta h2 {
  margin: 0;
  font-family: "Yu Mincho", serif;
  font-size: clamp(39px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.55;
}
.final-cta p:not(.eyebrow) { margin: 22px 0 34px; color: #c5d1d6; font-size: 13px; }
.gold-button { min-height: 62px; background: var(--gold); color: #fff; font-weight: 700; }

footer {
  padding: 65px max(24px, calc((100% - 1180px) / 2)) 25px;
  background: #081f2e;
  color: #9eb0b8;
}
.footer-inner { display: grid; grid-template-columns: .8fr 1.3fr .5fr; gap: 60px; padding-bottom: 45px; }
.footer-brand { margin: 0 0 10px !important; color: #fff; font-weight: 800; letter-spacing: .12em; }
.footer-inner p { margin: 0 0 8px; font-size: 10px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 12px; color: #dce5e8; font-size: 11px; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 9px;
}
.mobile-sticky { display: none; }

/* 10年後手残り診断 */
.ten-page { min-height: 100vh; background: var(--paper); }
.ten-header {
  width: min(1180px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.ten-back { color: var(--navy); font-size: 12px; font-weight: 700; }
.ten-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 105px 0 120px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.ten-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.45;
}
.ten-hero-copy > p:last-child { max-width: 520px; margin: 28px 0 0; color: #576970; font-size: 14px; line-height: 2; }
.ten-timeline { padding: 46px; background: var(--cream); border: 1px solid #e5ddcf; }
.ten-axis {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  color: #7d898e;
  font-size: 10px;
}
.ten-axis i { height: 1px; background: var(--gold); }
.ten-factor { padding: 25px 0; display: grid; grid-template-columns: 40px 1fr; gap: 15px; border-bottom: 1px solid #ddd7ca; }
.ten-factor:last-child { border-bottom: 0; }
.ten-factor > span { color: var(--gold); font-size: 10px; }
.ten-factor div { display: flex; justify-content: space-between; gap: 20px; }
.ten-factor strong { color: var(--navy); font-size: 14px; }
.ten-factor small { color: #748187; font-size: 10px; }
.ten-diagnostic {
  padding: 120px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 90px;
  background: var(--navy-2);
}
.ten-section-title h2 {
  margin: 0;
  color: #fff;
  font-family: "Yu Mincho", serif;
  font-size: clamp(34px, 3.5vw, 49px);
  font-weight: 600;
  line-height: 1.55;
}
.ten-section-title > p:last-child { margin: 24px 0 0; color: #b8c7cd; font-size: 12px; line-height: 1.9; }
.ten-form { padding: 45px 50px; background: #fff; }
.ten-form fieldset { margin: 0 0 29px; padding: 0; border: 0; }
.ten-form legend { margin-bottom: 12px; color: var(--navy); font-size: 13px; font-weight: 800; }
.ten-form fieldset > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.ten-form fieldset button {
  min-height: 45px;
  padding: 7px 8px;
  border: 1px solid #dbe1e2;
  background: #fff;
  color: #56666e;
  font-size: 10px;
  cursor: pointer;
}
.ten-form fieldset button:hover, .ten-form fieldset button.selected {
  border-color: var(--gold);
  background: #fbf5e8;
  color: var(--navy);
}
.ten-progress { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; color: #849095; font-size: 9px; }
.ten-progress > i { height: 3px; background: #e5e8e8; }
.ten-progress b { display: block; height: 100%; background: var(--gold); transition: width .2s ease; }
.ten-result { margin-top: 32px; padding: 28px; background: var(--cream); border-left: 4px solid var(--gold); }
.ten-result > p { margin: 0 0 10px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.ten-result h3 { margin: 0 0 12px; color: var(--navy); font-family: "Yu Mincho", serif; font-size: 22px; }
.ten-result > span { display: block; color: #64737a; font-size: 11px; line-height: 1.8; }
.ten-result .gold-button { margin-top: 20px; min-height: 54px; font-size: 12px; }
.ten-result small { display: block; margin-top: 13px; color: #899397; font-size: 8px; line-height: 1.6; }
.ten-wait { margin-top: 30px; padding: 22px; background: #f5f6f3; color: #849095; font-size: 10px; text-align: center; }
.ten-final { padding: 120px 24px; text-align: center; }
.ten-final > p { margin: 0 0 20px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.ten-final h2 {
  margin: 0 0 35px;
  color: var(--navy);
  font-family: "Yu Mincho", serif;
  font-size: clamp(34px, 4vw, 53px);
  font-weight: 600;
  line-height: 1.55;
}
.ten-footer {
  min-height: 120px;
  padding: 30px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #081f2e;
  color: #a7b6bc;
}
.ten-footer p { margin: 5px 0; font-size: 9px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); padding-top: 80px; }
  .hero { min-height: auto; padding-bottom: 80px; }
  .report-wrap { margin-top: -10px; }
  .hero-foot { display: none; }
  .section-grid, .diagnosis-section .section-shell, .promise-shell { grid-template-columns: 1fr; gap: 45px; }
  .section-copy, .report-intro { padding-top: 0; margin-top: 0; }
  .price-grid, .process-list { grid-template-columns: repeat(2, 1fr); }
  .scenario-grid { gap: 10px; }
  .scenario-card { padding: 30px 22px; }
  .report-items { grid-template-columns: repeat(2, 1fr); }
  .compare-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ten-hero, .ten-diagnostic { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 700px) {
  .header-inner { width: calc(100% - 40px); height: 68px; }
  .header-cta { display: none; }
  .brand-mark { font-size: 11px; letter-spacing: .08em; }
  .brand-sub { font-size: 9px; }
  .hero-grid, .section { width: calc(100% - 48px); }
  .hero-grid { padding: 54px 0 64px; }
  .hero-kicker {
    max-width: 100%;
    font-size: 9px;
    line-height: 1.7;
    letter-spacing: .1em;
  }
  .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: 27px;
    line-height: 1.7;
    letter-spacing: -.035em;
  }
  .hero h1 span {
    display: inline;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .hero-lead {
    width: 100%;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.9;
    overflow-wrap: anywhere;
  }
  .hero-actions {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
  .primary-button {
    width: 100%;
    max-width: 100%;
    padding: 12px 18px;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    white-space: normal;
  }
  .text-link { align-self: center; }
  .report-wrap {
    width: 100%;
    max-width: 100%;
    min-height: 400px;
    overflow: hidden;
  }
  .report-sheet {
    width: calc(100% - 18px);
    max-width: 330px;
    padding: 23px;
    transform: none;
  }
  .report-sheet-back {
    height: 410px;
    transform: translate(9px, 10px);
  }
  .section { padding: 85px 0; }
  .section-title { font-size: 30px; }
  .section-grid { gap: 25px; }
  .price-grid, .scenario-grid, .report-items, .process-list, .promise-cards { grid-template-columns: 1fr; }
  .price-card { min-height: auto; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .price-card:last-child { border-bottom: 0; }
  .price-card h3 { margin-top: 22px; }
  .scenario-section, .report-section, .diagnosis-section, .promise-section { padding-top: 85px; padding-bottom: 85px; }
  .scenario-card { min-height: auto; }
  .scenario-card.featured-card { transform: none; }
  .scenario-card > p:not(.scenario-tag) { min-height: auto; }
  .compare-copy, .compare-visual { padding: 40px 25px; }
  .quiz-card { min-height: 0; padding: 34px 22px; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-options button { min-height: 58px; }
  .process-list li { min-height: auto; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky {
    position: fixed;
    z-index: 60;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--gold);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(6,27,40,.25);
  }
  footer { padding-bottom: 100px; }

  .ten-header, .ten-hero { width: calc(100% - 36px); }
  .ten-back { font-size: 10px; }
  .ten-hero { padding: 70px 0 85px; }
  .ten-hero h1 {
    max-width: 100%;
    font-size: 32px;
    overflow-wrap: anywhere;
  }
  .ten-timeline, .ten-form { padding: 30px 22px; }
  .ten-factor div { flex-direction: column; gap: 5px; }
  .ten-diagnostic { padding-top: 85px; padding-bottom: 85px; }
  .ten-form fieldset > div { grid-template-columns: 1fr 1fr; }
  .ten-result .gold-button { width: 100%; padding: 10px 14px; text-align: center; }
  .ten-footer { align-items: flex-start; flex-direction: column; gap: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
