/* シーズンズ東京リウマチクリニック 共通スタイルシート */


/* ══════════════════════════════════════════
   RESET & VARIABLES
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --teal:         #0066cc;
  --teal-dark:    #1a6ecc;
  --teal-xdark:   #0d52a8;
  --teal-light:   #e6f0fa;
  --teal-mid:     #b3cfed;
  --accent:       #e07c2a;
  --accent-light: #fdf4eb;
  --urgent:       #b83232;
  --urgent-bg:    #fdf1f0;
  --urgent-mid:   #f0c0bc;
  --green:        #2a6e46;
  --green-bg:     #eef7f2;
  --green-mid:    #aed4bc;
  --text:         #1a2233;
  --muted:        #4a5a72;
  --light-muted:  #8a9ab8;
  --border:       #c2d4e8;
  --white:        #ffffff;
  --off-white:    #f7fafd;
  --bg:           #eef4fb;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════
   FADE-IN ANIMATION
══════════════════════════════════════════ */
.js-fade .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.js-fade .fade-up.visible {
  opacity: 1;
  transform: none;
}
/* グリッド内の順番によるストagger遅延 */
.js-fade .fade-up[data-delay="1"] { transition-delay: .08s; }
.js-fade .fade-up[data-delay="2"] { transition-delay: .16s; }
.js-fade .fade-up[data-delay="3"] { transition-delay: .24s; }


/* ══════════════════════════════════════════
   ACCESSIBILITY & ANCHOR OFFSET
══════════════════════════════════════════ */
/* スティッキーヘッダー分のアンカーオフセット */
[id] { scroll-margin-top: 80px; }

/* キーボードフォーカス表示（マウス操作では非表示） */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   PRINT
══════════════════════════════════════════ */
@media print {
  .topbar, .header, .sticky-bottom, .mobile-nav,
  .hero__cta-panel, .cta-btn, .footer { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 10pt; color: #555; }
}

/* ══════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════ */
.topbar {
  background: var(--teal-xdark);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.topbar__link {
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
  letter-spacing: .08em;
  transition: color .2s;
}
.topbar__link:hover { color: var(--white); }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,102,204,.08);
}

.header__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo__en {
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--teal);
  font-weight: 400;
}
.logo__ja {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: .06em;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 0 14px;
  font-size: 14px;
  color: var(--text);
  height: 64px;
  line-height: 64px;
  white-space: nowrap;
  transition: color .2s;
  font-weight: 400;
}
.nav__link:hover { color: var(--teal); }

.nav__cta {
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 8px;
  height: 50px !important;
  line-height: 1 !important;
  padding: 0 20px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin-left: 12px;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background .2s, transform .15s !important;
}
.nav__cta::after {
  content: "24時間受付・完全予約制";
  font-size: 10px !important;
  font-weight: 400;
  opacity: .88;
  letter-spacing: .02em;
}
.nav__cta:hover {
  background: var(--teal-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--teal-dark); border-radius: 2px; transition: .3s; }

/* ══════════════════════════════════════════
   URGENT BANNER
══════════════════════════════════════════ */
.urgent-bar {
  background: var(--urgent-bg);
  border-bottom: 2px solid var(--urgent-mid);
}
.urgent-bar__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.urgent-bar__badge {
  flex-shrink: 0;
  background: var(--urgent);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 1px;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(184,50,50,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(184,50,50,0); }
}
.urgent-bar__text {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.urgent-bar__text strong { color: var(--urgent); }
.urgent-bar__link {
  font-size: 12.5px;
  color: var(--urgent);
  text-decoration: underline;
  white-space: nowrap;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  /* ① 画像を差し替える場合は --hero-img の url() を変更するだけでOK */
  --hero-img-avif: url("img/tokyo_ra_clinic_info.avif");
  --hero-img-webp: url("img/tokyo_ra_clinic_info.webp");
  --hero-img:      url("img/tokyo_ra_clinic_info.jpg");

  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;

  /* 画像 + 白ベースオーバーレイを重ねる */
  background:
    /* 前面: 左から白→右へ薄く抜けるグラデーション */
    linear-gradient(
      105deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.82) 38%,
      rgba(255,255,255,.50) 60%,
      rgba(255,255,255,.18) 100%
    ),
    /* 背面: クリニック写真 */
    var(--hero-img) center center / cover no-repeat;
}

