@charset "UTF-8";
:root {
  --bg: #f8fbfc;
  --bg-alt: #f2f7fa;
  --card: #ffffff;
  --text: #24323d;
  --muted: #5f7180;
  --line: #d8e4ea;
  --accent: #2f6f8f;
  --accent-dark: #24586f;
  --accent-soft: #e8f3f8;
  --shadow: 0 10px 30px rgba(36, 50, 61, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  /* ===== Font Size Scale ===== */
  --fs-xs: 13px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 17px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 28px;
  --fs-4xl: 34px;
  --fs-hero: clamp(34px, 4vw, 44px);
  /* ===== Line Height ===== */
  --lh-base: 1.8;
  --lh-tight: 1.4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  letter-spacing: 0.02em;
}

h1, h2, h3 {
  line-height: 1.3〜1 0.4;
}

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

p {
  line-height: 1.8;
}

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

.container {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
}

ul {
  margin: 0;
  padding-left: 1.2em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/*
教育ポイント

transition を header 自体に入れることで
スクロール後の変化がヌルッと自然になります

background だけでなく
box-shadow と border-color も一緒に変えるのがコツです
*/
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(36, 50, 61, 0.08);
}

/*
教育ポイント

.is-scrolled は JS が付けるクラスです

スクロール後に
- 背景を濃く
- 下線を出す
- 影を出す

これで「固定されている感」が出ます
*/
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  transition: min-height 0.25s ease;
}

.header.is-scrolled .header-inner {
  min-height: 68px;
}

/*
教育ポイント

スクロール後に少しだけ高さを詰めると
密度が上がって、洗練されて見えます

やりすぎると窮屈になるので 8px 程度で十分です
*/
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-dark);
  position: relative;
  z-index: 1001;
  transition: transform 0.25s ease;
}

.header.is-scrolled .logo {
  transform: scale(0.98);
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #ffffff 18%, transparent 19%), linear-gradient(135deg, #2f6f8f 0%, #5f9bb6 100%);
  box-shadow: 0 8px 18px rgba(47, 111, 143, 0.18);
  position: relative;
  flex-shrink: 0;
}

/*
教育ポイント

.logo-mark はCSSだけで作る簡易マークです。
最初は「仮ロゴ」をHTML+CSSで作ると、
サイズや余白の感覚がつかみやすいです。
*/
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 999px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*
教育ポイント

::before と ::after で十字を作っています。
疑似要素は「装飾」にかなり便利です。
*/
.logo-mark::before {
  width: 16px;
  height: 4px;
}

.logo-mark::after {
  width: 4px;
  height: 16px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-sub {
  margin-top: 2px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .logo {
    gap: 10px;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
  }
  .logo-main {
    font-size: 18px;
  }
  .logo-sub {
    font-size: 9px;
  }
}
/*
教育ポイント

scale はほんの少しだけ
0.98 くらいなら自然です
*/
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  font-size: var(--fs-sm);
  color: var(--muted);
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav a:hover {
  color: var(--accent-dark);
}

.nav a.is-current {
  color: var(--accent-dark);
  font-weight: 700;
  position: relative;
}

.nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--accent-dark);
}

/* hamburger button */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--accent-dark);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/*
教育ポイント

span 3本でハンバーガーを作っています
画像ではなくCSSで作ると軽くて調整しやすいです
*/
@media (max-width: 768px) {
  .header-inner {
    min-height: 70px;
  }
  .header.is-scrolled .header-inner {
    min-height: 64px;
  }
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 18px 40px rgba(36, 50, 61, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .nav a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid #eef3f6;
    font-size: 15px;
  }
  .nav a:last-child {
    border-bottom: 0;
  }
  .nav-cta {
    margin-top: 10px;
    padding: 0 16px;
    min-height: 44px;
    justify-content: center;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  /*
  教育ポイント

  display:none を使わず
  opacity / visibility / transform で制御すると
  アニメーションが自然になります
  */
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /*
  教育ポイント

  1本目と3本目を回転
  2本目を消す
  ↓
  バツ印になります
  */
}
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  max-height: 48px;
  width: auto;
  display: block;
}

