:root {
  --brand: #73a6e6;
  --brand-deep: #507db2;
  --brand-soft: #d5e4f7;
  --ink: #2f3236;
  --muted: #474c51;
  --gray: #62676d;
  --bg: #ffffff;
  --bg-alt: #f7f9fa;
  --bg-news: #eef1f5;
  --line: #e3e6ea;
  --white: #ffffff;
  --accent: #e98f7e;
  --shadow: 0 1px 0 rgba(47, 50, 54, 0.04), 0 16px 34px rgba(28, 64, 112, 0.08);
  --radius-sm: 6px;
  --radius-md: 8px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    YuGothic,
    "Meiryo UI",
    Meiryo,
    sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

[id] {
  scroll-margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

h1 {
  font-size: 68px;
  margin-bottom: 28px;
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 20px;
}

rt {
  font-size: 0.48em;
}

:focus-visible {
  outline: 3px solid rgba(115, 166, 230, 0.46);
  outline-offset: 4px;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid rgba(227, 230, 234, 0.8);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 16px 40px;
  position: sticky;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
  z-index: 30;
}

.site-header.is-scrolled {
  background: var(--white);
  box-shadow: 0 10px 26px rgba(47, 50, 54, 0.08);
}

.brand {
  color: var(--ink);
  display: grid;
  min-width: max-content;
  text-decoration: none;
}

.brand-main,
.footer-brand {
  color: var(--ink);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand-sub {
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--brand-deep);
}

.nav-contact {
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: #fff !important;
  padding: 10px 18px;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}

.menu-button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  min-height: 42px;
  padding: 8px 13px;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  background: var(--brand-deep);
  content: "";
  display: block;
  height: 2px;
  transition: transform 180ms ease;
  width: 20px;
}

.menu-button i {
  position: relative;
}

.menu-button i::before,
.menu-button i::after {
  left: 0;
  position: absolute;
}

.menu-button i::before {
  top: -6px;
}

.menu-button i::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] i {
  background: transparent;
}

.menu-button[aria-expanded="true"] i::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] i::after {
  transform: translateY(-6px) rotate(-45deg);
}

.notice-bar {
  background: var(--bg-news);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  padding: 11px clamp(20px, 5vw, 52px);
}

.notice-bar__inner {
  align-items: center;
  display: flex;
  gap: 18px;
  margin: 0 auto;
  max-width: var(--content);
}

.notice-bar strong {
  color: var(--brand-deep);
  font-weight: 700;
  min-width: max-content;
}

.notice-bar a {
  color: var(--brand-deep);
  font-weight: 600;
  text-decoration: none;
}

.notice-bar a:hover,
.notice-bar a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 54%, rgba(213, 228, 247, 0.54) 100%),
    var(--white);
  display: block;
  margin: 0 auto;
  max-width: none;
  min-height: calc(100vh - 106px);
  overflow: hidden;
  padding: 72px clamp(20px, 5vw, 52px);
  position: relative;
}

.hero-text {
  margin: 0 auto;
  max-width: var(--content);
  position: relative;
  z-index: 2;
}

.hero-text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
  max-width: 720px;
}

.hero-kicker,
.section-label {
  color: var(--brand-deep);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-text h1::after,
.section-heading h2::after,
.page-hero h1::after {
  background: var(--brand);
  content: "";
  display: block;
  height: 4px;
  margin-top: 18px;
  width: 96px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button[href]::after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  display: inline-block;
  height: 7px;
  margin-left: 10px;
  transform: rotate(45deg);
  width: 7px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--brand-deep);
}

.button.secondary {
  background: var(--white);
  border-color: var(--brand);
  color: var(--brand-deep);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--brand-deep);
  color: var(--brand-deep);
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.hero-meta {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  max-width: 760px;
}

.hero-meta div {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px 16px 0;
}

