@charset "UTF-8";

/* ============================================================
   RESET & ROOT
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #0071BB;
  --blue-dark: #003E80;
  --blue-lt:   #DCE4F5;
  --blue-pale: #EEF3FB;
  --orange:    #F07800;
  --green:     #2E8B57;
  --gray-bg:   #F5F7FA;
  --gray-line: #DEE2E8;
  --text:      #1A1A1A;
  --text-sub:  #555;
  --white:     #fff;
  --radius:    6px;
  --shadow:    0 2px 12px rgba(0,0,0,.1);
  --trans:     all .25s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

/* アクセシビリティ：文字サイズ */
html.font-sm  { font-size: 14px; }
html.font-lg  { font-size: 19px; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }

/* ハイコントラスト */
body.high-contrast {
  filter: contrast(1.5) grayscale(.2);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); transition: var(--trans); }
a:hover { opacity: .8; }
ul { list-style: none; }
address { font-style: normal; }

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 70px 0; }
.bg-light { background: var(--gray-bg); }
.bg-accent { background: var(--blue-lt); }

/* ============================================================
   SECTION TITLE
============================================================ */
.sec-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  padding-left: 16px;
  border-left: 5px solid var(--blue);
  margin-bottom: 40px;
  line-height: 1.3;
}
.sec-en {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ============================================================
   アクセシビリティバー
============================================================ */
.a11y-bar {
  background: #333;
  padding: 4px 0;
}
.a11y-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}
.a11y-label {
  font-size: .72rem;
  color: #ccc;
  margin-right: 4px;
}
.a11y-btn {
  font-family: inherit;
  font-size: .72rem;
  background: transparent;
  border: 1px solid #666;
  color: #ccc;
  padding: 2px 10px;
  cursor: pointer;
  border-radius: 3px;
  transition: var(--trans);
  white-space: nowrap;
}
.a11y-btn:hover,
.a11y-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.a11y-sep {
  display: inline-block;
  width: 1px; height: 14px;
  background: #555;
  margin: 0 6px;
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: var(--trans);
}
.header.hide { transform: translateY(-100%); }

.header-top {
  display: flex;
  align-items: center;
  padding: 12px 40px;
  gap: 20px;
}

/* ロゴ */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { height: 75px; width: auto; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
}
h1 { margin: 0; }

/* 電話番号 */
.header-tel {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.header-tel-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tel-label {
  font-size: .65rem;
  color: var(--text-sub);
  letter-spacing: .05em;
}
.tel-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .05em;
}
.header-tel-item.emg .tel-num { color: #C00; }
.tel-badge {
  font-size: .6rem;
  background: #C00;
  color: #fff;
  padding: 1px 6px;
  border-radius: 3px;
  margin-top: 2px;
}

/* PC用アイコンメニュー */
.header-icons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.header-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: .65rem;
  color: var(--text);
  text-decoration: none;
}
.header-icons img { width: auto; height: 20px; }

/* SP用ボタン・ハンバーガー（初期非表示） */
.header-sp-btns { display: none; }
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hbg span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--trans);
}
.hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* グローバルナビ */
.gnav { background: var(--blue); }
.gnav-list {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.gnav-item {
  flex: 1;
  position: relative;
}
.gnav-item > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: background var(--trans);
  text-align: center;
  padding: 0 8px;
}
.gnav-item:last-child > a { border-right: none; }
.gnav-item:hover > a { background: var(--blue-dark); }

/* ドロップダウン */
.gnav-drop {
  display: none;
  position: absolute;
  top: 52px; left: 0;
  width: 220px;
  background: var(--blue-dark);
  z-index: 100;
  padding: 0;
}
.gnav-item:hover .gnav-drop { display: block; }
.gnav-drop li { border-bottom: 1px solid rgba(255,255,255,.12); }
.gnav-drop a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: .82rem;
  color: var(--white);
  text-decoration: none;
  gap: 8px;
  transition: background var(--trans);
}
.gnav-drop a::before {
  content: '›';
  color: rgba(255,255,255,.6);
  font-size: 1rem;
}
.gnav-drop a:hover { background: rgba(255,255,255,.1); }