.hero {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 42%), linear-gradient(180deg, #f7fbfd 0%, #f3f8fb 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  min-height: 60vh;
  padding-top: 32px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 640px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #e6f0f6;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-title {
  text-wrap: balance;
  margin: 24px 0 20px;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: #223446;
}

.hero-text {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-xl);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions .btn {
  box-shadow: 0 8px 18px rgba(34, 52, 70, 0.08);
}

.hero-visual {
  position: relative;
}

.hero-visual-card {
  position: relative;
  max-width: 620px;
  margin-left: auto;
  padding: 22px;
  border-radius: 28px;
  background: #eaf3f8;
  box-shadow: inset 0 0 0 1px rgba(47, 111, 143, 0.08);
  box-shadow: 0 18px 40px rgba(47, 111, 143, 0.08);
}

.hero-image {
  overflow: hidden;
  border-radius: 24px;
  background: #dfeaf0;
}

.hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.96) brightness(1.02);
}

.hero-schedule-card {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: min(380px, 84%);
  padding: 24px 24px 18px;
  border: 1px solid rgba(34, 52, 70, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 50px rgba(34, 52, 70, 0.14);
  backdrop-filter: blur(8px);
}

.hero-schedule-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  color: #223446;
}

.hero-schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.hero-schedule-table th,
.hero-schedule-table td {
  padding: 14px 0;
  border-bottom: 1px solid #d9e3ea;
  font-size: 15px;
}

.hero-schedule-table th {
  width: 96px;
  text-align: left;
  color: #223446;
  font-weight: 700;
}

.hero-schedule-table td {
  color: var(--muted);
}

.hero-schedule-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .hero-inner {
    gap: 28px;
  }
  .hero-title {
    font-size: clamp(36px, 4.8vw, 58px);
  }
  .hero-image img {
    height: 380px;
  }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2px;
    padding-bottom: 32px;
  }
  .hero-content {
    max-width: none;
  }
  .hero-text {
    max-width: none;
    font-size: 16px;
  }
  .hero-visual-card {
    max-width: none;
    margin-left: 0;
    padding: 18px;
    border-radius: 24px;
  }
  .hero-image img {
    height: 340px;
  }
  .hero-schedule-card {
    position: static;
    width: 100%;
    margin-top: 14px;
    padding: 22px 20px 18px;
  }
}
@media (max-width: 640px) {
  .hero-title {
    word-break: keep-all;
    margin: 22px 0 18px;
    font-size: 34px;
    line-height: 1.15;
  }
  .hero-inner {
    padding-top: 18px;
  }
  .hero-text {
    font-size: 15px;
    line-height: 1.8;
  }
  .hero-label {
    font-size: 13px;
    min-height: 38px;
    padding: 0 14px;
  }
  .hero-actions {
    gap: 12px;
    margin-top: 28px;
  }
  .hero-actions .btn {
    min-width: 0;
  }
  .hero-image img {
    height: 280px;
  }
  .hero-schedule-table th,
  .hero-schedule-table td {
    font-size: 14px;
    padding: 12px 0;
  }
}
.section {
  padding: 80px 0;
}

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

.section-head {
  margin-bottom: 32px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 12px;
  font-size: var(--fs-3xl);
  line-height: 1.25;
}

.section-text {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 8px;
  font-size: var(--fs-md);
  color: var(--muted);
}

.section-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.page-hero {
  padding-top: 72px;
  padding-bottom: 32px;
}

.page-content {
  max-width: 760px;
  margin: auto;
  line-height: 1.9;
}

.page-content p + p {
  margin-top: 1em;
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}
.article-back {
  margin-top: 40px;
}

.article-back a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.article-back a:hover {
  opacity: 0.7;
}

