:root {
  --primary: #00a99d;
  --primary-dark: #00897b;
  --navy: #1a2b4c;
  --text: #374151;
  --muted: #6b7280;
  --bg: #f5f7fa;
  --white: #ffffff;
  --border: rgba(26, 43, 76, 0.08);
  --shadow-sm: 0 2px 20px rgba(26, 43, 76, 0.03);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
  --font-ja: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-ja);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

.sample-notice {
  display: flex;
  justify-content: center;
  gap: 14px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  line-height: 1.6;
  padding: 8px 20px;
  text-align: center;
}

.sample-notice strong {
  color: var(--primary);
  font-weight: 900;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-mark span,
.footer span {
  color: var(--primary);
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.header-cta {
  border-radius: 25px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.header-cta:hover,
.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 169, 157, 0.3);
}

.facility-tabs {
  position: sticky;
  top: 73px;
  z-index: 45;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(245, 247, 250, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(26, 43, 76, 0.04);
  overflow-x: auto;
  padding: 0 24px;
}

.facility-tabs a {
  flex: 0 0 auto;
  border-left: 1px solid var(--border);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding: 16px 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.facility-tabs a:last-child {
  border-right: 1px solid var(--border);
}

.facility-tabs a:hover,
.facility-tabs a.active {
  background: var(--primary);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.98) 0%, rgba(245, 247, 250, 0.95) 35%, rgba(245, 247, 250, 0.64) 58%, rgba(245, 247, 250, 0.08) 78%),
    url("assets/medical-hero.png") center right / cover no-repeat;
  opacity: 1;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(360px, 500px);
  align-items: center;
  gap: 72px;
  max-width: 1200px;
  min-height: 780px;
  margin: 0 auto;
  padding: 96px 24px 80px;
}

.section-label {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.4rem, 4.2vw, 3.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.3;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.lead {
  max-width: 520px;
  margin-bottom: 22px;
  color: #374151;
  font-size: 16px;
  line-height: 1.95;
}

.audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.audience-chips span {
  border: 1px solid rgba(0, 169, 157, 0.22);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 9px 12px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: all 0.2s ease;
}

.btn.primary {
  min-height: 56px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 15px 36px;
}

.btn.full {
  width: 100%;
}

.btn.text {
  color: var(--navy);
  font-size: 14px;
  border-bottom: 1px solid rgba(26, 43, 76, 0.35);
  line-height: 1.6;
}

.btn.text:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 12px;
  max-width: 500px;
  margin: 0;
}

.hero-metrics div {
  border-left: 2px solid var(--primary);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 16px;
}

.hero-metrics dt {
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.coordination-panel {
  align-self: end;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  backdrop-filter: blur(18px);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.panel-header strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.consult-visual {
  position: relative;
  margin: 0 0 18px;
  overflow: hidden;
  background: var(--navy);
}

.consult-visual img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  opacity: 0.88;
}

.consult-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(26, 43, 76, 0.82), rgba(26, 43, 76, 0));
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
  padding: 42px 18px 16px;
}

.consult-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfb 100%);
  color: var(--navy);
  text-align: left;
  border: 1px solid rgba(0, 169, 157, 0.18);
  border-left: 4px solid var(--primary);
  padding: 22px 24px;
  box-shadow: 0 12px 34px rgba(26, 43, 76, 0.07);
}