/* SP ドロワー */
.drawer {
  position: fixed;
  top: 0; left: -100%;
  width: 80%; max-width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 300;
  overflow-y: auto;
  transition: left .3s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.drawer.open { left: 0; }
.drawer-inner { padding: 20px; }
.drawer-close {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: .9rem;
  cursor: pointer;
  margin-bottom: 20px;
  border-radius: var(--radius);
}
.drawer-list { margin-bottom: 24px; }
.drawer-list li { border-bottom: 1px solid var(--gray-line); }
.drawer-list a {
  display: block;
  padding: 14px 8px;
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
}
.drawer-tel { text-align: center; }
.drawer-tel-label { font-size: .75rem; color: var(--text-sub); }
.drawer-tel-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  margin: 4px 0 12px;
}
.drawer-reserve-btn {
  display: block;
  background: var(--orange);
  color: #fff;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
}

/* ============================================================
   WEB予約固定ボタン
============================================================ */
.reserve-float {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  background: var(--orange);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 16px 8px;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 6px 0 0 6px;
  text-align: center;
  box-shadow: -2px 0 10px rgba(0,0,0,.15);
  transition: width var(--trans);
}
.reserve-float:hover { width: 68px; opacity: 1; }
.reserve-float-icon { font-size: 1.2rem; margin-bottom: 4px; }

/* ============================================================
   MV（メインビジュアル）
============================================================ */
.mv {
  position: relative;
  overflow: hidden;
}