/* 写真が読み込めなかった場合のフォールバック */
.hero.no-image {
  background: linear-gradient(135deg, #f0f6ff 0%, #ddeeff 60%, #c8e0ff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* 右上にブルーの淡い光彩を追加 */
  background:
    radial-gradient(ellipse 55% 70% at 95% 20%, rgba(0,102,204,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero__kicker {
  font-size: 12.5px;
  letter-spacing: .2em;
  color: var(--teal);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero__title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--teal-xdark);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: normal;
  color: var(--teal);
}

.hero__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  color: var(--teal-dark);
  font-weight: 600;
  line-height: 1;
}
.hero__stat-num sup { font-size: 15.5px; }
.hero__stat-label {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .1em;
}
.hero__stat-divider { width: 1px; background: var(--border); }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

.btn--primary   { background: var(--teal); color: var(--white); }
.btn--secondary { background: var(--white); color: var(--teal-dark); border: 1.5px solid var(--border); }
.btn--teal      { background: var(--teal); color: var(--white); }
.btn--outline   { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }

/* CTA Card (right side of hero) */
.hero__cta-panel {
  background: rgba(255,255,255,.97);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__cta-panel h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  color: var(--teal-dark);
  font-weight: 600;
  letter-spacing: .06em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 初診・再診を横並び */
.cta-row__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cta-row__pair .cta-btn {
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 12px;
  gap: 6px;
}
.cta-row__pair .cta-btn__arrow { display: none; }
.cta-row__pair .cta-btn__icon  { font-size: 20px; }
.cta-row__pair .cta-btn__main  { font-size: 13.5px; }
.cta-row__pair .cta-btn__sub   { font-size: 10.5px; }

/* 住所ブロック */
.cta-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
}
.cta-address__icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.cta-address__body { display: flex; flex-direction: column; gap: 2px; }
.cta-address__label {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--light-muted);
  font-weight: 500;
}
.cta-address__text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}
.cta-address__access {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.1); }

.cta-btn--new {
  background: var(--teal);
  color: var(--white);
  position: relative;
}
.cta-btn--revisit {
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-mid);
}
.cta-btn--form {
  background: var(--off-white);
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.cta-btn--second {
  background: #1e6e42;
  color: var(--white);
  border: 1.5px solid #1e6e42;
}
.cta-btn--second:hover { background: #165634; border-color: #165634; }

/* ══════════════════════════════════════════
   MAIL BUTTON
══════════════════════════════════════════ */
.mail-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 11px 18px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-mid);
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: background .18s, transform .15s, box-shadow .15s;
  cursor: pointer;
}
.mail-btn:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,102,204,.14);
}
.mail-btn:active { transform: translateY(0); }
.mail-btn__addr {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: .03em;
}
/* インライン文脈（kamoku.html のFAX行など）用 */
.mail-btn--inline {
  display: inline-flex;
  vertical-align: middle;
  padding: 5px 12px;
  font-size: 13px;
}
.mail-btn--inline .mail-btn__addr { font-size: 11px; }

/* 段落内インラインリンク共通（メールアドレス・内部リンクに使用） */
.page-inline-link {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}
.page-inline-link:hover { color: var(--teal-dark); }



.cta-btn__icon { font-size: 19px; flex-shrink: 0; }
.cta-btn__text { display: flex; flex-direction: column; gap: 1px; }
.cta-btn__main { font-size: 14.5px; font-weight: 500; }
.cta-btn__sub  { font-size: 11.5px; opacity: .72; font-weight: 300; }
.cta-btn__arrow { margin-left: auto; font-size: 15.5px; opacity: .6; }

.cta-badge {
  position: absolute;
  top: -6px; right: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .06em;
}
.cta-badge--revisit { background: var(--teal-mid); color: var(--teal-xdark); }


.cta-phone {
  background: var(--teal-xdark);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.cta-phone__icon { font-size: 20px; }
.cta-phone__info { flex: 1; }
.cta-phone__num {
  font-family: 'Shippori Mincho', serif;
  font-size: 19px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: .06em;
  display: block;
}
.cta-phone__hours {
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  display: block;
  margin-top: 1px;
}
.cta-phone__call {
  background: var(--white);
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  transition: background .2s;
}
.cta-phone__call:hover { background: var(--teal-light); }

/* ══════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════ */
.section {
  padding: 64px 24px;
}
.section--alt { background: var(--bg); }
.section--dark { background: var(--teal-xdark); }

.section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.section__title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: .04em;
  line-height: 1.3;
}
.section__title--white { color: var(--white); }

.section__kicker {
  font-size: 11.5px;
  letter-spacing: .18em;
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
}
.section__kicker--white { color: rgba(255,255,255,.55); }

