/* ═══════════════════════════════════════════════════════════
   seasons-refresh.css  (2026 デザイン改修・試作)
   seasons-tokyo.css の後に読み込み、上書き・追加するだけのファイルです。
   配色は既存の CSS 変数（--teal など）をそのまま使用しています。
═══════════════════════════════════════════════════════════ */

/* ── 1. セクション見出し：小さな英字ラベル + 大きな日本語 ── */
html, body { overflow-x: clip; }
.section__kicker,
.about__tag,
.ra-intro__kicker {
  display: flex; align-items: center; gap: 14px;
  background: none; padding: 0; border-radius: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: .14em;
  color: var(--teal); margin-bottom: 10px; line-height: 1.4;
}
.section__kicker::before,
.about__tag::before,
.ra-intro__kicker::before { content: ""; width: 64px; height: 1px; background: var(--teal); flex-shrink: 0; }
.section__title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600; letter-spacing: .08em; line-height: 1.4;
  color: var(--teal-dark);
}
.section__kicker--white { color: var(--white); }
.section__kicker--white::before { background: var(--white); }
.section__header { margin-bottom: 40px; align-items: flex-end; }
.section__lead { max-width: 820px; color: var(--text); font-size: 16px; line-height: 2.1; letter-spacing: .04em; margin: -12px 0 48px; }

/* 「一覧」リンク：下線 + 淡い円 */
.section__more {
  position: relative; z-index: 0;
  display: inline-block; padding: 4px 2px; margin: 0 26px 12px 0;
  border: 0; border-radius: 0; background: none !important;
  font-size: 17px; font-weight: 700; letter-spacing: .06em; color: var(--teal);
  border-bottom: 1px solid var(--teal);
}
.section__more::after {
  content: ""; position: absolute; z-index: -1;
  width: 110px; height: 110px; border-radius: 50%;
  right: -60px; top: 50%; transform: translateY(-50%) scale(.9);
  background: var(--teal-light); opacity: .8;
  transition: transform .35s ease, opacity .35s ease;
}
.section__more:hover::after { transform: translateY(-50%) scale(1.08); opacity: 1; }
.patient-header-btns { display: flex; gap: 28px; flex-wrap: wrap; }

/* ── 2. ヘッダー：診療時間・アクセスの開閉ボタン ───────── */
.header__inner { max-width: 1240px; }
.hinfo { display: flex; align-items: stretch; margin-left: 18px; border-left: 1px solid var(--border); }
.hinfo__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  width: 68px; min-height: 64px; padding: 6px 4px;
  background: none; border: 0; border-right: 1px solid var(--border);
  font-family: 'Noto Sans JP', sans-serif; font-size: 11.5px; color: var(--teal-dark);
  cursor: pointer; transition: background .2s;
}
.hinfo__btn svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.6; }
.hinfo__btn:hover, .hinfo__btn[aria-expanded="true"] { background: var(--teal-light); }
.hinfo__btn:focus-visible, .sb-btn:focus-visible, .hpanel__close:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.hpanel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 16px 32px rgba(13,82,168,.12);
  z-index: 150;
}
.hpanel[hidden] { display: none; }
.hpanel__inner {
  max-width: 1080px; margin: 0 auto; padding: 28px 24px 30px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start;
  position: relative;
}
.hpanel__title { font-size: 18px; font-weight: 700; color: var(--teal-dark); margin-bottom: 14px; }
.hpanel .hours-table { width: 100%; }
.hpanel__note { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.7; }
.hpanel__tel { font-size: 28px; font-weight: 500; letter-spacing: .06em; color: var(--teal); display: inline-block; line-height: 1.3; }
.hpanel__side { display: flex; flex-direction: column; gap: 14px; }
.hpanel__label { font-size: 12px; color: var(--teal); font-weight: 500; letter-spacing: .06em; }
.hpanel__val { font-size: 14px; line-height: 1.75; color: var(--text); }
.hpanel__map { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.hpanel__map img { width: 100%; height: auto; display: block; }
.hpanel__links { display: flex; gap: 10px; flex-wrap: wrap; }
.hpanel__link {
  font-size: 13px; padding: 8px 14px; border-radius: 3px;
  border: 1px solid var(--teal-mid); color: var(--teal-dark); background: var(--white);
}
.hpanel__link--primary { background: var(--teal); border-color: var(--teal); color: var(--white); }
.hpanel__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: 0; font-size: 13px; color: var(--muted); cursor: pointer; padding: 6px 8px;
}