/* スライダー */
.mv-slider { width: 100%; }
.mv-slide {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.mv-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.slick-active .mv-slide-bg { transform: scale(1.06); }

/* スライド上のオーバーレイ */
.mv-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.5) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
}
.mv-slide-content {
  position: absolute;
  z-index: 2;
  bottom: 80px; left: 60px;
  max-width: 560px;
}
.mv-catch {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  margin-bottom: 24px;
}
.mv-btn {
  display: inline-block;
  background: var(--white);
  color: var(--blue-dark);
  padding: 12px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: var(--trans);
}
.mv-btn:hover { background: var(--blue); color: #fff; opacity: 1; }

/* MVのSlickカスタム */
.mv .slick-dots {
  bottom: 20px;
}
.mv .slick-dots li button::before {
  color: rgba(255,255,255,.6);
  font-size: 10px;
}
.mv .slick-dots li.slick-active button::before { color: #fff; }
.mv .slick-prev { left: 20px; z-index: 10; }
.mv .slick-next { right: 20px; z-index: 10; }

/* 診療ガイド */
.mv-guide {
  position: absolute;
  bottom: 0; right: 40px;
  z-index: 10;
  width: 360px;
  background: rgba(255,255,255,.94);
  border-radius: 6px 6px 0 0;
  padding: 16px 20px 20px;
  backdrop-filter: blur(4px);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.mv-guide-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  text-align: center;
  padding: 8px;
  margin: -16px -20px 12px;
  border-radius: 6px 6px 0 0;
}
.mv-guide-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
  font-size: .82rem;
  margin-bottom: 12px;
}
.mv-guide-dl dt { color: var(--text-sub); font-weight: 700; white-space: nowrap; }
.mv-guide-dl dd { color: var(--text); }
.mv-guide-table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.mv-guide-table td { border: 1px solid var(--gray-line); padding: 8px 10px; vertical-align: middle; }
.mv-guide-type { font-size: .78rem; font-weight: 700; color: var(--blue-dark); white-space: nowrap; }
.mv-guide-tel-row { display: flex; align-items: center; gap: 6px; }
.mv-tel-icon { width: 18px; height: 18px; }
.mv-tel-num { font-size: 1.05rem; font-weight: 700; color: var(--text); letter-spacing: .04em; }
.mv-guide-24h { font-size: .72rem; color: var(--orange); margin-top: 3px; text-align: right; }
.mv-guide-reserve-btn {
  display: block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: .85rem;
  transition: var(--trans);
}
.mv-guide-reserve-btn:hover { background: #d06800; opacity: 1; }

/* ============================================================
   目的別ナビ
============================================================ */
.purpose-nav {
  background: var(--blue-dark);
  padding: 0;
}
.purpose-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.purpose-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background var(--trans);
}
.purpose-card:last-child { border-right: none; }
.purpose-card:hover { background: rgba(255,255,255,.08); opacity: 1; }
.purpose-icon { font-size: 2rem; flex-shrink: 0; }
.purpose-body h3 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.purpose-body p { font-size: .75rem; color: rgba(255,255,255,.65); }
.purpose-arrow { margin-left: auto; color: rgba(255,255,255,.5); font-size: 1.2rem; flex-shrink: 0; }

/* ============================================================
   サービス（クイックリンク）
============================================================ */
.service { padding: 40px 0; }
.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: .9rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.service-item a:hover {
  border-top-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  opacity: 1;
}
.service-item figure {
  margin: 0;
  width: 80px;
  height: 80px;          /* ← 高さを固定してカードを揃える */
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-item img {
  width: auto;
  height: 64px;          /* ← 画像高さを統一（幅は自動） */
  max-width: 80px;
  object-fit: contain;
  margin: 0 auto;
}

/* ============================================================
   お知らせ
============================================================ */
.info { background: var(--blue-pale); }
.info-body {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-tabs {
  display: flex;
  flex-wrap: wrap;
  background: var(--blue-lt);
  gap: 0;
}
.info-tab {
  font-family: inherit;
  padding: 12px 20px;
  font-size: .82rem;
  font-weight: 700;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(0,0,0,.08);
  color: var(--text-sub);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.info-tab:last-child { border-right: none; }
.info-tab:hover { background: rgba(0,113,187,.1); color: var(--blue); }
.info-tab.active {
  background: var(--white);
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}

.info-content { min-height: 160px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.info-list { padding: 0; }
.info-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  padding: 14px 24px;
  border-bottom: 1px solid var(--gray-line);
  align-items: baseline;
}
.info-row:last-child { border-bottom: none; }
.info-row dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-sub);
}
.info-row dd a {
  font-size: .88rem;
  color: var(--text);
  text-decoration: none;
}
.info-row dd a:hover { color: var(--blue); }

/* カテゴリーバッジ */
.info-cat {
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.cat-info    { background: var(--blue-lt); color: var(--blue-dark); }
.cat-recruit { background: #FFF0E0; color: var(--orange); }
.cat-media   { background: #E8F5E9; color: var(--green); }

.info-more {
  text-align: right;
  padding: 16px 24px;
  border-top: 1px solid var(--gray-line);
}
.info-more a {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 8px 28px;
  border-radius: 20px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  transition: var(--trans);
}
.info-more a:hover { background: var(--blue-dark); opacity: 1; }

/* ============================================================
   当院の特長
============================================================ */
.about-lead {
  font-size: 1rem;
  color: var(--text-sub);
  margin-bottom: 32px;
  line-height: 1.7;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.14); opacity: 1; }
.about-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--blue-lt);
}
.about-card-body {
  padding: 20px;
  border-top: 3px solid var(--blue);
}
.about-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.about-card-body p { font-size: .85rem; color: var(--text-sub); line-height: 1.7; }

/* ============================================================
   トピックス
============================================================ */
.topics { background: var(--blue-lt); }
.topics-slider {
  margin-top: 0;
  max-width: 760px;      /* ← PC表示での最大幅を制限 */
  margin-left: auto;
  margin-right: auto;
}
.topics-slider img { width: 100%; height: auto; border-radius: var(--radius); }
.topics-slider .slick-slide { padding: 0 8px; opacity: .6; transform: scale(.92); transition: all .4s; }
.topics-slider .slick-center { opacity: 1; transform: scale(1); }

/* ============================================================
   よく見られているページ
============================================================ */
.quick-links { padding: 36px 0; }
.quick-links-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 20px;
}
.quick-links-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.quick-link-btn {
  display: inline-block;
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--blue);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: var(--trans);
}
.quick-link-btn:hover { background: var(--blue); color: #fff; opacity: 1; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: #F0F2F5; }
.footer-main { padding: 60px 0 40px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

/* フッターナビ */
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.faccord-toggle { display: none; }

/* PC：アコーディオン無効（常時展開） */
.faccord-label { display: block; cursor: default; }
.faccord-label h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue-dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  margin-bottom: 12px;
}
.faccord-content { display: block !important; }
.faccord-content li { line-height: 1; }
.faccord-content a {
  display: block;
  font-size: .82rem;
  color: var(--text-sub);
  text-decoration: none;
  padding: 5px 0;
  transition: color var(--trans);
}
.faccord-content a:hover { color: var(--blue); }

/* 診療科は2列 */
.footer-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

/* 病院情報 */
.footer-info { text-align: center; }
.footer-logo { width: 200px; margin: 0 auto 16px; }
.footer-addr { font-size: .82rem; color: var(--text-sub); line-height: 2; margin-bottom: 16px; }
.footer-addr a { color: var(--text-sub); text-decoration: none; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}
.footer-links a { font-size: .75rem; color: var(--text-sub); text-decoration: none; }
.footer-links a:hover { color: var(--blue); }

.footer-cr {
  background: var(--blue-dark);
  text-align: center;
  padding: 14px;
}
.footer-cr p { font-size: .78rem; color: rgba(255,255,255,.7); }

/* ページトップ */
.page-top {
  position: fixed;
  bottom: 32px; right: 80px;
  z-index: 100;
  width: 44px; height: 44px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.page-top.show { opacity: 1; transform: translateY(0); }
.page-top:hover { background: var(--blue-dark); }

/* ============================================================
   RESPONSIVE — タブレット（≤1024px）
============================================================ */
@media screen and (max-width: 1024px) {
  .inner { padding: 0 24px; }

  /* ヘッダー */
  .header-top { padding: 10px 24px; }
  .header-tel { gap: 12px; }
  .tel-num { font-size: 1rem; }
  .header-icons { display: none; }
  .hbg { display: flex; }
  .header-sp-btns { display: flex; gap: 8px; }
  .header-sp-btns li a {
    display: flex; align-items: center; gap: 4px;
    font-size: .72rem; color: var(--text);
    text-decoration: none; padding: 5px 10px;
    background: var(--blue-lt); border-radius: 4px;
  }
  .header-sp-btns img { width: 18px; }

  /* gnav：タブレットでは非表示→ドロワーへ */
  .gnav { display: none; }

  /* MV */
  .mv-slide { height: 420px; }
  .mv-slide-content { left: 32px; bottom: 60px; }
  .mv-guide { right: 24px; width: 300px; }

  /* 目的別ナビ */
  .purpose-card { padding: 18px 20px; gap: 12px; }
  .purpose-body h3 { font-size: .85rem; }

  /* サービス */
  .service-list { grid-template-columns: repeat(2, 1fr); }

  /* 当院の特長 */
  .about-grid { grid-template-columns: 1fr 1fr; }

  /* フッター */
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-info { text-align: left; }
  .footer-logo { margin-left: 0; }
  .footer-links { justify-content: flex-start; }
  .a11y-inner { padding: 0 24px; }
}

/* ============================================================
   RESPONSIVE — スマホ（≤767px）
============================================================ */
@media screen and (max-width: 767px) {
  .inner { padding: 0 16px; }
  .section { padding: 48px 0; }

  /* アクセシビリティバー */
  .a11y-inner { padding: 0 16px; justify-content: center; }
  .a11y-btn { padding: 2px 8px; font-size: .68rem; }

  /* ヘッダー */
  .header-top { padding: 10px 16px; flex-wrap: wrap; }
  .header-logo .logo-text { display: none; }
  .logo-img { height: 37px; }
  .header-tel { display: none; }

  /* グローバルナビ非表示 */
  .gnav { display: none; }

  /* MV */
  .mv-slide { height: 280px; }
  .mv-slide::after {
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.5) 100%);
  }
  .mv-slide-content { left: 16px; bottom: 60px; right: 16px; }
  .mv-catch { font-size: 1.1rem; }
  .mv-btn { font-size: .8rem; padding: 10px 20px; }

  /* MVのSlick dots */
  .mv .slick-dots { bottom: 10px; }

  /* 診療ガイドをMVから切り離して下に表示 */
  .mv-guide {
    position: static;
    width: 100%;
    border-radius: 0;
    padding: 16px;
    box-shadow: none;
    border-top: 3px solid var(--blue);
  }
  .mv-guide-title { margin: -16px -16px 12px; border-radius: 0; }
  .mv-guide-dl { font-size: .8rem; }
  .mv-tel-num { font-size: .95rem; }

  /* WEB予約固定ボタン */
  .reserve-float {
    width: 52px;
    padding: 12px 6px;
    font-size: .62rem;
  }

  /* 目的別ナビ */
  .purpose-inner { grid-template-columns: 1fr; }
  .purpose-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 16px; }
  .purpose-card:last-child { border-bottom: none; }
  .purpose-icon { font-size: 1.5rem; }

  /* サービス */
  .service { padding: 28px 0; }
  .service-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-item a { padding: 16px 10px; font-size: .8rem; }
  .service-item img { width: 44px; }

  /* セクションタイトル */
  .sec-title { font-size: 1.25rem; margin-bottom: 28px; }

  /* お知らせ */
  .info-tabs { gap: 0; }
  .info-tab { padding: 10px 12px; font-size: .75rem; }
  .info-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 16px; }
  .info-row dt { font-size: .75rem; }
  .info-row dd a { font-size: .82rem; }
  .info-more { padding: 12px 16px; }

  /* 当院の特長 */
  .about-grid { grid-template-columns: 1fr; }
  .about-card-img { height: 160px; }

  /* クイックリンク */
  .quick-links-list { gap: 10px; }
  .quick-link-btn { padding: 10px 18px; font-size: .8rem; }

  /* フッター */
  .footer-main { padding: 36px 0 24px; }
  .footer-inner { padding: 0 16px; }
  .footer-nav { grid-template-columns: 1fr; gap: 0; }

  /* SPではアコーディオン */
  .faccord-label { cursor: pointer; border-bottom: 1px solid var(--gray-line); }
  .faccord-label h4 {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 8px; margin: 0; border-bottom: none;
    font-size: .88rem;
  }
  .faccord-label h4::after { content: '+'; color: var(--blue); font-size: 1.2rem; }
  .faccord-toggle:checked + .faccord-label h4::after { content: '−'; }
  .faccord-content {
    display: none !important;
    padding: 0 8px 12px;
  }
  .faccord-toggle:checked ~ .faccord-content { display: block !important; }
  .faccord-content a { padding: 8px 0; border-bottom: 1px solid var(--gray-line); }
  .footer-nav-cols { display: block; }

  .footer-info { text-align: center; margin-top: 24px; padding: 24px 16px; }
  .footer-logo { margin: 0 auto 12px; width: 160px; }
  .footer-links { justify-content: center; }
  .footer-addr { font-size: .78rem; }

  /* ページトップ */
  .page-top { bottom: 20px; right: 70px; width: 40px; height: 40px; }

  .a11y-bar { display: none; }
}