.section__more {
  font-size: 13.5px;
  color: var(--teal);
  border: 1px solid var(--teal-mid);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background .2s;
  white-space: nowrap;
}
.section__more:hover { background: var(--teal-light); }
.section__more--white { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); }
.section__more--white:hover { background: rgba(255,255,255,.08); }

/* ══════════════════════════════════════════
   NOTICES (urgent / schedule / general)
══════════════════════════════════════════ */
.urgent-block {
  background: var(--urgent-bg);
  border: 1.5px solid var(--urgent-mid);
  border-left: 5px solid var(--urgent);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.urgent-block__hdr {
  background: var(--urgent);
  color: var(--white);
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blink { animation: blink 1.4s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.urgent-block__item {
  padding: 13px 18px;
  border-bottom: 1px solid var(--urgent-mid);
  font-size: 14px;
  line-height: 1.7;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.urgent-block__item:last-child { border-bottom: none; }
.utag {
  flex-shrink: 0;
  background: var(--urgent);
  color: var(--white);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 20px;
  margin-top: 3px;
  white-space: nowrap;
}
.urgent-block__item a { color: var(--urgent); text-decoration: underline; }
@media (max-width: 640px) {
  .urgent-block__item { flex-direction: column; gap: 6px; }
  .utag { margin-top: 0; }
}

.notice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.schedule-card {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--green-mid);
  overflow: hidden;
}
.schedule-card__hdr {
  background: var(--green-bg);
  border-bottom: 1.5px solid var(--green-mid);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.schedule-card__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 15.5px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.schedule-card__link { font-size: 12.5px; color: var(--green); text-decoration: underline; }
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table tr { border-bottom: 1px solid #e4f0ea; }
.schedule-table tr:last-child { border-bottom: none; }
.schedule-table tr:hover { background: var(--green-bg); }
.schedule-table td { padding: 10px 18px; font-size: 13.5px; vertical-align: top; }
.schedule-table .date-col { width: 110px; color: var(--green); font-weight: 500; white-space: nowrap; }

.general-notices {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.general-notices__hdr {
  background: var(--teal-light);
  border-bottom: 1.5px solid var(--teal-mid);
  padding: 0 18px;
  display: flex;
  gap: 0;
}
.tab-btn {
  background: none; border: none;
  border-bottom: 3px solid transparent;
  padding: 11px 12px 9px;
  font-size: 13px; font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--muted); cursor: pointer;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.tab-btn.active { color: var(--teal-dark); border-bottom-color: var(--teal); }
.tab-btn:hover:not(.active) { color: var(--teal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.notice-list { list-style: none; }
.notice-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 18px;
  border-bottom: 1px solid #edf5f5;
  font-size: 13.5px; color: var(--text);
  transition: background .15s; cursor: pointer;
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--teal-light); }
.notice-item__date { flex-shrink: 0; font-size: 12px; color: var(--muted); width: 68px; margin-top: 2px; }
.ntag {
  flex-shrink: 0; font-size: 10px; font-weight: 500;
  padding: 2px 7px; border-radius: 20px; margin-top: 2px;
}
.ntag--update { background: var(--teal-light); color: var(--teal-dark); }
.ntag--info   { background: #eff4fb; color: #2a5f9f; }
.ntag--sys    { background: #f5f0fb; color: #6b3faf; }
.notice-item__text { flex: 1; line-height: 1.6; }
.notice-item__arr  { color: var(--muted); margin-top: 2px; font-size: 13.5px; }
.recruit-row {
  padding: 14px 18px;
  border-bottom: 1px solid #edf5f5;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.recruit-row:last-child { border-bottom: none; }
.recruit-row__title { font-size: 14.5px; font-weight: 500; color: var(--teal-dark); }
.recruit-row__sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.recruit-row__badge {
  font-size: 10px; background: var(--urgent); color: var(--white);
  padding: 2px 8px; border-radius: 20px; display: inline-block; margin-top: 4px;
}
.recruit-row__btn {
  background: var(--teal); color: var(--white);
  font-size: 12.5px; font-weight: 500;
  padding: 7px 14px; border-radius: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap; transition: background .2s;
}
.recruit-row__btn:hover { background: var(--teal-dark); }

/* ══════════════════════════════════════════
   ABOUT / PHILOSOPHY
══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__image-placeholder {
  font-size: 64px;
  opacity: .35;
}
.about__image-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(13,82,168,.85);
  color: rgba(255,255,255,.9);
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .06em;
}
.about__tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11.5px;
  letter-spacing: .12em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}
.about__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--teal-dark);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.about__body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
}
.about__stats {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.about__stat { display: flex; flex-direction: column; gap: 3px; }
.about__stat-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  color: var(--teal-dark);
  font-weight: 600;
  line-height: 1;
}
.about__stat-num sup { font-size: 14.5px; }
/* テキスト型stat（整形外科医・膠原病内科医）はサイズを下げる */
.about__stat--text .about__stat-num {
  font-size: 15px;
  line-height: 1.3;
}
.about__stat-label { font-size: 11.5px; color: var(--muted); letter-spacing: .08em; }

/* ══════════════════════════════════════════
   TREATMENT TARGETS
══════════════════════════════════════════ */
.disease-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.disease-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 40px;
  padding: 10px 20px;
  transition: background .2s, border-color .2s, transform .15s;
  cursor: default;
  white-space: nowrap;
}
.disease-card:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-1px);
}
.disease-card__icon { font-size: 17px; flex-shrink: 0; }
.disease-card__name {
  font-size: 14.5px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
  white-space: normal;
}
.disease-card__sub { display: none; }

/* ══════════════════════════════════════════
   DOCTORS
══════════════════════════════════════════ */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.doctor-card {
  background: var(--white);
  border-radius: 14px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  align-items: center;
  gap: 0;
}
.doctor-card:hover {
  box-shadow: 0 8px 28px rgba(0,102,204,.14);
  transform: translateY(-2px);
}
.doctor-card__img {
  width: 110px;
  min-width: 110px;
  height: 130px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--teal);
  overflow: hidden;
  flex-shrink: 0;
}
.doctor-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.doctor-card__body { padding: 16px 20px; }
.doctor-card__role {
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 4px;
}
.doctor-card__name {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.doctor-card__cert {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 480px) {
  .doctor-card { flex-direction: column; align-items: stretch; }
  .doctor-card__img { width: 140px; min-width: unset; height: auto; aspect-ratio: 3/4; margin: 16px auto 0; border-radius: 8px; overflow: hidden; }
  .doctor-card__body { padding: 12px 16px 16px; }
  .doctor-card__name { font-size: 16px; }
}

/* ══════════════════════════════════════════
   COLUMNS / BLOG
══════════════════════════════════════════ */
.columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.column-card {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.column-card:hover {
  box-shadow: 0 6px 24px rgba(0,102,204,.12);
  transform: translateY(-2px);
}
.column-card__img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--teal-light), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  opacity: .5;
}
.column-card__body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.column-card__tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 10px;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
}
.column-card__title {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}
.column-card__more {
  font-size: 12.5px;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   ACCESS / HOURS
══════════════════════════════════════════ */
.access-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 32px;
  align-items: start;
}
.hours-table-wrap { background: var(--white); border-radius: 12px; border: 1.5px solid var(--border); overflow: hidden; }
.hours-table-wrap__hdr {
  background: var(--teal);
  color: var(--white);
  padding: 12px 20px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: 'Shippori Mincho', serif;
  letter-spacing: .06em;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 11px 14px;
  text-align: center;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}
.hours-table th { background: var(--teal-light); color: var(--teal-dark); font-weight: 500; }
.hours-table td { color: var(--text); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .time-col { text-align: left; padding-left: 18px; color: var(--muted); }
.hours-table .yes { color: var(--teal); font-weight: 500; }
.hours-table .no  { color: #ccc; }

.access-info {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.access-row { display: flex; gap: 12px; align-items: flex-start; }
.access-row__icon { font-size: 19px; flex-shrink: 0; margin-top: 2px; }
.access-row__label { font-size: 11.5px; color: var(--muted); letter-spacing: .08em; }
.access-row__val { font-size: 14.5px; color: var(--text); line-height: 1.6; margin-top: 2px; }
.access-divider { height: 1px; background: var(--border); }
.map-placeholder {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1.5px solid var(--border);
}
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  transition: background .2s;
  margin-top: 12px;
}
.map-link:hover { background: var(--teal-dark); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--teal-xdark);
  color: rgba(255,255,255,.7);
  padding: 48px 24px 24px;
}
.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer__logo-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 12px;
  line-height: 1.4;
}
.footer__address { font-size: 13.5px; line-height: 1.9; color: rgba(255,255,255,.6); }
.footer__tel {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  margin-top: 14px;
  display: block;
}
.footer__col-title {
  font-size: 12.5px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
  font-weight: 400;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copyright { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer__socials { display: flex; gap: 14px; }
.footer__social {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 15.5px;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.footer__social:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* ══════════════════════════════════════════
   STICKY BOTTOM BAR (mobile)
══════════════════════════════════════════ */
.sticky-bottom {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 8px;
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.sticky-bottom__btn {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
}
.sticky-bottom__btn--primary { background: var(--teal); color: var(--white); }
.sticky-bottom__btn--tel     { background: var(--teal-light); color: var(--teal-dark); }
.sticky-bottom__btn--primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.sticky-bottom__btn--tel:hover { background: var(--teal-light); transform: translateY(-1px); }


/* ══════════════════════════════════════════
   MOBILE DRAWER NAV
══════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.mobile-nav.open {
  display: block;
  pointer-events: auto;
}
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,30,70,.45);
  opacity: 0;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
}
.mobile-nav.open .mobile-nav__overlay { opacity: 1; }
.mobile-nav__drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open .mobile-nav__drawer { transform: translateX(0); }
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav__logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 15.5px;
  color: var(--teal-dark);
  font-weight: 600;
  line-height: 1.3;
}
.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--muted);
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.mobile-nav__close:hover {
  background: var(--teal-light);
  border-color: var(--teal-mid);
  color: var(--teal-dark);
}
.mobile-nav__close svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  flex-shrink: 0;
}
.mobile-nav__links { list-style: none; padding: 8px 0; flex: 1; }
.mobile-nav__links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 24px;
  font-size: 15.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
  text-decoration: none;
}
.mobile-nav__links li a:hover { background: var(--teal-light); color: var(--teal-dark); }
.mobile-nav__links li a .nav-icon { font-size: 17px; width: 24px; text-align: center; flex-shrink: 0; }
.mobile-nav__links li a .nav-label { flex: 1; }
.mobile-nav__links li a .nav-arr { color: var(--light-muted); font-size: 13.5px; }
.mobile-nav__cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav__cta-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  transition: background .2s;
}
.mobile-nav__cta-btn--primary { background: var(--teal); color: var(--white); }
.mobile-nav__cta-btn--primary:hover { background: var(--teal-dark); }
.mobile-nav__cta-btn--secondary {
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-mid);
}
.mobile-nav__cta-btn--secondary:hover { background: var(--teal-mid); }
.mobile-nav__tel {
  text-align: center;
  padding: 10px;
  background: var(--bg);
  border-radius: 8px;
}
.mobile-nav__tel a {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: none;
}
.mobile-nav__tel-hours { font-size: 11.5px; color: var(--muted); display: block; margin-top: 3px; }

/* ハンバーガー→×アニメーション */
.hamburger span { transition: transform .3s ease, opacity .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   RESPONSIVE — 5段階ブレークポイント
══════════════════════════════════════════ */

/* 1200px以下 */
@media (max-width: 1200px) {
  .hero__inner { gap: 32px; }
  .hero__cta-panel { padding: 22px; }
  .nav__link { padding: 0 10px; font-size: 13.5px; }
  .section { padding: 52px 20px; }
}

/* 1024px以下 */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 360px; }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__inner > div:first-child { grid-column: 1 / -1; }
}

/* 900px以下 */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding: 48px 20px; }
  .hero__cta-panel { max-width: 520px; }
  .hero__body { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about__image-wrapper { aspect-ratio: 16/7; }
  .disease-grid { gap: 8px; }
  .columns-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
}

/* 640px以下: モバイル */
@media (max-width: 640px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .logo__icon { width: 30px; height: 30px; }
  .logo__ja { font-size: 14px; }
  .logo__en { display: none; }
  .hero { min-height: auto; }
  .hero__inner { padding: 36px 16px 28px; gap: 24px; }
  .hero__title { font-size: clamp(22px, 6vw, 30px); }
  .hero__stats { gap: 16px; flex-wrap: wrap; }
  .hero__stat-num { font-size: 24px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .hero__cta-panel { padding: 18px 16px; }
  .section { padding: 40px 16px; }
  .section__header { margin-bottom: 20px; }
  .section__title { font-size: 20px; }
  .disease-grid { gap: 8px; }
  .doctors-grid { grid-template-columns: 1fr; gap: 16px; }
  .columns-grid { grid-template-columns: 1fr; }
  .notice-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hours-table th, .hours-table td { padding: 8px 6px; font-size: 12.5px; }
  .hours-table .time-col { padding-left: 10px; font-size: 12px; }
  .footer { padding: 36px 16px 20px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tab-btn { padding: 10px 8px 8px; font-size: 12px; }
  .sticky-bottom { display: flex; }
  body { padding-bottom: 68px; }
}

/* 375px以下: 小型スマホ */
@media (max-width: 375px) {
  .logo__ja { font-size: 15.5px; }
  .logo__en { display: none; }
  .header__inner { padding: 0 14px; height: 56px; }
  .hero__inner { padding: 28px 14px 22px; }
  .hero__title { font-size: 21px; }
  .hero__stats { gap: 12px; }
  .hero__stat-num { font-size: 22px; }
  .hero__cta-panel { padding: 14px 12px; }
  .section { padding: 32px 14px; }
  .disease-grid { gap: 6px; }
  .doctors-grid { grid-template-columns: 1fr; gap: 14px; }
  .columns-grid { grid-template-columns: 1fr; }
  .cta-btn { padding: 11px 12px; }
  .cta-btn__main { font-size: 13.5px; }
  .sticky-bottom { padding: 8px 12px; }
  .sticky-bottom__btn { font-size: 12.5px; padding: 10px 6px; }
  body { padding-bottom: 64px; }
}

/* ── About 喫煙者お断り ── */
.about__nosmoking {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--urgent);
  border: 1.5px solid var(--urgent-mid);
  background: var(--urgent-bg);
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.about__nosmoking::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--urgent);
  flex-shrink: 0;
}
.about__nosmoking:hover { background: #fce8e8; }

/* ── About 治療対象ラベル ── */
.about__diseases-label {
  font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 8px;
}

/* ── About 治療対象ピル ── */
.about__diseases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.about__disease-pill {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1px solid var(--teal-mid);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.4;
}

/* ── 関節リウマチ紹介セクション ── */
.ra-intro {
  background: var(--white);
}
.ra-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ra-intro__kicker {
  font-size: 11.5px;
  letter-spacing: .18em;
  color: var(--teal);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.ra-intro__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--teal-dark);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.ra-intro__body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 22px;
}
.ra-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}
.ra-intro__link:hover { background: var(--teal-dark); }

/* ── 気になる症状ボタン ── */
.symptom-block {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.symptom-block__label {
  font-size: 11.5px;
  letter-spacing: .14em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
.symptom-block__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}
.symptom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.symptom-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--teal-mid);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-dark);
  cursor: default;
  transition: background .15s, border-color .15s;
  font-family: 'Noto Sans JP', sans-serif;
}
.symptom-btn:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.symptom-btn:hover {
  background: var(--teal-light);
  border-color: var(--teal);
}
.symptom-block__note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.6;
}
.symptom-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: var(--white);
  border: 1.5px solid var(--teal);
  color: var(--teal-dark);
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}
.symptom-block__cta:hover { background: var(--teal-light); }

@media (max-width: 900px) {
  .ra-intro-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .symptom-block { padding: 18px 16px; }
  .ra-intro-grid { gap: 20px; }
}

/* ── 早期受診CTA バナー ── */
.early-visit {
  background: linear-gradient(108deg, var(--teal-dark) 0%, var(--teal) 60%, #3388dd 100%);
  position: relative;
  overflow: hidden;
}
.early-visit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 90% 50%, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.early-visit__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.early-visit__label {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.25);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.early-visit__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--white);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.early-visit__heading em {
  font-style: normal;
  color: #a8e6d0;
}
.early-visit__body {
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.9;
  max-width: 560px;
}
.early-visit__body p + p { margin-top: 6px; }
.early-visit__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 200px;
}
.early-visit__btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .2s;
  white-space: nowrap;
}
.early-visit__btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.early-visit__btn--primary {
  background: var(--white);
  color: var(--teal-dark);
}
.early-visit__btn--secondary {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.early-visit__btn--secondary:hover { background: rgba(255,255,255,.2); }

@media (max-width: 768px) {
  .early-visit__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 20px;
  }
  .early-visit__actions { flex-direction: row; flex-wrap: wrap; }
  .early-visit__btn { flex: 1; min-width: 140px; }
}
@media (max-width: 480px) {
  .early-visit__actions { flex-direction: column; }
  .early-visit__btn { width: 100%; }
}