.footer {
  background: #1f2d36;
  color: #eaf0f3;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 48px 0;
}

.footer h3,
.footer h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.footer p,
.footer li,
.footer a {
  color: #d7e2e8;
  font-size: 14px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li + li {
  margin-top: 8px;
}

.footer-bottom {
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #b8c7d0;
}

.footer-copy {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.page-content {
  max-width: 760px;
  margin: auto;
  line-height: 1.9;
}

.page-content p + p {
  margin-top: 1em;
}

.page-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
  margin-left: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

/*
  教育ポイント:
  ボタンに transition を入れると、
  hover の変化が急すぎず、触り心地が良くなります。
*/
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 111, 143, 0.18);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/*
  教育ポイント:
  ボタンの hover は 1〜2px で十分です。
  大きく動かすと安っぽくなりやすいです。
*/
.btn-secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: #f8fcfe;
  transform: translateY(-2px);
}

.breadcrumb {
  background: #f8fbfc;
  border-bottom: 1px solid var(--line);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 14px 0;
}

.breadcrumb-item {
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb-item a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  opacity: 0.7;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  margin-right: 10px;
  color: #9aa9b5;
}

/* =========================
   Medical common card
========================= */
.medical-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.medical-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.medical-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(36, 50, 61, 0.12);
  border-color: var(--accent);
}

.medical-card-link {
  display: block;
  height: 100%;
}

.medical-card-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.medical-card-body {
  padding: 24px;
}

.medical-card-title {
  margin: 0 0 10px;
  font-size: var(--fs-lg);
  line-height: 1.3;
}

.medical-card-catch {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 600;
}

.medical-card-summary {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.medical-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.medical-card-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
}

.medical-card-more {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
}

.medical-empty {
  text-align: center;
  color: var(--muted);
}

/* =========================
   Medical detail
========================= */
.medical-featured-image {
  margin-bottom: 32px;
}
.medical-featured-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.medical-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.medical-main-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.medical-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.medical-block h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 22px;
}
.medical-block p {
  margin: 0;
  color: var(--text);
  line-height: 1.9;
}

.medical-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text);
  line-height: 1.9;
}

.medical-list li + li {
  margin-top: 8px;
}

.medical-wysiwyg {
  line-height: 1.9;
}
.medical-wysiwyg p + p {
  margin-top: 1em;
}
.medical-wysiwyg ul,
.medical-wysiwyg ol {
  margin-left: 1.2em;
}

.medical-side-card {
  position: sticky;
  top: 100px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.medical-side-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}
.medical-side-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.medical-note-box {
  background: var(--accent-soft);
}

.medical-single .page-hero .section-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.medical-single .page-hero .section-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--fs-lg);
  line-height: 1.8;
}

.medical-featured-image {
  max-width: 720px;
  margin: 0 0 28px;
  border-radius: 24px;
  overflow: hidden;
  background: #f4f8fb;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20, 40, 60, 0.08);
}

.medical-featured-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center center;
}

.medical-block {
  border-radius: 24px;
  padding: 28px 28px 30px;
  box-shadow: 0 8px 24px rgba(20, 40, 60, 0.05);
}

.medical-block + .medical-block {
  margin-top: 20px;
}

.medical-block--lead {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.medical-block--alert {
  border-left: 4px solid var(--accent);
  background: #f7fbff;
}

.medical-block h2 {
  margin-top: 0;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 26px;
  line-height: 1.35;
}

.medical-wysiwyg {
  color: var(--text);
  font-size: var(--fs-base);
  line-height: 1.95;
}

.medical-side-card h3 {
  font-size: var(--fs-2xl);
}

.medical-side-card p {
  font-size: 15px;
}

.medical-side-card .btn {
  width: 100%;
  justify-content: center;
}

.medical-side-card .btn + .btn {
  margin-top: 12px;
}

/* =========================
   Legacy / fallback
   （古いmedical-grid構造を使っていても壊れないよう残す）
========================= */
.medical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.medical-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: opacity 0.2s;
}

