:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #596773;
  --line: #c6cdd3;
  --paper: #fff;
  --canvas: #fbfaf8;
  --accent: #d9002b;
  --accent-dark: #b80024;
  --mint: #edf8f3;
  --blue: #edf7fc;
  --peach: #fff0eb;
  --focus: #005fcc;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 12px 32px rgb(23 33 43 / 7%);
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--canvas); line-height: 1.75; }
img { max-width: 100%; height: auto; }
a { color: #145f87; text-underline-offset: .18em; }
a:hover { color: #0c4567; }
button, input, select { font: inherit; }
button, select, input[type="checkbox"], input[type="radio"] { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.35; letter-spacing: -.025em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.65rem); }
h2 { font-size: clamp(1.45rem, 2.5vw, 2.15rem); }
h3 { font-size: 1.2rem; }
p:last-child { margin-bottom: 0; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; transform: translateY(-150%); padding: 10px 14px; border-radius: 8px; background: var(--paper); }
.skip-link:focus { transform: translateY(0); }
.preview-notice { position: relative; z-index: 12; padding: 8px 16px; background: #fff4cf; color: #513b00; text-align: center; font-weight: 750; font-size: .9rem; }
.site-header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid rgb(198 205 211 / 70%); background: rgb(255 255 255 / 96%); backdrop-filter: blur(12px); }
.header-inner { width: min(1360px, calc(100% - 56px)); min-height: 80px; margin: 0 auto; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: baseline; gap: 2px; color: var(--ink); text-decoration: none; white-space: nowrap; font-size: 1.3rem; font-weight: 850; letter-spacing: -.04em; }
.brand b { color: var(--accent); font-size: 1.4rem; }
.primary-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.primary-nav a { color: var(--ink); text-decoration: none; font-weight: 650; font-size: .94rem; }
.primary-nav a:hover, .primary-nav [aria-current="page"] { color: var(--accent); }
.header-cta, .button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border: 1px solid transparent; border-radius: 12px; text-decoration: none; font-weight: 800; line-height: 1.35; transition: background-color .16s ease, transform .16s ease, box-shadow .16s ease; }
.header-cta, .button-primary { color: #fff; background: var(--accent); }
.header-cta:hover, .button-primary:hover { color: #fff; background: var(--accent-dark); box-shadow: 0 6px 16px rgb(217 0 43 / 18%); transform: translateY(-1px); }
.button-secondary { color: var(--ink); border-color: var(--line); background: var(--paper); }
.button-secondary:hover { color: var(--ink); background: var(--blue); border-color: #98aab5; }
.menu-toggle { display: none; min-height: 44px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; font-weight: 700; }
main { min-height: 55vh; }

.hero { width: min(1360px, calc(100% - 56px)); min-height: 530px; margin: 28px auto 0; padding: clamp(28px, 5vw, 70px); display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); align-items: center; gap: 42px; overflow: hidden; border-radius: var(--radius-lg); background: var(--mint); }
.hero-copy { position: relative; z-index: 1; }
.hero h1 { max-width: 660px; margin-bottom: 20px; font-size: clamp(2.25rem, 3vw, 3.5rem); line-height: 1.28; }
.hero-lead { margin-bottom: 22px; color: #34434d; font-size: clamp(1.04rem, 1.5vw, 1.2rem); line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 15px; }
.hero-actions .button { min-height: 54px; padding: 13px 22px; }
.hero-note { color: var(--muted); font-size: .9rem; }
.hero-image { align-self: stretch; position: relative; min-height: 350px; margin: -12px -18px -12px 0; overflow: hidden; border-radius: 22px; background: #dce8e2; }
.hero-image::after { position: absolute; inset: auto 0 0; height: 28%; content: ""; background: linear-gradient(transparent, rgb(19 37 30 / 15%)); pointer-events: none; }
.hero-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.hero-image figcaption { position: absolute; z-index: 1; right: 14px; bottom: 12px; padding: 2px 10px; border-radius: 999px; color: #fff; background: rgb(23 33 43 / 62%); font-size: .78rem; }
.search-panel { width: min(1220px, calc(100% - 56px)); margin: -24px auto 76px; position: relative; z-index: 2; padding: 28px; border: 1px solid #e1e5e7; border-radius: var(--radius-md); background: var(--paper); box-shadow: var(--shadow); }
.search-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 18px; }
.search-heading h2 { margin: 0; font-size: 1.35rem; }
.search-heading p { color: var(--muted); font-size: .9rem; }
.search-form { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; align-items: end; }
.search-form label, .filter-field { display: grid; gap: 6px; font-size: .88rem; font-weight: 700; }
input:not([type="checkbox"]):not([type="radio"]), select { width: 100%; min-height: 46px; padding: 9px 12px; border: 1px solid #aeb8bf; border-radius: 9px; color: var(--ink); background: #fff; }
input::placeholder { color: #75818a; }
.search-form .button { grid-column: 1 / -1; justify-self: start; }
.matching-intro, .taxonomy-section, .employer-callout, .job-section, .fact-block, .page-intro, .facility-list, .facility-detail, .guide-page, .policy-page, .employer-page, .employer-features, .employer-cta, .ai-writing { width: min(1220px, calc(100% - 56px)); margin: 0 auto 72px; }
.matching-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 8vw, 120px); align-items: center; padding: 20px 0; }
.eyebrow { margin-bottom: 12px; color: var(--accent); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.matching-intro > div > p:not(.eyebrow) { max-width: 520px; color: var(--muted); }
.matching-steps { margin: 0; padding: 0; list-style: none; }
.matching-steps li { display: grid; grid-template-columns: 46px 1fr; gap: 17px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.matching-steps li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #13523f; background: var(--mint); font-weight: 850; }
.matching-steps h3 { margin: 0 0 3px; font-size: 1.08rem; }
.matching-steps p { margin: 0; color: var(--muted); font-size: .92rem; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 22px; }
.section-heading h2 { margin: 0; }
.section-heading p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; }
.text-link { display: inline-flex; gap: 6px; align-items: center; font-weight: 750; }
.job-list { display: grid; gap: 14px; }
.job-row, .facility-row, .match-result { position: relative; padding: 24px; border: 1px solid #e0e5e7; border-radius: var(--radius-md); background: var(--paper); }
.job-row { transition: border-color .16s ease, box-shadow .16s ease; }
.job-row:hover { border-color: #b2c0c6; box-shadow: 0 8px 20px rgb(23 33 43 / 5%); }
.job-row-top { display: flex; justify-content: space-between; gap: 28px; }
.job-employer, .facility-name { margin-bottom: 5px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.job-row h3 { margin-bottom: 5px; }
.job-row h3 a { color: var(--ink); text-decoration: none; }
.job-row h3 a:hover { color: var(--accent); text-decoration: underline; }
.job-location { margin: 0; color: var(--muted); font-size: .92rem; }
.job-salary { flex: 0 0 auto; align-self: center; color: #13523f; font-size: 1.1rem; font-weight: 850; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 17px 0 12px; }
.job-meta span { padding: 4px 10px; border: 1px solid #c8d7d1; border-radius: 999px; color: #314b42; background: #f2f8f5; font-size: .8rem; font-weight: 650; }
.job-row .text-link { font-size: .9rem; }
.data-label { display: inline-block; margin-bottom: 9px; padding: 3px 9px; border-radius: 6px; color: #513b00; background: #fff0bd; font-size: .76rem; font-weight: 850; }
.fact-block { padding: 28px; border: 1px solid #d8e2dd; border-radius: var(--radius-md); background: #f3f8f5; }
.fact-block .section-heading > p { text-align: right; }
.fact-block dl { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; margin: 20px 0 12px; border: 1px solid #dce5e0; border-radius: 12px; background: #dce5e0; }
.fact-block dl > div { padding: 17px; background: #fff; }
.fact-block dt { color: var(--muted); font-size: .84rem; }
.fact-block dd { margin: 4px 0 0; font-size: 1.2rem; font-weight: 850; }
.fact-note { color: var(--muted); font-size: .82rem; }
.taxonomy-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0; list-style: none; }
.taxonomy-list a { min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: #fff; text-decoration: none; font-weight: 650; }
.taxonomy-list a:hover { border-color: #92aaa0; background: var(--mint); }
.employer-callout { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 32px; border-radius: var(--radius-md); background: var(--peach); }
.employer-callout h2 { margin-bottom: 7px; }
.employer-callout p:last-child { color: var(--muted); }
.employer-callout .button { flex-shrink: 0; }
.site-footer { margin-top: 88px; padding: 44px max(28px, calc((100% - 1220px) / 2)); border-top: 1px solid var(--line); background: #f1f3f2; }
.footer-inner { display: flex; justify-content: space-between; gap: 50px; }
.footer-inner p { color: var(--muted); }
.footer-inner nav { max-width: 660px; display: flex; flex-wrap: wrap; gap: 10px 24px; align-content: flex-start; }
.footer-inner nav a, .footer-bottom a { color: #35434c; font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }

.breadcrumbs { width: min(1220px, calc(100% - 56px)); margin: 25px auto 34px; color: var(--muted); font-size: .84rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { margin-left: 8px; content: "/"; color: #89939a; }
.breadcrumbs a { color: #52616b; }
.page-intro { margin-top: 24px; }
.page-intro h1 { max-width: 850px; margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3rem); }
.page-intro > p { max-width: 850px; color: var(--muted); }
.page-intro .answer-first { color: var(--ink); font-size: 1.1rem; font-weight: 650; }
.sort-control { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .9rem; }
.sort-control select { width: auto; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 18px; margin: 26px auto 0; }
.pagination a { padding: 8px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.empty-state { padding: 30px; border: 1px dashed #abb6bd; border-radius: 14px; color: var(--muted); background: #fff; }
.empty-state h3 { color: var(--ink); }
.facility-list { display: grid; gap: 12px; }
.facility-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.facility-row h2 { margin: 0 0 5px; font-size: 1.2rem; }
.facility-row p { margin-bottom: 3px; color: var(--muted); }
.facility-detail, .guide-page, .policy-page, .employer-page { padding: clamp(22px, 5vw, 50px); border: 1px solid #e0e5e7; border-radius: var(--radius-md); background: #fff; }
.facility-detail h1, .guide-page h1, .policy-page h1, .employer-page h1 { font-size: clamp(2rem, 4vw, 3rem); }
.facility-org { color: var(--muted); }
.description { white-space: pre-line; }
.guide-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0; list-style: none; }
.guide-links a { display: block; padding: 15px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.qa-list > div, .job-facts > div { display: grid; grid-template-columns: minmax(150px, .35fr) 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid #e1e5e7; }
.qa-list dt, .job-facts dt { font-weight: 750; }
.qa-list dd, .job-facts dd { margin: 0; white-space: pre-line; }
.answer-first { padding: 19px 22px; border-left: 4px solid #4b9276; border-radius: 0 10px 10px 0; background: var(--mint); }
.policy-page p, .guide-page p, .facility-detail > p { max-width: 800px; }
.policy-page ul { padding-left: 1.4em; }

.wizard { width: min(850px, calc(100% - 40px)); margin: 32px auto 80px; padding: clamp(22px, 5vw, 52px); border: 1px solid #e0e5e7; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.wizard-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; }
.back-link { color: var(--muted); font-size: .9rem; font-weight: 650; }
.wizard-count { color: var(--muted); font-weight: 800; font-variant-numeric: tabular-nums; }
.progress-track { height: 9px; overflow: hidden; border-radius: 999px; background: #e6ebe8; }
.progress-track span { width: 10%; height: 100%; display: block; border-radius: inherit; background: #4b9276; transition: width .2s ease; }
.wizard-content { min-height: 380px; padding: 32px 0 10px; }
.wizard-content h1 { margin-bottom: 10px; font-size: clamp(1.65rem, 4vw, 2.35rem); }
.question-description { color: var(--muted); margin-bottom: 28px; }
.wizard fieldset { margin: 20px 0; padding: 0; border: 0; }
.wizard legend { margin-bottom: 9px; font-weight: 750; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.choice-row { min-height: 52px; display: flex; align-items: center; gap: 11px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; }
.choice-row:hover { background: #f6faf8; border-color: #8ba59a; }
.choice-row:has(input:checked) { border-color: #42876b; background: var(--mint); box-shadow: inset 0 0 0 1px #42876b; }
.choice-row input { width: 19px; height: 19px; accent-color: var(--accent); flex: 0 0 auto; }
.toggle-row { min-height: 48px; display: flex; align-items: center; gap: 10px; margin: 16px 0; padding: 10px 13px; border-radius: 10px; background: #f3f5f5; font-weight: 650; }
.toggle-row input { width: 20px; height: 20px; accent-color: var(--accent); }
.salary-input { max-width: 350px; display: flex; align-items: center; gap: 10px; }
.salary-input input { flex: 1; }
.wizard-nav { display: flex; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid #e6e9ea; }
.wizard-nav .button { min-width: 132px; min-height: 50px; }
.wizard-nav button:disabled { color: #87929a; background: #eef0f1; border-color: #e0e4e6; cursor: not-allowed; }
.privacy-note { margin-top: 18px; color: var(--muted); font-size: .84rem; }
.wizard-message { color: #9b1830; font-weight: 700; }
.results-intro { width: min(1000px, calc(100% - 40px)); margin: 36px auto 24px; }
.results-wrap { width: min(1000px, calc(100% - 40px)); margin: 0 auto 76px; }
.results-wrap > h1 { margin-bottom: 12px; font-size: clamp(1.9rem, 4vw, 3rem); }
.match-disclaimer { margin: 0 0 16px; color: var(--muted); }
.results-status { margin: 22px 0 14px; font-weight: 700; }
.all-jobs-note { margin-top: 22px; color: var(--muted); }
.results-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 20px; }
.match-list { display: grid; gap: 16px; }
.match-result { padding: 24px; }
.match-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.match-top h2 { margin: 8px 0; font-size: 1.4rem; }
.match-top h2 a { color: var(--ink); }
.match-top p { margin: 2px 0; color: var(--muted); }
.match-salary { margin-top: 10px !important; color: #13523f !important; font-weight: 850; }
.match-score { min-width: 130px; padding: 12px 16px; border-radius: 14px; color: #164d3a; background: var(--mint); text-align: center; }
.match-score span { display: block; color: #425b50; font-size: .78rem; }
.match-score strong { display: block; font-size: 2rem; line-height: 1.25; }
.match-score small { font-size: 1rem; }
.match-reasons, .match-cautions { margin: 18px 0 0; padding: 14px 17px; border-radius: 11px; background: #f4f8f6; }
.match-cautions { background: #fff8e4; }
.match-reasons h3, .match-cautions h3 { margin-bottom: 6px; font-size: .98rem; }
.match-reasons ul, .match-cautions ul { margin: 0; padding-left: 1.2em; }
.match-result > .button { margin-top: 18px; }

.job-detail { width: min(1040px, calc(100% - 40px)); margin: 0 auto 90px; padding: clamp(18px, 4vw, 40px); border: 1px solid #e0e5e7; border-radius: var(--radius-md); background: #fff; }
.detail-image-wrap { position: relative; height: clamp(210px, 35vw, 420px); margin: -1px -1px 28px; overflow: hidden; border-radius: 13px; background: #e5eeea; }
.detail-image { width: 100%; height: 100%; object-fit: cover; }
.image-caption { position: absolute; right: 10px; bottom: 9px; padding: 2px 9px; border-radius: 8px; color: #fff; background: rgb(23 33 43 / 65%); font-size: .8rem; }
.data-label-on-image { position: absolute; top: 12px; left: 12px; }
.detail-heading h1 { margin: 0 0 10px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.location-line, .employment-line { color: var(--muted); }
.detail-salary { margin: 16px 0 4px; color: #13523f; font-size: 1.65rem; font-weight: 900; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 22px; }
.apply-unavailable { align-self: center; color: var(--muted); font-size: .9rem; }
.answer-first h2 { margin-bottom: 5px; font-size: 1.1rem; }
.detail-section { margin-top: 38px; }
.detail-section h2 { padding-bottom: 10px; border-bottom: 1px solid var(--line); font-size: 1.3rem; }
.detail-section p { white-space: pre-line; }
.reason-list { padding-left: 1.3em; }
.sticky-apply { position: fixed; right: 20px; bottom: 18px; z-index: 8; }
.sticky-apply .button { box-shadow: 0 7px 20px rgb(23 33 43 / 18%); }

.employer-page, .employer-features, .ai-writing, .employer-cta { margin-top: 40px; }
.employer-page { background: linear-gradient(130deg, #fff 0%, #f0f8f4 100%); }
.employer-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; padding: 0; list-style: none; }
.employer-steps li { padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.employer-steps li > span { color: var(--accent); font-weight: 900; }
.employer-steps h3 { margin: 8px 0 5px; }
.employer-steps p { color: var(--muted); font-size: .9rem; }
.employer-features, .ai-writing { padding: 26px; border-radius: 16px; background: var(--blue); }
.employer-features ul { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; list-style: none; }
.employer-features li { padding: 6px 12px; border-radius: 999px; background: #fff; }
.employer-cta { padding: 28px; border-radius: 16px; background: var(--peach); }

@media (max-width: 900px) {
  .header-inner { width: min(100% - 36px, 1360px); gap: 15px; }
  .menu-toggle { display: inline-flex; margin-left: auto; align-items: center; }
  .primary-nav { display: none; position: absolute; top: 100%; right: 0; left: 0; padding: 10px 20px 18px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 10px 18px rgb(23 33 43 / 7%); }
  .primary-nav.is-open { display: grid; gap: 0; }
  .primary-nav a { padding: 12px 4px; border-bottom: 1px solid #edf0f1; }
  .header-cta { min-height: 44px; padding: 9px 13px; font-size: .88rem; }
  .hero { width: calc(100% - 36px); grid-template-columns: 1fr 0.85fr; gap: 22px; }
  .search-panel, .matching-intro, .taxonomy-section, .employer-callout, .job-section, .fact-block, .page-intro, .facility-list, .facility-detail, .guide-page, .policy-page, .employer-page, .employer-features, .employer-cta, .ai-writing { width: calc(100% - 36px); }
  .search-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .matching-intro { grid-template-columns: 1fr; gap: 25px; }
  .taxonomy-list { grid-template-columns: repeat(2, 1fr); }
  .fact-block dl { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  body { font-size: 15px; }
  .header-inner { min-height: 66px; width: calc(100% - 28px); gap: 8px; }
  .brand { font-size: 1.08rem; }
  .brand b { font-size: 1.16rem; }
  .header-cta { min-height: 42px; padding: 8px 10px; font-size: .82rem; }
  .menu-toggle { min-height: 42px; padding: 7px 9px; font-size: .84rem; }
  .hero { width: calc(100% - 24px); min-height: auto; margin-top: 12px; padding: 28px 22px 18px; grid-template-columns: 1fr; gap: 16px; border-radius: 19px; }
  .hero h1 { font-size: clamp(1.55rem, 6.7vw, 1.9rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-image { min-height: 220px; margin: 0; }
  .search-panel { width: calc(100% - 24px); margin: 14px auto 56px; padding: 20px; }
  .search-heading { display: block; margin-bottom: 14px; }
  .search-heading p { margin: 5px 0 0; }
  .search-form { grid-template-columns: 1fr; }
  .matching-intro, .taxonomy-section, .employer-callout, .job-section, .fact-block, .page-intro, .facility-list, .facility-detail, .guide-page, .policy-page, .employer-page, .employer-features, .employer-cta, .ai-writing { width: calc(100% - 28px); margin-bottom: 54px; }
  .matching-intro { padding: 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 9px; }
  .job-row, .facility-row, .match-result { padding: 18px; border-radius: 14px; }
  .job-row-top { flex-direction: column; gap: 5px; }
  .job-salary { align-self: flex-start; margin: 8px 0 0; }
  .fact-block { padding: 20px; }
  .fact-block .section-heading > p { text-align: left; }
  .fact-block dl > div { padding: 12px; }
  .fact-block dd { font-size: 1.05rem; }
  .taxonomy-list { grid-template-columns: 1fr; }
  .employer-callout { align-items: flex-start; flex-direction: column; padding: 23px; }
  .footer-inner, .footer-bottom { flex-direction: column; gap: 20px; }
  .footer-inner nav { gap: 8px 16px; }
  .breadcrumbs { width: calc(100% - 28px); margin: 19px auto 25px; }
  .sort-control { align-items: center; }
  .facility-row { align-items: flex-start; flex-direction: column; }
  .guide-links { grid-template-columns: 1fr; }
  .qa-list > div, .job-facts > div { grid-template-columns: 1fr; gap: 3px; }
  .wizard { width: calc(100% - 24px); margin: 16px auto 50px; padding: 22px 18px; border-radius: 18px; }
  .wizard-content { min-height: 390px; padding-top: 25px; }
  .choice-grid { grid-template-columns: 1fr; }
  .wizard-nav .button { min-width: 0; flex: 1; }
  .results-intro, .results-wrap { width: calc(100% - 24px); }
  .results-toolbar { align-items: flex-start; flex-direction: column; }
  .match-top { flex-direction: column-reverse; }
  .match-score { width: 100%; min-width: 0; display: flex; justify-content: space-between; align-items: center; text-align: left; }
  .match-score strong { font-size: 1.7rem; }
  .detail-image-wrap { height: 220px; }
  .detail-actions { display: grid; }
  .detail-actions .button { width: 100%; }
  .sticky-apply { right: 10px; bottom: 10px; left: 10px; }
  .sticky-apply .button { width: 100%; }
  .employer-steps { grid-template-columns: 1fr; }
  .site-footer { margin-top: 58px; padding: 34px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