/* ── symptom-block 内 早期受診エリア ── */
.symptom-block__early {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--teal-mid);
}
.symptom-block__early-heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 8px;
  letter-spacing: .03em;
}
.symptom-block__early-body {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.symptom-block__early-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.symptom-block__early-btn {
  flex: 1;
  min-width: 130px;
  display: block;
  text-align: center;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.symptom-block__early-btn:hover { transform: translateY(-1px); }
.symptom-block__early-btn--primary {
  background: var(--teal);
  color: var(--white);
}
.symptom-block__early-btn--primary:hover { background: var(--teal-dark); }
.symptom-block__early-btn--secondary {
  background: var(--white);
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-mid);
}
.symptom-block__early-btn--secondary:hover { background: var(--teal-light); }
@media (max-width: 480px) {
  .symptom-block__early-btns { flex-direction: column; }
  .symptom-block__early-btn { min-width: unset; }
}

/* ── 求人セクション ── */
.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.recruit-card-full {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: box-shadow .2s, transform .2s;
}
.recruit-card-full:hover {
  box-shadow: 0 6px 24px rgba(0,102,204,.1);
  transform: translateY(-2px);
}
.recruit-card-full__body { display: flex; flex-direction: column; gap: 6px; }
.recruit-card-full__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: .06em;
  width: fit-content;
}
.recruit-card-full__badge--urgent { background: var(--urgent); color: var(--white); }
.recruit-card-full__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
}
.recruit-card-full__sub {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
}
.recruit-card-full__btn {
  flex-shrink: 0;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.recruit-card-full__btn:hover { background: var(--teal-dark); }
@media (max-width: 640px) {
  .recruit-grid { grid-template-columns: 1fr; }
  .recruit-card-full { flex-direction: column; align-items: flex-start; }
  .recruit-card-full__btn { width: 100%; text-align: center; }
}

/* ── 専門医資格リスト ── */
.doctor-card__cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.doctor-card__cert-list li {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 10px;
  position: relative;
}
.doctor-card__cert-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal-mid);
}