.medical-link:hover {
  opacity: 0.7;
}

.medical-icon {
  font-size: 28px;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}

.medical-card:hover .medical-icon {
  transform: scale(1.15);
}

/* =========================
   Responsive
========================= */
@media (max-width: 960px) {
  .medical-card-grid {
    grid-template-columns: 1fr;
  }
  .medical-grid {
    grid-template-columns: 1fr 1fr;
  }
  .medical-detail-layout {
    grid-template-columns: 1fr;
  }
  .medical-side-card {
    position: static;
  }
}
@media (max-width: 640px) {
  .medical-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Medical archive tuning
========================= */
.medical-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.medical-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.medical-card-thumb {
  overflow: hidden;
  background: #f4f8fb;
}

.medical-card-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.medical-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.medical-card-title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
  color: var(--text);
}

.medical-card-catch {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.6;
}

.medical-card-summary {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.medical-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.medical-card-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
}

.medical-card-more {
  display: inline-block;
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
}

.medical-card-grid--archive .medical-card {
  min-height: 100%;
}

.medical-card-grid--archive .medical-card-title {
  font-size: 22px;
}

.medical-card-grid--archive .medical-card-summary {
  font-size: 15px;
}

/* responsive */
@media (max-width: 1024px) {
  .medical-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .medical-card-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .medical-card-body {
    padding: 20px;
  }
  .medical-card-title {
    font-size: 22px;
  }
  .medical-card-summary {
    font-size: 15px;
  }
  .medical-single .page-hero .section-text {
    font-size: var(--fs-base);
  }
  .medical-block h2 {
    font-size: 22px;
  }
  .medical-wysiwyg {
    font-size: 15px;
  }
  .medical-side-card h3 {
    font-size: 21px;
  }
}
/* =========================
   Doctor common card
========================= */
.doctor-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.doctor-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(36, 50, 61, 0.12);
  border-color: var(--accent);
}

.doctor-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.doctor-card-thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #f4f8fb;
}

.doctor-card-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.doctor-card-body {
  padding: 24px;
}

.doctor-card-name {
  margin: 0 0 10px;
  font-size: var(--fs-xl);
  line-height: 1.35;
  color: var(--text);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.doctor-card-role {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.6;
}

.doctor-card-summary {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.doctor-card-more {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
}

.doctor-empty {
  text-align: center;
  color: var(--muted);
}

/* =========================
   TOP Doctor Featured
========================= */
.doctor-section .doctor-card-grid {
  display: block;
}

.doctor-card-grid--featured {
  max-width: 980px;
  margin: 0 auto;
}

.doctor-card--featured {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 40, 60, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.doctor-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(36, 50, 61, 0.1);
  border-color: var(--accent);
}

.doctor-card-link--featured {
  display: flex;
  align-items: stretch;
  min-height: 340px;
  color: inherit;
  text-decoration: none;
}

.doctor-card-thumb--featured {
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;
  background: #f4f8fb;
  overflow: hidden;
}

.doctor-card-thumb--featured img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 12%;
}

.doctor-card-body--featured {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 40px 28px 44px;
  background: #fff;
  min-width: 0;
}

.doctor-card-body--featured > * {
  max-width: 460px;
}

.doctor-card--featured .doctor-card-name {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.doctor-card--featured .doctor-card-role {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.5;
}

.doctor-card--featured .doctor-card-summary {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.doctor-card--featured .doctor-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
}

/* =========================
   Single Doctor
========================= */
.doctor-single .page-hero {
  padding-top: 72px;
  padding-bottom: 44px;
}

.doctor-single .page-hero .section-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.doctor-single .page-hero .section-label {
  margin-bottom: 10px;
}

.doctor-single .page-hero .section-title {
  margin-bottom: 10px;
  font-size: var(--fs-hero);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.doctor-single .page-hero .section-title small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.5;
}

.doctor-single .page-hero .section-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.doctor-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 320px;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}

.doctor-main-content {
  min-width: 0;
}

.doctor-featured-image {
  max-width: 560px;
  margin: 0 0 28px;
  border-radius: 24px;
  overflow: hidden;
  background: #f4f8fb;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20, 40, 60, 0.08);
}

.doctor-featured-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 12%;
}