/* ── 3. ナビのプルダウン（2段表記） ──────────────────── */
.nav__item--has-sub > .nav__link::after {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-3px) rotate(45deg); opacity: .6;
}
.nav-sub {
  position: absolute; top: 100%; left: -12px; min-width: 300px;
  list-style: none; margin: 0; padding: 10px;
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--teal);
  box-shadow: 0 14px 30px rgba(13,82,168,.12);
  display: none; z-index: 160;
}
.nav__item--has-sub:hover > .nav-sub,
.nav__item--has-sub:focus-within > .nav-sub { display: block; }
.nav-sub a { display: block; padding: 10px 12px; }
.nav-sub a:hover, .nav-sub a:focus-visible { background: var(--teal-light); outline: none; }
.nav-sub__main { display: block; font-size: 14.5px; color: var(--teal-dark); font-weight: 500; }
.nav-sub__sub { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── 4. 当院の特徴（写真カード） ────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
.feature-card { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
.feature-card__img { position: relative; aspect-ratio: 3 / 2; border-radius: 12px; overflow: hidden; background: var(--teal-light); }
.feature-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.feature-card:hover .feature-card__img img { transform: scale(1.04); }
.feature-card__img { border-radius: 0; }
.feature-card__head { display: flex; align-items: flex-start; gap: 12px; margin-top: 22px; }
.feature-card__num {
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 58px; line-height: .9; color: var(--teal); flex-shrink: 0;
}
.feature-card__catch { font-size: 13px; color: var(--muted); letter-spacing: .08em; margin: 2px 0 4px; }
.feature-card__title, .treat-card__name, .section__title, .hero2__title { word-break: auto-phrase; }
.feature-card__title { font-family: 'Shippori Mincho', serif; font-size: 21px; font-weight: 600; color: var(--text); line-height: 1.45; letter-spacing: .04em; }
.feature-card__desc { font-size: 14px; color: var(--muted); line-height: 1.85; margin-top: 8px; }
.feature-card__more { font-size: 13px; color: var(--teal); margin-top: 10px; }

/* ── 5. 医師紹介：院内写真のスライダー ─────────────── */
.section--flush { padding-bottom: 0 !important; }
.photo-marquee { margin: 64px calc(50% - 50vw) 0; overflow: hidden; }
.photo-marquee__track { display: flex; gap: 8px; width: max-content; animation: marquee 60s linear infinite; }
.photo-marquee:hover .photo-marquee__track { animation-play-state: paused; }
.photo-marquee__item { width: 540px; aspect-ratio: 3 / 2; border-radius: 0; overflow: hidden; flex-shrink: 0; }
.photo-marquee__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 4px)); } }
@media (prefers-reduced-motion: reduce) {
  .photo-marquee { overflow-x: auto; }
  .photo-marquee__track { animation: none; }
  .photo-marquee__item[aria-hidden="true"] { display: none; }
  .feature-card__img img { transition: none; }
  .treat-card, .treat-card::before, .section__more::after { transition: none; }
  .treat-card:hover { transform: none; }
}

/* ── 6. 予約カード + 明るいフッター ───────────────── */
.reserve { background: var(--bg); padding: 80px 24px; }
.reserve__card { max-width: 1080px; margin: 0 auto; background: var(--white); padding: 48px 56px; }
.reserve__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.reserve__title { font-family: 'Shippori Mincho', serif; font-size: 24px; font-weight: 600; letter-spacing: .06em; color: var(--teal-dark); }
.reserve__text { font-size: 15px; line-height: 2; color: var(--text); margin: 18px 0 26px; letter-spacing: .03em; }
.reserve__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.reserve__item {
  display: flex; flex-direction: column; gap: 4px; justify-content: center;
  padding: 18px 18px; min-height: 84px;
  border: 1px solid var(--teal-mid); background: var(--white);
  color: var(--teal-dark); text-decoration: none; transition: background .2s;
}
.reserve__item:hover { background: var(--teal-light); }
.reserve__item--primary { background: var(--teal); border-color: var(--teal); color: var(--white); }
.reserve__item--primary:hover { background: var(--teal-xdark); }
.reserve__item-main { font-size: 16px; font-weight: 700; letter-spacing: .04em; }
.reserve__item-sub { font-size: 12.5px; opacity: .8; }
.reserve__tel { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-top: 22px; }
.reserve__tel-label { font-size: 14px; font-weight: 700; color: var(--text); }
.reserve__tel-num, .footer__tel { font-family: 'Noto Sans JP', sans-serif; font-size: 32px; font-weight: 500; letter-spacing: .06em; color: var(--teal); }
.reserve__tel-num a { color: inherit; }
.reserve__tel-num small, .footer__tel small, .hero2-hours__tel-label { font-size: 15px; font-weight: 500; margin-right: 2px; letter-spacing: .04em; }