.consult-card p {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.consult-card strong {
  display: block;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.35;
}

.consult-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.consult-card a {
  display: inline-flex;
  margin-top: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 22px;
}

.consult-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.consult-list li {
  display: grid;
  grid-template-columns: 66px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: start;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 15px 16px;
}

.consult-list span {
  min-width: 56px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.consult-list strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.consult-list small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.mini-network {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.mini-network span {
  border-left: 2px solid var(--primary);
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  padding: 10px 12px;
  box-shadow: 0 8px 24px rgba(26, 43, 76, 0.05);
}

.network {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 320px;
}

.network::before,
.network::after {
  content: "";
  position: absolute;
  background: rgba(0, 169, 157, 0.28);
}

.network::before {
  top: 50%;
  left: 12%;
  right: 12%;
  height: 2px;
}

.network::after {
  top: 16%;
  bottom: 16%;
  left: 50%;
  width: 2px;
}

.node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(26, 43, 76, 0.07);
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.5;
  padding: 18px;
}

.node small {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.main-node {
  grid-column: 1 / -1;
  justify-self: center;
  width: 58%;
  min-height: 88px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.panel-note {
  margin-top: 22px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.quick-links {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
  margin: -58px auto 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.quick-links a {
  border-right: 1px solid var(--border);
  padding: 26px 24px;
  transition: background 0.2s ease;
}

.quick-links a:last-child {
  border-right: none;
}

.quick-links a:hover {
  background: #f9fbfc;
}

.quick-links span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.quick-links strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.visual-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 72px auto 0;
  padding: 0 24px;
}

.visual-overview figure {
  position: relative;
  aspect-ratio: 1 / 1.18;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.visual-overview figure:first-child {
  grid-row: auto;
  min-height: 0;
}

.visual-overview img,
.service-card img,
.detail-photo {
  display: block;
  width: 100%;
  object-fit: cover;
}

.visual-overview img {
  height: 100%;
  opacity: 0.92;
}

.visual-overview figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(26, 43, 76, 0.88), rgba(26, 43, 76, 0));
  font-size: 15px;
  font-weight: 900;
  padding: 56px 24px 22px;
}

.visual-overview figcaption span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 72px;
}

.body-copy {
  color: #4b5563;
  font-size: 16px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.services {
  max-width: none;
  background: var(--white);
}

.infographic-section {
  padding-top: 40px;
}

.infographic-image {
  display: block;
  width: 100%;
  max-width: 1120px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.care-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  min-height: 340px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 46px 36px 36px;
}

.care-diagram::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(0, 169, 157, 0.28);
}

.care-center {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 50%;
  width: 250px;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
  padding: 22px;
}

.care-center span,
.care-step span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.care-center strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  margin-top: 4px;
}

.care-step {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 155px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px 20px;
}

.care-step strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  margin: 8px 0;
}

.care-step p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.services > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 700px;
  margin-bottom: 52px;
}

.section-head p:not(.section-label) {
  color: var(--muted);
  font-size: 15px;
}

.section-head.compact {
  max-width: 640px;
}

.section-head.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 100%;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 0 0 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card > :not(img) {
  margin-left: 24px;
  margin-right: 24px;
}

