:root {
  --white: #FFFFFF;
  --bg: #F5EFE6;
  --bg-2: #EFE4D6;
  --navy: #12263A;
  --navy-2: #17324A;
  --gold: #D8BE78;
  --gold-2: #C9A85E;
  --text: #172334;
  --body: #3F3A34;
  --note: #7D7468;
  --line: rgba(216, 190, 120, .62);
  --soft: rgba(18, 38, 58, .10);
  --panel: rgba(255, 255, 255, .74);
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.82;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, .serif {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  color: var(--text);
  font-weight: 500;
}
h1, h2, h3, .lead, .btn, summary { word-break: auto-phrase; text-wrap: balance; }
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 10px 16px;
  background: var(--navy);
  color: var(--white);
}
.skip-link:focus { left: 8px; top: 8px; }

/* Header: sample22 two-tier format, recolored */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(216, 190, 120, .34);
  backdrop-filter: blur(18px);
}
.hd-util { border-bottom: 1px solid rgba(216, 190, 120, .26); }
.hd-util-inner, .header-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.hd-util-inner { padding: 8px 0; }
.hd-util-links, .hd-util-right, .hd-sns { display: flex; align-items: center; gap: 18px; }
.hd-util a, .hd-util span, .hd-sns a { color: var(--note); font-size: 12px; }
.hd-util a:hover, .hd-sns a:hover { color: var(--navy); }
.header-inner { min-height: 72px; padding: 12px 0; }
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img, .footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand strong, .footer-brand strong {
  display: grid;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: 0;
}
.brand span, .footer-brand span {
  margin-top: 3px;
  color: var(--note);
  font-size: 11px;
  font-weight: 600;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text);
  font-size: 15px;
}
.nav > a { font-weight: 700; position: relative; }
.nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease-in-out;
}
.nav > a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--navy); }
.nav .btn::after { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 700;
  line-height: 1.35;
  transition: transform .2s ease-out, border-color .2s ease-out, background .2s ease-out, color .2s ease-out;
}
.btn:hover { transform: translateY(-2px); border-color: var(--navy); }
.btn.primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn.gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn.ghost { background: transparent; color: var(--navy); }

/* Hero: sample22 line-draw structure */
.hero {
  position: relative;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 48%, var(--bg-2) 48%, var(--bg-2) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .45fr .55fr;
  align-items: center;
  gap: 58px;
  padding: 58px 0 78px;
}
.hero-copy { position: relative; padding-left: 20px; }
.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 2px;
  height: 270px;
  background: linear-gradient(var(--gold), rgba(18, 38, 58, .16));
}
.eyebrow, .micro-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--note);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}
.hero h1 { max-width: 640px; font-size: 58px; line-height: 1.2; }
.hero h1 .line { display: block; white-space: nowrap; }
.hero .lead { max-width: 600px; margin-top: 24px; font-size: 17px; color: var(--body); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 18px; color: var(--note); font-size: 14px; }
.hero-visual { position: relative; min-height: 530px; }
.hero-photo {
  position: relative;
  z-index: 1;
  width: 92%;
  margin-left: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 28px 0 0 28px;
  box-shadow: 0 28px 80px rgba(18, 38, 58, .18);
}
.line-stage {
  position: absolute;
  inset: -46px -16px auto auto;
  z-index: 3;
  width: min(760px, 100%);
  height: 560px;
  pointer-events: none;
}
.line-stage path { stroke-dasharray: 1400; stroke-dashoffset: 0; opacity: .88; }
.j .line-stage path { animation: lineDraw 4.8s ease-in-out infinite alternate; }
.j .line-stage path:nth-child(2) { animation-delay: .35s; }
.j .line-stage path:nth-child(3) { animation-delay: .7s; }
@keyframes lineDraw {
  from { stroke-dashoffset: 1380; opacity: .28; }
  to { stroke-dashoffset: 0; opacity: .92; }
}
.mini-badges {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  width: min(620px, 94%);
}
.mini-badges img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 34px rgba(18, 38, 58, .10);
}