.footer { background: var(--teal-xdark); color: rgba(255,255,255,.75); padding: 64px 24px 28px; }
.footer__inner { grid-template-columns: 1.3fr 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer__logo-name { color: var(--white); font-size: 19px; }
.footer__address { color: rgba(255,255,255,.75); }
.footer__tel { display: block; margin: 12px 0 18px; font-size: 26px; color: var(--white); }
.footer__col-title { color: rgba(255,255,255,.55); font-weight: 700; }
.footer__links a { color: rgba(255,255,255,.78); }
.footer__links a:hover { color: var(--white); }
.footer__copyright { color: rgba(255,255,255,.45); }
.footer__social { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.footer__social:hover { background: rgba(255,255,255,.18); color: var(--white); }

/* ── 7. スマホ下部バー（アイコン式） ───────────────── */
.sticky-bottom.sb { padding: 0; gap: 0; }
.sb-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  min-height: 60px; padding: 6px 2px;
  background: var(--white); border: 0; border-right: 1px solid var(--border);
  font-family: 'Noto Sans JP', sans-serif; font-size: 11px; color: var(--teal-dark);
  text-decoration: none; cursor: pointer;
}
.sb-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.sb-btn[aria-expanded="true"] { background: var(--teal-light); }
.sb-btn--primary { flex: 1.6; background: var(--teal); color: var(--white); border-right: 0; font-size: 13px; font-weight: 500; }

/* ── 8. ヒーロー（全面写真 + 中央コピー） ─────────── */
.hero2 { position: relative; min-height: min(78vh, 680px); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero2__photo, .hero2__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* 元のヒーローと同じ霞み：左から白→右へ薄く抜ける白グラデーション */
.hero2::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  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%);
}
/* 中央の文字の読みやすさ用に、ごく淡い白の光を補助的に */
.hero2::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(ellipse 42% 50% at 50% 46%, rgba(255,255,255,.45), rgba(255,255,255,0) 75%); }
.hero2__copy { position: relative; z-index: 2; text-align: center; color: var(--text); padding: 64px 24px 168px; }
.hero2__since { display: inline-block; font-size: 17px; font-weight: 700; letter-spacing: .1em; color: var(--teal); padding-bottom: 8px; border-bottom: 1px solid var(--teal); margin-bottom: 28px; }
.hero2__title { color: var(--teal-dark); font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif; font-weight: 700; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.4; letter-spacing: .12em; }
.hero2__body { font-size: clamp(14.5px, 1.3vw, 17px); line-height: 2.1; letter-spacing: .08em; margin-top: 26px; }
.hero2__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; text-shadow: none; }
.hero2__btn { padding: 15px 30px; font-size: 15px; font-weight: 500; letter-spacing: .06em; color: var(--teal-dark); border: 1px solid var(--teal-mid); background: var(--white); border-radius: 3px; transition: background .2s, color .2s; }
.hero2__btn:hover { background: var(--teal-light); }
.hero2__btn--primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.hero2__btn--primary:hover { background: var(--teal-xdark); }
.hero2__btn:focus-visible, .treat-card:focus-visible, .float-cta__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.hero2-bar { background: var(--bg); }
.hero2-bar__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 560px; gap: 40px; padding: 0 24px; }
.hero2-news { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 22px; padding: 30px 0; align-self: start; }
/* 当日の臨時のお知らせ */
.hero2-bar__inner > .hero2-hours { grid-column: 2; grid-row: 1 / span 3; }
.hero2-bar__inner > .today-notice, .hero2-bar__inner > .hero2-news { grid-column: 1; }
.today-notice {
  --tn: var(--urgent); --tn-bg: var(--urgent-bg);
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 6px 16px;
  margin-top: 26px; padding: 16px 20px;
  background: var(--tn-bg); border: 1px solid var(--tn); border-left-width: 4px; border-radius: 3px;
}
.today-notice[hidden] { display: none; }
.today-notice[data-level="change"] { --tn: var(--accent); --tn-bg: #fff6ec; }
.today-notice__label {
  grid-row: 1 / span 2; align-self: center;
  background: var(--tn); color: var(--white); font-size: 12.5px; font-weight: 700; letter-spacing: .08em;
  padding: 6px 10px; border-radius: 2px; white-space: nowrap;
}
.today-notice__text { font-size: 15.5px; line-height: 1.7; color: var(--text); letter-spacing: .03em; }
.today-notice__text strong { color: var(--tn); }
.today-notice__link { justify-self: start; font-size: 13.5px; color: var(--teal-dark); border-bottom: 1px solid currentColor; }
.today-notice + .hero2-news { padding-top: 18px; }
.hero2-news__label { font-size: 15px; font-weight: 700; letter-spacing: .12em; color: var(--teal); padding-right: 22px; border-right: 1px solid var(--border); }
.hero2-news__date { font-size: 15px; color: var(--muted); letter-spacing: .06em; }
.hero2-news__title { font-size: 16px; font-weight: 700; letter-spacing: .06em; color: var(--text); }
.hero2-news__title:hover { color: var(--teal); }
.hero2-news__kanagawa { flex-basis: 100%; font-size: 13px; color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.hero2-hours { position: relative; z-index: 2; margin-top: -120px; margin-bottom: 28px; background: var(--white); padding: 34px 40px 30px; }
.hero2-hours .hours-table th { background: none; color: var(--text); font-weight: 700; font-size: 15px; padding: 8px 6px; }
.hero2-hours .hours-table td { font-size: 15px; padding: 12px 6px; letter-spacing: .04em; }
.hero2-hours .hours-table .time-col { padding-left: 0; color: var(--text); }
.hero2-hours__tel { margin-top: 16px; font-size: 30px; font-weight: 500; letter-spacing: .06em; color: var(--teal); }
.hero2-hours__tel a { color: inherit; }
.hero2-hours__note { font-size: 13.5px; color: var(--text); letter-spacing: .04em; }
.hero2-hours__kanagawa {
  position: relative; display: flex; flex-direction: column; gap: 2px;
  margin-top: 16px; padding: 12px 40px 11px 16px;
  border: 1px solid var(--teal-mid); border-radius: 3px; background: var(--teal-light);
  color: var(--teal-dark); text-decoration: none; transition: background .2s, border-color .2s;
}
.hero2-hours__kanagawa::after { content: "›"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 20px; line-height: 1; opacity: .7; }
.hero2-hours__kanagawa:hover { background: var(--white); border-color: var(--teal); }
.hero2-hours__kanagawa:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.hero2-hours__kanagawa-sub { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.hero2-hours__kanagawa-main { font-size: 14.5px; font-weight: 700; letter-spacing: .04em; }

/* ヒーロー：セカンドオピニオン案内 */
.hero2__so {
  display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 6px 14px;
  margin-top: 26px; padding: 10px 18px; border-radius: 3px;
  background: var(--white); border: 1px solid var(--border); color: var(--text); text-shadow: none;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .2s;
}
.hero2__so:hover { background: var(--white); }
.hero2__so-badge { background: var(--accent); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .08em; padding: 2px 9px; border-radius: 2px; }
.hero2__so-text { word-break: auto-phrase; font-size: 14.5px; font-weight: 700; letter-spacing: .04em; color: var(--teal-dark); }
.hero2__so-link { font-size: 13.5px; color: var(--teal); border-bottom: 1px solid var(--teal); }
.hero2__so:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* 診療時間表下の予約ボタン */
.hero2-hours__btns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.hero2-hours__btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center;
  padding: 11px 6px 10px; border: 1px solid var(--teal-mid); border-radius: 3px;
  background: var(--white); color: var(--teal-dark); text-decoration: none; transition: background .2s;
}
.hero2-hours__btn:hover { background: var(--teal-light); }
.hero2-hours__btn--primary { background: var(--teal); border-color: var(--teal); color: var(--white); }
.hero2-hours__btn--primary:hover { background: var(--teal-xdark); }
.hero2-hours__btn-main { font-size: 15px; font-weight: 700; letter-spacing: .06em; }
.hero2-hours__btn-sub { font-size: 11.5px; opacity: .85; }
.hero2-hours__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── 9. 診療内容（アイコンカード） ─────────────── */
.treat-grid { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--white); }
.treat-card {
  position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 44px 14px 40px; color: var(--text); text-decoration: none;
  border-right: 1px solid var(--border); background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
}
.treat-card:last-child { border-right: 0; }
.treat-card::before {
  content: ""; position: absolute; inset: 10px; border: 1.5px solid var(--teal);
  opacity: 0; transform: rotate(0deg); transition: opacity .3s ease, transform .3s ease; pointer-events: none;
}
.treat-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 18px 36px rgba(13,82,168,.14); z-index: 1; }
.treat-card:hover::before { opacity: 1; transform: rotate(2deg); }
.treat-card__icon svg { width: 96px; height: 96px; fill: none; stroke: var(--text); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.treat-card__icon svg .ac, .float-cta__btn svg .ac { stroke: var(--teal); }
.treat-card__name { margin-top: 22px; font-size: 17px; font-weight: 700; letter-spacing: .06em; line-height: 1.5; }
.treat-card__sub { margin-top: 4px; font-size: 13.5px; color: var(--muted); letter-spacing: .04em; }
#treatment { background: var(--bg); }

/* ── 10. 重要なお知らせ + お知らせ一覧 ─────────── */
.urgent-block {
  display: grid; grid-template-columns: 230px 1fr;
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--urgent);
  border-left-width: 1px; margin-bottom: 44px; overflow: hidden;
}
.urgent-block__hdr {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 6px;
  background: var(--urgent-bg); color: var(--urgent);
  padding: 28px 28px; border-right: 1px solid var(--urgent-mid);
  font-family: 'Shippori Mincho', serif; font-size: 19px; font-weight: 600; letter-spacing: .08em;
}
.urgent-block__hdr::before {
  content: "IMPORTANT"; font-family: 'Noto Sans JP', sans-serif;
  font-size: 11.5px; font-weight: 500; letter-spacing: .2em; color: var(--urgent); opacity: .85;
}
.urgent-block__list { padding: 6px 30px; }
.urgent-block__item {
  display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid var(--border); font-size: 15px; line-height: 1.85;
}
.urgent-block__item:last-child { border-bottom: 0; }
.utag {
  justify-self: start; background: none; color: var(--urgent);
  border: 1px solid var(--urgent); border-radius: 2px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .06em; padding: 1px 8px; margin: 0;
}
.urgent-block__item a { color: var(--urgent); text-underline-offset: 3px; }

