/* =========================================================
   大門ヒルズクリニック HP リニューアル ハイファイ
   Design tokens: 深青緑 × 生成り × 白 (ゴシック統一)
   ========================================================= */

:root {
  /* Colors */
  --primary:       #1F5D5D;   /* 深青緑 */
  --primary-dark:  #12403F;
  --primary-mid:   #2E7B7B;
  --primary-soft:  #E8F0EE;
  --primary-tint:  #F2F7F5;

  --accent:        #C86B3C;
  --accent-dark:   #A9552B;
  --accent-tint:   #FBEEE4;

  --bg:            #FAF7F0;
  --bg-white:      #FFFFFF;
  --bg-mute:       #F1EDDF;
  --bg-warm:       #F5F0DE;

  --text:          #16302F;
  --text-body:     #2A403F;
  --text-muted:    #5E6E6D;
  --text-light:    #8A9A99;

  --border:        #E8E1CE;
  --border-mid:    #D6CDB4;
  --border-strong: #B8AC8B;

  --alert:         #8B2E2E;
  --alert-bg:      #F7E9E4;
  --success:       #3D7C5A;
  --info-yellow-bg:#FCF7E7;
  --info-yellow-bd:#E4D89E;

  /* Type */
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", system-ui, sans-serif;
  --font-num:  "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;

  /* Radius */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Elevation */
  --elev-1: 0 1px 2px rgba(22, 48, 47, .05), 0 1px 3px rgba(22, 48, 47, .04);
  --elev-2: 0 4px 10px rgba(22, 48, 47, .06), 0 2px 4px rgba(22, 48, 47, .04);
  --elev-3: 0 10px 30px rgba(22, 48, 47, .10), 0 4px 10px rgba(22, 48, 47, .05);
  --elev-4: 0 24px 60px rgba(22, 48, 47, .14), 0 8px 16px rgba(22, 48, 47, .06);

  /* Spacing scale (informational) */
  --wrap: 1200px;
  --wrap-narrow: 960px;

  /* Motion */
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-in-out: cubic-bezier(.65, .05, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.85;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--primary-dark); }

/* Headings */
h1, h2, h3, h4, h5 { margin: 0; color: var(--text); line-height: 1.4; font-weight: 500; letter-spacing: .01em; }
h1 { font-size: 40px; font-weight: 700; letter-spacing: .02em; line-height: 1.35; }
h2 { font-size: 32px; font-weight: 500; letter-spacing: .04em; }
h3 { font-size: 20px; font-weight: 500; }
h4 { font-size: 16px; font-weight: 500; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Utilities */
.muted { color: var(--text-muted); }
.small { font-size: 14px; }
.xsmall { font-size: 12px; }
.center { text-align: center; }
.mono-num { font-family: var(--font-num); font-feature-settings: "tnum"; }

/* Icon sizing (Lucide) */
[data-lucide] { width: 20px; height: 20px; stroke-width: 1.75; flex-shrink: 0; }
.i-14 [data-lucide]{ width:14px; height:14px; }
.i-16 [data-lucide]{ width:16px; height:16px; }
.i-20 [data-lucide]{ width:20px; height:20px; }
.i-24 [data-lucide]{ width:24px; height:24px; }
.i-28 [data-lucide]{ width:28px; height:28px; }
.i-32 [data-lucide]{ width:32px; height:32px; }
.i-40 [data-lucide]{ width:40px; height:40px; }

/* =========================================================
   Alert bar
   ========================================================= */
.alert-bar {
  background: linear-gradient(90deg, #A83232 0%, #8B2E2E 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  text-align: center;
  border-bottom: 2px solid #6E2323;
  box-shadow: 0 2px 6px rgba(139, 46, 46, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: .02em;
  line-height: 1.5;
}
.alert-bar [data-lucide] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.alert-bar strong {
  font-weight: 700;
  background: rgba(255, 255, 255, .18);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: .06em;
  margin-right: 4px;
}
@media (max-width: 720px) {
  .alert-bar {
    font-size: 13px;
    padding: 10px 16px;
    gap: 8px;
    text-align: left;
    justify-content: flex-start;
  }
  .alert-bar strong { font-size: 12px; padding: 2px 8px; }
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(8px);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.site-header .inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand .logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: grid; place-items: center;
  font-size: 17px;
  letter-spacing: -.02em;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(31, 93, 93, .25);
  flex-shrink: 0;
}
.brand .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: .02em;
}
.brand .name small {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .12em;
  font-weight: 400;
  white-space: nowrap;
  margin-top: 2px;
}

.main-nav {
  display: flex; gap: 22px;
  margin-left: auto;
  flex-shrink: 1;
  min-width: 0;
}
.main-nav a {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  letter-spacing: .02em;
}
.main-nav a:hover { color: var(--primary); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: -6px;
  height: 2px; background: var(--primary);
  transition: left .25s var(--ease-out), right .25s var(--ease-out);
}
.main-nav a:hover::after,
.main-nav a.current::after { left: 0; right: 0; }
.main-nav a.current { color: var(--primary); }

/* Dropdown submenu (e.g. 泌尿器科 > 泌尿器科/メンズヘルス外来/女性排尿ケア外来) */
.main-nav-item { position: relative; display: flex; align-items: center; }
.main-nav-item > a { display: inline-flex; align-items: center; gap: 3px; }
.submenu-caret { width: 13px; height: 13px; flex-shrink: 0; transition: transform .2s var(--ease-out); }
.main-nav-item:hover .submenu-caret,
.main-nav-item.open .submenu-caret { transform: rotate(180deg); }
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 190px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--elev-2);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) scaleY(.96);
  transform-origin: top center;
  transition: opacity .16s var(--ease-out), transform .16s var(--ease-out);
}
.main-nav-item:hover .submenu,
.main-nav-item:focus-within .submenu,
.main-nav-item.open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) scaleY(1);
}
.submenu a {
  padding: 9px 14px;
  border-radius: 6px;
  white-space: nowrap;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
}
.submenu a::after { content: none; }
.submenu a:hover { background: var(--primary-tint); color: var(--primary); text-decoration: none; }
.submenu a.current { background: var(--primary-soft); color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-tel {
  font-size: 12px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  padding-right: 14px;
  line-height: 1.25;
  white-space: nowrap;
}
.header-tel strong {
  display: block;
  color: var(--primary-dark);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .04em;
  font-feature-settings: "tnum";
  margin-top: 1px;
}

/* responsive */
@media (max-width: 1200px) {
  .header-tel span { display: none; }
  .header-tel { padding-right: 10px; }
  .main-nav { gap: 18px; }
}
@media (max-width: 1080px) {
  .brand .name small { display: none; }
  .header-tel { display: none; }
}
@media (max-width: 940px) {
  .main-nav a { font-size: 12.5px; }
  .main-nav { gap: 14px; }
}
@media (max-width: 820px) {
  .main-nav { display: none; }
}

/* =========================================================
   Hamburger menu toggle + mobile drawer nav
   ========================================================= */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.menu-toggle .icon-menu,
.menu-toggle .icon-close { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
html.mobile-nav-open .menu-toggle .icon-menu { display: none; }
html.mobile-nav-open .menu-toggle .icon-close { display: block; }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 30, .45);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease-out);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: var(--bg-white);
  z-index: 61;
  overflow-y: auto;
  padding: 84px 20px 28px;
  flex-direction: column;
  gap: 2px;
  box-shadow: -8px 0 24px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .26s var(--ease-out);
}
html.mobile-nav-open .mobile-nav-overlay { opacity: 1; pointer-events: auto; }
html.mobile-nav-open .mobile-nav { transform: translateX(0); }