.doctor-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 28px 30px;
  box-shadow: 0 8px 24px rgba(20, 40, 60, 0.05);
}

.doctor-block + .doctor-block {
  margin-top: 20px;
}

.doctor-block--lead {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.doctor-block h2 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.doctor-wysiwyg {
  color: var(--text);
  font-size: var(--fs-base);
  line-height: 1.95;
}

.doctor-wysiwyg p {
  margin: 0;
}

.doctor-wysiwyg p + p {
  margin-top: 1em;
}

.doctor-wysiwyg ul,
.doctor-wysiwyg ol {
  margin: 0;
  padding-left: 1.4em;
}

.doctor-wysiwyg li + li {
  margin-top: 0.45em;
}

.doctor-wysiwyg strong {
  color: var(--text);
  font-weight: 700;
}

.doctor-meta-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-meta-list li {
  color: var(--muted);
  line-height: 1.8;
}

.doctor-side-card {
  position: sticky;
  top: 96px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 24px 24px;
  box-shadow: 0 8px 24px rgba(20, 40, 60, 0.05);
}

.doctor-side-card h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: var(--fs-2xl);
  line-height: 1.35;
}

.doctor-side-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.doctor-side-list {
  margin: 0 0 22px;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.doctor-side-list li + li {
  margin-top: 0.45em;
}

.doctor-side-card .btn {
  width: 100%;
  justify-content: center;
}

.article-back {
  margin-top: 34px;
}

.article-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.article-back a:hover {
  opacity: 0.75;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
  .doctor-detail-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }
  .doctor-featured-image {
    max-width: 520px;
  }
}
@media (max-width: 1024px) {
  .doctor-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .doctor-card--featured {
    max-width: 860px;
  }
  .doctor-card-thumb--featured {
    width: 260px;
    min-width: 260px;
  }
  .doctor-card-body--featured {
    padding: 24px 28px 24px 34px;
  }
  .doctor-card-body--featured > * {
    max-width: 420px;
  }
  .doctor-card--featured .doctor-card-name {
    font-size: var(--fs-2xl);
  }
  .doctor-card--featured .doctor-card-role {
    font-size: var(--fs-md);
  }
  .doctor-card--featured .doctor-card-summary {
    font-size: 15px;
  }
}
@media (max-width: 960px) {
  .doctor-card-grid {
    grid-template-columns: 1fr;
  }
  .doctor-detail-layout {
    grid-template-columns: 1fr;
  }
  .doctor-side-card {
    position: static;
  }
  .doctor-featured-image {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .doctor-single .page-hero {
    padding-top: 56px;
    padding-bottom: 30px;
  }
  .doctor-single .page-hero .section-title {
    font-size: var(--fs-4xl);
  }
  .doctor-single .page-hero .section-title small {
    font-size: 15px;
  }
  .doctor-single .page-hero .section-text {
    font-size: var(--fs-base);
  }
  .doctor-featured-image {
    margin-bottom: 22px;
    border-radius: 20px;
  }
  .doctor-featured-image img {
    aspect-ratio: 4/3;
    object-position: center 14%;
  }
  .doctor-block {
    padding: 22px 20px 24px;
    border-radius: 20px;
  }
  .doctor-block h2 {
    margin-bottom: 14px;
    font-size: 22px;
  }
  .doctor-wysiwyg {
    font-size: 15px;
    line-height: 1.9;
  }
  .doctor-side-card {
    padding: 22px 20px;
    border-radius: 20px;
  }
  .doctor-side-card h3 {
    font-size: 21px;
  }
  .article-back {
    margin-top: 26px;
  }
  .doctor-card-body {
    padding: 20px;
  }
  .doctor-card-name {
    font-size: 22px;
  }
  .doctor-card--featured {
    max-width: 100%;
  }
  .doctor-card-link--featured {
    flex-direction: column;
    min-height: auto;
  }
  .doctor-card-thumb--featured {
    width: 100%;
    min-width: 0;
    min-height: 280px;
  }
  .doctor-card-body--featured {
    padding: 24px 20px 28px;
  }
  .doctor-card-body--featured > * {
    max-width: none;
  }
  .doctor-card--featured .doctor-card-name {
    font-size: var(--fs-2xl);
    line-height: 1.4;
  }
  .doctor-card--featured .doctor-card-role {
    font-size: var(--fs-md);
  }
  .doctor-card--featured .doctor-card-summary {
    font-size: 15px;
    line-height: 1.8;
  }
  .doctor-card--featured .doctor-card-more {
    font-size: var(--fs-base);
  }
}
/* =========================
   News cards
========================= */
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(36, 50, 61, 0.12);
  border-color: var(--accent);
}

