:root {
  --pink: #f64f7f;
  --pink-dark: #cf315f;
  --pink-soft: #fff0f4;
  --pink-pale: #fff7f8;
  --mint: #45bfa9;
  --mint-dark: #258b79;
  --mint-pale: #f1fbf8;
  --ink: #29272c;
  --ink-soft: #5d5861;
  --muted: #7d7680;
  --line: #f1d9df;
  --line-neutral: #ebe7e8;
  --white: #fff;
  --container: 1160px;
  --shadow: 0 16px 40px rgba(95, 45, 60, .10);
  --shadow-soft: 0 8px 24px rgba(95, 45, 60, .07);
  --font: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--white); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  overflow-wrap: anywhere;
  text-rendering: optimizeLegibility;
}
main { flex: 1 0 auto; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(246,79,127,.35); outline-offset: 3px; }
[hidden] { display: none !important; }

.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px;
  color: var(--white); background: var(--ink); border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line-neutral); }
.header-utility { min-height: 28px; display: flex; align-items: center; color: var(--ink-soft); background: var(--pink-pale); font-size: 12px; }
.header-main { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; color: var(--ink); text-decoration: none; }
.brand-logo { width: 225px; height: auto; }
.brand-mark {
  display: inline-grid; place-items: center; width: 42px; height: 42px; color: var(--pink);
  background: var(--white); border: 2px solid var(--pink); border-radius: 50%; font-size: 20px;
}
.brand-copy { display: grid; line-height: 1.25; }
.brand-copy strong { font-size: 20px; letter-spacing: -.03em; }
.brand-copy strong span { color: var(--pink); }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: 10px; letter-spacing: .08em; }
.global-nav { display: flex; align-items: center; gap: 26px; }
.global-nav > a { position: relative; color: var(--ink); font-size: 14px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.global-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--pink); transition: right .2s ease;
}
.global-nav > a:hover::after, .global-nav > a[aria-current="page"]::after { right: 0; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; color: var(--white) !important;
  background: var(--pink); border-radius: 999px; box-shadow: 0 8px 18px rgba(246,79,127,.22); transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--pink-dark); transform: translateY(-1px); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); font-size: 19px; }

/* Common */
.eyebrow { margin: 0 0 8px; color: var(--pink); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow.mint, .text-link.mint { color: var(--mint-dark); }
.section-heading { max-width: 740px; margin: 0 auto 38px; text-align: center; }
.section-heading.compact { margin-bottom: 28px; }
.section-heading.align-left { margin: 0 0 24px; text-align: left; }
.section-heading h1, .section-heading h2 { margin: 0; font-size: clamp(28px, 3.2vw, 40px); line-height: 1.35; letter-spacing: -.035em; }
.section-heading p:not(.eyebrow) { margin: 12px 0 0; color: var(--ink-soft); }
.row-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; text-align: left; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 24px;
  border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.25; text-decoration: none; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--pink); box-shadow: 0 10px 24px rgba(246,79,127,.22); }