.service-card img {
  height: 148px;
  margin-bottom: 26px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card.accent {
  border-top: 3px solid var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.card-number {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.service-card p:not(.card-kicker) {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.8;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 24px;
  padding: 0;
  list-style: none;
}

.service-card li {
  border: 1px solid rgba(0, 169, 157, 0.22);
  color: var(--navy);
  background: rgba(0, 169, 157, 0.06);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px;
}

.service-card a {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.flow-section {
  max-width: 1120px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: rgba(0, 169, 157, 0.32);
}

.timeline article {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.news-area {
  max-width: 1120px;
  border-top: 1px solid var(--border);
}

.news-list {
  background: var(--white);
  border: 1px solid var(--border);
}

.news-list a {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.news-list a:last-child {
  border-bottom: none;
}

.news-list time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.news-list span {
  color: var(--navy);
  font-weight: 700;
}

.news-list em {
  border-radius: 20px;
  background: rgba(0, 169, 157, 0.09);
  color: var(--primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  padding: 4px 10px;
}

.access-section {
  max-width: none;
  padding-top: 40px;
}

.access-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px;
}

.access-card h2 {
  color: var(--white);
}

.access-card p {
  max-width: 620px;
}

.contact-box {
  background: var(--white);
  color: var(--text);
  padding: 32px;
}

.contact-box span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-box strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.contact-box p {
  margin: 10px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px 40px;
}

.footer strong {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.footer p {
  margin: 4px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--navy);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.98), rgba(245, 247, 250, 0.9), rgba(245, 247, 250, 0.52)),
    url("assets/medical-hero.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--border);
  padding: 86px 24px 92px;
}

.page-hero > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 24px;
}

.detail-main,
.detail-side {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.detail-main {
  padding: 46px;
}

.detail-photo {
  height: 310px;
  margin: -46px -46px 40px;
  width: calc(100% + 92px);
}

.detail-side {
  align-self: start;
  padding: 32px;
}

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

.feature-list div {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.feature-list strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.feature-list p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
  font-size: 13px;
}

.info-table th,
.info-table td {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 86px;
  color: var(--navy);
  font-weight: 900;
}

.phone-large {
  display: block;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--navy);
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1120px;
  padding-top: 0;
}

.stats-band div {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  padding: 34px 28px;
}

.stats-band strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.rich-section {
  max-width: 1120px;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}

.info-card-grid article span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.info-card-grid h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.info-card-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 0;
}

.media-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
  max-width: 1120px;
}

.media-section img {
  display: block;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.media-section p:not(.section-label) {
  color: var(--muted);
  font-size: 15px;
}

.faq-section {
  max-width: 880px;
}

.faq-section details {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  padding: 20px 24px;
}

.faq-section summary {
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.faq-section details p {
  color: var(--muted);
  font-size: 14px;
  margin: 14px 0 0;
}

.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px 96px;
}

.legal-page article {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 56px 60px;
}

.legal-page h2 {
  border-top: 1px solid var(--border);
  margin: 44px 0 16px;
  padding-top: 30px;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.legal-page h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.legal-page p,
.legal-page li {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.95;
}

.legal-page ul {
  margin: 0;
  padding-left: 1.4em;
}

.final-cta {
  max-width: 1120px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 64px 32px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta .btn.primary {
  background: var(--white);
  color: var(--primary);
  margin-top: 10px;
}

.post-page {
  background: var(--bg);
}

.post-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 24px 46px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.post-meta time,
.post-meta span {
  border: 1px solid rgba(0, 169, 157, 0.2);
  background: var(--white);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 8px 10px;
}

.post-hero h1 {
  max-width: 860px;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
}

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

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 86px;
}

.post-body,
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.post-body {
  padding: 46px;
}

.post-cover {
  margin: -46px -46px 42px;
}

.post-cover img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.post-body section {
  border-top: 1px solid var(--border);
  padding-top: 34px;
  margin-top: 34px;
}

.post-body section:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.post-body h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.post-body p,
.post-body td,
.post-body th {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.95;
}

.post-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
}

.post-table th,
.post-table td {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: left;
}

.post-table th {
  width: 170px;
  color: var(--navy);
  font-weight: 900;
}

.post-callout {
  border-left: 4px solid var(--primary);
  background: var(--bg);
  margin-top: 22px;
  padding: 20px 22px;
}

.post-callout strong {
  color: var(--navy);
  font-weight: 900;
}

.post-callout p {
  margin: 8px 0 0;
}

.post-sidebar {
  display: grid;
  align-self: start;
  gap: 16px;
}

.sidebar-card {
  padding: 26px 24px;
}

.sidebar-card.accent {
  border-top: 3px solid var(--primary);
}

.sidebar-card h2 {
  font-size: 18px;
}

.sidebar-card p,
.sidebar-card dd,
.sidebar-card dt {
  font-size: 13px;
}

.sidebar-card dl {
  margin: 0;
}

.sidebar-card dl div {
  border-top: 1px solid var(--border);
  padding: 13px 0;
}

.sidebar-card dt {
  color: var(--muted);
  font-weight: 800;
}

.sidebar-card dd {
  color: var(--navy);
  font-weight: 900;
  margin: 2px 0 0;
}

.related-posts {
  max-width: 1120px;
  padding-top: 0;
}

.admin-body {
  background: #eef2f6;
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 28px 22px;
}

.admin-brand {
  display: block;
  color: var(--navy);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 34px;
}

.admin-brand span {
  color: var(--primary);
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  padding: 13px 14px;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: rgba(0, 169, 157, 0.09);
  color: var(--primary);
}

.admin-sidebar nav span {
  width: 20px;
  color: inherit;
  font-weight: 900;
  text-align: center;
}

.admin-side-note {
  border-top: 1px solid var(--border);
  margin-top: 34px;
  padding-top: 22px;
}

.admin-side-note strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.admin-side-note p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 8px;
}

.admin-main {
  padding: 34px 38px 56px;
}

.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-topbar h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 0;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-actions button,
.admin-link {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 12px 16px;
}

.admin-actions button.primary {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
}

.editor-panel,
.preview-panel {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.editor-panel {
  display: grid;
  gap: 20px;
  padding: 30px;
}

.field-row {
  display: grid;
  gap: 16px;
}

.field-row.two {
  grid-template-columns: repeat(2, 1fr);
}

.field-row label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  padding: 13px 14px;
}

.field-row textarea {
  resize: vertical;
}

.preview-panel {
  align-self: start;
  overflow: hidden;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 16px 18px;
}

.preview-toolbar strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.preview-toolbar span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.mini-post-preview img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.mini-post-preview > div {
  padding: 22px;
}

.post-meta.compact {
  margin-bottom: 12px;
}

.mini-post-preview h2 {
  font-size: 22px;
}

.mini-post-preview p,
.mini-post-preview th,
.mini-post-preview td {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.mini-post-preview table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.mini-post-preview th,
.mini-post-preview td {
  border-top: 1px solid var(--border);
  padding: 10px 0;
  text-align: left;
}

.mini-post-preview th {
  width: 120px;
  color: var(--navy);
  font-weight: 900;
}

.flow-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  align-items: center;
  max-width: 1120px;
}

.flow-intro p:not(.section-label) {
  color: var(--muted);
  font-size: 15px;
}

.flow-note {
  border-left: 3px solid var(--primary);
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
  margin-top: 26px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.process-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 34px 28px;
}

.process-board::before {
  content: "";
  position: absolute;
  top: 74px;
  left: 56px;
  right: 56px;
  height: 2px;
  background: rgba(0, 169, 157, 0.28);
}

.process-board article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 22px 18px;
}

.process-board article.featured {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: 0 18px 42px rgba(26, 43, 76, 0.18);
}

.process-board span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.process-board h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.process-board article.featured h3 {
  color: var(--white);
}

.process-board p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 0;
}