.general-notices { background: none; border: 0; border-radius: 0; box-shadow: none; }
.general-notices__hdr { background: none; border-bottom: 1px solid var(--border); padding: 0; gap: 4px; }
.tab-btn { padding: 12px 18px 11px; font-size: 14.5px; letter-spacing: .06em; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-btn.active { color: var(--teal-dark); border-bottom-color: var(--teal-dark); font-weight: 700; }
.notice-item {
  display: grid; grid-template-columns: 104px 84px 1fr; gap: 0 18px; align-items: baseline;
  padding: 15px 6px; border-bottom: 1px solid var(--border); background: none; font-size: 15px;
  transition: background .2s;
}
.notice-item:has(> .notice-item__date) { }
.notice-item:not(:has(> .notice-item__date)) { grid-template-columns: 84px 1fr; }
.notice-item:first-child { border-top: 0; }
.notice-item:last-child { border-bottom: 1px solid var(--border); }
.notice-item:hover { background: var(--off-white); }
.notice-item__date { width: auto; margin: 0; font-size: 14px; color: var(--muted); letter-spacing: .06em; font-variant-numeric: tabular-nums; }
.notice-item .ntag { justify-self: start; min-width: 0; width: 76px; text-align: center; border-radius: 2px; padding: 1px 0; margin: 0; font-size: 11.5px; letter-spacing: .04em; }
.notice-item__text { line-height: 1.75; letter-spacing: .03em; }
.notice-item__text a { white-space: nowrap; }

/* ── 12. 通院中の患者さんへ ─────────────────── */
.patient-info-grid {
  grid-template-columns: 1fr 1.25fr; grid-template-rows: auto auto; gap: 20px;
}
.patient-info-grid > .patient-info-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.patient-info-grid > .patient-info-card:nth-child(2) { grid-column: 2; grid-row: 1 / span 2; }
.patient-info-grid > .patient-info-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.patient-info-card {
  position: relative; background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--teal);
  padding: 30px 32px 30px; gap: 14px;
}
.patient-info-card:hover { transform: none; box-shadow: 0 10px 28px rgba(13,82,168,.08); }
.patient-info-card:nth-child(2) { border-top-color: var(--teal-dark); }
.patient-info-card--fever { background: var(--white); border-color: var(--border); border-top-color: var(--urgent); }
.patient-info-card__label,
.patient-info-card__label--online, .patient-info-card__label--tel, .patient-info-card__label--fever {
  background: none; border: 0; padding: 0; color: var(--teal-dark);
  font-family: 'Shippori Mincho', serif; font-size: 20px; font-weight: 600; letter-spacing: .08em;
  display: flex; align-items: center; gap: 12px;
}
.patient-info-card__label--fever { color: var(--urgent); }
.patient-info-card__label::before {
  font-family: 'Noto Sans JP', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .12em; color: var(--teal);
  padding-right: 12px; border-right: 1px solid var(--border); line-height: 1.2;
}
.patient-info-grid > .patient-info-card:nth-child(1) .patient-info-card__label::before { content: "01"; }
.patient-info-grid > .patient-info-card:nth-child(2) .patient-info-card__label::before { content: "02"; }
.patient-info-grid > .patient-info-card:nth-child(3) .patient-info-card__label::before { content: "03"; color: var(--urgent); }
.patient-info-card__body { font-size: 15px; line-height: 1.9; }
.patient-info-card__note { font-size: 13px; line-height: 1.75; }
.patient-info__contact-row { grid-template-columns: 1fr 1fr; gap: 0; margin-top: 18px; border: 1px solid var(--border); }
.patient-info__contact-item { background: var(--off-white); border: 0; border-radius: 0; padding: 18px 20px; gap: 6px; }
.patient-info__contact-item + .patient-info__contact-item { border-left: 1px solid var(--border); }
.patient-info__contact-label { font-size: 12px; letter-spacing: .12em; color: var(--teal); }
.patient-info__contact-link { font-family: 'Noto Sans JP', sans-serif; font-size: 22px; font-weight: 500; letter-spacing: .04em; color: var(--teal-dark); }
.patient-info__contact-item:nth-child(2) .patient-info__contact-link { font-size: 16px; font-weight: 700; }
.patient-info__note { font-size: 12.5px; line-height: 1.7; }
.fever-banner__alert { border-radius: 0; border: 0; border-left: 2px solid var(--urgent); background: var(--urgent-bg); padding: 12px 16px; font-size: 14px; line-height: 1.8; }
.patient-header-btns { gap: 8px; }
.patient-header-btn { padding: 11px 22px; font-size: 14.5px; letter-spacing: .04em; border-width: 1px; }
.patient-header-btn:hover { transform: none; }