.hero-meta dt {
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-meta dd {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  margin-left: 0;
}

.hero-route {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 760px;
}

.hero-route a {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  min-height: 82px;
  padding: 16px 18px 14px 0;
  text-decoration: none;
}

.hero-route a:hover,
.hero-route a:focus-visible {
  color: var(--brand-deep);
}

.hero-route span {
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-route strong {
  font-size: 17px;
  line-height: 1.45;
}

.hero-illustration {
  border: 0;
  bottom: clamp(28px, 7vw, 82px);
  box-shadow: none;
  justify-self: auto;
  opacity: 0.9;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  width: min(35vw, 430px);
  z-index: 1;
}

.page-hero img {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  justify-self: center;
  padding: 34px;
}

.hero-illustration img {
  width: 100%;
}

.section,
.news-band,
.cta-band {
  margin: 0 auto;
  max-width: var(--content);
  padding: 86px clamp(20px, 5vw, 52px);
}

.section-wide {
  max-width: none;
}

.section--alt {
  background: var(--bg-alt);
}

.section--blue {
  background: var(--brand);
  color: #fff;
  max-width: none;
}

.section--blue h2,
.section--blue h3,
.section--blue p,
.section--blue .section-label {
  color: #fff;
}

.section--soft {
  background: var(--brand-soft);
  max-width: none;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--content);
}

.section-heading {
  max-width: 820px;
}

.section-heading p,
.intro-copy,
.soft-card p,
.access-card p,
.care-panel p,
.service-detail p,
.message-box p,
.philosophy-list p,
.contact-note p,
.no-form-section p,
.status-note,
.policy-list p {
  color: var(--muted);
}

.news-band {
  align-items: start;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 190px 1fr;
  padding-top: 34px;
  padding-bottom: 34px;
}

.news-band h2 {
  font-size: 26px;
  margin: 0;
}

.news-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 118px 1fr;
  padding: 14px 0;
}

.news-list li:first-child {
  padding-top: 0;
}

.news-list time {
  color: var(--brand-deep);
  font-weight: 700;
}

.intro-grid {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 20px;
}