section { position: relative; padding: 96px 0; overflow: hidden; }
.section-inner, .wrap { position: relative; z-index: 1; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.section-title { max-width: 760px; margin-bottom: 34px; font-size: 38px; line-height: 1.36; }
.section-lead { max-width: 690px; font-size: 17px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1); }
.reveal.is-in { opacity: 1; transform: none; }
.decor { position: absolute; pointer-events: none; opacity: .16; mix-blend-mode: multiply; }

/* Intro bubbles */
.sc-intro { background: var(--bg); }
.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: start; }
.intro-copy { position: sticky; top: 128px; }
.bubble-field { min-height: 430px; position: relative; }
.bubble {
  position: absolute;
  max-width: 330px;
  padding: 18px 22px;
  border: 1px solid rgba(216, 190, 120, .52);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 40px rgba(18, 38, 58, .08);
  color: var(--text);
  font-weight: 700;
}
.bubble:nth-child(1) { left: 4%; top: 2%; }
.bubble:nth-child(2) { right: 2%; top: 18%; }
.bubble:nth-child(3) { left: 18%; top: 38%; }
.bubble:nth-child(4) { right: 12%; top: 58%; }
.bubble:nth-child(5) { left: 0; bottom: 0; }

/* Reasons */
.sc-reasons { background: var(--white); }
.reason-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: stretch; }
.reason-stack { display: grid; gap: 18px; }
.reason-card {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: 28px 30px 28px 96px;
  border-top: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(245, 239, 230, .84), rgba(255,255,255,.84));
}
.reason-card .num {
  position: absolute;
  left: 26px;
  top: 23px;
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}
.reason-card h3 { margin-bottom: 10px; font-size: 24px; }
.reason-photo { min-height: 100%; border-radius: 0 26px 26px 0; object-fit: cover; box-shadow: 0 24px 70px rgba(18,38,58,.14); }

/* VS */
.sc-vs-section { background: var(--navy); color: rgba(255,255,255,.82); }
.sc-vs-section h2, .sc-vs-section h3 { color: var(--white); }
.sc-vs-section .eyebrow { color: var(--gold); }
.vs-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 0; margin-top: 36px; border: 1px solid rgba(216,190,120,.38); }
.vs-panel { min-height: 360px; padding: 38px; }
.vs-panel:first-child { background: rgba(255,255,255,.06); }
.vs-panel:last-child { background: rgba(216,190,120,.12); border-left: 1px solid rgba(216,190,120,.38); }
.vs-kicker { color: var(--gold); font-size: 13px; font-weight: 800; margin-bottom: 18px; }
.vs-panel ul { display: grid; gap: 14px; margin-top: 20px; }
.vs-panel li { padding-left: 18px; border-left: 2px solid rgba(216,190,120,.52); }

/* Features */
.sc-features { background: var(--bg); }
.feature-tabs { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.feature-list { display: grid; gap: 12px; }
.feature-list a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.feature-list a:last-child { border-bottom: 1px solid var(--line); }
.feature-list strong { color: var(--navy); font-size: 20px; }
.feature-list span { color: var(--gold-2); font-family: Georgia, serif; font-size: 24px; }
.feature-board { display: grid; gap: 18px; }
.feature-item { position: relative; display: grid; grid-template-columns: 160px 1fr; gap: 22px; align-items: center; padding: 18px; background: rgba(255,255,255,.64); }
.feature-item img { width: 180px; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-item h3 { font-size: 22px; margin-bottom: 8px; }
.feature-num {
  position: absolute;
  left: 18px;
  top: 18px;
  min-width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18,38,58,.86);
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1;
}
.price-note { color: var(--navy); font-weight: 800; }

/* Message */
.proof { background: var(--white); }
.message-spread { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.message-photo { position: relative; }
.message-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 24px 0 24px 0; }
.message-photo::after {
  content: "";
  position: absolute;
  inset: 28px -20px -20px 28px;
  z-index: -1;
  border: 1px solid var(--gold);
}
.dropcap::first-letter { float: left; padding: 10px 14px 0 0; color: var(--gold-2); font-family: Georgia, serif; font-size: 76px; line-height: .8; }
.sign { margin-top: 24px; color: var(--navy); font-weight: 800; }

/* Numbers */
.sc-numbers-section { background: var(--bg-2); }
.number-band { display: grid; grid-template-columns: .75fr 1.25fr; gap: 44px; align-items: center; }
#numbers-title { font-size: clamp(28px, 3.2vw, 34px); }
.pull-number { color: var(--navy); font-family: Georgia, serif; font-size: clamp(3.2rem, 6vw, 4.6rem); line-height: .98; word-break: keep-all; }
.pull-number span { display: block; margin-bottom: 8px; color: var(--note); font-family: inherit; font-size: 15px; font-weight: 800; letter-spacing: .05em; }
.number-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.number-item { min-height: 170px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.52); }
.number-item strong { display: block; color: var(--gold-2); font-family: Georgia, serif; font-size: clamp(28px, 3vw, 36px); line-height: 1.08; overflow-wrap: anywhere; }
.number-item span { display: block; margin-top: 0; color: var(--navy); font-weight: 800; }
.number-item strong + span { margin-top: 12px; }