/* ── 13. 角の丸み：シャープ寄りに統一 ─────────── */
/* ボタン 3px / カード・パネル 4px / タグ 2px */
.btn, .cta-btn, .mail-btn, .cta-phone__call, .recruit-row__btn, .map-link,
.mobile-nav__close, .mobile-nav__cta-btn, .mobile-nav__tel, .ra-intro__link,
.symptom-btn, .symptom-block__cta, .early-visit__btn, .symptom-block__early-btn,
.recruit-card-full__btn, .patient-header-btn, .about-cta__btn, .hpanel__link,
.nav__cta, .hero2__btn, .sticky-bottom__btn, .tab-btn { border-radius: 3px; }
.tab-btn { border-radius: 0; }
.hero__cta-panel, .hero__kanagawa-note, .cta-address, .cta-phone, .urgent-block, .schedule-card,
.about__image-wrapper, .disease-card, .doctor-card, .column-card, .hours-table-wrap,
.access-info, .map-placeholder, .about__nosmoking, .smoke-policy__box, .symptom-block,
.recruit-card-full, .fever-banner, .patient-info-card, .access-map-card,
.about-cta__banner, .flow-card, .hpanel__map, .doctor-card__img, .reserve__card,
.hero2-hours, .treat-grid, .float-cta, .reserve__item { border-radius: 4px; }
.float-cta { overflow: hidden; }
.treat-grid { overflow: hidden; }
.prevent-box__inner { border-radius: 0 4px 4px 0; }
.nav-sub { border-radius: 0 0 4px 4px; }
.nav-sub a { border-radius: 2px; }
.urgent-bar__badge, .cta-badge, .utag, .ntag, .recruit-row__badge, .about__image-label,
.column-card__tag, .about__disease-pill, .early-visit__label, .recruit-card-full__badge,
.patient-info__label, .about-cta__label, .flow-card__num { border-radius: 2px; }

