:root {
  --navy: #071a43;
  --navy-2: #0a2456;
  --blue: #126bff;
  --blue-soft: #eaf4ff;
  --green: #22866e;
  --green-soft: #edf8f4;
  --red: #d63f4b;
  --orange: #f1872e;
  --orange-soft: #fff3e9;
  --ink: #0b1e43;
  --muted: #586a83;
  --line: #d8e6f4;
  --pale: #f3f8fd;
  --white: #fff;
  --shadow: 0 12px 36px rgba(19, 63, 118, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }

.site-header {
  height: 88px;
  padding: 0 max(28px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid #e7eef6;
  background: rgba(255,255,255,.96);
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .22em; white-space: nowrap; }
.brand-logo-mark {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
}
.site-header nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.site-header nav a { font-size: 15px; font-weight: 800; }
.site-header nav a.active, .site-header nav a:hover { color: var(--blue); }
.header-cta { padding: 15px 22px; background: var(--navy); color: #fff; font-size: 14px; font-weight: 800; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; font-size: 26px; }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(460px, .9fr) minmax(560px, 1.1fr);
  max-width: 1440px;
  margin: auto;
}
.hero-copy { padding: 70px 58px 62px max(48px, calc((100vw - 1320px) / 2)); }
.breadcrumbs { margin: 0 0 34px; color: #708098; font-size: 12px; }
.page-label { margin: 0 0 12px; color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .14em; }
.page-title { margin: 0 0 24px; font-size: 38px; line-height: 1.35; }
.hero h1 { margin: 0; font-size: clamp(42px, 4vw, 62px); line-height: 1.3; letter-spacing: -.055em; }
.hero h1 .accent { color: var(--green); }
.hero h1 .red { color: var(--red); }
.hero h1 .blue { color: var(--blue); }
.hero h1 .orange { color: var(--orange); }
.hero-lead { margin: 24px 0 0; color: #3d4f6a; font-size: 17px; font-weight: 700; }
.hero-lead-desktop,
.hero-lead-mobile { display: none; }
.actions { display: flex; gap: 14px; margin-top: 30px; }
.button {
  min-height: 58px; padding: 0 26px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--blue); color: var(--blue); background: #fff; font-weight: 900; font-size: 14px;
}
.button.primary { color: #fff; border-color: var(--blue); background: linear-gradient(120deg,#1978ff,#0756db); box-shadow: 0 12px 24px rgba(18,107,255,.19); }
.button::after { content: "›"; margin-left: 18px; font-size: 22px; }

.hero-visual {
  min-height: 650px;
  padding: 88px 48px 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(rgba(31,113,220,.08) 1px, transparent 1px),
    linear-gradient(90deg,rgba(31,113,220,.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 52%, rgba(25,107,255,.25), transparent 36%),
    var(--navy);
  background-size: 42px 42px, 42px 42px, auto, auto;
}
.change-map { width: min(720px, 100%); }
.map-heading { text-align: center; font-size: 22px; font-weight: 900; margin-bottom: 28px; }
.map-heading-mobile { display: none; }
.map-grid { display: grid; grid-template-columns: 1fr 150px 1fr; align-items: center; gap: 18px; }
.map-side { display: grid; gap: 15px; }
.map-item {
  min-height: 60px; padding: 13px 15px; border: 1px solid rgba(118,181,255,.48);
  border-radius: 9px; display: flex; align-items: center; gap: 12px;
  background: rgba(5,25,66,.75); font-size: 13px; font-weight: 800;
}
.map-item.after { border-color: rgba(52,211,153,.55); }
.map-icon { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #4c99ff; color: #5ba3ff; border-radius: 50%; }
.map-item.after .map-icon { border-color: #4adeaa; color: #4adeaa; }
.map-core {
  width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: #fff; color: var(--ink); border: 10px solid rgba(29,110,255,.24);
  box-shadow: 0 0 45px rgba(28,116,255,.42); font-size: 18px; font-weight: 900;
}
.map-core small { display: block; color: var(--blue); font-size: 11px; }
.map-result { margin-top: 26px; text-align: center; color: #ff9b42; font-size: 23px; font-weight: 900; }

.section { padding: 82px max(48px, calc((100vw - 1300px) / 2)); }
.section.pale { background: var(--pale); }
.section.white { background: #fff; }
.section-head { max-width: 850px; margin: 0 auto 42px; text-align: center; }
.section-kicker { margin: 0 0 8px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .13em; }
.section h2 { margin: 0; font-size: 32px; line-height: 1.45; letter-spacing: -.02em; }
.section-title-desktop > span { display: block; }
.section-title-mobile { display: none; }
.home-voices-title-mobile,
.home-metrics-title-mobile { display: none; }
.sanboh-page-home .home-metrics-title-desktop {
  display: block;
  text-align: center;
  white-space: nowrap;
}
.section-intro { margin: 12px auto 0; max-width: 760px; color: var(--muted); }
.section-intro-mobile { display: none; }

.quote-grid, .card-grid, .metric-grid, .process-grid, .plan-grid { display: grid; gap: 20px; }
.quote-grid { grid-template-columns: repeat(4, 1fr); }
.quote-card {
  min-height: 110px; padding: 25px; border: 1px solid #cfe1f3; border-radius: 10px; background: #fff;
  box-shadow: 0 7px 22px rgba(20,72,132,.04); font-weight: 800;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.quote-card-default,
.quote-card-desktop { width: 100%; }
.quote-card-desktop { display: none; }

.metric-grid { grid-template-columns: repeat(3, 1fr); }
.metric {
  padding: 27px 25px; border-top: 4px solid var(--blue); background: #fff; box-shadow: var(--shadow);
}
.metric small { color: #718198; }
.metric strong { display: block; margin: 8px 0 2px; font-size: 28px; line-height: 1.4; }
.metric strong span { color: var(--orange); }
.metric p { margin: 0; color: var(--green); font-size: 12px; font-weight: 900; }
.metric.is-change {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.metric-change { margin: 12px 0 !important; }
.metric-change .metric-before,
.metric-change .metric-arrow,
.metric-change .metric-after { display: block; }
.metric-change .metric-before { color: var(--ink); }
.metric-change .metric-arrow {
  margin: 3px 0;
  color: var(--ink);
  font-size: .8em;
  font-weight: 700;
}
.metric-change .metric-after { color: var(--orange); }

.mission-band {
  padding: 62px max(48px, calc((100vw - 1300px) / 2));
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: center;
  text-align: center;
  background: linear-gradient(120deg,#071a43,#0c2b67); color: #fff;
}
.mission-band h2 { margin: 0 0 10px; font-size: 30px; }
.mission-band p { margin: 0; color: #d9e5f8; }
.mission-band strong {
  display: block;
  margin-top: 24px;
  color: #ff9a42;
  font-size: 22px;
  text-align: center;
}
.sanboh-page-home .mission-band {
  grid-template-columns: 1fr;
  text-align: center;
}
.sanboh-page-home .mission-band strong {
  display: block;
  margin-top: 24px;
  text-align: center;
}
.sanboh-page-about .mission-band p {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
.sanboh-page-about .mission-band strong {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.6;
}
.home-mission-title-mobile,
.home-mission-body-mobile,
.mission-title-mobile,
.mission-body-mobile,
.mission-result-mobile { display: none; }

.card-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.info-card {
  min-height: 210px; padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow);
}
.info-card.green { border-top: 4px solid var(--green); }
.info-card.blue { border-top: 4px solid var(--blue); }
.info-card.orange { border-top: 4px solid var(--orange); }
.card-no { color: var(--blue); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.info-card h3 { margin: 9px 0; font-size: 21px; line-height: 1.5; }
.info-card p { margin: 0; color: var(--muted); font-size: 14px; }
.info-card ul { margin: 14px 0 0; padding-left: 20px; color: var(--muted); font-size: 13px; }
.outcome { margin-top: 18px; padding-top: 15px; border-top: 1px dashed var(--line); color: var(--green); font-weight: 900; font-size: 13px; }
.info-card .outcome-label,
.info-card .outcome-text { display: block; }
.info-card .outcome-text { margin-top: 4px; }
.info-card .outcome-text-mobile { display: none; }

.split {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 38px; align-items: center;
  padding: 38px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(135deg,#fff,#f0f8ff);
}
.split h3 { margin: 0 0 14px; font-size: 28px; }
.split p { color: var(--muted); }
.mission-vision-section .split h3 { display: none; }
.mission-vision-body-desktop .mission-vision-message {
  margin: 0;
  text-align: left;
}
.mission-vision-body-desktop .mission-vision-message + .mission-vision-message {
  margin-top: 30px;
}
.mission-vision-body-desktop .mission-vision-label {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}
.mission-vision-body-desktop .mission-vision-copy {
  display: block;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 800;
  line-height: 1.55;
}
.mission-vision-body-desktop .mission-vision-message.mission .mission-vision-copy {
  color: #d94a42;
}
.mission-vision-body-desktop .mission-vision-message.vision .mission-vision-copy {
  color: var(--green);
}
.mission-vision-body-mobile { display: none; }
.vision-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.vision-step { padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: #fff; text-align: center; font-weight: 900; }
.vision-step b { display: block; color: var(--blue); font-size: 26px; }

.process-grid { grid-template-columns: repeat(5, 1fr); }
.process-item { position: relative; text-align: center; padding: 18px 14px; }
.process-item b {
  width: 58px; height: 58px; margin: auto; display: grid; place-items: center; border: 2px solid var(--blue);
  border-radius: 50%; color: var(--blue); font-size: 18px; background: #fff;
}
.process-item h3 { margin: 13px 0 3px; font-size: 16px; }
.process-item p { margin: 0; color: var(--muted); font-size: 12px; }
.process-item:not(:last-child)::after { content: "→"; position: absolute; right: -18px; top: 33px; color: #80a9d9; }

.comparison { width: 100%; border-collapse: collapse; background: #fff; box-shadow: var(--shadow); }
.comparison th, .comparison td { padding: 16px; border: 1px solid var(--line); text-align: left; font-size: 13px; }
.comparison th { background: #edf5ff; }
.comparison td.highlight { color: var(--blue); font-weight: 900; background: #f6fbff; }

.case-card { min-height: 270px; }
.case-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 12px; }
.tag { padding: 4px 9px; border-radius: 99px; color: var(--blue); background: var(--blue-soft); font-size: 10px; font-weight: 900; }
.case-title-mobile { display: none; }
.before-after { margin-top: 16px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; }
.before-after span { padding: 10px; background: var(--pale); border-radius: 7px; font-size: 12px; }
.before-after b { color: var(--orange); }

.plan-grid { grid-template-columns: repeat(4,1fr); }
.plan { display: flex; flex-direction: column; padding: 28px 22px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.plan.recommended { border: 2px solid var(--blue); transform: translateY(-8px); box-shadow: 0 17px 40px rgba(18,107,255,.14); }
.plan .badge { display: inline-block; padding: 4px 10px; background: var(--blue); color: #fff; border-radius: 99px; font-size: 10px; font-weight: 900; }
.plan h3 { margin: 12px 0 8px; font-size: 20px; }
.plan ul { padding-left: 20px; color: var(--muted); font-size: 13px; }
.plan .price { margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line); }
.plan .price span { display: block; color: var(--muted); font-size: 11px; font-weight: 800; }
.plan .price strong { display: block; margin-top: 2px; font-size: 18px; line-height: 1.5; }
.plan-note { margin-top: 13px; color: var(--muted); font-size: 11px; line-height: 1.75; }
.plan-note p { margin: 0; }
.plan-note p + p { margin-top: 7px; }

.faq-tools { max-width: 1020px; margin: 0 auto 26px; display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.faq-tools input { min-height: 58px; padding: 0 20px; border: 1px solid #b9d4f1; border-radius: 8px; }
.faq-tools button { padding: 0 30px; border: 0; color: #fff; background: var(--blue); font-weight: 900; }
.faq-list { max-width: 1050px; margin: auto; }
.faq-group { margin-bottom: 34px; }
.faq-group h3 { color: var(--green); }
.faq-item { border-bottom: 1px solid var(--line); background: #fff; }
.faq-question { width: 100%; padding: 19px 22px; border: 0; background: transparent; text-align: left; color: var(--ink); font-weight: 900; cursor: pointer; }
.faq-question::after { content: "+"; float: right; color: var(--blue); }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; }
.section-anchor, #line-contact, #contact-form, .info-card[id] { scroll-margin-top: 90px; }
.contact-form, .contact-aside { padding: 34px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 190px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid #e6eef6; }
.form-row label { font-weight: 900; font-size: 13px; }
.form-row input, .form-row textarea, .form-row select { width: 100%; padding: 13px; border: 1px solid #c7dbef; border-radius: 7px; background: #fbfdff; }
.form-row textarea { min-height: 130px; }
.contact-aside h3 { margin-top: 0; }
.contact-aside li { margin-bottom: 12px; color: var(--muted); font-size: 13px; }

.page-cta { padding: 65px 25px; text-align: center; color: #fff; background: linear-gradient(120deg,#071a43,#0c2f72); }
.page-cta h2 { margin: 0 0 9px; font-size: 30px; }
.page-cta p { margin: 0 0 23px; color: #dbe6f7; }
.page-cta-title-mobile,
.page-cta-body-mobile { display: none; }
.page-cta .button { min-width: 330px; }

.line-contact {
  padding: 72px 24px;
  background: var(--pale);
}
.line-contact__card {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 42px 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 54px;
  align-items: center;
}
.line-contact__label {
  margin: 0 0 10px;
  color: #06b64b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.line-contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.5;
}
.line-contact__description {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.line-contact__desktop {
  text-align: center;
}
.line-contact__qr-link {
  display: block;
  width: 190px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid #d7e3df;
  border-radius: 10px;
  background: #fff;
}
.line-contact__qr-link img {
  display: block;
  width: 100%;
  height: auto;
}
.line-contact__desktop p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.line-contact__mobile,
.line-contact__mobile-break {
  display: none;
}

.site-footer { padding: 48px max(40px, calc((100vw - 1300px) / 2)) 25px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(5,1fr); gap: 26px; }
.footer-grid > div { align-self: start; }
.footer-brand-column { margin-top: -6px; }
.site-footer h4 { margin: 0 0 12px; font-size: 13px; }
.site-footer a, .site-footer p { display: block; margin: 7px 0; color: #62728a; font-size: 11px; }
.footer-bottom { margin-top: 35px; padding-top: 16px; border-top: 1px solid var(--line); color: #8190a4; font-size: 10px; display: flex; justify-content: space-between; }
.tagline-footer {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  padding: 18px; text-align: center; color: #fff; background: var(--navy);
}
.tagline-footer span { color: #c8d6ec; font-size: 11px; }
.tagline-footer strong { font-weight: 900; }

/* WordPress theme integration */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  top: 8px; left: 8px; width: auto; height: auto; padding: 10px 14px; margin: 0;
  clip: auto; background: #fff; color: var(--navy); z-index: 1000;
}
.primary-navigation .menu-item { display: contents; }
.mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 19;
  padding: 18px; background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mobile-menu a { display: block; padding: 12px 10px; border-bottom: 1px solid #edf2f7; font-weight: 800; }
.mobile-menu[hidden] { display: none; }
.site-footer h2 { margin: 0 0 12px; font-size: 13px; }
.footer-bottom > span { display: flex; gap: 16px; flex-wrap: wrap; }
.entry-content { max-width: 860px; margin: 0 auto; }
.entry-content > * + * { margin-top: 1.4em; }
.legal-page { padding: 78px 24px 96px; background: var(--pale); }
.legal-shell { max-width: 960px; margin: 0 auto; }
.legal-header { margin-bottom: 36px; text-align: center; }
.legal-header > p {
  margin: 0 0 8px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .14em;
}
.legal-header h1 { margin: 0; font-size: clamp(30px, 4vw, 44px); line-height: 1.4; }
.legal-header > div { margin-top: 14px; color: var(--muted); }
.legal-card {
  padding: 42px 48px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; box-shadow: var(--shadow);
}
.legal-section + .legal-section { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 10px; font-size: 19px; }
.legal-section p { margin: 0; color: var(--muted); }
.legal-section a, .legal-table a { color: var(--blue); text-decoration: underline; }
.legal-date { margin: 38px 0 0; color: #7b899d; font-size: 12px; text-align: right; }
.legal-notice {
  margin-bottom: 24px; padding: 20px 24px; border: 1px solid #f1c58d;
  border-radius: 10px; background: #fff8ed; color: #6e481b;
}
.legal-notice strong { display: block; margin-bottom: 4px; }
.legal-notice p { margin: 0; font-size: 13px; }
.legal-table { display: grid; grid-template-columns: 220px minmax(0, 1fr); margin: 0; }
.legal-table dt, .legal-table dd { margin: 0; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.legal-table dt { background: #f6faff; font-weight: 800; }
.legal-table dd { color: var(--muted); }
.legal-table dt:last-of-type, .legal-table dd:last-of-type { border-bottom: 0; }
.comparison-wrap { overflow-x: auto; }
.contact-success {
  max-width: 960px; margin: 0 auto 28px; padding: 22px 26px;
  border: 1px solid #9dd7c5; border-radius: 10px; background: var(--green-soft); color: #185f50;
}
.contact-error {
  max-width: 960px; margin: 0 auto 28px; padding: 22px 26px;
  border: 1px solid #efb2b2; border-radius: 10px; background: #fff4f4; color: #8b2525;
}
.contact-success h3, .contact-success p, .contact-error h3, .contact-error p { margin: 0; }
.contact-success p, .contact-error p { margin-top: 5px; }
.privacy-check { display: block; margin: 24px 0; text-align: center; }
.privacy-check a { color: var(--blue); text-decoration: underline; }
.form-submit { margin-top: 20px; text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-form { position: relative; }
.contact-form .button { cursor: pointer; }
body.admin-bar .site-header { top: 32px; }

@media (min-width: 1081px) {
  .hero-lead.has-desktop-lines .hero-lead-default { display: none; }
  .hero-lead.has-desktop-lines .hero-lead-desktop { display: block; }
  .hero-lead-desktop > span { display: block; }
  .sanboh-page-home .home-voices-title-desktop > span {
    display: block;
    text-align: center;
  }
  .quote-card.has-desktop-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .quote-card.has-desktop-lines .quote-card-default { display: none; }
  .quote-card.has-desktop-lines .quote-card-desktop { display: block; }
  .quote-card-desktop > span { display: block; }
  .sanboh-page .hero {
    max-width: none;
    min-height: 520px;
    grid-template-columns: 50% 50%;
  }
  .sanboh-page .hero-copy {
    padding-top: 46px;
    padding-right: 58px;
    padding-bottom: 46px;
    padding-left: max(28px, calc((100vw - 1320px) / 2));
  }
  .sanboh-page .hero h1 {
    white-space: nowrap;
  }
  .sanboh-page .hero-copy .actions {
    width: 100%;
    max-width: 720px;
  }
  .sanboh-page .hero-copy .actions .button {
    flex: 1 1 0;
    min-width: 0;
  }
  .sanboh-page .hero-visual {
    min-height: 520px;
    padding: 38px 30px 24px;
  }
  .sanboh-page .hero-visual .change-map {
    width: min(620px, 100%);
  }
  .sanboh-page .hero-visual .map-heading {
    margin-bottom: 30px;
  }
  .sanboh-page .hero-visual .map-side {
    gap: 12px;
  }
  .sanboh-page .hero-visual .map-core {
    font-size: 23px;
  }
  .sanboh-page .hero-visual .map-core small {
    font-size: 13px;
  }
  .sanboh-page .hero-visual .map-result {
    margin-top: 26px;
    font-size: 32px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 1080px) {
  .site-header nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 55px 40px; }
  .hero-visual { min-height: 560px; }
  .quote-grid, .card-grid.cols-4, .plan-grid { grid-template-columns: repeat(2,1fr); }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 720px) {
  .site-header { height: 68px; padding: 0 18px; }
  .line-contact {
    padding: 50px 20px;
  }
  .line-contact__card {
    display: block;
    padding: 34px 20px;
    border-radius: 14px;
    text-align: center;
  }
  .line-contact__label {
    margin-bottom: 8px;
  }
  .line-contact h2 {
    font-size: clamp(22px, 6.4vw, 29px);
    line-height: 1.55;
  }
  .line-contact__description {
    margin-top: 14px;
    font-size: 13px;
  }
  .line-contact__desktop {
    display: none;
  }
  .line-contact__mobile {
    display: block;
    margin-top: 24px;
  }
  .line-contact__mobile-break {
    display: block;
  }
  .line-contact__button {
    width: 100%;
    min-height: 64px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #fff;
    background: #06c755;
    box-shadow: 0 10px 24px rgba(6,199,85,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
  }
  .line-contact__button-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #06c755;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    font-size: 9px;
    font-weight: 900;
  }
  .line-contact__button-arrow {
    font-size: 22px;
    line-height: 1;
  }
  .brand { font-size: 14px; }
  .brand-logo-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .sanboh-page:not(.sanboh-page-home) .hero { min-height: 550px; }
  .hero-copy { padding: 38px 20px; }
  .breadcrumbs { margin-bottom: 22px; }
  .hero h1 { font-size: 37px; }
  .hero-lead.has-mobile-lines .hero-lead-default { display: none; }
  .hero-lead.has-mobile-lines .hero-lead-mobile { display: block; }
  .hero-lead-mobile > span {
    display: block;
    text-align: left;
    white-space: nowrap;
  }
  .sanboh-page-about .hero h1 {
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1.48;
    letter-spacing: -.045em;
  }
  .page-title { font-size: 29px; }
  .actions { flex-direction: column; }
  .hero-visual { min-height: auto; padding: 42px 14px 46px; }
  .sanboh-page:not(.sanboh-page-home) .hero-visual { display: none; }
  .change-map { width: 100%; }
  .map-heading {
    margin-bottom: 24px;
    padding: 0 8px;
    font-size: clamp(18px, 5.6vw, 23px);
    line-height: 1.5;
  }
  .map-heading.has-mobile-lines .map-heading-default { display: none; }
  .map-heading.has-mobile-lines .map-heading-mobile { display: block; }
  .map-heading.has-mobile-lines .map-heading-mobile span {
    display: block;
    text-align: center;
    white-space: nowrap;
  }
  .map-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .map-side { gap: 10px; }
  .map-item {
    min-height: 72px;
    padding: 12px 16px;
    gap: 16px;
    border-width: 2px;
    border-radius: 14px;
    background: rgba(5,25,66,.88);
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.45;
  }
  .map-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-width: 2px;
    font-size: 22px;
    font-weight: 900;
  }
  .map-core {
    position: relative;
    width: min(190px, 58vw);
    height: min(190px, 58vw);
    margin: 14px auto 72px;
    border-width: 12px;
    font-size: clamp(23px, 7vw, 30px);
  }
  .map-core small {
    font-size: clamp(13px, 4vw, 17px);
  }
  .map-core::before,
  .map-core::after {
    content: "↓";
    position: absolute;
    top: calc(100% - 8px);
    color: #4c99ff;
    font-size: 58px;
    line-height: 1;
    text-shadow: 0 0 18px rgba(76,153,255,.5);
  }
  .map-core::before { left: 8px; }
  .map-core::after { right: 8px; }
  .map-grid > .map-side:last-child .map-item {
    border-color: rgba(52,211,153,.75);
    background: rgba(0,69,63,.68);
  }
  .map-result {
    margin-top: 26px;
    font-size: clamp(24px, 7vw, 31px);
  }
  .section { padding: 60px 20px; }
  .section h2 { font-size: 27px; }
  .section h2.has-mobile-lines .section-title-desktop { display: none; }
  .section h2.has-mobile-lines .section-title-mobile {
    display: block;
    text-align: center;
  }
  .section h2.has-mobile-lines .section-title-mobile span {
    display: block;
    white-space: nowrap;
  }
  .section-intro.has-mobile-lines .section-intro-desktop { display: none; }
  .section-intro.has-mobile-lines .section-intro-mobile {
    display: block;
    width: 100%;
    text-align: left;
    font-size: clamp(13px, 4vw, 16px);
    line-height: 1.65;
  }
  .section-intro.has-mobile-lines .section-intro-mobile span {
    display: block;
    white-space: nowrap;
  }
  .sanboh-page-home .home-voices-title-desktop { display: none; }
  .sanboh-page-home .home-metrics-title-desktop { display: none; }
  .sanboh-page-home .home-voices-title-mobile {
    display: block;
    width: min(100%, 580px);
    margin: 0 auto;
    font-size: clamp(22px, 6.2vw, 36px);
    line-height: 1.52;
    letter-spacing: -.025em;
  }
  .sanboh-page-home .home-voices-title-line {
    display: block;
    text-align: center;
    white-space: nowrap;
  }
  .sanboh-page-home .home-metrics-title-mobile {
    display: block;
    width: min(100%, 580px);
    margin: 0 auto;
    font-size: clamp(22px, 6.2vw, 36px);
    line-height: 1.5;
    letter-spacing: -.025em;
  }
  .sanboh-page-home .home-metrics-title-line {
    display: block;
    text-align: center;
    white-space: nowrap;
  }
  .case-card h3.has-mobile-lines .case-title-desktop { display: none; }
  .case-card h3.has-mobile-lines .case-title-mobile { display: block; }
  .case-card h3.has-mobile-lines .case-title-mobile > span {
    display: block;
    white-space: nowrap;
  }
  .case-card .outcome.has-mobile-lines .outcome-text-default { display: none; }
  .case-card .outcome.has-mobile-lines .outcome-text-mobile { display: block; }
  .case-card .outcome.has-mobile-lines .outcome-text-mobile > span {
    display: block;
    white-space: nowrap;
  }
  .quote-grid, .metric-grid, .card-grid, .card-grid.cols-4, .plan-grid, .process-grid { grid-template-columns: 1fr; }
  .mission-band { padding: 48px 20px; grid-template-columns: 1fr; text-align: center; }
  .mission-band strong { margin-top: 24px; text-align: center; }
  .mission-title-desktop,
  .mission-body-desktop { display: none; }
  .mission-title-mobile,
  .mission-body-mobile { display: block; }
  .mission-title-mobile span,
  .mission-body-mobile span {
    display: block;
    text-align: center;
    white-space: nowrap;
  }
  .sanboh-page-home .home-mission-title-desktop,
  .sanboh-page-home .home-mission-body-desktop { display: none; }
  .sanboh-page-home .home-mission-title-mobile,
  .sanboh-page-home .home-mission-body-mobile { display: block; }
  .mission-result-desktop { display: none; }
  .mission-result-mobile { display: block; }
  .mission-result-mobile span {
    display: block;
    text-align: center;
    white-space: nowrap;
  }
  .sanboh-page-service .mission-result-mobile span:nth-child(even) {
    margin: .2em 0;
    line-height: 1;
  }
  .sanboh-page-home .home-mission-title-mobile span,
  .sanboh-page-home .home-mission-body-mobile span {
    display: block;
    text-align: center;
    white-space: nowrap;
  }
  .sanboh-page-home .mission-band h2 {
    font-size: clamp(26px, 7.8vw, 30px);
    line-height: 1.48;
  }
  .sanboh-page-home .mission-band p {
    margin-top: 20px;
    font-size: clamp(13px, 4.1vw, 16px);
    line-height: 1.85;
  }
  .sanboh-page-home .mission-band strong {
    font-size: clamp(18px, 5.65vw, 22px);
    text-align: center;
    white-space: nowrap;
  }
  .split { grid-template-columns: 1fr; padding: 25px; }
  .mission-vision-section .section-head h2 { display: none; }
  .mission-vision-section .section-head { margin-bottom: 28px; }
  .mission-vision-section .mission-vision-body-desktop { display: none; }
  .mission-vision-section .mission-vision-body-mobile {
    display: block;
    margin-top: 30px;
    text-align: left;
    font-size: clamp(14px, 4.1vw, 16px);
    font-weight: 600;
    line-height: 1.8;
  }
  .mission-vision-section .mission-vision-message {
    margin: 0;
    text-align: left;
  }
  .mission-vision-section .mission-vision-message + .mission-vision-message {
    margin-top: 18px;
  }
  .mission-vision-section .mission-vision-label {
    color: var(--ink);
    font-weight: 800;
  }
  .mission-vision-section .mission-vision-copy { margin-left: .28em; }
  .mission-vision-section .mission-vision-message.mission .mission-vision-copy {
    color: #d94a42;
  }
  .mission-vision-section .mission-vision-message.vision .mission-vision-copy {
    color: var(--green);
  }
  .mission-vision-section .mission-vision-message.means .mission-vision-copy {
    margin-left: 0;
    color: var(--muted);
  }
  .vision-steps { grid-template-columns: repeat(2,1fr); }
  .process-item:not(:last-child)::after { display: none; }
  .comparison { display: block; overflow-x: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 8px; }
  .page-cta p.has-mobile-lines .page-cta-body-desktop { display: none; }
  .page-cta h2.has-mobile-lines .page-cta-title-desktop { display: none; }
  .page-cta h2.has-mobile-lines .page-cta-title-mobile {
    display: block;
    width: 100%;
    text-align: center;
  }
  .page-cta h2.has-mobile-lines .page-cta-title-mobile span {
    display: block;
    white-space: nowrap;
  }
  .page-cta p.has-mobile-lines .page-cta-body-mobile {
    display: block;
    width: 100%;
    text-align: left;
    font-size: clamp(13px, 4vw, 18px);
    line-height: 1.7;
  }
  .page-cta p.has-mobile-lines .page-cta-body-mobile.is-centered {
    text-align: center;
  }
  .page-cta p.has-mobile-lines .page-cta-body-mobile span {
    display: block;
    white-space: nowrap;
  }
  .page-cta .button { min-width: 0; width: calc(100% - 20px); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { display: block; }
  .tagline-footer { gap: 7px 10px; }
  .tagline-footer span[aria-hidden] { display: none; }
  .tagline-footer strong { flex-basis: 100%; }
  .legal-page { padding: 52px 18px 68px; }
  .legal-card { padding: 28px 22px; }
  .legal-table { grid-template-columns: 1fr; }
  .legal-table dt { padding-bottom: 8px; border-bottom: 0; }
  .legal-table dd { padding-top: 8px; }
}

/* First-visit opening animation */
body.sanboh-opening-active { overflow: hidden; }
.sanboh-opening-seen .sanboh-opening { display: none; }
.sanboh-opening {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  color: #061b47;
  opacity: 1;
  visibility: visible;
}
.sanboh-opening.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .42s ease, visibility 0s linear .42s;
}
.sanboh-opening__grid {
  position: absolute;
  inset: -20%;
  opacity: .25;
  background-image:
    linear-gradient(rgba(22,119,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,119,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(700px) rotateX(58deg) translateY(34%);
  transform-origin: center bottom;
}
.sanboh-opening__glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .12;
}
.sanboh-opening__glow--blue {
  top: -22vw;
  right: -8vw;
  background: #1677ff;
}
.sanboh-opening__glow--green {
  bottom: -24vw;
  left: -10vw;
  background: #218b6b;
}
.sanboh-opening__particle-canvas {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.sanboh-opening__skip {
  position: absolute;
  z-index: 5;
  top: max(22px, env(safe-area-inset-top));
  right: 26px;
  border: 1px solid rgba(6,27,71,.22);
  border-radius: 999px;
  padding: 9px 18px;
  background: rgba(255,255,255,.82);
  color: #061b47;
  font: inherit;
  font-size: 13px;
  letter-spacing: .08em;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
body.admin-bar .sanboh-opening__skip { top: 54px; }
.sanboh-opening__content {
  position: relative;
  z-index: 2;
  width: min(92vw, 920px);
  min-height: 430px;
  text-align: center;
}
.sanboh-opening__mission,
.sanboh-opening__headline,
.sanboh-opening__lead,
.sanboh-opening__brand {
  position: absolute;
  left: 50%;
  width: 100%;
  margin: 0;
  transform: translate(-50%, 0);
  opacity: 0;
}
.sanboh-opening__mission {
  top: 42%;
  display: flex;
  justify-content: center;
  gap: .36em;
  font-size: clamp(25px, 3.2vw, 50px);
  font-weight: 800;
  letter-spacing: .04em;
  animation: sanboh-opening-mission 3.7s cubic-bezier(.22,.8,.2,1) both;
  animation-play-state: paused;
}
.sanboh-opening__word { display: inline-block; }
.sanboh-opening__word--green { color: #218b6b; }
.sanboh-opening__word--blue { color: #1677ff; }
.sanboh-opening__word--orange { color: #f58226; }
.sanboh-opening__headline {
  top: 25%;
  font-size: clamp(32px, 4.7vw, 68px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .06em;
  animation: sanboh-opening-headline 3.7s cubic-bezier(.22,.8,.2,1) both;
  animation-play-state: paused;
}
.sanboh-opening__headline span,
.sanboh-opening__lead span { display: block; }
.sanboh-opening__lead {
  top: 78%;
  color: #38506f;
  font-size: clamp(15px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .06em;
  animation: sanboh-opening-lead 3.7s cubic-bezier(.22,.8,.2,1) both;
  animation-play-state: paused;
}
.sanboh-opening__brand {
  top: 1%;
  animation: sanboh-opening-brand 3.7s cubic-bezier(.22,.8,.2,1) both;
  animation-play-state: paused;
}
.sanboh-opening-active .sanboh-opening__mission,
.sanboh-opening-active .sanboh-opening__headline,
.sanboh-opening-active .sanboh-opening__lead,
.sanboh-opening-active .sanboh-opening__brand {
  animation-play-state: running;
}
.sanboh-opening__brand img {
  width: clamp(270px, 34vw, 430px);
  height: auto;
  mix-blend-mode: multiply;
}
@keyframes sanboh-opening-mission {
  0%, 14% { opacity: 0; transform: translate(-50%, 0); }
  17%, 27% { opacity: 1; transform: translate(-50%, 0); }
  32%, 100% { opacity: 0; transform: translate(-50%, -8px); }
}
@keyframes sanboh-opening-headline {
  0%, 41% { opacity: 0; transform: translate(-50%, 0); }
  45%, 61% { opacity: 1; transform: translate(-50%, 0); }
  66%, 100% { opacity: 0; transform: translate(-50%, -8px); }
}
@keyframes sanboh-opening-lead {
  0%, 41% { opacity: 0; transform: translate(-50%, 0); }
  45%, 61% { opacity: 1; transform: translate(-50%, 0); }
  66%, 100% { opacity: 0; transform: translate(-50%, -8px); }
}
@keyframes sanboh-opening-brand {
  0%, 67% { opacity: 0; transform: translate(-50%, 14px) scale(.94); }
  76%, 94% { opacity: 1; transform: translate(-50%, 0) scale(1); }
  100% { opacity: 0; transform: translate(-50%, 0) scale(1.015); }
}
@media (max-width: 640px) {
  .sanboh-opening__content {
    width: 88vw;
    min-height: 520px;
  }
  .sanboh-opening__mission {
    top: 39%;
    flex-direction: column;
    gap: .12em;
  }
  .sanboh-opening__headline { top: 27%; }
  .sanboh-opening__lead { top: 73%; }
  .sanboh-opening__brand { top: 12%; }
  .sanboh-opening__brand img { width: min(82vw, 350px); }
  .sanboh-opening__skip { right: 18px; }
  body.admin-bar .sanboh-opening__skip { top: 68px; }
}