/* ── 通院患者さん向け情報 ── */
.patient-info {
  margin-top: 28px;
  border-top: 1.5px solid var(--border);
  padding-top: 24px;
}
.patient-info__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.patient-info__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.patient-info__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  align-items: start;
}
.patient-info__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: .04em;
  margin-top: 1px;
}
.patient-info__label--online  { background: var(--teal-light);  color: var(--teal-dark);  border: 1px solid var(--teal-mid); }
.patient-info__label--caution { background: var(--urgent-bg);   color: var(--urgent);     border: 1px solid var(--urgent-mid); }
.patient-info__label--tel     { background: var(--off-white);   color: var(--muted);      border: 1px solid var(--border); }
.patient-info__body {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.75;
}
.patient-info__body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.patient-info__body a:hover { color: var(--teal-dark); }
.patient-info__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.6;
}

/* ── patient-info 連絡先レイアウト ── */
.patient-info__contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}
.patient-info__contact-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.patient-info__contact-label {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 500;
}
.patient-info__contact-link {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  word-break: break-all;
}
.patient-info__contact-link:hover { color: var(--teal); text-decoration: underline; }
.patient-info__label--caution2 {
  background: #fff8e6;
  color: #8a5c00;
  border: 1px solid #f0d080;
}
@media (max-width: 480px) {
  .patient-info__contact-row { grid-template-columns: 1fr; }
}