.text-link {
  color: var(--brand-deep);
  display: inline-flex;
  font-weight: 700;
  min-height: 40px;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.symptom-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.symptom-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.symptom-card:hover,
.symptom-card:focus-visible {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.symptom-card span {
  color: var(--brand);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.symptom-card h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.symptom-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.soft-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 34px;
}

.soft-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.soft-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  min-height: 230px;
  padding: 28px;
}

.soft-card img {
  height: 92px;
  margin-bottom: 24px;
  width: 92px;
}

.center-action {
  margin-top: 34px;
}

.care-panel,
.access-card,
.cta-band,
.info-panel,
.contact-main,
.contact-note,
.message-box,
.policy-lead {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.care-panel,
.access-card,
.cta-band {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 42px;
}

.address {
  color: var(--ink) !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.highlight-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.highlight-list div {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(80, 125, 178, 0.25);
  border-radius: var(--radius-md);
  min-height: 150px;
  padding: 24px;
}

.highlight-list strong {
  color: var(--ink);
  display: block;
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.highlight-list span {
  color: var(--muted);
  display: block;
}

.application-path {
  background: var(--bg-alt);
  max-width: none;
}

.path-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: 32px;
}

.path-kicker {
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.35em;
}

.path-card li {
  color: var(--muted);
}

.path-card .button {
  margin-top: 4px;
  width: fit-content;
}

.page-hero {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  margin: 0 auto;
  max-width: calc(var(--content) + 104px);
  padding: 64px clamp(20px, 5vw, 52px) 44px;
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.form-page-section {
  padding-top: 28px;
}

.two-column,
.access-layout,
.contact-layout,
.policy-section {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
}

.message-box,
.info-panel,
.contact-main,
.contact-note,
.policy-lead {
  padding: 34px;
}

.signature {
  color: var(--ink) !important;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: right;
}

.philosophy-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.philosophy-list article {
  border-top: 4px solid var(--brand);
  padding-top: 20px;
}

.service-detail-list {
  display: grid;
  gap: 0;
}

.service-detail {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 34px;
  grid-template-columns: 108px 1fr;
  padding: 38px 0;
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--brand);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.flow-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 36px 0 0;
  max-width: 920px;
  padding: 0;
}

.flow-list li {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 58px 1fr;
  padding: 26px 0;
}

.flow-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.flow-list span {
  align-items: center;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 30px 0 0;
  max-width: 860px;
  padding: 0;
}

.check-list li {
  border-left: 4px solid var(--brand);
  background: var(--white);
  padding: 12px 16px;
}

.check-list.compact {
  gap: 8px;
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq-list p {
  color: var(--muted);
  margin: 16px 0 0;
}

.info-list,
.contact-list {
  display: grid;
  gap: 0;
  margin-bottom: 0;
}

.info-list div,
.contact-list div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr;
  padding: 18px 0;
}

.info-list div:last-child,
.contact-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.info-list dt,
.contact-list dt {
  color: var(--gray);
  font-weight: 700;
}

.info-list dd,
.contact-list dd {
  font-weight: 700;
  margin-left: 0;
}

.contact-list a {
  color: var(--brand-deep);
  overflow-wrap: anywhere;
}

.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  min-height: 420px;
  overflow: hidden;
}

.map-panel iframe {
  border: 0;
  display: block;
  height: 420px;
  width: 100%;
}

.status-note {
  background: var(--brand-soft);
  border-left: 4px solid var(--brand-deep);
  font-size: 15px;
  margin-bottom: 22px;
  padding: 14px 16px;
}

.status-note strong {
  color: var(--ink);
}

.choice-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.choice-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 30px;
  text-decoration: none;
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color: var(--brand);
}

.choice-card .choice-kicker {
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.choice-card p {
  color: var(--muted);
}

.choice-card .button {
  margin-top: auto;
  width: fit-content;
}

.application-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
  padding: 34px;
}

.form-lead {
  background: linear-gradient(135deg, rgba(115, 166, 230, 0.18), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(80, 125, 178, 0.22);
  border-radius: var(--radius-md);
  display: grid;
  gap: 14px;
  padding: 22px;
}

.form-lead p {
  margin-bottom: 0;
}

.form-helper-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
}

.form-helper-grid article {
  background: var(--white);
  border: 1px solid rgba(80, 125, 178, 0.22);
  border-radius: var(--radius-md);
  min-height: 132px;
  padding: 18px;
}

.form-helper-grid h3 {
  color: var(--brand-deep);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.form-helper-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.form-progress {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  list-style: none;
  padding: 0;
}

.form-progress li {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(80, 125, 178, 0.24);
  border-radius: 999px;
  color: var(--brand-deep);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
}

.form-progress span {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 22px;
  font-size: 12px;
  height: 22px;
  justify-content: center;
}

.form-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding-top: 26px;
}

.form-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.form-section h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

fieldset.field {
  border: 0;
  margin: 0;
  min-inline-size: 0;
  padding: 0;
}

.form-honeypot {
  display: none !important;
}

.field label,
.field legend {
  align-items: center;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 700;
}

.field legend {
  margin-bottom: 8px;
  padding: 0;
}

.field small {
  color: var(--gray);
}

.required-mark,
.optional-mark {
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 5px 8px;
}

.required-mark {
  background: var(--brand);
  color: var(--white);
}

.optional-mark {
  background: var(--bg-news);
  color: var(--gray);
}

.field-note {
  background: var(--bg-alt);
  border-left: 4px solid var(--brand);
  color: var(--muted);
  font-size: 13px;
  padding: 10px 12px;
}

.field input,
.field select,
.field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(80, 125, 178, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--brand-deep);
  box-shadow: 0 0 0 4px rgba(115, 166, 230, 0.16);
  outline: 0;
}

.field input[type="radio"],
.field input[type="checkbox"] {
  appearance: none;
  background: var(--white);
  border: 2px solid #9ea7b1;
  flex: 0 0 auto;
  height: 18px;
  margin: 0;
  min-height: 0;
  padding: 0;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease;
  width: 18px;
}

.field input[type="radio"] {
  border-radius: 50%;
}

.field input[type="checkbox"] {
  border-radius: 4px;
}

.field input[type="radio"]:checked {
  background: radial-gradient(circle at center, var(--brand-deep) 0 42%, transparent 45%);
  background-color: var(--white);
  border-color: var(--brand-deep);
}

.field input[type="checkbox"]:checked {
  background-color: var(--brand-deep);
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2018%2018%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M4.2%209.2l3.1%203.1%206.6-6.8%27%20fill%3D%27none%27%20stroke%3D%27white%27%20stroke-width%3D%272.4%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-color: var(--brand-deep);
}

.field input[type="radio"]:focus-visible,
.field input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(115, 166, 230, 0.36);
  outline-offset: 2px;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.option-row label {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 1 auto;
  gap: 8px;
  line-height: 1.3;
  font-weight: 500;
  min-height: 46px;
  max-width: 100%;
  padding: 10px 15px;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    color 140ms ease;
}

.option-row label:has(input:checked) {
  background: rgba(115, 166, 230, 0.14);
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
  color: var(--brand-deep);
  font-weight: 700;
}