.mobile-nav-link {
  display: block;
  padding: 13px 6px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link.current { color: var(--primary); }
.mobile-nav-item.has-submenu > .mobile-nav-link {
  position: relative;
  padding-right: 30px;
}
.mobile-nav-item.has-submenu > .mobile-nav-link::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s var(--ease-out);
}
.mobile-nav-item.has-submenu.open > .mobile-nav-link::after {
  transform: translateY(-35%) rotate(-135deg);
}
.mobile-submenu {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s var(--ease-out);
}
.mobile-nav-item.open .mobile-submenu { max-height: 400px; }
.mobile-nav-sublink {
  display: block;
  padding: 11px 6px 11px 20px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-sublink.current { color: var(--primary); }
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 820px) {
  .menu-toggle { display: flex; }
  .mobile-nav-overlay, .mobile-nav { display: flex; flex-direction: column; }
  html.mobile-nav-open { overflow: hidden; }
  /* ヘッダー内のWeb予約ボタンはモバイルナビ・下部モバイルCTAバーに用意があるため隠す */
  .header-actions > .btn { display: none; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .22s var(--ease-out);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn [data-lucide] { width: 16px; height: 16px; }

.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 2px 6px rgba(200, 107, 60, .28), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary:hover { color: #fff; box-shadow: 0 6px 16px rgba(200, 107, 60, .35); }

.btn-secondary {
  background: linear-gradient(180deg, var(--primary-mid), var(--primary));
  color: #fff;
  box-shadow: 0 2px 6px rgba(31, 93, 93, .25);
}
.btn-secondary:hover { color: #fff; box-shadow: 0 6px 16px rgba(31, 93, 93, .35); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost {
  background: var(--bg-white);
  color: var(--text);
  border-color: var(--border-mid);
}
.btn-ghost:hover { background: var(--bg-mute); border-color: var(--border-strong); }

.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

/* Callout button — for use on dark backgrounds */
.callout .btn-outline { color: #fff; border-color: rgba(255,255,255,.55); }
.callout .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* =========================================================
   Layout
   ========================================================= */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--bg-white); }
.section-primary { background: var(--primary-tint); }

.section-head { margin-bottom: 48px; text-align: center; }
.section-head .eyebrow {
  color: var(--primary);
  font-size: 11px;
  letter-spacing: .3em;
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--primary);
  opacity: .5;
}
.section-head h2 {
  font-size: 32px;
  letter-spacing: .04em;
  color: var(--text);
}
.section-head .lead {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 15px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 14px 0;
  font-size: 12.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; gap: 8px; flex-wrap: wrap;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after {
  content: "";
  width: 4px; height: 4px;
  background: var(--text-light);
  border-radius: 50%;
  margin-left: 8px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }

/* Page header (下層ページ) */
.page-header {
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(46, 123, 123, .09), transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(200, 107, 60, .05), transparent 60%),
    linear-gradient(180deg, var(--primary-tint) 0%, var(--bg) 100%);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(31, 93, 93, .015) 20px 21px);
  pointer-events: none;
}
.page-header .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.page-header .eyebrow {
  color: var(--primary);
  font-size: 11px;
  letter-spacing: .3em;
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.page-header h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.page-header .desc {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 680px;
  line-height: 1.9;
}
.page-header .cta-inline { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 720px) {
  .page-header { padding: 56px 0 48px; }
  .page-header h1 { font-size: 30px; }
}

/* =========================================================
   Card
   ========================================================= */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .2s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--elev-3);
  transform: translateY(-3px);
  text-decoration: none;
}
.card h3 { font-size: 17px; margin-bottom: 10px; color: var(--text); }
.card .card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: var(--primary-tint);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.card .card-icon [data-lucide] { width: 24px; height: 24px; }
.card:hover .card-icon { background: var(--primary); color: #fff; }
.card .card-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .05em;
}
.card .card-link [data-lucide] { width: 14px; height: 14px; transition: transform .25s var(--ease-out); }
.card:hover .card-link [data-lucide] { transform: translateX(3px); }