.button-primary:hover { background: var(--pink-dark); }
.button-outline { color: var(--pink-dark); background: var(--white); border-color: var(--pink); }
.button-outline:hover { color: var(--white); background: var(--pink); }
.button-large { min-height: 60px; padding-inline: 28px; }
.button-large span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-left: -12px; color: var(--pink); background: var(--white); border-radius: 50%; font-size: 12px; }
.button-small { min-height: 42px; padding: 10px 15px; font-size: 13px; white-space: nowrap; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--pink-dark); font-size: 14px; font-weight: 700; text-underline-offset: 5px; }
.text-link:hover { text-decoration-thickness: 2px; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--pink-pale); border-bottom: 1px solid var(--line); }
.hero-grid { min-height: 570px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; }
.hero-copy { position: relative; z-index: 2; padding: 60px 0 68px; }
.hero-kicker { margin: 0 0 14px; font-size: 18px; font-weight: 700; }
.hero-copy h1 { margin: 0; font-size: clamp(40px, 5vw, 66px); line-height: 1.28; letter-spacing: -.055em; }
.hero-copy h1 span { color: var(--pink); }
.hero-lead { max-width: 620px; margin: 22px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.9; }
.hero-points { display: grid; gap: 7px; margin: 22px 0 0; padding: 0; list-style: none; font-size: 14px; font-weight: 700; }
.hero-points i { margin-right: 9px; color: var(--pink); }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }
.hero-actions .button, .hero-actions .text-link { white-space: nowrap; }
.hero-visual { position: relative; align-self: stretch; min-width: 0; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
@media (min-width: 861px) {
  .hero {
    background-image:
      linear-gradient(90deg, rgba(255,247,248,.98) 0%, rgba(255,247,248,.94) 35%, rgba(255,247,248,.62) 50%, rgba(255,247,248,.08) 68%, rgba(255,247,248,0) 100%),
      url('/assets/img/hero-nurse-wide-v2.webp');
    background-position: 0 0, right top;
    background-repeat: no-repeat;
    background-size: 100% 100%, auto 100%;
  }
  .hero-visual > img { visibility: hidden; }
}
.hero-proof {
  position: absolute; right: 0; bottom: 48px; width: min(420px, 90%); padding: 20px 22px; background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.9); border-radius: 20px; box-shadow: var(--shadow);
}
.hero-proof > strong { display: block; margin-bottom: 14px; text-align: center; font-size: 14px; }
.hero-proof > strong i { margin-right: 6px; color: var(--pink); }
.hero-proof > div { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-proof span { display: grid; gap: 2px; color: var(--muted); font-size: 11px; text-align: center; border-right: 1px solid var(--line); }
.hero-proof span:last-child { border-right: 0; }
.hero-proof b { color: var(--pink); font-size: 20px; }

/* Sections */
.trust-section { padding: 60px 0; background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card { padding: 32px 28px; text-align: center; border-right: 1px solid var(--line); }
.feature-card:last-child { border-right: 0; }
.feature-card > i { color: var(--pink); font-size: 38px; }
.feature-card h3 { margin: 16px 0 8px; color: var(--pink-dark); font-size: 16px; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.comparison-section { padding: 76px 0 84px; background: #fffdfd; border-top: 1px solid var(--line-neutral); border-bottom: 1px solid var(--line-neutral); scroll-margin-top: 120px; }
.compare-filter { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-bottom: 18px; padding: 16px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.compare-filter > p { margin: 0; font-size: 13px; font-weight: 700; white-space: nowrap; }
.compare-filter > p i { margin-right: 6px; color: var(--pink); }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { padding: 8px 14px; color: var(--ink-soft); background: var(--pink-pale); border: 1px solid transparent; border-radius: 999px; font-size: 12px; font-weight: 700; cursor: pointer; }
.filter-chip:hover, .filter-chip.is-active { color: var(--white); background: var(--pink); }
.filter-result { color: var(--muted); }
.filter-result strong { color: var(--pink-dark); font-size: 18px; }
.comparison-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-soft); }
.comparison-table { width: 100%; min-width: 920px; border-collapse: collapse; font-size: 14px; }
.comparison-table caption { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); }
.comparison-table th, .comparison-table td { padding: 20px 18px; text-align: left; vertical-align: middle; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table tbody tr:last-child > * { border-bottom: 0; }
.comparison-table thead th { padding-block: 14px; color: var(--white); background: var(--pink); font-size: 12px; text-align: center; }
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody th { width: 190px; background: var(--pink-pale); }
.service-name { display: block; color: var(--pink-dark); font-size: 17px; font-weight: 700; }
.comparison-table small { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.comparison-table td:nth-child(2) { width: 38%; }
.comparison-table td:nth-child(2) strong { display: block; font-size: 13px; }
.comparison-table ul { margin: 8px 0 0; padding-left: 1.2em; color: var(--ink-soft); font-size: 12px; }
.status-yes { display: block; color: var(--mint-dark); font-size: 13px; font-weight: 700; text-align: center; }
.status-yes i { color: var(--mint); }
.comparison-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.comparison-note i { margin-right: 5px; color: var(--pink); }
.steps-section { padding: 80px 0; background: var(--pink-pale); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }
.steps-grid li { position: relative; min-height: 280px; padding: 28px 24px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); }
.steps-grid li > span { position: absolute; top: 16px; left: 16px; display: grid; place-items: center; width: 30px; height: 30px; color: var(--white); background: var(--pink); border-radius: 50%; font-size: 13px; font-weight: 700; }
.steps-grid li > i { margin-top: 18px; color: var(--pink); font-size: 48px; }
.steps-grid h3 { margin: 20px 0 8px; color: var(--pink-dark); font-size: 17px; }
.steps-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.guide-section { padding: 84px 0; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guide-card { min-height: 360px; display: flex; flex-direction: column; padding: 32px; background: var(--white); border: 1px solid var(--line-neutral); border-radius: 22px; box-shadow: var(--shadow-soft); }
.guide-card-primary { background: var(--pink-pale); border-color: var(--line); }
.guide-card-mint { background: var(--mint-pale); border-color: #cdeee6; }
.guide-card > i { width: 58px; height: 58px; display: grid; place-items: center; color: var(--pink); background: var(--white); border: 1px solid var(--line); border-radius: 18px; font-size: 25px; }
.guide-card-mint > i { color: var(--mint-dark); border-color: #cdeee6; }
.card-label { margin: 22px 0 5px; color: var(--pink-dark); font-size: 12px; font-weight: 700; }
.guide-card-mint .card-label { color: var(--mint-dark); }
.guide-card h3 { margin: 0; font-size: 20px; line-height: 1.5; }
.guide-card > p:not(.card-label) { color: var(--ink-soft); font-size: 13px; }
.guide-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--pink-dark); font-size: 13px; font-weight: 700; }
.guide-card-mint a { color: var(--mint-dark); }
.info-section { padding: 72px 0 84px; background: #fffdfd; border-top: 1px solid var(--line-neutral); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-preview, .article-preview { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); }
.article-preview { border-color: #cdeee6; }
details { border-bottom: 1px solid var(--line-neutral); }
details:first-of-type { border-top: 1px solid var(--line-neutral); }
summary { position: relative; padding: 17px 34px 17px 0; font-weight: 700; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 50%; color: var(--pink); font-size: 24px; transform: translateY(-50%); }
details[open] summary::after { content: "−"; }
details p { margin: 0 0 18px; color: var(--ink-soft); font-size: 13px; }
.faq-preview > .text-link, .article-preview > .text-link { margin-top: 22px; }
.topic-row { display: flex; align-items: center; gap: 12px; padding: 16px 2px; border-bottom: 1px solid #dcefe9; color: var(--ink); font-size: 14px; font-weight: 700; text-decoration: none; }
.topic-row:hover { color: var(--mint-dark); }
.topic-row i { color: var(--mint); font-size: 11px; }

/* CTA */
.closing-cta { padding: 64px 0; background: var(--pink-soft); }
.closing-cta-grid { min-height: 350px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.closing-cta-copy { padding: 44px 0 44px 54px; }
.closing-cta h2 { margin: 0; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.42; letter-spacing: -.035em; }
.closing-cta p:not(.eyebrow) { max-width: 650px; color: var(--ink-soft); }
.closing-cta img { width: 100%; height: 100%; max-height: 390px; object-fit: cover; object-position: center; }

/* Footer */
.site-footer { background: var(--pink-pale); border-top: 1px solid var(--line); }
.footer-main { padding: 56px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 50px; }
.footer-grid h2 { margin: 0 0 15px; font-size: 14px; }
.footer-grid ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-grid li, .footer-grid a { color: var(--ink-soft); font-size: 12px; text-decoration: none; }
.footer-grid li a:hover { color: var(--pink-dark); text-decoration: underline; }
.footer-brand p { max-width: 340px; color: var(--ink-soft); font-size: 12px; }
.footer-review { color: var(--pink-dark) !important; font-weight: 700; }
.footer-disclosure { color: var(--muted); font-size: 11px; line-height: 1.7; }
.footer-bottom { color: rgba(255,255,255,.88); background: #51474b; }
.footer-bottom .container { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 11px; }

/* Interior pages */
.page-hero { padding: 64px 0 58px; background: var(--pink-pale); border-bottom: 1px solid var(--line); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--pink-dark); }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(34px, 5vw, 54px); line-height: 1.32; letter-spacing: -.045em; }
.page-hero p { max-width: 760px; margin: 18px 0 0; color: var(--ink-soft); font-size: 16px; }
.page-content { padding: 72px 0 88px; }
.content-narrow { width: min(820px, 100%); margin-inline: auto; }
.content-section { margin-bottom: 64px; scroll-margin-top: 130px; }
.content-section:last-child { margin-bottom: 0; }
.content-section h2 { margin: 0 0 16px; font-size: clamp(26px, 3.2vw, 36px); line-height: 1.4; }
.content-section h3 { margin: 28px 0 10px; font-size: 20px; }
.content-section p { color: var(--ink-soft); }
.content-section ul, .content-section ol { color: var(--ink-soft); }
.callout { padding: 24px 26px; background: var(--pink-pale); border: 1px solid var(--line); border-radius: 18px; }
.callout.mint { background: var(--mint-pale); border-color: #cdeee6; }
.callout h2, .callout h3 { margin-top: 0; }
.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--pink); font-weight: 700; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { display: flex; flex-direction: column; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); }
.service-card-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.service-card h2 { margin: 0; color: var(--pink-dark); font-size: 24px; }
.service-card .operator { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.service-card .service-tag { padding: 5px 10px; color: var(--pink-dark); background: var(--pink-soft); border-radius: 999px; font-size: 11px; font-weight: 700; }
.service-card > p { color: var(--ink-soft); }
.service-card ul { padding-left: 1.25em; color: var(--ink-soft); font-size: 13px; }
.service-card .button { margin-top: auto; align-self: flex-start; }
.legal-meta { padding: 16px 18px; color: var(--muted); background: #f8f7f7; border-radius: 12px; font-size: 12px; }
.contact-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-option { padding: 28px; border: 1px solid var(--line); border-radius: 20px; }
.contact-option > i { color: var(--pink); font-size: 30px; }

/* 404 */
.not-found { min-height: 64vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.not-found i { color: var(--pink); font-size: 72px; }
.not-found h1 { margin: 16px 0 6px; font-size: 42px; }
.not-found p { color: var(--ink-soft); }

@media (max-width: 1060px) {
  .global-nav { gap: 14px; }
  .global-nav > a { font-size: 12px; }
  .nav-cta { padding-inline: 15px; }
  .hero-grid { min-height: 530px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-actions { gap: 14px; }
  .hero-actions .button-large { padding-inline: 18px; font-size: 14px; }
  .hero-actions .text-link { font-size: 13px; }
  .feature-card { padding-inline: 16px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 48px, var(--container)); }
  .header-main { min-height: 72px; }
  .menu-toggle { display: grid; place-items: center; }
  .global-nav {
    position: fixed; z-index: 101; top: 100px; left: 24px; right: 24px; display: none; align-items: stretch; gap: 0;
    max-height: calc(100vh - 124px); overflow-y: auto; padding: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
  }
  .global-nav.is-open { display: grid; }
  .global-nav > a { padding: 14px; font-size: 14px; border-bottom: 1px solid var(--line-neutral); }
  .global-nav > a::after { display: none; }
  .global-nav .nav-cta { justify-content: center; margin-top: 10px; border-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 52px 0 36px; }
  .hero-visual { min-height: 440px; margin: 0 -24px; }
  .hero-proof { right: 24px; bottom: 24px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(2) { border-right: 0; }
  .feature-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 0; }
  .info-grid { grid-template-columns: 1fr; }
  .closing-cta-grid { grid-template-columns: 1fr .72fr; }
  .closing-cta-copy { padding: 36px 0 36px 36px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { width: calc(100% - 40px); }
  .header-utility { min-height: 24px; font-size: 10px; }
  .header-main { min-height: 66px; }
  .brand { gap: 7px; }
  .brand-logo { width: 190px; }
  .brand-mark { width: 36px; height: 36px; font-size: 17px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { display: none; }
  .global-nav { top: 98px; left: 16px; right: 16px; }
  .hero-copy { padding-top: 42px; }
  .hero-kicker { font-size: 14px; }
  .hero-copy h1 { font-size: clamp(35px, 10.5vw, 44px); line-height: 1.3; }
  .hero-copy h1 br { display: none; }
  .hero-lead { font-size: 14px; line-height: 1.8; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-visual { min-height: 380px; margin-inline: -20px; }
  .hero-visual > img { object-position: right center; }
  .hero-proof { right: 14px; bottom: 14px; width: calc(100% - 28px); padding: 16px 12px; border-radius: 16px; }
  .hero-proof b { font-size: 17px; }
  .hero-proof span { font-size: 10px; }
  .trust-section, .comparison-section, .steps-section, .guide-section, .info-section, .page-content { padding-block: 56px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h1, .section-heading h2 { font-size: 28px; }
  .row-heading { align-items: start; flex-direction: column; gap: 10px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child { border-bottom: 0; }
  .compare-filter { grid-template-columns: 1fr; }
  .filter-buttons { flex-wrap: nowrap; margin-inline: -2px; padding-bottom: 4px; overflow-x: auto; }
  .filter-chip { flex: 0 0 auto; }
  .filter-result { justify-self: end; }
  .comparison-wrap { overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .comparison-table { min-width: 0; display: block; }
  .comparison-table thead { position: absolute; overflow: hidden; width: 1px; height: 1px; clip: rect(0 0 0 0); }
  .comparison-table tbody { display: grid; gap: 16px; }
  .comparison-table tr { display: grid; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
  .comparison-table th, .comparison-table td { display: block; width: auto !important; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line-neutral); text-align: left; }
  .comparison-table tbody th { padding-top: 0; background: transparent; }
  .comparison-table td:last-child { padding-bottom: 0; border-bottom: 0; }
  .comparison-table td::before { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
  .comparison-table td:nth-child(2)::before { content: "主な特徴"; }
  .comparison-table td:nth-child(3)::before { content: "相談"; }
  .comparison-table td:nth-child(4)::before { content: "応募支援"; }
  .comparison-table td:nth-child(5)::before { content: "公式情報"; }
  .status-yes { text-align: left; }
  .comparison-table .button { width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li { min-height: 0; }
  .faq-preview, .article-preview { padding: 24px 20px; }
  .closing-cta { padding-block: 40px; }
  .closing-cta-grid { grid-template-columns: 1fr; }
  .closing-cta-copy { padding: 30px 24px 12px; text-align: center; }
  .closing-cta h2 br { display: none; }
  .closing-cta img { max-height: 300px; object-fit: contain; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; padding-block: 12px; }
  .page-hero { padding-block: 44px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero p { font-size: 14px; }
  .content-section { margin-bottom: 48px; }
  .callout, .service-card, .contact-option { padding: 22px; }
  .contact-options { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