.option-row label:hover {
  border-color: rgba(80, 125, 178, 0.42);
}

.consent-field {
  align-items: start;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 10px;
  padding: 14px;
}

.consent-field input {
  margin-top: 6px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-status {
  border-radius: var(--radius-sm);
  display: none;
  font-weight: 700;
  margin: 0;
  padding: 14px 16px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(115, 166, 230, 0.16);
  color: var(--brand-deep);
}

.form-status.is-pending {
  background: var(--bg-news);
  color: var(--muted);
}

.form-status.is-error {
  background: #fff2f2;
  color: #9f2d2d;
}

.application-form.is-submitting {
  cursor: progress;
}

.application-form.is-submitting button[type="submit"] {
  opacity: 0.74;
}

.application-form.is-submitted .form-note {
  color: var(--brand-deep);
  font-weight: 700;
}

.form-note {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 0;
}

.radio-section {
  background: var(--brand-soft);
  max-width: none;
}

.radio-card {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
}

.radio-card p {
  color: var(--muted);
}

.radio-topic-list,
.radio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.radio-topic-list span {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(80, 125, 178, 0.2);
  border-radius: 999px;
  color: var(--brand-deep);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
}

.radio-feature {
  display: grid;
  gap: 14px;
}

.episode-pick {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(80, 125, 178, 0.24);
  border-radius: var(--radius-md);
  padding: 22px;
}

.episode-pick h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.45;
  margin: 8px 0 10px;
}

.episode-pick .button {
  margin-top: 8px;
  width: fit-content;
}

.episode-label {
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spotify-frame {
  background: var(--white);
  border: 1px solid rgba(80, 125, 178, 0.24);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 12px;
}

.spotify-frame iframe {
  border: 0;
  display: block;
  width: 100%;
}

.spotify-direct-link {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: var(--brand-deep);
  display: flex;
  font-weight: 700;
  justify-content: center;
  margin-top: 12px;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
}

.spotify-direct-link:hover,
.spotify-direct-link:focus-visible {
  border-color: var(--brand-deep);
  color: var(--brand-deep);
}

.policy-list {
  display: grid;
  gap: 18px;
}

.policy-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}

.policy-list h2 {
  font-size: 24px;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 46px clamp(20px, 5vw, 70px);
}

.footer-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 0.7fr) minmax(260px, 1fr);
  margin: 0 auto;
  max-width: var(--content);
}

.site-footer .footer-brand {
  color: #fff;
  display: inline-block;
  font-size: 26px;
  margin-bottom: 10px;
  text-decoration: none;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-note {
  max-width: 460px;
}

.fade-in {
  opacity: 1;
  transform: none;
}

.js-fade .fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.js-fade .hero .fade-in,
.js-fade .page-hero .fade-in,
.js-fade .form-page-section .fade-in {
  opacity: 1;
  transform: none;
}

.js-fade .fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    padding: 14px 20px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    padding: 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    font-size: 16px;
    min-height: 40px;
  }

  .notice-bar__inner,
  .page-hero,
  .intro-grid,
  .care-panel,
  .access-card,
  .two-column,
  .access-layout,
  .contact-layout,
  .policy-section,
  .cta-band,
  .radio-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 86px;
  }

  .hero-illustration {
    display: none;
  }

  .page-hero img {
    max-width: 520px;
  }

  .news-band,
  .choice-grid,
  .path-grid,
  .symptom-grid,
  .highlight-list,
  .form-helper-grid,
  .philosophy-list,
  .soft-card-grid.two {
    grid-template-columns: 1fr;
  }

  .care-panel .button,
  .cta-band .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 21px;
  }

  .brand-main {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .hero,
  .page-hero,
  .section,
  .news-band,
  .cta-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-bottom: 64px;
    padding-top: 52px;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta,
  .hero-route,
  .news-list li,
  .service-detail,
  .flow-list li,
  .info-list div,
  .contact-list div,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-number {
    font-size: 42px;
  }

  .choice-card,
  .application-form,
  .message-box,
  .info-panel,
  .contact-main,
  .contact-note,
  .policy-lead {
    padding: 24px;
  }

  .option-row {
    align-items: stretch;
    flex-direction: column;
  }

  .option-row label {
    width: 100%;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 340px;
    height: 340px;
  }
}

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

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