.card-flat {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}

/* Grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Chip / tag */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-mute);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 12px;
  margin: 3px 4px 3px 0;
  letter-spacing: .04em;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background:
    radial-gradient(ellipse 60% 70% at 85% 15%, rgba(46, 123, 123, .12), transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 100%, rgba(200, 107, 60, .06), transparent 60%),
    linear-gradient(180deg, var(--primary-tint) 0%, var(--bg) 100%);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(31, 93, 93, .04) 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(31, 93, 93, .04) 1px, transparent 2px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero .badges {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  box-shadow: var(--elev-1);
}
.badge [data-lucide] { width: 14px; height: 14px; }
.hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 24px;
  letter-spacing: .04em;
  text-wrap: pretty;
}
.hero h1 .accent { color: var(--primary); }
.hero .sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 2;
}
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .hero-note {
  margin-top: 24px;
  padding: 14px 20px;
  background: var(--bg-white);
  border: 1px dashed var(--primary-mid);
  border-radius: var(--r);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
}
.hero .hero-note [data-lucide] {
  width: 18px; height: 18px;
  color: var(--accent);
}
.hero .quick-info {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero .quick-info div {
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.5;
}
.hero .quick-info div strong {
  display: flex; align-items: center; gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
.hero .quick-info [data-lucide] {
  width: 14px; height: 14px;
  color: var(--primary);
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .hero { padding: 56px 0 64px; }
}

/* =========================================================
   Placeholder (上品プレースホルダー)
   ========================================================= */
.ph {
  background:
    radial-gradient(ellipse 80% 90% at 50% 20%, var(--primary-tint), transparent 70%),
    linear-gradient(180deg, var(--bg-white) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  color: var(--primary);
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(120deg, transparent 0%, rgba(31, 93, 93, .03) 40%, transparent 50%);
  pointer-events: none;
}
.ph .ph-icon {
  color: var(--primary);
  opacity: .55;
}
.ph .ph-icon [data-lucide] { width: 64px; height: 64px; stroke-width: 1.2; }
.ph .ph-label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(255,255,255,.9);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: .05em;
  z-index: 1;
  border: 1px solid var(--border);
}
.ph-square { aspect-ratio: 1/1; }
.ph-wide { aspect-ratio: 16/9; }
.ph-portrait { aspect-ratio: 3/4; }

/* Real photo inside a .ph box (photo now available; keep same frame/caption) */
.ph.has-photo {
  background: none;
  padding: 0;
}
.ph.has-photo::before { display: none; }
.ph.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 院内のご案内(4枚)は元画像の縦横比が枠(1:1)と異なり、coverだと切れてしまうため
   containで全体が枠内に収まるように表示する */
.ph-square.has-photo {
  background: var(--bg-warm);
}
.ph-square.has-photo img {
  object-fit: contain;
}

/* Hero placeholder — decorative */
.hero-ph {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(46, 123, 123, .35), transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 80%, rgba(31, 93, 93, .55), transparent 60%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--elev-4);
}
.hero-ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,.03) 40px 41px),
    repeating-linear-gradient(-45deg, transparent 0 40px, rgba(255,255,255,.02) 40px 41px);
}
.hero-ph::after {
  content: "";
  position: absolute;
  right: -20%; top: -10%;
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 60%);
}
.hero-ph .icon-huge {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.9);
}
.hero-ph .icon-huge [data-lucide] {
  width: 140px; height: 140px;
  stroke-width: 1;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.3));
}
.hero-ph .tag {
  position: absolute;
  bottom: 20px; left: 20px;
  right: 20px;
  color: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.hero-ph .tag .l { font-size: 11px; letter-spacing: .3em; opacity: .7; }
.hero-ph .tag .r { font-size: 12px; letter-spacing: .1em; }

/* Real photo inside .hero-ph (photo now available) */
.hero-ph.has-photo { background: var(--primary-dark); }
.hero-ph.has-photo::before,
.hero-ph.has-photo::after { display: none; }
.hero-ph.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-ph.has-photo .tag {
  z-index: 2;
  padding: 40px 4px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.55) 70%);
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 20px;
}