/* Voice */
.sc-voice { background: var(--white); }
.voice-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 42px; align-items: start; }
.voice-list { display: grid; gap: 18px; }
.voice-card { display: grid; grid-template-columns: 112px 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--line); }
.voice-card:last-child { border-bottom: 1px solid var(--line); }
.voice-card img { width: 112px; height: 112px; object-fit: cover; border-radius: 999px; }
.voice-card h3 { font-size: 21px; margin-bottom: 8px; }
.voice-card small { color: var(--note); }

/* Blog */
.sc-blog { background: var(--bg); }
.archive-title span { display: block; }
.blog-list { display: grid; gap: 1px; margin-top: 34px; background: var(--line); }
.blog-item { position: relative; display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: center; padding: 14px 52px 14px 14px; background: rgba(255,255,255,.72); }
.blog-item img { width: 150px; aspect-ratio: 4 / 3; object-fit: cover; }
.blog-item h3 { font-size: 20px; line-height: 1.45; }
.blog-item time { color: var(--note); font-size: 13px; }
.blog-item .arrow { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--gold-2); font-size: 28px; }

/* Menu / plan */
.menu { background: var(--white); }
.plan-row { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid var(--line); }
.plan { display: grid; grid-template-columns: .72fr 1fr auto; gap: 24px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.plan h3 { font-size: 24px; }
.plan-price { color: var(--navy); font-family: Georgia, serif; font-size: 32px; }
.plan-price small { display: block; color: var(--note); font-family: inherit; font-size: 12px; }
.route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.route-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.route-card.priority { background: var(--navy); color: rgba(255,255,255,.82); }
.route-card.priority h3 { color: var(--white); }
.route-card .num { color: var(--gold-2); font-family: Georgia, serif; font-size: 34px; line-height: 1; }
.route-card h3 { margin-top: 18px; font-size: 25px; }
.route-card p { margin-top: 14px; }
.route-card .btn { margin-top: auto; }
.topic-finder { background: var(--white); border-bottom: 1px solid var(--line); }
.topic-finder__head {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, .28fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}
.topic-finder__head p { color: var(--note); }
.topic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.topic-card {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  background: var(--bg);
  transition: transform .25s ease, background .25s ease;
}
.topic-card:hover { transform: translateY(-3px); background: var(--white); }
.topic-card span { color: var(--gold-2); font-family: Georgia, serif; font-size: 34px; line-height: 1; }
.topic-card h3 { margin-top: 20px; font-size: 28px; }
.topic-card p { margin-top: 12px; color: var(--body); }
.topic-card strong { margin-top: 20px; color: var(--navy); font-size: 13px; letter-spacing: .05em; }

/* Process */
.sc-process { background: var(--bg-2); }
.process-line { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-top: 34px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-step { min-height: 230px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.36); }
.process-step span { color: var(--gold-2); font-family: Georgia, serif; font-size: 34px; }
.process-step h3 { margin: 18px 0 10px; font-size: 22px; }

/* FAQ */
.faq { background: var(--white); }
.faq-list { display: grid; gap: 14px; margin-top: 30px; }
details { border-top: 1px solid var(--line); background: rgba(245,239,230,.36); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; padding: 22px 24px; color: var(--navy); font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
details p { padding: 0 24px 24px; }

/* Final CTA */
.final { padding: 118px 0; background: var(--navy); color: rgba(255,255,255,.82); }
.final h2 { color: var(--white); font-size: 42px; }
.final .section-lead { margin-top: 18px; color: rgba(255,255,255,.82); }
.final-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.final .btn.ghost { color: var(--white); border-color: rgba(255,255,255,.42); }

/* Footer */
.site-footer { background: #0D1E2F; color: rgba(255,255,255,.76); padding: 68px 0 26px; }
.footer-inner, .footer-grid { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr .9fr; gap: 42px; }
.footer-brand strong { color: var(--white); }
.footer-brand span { color: rgba(255,255,255,.62); }
.footer-intro { margin-top: 18px; }
.footer-nav, .footer-sns { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.footer-title { color: var(--gold); font-weight: 800; margin-bottom: 12px; }
.footer-info { color: rgba(255,255,255,.70); font-size: 13px; }
.copy { width: min(var(--max), calc(100% - 40px)); margin: 34px auto 0; padding-top: 20px; border-top: 1px solid rgba(216,190,120,.24); color: rgba(255,255,255,.52); font-size: 12px; }

/* Fixed pages */
.page-hero { padding: 104px 0 72px; background: linear-gradient(135deg, var(--navy), #1B3B58); color: rgba(255,255,255,.82); }
.page-hero h1 { color: var(--white); font-size: 44px; line-height: 1.28; }
.page-hero p { max-width: 720px; margin-top: 16px; }
.crumb { margin-bottom: 18px; color: var(--gold); font-size: 12px; font-weight: 800; }
.sub-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: start; }
.sub-aside { position: sticky; top: 126px; }
.sub-block { padding: 30px 0; border-top: 1px solid var(--line); }
.sub-block:last-child { border-bottom: 1px solid var(--line); }
.sub-block h2, .sub-block h3 { margin-bottom: 12px; font-size: 28px; }
.table-list { display: grid; gap: 1px; background: var(--line); }
.table-list div { display: grid; grid-template-columns: 180px 1fr; gap: 22px; padding: 18px; background: rgba(255,255,255,.72); }
.policy-body { padding: 38px; background: rgba(255,255,255,.72); }
.policy-body h2 { margin-top: 32px; margin-bottom: 12px; font-size: 26px; }
.policy-body p, .policy-body li { margin-top: 14px; }
.policy-body ul { list-style: disc; padding-left: 1.4em; }
.contact-panel { display: grid; grid-template-columns: .95fr 1.05fr; gap: 32px; align-items: stretch; }
.contact-card { padding: 34px; background: rgba(255,255,255,.74); border: 1px solid var(--line); }
.form-slot { margin-top: 20px; padding: 24px; border: 1px dashed var(--gold-2); background: rgba(245,239,230,.72); }
.article-body img { width: 100%; max-height: 430px; object-fit: cover; margin-bottom: 28px; }
.article-body h2 { margin-top: 34px; margin-bottom: 12px; font-size: 28px; }
.article-body p { margin-top: 16px; }

@media (hover: none) {
  .btn, .nav a, summary { min-height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 960px) {
  .hd-util { display: none; }
  .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 6px; gap: 18px; }
  .hero, .hero-inner { min-height: auto; }
  .hero { background: var(--white); }
  .hero-inner, .intro-grid, .reason-layout, .vs-grid, .feature-tabs, .message-spread, .number-band, .voice-layout, .sub-layout, .contact-panel { grid-template-columns: 1fr; }
  .intro-copy, .sub-aside { position: static; }
  .hero-visual { min-height: 430px; }
  .hero-photo { width: 100%; border-radius: 24px; }
  .mini-badges { position: relative; width: 100%; margin-top: 14px; }
  .line-stage { inset: -20px -18px auto auto; height: 450px; }
  .reason-photo { border-radius: 24px; min-height: 320px; }
  .number-grid, .process-line { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .blog-item, .plan, .table-list div, .route-grid, .topic-finder__head, .topic-grid { grid-template-columns: 1fr; }
  .blog-item img { width: 100%; }
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 68px 0; }
  .hero-inner { width: min(100% - 28px, 1360px); padding: 42px 0 62px; gap: 34px; }
  .hero-copy { padding-left: 14px; }
  .hero-copy::before { height: 220px; }
  .hero h1 { font-size: 36px; line-height: 1.24; }
  .hero h1 .line { white-space: normal; }
  .section-title { font-size: 30px; }
  #numbers-title, #archive-title { font-size: 27px; line-height: 1.42; }
  .section-lead { font-size: 16px; }
  .bubble-field { min-height: auto; display: grid; gap: 12px; }
  .bubble { position: static; max-width: none; border-radius: 18px; }
  .reason-card { padding: 24px; }
  .reason-card .num { position: static; display: block; margin-bottom: 10px; }
  .vs-panel { padding: 28px; min-height: auto; }
  .vs-panel:last-child { border-left: 0; border-top: 1px solid rgba(216,190,120,.38); }
  .feature-item, .voice-card { grid-template-columns: 1fr; }
  .feature-item img, .voice-card img { width: 100%; height: auto; border-radius: 18px; }
  .number-grid, .process-line { grid-template-columns: 1fr; }
  .pull-number { font-size: 4rem; }
  .final h2, .page-hero h1 { font-size: 34px; }
  .footer-nav, .footer-sns, .final-actions, .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* Hero impact override 2026-06-22 */
.hero {
  position: relative;
  width: 100%;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 190, 120, .22), transparent 28%),
    linear-gradient(100deg, #0D1E2F 0%, #12263A 48%, rgba(18, 38, 58, .82) 62%, rgba(18, 38, 58, .35) 100%);
}
.hero::after {
  content: "BRAIN WELL-BEING";
  position: absolute;
  right: -3vw;
  bottom: 4vw;
  z-index: -1;
  color: rgba(216,190,120,.11);
  font-family: Georgia, serif;
  font-size: clamp(64px, 12vw, 170px);
  line-height: .8;
  letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 48px));
  min-height: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .50fr .50fr;
  align-items: center;
  gap: 58px;
  padding: 70px 0 82px;
}
.hero-copy { position: relative; padding-left: 0; }
.hero-copy::before { display: none; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { max-width: 760px; color: var(--white); font-size: clamp(56px, 5.3vw, 86px); line-height: 1.08; }
.hero h1 .line { display: block; white-space: nowrap; }
.hero .lead { max-width: 650px; margin-top: 26px; color: rgba(255,255,255,.84); font-size: 18px; }
.hero .btn.ghost.light { color: var(--white); border-color: rgba(255,255,255,.42); }
.hero .btn.ghost.light:hover { background: rgba(255,255,255,.08); border-color: var(--gold); }
.hero-note { margin-top: 28px; color: rgba(255,255,255,.64); font-size: 14px; }
.hero-visual { position: relative; min-height: 680px; align-self: stretch; display: flex; align-items: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 42px -20px 42px 42px;
  z-index: 0;
  border: 1px solid rgba(216,190,120,.54);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(18,38,58,.62), rgba(18,38,58,.08) 40%, rgba(216,190,120,.12)),
    radial-gradient(circle at 70% 18%, rgba(216,190,120,.26), transparent 24%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  height: 680px;
  margin-left: auto;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: left center;
  border-radius: 0 0 0 92px;
  box-shadow: 0 34px 90px rgba(0,0,0,.32);
  filter: saturate(.86) contrast(1.04) brightness(.92);
  opacity: .92;
}
.line-stage { inset: 12px -34px auto auto; z-index: 3; width: min(720px, 100%); height: 560px; opacity: .82; }
.hero-floating-note {
  position: absolute;
  z-index: 4;
  right: clamp(16px, 4vw, 54px);
  bottom: 40px;
  width: min(320px, 70%);
  padding: 18px 20px;
  border: 1px solid rgba(216,190,120,.58);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 46px rgba(18,38,58,.18);
  color: var(--navy);
}
.hero-floating-note strong { display: block; color: var(--gold-2); font-family: Georgia, serif; font-size: 24px; line-height: 1; }
.hero-floating-note span { display: block; margin-top: 8px; font-weight: 800; line-height: 1.45; }
@media (max-width: 960px) {
  .hero { min-height: auto; background: var(--navy); }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; padding: 46px 0 68px; gap: 34px; }
  .hero h1 { font-size: 42px; }
  .hero h1 .line { white-space: normal; }
  .hero-visual { min-height: 430px; }
  .hero-photo { width: 100%; height: 430px; border-radius: 28px; }
  .hero-floating-note { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .line-stage { inset: -12px -28px auto auto; height: 430px; }
}
@media (max-width: 768px) {
  .hero-inner { width: min(100% - 28px, 1360px); padding: 40px 0 58px; }
  .hero h1 { font-size: 38px; }
  .hero .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* WordPress theme additions */
.admin-bar .site-header { top: 32px; }
.site-nav-menu { display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.site-nav-menu li { display: flex; align-items: center; }
.site-nav-menu a { font-weight: 700; position: relative; }
.site-nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease-in-out;
}
.site-nav-menu a:hover::after,
.site-nav-menu .current-menu-item > a::after,
.site-nav-menu .current_page_item > a::after { width: 100%; }
.page-sec { padding: 72px 0; }
.p-newsgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.p-card { display: grid; min-height: 100%; background: rgba(255,255,255,.74); border: 1px solid var(--line); }
.p-card__ph { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-2); }
.p-card__ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.p-card:hover .p-card__ph img { transform: scale(1.04); }
.p-card__bd { padding: 22px; }
.p-card__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; color: var(--note); font-size: 13px; font-weight: 700; }
.p-card__ttl { font-size: 22px; line-height: 1.45; }
.p-card__ex { margin-top: 12px; color: var(--body); }
.p-card__more { display: inline-block; margin-top: 16px; color: var(--gold-2); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.post-hero { position: relative; padding: 120px 0 78px; overflow: hidden; background: linear-gradient(135deg, var(--navy), #1B3B58); color: rgba(255,255,255,.82); }
.post-hero__bg { position: absolute; inset: 0; opacity: .18; }
.post-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.post-hero .wrap { position: relative; z-index: 1; }
.post-hero h1 { max-width: 880px; color: var(--white); font-size: clamp(34px, 5vw, 56px); line-height: 1.32; }
.post-hero__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; color: var(--gold); font-weight: 800; }
.post-wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 68px 0; display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; }
.post-main { min-width: 0; }
.post-figure { margin: 0 0 34px; }
.post-figure img { width: 100%; border-radius: 0; }
.post-body { padding: 42px; background: rgba(255,255,255,.76); border: 1px solid var(--line); }
.post-body h2 { margin: 40px 0 14px; font-size: 30px; }
.post-body h2:first-child { margin-top: 0; }
.post-body p { margin-top: 16px; }
.post-body a { color: var(--navy); border-bottom: 1px solid var(--gold); font-weight: 700; }
.post-foot { margin-top: 28px; }
.post-foot__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.post-foot__back { color: var(--navy); font-weight: 800; }
.post-side { display: grid; align-content: start; gap: 18px; }
.widget { padding: 24px; background: rgba(255,255,255,.72); border: 1px solid var(--line); }
.widget__ttl { margin-bottom: 12px; font-size: 21px; }
.widget ul { display: grid; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nav-links { display: flex; gap: 12px; margin-top: 34px; }
.nav-links a, .nav-links span { padding: 8px 12px; border: 1px solid var(--line); background: rgba(255,255,255,.72); }
@media (max-width: 900px) {
  .site-nav-menu { display: none; }
  .p-newsgrid, .post-wrap { grid-template-columns: 1fr; }
  .post-body { padding: 28px; }
}
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