.news-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.news-card-date {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.news-card-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.news-card-title {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.45;
}

.news-card-summary {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.news-card-more {
  display: inline-block;
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
}

.news-empty {
  text-align: center;
  color: var(--muted);
}

/* =========================
   Top news section
========================= */
.news-card-grid--top .news-card-title {
  font-size: 20px;
}

.news-card-grid--top .news-card-summary {
  font-size: 15px;
}

.news-section .news-card {
  min-height: 100%;
}

/* =========================
   News detail
========================= */
.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.news-main-content {
  min-width: 0;
}

.news-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(20, 40, 60, 0.05);
}

.news-wysiwyg {
  line-height: 1.95;
  color: var(--text);
}

.news-wysiwyg p {
  margin: 0;
}

.news-wysiwyg p + p {
  margin-top: 1em;
}

.news-wysiwyg ul,
.news-wysiwyg ol {
  margin-left: 1.2em;
}

.news-side-card {
  position: sticky;
  top: 100px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(20, 40, 60, 0.05);
}

.news-side-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
}

.news-side-card p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.pagination {
  margin-top: 36px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 1024px) {
  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .news-card-grid {
    grid-template-columns: 1fr;
  }
  .news-detail-layout {
    grid-template-columns: 1fr;
  }
  .news-side-card {
    position: static;
  }
}
@media (max-width: 767px) {
  .news-card-body {
    padding: 20px;
  }
  .news-card-title {
    font-size: 20px;
  }
  .news-card-summary {
    font-size: 15px;
  }
  .news-block {
    padding: 22px 20px;
    border-radius: 20px;
  }
  .news-side-card {
    padding: 22px 20px;
    border-radius: 20px;
  }
}
/* =========================
   News single page
========================= */
.news-single-page .page-hero .section-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.news-single-page .page-hero .section-title {
  margin-bottom: 14px;
}

.news-single-page .page-hero .section-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.news-hero-separator {
  margin: 0 6px;
  color: var(--muted);
}

.news-hero-category {
  color: var(--accent);
  font-weight: 700;
}

.news-side-list {
  margin: 0 0 20px;
  padding-left: 1.2em;
  color: var(--muted);
  line-height: 1.8;
}

.news-side-list li + li {
  margin-top: 0.4em;
}

.news-side-card .btn {
  width: 100%;
  justify-content: center;
}

.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

/*
教育ポイント

mapを大きくしたいので

1.2fr 0.8fr

にしています
*/
.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/*
iframeは高さ指定が必要
*/
.access-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.access-card:hover {
  transform: translateY(-6px);
}

/*
hoverで少し浮かせる
*/
.clinic-name {
  margin: 0;
  font-size: 22px;
}

.clinic-address {
  margin: 0;
  color: var(--muted);
}