/* =========================================================
   Symptom cards
   ========================================================= */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 720px){ .symptom-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .symptom-grid { grid-template-columns: 1fr; } }

.symptom-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  transition: all .25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.symptom-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .3s var(--ease-out);
}
.symptom-card:hover {
  border-color: var(--primary-mid);
  background: var(--primary-tint);
  transform: translateX(2px);
  text-decoration: none;
  box-shadow: var(--elev-2);
}
.symptom-card:hover::before { transform: scaleY(1); }
.symptom-card .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all .25s var(--ease-out);
}
.symptom-card:hover .ico { background: var(--primary); color: #fff; transform: scale(1.05); }
.symptom-card .label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
}
.symptom-card .arr {
  margin-left: auto;
  color: var(--text-light);
  transition: transform .25s var(--ease-out), color .25s var(--ease-out);
}
.symptom-card:hover .arr { color: var(--primary); transform: translateX(4px); }

/* =========================================================
   Dept card
   ========================================================= */
.dept-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--elev-3);
}
.dept-card .thumb {
  aspect-ratio: 16/10;
  background:
    radial-gradient(circle at 30% 30%, rgba(46, 123, 123, .15), transparent 55%),
    linear-gradient(135deg, var(--primary-tint), var(--bg-warm));
  border-bottom: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.dept-card .thumb [data-lucide] {
  width: 64px; height: 64px;
  stroke-width: 1.3;
  opacity: .8;
  transition: transform .5s var(--ease-out);
}
.dept-card:hover .thumb [data-lucide] { transform: scale(1.08); }
.dept-card .thumb::before {
  content: "";
  position: absolute;
  bottom: -30%; right: -20%;
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 93, 93, .08), transparent 70%);
}
.dept-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.dept-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: .04em;
}
.dept-card .tags {
  display: flex; flex-wrap: wrap;
  margin: 14px 0 18px;
}
.dept-card .card-link { margin-top: auto; }
.dept-card .card-link [data-lucide] { transition: transform .25s var(--ease-out); }
.dept-card:hover .card-link [data-lucide] { transform: translateX(3px); }

/* =========================================================
   Private care (自由診療) cards
   ========================================================= */
.private-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px){ .private-grid { grid-template-columns: 1fr; } }

.private-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .2s var(--ease-out);
  overflow: hidden;
}
.private-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-mid));
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.private-card:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--elev-3);
  transform: translateY(-3px);
}
.private-card:hover::before { opacity: 1; }
.private-card .num {
  font-family: var(--font-num);
  color: var(--primary);
  font-size: 12px;
  letter-spacing: .3em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.private-card .num::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--primary);
}
.private-card h3 {
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
}
.private-card .desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
  flex: 1;
}
.private-card .price {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.private-card .price strong {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-num);
  letter-spacing: .02em;
  margin-top: 4px;
}
.private-card .sub {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  margin-top: -8px;
}

/* 4カード表示用(private-care.html の「ご希望の治療をお選びください」) */
.private-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px){ .private-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .private-grid.cols-4 { grid-template-columns: 1fr; } }

/* =========================================================
   Steps (受診の流れ)
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  position: relative;
}
@media (max-width: 900px){ .steps { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px){ .steps { grid-template-columns: repeat(2,1fr); } }

.step {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 16px 20px;
  text-align: center;
  transition: all .25s var(--ease-out);
  position: relative;
}
.step:hover { border-color: var(--primary); box-shadow: var(--elev-2); }
.step .step-icon {
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid; place-items: center;
}
.step .step-icon [data-lucide] { width: 20px; height: 20px; }
.step .step-num {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--font-num);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: .12em;
  font-weight: 500;
}
.step h4 { font-size: 14.5px; margin-bottom: 6px; letter-spacing: .04em; }
.step p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* =========================================================
   Hours table
   ========================================================= */