/* ── 11. 追従の予約ボタン（PC） ──────────────── */
.float-cta { position: fixed; right: 12px; bottom: 110px; z-index: 180; display: flex; flex-direction: column; gap: 1px; box-shadow: 0 8px 28px rgba(13,82,168,.18); }
.float-cta__btn { width: 112px; padding: 14px 6px 12px; background: var(--white); display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; color: var(--teal-dark); font-size: 12.5px; font-weight: 700; line-height: 1.35; text-decoration: none; transition: background .2s; }
.float-cta__btn small { font-weight: 400; font-size: 11px; color: var(--muted); }
.float-cta__btn:hover { background: var(--teal-light); }
.float-cta__btn svg { width: 40px; height: 40px; fill: none; stroke: var(--teal-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pc-only { display: inline; }

/* ── 14. ヒーロー下の帯：お知らせ + 診療時間×予約 ─── */
.hband { background: var(--bg); padding: 0 24px 56px; }
.hband__inner { max-width: 1032px; margin: 0 auto; }
.hband__news {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 22px;
  padding: 22px 0; border-bottom: 1px solid var(--border); margin-bottom: 28px;
}
.hband__news-label { font-size: 14px; font-weight: 700; letter-spacing: .14em; color: var(--teal); padding-right: 22px; border-right: 1px solid var(--border); }
.hband__news-date { font-size: 14px; color: var(--muted); letter-spacing: .06em; font-variant-numeric: tabular-nums; }
.hband__news-title { font-size: 15.5px; font-weight: 700; letter-spacing: .05em; color: var(--text); }
.hband__news-title:hover { color: var(--teal); }
.hband__news-more { margin-left: auto; font-size: 13.5px; color: var(--teal); border-bottom: 1px solid var(--teal); padding-bottom: 1px; }

.hybrid {
  display: grid; grid-template-columns: 1fr 420px;
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--teal);
  border-radius: 4px; overflow: hidden;
}
.hybrid__hours { padding: 26px 34px 24px; }
.hybrid__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.hybrid__label { font-family: 'Shippori Mincho', serif; font-size: 19px; font-weight: 600; letter-spacing: .08em; color: var(--teal-dark); }
.hybrid__closed { font-size: 13px; color: var(--urgent); letter-spacing: .04em; }
.hybrid .hours-table { width: 100%; }
.hybrid .hours-table th { background: none; color: var(--text); font-weight: 700; font-size: 14px; padding: 9px 4px; border-bottom: 1px solid var(--border); }
.hybrid .hours-table td { font-size: 15px; padding: 11px 4px; border-bottom: 1px solid var(--border); }
.hybrid .hours-table .time-col { padding-left: 0; text-align: left; color: var(--text); letter-spacing: .04em; white-space: nowrap; }
.hybrid__note { font-size: 13px; color: var(--muted); margin-top: 12px; letter-spacing: .03em; }
.hybrid__note a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

.hybrid__cta { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 10px; padding: 26px 28px 24px; background: var(--off-white); border-left: 1px solid var(--border); }
.hybrid__cta .hybrid__label, .hybrid__tel, .hybrid__tel-note { grid-column: 1 / -1; }
.hybrid__cta .hybrid__label { margin-bottom: 2px; }
.hybrid__btn {
  display: flex; flex-direction: column; gap: 2px; position: relative;
  padding: 14px 16px 12px; border: 1px solid var(--teal-mid); border-radius: 3px;
  background: var(--white); color: var(--teal-dark); text-decoration: none; transition: background .2s;
}
.hybrid__btn::after { content: "›"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 18px; line-height: 1; opacity: .7; }
.hybrid__btn:hover { background: var(--teal-light); }
.hybrid__btn--primary { background: var(--teal); border-color: var(--teal); color: var(--white); }
.hybrid__btn--primary:hover { background: var(--teal-xdark); }
.hybrid__btn-main { font-size: 15.5px; font-weight: 700; letter-spacing: .04em; }
.hybrid__btn-sub { font-size: 12px; opacity: .85; }
.hybrid__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.hybrid__tel { margin-top: 6px; font-size: 26px; font-weight: 500; letter-spacing: .05em; color: var(--teal); line-height: 1.2; }
.hybrid__tel a { color: inherit; }
.hybrid__tel-label { font-size: 13px; margin-right: 3px; }
.hybrid__tel-note { font-size: 12px; color: var(--muted); }

/* ═══ 15. 下層ページ共通（v11スタイルを全ページへ） ═══════════ */
/* ページヒーロー：左上からのぼかし + 線付きラベル */
.page-hero, .en-page-hero { position: relative; overflow: hidden; }
.page-hero::before, .en-page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  background: linear-gradient(135deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 55%);
  -webkit-mask-image: linear-gradient(135deg, #000 0%, rgba(0,0,0,.7) 25%, transparent 62%);
          mask-image: linear-gradient(135deg, #000 0%, rgba(0,0,0,.7) 25%, transparent 62%);
}
.page-hero > *, .en-page-hero > * { position: relative; z-index: 1; }
.page-hero__kicker, .en-page-hero__kicker {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 12px; letter-spacing: .2em; color: rgba(255,255,255,.92);
}
.page-hero__kicker::before, .page-hero__kicker::after,
.en-page-hero__kicker::before, .en-page-hero__kicker::after { content: ""; width: 40px; height: 1px; background: rgba(255,255,255,.75); }
.page-hero__title, .en-page-hero__title { letter-spacing: .08em; text-shadow: 0 2px 14px rgba(0,30,70,.3); }

/* 見出し：明朝・青、下線 + 短いアクセント線 */
.page-section__title, .en-section h2, .related-links__title, .en-contents__title {
  position: relative; border-left: 0; padding-left: 0; padding-bottom: 12px;
  border-bottom: 1px solid var(--border); font-size: 22px; letter-spacing: .06em; color: var(--teal-dark);
}
.page-section__title::after, .en-section h2::after, .related-links__title::after, .en-contents__title::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 56px; height: 2px; background: var(--teal);
}
.related-links__title { margin-bottom: 14px; }
.page-section__sub, .en-section h3 { padding-left: 12px; border-left: 2px solid var(--teal); line-height: 1.5; }

/* リード・囲み */
.page-lead { border-radius: 0; border-left-width: 3px; }
.info-box { border-radius: 4px; border-width: 1px; border-left: 3px solid var(--teal); }
.warn-box { border-radius: 4px; border-width: 1px; border-left: 3px solid var(--urgent); }
.green-box { border-radius: 4px; }
.toc { border-radius: 4px; border-width: 1px; border-top: 3px solid var(--teal); background: var(--white); }
.author-box, .en-author { border-radius: 4px; border-width: 1px; border-top: 3px solid var(--teal); }
.author-box__img, .en-author__photo { border-radius: 2px; }
.page-table th, .page-table td { border-color: var(--border); }

/* ボタン・カード */
.ra-link-btn, .en-btn, .clinic-info-box__btn, .share-btn { border-radius: 3px; border-width: 1px; }
.ra-link-btn:hover, .en-btn--primary:hover, .en-btn--outline:hover { transform: none; }
.cat-nav__card, .en-card, .drug-card, .contact-card { border-radius: 4px; border-width: 1px; }
.cat-nav__card:hover, .en-card:hover { transform: none; }
.related-links__grid a { border-radius: 3px; border-width: 1px; }

/* 予約ブロック：白カード + 上辺ライン（トップの予約カードと同じ考え方） */
.visit-cta-block, .en-cta {
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--teal);
  border-radius: 4px;
}
.visit-cta-block__title, .en-cta__title { color: var(--teal-dark); font-size: 20px; letter-spacing: .06em; }
.visit-cta-block__sub, .en-cta__sub { color: var(--text); }
.visit-cta-block__hours, .en-cta__hours { color: var(--muted); }
.visit-cta-block__btn, .en-cta__btn { border-radius: 3px; font-weight: 700; letter-spacing: .04em; }
.visit-cta-block__btn:hover, .en-cta__btn:hover { transform: none; }
.visit-cta-block__btn--primary, .en-cta__btn--primary { background: var(--teal); color: var(--white); border: 1px solid var(--teal); }
.visit-cta-block__btn--primary:hover, .en-cta__btn--primary:hover { background: var(--teal-xdark); }
.visit-cta-block__btn--tel, .en-cta__btn--tel { background: var(--white); color: var(--teal-dark); border: 1px solid var(--teal-mid); }
.visit-cta-block__btn--tel:hover, .en-cta__btn--tel:hover { background: var(--teal-light); }