/* ── 発熱・風邪症状バナー ── */
.fever-banner {
  margin-top: 28px;
  background: var(--white);
  border: 2px solid var(--urgent-mid);
  border-top: 4px solid var(--urgent);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(184,50,50,.08);
}
.fever-banner__header {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--urgent);
  margin-bottom: 14px;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fever-banner__header::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--urgent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(184,50,50,.2);
}
.fever-banner__body {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 16px;
}
.fever-banner__alert {
  font-size: 14px;
  font-weight: 500;
  color: var(--urgent);
  background: var(--urgent-bg);
  border: 1px solid var(--urgent-mid);
  border-radius: 8px;
  padding: 12px 18px;
  line-height: 1.75;
}
@media (max-width: 640px) {
  .fever-banner { padding: 20px 18px; }
  .fever-banner__header { font-size: 17px; }
}

/* ══ 通院患者セクション（独立） ══ */
.patient-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.patient-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.patient-info-card:hover {
  box-shadow: 0 6px 24px rgba(0,102,204,.08);
  transform: translateY(-2px);
}
.patient-info-card--fever {
  border-color: var(--urgent-mid);
  background: var(--urgent-bg);
}
.patient-info-card--fever:hover {
  box-shadow: 0 6px 24px rgba(184,50,50,.08);
}
.patient-info-card__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 4px;
  letter-spacing: .06em;
  width: fit-content;
}
.patient-info-card__label--online { background: var(--teal-light); color: var(--teal-dark); border: 1px solid var(--teal-mid); }
.patient-info-card__label--tel    { background: var(--off-white);  color: var(--muted);     border: 1px solid var(--border); }
.patient-info-card__label--fever  { background: var(--urgent);     color: var(--white); }
.patient-info-card__body {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.8;
}
.patient-info-card__body a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.patient-info-card__note { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.6; }
@media (max-width: 900px) {
  .patient-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .patient-info-grid { grid-template-columns: 1fr; }
}
/* ── 通院患者セクション ヘッダーボタン ── */
.patient-header-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.patient-header-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.patient-header-btn:hover { transform: translateY(-1px); }
.patient-header-btn--primary { background: var(--teal); color: var(--white); }
.patient-header-btn--primary:hover { background: var(--teal-dark); }
.patient-header-btn--secondary { background: var(--white); color: var(--teal-dark); border: 1.5px solid var(--teal-mid); }
.patient-header-btn--secondary:hover { background: var(--teal-light); }
@media (max-width: 640px) {
  .patient-header-btns { width: 100%; }
  .patient-header-btn { flex: 1; text-align: center; }
}

