/* おおたにクリニック - 共通スタイル */

:root {
  /* Colors */
  --primary: #5a8c5a;
  --primary-dark: #3d5a3d;
  --primary-light: #a8c894;
  --sage: #d4e4c8;
  --sage-bg: #eef3e6;
  --warm: #e8a87c;
  --warm-light: #f5d6b8;
  --pink: #f5b8a8;
  --bg: #faf7f0;
  --card: #ffffff;
  --text: #3a3a35;
  --text-light: #5a5a52; /* WCAG AA 準拠に引き上げ (旧 #6a6a60) */
  --border: #e8e4d8;
  --max-w: 1080px;

  /* Spacing scale (8の倍数 + 中間4) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;

  /* Radius scale (3段階) */
  --radius-sm: 8px;   /* バッジ・タグ・小ボタン */
  --radius-md: 14px;  /* カード・標準 */
  --radius-lg: 20px;  /* 大バナー・ヒーロー */

  /* Shadow scale */
  --shadow-sm: 0 2px 8px rgba(60, 90, 60, 0.08);
  --shadow-md: 0 4px 16px rgba(60, 90, 60, 0.10);
  --shadow-lg: 0 12px 32px rgba(60, 90, 60, 0.20);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Zen Maru Gothic", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.9;
  font-size: 18.5px;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ─── HEADER / NAV ───────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.logo-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.logo-text-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.logo-text-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 3px;
}
.site-nav {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
}
.site-nav a {
  font-size: 15.5px;
  padding: 9px 12px;
  border-radius: 20px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.site-nav a.is-active {
  background: var(--sage);
  color: var(--primary-dark);
  font-weight: 700;
}
.tel-btn {
  margin-left: 6px;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 32px;
  font-size: 15.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.tel-btn:hover { background: var(--primary-dark); opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 26px;
  color: var(--primary-dark);
}

@media (max-width: 1040px) {
  .header-inner { padding: 12px 16px; }
  .logo-text-name { font-size: 17px; }
  .logo-text-sub { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 24px 80px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-size: 17px; padding: 16px 18px; border-radius: 14px; }
  .tel-btn { margin: 16px 0 0; justify-content: center; padding: 18px; font-size: 17px; }
}

/* ─── FOOTER ───────────────────────────── */
.site-footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 52px 0 28px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.6fr;
  gap: 48px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .name { font-size: 18px; font-weight: 700; }
.footer-addr { font-size: 15.5px; line-height: 1.95; opacity: 0.88; }
.footer-col-label {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; font-size: 16.5px; line-height: 2.05; }
.footer-col a { opacity: 0.92; }
.footer-col a:hover { opacity: 1; }
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  font-size: 14.5px;
  opacity: 0.7;
  text-align: center;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-right { gap: 24px; }
}
@media (max-width: 440px) {
  .footer-right { grid-template-columns: 1fr; }
}

/* ─── SECTION TITLE (左:日本語大 ／ 右:英語小) ─── */
.section-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin: 0;
}
.section-title h2 {
  order: 1;
  font-size: 34px;
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.section-title .line {
  order: 2;
  height: 1px;
  flex: 1;
  background: var(--primary-light);
  opacity: 0.5;
  align-self: center;
  margin-top: 0.5em; /* ベースラインに対する見た目の中央寄せ補正 */
}
.section-title .eyebrow {
  order: 3;
  font-size: 13.5px;
  letter-spacing: 0.25em;
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .section-title { gap: 14px; }
  .section-title h2 { font-size: 25px; }
  .section-title .eyebrow { font-size: 11px; letter-spacing: 0.2em; }
}

/* ─── PAGE INTRO (about/news/compliance) ─── */
.page-intro {
  padding: 56px 0 38px;
  background: var(--sage-bg);
  position: relative;
  overflow: hidden;
}
.page-intro .eyebrow {
  font-size: 14.5px;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 700;
}
.page-intro h1 {
  font-size: 44px;
  margin: 12px 0 16px;
  color: var(--primary-dark);
  font-weight: 700;
}
.page-intro .lead {
  font-size: 18px;
  color: var(--text-light);
  line-height: 2;
  max-width: 760px;
}
.page-intro .leaf {
  position: absolute;
  right: 30px;
  top: 30px;
  opacity: 0.4;
}
@media (max-width: 600px) {
  .page-intro { padding: 44px 0 30px; }
  .page-intro h1 { font-size: 32px; }
  .page-intro .lead { font-size: 16px; }
  .page-intro .leaf { right: 16px; top: 16px; transform: scale(0.7); }
}

/* ─── HOME: HERO COVER (Facebookプロフィール風) ─── */
.hero-cover {
  position: relative;
  width: 100%;
  min-height: 560px;
  height: 70vh;
  max-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-cover-slides {
  position: absolute;
  inset: 0;
}
.hero-cover-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-cover-slide.is-active { opacity: 1; }
.hero-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-cover-fallback {
  position: absolute;
  inset: 0;
  z-index: -1; /* 画像が読み込まれていれば隠れる */
}
/* 画像が無いときに見えるグラデーション (緑×空) */
.hero-cover-fallback-1 {
  background:
    radial-gradient(ellipse at 30% 80%, rgba(90, 140, 90, 0.5), transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(216, 232, 240, 0.7), transparent 60%),
    linear-gradient(180deg, #b8d4ea 0%, #d6e8d4 55%, #5a8c5a 100%);
}
.hero-cover-fallback-2 {
  background: linear-gradient(135deg, #d4e4c8 0%, #faf7f0 50%, #f5d6b8 100%);
}
.hero-cover-fallback-3 {
  background: linear-gradient(135deg, #d8e8f0 0%, #faf7f0 60%, #d4e4c8 100%);
}
.hero-cover-fallback-4 {
  background: linear-gradient(135deg, #f0e0d4 0%, #faf7f0 60%, #a8c894 100%);
}
/* 画像が表示されているスライドではフォールバックを隠す */
.hero-cover-slide:has(img.hero-cover-img:not([style*="display: none"])) .hero-cover-fallback { display: none; }

/* テキスト可読性のためのオーバーレイ */
.hero-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* 装飾の葉っぱ */
.hero-cover-leaf-1 {
  position: absolute;
  top: 30px;
  right: 5%;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}
.hero-cover-leaf-2 {
  position: absolute;
  bottom: 50%;
  left: 3%;
  z-index: 2;
  opacity: 0.7;
}

/* メインコンテンツ */
.hero-cover-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 0 56px;
  color: #fff;
}
.hero-cover-content .hero-tag {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  margin-bottom: 22px;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.hero-cover-title {
  font-size: 52px;
  line-height: 1.4;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
}
.hero-cover-title .accent {
  color: #ffe9a8;
}
.hero-cover-lead {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.95;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  max-width: 680px;
}
.hero-cover-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-cover {
  padding: 16px 30px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  color: var(--primary-dark) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
}
.btn-cover:hover { opacity: 0.92; transform: translateY(-2px); transition: all 0.2s; }
.btn-cover-ghost {
  padding: 16px 26px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}
.btn-cover-ghost:hover { background: rgba(255, 255, 255, 0.22); opacity: 1; }

/* スライドインジケーター (画面下端) */
.hero-cover-indicators {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-cover-indicators span {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  transition: all 0.4s;
}
.hero-cover-indicators span.is-active {
  width: 28px;
  background: #fff;
}

@media (max-width: 920px) {
  .hero-cover { min-height: 480px; height: 64vh; }
  .hero-cover-title { font-size: 38px; }
  .hero-cover-lead { font-size: 16px; }
  .hero-cover-content { padding-bottom: 64px; }
}
@media (max-width: 600px) {
  .hero-cover { min-height: 440px; height: 70vh; }
  .hero-cover-title { font-size: 30px; line-height: 1.45; }
  .hero-cover-lead { font-size: 15px; line-height: 1.85; }
  .hero-cover-content .hero-tag { font-size: 12px; padding: 5px 12px; margin-bottom: 16px; }
  .btn-cover, .btn-cover-ghost { padding: 13px 22px; font-size: 14.5px; }
  .hero-cover-leaf-1 { width: 80px; height: 80px; }
  .hero-cover-leaf-2 { display: none; }
  .hero-cover-content { padding-bottom: 56px; }
}

/* ─── (旧 HERO grid layout — 念のため残置、現在は未使用) ─── */
.hero {
  position: relative;
  padding: 64px 0 44px;
  background: linear-gradient(180deg, var(--sage-bg) 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero .leaf-1 { position: absolute; top: 20px; right: 30px; opacity: 0.5; }
.hero .leaf-2 { position: absolute; bottom: 20px; left: 20px; opacity: 0.4; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
}
.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border-radius: 20px;
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid var(--primary-light);
}
.hero h1 {
  font-size: 44px;
  line-height: 1.45;
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero h1 .accent { color: var(--warm); }
.hero p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 2.05;
  margin-top: 20px;
}
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  padding: 14px 26px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.btn-primary {
  background: var(--primary);
  color: #fff !important;
}
.btn-secondary {
  background: #fff;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
}
.btn:hover { opacity: 0.85; }

/* Hero slideshow */
.hero-slideshow {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(60, 90, 60, 0.18);
  border: 4px solid #fff;
  background: var(--sage-bg);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slide-img + .emoji,
.hero-slide-img ~ .caption,
.hero-slide-img ~ .note { position: relative; z-index: 1; }
/* 画像があるときはエモジ/キャプションをやや暗いオーバーレイで読みやすく */
.hero-slide:has(img.hero-slide-img:not([style*="display: none"])) {
  background: rgba(0, 0, 0, 0.05);
}
.hero-slide:has(img.hero-slide-img:not([style*="display: none"])) .emoji { display: none; }
.hero-slide:has(img.hero-slide-img:not([style*="display: none"])) .caption {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  background: rgba(60, 90, 60, 0.55);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hero-slide:has(img.hero-slide-img:not([style*="display: none"])) .note {
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.hero-slide .emoji { font-size: 96px; opacity: 0.55; }
.hero-slide .caption {
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.hero-slide .note {
  font-size: 11.5px;
  color: var(--text-light);
}
.hero-slide-1 { background: linear-gradient(135deg, var(--sage), #fff); }
.hero-slide-2 { background: linear-gradient(135deg, var(--warm-light), #fff); }
.hero-slide-3 { background: linear-gradient(135deg, #d8e8f0, #fff); }
.hero-slide-4 { background: linear-gradient(135deg, #f0e0d4, #fff); }
.slide-indicators {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.slide-indicators span {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(60, 90, 60, 0.3);
  transition: all 0.3s;
}
.slide-indicators span.is-active {
  width: 18px;
  background: var(--primary);
}
@media (max-width: 920px) {
  .hero { padding: 44px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 34px; }
  .hero-slideshow { width: 300px; height: 300px; }
  .hero-slide .emoji { font-size: 80px; }
  .hero .leaf-1, .hero .leaf-2 { transform: scale(0.7); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15.5px; }
}

/* ─── NEWS BAR (home) ───────────────────────────── */
.news-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.news-bar-inner {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.news-bar .badge {
  padding: 6px 16px;
  background: var(--warm);
  color: #fff;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 700;
  flex-shrink: 0;
}
.news-bar .date {
  font-size: 15.5px;
  color: var(--text-light);
  flex-shrink: 0;
  font-family: monospace;
}
.news-bar .title {
  font-size: 17px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-bar .more {
  margin-left: auto;
  font-size: 15.5px;
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .news-bar-inner { flex-wrap: wrap; gap: 10px; }
  .news-bar .title { font-size: 14px; white-space: normal; flex-basis: 100%; }
  .news-bar .more { margin-left: 0; }
}

/* ─── HOURS TABLE ───────────────────────────── */
.section {
  padding: 64px 0;
}
.section-sage { background: var(--sage-bg); }
.section-white { background: #fff; }

.hours-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 24px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 19px;
}
.hours-table thead { background: var(--sage-bg); }
.hours-table th {
  padding: 18px 8px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 19px;
}
.hours-table th:first-child {
  text-align: left;
  padding-left: 22px;
  font-size: 17px;
  font-weight: 600;
}
.hours-table th.holiday { color: var(--warm); }
.hours-table td {
  padding: 22px 8px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hours-table td:first-child {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  padding-left: 22px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.hours-table tbody tr { border-top: 1px solid var(--border); }
.hours-table .off { color: #ccc; }
.hours-table .partial { color: var(--warm); }
.hours-legend {
  padding: 18px 22px;
  font-size: 15.5px;
  color: var(--text-light);
  background: #fafbf7;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  line-height: 1.8;
}
.hours-legend .mark-on { color: var(--primary); font-size: 19px; vertical-align: -2px; margin-right: 2px; }
.hours-legend .mark-partial { color: var(--warm); font-size: 19px; vertical-align: -2px; margin-right: 2px; }
.hours-note {
  margin-top: 18px;
  font-size: 17.5px;
  color: var(--text-light);
  line-height: 1.95;
}

@media (max-width: 600px) {
  .hours-table { font-size: 15px; }
  .hours-table th, .hours-table td { padding: 14px 4px; }
  .hours-table th { font-size: 15px; }
  .hours-table th:first-child { font-size: 13.5px; padding-left: 12px; }
  .hours-table td { font-size: 22px; padding: 16px 4px; }
  .hours-table td:first-child { font-size: 14px; padding-left: 12px; }
  .hours-legend { font-size: 13.5px; gap: 14px; padding: 14px 16px; }
  .hours-note { font-size: 14.5px; }
}

/* ─── CARE GRID ───────────────────────────── */
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.care-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.care-card .icon {
  width: 60px;
  height: 60px;
}
.care-card .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
}
.care-card .desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.9;
}
@media (max-width: 760px) {
  .care-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .care-grid { grid-template-columns: 1fr; }
}

/* ─── EQUIPMENT (医院紹介) ───────────────────────────── */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px;
}
.equipment-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.equipment-photo {
  aspect-ratio: 4 / 3;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.equipment-photo .emoji { font-size: 72px; opacity: 0.5; }
.equipment-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.equipment-photo:has(img.equipment-img:not([style*="display: none"])) .emoji { display: none; }
.equipment-photo:has(img.equipment-img:not([style*="display: none"])) .placeholder-note { display: none; }
.equipment-photo .placeholder-note {
  position: absolute;
  bottom: 12px;
  font-size: 11.5px;
  color: var(--text-light);
  letter-spacing: 0.1em;
}
.equipment-body { padding: 18px 20px 20px; }
.equipment-body .title {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 9px;
}
.equipment-body .desc {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.95;
}
@media (max-width: 760px) {
  .equipment-grid { grid-template-columns: 1fr; }
}

/* ─── MESSAGE (院長・理事長) ───────────────────────────── */
.message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 28px;
  position: relative;
}
.message-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  border: 1px solid var(--border);
}
.message-card .portrait {
  flex-shrink: 0;
}
.message-card .portrait img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage);
}
.message-card .body { min-width: 0; }
.message-card .who {
  font-size: 14px;
  color: var(--warm);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.message-card .name {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 3px;
}
.message-card .ruby {
  font-size: 14px;
  color: var(--text-light);
  margin-left: 8px;
  font-weight: 500;
}
.message-card .role {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 5px;
}
.message-card .quote {
  font-size: 16.5px;
  color: var(--text);
  line-height: 2;
  margin-top: 14px;
}
.message-card .read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
}
@media (max-width: 720px) {
  .message-grid { grid-template-columns: 1fr; }
  .message-card { padding: 22px 20px; }
  .message-card .portrait img { width: 84px; height: 84px; }
}

/* ─── ACCESS (home) ───────────────────────────── */
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin-top: 26px;
}
.access-map {
  background: var(--sage-bg);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 280px;
}
.access-map iframe, .access-map svg {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.access-info .row { margin-bottom: 18px; }
.access-info .label {
  font-size: 14.5px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.access-info .value {
  font-size: 17.5px;
  margin-top: 6px;
  line-height: 1.9;
}
.parking-list {
  margin-top: 12px;
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.95;
  padding-left: 18px;
}
.parking-list li { margin-bottom: 3px; }
@media (max-width: 720px) {
  .access-grid { grid-template-columns: 1fr; }
  .access-map { min-height: 240px; aspect-ratio: 4 / 3; }
}

/* ─── ABOUT page ───────────────────────────── */
.profile-block { padding: 56px 0; }
.profile-block.bg-white { background: #fff; }
.profile-row {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.profile-row.reverse { flex-direction: row-reverse; }
.profile-photo {
  flex-shrink: 0;
  text-align: center;
  width: 260px;
}
.profile-photo .frame {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--sage-bg);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-photo .who {
  margin-top: 14px;
  font-size: 13px;
  color: var(--warm);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.profile-photo .name {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 3px;
}
.profile-photo .ruby {
  font-size: 14.5px;
  color: var(--text-light);
  margin-top: 4px;
}
.profile-photo .role {
  font-size: 14.5px;
  color: var(--text-light);
  margin-top: 8px;
}
.profile-body { flex: 1; min-width: 0; }
.profile-body .headline {
  font-size: 23px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.6;
  margin: 0 0 18px;
}
.profile-body .sub-headline {
  display: block;
  color: var(--warm);
  font-size: 17px;
  margin-top: 6px;
}
.profile-body p {
  font-size: 17.5px;
  line-height: 2.05;
  color: var(--text);
  margin: 0 0 16px;
}
@media (max-width: 720px) {
  .profile-row, .profile-row.reverse { flex-direction: column; gap: 24px; }
  .profile-photo { width: 100%; }
  .profile-photo .frame { width: 200px; height: 200px; }
}

/* History timeline */
.history-list {
  margin-top: 28px;
  padding-left: 26px;
  border-left: 2px solid var(--primary-light);
}
.history-item {
  margin-bottom: 26px;
  position: relative;
}
.history-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--primary-light);
}
.history-item .year {
  font-size: 14.5px;
  color: var(--warm);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.history-item .title {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 4px;
}
.history-item .desc {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.95;
}

/* Network (連携病院) */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.network-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
}
.network-card .tag {
  font-size: 13.5px;
  color: var(--warm);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.network-card .name {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 6px;
  line-height: 1.55;
}
.network-note {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 18px;
  line-height: 1.9;
}
@media (max-width: 720px) {
  .network-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .network-grid { grid-template-columns: 1fr; }
}

/* ─── HOME CARE (在宅医療の対象) ───────────────────────────── */
.homecare-intro {
  font-size: 18px;
  line-height: 2.05;
  color: var(--text);
  margin-top: 20px;
  max-width: 800px;
}
.homecare-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.homecare-list li {
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px 18px 54px;
  font-size: 16.5px;
  color: var(--text);
  position: relative;
}
.homecare-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homecare-cta {
  margin-top: 26px;
  font-size: 17px;
  color: var(--text);
  background: var(--sage-bg);
  border-radius: 14px;
  padding: 20px 24px;
  line-height: 1.95;
}
.homecare-cta strong { color: var(--primary-dark); }
@media (max-width: 600px) {
  .homecare-list { grid-template-columns: 1fr; }
}

/* ─── NEWS LIST ───────────────────────────── */
.news-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 0;
}
.news-filter button {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 15.5px;
  font-weight: 600;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
}
.news-filter button.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.news-list { margin-top: 18px; }
.news-item {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border);
}
.news-item .date {
  font-size: 15px;
  color: var(--text-light);
  font-family: monospace;
}
.news-item .cat {
  font-size: 13.5px;
  padding: 6px 14px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cat-kyushin { background: var(--warm); color: #fff; }
.cat-info { background: var(--sage); color: var(--primary-dark); }
.cat-yobou { background: #a8d4d4; color: var(--primary-dark); }
.cat-column { background: var(--primary-light); color: var(--primary-dark); }
.news-item .body .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.55;
}
.news-item .body .summary {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.85;
}
.news-item .arrow {
  font-size: 22px;
  color: var(--primary);
}
@media (max-width: 720px) {
  .news-item {
    grid-template-columns: auto auto;
    grid-template-areas:
      "date cat"
      "body body";
    gap: 8px 12px;
  }
  .news-item .date { grid-area: date; }
  .news-item .cat { grid-area: cat; justify-self: start; }
  .news-item .body { grid-area: body; }
  .news-item .arrow { display: none; }
}

.cms-note {
  margin: 30px 0 48px;
  padding: 24px 26px;
  background: #fff8ec;
  border: 1px dashed var(--warm);
  border-radius: 14px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #7a5a3a;
}
.cms-note .label {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--warm);
  font-size: 17px;
}
.cms-note code {
  background: rgba(232, 168, 124, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}

/* ─── COMPLIANCE ───────────────────────────── */
.toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 16px;
  margin-top: 30px;
}
.toc .label { color: var(--text-light); font-weight: 600; }
.toc a { color: var(--primary); font-weight: 600; }
.toc .sep { color: var(--text-light); }

.compliance-group {
  margin-top: 44px;
}
.compliance-group .head {
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 20px;
}
.compliance-group .head h2 {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}
.compliance-group .head .sub {
  font-size: 14.5px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.7;
}

details.compliance-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px 24px;
  margin-bottom: 12px;
}
details.compliance-item > summary {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
}
details.compliance-item > summary::-webkit-details-marker { display: none; }
details.compliance-item > summary .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 800;
  flex-shrink: 0;
}
details.compliance-item > summary .toggle {
  margin-left: auto;
  font-size: 20px;
  color: var(--text-light);
  font-weight: 500;
  transition: transform 0.2s;
}
details.compliance-item[open] > summary .toggle { transform: rotate(45deg); }
details.compliance-item .item-body {
  margin-top: 14px;
  padding-left: 40px;
  font-size: 17px;
  line-height: 2.1;
  color: var(--text);
}
details.compliance-item .item-body p {
  margin: 0 0 8px;
  position: relative;
  padding-left: 16px;
}
details.compliance-item .item-body p::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--primary);
}
details.compliance-item .item-body table {
  border-collapse: collapse;
  width: 100%;
  margin: 10px 0;
  font-size: 15.5px;
}
details.compliance-item .item-body th,
details.compliance-item .item-body td {
  border: 1px solid var(--border);
  padding: 8px 12px;
  text-align: left;
  background: #fafbf7;
}
details.compliance-item .item-body th {
  background: var(--sage-bg);
  color: var(--primary-dark);
  font-weight: 700;
}

.compliance-notice {
  margin-top: 38px;
  background: var(--sage-bg);
  border-radius: 14px;
  padding: 24px 26px;
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--text);
}
.compliance-notice .label {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 18px;
}
.compliance-notice .meta {
  font-size: 14.5px;
  color: var(--text-light);
  display: block;
  margin-top: 14px;
  line-height: 1.85;
}

@media (max-width: 600px) {
  details.compliance-item { padding: 16px 20px; }
  details.compliance-item > summary { font-size: 15px; }
  details.compliance-item .item-body { padding-left: 0; font-size: 14px; }
  .compliance-group .head h2 { font-size: 19px; }
}

/* ─── CTAバナー (homecare上部の電話誘導など) ───────────────────────── */
.cta-banner-section { padding: 36px 0 0; }
.cta-banner {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(60, 90, 60, 0.1);
  border-top: 4px solid var(--primary);
  position: relative;
}
.cta-banner-lead {
  font-size: 17px;
  color: var(--text-light);
  margin: 0 0 12px;
  line-height: 1.7;
}
.cta-banner-action {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 10px;
  line-height: 1.5;
}
.cta-banner-text { white-space: nowrap; }
.cta-banner-tel {
  white-space: nowrap;
  font-size: 30px;
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 4px;
}
.cta-banner-tel:hover { color: var(--primary); opacity: 1; }
.cta-banner-tel-icon { font-size: 24px; opacity: 0.85; }

@media (max-width: 600px) {
  .cta-banner-section { padding: 28px 0 0; }
  .cta-banner { padding: 22px 18px; border-radius: 14px; }
  .cta-banner-lead { font-size: 15px; margin-bottom: 8px; }
  .cta-banner-action { font-size: 15.5px; gap: 4px 6px; }
  .cta-banner-tel { font-size: 24px; }
  .cta-banner-tel-icon { font-size: 20px; }
}
@media (max-width: 380px) {
  .cta-banner-tel { font-size: 22px; }
}

/* ─── 在宅医療ティーザー (ホームのB位置バナー) ───────────────────────── */
.homecare-teaser {
  display: flex;
  align-items: stretch;
  gap: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  padding: 38px 40px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px rgba(60, 90, 60, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.homecare-teaser:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(60, 90, 60, 0.28);
  opacity: 1;
}
.homecare-teaser-body { flex: 1; min-width: 0; }
.homecare-teaser-eyebrow {
  font-size: 13.5px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}
.homecare-teaser-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.homecare-teaser-title .accent {
  color: #ffe9a8;
}
.homecare-teaser-text {
  font-size: 16px;
  line-height: 1.95;
  margin: 0 0 18px;
  opacity: 0.95;
  max-width: 640px;
}
.homecare-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: 32px;
  font-size: 15.5px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.homecare-teaser-art {
  flex: 0 0 200px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 760px) {
  .homecare-teaser {
    flex-direction: column-reverse;
    padding: 32px 28px;
    gap: 18px;
  }
  .homecare-teaser-title { font-size: 26px; }
  .homecare-teaser-text { font-size: 15px; }
  .homecare-teaser-art { flex: 0 0 auto; max-width: 160px; }
  .homecare-teaser-art svg { width: 140px; height: 140px; }
}

/* ═══ しんぷる表示モード ═══════════════════════════════════════
   - 文字とボタンをさらに大きく
   - 不要な装飾セクションを非表示
   - 画面下部に固定の大きな電話ボタン
   ═══════════════════════════════════════════════════════════ */

/* モード切替ボタン (常時ヘッダー右側に表示) */
.mode-toggle {
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}
.mode-toggle:hover { background: var(--sage-bg); }
.mode-toggle[aria-pressed="true"] {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.mode-toggle-icon { font-size: 16px; }

@media (max-width: 920px) {
  .mode-toggle {
    padding: 6px 12px;
    font-size: 13px;
  }
  .mode-toggle-icon { font-size: 14px; }
}
@media (max-width: 480px) {
  .mode-toggle .mode-toggle-label { display: none; }
  .mode-toggle { padding: 8px 12px; }
  .mode-toggle-icon { font-size: 18px; }
}

/* ─── しんぷる表示有効時 ─── */
body.mode-simple { font-size: 21px; line-height: 2; }

/* 非表示にする装飾セクション */
body.mode-simple .simple-hide { display: none !important; }

/* ヒーローカバーを少しコンパクトに、CTAを電話中心に */
body.mode-simple .hero-cover {
  min-height: 420px;
  height: 50vh;
  max-height: 540px;
}
body.mode-simple .hero-cover-title { font-size: 38px; line-height: 1.5; }
body.mode-simple .hero-cover-lead { font-size: 17px; }
body.mode-simple .hero-cover-cta { gap: 14px; }
body.mode-simple .btn-cover {
  padding: 18px 32px;
  font-size: 19px;
  border-radius: 32px;
}
body.mode-simple .btn-cover-ghost {
  padding: 18px 28px;
  font-size: 19px;
  border-radius: 32px;
}

/* ナビは必要最小限に絞る */
body.mode-simple .site-nav a[href*="compliance"],
body.mode-simple .footer-col,
body.mode-simple .news-filter,
body.mode-simple .cms-note { display: none; }

/* お知らせバーは大きく、目立つカード型に */
body.mode-simple .news-bar { padding: 8px 0; background: #fff8ec; }
body.mode-simple .news-bar-inner {
  flex-wrap: wrap;
  padding: 22px 0;
  gap: 14px;
}
body.mode-simple .news-bar .badge {
  font-size: 17px;
  padding: 8px 18px;
}
body.mode-simple .news-bar .date { font-size: 18px; }
body.mode-simple .news-bar .title {
  font-size: 20px;
  white-space: normal;
  flex-basis: 100%;
  line-height: 1.7;
}
body.mode-simple .news-bar .more {
  font-size: 18px;
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 20px;
  margin-left: 0;
}

/* セクション全体の余白を広げる */
body.mode-simple .section { padding: 56px 0; }

/* セクション見出しを大きく */
body.mode-simple .section-title h2 { font-size: 36px; }
body.mode-simple .section-title .eyebrow { font-size: 16px; }

/* 診療時間表をさらに大きく見やすく */
body.mode-simple .hours-table { font-size: 22px; }
body.mode-simple .hours-table th { font-size: 22px; padding: 22px 8px; }
body.mode-simple .hours-table th:first-child { font-size: 19px; }
body.mode-simple .hours-table td { font-size: 34px; padding: 26px 8px; }
body.mode-simple .hours-table td:first-child {
  font-size: 21px;
  font-weight: 700;
}
body.mode-simple .hours-legend { font-size: 18px; padding: 22px 26px; gap: 28px; }
body.mode-simple .hours-legend .mark-on,
body.mode-simple .hours-legend .mark-partial { font-size: 22px; }
body.mode-simple .hours-note { font-size: 19px; }

/* 院長・理事長メッセージは短めに表示 (line-clamp) */
body.mode-simple .message-grid { gap: 32px; }
body.mode-simple .message-card { padding: 30px 28px; }
body.mode-simple .message-card .portrait img { width: 120px; height: 120px; }
body.mode-simple .message-card .name { font-size: 28px; }
body.mode-simple .message-card .who { font-size: 16px; }
body.mode-simple .message-card .ruby { font-size: 16px; }
body.mode-simple .message-card .role { font-size: 16px; }
body.mode-simple .message-card .quote {
  font-size: 19px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.mode-simple .message-card .read-more {
  font-size: 18px;
  background: var(--sage-bg);
  padding: 10px 18px;
  border-radius: 20px;
  margin-top: 14px;
}

/* アクセス情報を大きく */
body.mode-simple .access-info .label { font-size: 16.5px; }
body.mode-simple .access-info .value { font-size: 20px; line-height: 1.85; }
body.mode-simple .parking-list { font-size: 18px; }
body.mode-simple .access-map { min-height: 320px; }

/* プロフィール (ご挨拶ページ) の文字も大きく、写真も大きく */
body.mode-simple .profile-photo .frame { width: 200px; height: 200px; }
body.mode-simple .profile-photo .name { font-size: 28px; }
body.mode-simple .profile-photo .who { font-size: 16px; }
body.mode-simple .profile-photo .ruby { font-size: 17px; }
body.mode-simple .profile-photo .role { font-size: 17px; }
body.mode-simple .profile-body .headline { font-size: 26px; }
body.mode-simple .profile-body p { font-size: 20px; line-height: 2.1; }

/* お知らせ (news.html) を大きく */
body.mode-simple .news-item { padding: 28px 8px; }
body.mode-simple .news-item .date { font-size: 18px; }
body.mode-simple .news-item .cat { font-size: 16px; padding: 8px 16px; }
body.mode-simple .news-item .body .title { font-size: 22px; line-height: 1.55; }
body.mode-simple .news-item .body .summary { font-size: 18px; }

/* フッター */
body.mode-simple .site-footer { padding: 40px 0 24px; margin-top: 40px; }
body.mode-simple .footer-grid {
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}
body.mode-simple .footer-addr { font-size: 18px; }
body.mode-simple .footer-copy { font-size: 16px; }

/* 本文用のページ底部にスペースを確保 (固定電話バー分) */
body.mode-simple { padding-bottom: 96px; }

/* ─── 固定 大きな電話バー (画面下部) ─── */
.fixed-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none; /* 通常モードでは非表示 */
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  padding: 14px 16px;
}
body.mode-simple .fixed-call-bar { display: block; }
.fixed-call-bar-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.fixed-call-bar a {
  flex: 1;
  background: #fff;
  color: var(--primary-dark) !important;
  border-radius: 32px;
  padding: 18px 16px;
  font-size: 22px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.fixed-call-bar a:hover { opacity: 0.92; }
.fixed-call-bar a.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.85);
  flex: 0 0 auto;
  padding: 18px 22px;
  font-size: 18px;
}
.fixed-call-bar .icon { font-size: 26px; }
@media (max-width: 600px) {
  .fixed-call-bar a { font-size: 19px; padding: 16px 14px; }
  .fixed-call-bar a.secondary { font-size: 15.5px; padding: 14px 16px; }
  .fixed-call-bar .icon { font-size: 22px; }
}