.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--elev-1);
}
.hours-table th, .hours-table td {
  padding: 14px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.hours-table th:last-child, .hours-table td:last-child { border-right: none; }
.hours-table tr:last-child td, .hours-table tr:last-child th { border-bottom: none; }
.hours-table thead th {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .1em;
  padding: 12px 8px;
}
.hours-table thead th:first-child { background: var(--primary-dark); }
.hours-table tbody th {
  background: var(--bg-mute);
  font-weight: 500;
  text-align: left;
  padding-left: 20px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.3;
}
.hours-table tbody th small { color: var(--text-muted); font-size: 11px; font-weight: 400; }
.hours-table .off { color: var(--text-light); font-size: 12px; }
.hours-table .mark { color: var(--primary); font-weight: 700; font-size: 15px; }
.hours-table .sun-col { color: var(--alert); }

/* =========================================================
   Doctor card
   ========================================================= */
.doctor {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--elev-2);
}
@media (max-width: 720px){
  .doctor { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
}
.doctor .portrait {
  aspect-ratio: 3/4;
  border-radius: var(--r);
  background:
    radial-gradient(circle at 50% 30%, rgba(46, 123, 123, .18), transparent 60%),
    linear-gradient(180deg, var(--primary-tint), var(--bg-warm));
  display: grid; place-items: center;
  color: var(--primary);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.doctor .portrait [data-lucide] {
  width: 80px; height: 80px;
  stroke-width: 1.2;
  opacity: .7;
}
.doctor .portrait::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(0deg, rgba(31, 93, 93, .06), transparent);
}
/* 写真なしバリエーション: 1カラム表示 */
.doctor.doctor-no-portrait {
  grid-template-columns: 1fr;
}
.doctor.doctor-no-portrait .portrait { display: none; }

.doctor h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: .04em;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.doctor h3 .en {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: .1em;
  font-weight: 400;
}
.doctor .role {
  color: var(--primary);
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.doctor ul {
  margin: 0; padding-left: 0; list-style: none;
  font-size: 14px; color: var(--text-body);
}
.doctor ul li {
  padding: 4px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.doctor ul li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.doctor h4 {
  font-size: 11px;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================================================
   Price table
   ========================================================= */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--elev-1);
}
.price-table th, .price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table thead th {
  background: var(--primary-tint);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--primary-tint); }
.price-table th.price {
  text-align: right;
}
.price-table td.price {
  text-align: right;
  white-space: nowrap;
  font-family: var(--font-num);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: .02em;
}
.price-table td strong { color: var(--text); }

/* =========================================================
   Notice box
   ========================================================= */
.notice-box {
  background: var(--info-yellow-bg);
  border: 1px solid var(--info-yellow-bd);
  border-left: 4px solid #B08A2E;
  border-radius: var(--r);
  padding: 20px 24px;
  font-size: 14px;
  color: #5A4A17;
}
.notice-box h4 {
  color: #5A4A17;
  font-size: 15px;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 500;
  letter-spacing: .04em;
}
.notice-box h4 [data-lucide] {
  color: #B08A2E;
  width: 18px; height: 18px;
}
.notice-box ul { margin: 0; padding-left: 1.2em; }
.notice-box li { margin-bottom: 6px; line-height: 1.85; }
.notice-box li:last-child { margin-bottom: 0; }

.notice-box.danger {
  background: #FBEEEE;
  border-color: #E4A5A5;
  border-left-color: var(--alert);
  color: #5A1E1E;
}
.notice-box.danger h4 { color: var(--alert); }
.notice-box.danger h4 [data-lucide] { color: var(--alert); }

/* =========================================================
   Content block (見出しブロックを枠で囲む)
   ========================================================= */
.content-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  margin: 0 0 24px;
  box-shadow: var(--elev-1);
}
.content-block:last-child { margin-bottom: 0; }
.content-block > h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.content-block > h3 [data-lucide] {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}
.content-block > p:last-child,
.content-block > ul:last-child,
.content-block > ol:last-child { margin-bottom: 0; }
@media (max-width: 560px) {
  .content-block { padding: 24px 20px; }
}