.process-board article.featured p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 16px 24px;
  }

  .facility-tabs {
    top: 119px;
    justify-content: flex-start;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-bg {
    opacity: 0.36;
  }

  .hero-inner,
  .split,
  .access-card,
  .detail-layout,
  .media-section,
  .flow-showcase,
  .post-layout,
  .admin-shell,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-main {
    padding: 28px 22px 48px;
  }

  .admin-topbar,
  .admin-actions {
    justify-content: flex-start;
  }

  .hero-inner {
    gap: 40px;
    padding-top: 80px;
  }

  .coordination-panel {
    align-self: auto;
    margin-bottom: 0;
  }

  .quick-links,
  .service-grid,
  .timeline,
  .visual-overview,
  .care-diagram,
  .stats-band,
  .info-card-grid,
  .info-card-grid.four,
  .process-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-board::before {
    display: none;
  }

  .visual-overview figure:first-child {
    grid-row: auto;
    min-height: 280px;
  }

  .care-center {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: auto;
    transform: none;
  }

  .care-diagram::before {
    display: none;
  }

  .quick-links {
    margin: 0;
    max-width: none;
  }

  .quick-links a:nth-child(2) {
    border-right: none;
  }

  .quick-links a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .sample-notice {
    display: block;
    padding: 8px 14px;
  }

  .sample-notice strong {
    display: block;
    margin-bottom: 2px;
  }

  .facility-tabs {
    top: 54px;
    padding: 0 12px;
  }

  .facility-tabs a {
    font-size: 12px;
    padding: 14px 16px;
  }

  .brand-sub,
  .header-cta {
    display: none;
  }

  .hero-inner,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-metrics,
  .quick-links,
  .service-grid,
  .timeline,
  .visual-overview,
  .care-diagram,
  .stats-band,
  .info-card-grid,
  .info-card-grid.four,
  .process-board {
    grid-template-columns: 1fr;
  }

  .process-board {
    padding: 22px;
  }

  .process-board article,
  .process-board article.featured {
    min-height: 0;
    transform: none;
  }

  .main-node {
    width: 100%;
  }

  .network {
    grid-template-columns: 1fr;
  }

  .network::before,
  .network::after,
  .timeline::before,
  .care-diagram::before {
    display: none;
  }

  .section-head.row,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .access-card {
    padding: 36px 24px;
  }

  .page-hero,
  .detail-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .detail-main,
  .detail-side {
    padding: 28px 22px;
  }

  .post-hero {
    padding: 48px 18px 34px;
  }

  .post-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .post-body {
    padding: 30px 22px;
  }

  .post-cover {
    margin: -30px -22px 30px;
  }

  .post-cover img {
    height: 220px;
  }

  .field-row.two {
    grid-template-columns: 1fr;
  }

  .legal-page {
    padding: 48px 18px 64px;
  }

  .legal-page article {
    padding: 34px 24px;
  }

  .detail-photo {
    height: 220px;
    margin: -28px -22px 30px;
    width: calc(100% + 44px);
  }

  .contact-box strong {
    font-size: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