/* 下層ページ固有パーツの角丸をシャープ寄りに（自動抽出） */
.btn3 a,
.clinic-info-box__btn,
.contact-card__mail-btn,
.distant-box__btn,
.dr-link-btn,
.en-cta__btn,
.en-section .en-btn,
.error-page__btn-primary,
.error-page__btn-secondary,
.month-navi__btn,
.ra-link-btn,
.related-links__grid a,
.share-btn,
.visit-cta-block__btn { border-radius: 3px; }
.author-box,
.belongings-card,
.belongings-note,
.cat-nav__card,
.check-list li,
.check-list-warn li,
.clinic-info-box,
.column-row__card,
.concurrent-box,
.contact-card,
.distant-box,
.dr-section,
.drug-card,
.drug-section-card,
.en-access-map,
.en-author,
.en-card,
.en-cta,
.en-drinfo,
.error-page__links,
.faq-item,
.feature-item,
.food-card,
.green-box,
.hours-table-wrap,
.info-box,
.motto-block,
.motto-card,
.motto-stat,
.news-list,
.page-infographic,
.patient-quick-link,
.policy-block,
.prevention-item,
.renkei-card,
.sch-wrap,
.schedule-notice,
.shokuji-card,
.shokuji-card__effect,
.step-item,
.symptom-card,
.toc,
.video-card,
.visit-cta-block,
.visit-timing-card,
.warn-box,
.yoyaku-nashi-box { border-radius: 4px; }
.access-route,
.en-lead,
.en-section blockquote,
.en-section dl.faq dt,
.en-urgent,
.page-lead,
.reference-box,
.video-section__lead { border-radius: 0 4px 4px 0; }
.access-step img,
.author-box__img,
.chart-grid img,
.check-with-img__photo,
.column-row__illust,
.column-row__tag,
.concurrent-pair,
.dr-photo-wrap,
.en-author__photo,
.en-drinfo__photo,
.flow-step__badge,
.kiki-img-item,
.kiki-img-single,
.news-tag,
.treatment-era__badge { border-radius: 2px; }