/* 治療方法など、ブロック内をさらに分割する小ボックス */
.content-block .sub-block {
  background: var(--primary-tint);
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 0 0 16px;
}
.content-block .sub-block:last-of-type { margin-bottom: 0; }
.content-block .sub-block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 10px;
}
.content-block .sub-block h4 [data-lucide] { width: 16px; height: 16px; }
.content-block .sub-block ul,
.content-block .sub-block ol { margin: 0; padding-left: 1.2em; }
.content-block .sub-block li { line-height: 1.9; margin-bottom: 6px; }
.content-block .sub-block li:last-child { margin-bottom: 0; }
.content-block .sub-block p:last-child { margin-bottom: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 26px;
  margin-bottom: 12px;
  transition: all .25s var(--ease-out);
}
.faq-item:hover { border-color: var(--primary-mid); box-shadow: var(--elev-1); }
.faq-item .q {
  font-weight: 500;
  color: var(--text);
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 10px;
  letter-spacing: .02em;
  font-size: 15px;
}
.faq-item .q::before {
  content: "Q";
  background: var(--primary);
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  font-weight: 500;
  margin-top: 1px;
}
.faq-item .a {
  color: var(--text-muted);
  font-size: 14px;
  padding-left: 40px;
  margin: 0;
  line-height: 1.9;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #0d2f2e 100%);
  color: #C6D3D2;
  padding: 72px 0 24px;
  margin-top: 96px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
}
.site-footer a { color: #C6D3D2; }
.site-footer a:hover { color: #fff; }
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px){ .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px){ .site-footer .cols { grid-template-columns: 1fr; } }
.site-footer h5 {
  color: #fff;
  font-size: 12px;
  letter-spacing: .2em;
  margin: 0 0 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; font-size: 13px; line-height: 2.1; }
.site-footer .brand-block .logo-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.site-footer .brand-block .logo-row .lm {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 500;
}
.site-footer .brand-block .name { color: #fff; font-size: 16px; font-weight: 500; }
.site-footer .brand-block p { font-size: 13px; margin-bottom: 6px; color: #9DAEAD; line-height: 1.8; }
.site-footer .copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: 11.5px;
  color: #7B8A89;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  letter-spacing: .05em;
}

/* =========================================================
   Mobile CTA
   ========================================================= */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  padding: 8px;
  display: none;
  gap: 8px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(22, 48, 47, .1);
}
.mobile-cta a {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 10px 4px 8px;
  font-size: 11px;
  text-align: center;
  color: var(--text);
  border-radius: var(--r-sm);
  gap: 3px;
  font-weight: 500;
  letter-spacing: .04em;
}
.mobile-cta a.primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
}
.mobile-cta a [data-lucide] { width: 18px; height: 18px; }
@media (max-width: 820px){
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* =========================================================
   Info list
   ========================================================= */
.info-list {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 4px 28px;
  box-shadow: var(--elev-1);
}
.info-list dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  margin: 0;
}
.info-list dt, .info-list dd {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.info-list dt {
  color: var(--primary);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .04em;
}
.info-list dd {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.85;
}
.info-list dl > *:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 640px){
  .info-list dl { grid-template-columns: 1fr; }
  .info-list dt { padding-bottom: 4px; border-bottom: none; }
  .info-list dd { padding-top: 4px; }
}

/* =========================================================
   Callout
   ========================================================= */
.callout {
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255, 255, 255, .1), transparent 60%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 64px 48px;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--elev-3);
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
  pointer-events: none;
}
.callout h3 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .06em;
  position: relative;
}
.callout p { color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto 32px; font-size: 15px; position: relative; }
.callout .btn-primary { background: linear-gradient(180deg, var(--accent), var(--accent-dark)); }