/* ── アクセスマップカード ── */
.access-map-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.access-map-card .map-placeholder { border-radius: 0; border: none; }
.access-map-card__info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.access-map-card__address .access-row__label {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 3px;
}
.access-map-card__address .access-row__val { font-size: 13.5px; color: var(--text); line-height: 1.65; }
@media (max-width: 640px) {
  .access-map-card__info { flex-direction: column; align-items: flex-start; }
}

/* ── 電話番号大きめ表示 ── */
.access-row__val--tel {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.4;
}
.access-row__val--tel a { color: var(--teal-dark); text-decoration: none; }
.access-row__val--tel a:hover { color: var(--teal); }

/* ── 通院患者セクション ヘッダーボタン ── */
.patient-header-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.patient-header-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.patient-header-btn:hover { transform: translateY(-1px); }
.patient-header-btn--primary { background: var(--teal); color: var(--white); }
.patient-header-btn--primary:hover { background: var(--teal-dark); }
.patient-header-btn--secondary { background: var(--white); color: var(--teal-dark); border: 1.5px solid var(--teal-mid); }
.patient-header-btn--secondary:hover { background: var(--teal-light); }
@media (max-width: 640px) {
  .patient-header-btns { width: 100%; }
  .patient-header-btn { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════════
   抗CCP抗体ボックス（TOPページ RA INTRO内）
══════════════════════════════════════════ */
.ccp-box {
  margin-top: 28px;
}
.ccp-box__inner {
  background: var(--teal-light);
  border: 1.5px solid var(--teal-mid);
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
}
.ccp-box__kicker {
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--teal);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.ccp-box__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.ccp-box__body {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 12px;
}
.ccp-box__link {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.ccp-box__link:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* ══════════════════════════════════════════
   ABOUT CTA（TOPページ ABOUTセクション下）
══════════════════════════════════════════ */
.about-cta {
  padding: 0 0 52px;
}
.about-cta__banner {
  background: linear-gradient(108deg, var(--teal-dark) 0%, var(--teal) 60%, #3388dd 100%);
  border-radius: 16px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.about-cta__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 90% 50%, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-cta__text {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.about-cta__label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.28);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.about-cta__title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.about-cta__title em {
  font-style: normal;
  color: #a8e6d0;
}
.about-cta__sub {
  font-size: 13.5px;
  color: rgba(255,255,255,.78);
  line-height: 1.85;
  margin-bottom: 10px;
}
.about-cta__hours {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
}
.about-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.about-cta__btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
}
.about-cta__btn:hover { transform: translateY(-1px); }
.about-cta__btn--primary {
  background: var(--white);
  color: var(--teal-dark);
}
.about-cta__btn--primary:hover { background: var(--teal-light); }
.about-cta__btn--tel {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 20px;
}
.about-cta__btn--tel:hover { background: rgba(255,255,255,.2); }
.about-cta__btn-tel-label {
  font-size: 11px;
  opacity: .7;
  letter-spacing: .05em;
}
.about-cta__btn-tel-num {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .05em;
}
.about-cta__btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.8);
}
.about-cta__btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
}
@media (max-width: 1024px) {
  .about-cta__banner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-cta__btns {
    min-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .about-cta__banner {
    padding: 24px 20px;
    border-radius: 12px;
  }
  .about-cta__btns {
    flex-direction: column;
  }
  .about-cta__btn {
    width: 100%;
  }
}