.clinic-tel {
  margin: 0;
  font-weight: 600;
}

.clinic-info {
  margin-top: 8px;
}

.clinic-info h4 {
  margin: 0 0 10px 0;
}

.clinic-table {
  width: 100%;
  border-collapse: collapse;
}

.clinic-table th {
  text-align: left;
  padding: 6px 0;
  width: 30px;
}

.clinic-table td {
  text-align: center;
  padding: 6px;
}

/*
診療表は中央配置が見やすい
*/
.clinic-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

.access-btn {
  margin-top: auto;
}

@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
  .access-map iframe {
    min-height: 300px;
  }
}
/* =========================
   CTA Section
========================= */
.cta-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: center;
  padding: 44px 44px 42px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(20, 40, 60, 0.06), 0 2px 8px rgba(20, 40, 60, 0.03);
}

.cta-content .section-label {
  margin-bottom: 10px;
}

.cta-content .section-title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.3;
}

.cta-content .section-text {
  max-width: 640px;
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.9;
}

.cta-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-actions .btn {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-actions .btn:hover {
  transform: translateY(-2px);
}

.cta-actions .btn-primary {
  box-shadow: 0 12px 28px rgba(47, 111, 143, 0.22);
}

.cta-actions .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.cta-actions .btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.cta-actions .btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

@media (max-width: 1024px) {
  .cta-box {
    gap: 24px;
  }
}
@media (max-width: 960px) {
  .cta-box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .cta-actions {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cta-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .cta-box {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .cta-content .section-title {
    font-size: 28px;
  }
  .cta-content .section-text,
  .cta-text {
    font-size: 15px;
    line-height: 1.8;
  }
  .cta-actions .btn {
    min-height: 48px;
    font-size: 14px;
    border-radius: 12px;
  }
  .cta-actions .btn-primary {
    min-height: 52px;
  }
  .cta-actions .btn-secondary {
    opacity: 0.85;
  }
}
/* =========================
   Home page tuning
========================= */
.home p,
.front-page p {
  letter-spacing: 0.02em;
}

/* ---------------------------------
   Hero : TOPだけ少し整える
--------------------------------- */
.home .hero-text,
.front-page .hero-text {
  max-width: 560px;
}

.home .hero-actions,
.front-page .hero-actions {
  align-items: center;
}

/* ---------------------------------
   Section head : TOPだけ少し呼吸を整える
--------------------------------- */
.home .section-head,
.front-page .section-head {
  margin-bottom: 36px;
}

.home .section-text,
.front-page .section-text {
  max-width: 760px;
}

/* ---------------------------------
   TOP sections : 余白の見え方を整える
--------------------------------- */
.home .doctor-section,
.front-page .doctor-section,
.home .news-section,
.front-page .news-section {
  overflow: hidden;
}

/* ---------------------------------
   CTA : TOP末尾での収まりを少し整える
--------------------------------- */
.home .cta-section,
.front-page .cta-section {
  padding-top: 88px;
}

.home .cta-box,
.front-page .cta-box {
  max-width: 1040px;
  margin-inline: auto;
}

/* ---------------------------------
   Responsive
--------------------------------- */
@media (max-width: 960px) {
  .home .section-head,
  .front-page .section-head {
    margin-bottom: 32px;
  }
  .home .cta-section,
  .front-page .cta-section {
    padding-top: 72px;
  }
}
@media (max-width: 767px) {
  .home .hero-text,
  .front-page .hero-text {
    max-width: none;
  }
  .home .section-text,
  .front-page .section-text {
    max-width: none;
  }
  .home .section-head,
  .front-page .section-head {
    margin-bottom: 28px;
  }
}
/* responsive */
@media (max-width: 960px) {
  .hero-inner,
  .about-layout,
  .access-layout,
  .doctor-card {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .hero {
    padding: 56px 0 48px;
  }
  .section {
    padding: 64px 0;
  }
  .container {
    width: min(1100px, 100% - 28px);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