/* =========================================================
   Access
   ========================================================= */
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 900px){ .access-grid { grid-template-columns: 1fr; } }
.access-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--elev-2);
}
.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.access-map .map-ph {
  min-height: 420px;
  background:
    linear-gradient(0deg, transparent 24%, rgba(31, 93, 93, .08) 25%, rgba(31, 93, 93, .08) 26%, transparent 27%, transparent 74%, rgba(31, 93, 93, .08) 75%, rgba(31, 93, 93, .08) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(31, 93, 93, .08) 25%, rgba(31, 93, 93, .08) 26%, transparent 27%, transparent 74%, rgba(31, 93, 93, .08) 75%, rgba(31, 93, 93, .08) 76%, transparent 77%, transparent),
    linear-gradient(180deg, var(--primary-tint), var(--bg-warm));
  background-size: 50px 50px, 50px 50px, 100% 100%;
  position: relative;
  display: grid; place-items: center;
}
.access-map .map-pin {
  color: var(--primary);
  filter: drop-shadow(0 4px 10px rgba(31, 93, 93, .3));
}
.access-map .map-pin [data-lucide] { width: 48px; height: 48px; stroke-width: 1.75; }
.access-info h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.access-info .cn {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: .2em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.access-info dl { margin: 0; }
.access-info dt {
  color: var(--primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  margin-top: 18px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.access-info dt [data-lucide] { width: 14px; height: 14px; }
.access-info dd { margin: 6px 0 0; font-size: 14.5px; line-height: 1.8; color: var(--text-body); }

/* =========================================================
   Calendar
   ========================================================= */
.cal-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
}
@media (max-width: 900px){ .cal-wrap { grid-template-columns: minmax(0, 1fr); } }

.calendar {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--elev-1);
  min-width: 0;
}
.calendar .cal-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.calendar .cal-head .month {
  font-size: 24px;
  color: var(--primary-dark);
  font-weight: 500;
  letter-spacing: .04em;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.calendar .cal-head .month .year {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: .1em;
}
.calendar .cal-head .month .year::after { content: "年"; margin-left: 1px; }
.calendar .cal-head .note-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.calendar .cal-head .note {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
@media (max-width: 480px){
  .calendar { padding: 20px 16px; }
  .calendar .cal-head { flex-wrap: wrap; gap: 10px; }
  .calendar .cal-head .note-group { align-items: flex-start; width: 100%; }
  .calendar .cal-head .note { white-space: normal; }
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.cal-grid .dow {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--text-muted);
  letter-spacing: .08em;
}
.cal-grid .dow.sun { color: var(--alert); }
.cal-grid .dow.sat { color: #2A6FA8; }

.cal-cell {
  aspect-ratio: 1/1;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-white);
  min-height: 56px;
  min-width: 0;
  transition: transform .15s var(--ease-out);
}
.cal-cell.empty { border: none; background: transparent; }
.cal-cell .d {
  font-size: 14px;
  color: var(--text);
  line-height: 1;
  font-weight: 500;
  font-family: var(--font-num);
}
.cal-cell .mark {
  font-size: 9.5px;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.2;
  letter-spacing: .02em;
}

.cal-cell.sun    { background: #FCF3F1; }
.cal-cell.sun .d { color: var(--alert); }
.cal-cell.sat    { background: #F0F5F9; }
.cal-cell.sat .d { color: #2A6FA8; }
.cal-cell.holiday {
  background: linear-gradient(135deg, #FBEEEE 0%, #F8DEDE 100%);
  border-color: #E4A5A5;
}
.cal-cell.holiday .d { color: var(--alert); }
.cal-cell.pm-closed .mark { color: #A56A28; }
.cal-cell.am-closed .mark { color: #A56A28; }
.cal-cell.closed {
  background: var(--bg-mute);
}
.cal-cell.closed .d { color: var(--text-light); text-decoration: line-through; }
.cal-cell.closed .mark { color: var(--alert); font-weight: 500; }
.cal-cell.special-closed {
  background: linear-gradient(135deg, #FBEEEE 0%, #F5D9D0 100%);
  border-color: var(--accent);
  border-width: 1.5px;
}
.cal-cell.special-closed .d { color: var(--accent-dark); font-weight: 700; }
.cal-cell.special-closed .mark { color: var(--accent-dark); font-weight: 500; }

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  justify-content: center;
  padding: 20px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.cal-legend .item { display: flex; align-items: center; gap: 8px; }
.cal-legend .sw {
  width: 16px; height: 16px;
  border-radius: 3px;
  border: 1px solid var(--border);
  display: inline-block;
  background: var(--bg-white);
}
.cal-legend .sw.pm-closed { position: relative; }
.cal-legend .sw.pm-closed::after {
  content: "PM"; font-size: 7px; display: block; text-align:center;
  color:#A56A28; font-weight:600; line-height: 14px;
}
.cal-legend .sw.closed { background: var(--bg-mute); }
.cal-legend .sw.holiday { background: #FBEEEE; border-color:#E4A5A5; }
.cal-legend .sw.special-closed { background:#FBEEEE; border:1.5px solid var(--accent); width:14px; height:14px;}

/* =========================================================
   Divider / helpers
   ========================================================= */
hr.div { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.table-wrap { overflow-x: auto; }

/* 薬剤名列の幅拡大(ED治療・AGA治療の価格表、スマホ幅で薬剤名が読みやすいように) */
@media (max-width: 480px){
  .price-table-drug { min-width: 480px; table-layout: fixed; }
  .price-table-drug th, .price-table-drug td { padding: 12px 10px; font-size: 13px; word-break: break-word; }
  .price-table-drug td.price { font-size: 14px; }
  /* ED治療表: 1列目(薬剤名)を拡大 */
  .price-table-drug.ed-table th:nth-child(1),
  .price-table-drug.ed-table td:nth-child(1) { width: 150px !important; }
  .price-table-drug.ed-table th:nth-child(2),
  .price-table-drug.ed-table td:nth-child(2) { width: 70px !important; }
  .price-table-drug.ed-table th:nth-child(3),
  .price-table-drug.ed-table td:nth-child(3) { width: 100px !important; }
  .price-table-drug.ed-table th:nth-child(4),
  .price-table-drug.ed-table td:nth-child(4) { width: 160px !important; }
  /* AGA治療表: 2列目(薬剤名)を拡大、1列目(分類)は縮小 */
  .price-table-drug.aga-table th:nth-child(1),
  .price-table-drug.aga-table td:nth-child(1) { width: 65px !important; }
  .price-table-drug.aga-table th:nth-child(2),
  .price-table-drug.aga-table td:nth-child(2) { width: 150px !important; }
  .price-table-drug.aga-table th:nth-child(3),
  .price-table-drug.aga-table td:nth-child(3) { width: 95px !important; }
  .price-table-drug.aga-table th:nth-child(4),
  .price-table-drug.aga-table td:nth-child(4) { width: 170px !important; }
}

/* =========================================================
   Trust card (安心軸)
   ========================================================= */
.trust-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all .25s var(--ease-out);
}
.trust-card:hover { box-shadow: var(--elev-2); border-color: var(--primary-mid); transform: translateY(-2px); }
.trust-card .ico {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-tint), var(--bg-warm));
  color: var(--primary);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.trust-card .ico [data-lucide] { width: 24px; height: 24px; }
.trust-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: .04em;
}
.trust-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.8; }

/* =========================================================
   Category tab (症状ページ)
   ========================================================= */
.cat-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 720px){ .cat-tabs { grid-template-columns: repeat(2,1fr); } }
.cat-tab {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  color: var(--text);
  transition: all .25s var(--ease-out);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cat-tab:hover {
  background: var(--primary-tint);
  border-color: var(--primary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--elev-2);
}
.cat-tab .ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid; place-items: center;
}
.cat-tab .ico [data-lucide] { width: 22px; height: 22px; }
.cat-tab:hover .ico { background: var(--primary); color: #fff; }
.cat-tab .label { font-size: 15px; font-weight: 500; color: var(--primary); letter-spacing: .04em; }
.cat-tab .desc { font-size: 12px; color: var(--text-muted); }

.cat-title {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}
.cat-title .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-tint);
  color: var(--primary);
  display: grid; place-items: center;
}
.cat-title h2 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .04em;
  margin: 0;
}
.cat-title .en {
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: .2em;
  margin-left: auto;
  text-transform: uppercase;
}

/* =========================================================
   News list
   ========================================================= */
.news-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.news-tag {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .04em;
  transition: all .2s var(--ease-out);
}
.news-tag:hover { border-color: var(--primary); color: var(--primary); }
.news-tag.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.news-list { display: flex; flex-direction: column; }
.news-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.news-item:first-child { padding-top: 0; }
.news-item:last-child { border-bottom: none; }
.news-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 10px;
}
.news-meta time {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: .05em;
}
.news-cat {
  font-size: 11px;
  letter-spacing: .1em;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.news-cat.is-info { background: var(--primary-tint); color: var(--primary-dark); }
.news-cat.is-closure { background: var(--alert-bg); color: var(--alert); }
.news-cat.is-change { background: var(--info-yellow-bg); color: #6B551E; }
.news-item h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: .04em;
  line-height: 1.6;
}
.news-item h3 a {
  color: var(--text);
  transition: color .2s var(--ease-out);
}
.news-item h3 a:hover { color: var(--primary); text-decoration: none; }
.news-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

/* Pager */
.news-pager {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  align-items: center;
}
.pager-btn {
  display: grid; place-items: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-num);
  transition: all .2s var(--ease-out);
}
.pager-btn:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.pager-btn.is-current { background: var(--primary); color: #fff; border-color: var(--primary); }
.pager-btn [data-lucide] { width: 16px; height: 16px; }
.pager-dots { color: var(--text-light); padding: 0 4px; }

/* =========================================================
   Parking (駐車場のご案内)
   ========================================================= */
.parking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 720px){ .parking-grid { grid-template-columns: 1fr; } }
.parking-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--elev-1);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.parking-item:hover { transform: translateY(-2px); box-shadow: var(--elev-2); }
.parking-item .ph {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  min-height: 278px;
  aspect-ratio: 16/11;
  background: var(--bg-warm);
}
.parking-item .ph.has-photo img {
  object-fit: contain;
}
.parking-item .body {
  padding: 24px 28px 28px;
}
.parking-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: .04em;
}
.parking-item p {
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.9;
  margin: 0;
}

/* =========================================================
   Mask notice (院内マスク着用の案内)
   ========================================================= */
.mask-notice {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--primary-tint), var(--bg-white));
  border: 1px solid var(--primary-mid);
  border-left: 4px solid var(--primary);
  border-radius: var(--r);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--elev-1);
}
.mask-notice .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mask-notice .icon [data-lucide] { width: 22px; height: 22px; }
.mask-notice p {
  margin: 0;
  font-size: 16px;
  color: var(--text);
  line-height: 1.85;
  letter-spacing: .02em;
}
.mask-notice p strong { color: var(--primary-dark); }
@media (max-width: 640px){
  .mask-notice { flex-direction: column; text-align: center; }
}