/* ── レスポンシブ ─────────────────────────────── */
@media (max-width: 1200px) {
  .hinfo { margin-left: 12px; }
  .hinfo__btn { width: 58px; font-size: 11px; }
  .nav__link { padding: 0 9px; }
}
@media (max-width: 1100px) {
  .nav__item--hide-md { display: none; }
  .nav__link { padding: 0 8px; font-size: 14.5px; }
  .nav__cta { padding: 12px 20px !important; margin-left: 8px; }
  .hinfo { margin-left: 10px; }
  .hinfo__btn { width: auto; padding: 6px 7px; font-size: 10px; white-space: nowrap; }
  .logo__ja { font-size: 16px; }
  .header__inner { padding: 0 16px; }
}
@media (max-width: 1100px) {
  .hero2-bar__inner { grid-template-columns: 1fr 480px; gap: 28px; }
  .hero2-hours { padding: 28px 28px 24px; }
  .treat-grid { grid-template-columns: repeat(3, 1fr); }
  .treat-card:nth-child(3) { border-right: 0; }
  .treat-card:nth-child(n+4) { border-top: 1px solid var(--border); }
  .reserve__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hinfo { display: none; }
  .hybrid { grid-template-columns: 1fr; }
  .hybrid__cta { border-left: 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; }
  .hybrid__cta .hybrid__label, .hybrid__tel, .hybrid__tel-note { grid-column: 1 / -1; }
  .hero2-bar__inner { grid-template-columns: 1fr; gap: 0; }
  .hero2-hours { margin: -80px 0 0; order: -1; }
  .hero2-bar__inner > .hero2-hours, .hero2-bar__inner > .today-notice, .hero2-bar__inner > .hero2-news { grid-column: auto; grid-row: auto; }
  .today-notice { order: -2; margin: 16px 0 0; }
  .hero2-bar__inner:has(> .today-notice:not([hidden])) > .hero2-hours { margin-top: 16px; }
  .hero2-news { padding: 22px 0 28px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .urgent-block { grid-template-columns: 1fr; }
  .urgent-block__hdr { flex-direction: row; align-items: baseline; gap: 14px; padding: 16px 20px; border-right: 0; border-bottom: 1px solid var(--urgent-mid); font-size: 17px; }
  .urgent-block__list { padding: 4px 20px; }
  .patient-info-grid { grid-template-columns: 1fr; }
  .patient-info-grid > .patient-info-card:nth-child(n) { grid-column: auto; grid-row: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reserve__inner { grid-template-columns: 1fr; gap: 28px; }
  .hpanel__inner { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  body { padding-bottom: 60px; }
  /* Q&Aチャット（satfaq）のアイコンを下部バーの上に移動 */
  #satfaq-widget-icon {
    bottom: calc(60px + 14px + env(safe-area-inset-bottom, 0px)) !important;
    top: auto !important;
  }
  .hband { padding: 0 12px 40px; }
  .hband__news { gap: 6px 14px; padding: 18px 0; margin-bottom: 20px; }
  .hband__news-label { padding-right: 14px; }
  .hband__news-title { flex-basis: 100%; font-size: 15px; }
  .hband__news-more { margin-left: 0; }
  .hybrid__hours { padding: 20px 16px 18px; }
  .hybrid .hours-table th, .hybrid .hours-table td { font-size: 12.5px; padding: 9px 2px; }
  .hybrid__cta { display: none; }
  .float-cta { display: none; }
  .pc-only { display: none; }
  .hero2 { min-height: 520px; }
  .hero2__copy { padding: 48px 18px 100px; }
  .hero2__title { letter-spacing: .06em; }
  .hero2__since { font-size: 14px; margin-bottom: 20px; }
  .hero2__btns { flex-direction: column; align-items: stretch; }
  .hero2-bar__inner { padding: 0 12px; }
  .hero2-hours { padding: 22px 16px 20px; margin-top: -64px; }
  .hero2-hours .hours-table th, .hero2-hours .hours-table td { font-size: 12.5px; padding: 9px 2px; }
  .hero2-hours__tel { font-size: 26px; }
  .hero2-hours__btns { gap: 6px; }
  .hero2-hours__btn-main { font-size: 13.5px; letter-spacing: .02em; }
  .hero2-hours__btn-sub { font-size: 10.5px; }
  .hero2__so { padding: 10px 12px; }
  .hero2__so-text { font-size: 13.5px; }
  .hero2-news { gap: 6px 14px; }
  .today-notice { grid-template-columns: 1fr; padding: 14px 16px; }
  .today-notice__label { grid-row: auto; justify-self: start; }
  .today-notice__text { font-size: 15px; }
  .hero2-news__label { padding-right: 14px; }
  .treat-grid { grid-template-columns: repeat(2, 1fr); }
  .treat-card { padding: 30px 8px 26px; border-top: 1px solid var(--border); }
  .treat-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .treat-card:nth-child(even) { border-right: 0; }
  .treat-card:nth-child(-n+2) { border-top: 0; }
  .treat-card:last-child { grid-column: 1 / -1; border-right: 0; }
  .treat-card__icon svg { width: 72px; height: 72px; }
  .treat-card__name { font-size: 15px; margin-top: 14px; }
  .section__title { font-size: 24px; }
  .section__lead { font-size: 15px; margin-bottom: 32px; }
  .section__more { font-size: 15px; margin-right: 18px; }
  .section__more::after { width: 64px; height: 64px; right: -26px; }
  .feature-card__num { font-size: 48px; }
  .reserve { padding: 48px 12px; }
  .reserve__card { padding: 28px 18px; }
  .reserve__grid { grid-template-columns: 1fr; }
  .reserve__tel-num { font-size: 28px; }
  .footer__inner { grid-template-columns: 1fr; }
  .urgent-block__item { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; font-size: 14.5px; }
  .notice-item, .notice-item:not(:has(> .notice-item__date)) { grid-template-columns: auto 1fr; gap: 6px 12px; padding: 14px 2px; }
  .notice-item__date { grid-column: 1; }
  .notice-item .ntag { grid-column: 2; }
  .notice-item:not(:has(> .notice-item__date)) .ntag { grid-column: 1; }
  .notice-item__text { grid-column: 1 / -1; font-size: 14.5px; }
  .notice-item:not(:has(> .notice-item__date)) .notice-item__text { grid-column: 2; }
  .tab-btn { padding: 11px 14px 10px; font-size: 14px; }
  .patient-info-card { padding: 24px 20px; }
  .patient-info__contact-row { grid-template-columns: 1fr; }
  .patient-info__contact-item + .patient-info__contact-item { border-left: 0; border-top: 1px solid var(--border); }
  .section__header { margin-bottom: 28px; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .photo-marquee__item { width: 280px; }
  .photo-marquee { margin-top: 40px; }
  .reserve { padding: 44px 16px; }
  .reserve__grid { grid-template-columns: 1fr; }
  /* パネルはボトムシートとして表示 */
  .hpanel {
    position: fixed; top: auto; bottom: 60px; left: 0; right: 0;
    max-height: calc(100% - 140px); overflow-y: auto;
    border-radius: 6px 6px 0 0; border-top: 0;
    box-shadow: 0 -12px 32px rgba(13,82,168,.18);
    z-index: 190;
  }
  .hpanel__inner { padding: 22px 16px 24px; }
  .hpanel__tel { font-size: 24px; }
}