/* =========================================================
   Modal (疾患詳細)
   ========================================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 64, 63, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal-window {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--elev-4);
  transform: translateY(20px) scale(.98);
  transition: transform .3s var(--ease-out);
}
.modal-backdrop.open .modal-window { transform: translateY(0) scale(1); }
.modal-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(180deg, var(--primary-tint), var(--bg-white));
}
.modal-head h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
  margin: 0;
}
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .2s var(--ease-out);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.modal-body {
  padding: 28px;
  overflow-y: auto;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-body);
}
.modal-body h4 {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 500;
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body ul { padding-left: 1.2em; margin: 0 0 4px; }
.modal-body p { margin-bottom: 10px; }
.modal-body .sample-tag {
  display: inline-block;
  background: var(--info-yellow-bg);
  color: #6B551E;
  border: 1px solid var(--info-yellow-bd);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.modal-foot {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
body.modal-open { overflow: hidden; }

/* 疾患カードをクリック可能に */
.disease-card { cursor: pointer; }

/* =========================================================
   Motion (fade-in on scroll)
   -- fade-in を "opacity:0" にするのは JSアニメーション有効時のみ。
      JS無効/失敗時はコンテンツが必ず見える状態を維持する。
   ========================================================= */
.fade-in { opacity: 1; transform: none; }

html.js-motion .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
html.js-motion .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
html.js-motion .fade-in.d-1 { transition-delay: .08s; }
html.js-motion .fade-in.d-2 { transition-delay: .16s; }
html.js-motion .fade-in.d-3 { transition-delay: .24s; }
html.js-motion .fade-in.d-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html.js-motion .fade-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
}
