/* =============================================
   あつたの森歯科クリニック - スタイルシート
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;600&display=swap');

:root {
  --green-dark:    #3BAA7A;
  --green-main:    #5BBFA5;
  --green-mid:     #8DD4C0;
  --green-light:   #C0EAE0;
  --green-pale:    #FFFFFF;
  --white-warm:    #FFFFFF;
  --cream:         #FFF8F0;
  --peach-bg:      #FDEEE2;
  --butter-light:  #FCF5E2;
  --butter:        #F8E5B6;
  --butter-dark:   #E8C97A;
  --pink-light:    #FBE3E8;
  --pink:          #F4C9D2;
  --pink-main:     #E8A0B4;
  --pink-dark:     #C97A93;
  --blue-pale:     #F5FAFC;
  --blue-light:    #E5F1F7;
  --blue:          #BFDDE9;
  --blue-main:     #5FA3BD;
  --blue-dark:     #2C6A82;
  --accent-pale:   #EDF7F4;
  --text-dark:     #1F2D2A;
  --text-mid:      #4A6059;
  --text-light:    #93B0A8;
  --shadow:        rgba(59, 170, 122, 0.22);
  --shadow-strong: rgba(59, 170, 122, 0.30);
  --gold:          #C9A96E;
  --gold-dark:     #B5893A;
  --peach-light:   #FBE4D2;
  --peach:         #F4C9A8;
  --peach-main:    #E8A87C;
  --peach-dark:    #D48A5A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: var(--text-dark);
  background: var(--white-warm);
  line-height: 1.8;
  font-size: 15px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── ユーティリティ ── */
.section-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.9rem; font-weight: 600;
  color: var(--green-dark); letter-spacing: 0.05em;
}
#news .section-title { font-family: 'Noto Serif JP', serif; }
.section-subtitle {
  font-size: 0.8rem; letter-spacing: 0.18em;
  color: var(--pink-main); text-transform: uppercase; margin-bottom: 0.5rem;
}
.section-lead { color: var(--text-mid); font-size: 0.95rem; line-height: 2; }
.divider { width: 40px; height: 2px; background: var(--pink); margin: 1rem 0 1.5rem; }

/* =============================================
   ヘッダー
   ============================================= */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--green-pale);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px var(--shadow); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.logo-name {
  font-family: 'Noto Serif JP', serif; font-size: 1.05rem;
  font-weight: 600; color: #3BAA7A; letter-spacing: 0.05em;
}
.logo-sub { font-size: 0.68rem; color: #5BBFA5; letter-spacing: 0.12em; }
nav ul { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
nav a {
  font-size: 0.82rem; letter-spacing: 0.06em; color: var(--text-mid);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav a:hover, nav a.active { color: var(--green-dark); border-color: var(--green-mid); }
.nav-reserve {
  background: var(--gold); color: #fff !important; border: none !important;
  padding: 0.45rem 1.2rem !important; border-radius: 0; font-weight: 500;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-reserve:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all 0.3s; }

/* =============================================
   スライドショー（HOME）
   ============================================= */
/* 診療時間バー (HOME) */
.hours-bar {
  margin-top: 72px;
  background: #fff;
  color: var(--green-dark);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.hours-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}
.hours-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hours-bar-ico {
  width: 16px;
  height: 16px;
  opacity: 0.9;
  color: var(--gold);
}
.hours-bar-label {
  font-weight: 600;
  letter-spacing: 0.08em;
}
.hours-bar-time {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}
.hours-bar-closed-label {
  background: var(--pink-main);
  color: #fff;
  padding: 0.12rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 2px;
  margin-right: 0.4rem;
}
.hours-bar-sep {
  opacity: 0.4;
  font-weight: 300;
  color: var(--gold);
}
.hours-bar-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-dark);
  text-decoration: none;
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}
.hours-bar-tel:hover { opacity: 0.7; }

@media (max-width: 640px) {
  .hours-bar { font-size: 0.78rem; }
  .hours-bar-inner { padding: 0.5rem 1rem; gap: 0.5rem 0.85rem; }
  .hours-bar-label { font-size: 0.72rem; }
  .hours-bar-time { font-size: 0.85rem; }
  .hours-bar-tel { font-size: 0.9rem; }
  .hours-bar-sep { display: none; }
}

#slideshow {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px - 50px);
  overflow: hidden;
  background: var(--green-dark);
}
.slides-container { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--green-dark);
  transform: scale(1.04);
  transition: transform 7s ease;
}
.slide.active .slide-img { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20, 40, 28, 0.68) 0%, rgba(20, 40, 28, 0.25) 55%, transparent 100%);
  display: flex; align-items: center;
}
.slide-text {
  max-width: 1200px; margin: 0 auto; padding: 0 3rem;
  width: 100%;
}
.slide-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.22);
  border: 1px solid rgba(201, 169, 110, 0.6);
  color: #fff; font-size: 0.75rem; letter-spacing: 0.14em;
  padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.slide-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem; font-weight: 600; line-height: 1.55;
  color: #fff; margin-bottom: 1.25rem; letter-spacing: 0.04em;
}
.slide-title em { font-style: normal; color: var(--gold); }
.slide-desc {
  color: rgba(255, 255, 255, 0.85); font-size: 0.95rem;
  line-height: 2.1; margin-bottom: 2.5rem;
}
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: #fff;
  padding: 0.85rem 2rem; border-radius: 0;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.45);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201, 169, 110, 0.55); }
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.7); color: #fff;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.22); border-color: #fff; }
.slide-prev, .slide-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.18); backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3); color: #fff;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10;
}
.slide-prev { left: 1.5rem; }
.slide-next { right: 1.5rem; }
.slide-prev:hover, .slide-next:hover { background: rgba(255, 255, 255, 0.32); }
.slide-indicators {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 10;
}
.indicator {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.45); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s; padding: 0;
}
.indicator.active { background: #fff; transform: scale(1.4); }

/* =============================================
   ページヒーロー（内部ページ共通）
   ============================================= */
.page-hero {
  height: 260px; margin-top: 72px;
  position: relative; overflow: hidden;
  background: var(--green-dark);
  display: flex; align-items: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.page-hero-inner {
  position: relative; max-width: 1100px; margin: 0 auto;
  padding: 0 2rem; width: 100%;
}
.page-hero-sub {
  font-size: 0.78rem; letter-spacing: 0.2em; color: var(--green-light);
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.page-hero-title {
  font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 2.2rem;
  font-weight: 600; color: #fff; letter-spacing: 0.06em;
}
.breadcrumb {
  margin-top: 1rem; display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.78rem; color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.35); }

/* =============================================
   セクション共通
   ============================================= */
.section { padding: 100px 2rem; border-bottom: 1px solid rgba(59, 170, 122, 0.18); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .divider { margin: 1rem auto 1.5rem; }

/* =============================================
   お知らせ（HOME）
   ============================================= */
#news { background: var(--white-warm); }
.news-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.news-card {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.4rem 1.75rem;
  background: #fff;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: default;
}
.news-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateX(4px);
}
.news-card-meta {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem;
  min-width: 8rem; flex-shrink: 0;
}
.news-date {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.88rem; color: var(--gold-dark);
  letter-spacing: 0.05em; white-space: nowrap; line-height: 1;
}
.news-cat {
  display: inline-block; background: #fff; color: var(--pink-dark);
  border: 1px solid var(--pink);
  font-size: 0.68rem; padding: 0.15rem 0.65rem; border-radius: 0;
  white-space: nowrap; letter-spacing: 0.05em;
}
.news-divider {
  width: 1px; height: 2.5rem; background: rgba(201,169,110,0.3); flex-shrink: 0;
}
.news-card-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; flex: 1; }
.news-card-text a { color: var(--green-dark); }
.news-card-text a:hover { color: var(--gold-dark); }

/* =============================================
   来院からの流れ（HOME） — タブ形式
   ============================================= */
#flow { background: var(--green-pale); }

.flow-header-sub {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1rem; color: var(--green-mid);
  letter-spacing: 0.1em; margin-top: 0.25rem;
}

/* 初診ネット予約バー（HOMEセクション内） */
.initial-reserve-bar {
  background: #fff;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--pink-light);
}
.initial-reserve-bar--inline {
  max-width: 860px;
  margin: 0 auto 2rem;
  border: 1px solid var(--pink-light);
  padding: 1rem 1.5rem;
}
.initial-reserve-bar-cta {
  max-width: 860px;
  margin: 1rem auto 2.5rem;
  text-align: center;
}
.initial-reserve-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.initial-reserve-bar-text {
  display: flex; flex-direction: column;
}
.initial-reserve-bar-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem; letter-spacing: 0.18em;
  color: var(--pink-main); text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.initial-reserve-bar-title {
  font-size: 1.02rem; color: var(--green-dark);
  font-weight: 600; letter-spacing: 0.03em;
}
.initial-reserve-bar-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--pink-main); color: #fff;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(232, 160, 180, 0.35);
}
.initial-reserve-bar-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 160, 180, 0.45);
}
.initial-reserve-bar-btn-icon {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.initial-reserve-bar-btn-icon svg { width: 100%; height: 100%; }
.initial-reserve-bar-btn-arrow { margin-left: 0.2rem; }

/* 初めての方へ ご案内カード */
.fv-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  margin: 1.25rem 0;
  padding: 1.5rem 1.75rem;
  border-radius: 0;
  background: #fff;
}
.fv-card--pink {
  background: #FFF7F9;
  border-left: 4px solid var(--pink-main);
}
.fv-card--mint {
  background: var(--accent-pale);
  border-left: 4px solid var(--green-main);
}
.fv-card--butter {
  background: #FFFAF0;
  border-left: 4px solid var(--butter-dark);
}
.fv-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.fv-card-icon svg { width: 22px; height: 22px; }
.fv-card--pink .fv-card-icon { border: 1px solid var(--pink); }
.fv-card--mint .fv-card-icon { border: 1px solid var(--green-light); }
.fv-card--butter .fv-card-icon { border: 1px solid var(--butter); }
.fv-card-body { flex: 1; min-width: 0; }
.fv-card-body h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.fv-card--pink .fv-card-body h3 { color: var(--pink-dark); }
.fv-card--mint .fv-card-body h3 { color: var(--green-dark); }
.fv-card--butter .fv-card-body h3 { color: var(--butter-dark); }
.fv-card-body p {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.95; margin-bottom: 0.7rem;
}
.fv-card-body p:last-child { margin-bottom: 0; }
.fv-card-body ul.td-list {
  margin: 0.5rem 0 0.8rem;
}
.fv-card--pink ul.td-list li::before { background: var(--pink-main); }
.fv-card--mint ul.td-list li::before { background: var(--green-main); }
.fv-card--butter ul.td-list li::before { background: var(--butter-dark); }
@media (max-width: 700px) {
  .fv-card { flex-direction: column; padding: 1.25rem; gap: 0.85rem; }
  .fv-card-icon { width: 40px; height: 40px; font-size: 1.25rem; }
}

/* 滅菌・感染対策／設備紹介ページ カードのみブルー枠（背景は白） */
body.infection-page .fv-card--mint,
body.infection-page .fv-card--pink,
body.infection-page .fv-card--butter,
body.equipment-page .fv-card--mint,
body.equipment-page .fv-card--pink,
body.equipment-page .fv-card--butter {
  background: #fff;
  border: 1.5px solid var(--blue);
  border-left: 4px solid var(--blue);
}
body.infection-page .fv-card .fv-card-icon,
body.equipment-page .fv-card .fv-card-icon {
  border-color: var(--blue) !important;
}
body.infection-page .fv-card .fv-card-body h3,
body.equipment-page .fv-card .fv-card-body h3 {
  color: var(--green-dark) !important;
}

/* 初診ご案内ページの予約CTA */
.first-visit-cta {
  margin: 3rem 0 2.5rem;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 2px solid var(--pink-main);
  text-align: center;
}
.first-visit-cta-text {
  font-size: 0.95rem !important;
  color: var(--green-dark) !important;
  font-weight: 600;
  margin-bottom: 1rem !important;
}
.first-visit-cta-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--pink-main); color: #fff;
  padding: 1rem 2.25rem;
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(232, 160, 180, 0.35);
}
.first-visit-cta-btn:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 160, 180, 0.45);
}
.first-visit-cta-btn-icon {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.first-visit-cta-btn-icon svg { width: 100%; height: 100%; }
.first-visit-cta-note {
  font-size: 0.82rem !important;
  color: var(--text-mid) !important;
  margin-top: 1rem !important;
}
.first-visit-cta-note a {
  color: var(--green-dark); font-weight: 600;
  border-bottom: 1px solid var(--green-mid);
}
@media (max-width: 700px) {
  .initial-reserve-bar { padding: 0.85rem 1.25rem; }
  .initial-reserve-bar-inner { flex-direction: column; gap: 0.85rem; text-align: center; }
  .initial-reserve-bar-title { font-size: 0.92rem; }
  .initial-reserve-bar-btn { padding: 0.7rem 1.4rem; font-size: 0.88rem; width: 100%; justify-content: center; }
}

/* 女性歯科医師案内（テキストのみ・医院紹介） */
.female-doctor-text {
  text-align: center;
  max-width: 720px; margin: 0 auto 2.5rem;
}
.female-doctor-text h3 {
  font-size: 1.05rem; color: var(--pink-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.female-doctor-text p {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.85;
}

/* 女性歯科医師案内（HOME・アイコン付き／使用は撤去） */
.female-doctor-notice {
  display: flex; align-items: center; gap: 1rem;
  max-width: 820px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--pink-light);
  border-left: 3px solid var(--pink-main);
  padding: 1rem 1.4rem;
}
.female-doctor-notice-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pink-light);
  border-radius: 50%;
  padding: 6px;
}
.female-doctor-notice-icon svg { width: 100%; height: 100%; }
.female-doctor-notice-body { flex: 1; }
.female-doctor-notice-body h3 {
  font-size: 0.98rem; color: var(--pink-dark);
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
}
.female-doctor-notice-body p {
  font-size: 0.82rem; color: var(--text-mid);
  line-height: 1.7;
}
@media (max-width: 700px) {
  .female-doctor-notice { padding: 0.85rem 1rem; gap: 0.7rem; }
  .female-doctor-notice-icon { width: 36px; height: 36px; padding: 4px; }
  .female-doctor-notice-body h3 { font-size: 0.88rem; }
  .female-doctor-notice-body p { font-size: 0.75rem; }
}

/* お悩みから探す（HOME） */
.concerns-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}
.concern-card {
  width: 150px; height: 150px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
  background: #fff;
  border: 2px solid var(--pink);
  color: var(--text-dark);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.concern-card:hover {
  border-color: var(--pink-main);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(232, 160, 180, 0.22);
}
.concern-card-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pink-light);
  border-radius: 50%;
  padding: 6px;
}
.concern-card-icon svg { width: 100%; height: 100%; }
.concern-card-text { display: block; }
.concern-card-arrow { display: none; }

/* 予防カードのみ横長丸みのある四角で差別化（カラーはピンク統一） */
.concern-card--prevention {
  width: 280px;
  height: auto;
  min-height: 96px;
  border-radius: 26px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1.2rem;
  text-align: left;
}
.concern-card--prevention .concern-card-icon {
  width: 48px; height: 48px;
}
.concern-card--prevention .concern-card-text {
  font-size: 0.88rem;
  flex: 1;
  line-height: 1.5;
}

/* タブボタン列 */
.flow-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-top: 2.5rem; margin-bottom: 0;
}
.flow-tab-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  background: var(--white-warm); border: 2px solid var(--gold);
  border-radius: 0; padding: 0.75rem 1.25rem; cursor: pointer;
  color: var(--gold);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
  min-width: 110px;
}
.flow-tab-btn:hover { background: rgba(201,169,110,0.08); border-color: var(--gold-dark); color: var(--gold-dark); transform: translateY(-2px); }
.flow-tab-btn.active {
  background: var(--green-main); border-color: var(--green-main); color: #fff;
  box-shadow: 0 4px 16px rgba(46,171,133,0.35); transform: translateY(-2px);
}
.flow-tab-step {
  font-size: 0.65rem; letter-spacing: 0.1em; opacity: 0.7; line-height: 1;
}
.flow-tab-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.flow-tab-icon svg { width: 22px; height: 22px; }
.flow-tab-label {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; line-height: 1.3; text-align: center;
}

/* コンテンツエリア */
.flow-content-wrap {
  margin-top: 1.5rem;
  background: var(--white-warm); border-radius: 0;
  box-shadow: 0 4px 24px var(--shadow-strong);
  overflow: hidden;
}
.flow-panel {
  display: none; padding: 2.5rem 3rem;
}
.flow-panel.active { display: block; }

/* パネル内レイアウト：写真＋テキスト横並び */
.flow-panel-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: start;
}
.flow-panel-inner.no-img { grid-template-columns: 1fr; }

.flow-panel-title {
  font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.4rem;
  color: var(--green-dark); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.flow-panel-title-icon { display: flex; align-items: center; }
.flow-panel-title-icon svg { width: 24px; height: 24px; stroke: var(--green-dark); }
.flow-panel-desc {
  font-size: 0.92rem; color: var(--text-mid); line-height: 2.1;
}
.flow-panel-desc + .flow-panel-desc { margin-top: 0.75rem; }
.flow-panel-sub {
  font-size: 0.82rem; color: var(--green-mid); margin-bottom: 0.75rem;
}

/* パネル内画像 */
.flow-panel-img {
  border-radius: 0; overflow: hidden; aspect-ratio: 4/3;
}
.flow-panel-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flow-panel-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.flow-panel-imgs .flow-panel-img { aspect-ratio: 1; }

/* サブアイテム（各種検査） */
.flow-sub-list {
  display: flex; flex-direction: column; gap: 1.25rem; margin-top: 0;
}
.flow-sub-item {
  background: var(--accent-pale);
  border-left: 3px solid var(--green-main);
  border-radius: 0;
  padding: 1rem 1.25rem;
}
.flow-sub-title {
  font-size: 0.92rem; font-weight: 500; color: var(--green-dark);
  margin-bottom: 0.35rem; display: flex; align-items: center; gap: 0.5rem;
}
.flow-sub-title::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-main); flex-shrink: 0;
}
.flow-sub-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.9; }
.flow-sub-note { font-size: 0.78rem; color: var(--text-light); margin-top: 0.35rem; font-style: italic; }
.flow-sub-img {
  width: 100%; border-radius: 0; overflow: hidden; margin-top: 0.75rem; aspect-ratio: 16/7;
}
.flow-sub-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.flow-sub-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.75rem;
}
.flow-sub-imgs .flow-sub-img { margin-top: 0; aspect-ratio: 4/3; }

/* 箇条書き */
.flow-tl-list {
  margin-top: 0.75rem; padding-left: 0; list-style: none;
}
.flow-tl-list li {
  font-size: 0.88rem; color: var(--text-mid);
  padding: 0.3rem 0; display: flex; gap: 0.5rem; align-items: baseline;
  border-bottom: 1px solid var(--green-pale);
}
.flow-tl-list li:last-child { border-bottom: none; }
.flow-tl-list li::before { content: '・'; color: var(--green-main); flex-shrink: 0; }

/* =============================================
   インスタグラム（HOME）
   ============================================= */
#instagram { background: var(--white-warm); }
.insta-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff; padding: 0.75rem 1.75rem; border-radius: 0;
  font-size: 0.9rem; font-weight: 500; margin-top: 0.5rem;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(238, 42, 123, 0.3);
}
.insta-link:hover { opacity: 0.9; transform: translateY(-2px); }
.insta-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem; margin-top: 2rem;
}
.insta-cell {
  aspect-ratio: 1; background: var(--green-light);
  border-radius: 0; overflow: hidden;
  transition: opacity 0.2s, transform 0.2s;
}
.insta-cell:hover { opacity: 0.85; transform: scale(1.03); }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; }
.insta-ph {
  width: 100%; height: 100%; min-height: 120px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid); font-size: 1.5rem;
}
.snapwidget-wrap { width: 100%; margin-top: 2rem; }
.snapwidget-wrap iframe { width: 100% !important; }
.snapwidget-rpf { width: 100%; }

/* =============================================
   クリニック紹介（about.html）
   ============================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap {
  border-radius: 0; overflow: hidden; aspect-ratio: 1;
  background: var(--green-pale); box-shadow: 0 12px 40px var(--shadow-strong);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.5rem;
  color: var(--green-mid); font-size: 0.85rem;
}
.about-body p { color: var(--text-mid); font-size: 0.95rem; line-height: 2.1; margin-bottom: 1.2rem; }
.about-catch {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--green-dark); line-height: 1.9;
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem; margin-bottom: 1.5rem !important;
}

/* クリニック紹介 新レイアウト */
.about-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-body-new p {
  color: var(--text-mid); font-size: 0.95rem;
  line-height: 2.1; margin-bottom: 1.2rem;
}
.about-body-new p em { color: var(--green-dark); font-style: normal; font-weight: 600; }
.about-body-new p strong { color: var(--green-dark); }
.about-img-small {
  position: sticky;
  top: 5rem;
}
.about-img-small img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 10px 30px var(--shadow-strong);
}
.about-img-small .img-placeholder {
  aspect-ratio: 4/3;
  min-height: unset;
  border: 1.5px dashed var(--green-light);
}

/* 院長 */
.doctor-grid {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 3rem; align-items: start;
}
.doctor-photo {
  border-radius: 0; overflow: hidden; aspect-ratio: 1/1;
  background: var(--green-pale); box-shadow: 0 10px 30px var(--shadow-strong);
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.doctor-name { font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.5rem; color: var(--green-dark); margin-bottom: 0.3rem; }
.doctor-title { font-size: 0.8rem; color: var(--green-mid); letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.doctor-body p { color: var(--text-mid); font-size: 0.95rem; line-height: 2.1; margin-bottom: 1rem; }
.doctor-sign { margin-top: 1.5rem; font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.1rem; color: var(--green-dark); }

/* 理事長ブログバナー(選ばれる理由バナーと同系統) */
.doctor-blog-banner {
  position: relative;
  margin-top: 2rem;
  max-width: 720px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--butter-dark) 0%, var(--butter) 55%, var(--butter-light) 100%);
  box-shadow: 0 8px 22px rgba(184, 145, 60, 0.18);
}
.doctor-blog-banner-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 88% 25%, rgba(255,255,255,0.18) 0, transparent 35%),
    radial-gradient(circle at 12% 80%, rgba(232, 160, 180, 0.22) 0, transparent 40%);
  pointer-events: none;
}
.doctor-blog-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.85rem;
  color: #fff;
}
.doctor-blog-banner-text { flex: 1; }
.doctor-blog-banner-sub {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  margin: 0 0 0.3rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
}
.doctor-blog-banner-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.doctor-blog-banner-lead {
  font-size: 0.85rem;
  margin: 0 0 1rem;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.doctor-blog-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.35rem;
  background: var(--green-dark);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.22);
}
.doctor-blog-banner-btn:hover {
  background: var(--green-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
.doctor-blog-banner-btn svg { transition: transform 0.2s ease; }
.doctor-blog-banner-btn:hover svg { transform: translateX(3px); }
.doctor-blog-banner-deco {
  flex-shrink: 0;
  width: 90px; height: 90px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
}
.doctor-blog-banner-deco svg { width: 38px; height: 38px; }
@media (max-width: 600px) {
  .doctor-blog-banner-inner { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; gap: 1rem; }
  .doctor-blog-banner-title { font-size: 1.15rem; }
  .doctor-blog-banner-deco { width: 70px; height: 70px; }
  .doctor-blog-banner-deco svg { width: 28px; height: 28px; }
}

/* 理事長・院長 メッセージ強調 */
.doctor-message-em {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.98rem; line-height: 2;
  color: var(--green-dark);
  background: var(--accent-pale);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.doctor-message-em p {
  color: var(--green-dark);
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 0.5rem;
}
.doctor-message-em p:last-child { margin-bottom: 0; }

/* 理念リスト */
.doctor-policy-list {
  list-style: none; padding: 0;
  margin: 1rem 0 1.25rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.doctor-policy-list li {
  font-size: 0.88rem; color: var(--text-mid);
  padding: 0.35rem 0 0.35rem 1.4rem;
  border-bottom: 1px solid rgba(59,170,122,0.12);
  position: relative;
}
.doctor-policy-list li:last-child { border-bottom: none; }
.doctor-policy-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}

/* 経歴・所属学会 */
.doctor-career {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59,170,122,0.18);
}
.doctor-career-title {
  font-size: 0.78rem; letter-spacing: 0.15em;
  color: var(--gold-dark); text-transform: uppercase;
  margin-bottom: 0.75rem; margin-top: 1.5rem;
  font-weight: 500;
}
.doctor-career-title:first-child { margin-top: 0; }
.doctor-career-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.doctor-career-list li {
  font-size: 0.85rem; color: var(--text-mid);
  padding: 0.45rem 0 0.45rem 1.2rem;
  border-bottom: 1px solid rgba(59,170,122,0.1);
  position: relative; line-height: 1.6;
}
.doctor-career-list li:last-child { border-bottom: none; }
.doctor-career-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.85em;
  width: 5px; height: 1px;
  background: var(--gold);
}
.doctor-career-list li.doctor-career-indent {
  color: var(--text-light); font-size: 0.82rem; padding-left: 1.2rem;
}
.doctor-career-list li.doctor-career-sub {
  padding-left: 2.5rem; color: var(--text-mid); font-size: 0.82rem;
}
.doctor-career-list li.doctor-career-sub::before { left: 1.4rem; }

/* 経歴・所属学会 横並び */
.doctor-career-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* =============================================
   フォトギャラリー（index.html）
   ============================================= */
.gallery-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.gallery-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 0.4rem;
}
.gallery-slide img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}
.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: none;
  width: 46px; height: 46px; font-size: 2.2rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
  z-index: 2; text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.gallery-btn:hover { color: #fff; }
.gallery-btn--prev { left: 0.75rem; }
.gallery-btn--next { right: 0.75rem; }
.gallery-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  padding: 1.2rem 0 0;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--green-light);
  cursor: pointer; transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.gallery-dot.active {
  background: var(--gold); transform: scale(1.3);
}

/* =============================================
   初めての方へ 展開レイアウト（index.html）
   ============================================= */
.flow-list {
  max-width: 860px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
}
.flow-item {
  background: var(--white-warm);
  border: 1px solid var(--green-light);
  border-top: 2px solid var(--green-main);
  overflow: hidden;
}
.flow-item-head {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 3.5rem 1.1rem 1.75rem;
  background: var(--accent-pale);
  border-bottom: 1px solid transparent;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.flow-item-head::-webkit-details-marker { display: none; }
.flow-item-head:hover { background: var(--green-light); }
.flow-item-head::after {
  content: '';
  position: absolute;
  right: 1.75rem;
  top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.25s;
}
.flow-item[open] > .flow-item-head {
  border-bottom-color: var(--green-light);
}
.flow-item[open] > .flow-item-head::after {
  transform: translateY(-25%) rotate(-135deg);
}
.flow-item-badge {
  background: #fff; color: var(--gold-dark);
  border: 2px solid var(--gold-dark);
  padding: 0.4rem 0.8rem;
  display: flex; flex-direction: column; align-items: center;
  line-height: 1; min-width: 56px; flex-shrink: 0;
}
.flow-item-step {
  font-size: 0.58rem; letter-spacing: 0.12em; opacity: 0.85;
}
.flow-item-num {
  font-size: 1.35rem; font-weight: 700; letter-spacing: 0.04em;
}
.flow-item-icon {
  width: 26px; height: 26px; display: flex; align-items: center; flex-shrink: 0;
}
.flow-item-icon svg {
  width: 26px; height: 26px; stroke: #fff;
}
.flow-item-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.1rem; color: var(--green-dark); letter-spacing: 0.04em;
}
.flow-item-body {
  padding: 1.75rem 1.75rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: start;
}
.flow-item-body--full {
  grid-template-columns: 1fr;
}
.flow-item-text p {
  font-size: 0.92rem; color: var(--text-mid); line-height: 2.1;
  margin-bottom: 0.6rem;
}
.flow-item-text p:last-child { margin-bottom: 0; }
.flow-item-img {
  overflow: hidden; aspect-ratio: 4/3;
}
.flow-item-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.flow-item-conn {
  text-align: center; padding: 0.5rem 0;
  font-size: 1.4rem; color: var(--green-mid); line-height: 1;
}

/* =============================================
   診療案内リンクバナー（index.html）
   ============================================= */
/* =============================================
   バナーリンク 2列（index.html）
   ============================================= */
.banner-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--white-warm);
}
.banner-link-item {
  display: block;
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.25s, transform 0.25s;
  overflow: hidden;
}
.banner-link-item:hover { opacity: 0.9; transform: translateY(-3px); }
.banner-link-item img {
  width: 100%; height: auto; display: block;
}
/* 予防歯科バナー画像がない間のプレースホルダー */
.banner-link-placeholder {
  background: linear-gradient(135deg, #246048 0%, var(--green-dark) 60%, #2D7A58 100%);
  aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; padding: 2rem;
  text-align: center; line-height: 1.6;
  position: relative;
}
.banner-link-placeholder::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.banner-placeholder-sub {
  font-size: 0.68rem; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.banner-placeholder-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.9rem; color: #fff; letter-spacing: 0.06em;
}
.banner-placeholder-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.8;
}
.banner-placeholder-btn {
  margin-top: 0.5rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.8rem; padding: 0.5rem 1.25rem;
  letter-spacing: 0.04em;
}

/* スタッフ */
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.staff-card { text-align: center; }
.staff-photo {
  border-radius: 50%; overflow: hidden; aspect-ratio: 1;
  background: var(--accent-pale); margin: 0 auto 1rem; width: 120px;
  border: 3px solid var(--pink);
}
.staff-silhouette {
  display: flex; align-items: flex-end; justify-content: center;
  color: var(--pink);
  background: var(--pink-light);
}
.staff-silhouette svg {
  width: 75%; height: 75%;
}
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card h3 { font-size: 0.95rem; color: var(--green-dark); font-weight: 500; margin-bottom: 0.2rem; }
.staff-card p { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.05em; }

/* =============================================
   診療内容（treatment.html）
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white-warm); border-radius: 0; padding: 2rem 1.75rem;
  border: 1px solid var(--green-light);
  border-top: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: var(--pink);
  border-top-color: var(--pink-main);
  box-shadow: 0 8px 30px var(--shadow-strong);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px; background: var(--accent-pale);
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold-dark);
}
.service-card h3 { font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.05rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.9; }
.service-catch {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.82rem !important;
  color: var(--gold-dark) !important;
  font-style: italic;
  margin-bottom: 0.75rem !important;
  letter-spacing: 0.03em;
}
.service-download {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.service-download:hover {
  background: var(--gold);
  color: #fff;
}
.service-download svg {
  width: 14px; height: 14px;
  stroke: currentColor; flex-shrink: 0;
}
.service-note {
  font-size: 0.75rem !important;
  color: var(--text-light) !important;
  margin-top: 0.4rem !important;
  line-height: 1.6 !important;
}

/* 「詳しく見る」リンク（カード内） */
.service-more {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--green-dark);
  border-bottom: 1px solid var(--green-light);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.service-more:hover {
  color: var(--green-main);
  border-color: var(--green-main);
  gap: 0.6rem;
}

/* 診療詳細ページ */
.treatment-detail { max-width: 820px; margin: 0 auto; }
.treatment-detail .td-catch {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.15rem; color: var(--green-dark);
  line-height: 1.9; margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.treatment-detail p {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 2.1; margin-bottom: 1.1rem;
}
.treatment-detail .td-heading {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.15rem; color: var(--green-dark); font-weight: 600;
  margin: 2.5rem 0 1rem; padding-left: 0.85rem;
  border-left: 3px solid var(--pink-main);
  letter-spacing: 0.03em;
}
.treatment-detail .td-sub {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1rem; color: var(--green-dark); font-weight: 600;
  margin: 1.75rem 0 0.6rem;
  padding-left: 0.6rem;
  border-left: 2px solid var(--pink);
}
.treatment-detail ul.td-list {
  list-style: none; padding: 0;
  margin: 0.5rem 0 1.4rem;
}
.treatment-detail ul.td-list li {
  position: relative; padding-left: 1.2rem;
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.9; margin-bottom: 0.4rem;
}
.treatment-detail ul.td-list li::before {
  content: ''; position: absolute;
  left: 0; top: 0.7rem;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink-main);
}
.treatment-detail .td-table {
  width: 100%; border-collapse: collapse;
  margin: 1rem 0 2rem;
  font-size: 0.88rem;
}
.treatment-detail .td-table th,
.treatment-detail .td-table td {
  border: 1px solid var(--green-light);
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}
.treatment-detail .td-table th {
  background: var(--accent-pale);
  color: var(--green-dark);
  font-weight: 600;
  text-align: center;
}
.treatment-detail .td-table .compare-icon {
  display: block;
  width: 48px; height: 48px;
  margin: 0 auto 0.4rem;
}
.treatment-detail .td-table .compare-icon svg {
  width: 100%; height: 100%;
}
.treatment-detail .td-table td { color: var(--text-mid); }
.treatment-detail .td-back {
  margin-top: 3rem; text-align: center;
}
.treatment-detail .td-back a {
  display: inline-block;
  font-size: 0.85rem; color: var(--green-dark);
  border: 1px solid var(--green-mid);
  padding: 0.6rem 1.5rem;
  transition: background 0.2s, color 0.2s;
}
.treatment-detail .td-back a:hover {
  background: var(--green-main); color: #fff;
}
.treatment-detail .td-figure {
  margin: 1.25rem auto 2rem;
  max-width: 520px;
}
.treatment-detail .td-figure img {
  display: block;
  width: 100%; height: auto;
  border: 1px solid var(--pink-light);
}
.treatment-detail .td-figure figcaption {
  font-size: 0.8rem; color: var(--text-light);
  text-align: center;
  margin-top: 0.6rem;
}
.treatment-detail .td-figure--small {
  max-width: 320px;
}
.treatment-detail .td-inline-link {
  display: inline-block;
  color: var(--green-dark);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 2px;
  transition: opacity 0.2s, gap 0.2s;
}
.treatment-detail .td-inline-link:hover { opacity: 0.7; }

/* 口臭外来 生活調査票 ダウンロードボタン */
.halitosis-download-btn {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--green-dark);
  border: 2px solid var(--green-dark);
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.halitosis-download-btn:hover {
  background: var(--green-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(59, 170, 122, 0.22);
}

/* 当院が選ばれる理由ページ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.why-us-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--pink-light);
  border-top: 3px solid var(--pink-main);
  padding: 2.5rem 1.5rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.why-us-card:hover {
  border-color: var(--pink);
  border-top-color: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(232, 160, 180, 0.18);
}
.why-us-num {
  position: absolute;
  top: -18px; left: 1.5rem;
  width: 44px; height: 44px;
  background: var(--pink-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600; font-size: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(232, 160, 180, 0.35);
}
.why-us-card h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.05rem; color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.why-us-card p {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.95; margin-bottom: 0.9rem;
}
.why-us-link {
  display: inline-flex; align-items: center;
  color: var(--green-dark);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 0.1rem;
  transition: color 0.2s, gap 0.2s;
}
.why-us-link:hover {
  color: var(--green-main);
  border-color: var(--pink-main);
}
@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* 一般歯科ページ メニュー別ブロック */
.general-block {
  position: relative;
  background: #fff;
  border: 1px solid var(--pink-light);
  border-left: 4px solid var(--pink-main);
  padding: 2.25rem 2rem 1.75rem;
  margin: 1.25rem 0 1.75rem;
}
.general-block-num {
  position: absolute;
  top: -18px; left: 1.75rem;
  width: 40px; height: 40px;
  background: #fff;
  border: 2px solid var(--pink-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600; font-size: 0.95rem;
  color: var(--pink-main);
  letter-spacing: 0.05em;
}
.general-block-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.15rem; color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
}
.general-block p {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 2; margin-bottom: 0.9rem;
}
.general-block-sub {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--green-dark) !important;
  margin-top: 1rem !important;
  margin-bottom: 0.4rem !important;
  padding-left: 0.7rem;
  border-left: 3px solid var(--pink);
}

/* 料金 */
.fee-note {
  background: var(--green-pale); border-left: 3px solid var(--green-mid);
  padding: 0.9rem 1.25rem; font-size: 0.82rem; color: var(--text-mid);
  border-radius: 0; margin-bottom: 2rem;
}
.fee-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.fee-table th { background: var(--accent-pale); color: var(--green-dark); padding: 0.9rem 1.25rem; text-align: left; font-weight: 500; }
.fee-table td { padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--green-pale); color: var(--text-mid); }
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:hover td { background: #f7faf8; }
.fee-price { color: var(--green-dark); font-weight: 500; white-space: nowrap; }

/* =============================================
   予防歯科（prevention.html）
   ============================================= */
.prevention-intro {
  background: var(--green-dark); color: #fff; border-radius: 0;
  padding: 3rem 3.5rem; display: grid; grid-template-columns: 1fr 280px;
  gap: 3rem; align-items: center; margin-bottom: 5rem;
}
.prevention-intro h3 { font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.5rem; margin-bottom: 1rem; }
.prevention-intro p { font-size: 0.9rem; line-height: 2.1; color: rgba(255, 255, 255, 0.85); }
.prevention-stat { text-align: center; }
.prevention-big-num {
  font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 5.5rem;
  font-weight: 600; color: var(--green-light); line-height: 1;
}
.prevention-big-unit { font-size: 2rem; color: var(--green-light); font-weight: 600; }
.prevention-stat-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); margin-top: 0.75rem; line-height: 1.7; }
.prevention-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prevention-card {
  background: var(--white-warm); border-radius: 0; padding: 2rem;
  border: 1px solid var(--green-pale);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.prevention-card:hover { border-color: var(--green-light); box-shadow: 0 8px 24px var(--shadow-strong); transform: translateY(-4px); }
.prevention-card h3 { font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.05rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.prevention-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.9; }
.checkup-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.checkup-step { text-align: center; padding: 1.75rem 1rem; background: var(--white-warm); border-radius: 0; }
.checkup-step-num { font-family: 'M PLUS Rounded 1c'; font-size: 2.2rem; font-weight: 600; color: var(--green-light); line-height: 1; margin-bottom: 0.5rem; }
.checkup-step h4 { font-size: 0.95rem; color: var(--green-dark); font-weight: 500; margin-bottom: 0.3rem; }
.checkup-step p { font-size: 0.78rem; color: var(--text-mid); line-height: 1.7; }

/* =============================================
   予防プログラム（prevention.html）追加スタイル
   ============================================= */

/* イントロ */
.prevention-program-intro {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.prevention-program-intro p {
  color: var(--text-mid); font-size: 0.95rem; line-height: 2.1; margin-bottom: 1.2rem;
}
.prevention-catch {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--green-dark);
  margin-bottom: 2rem;
}

/* 予防歯科ページ - 3つの方針カード */
.prev-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 2.5rem auto 2.5rem;
}
.prev-policy-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--accent-pale);
  border-radius: 14px;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prev-policy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59,170,122,0.10);
}
.prev-policy-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-pale);
  color: var(--green-dark);
  border-radius: 50%;
}
.prev-policy-icon svg { width: 26px; height: 26px; }
.prev-policy-card h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.05rem; color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}
.prev-policy-card p {
  font-size: 0.85rem; color: var(--text-mid);
  line-height: 1.95; text-align: left;
}

/* 予防歯科のいいこと(Benefits) */
.prev-benefit-box {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 1.9rem 1.9rem 1.6rem;
  background: #FFFAF3;
  border: 1px solid var(--butter);
}
.prev-benefit-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.prev-benefit-sub {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  color: var(--butter-dark);
  letter-spacing: 0.17em;
  font-size: 0.82rem;
  margin: 0 0 0.35rem;
  font-weight: 600;
}
.prev-benefit-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.18rem;
  color: var(--green-dark);
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.prev-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.prev-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--butter);
}
.prev-benefit-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--butter-light);
  color: var(--butter-dark);
  margin-bottom: 0.6rem;
}
.prev-benefit-icon svg { width: 18px; height: 18px; }
.prev-benefit-item h4 {
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: 0.02em;
}
.prev-benefit-item p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0;
}

/* 予防歯科のすすめ方(How To) */
.prev-howto-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 1.75rem;
  background: #fff;
}
.prev-howto-sub {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  color: var(--green-dark);
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin: 0 0 0.4rem;
  font-weight: 600;
  text-align: center;
}
.prev-howto-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  text-align: center;
  margin: 0 0 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.prev-howto-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 2.05;
  margin: 0 0 1rem;
}
.prev-howto-text p.prev-howto-em {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  color: var(--pink-dark);
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.95;
  margin: 1.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--pink-light);
}
@media (max-width: 700px) {
  .prev-policy-grid { grid-template-columns: 1fr; gap: 1rem; }
  .prev-benefit-box { padding: 1.75rem 1.25rem; }
  .prev-benefit-grid { grid-template-columns: 1fr; }
  .prev-benefit-title { font-size: 1.1rem; }
  .prev-howto-box { padding: 1.75rem 1.25rem; }
  .prev-howto-title { font-size: 1.15rem; }
}

/* 流れ（ステップ） — 縦タイムライン式 */
.prev-flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 64px;
}
.prev-flow-list::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-pale) 0%, var(--green-mid) 12%, var(--green-mid) 88%, var(--accent-pale) 100%);
}
.prev-flow-step {
  position: relative;
  padding: 1.5rem 0 2.25rem;
  border-bottom: none;
}
.prev-flow-step:last-child { padding-bottom: 0.5rem; }
.prev-flow-step::before {
  content: '';
  position: absolute;
  left: -52px;
  top: 1.85rem;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 1;
}
.prev-flow-step-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.prev-flow-num {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink-dark);
  background: var(--pink-light);
  letter-spacing: 0.16em;
  padding: 0.3rem 0.75rem;
  line-height: 1;
  min-width: auto;
  flex-shrink: 0;
  border-radius: 2px;
}
.prev-flow-num::before { content: 'STEP '; opacity: 0.7; }
.prev-flow-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--green-dark);
}
.prev-flow-step-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 700px) {
  .prev-flow-list { padding-left: 48px; }
  .prev-flow-list::before { left: 13px; }
  .prev-flow-step::before { left: -41px; width: 12px; height: 12px; top: 1.65rem; }
  .prev-flow-step-body { grid-template-columns: 1fr; gap: 1.25rem; }
  .prev-flow-title { font-size: 1.05rem; }
}
.prev-flow-body p {
  font-size: 0.92rem; color: var(--text-mid); line-height: 2.1; margin-bottom: 0.9rem;
}
.prev-flow-body p:last-child { margin-bottom: 0; }
.prev-flow-img {
  border-radius: 0; overflow: hidden; aspect-ratio: 4/3;
  background: var(--accent-pale);
}
.prev-flow-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prev-flow-img .img-placeholder { min-height: 180px; }

/* 1ミリチャレンジ — ホワイト×シルバー */
.prev-1mm-challenge {
  margin: 3rem 0;
  background: #FFFFFF;
  border: 1px solid #C8CDD6;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(160,165,175,0.10);
}
/* シルバーグラデーション トップライン */
.prev-1mm-challenge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    #A8AEB8 15%,
    #D0D4DC 40%,
    #E0E3E8 50%,
    #D0D4DC 60%,
    #A8AEB8 85%,
    transparent 100%);
}
.prev-1mm-text {
  padding: 2.5rem 3rem;
}
.prev-1mm-en {
  font-size: 0.63rem;
  letter-spacing: 0.4em;
  color: #A8AEB8;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-weight: 400;
}
.prev-1mm-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  color: #7A8090;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #D8DCE4;
  letter-spacing: 0.06em;
}
.prev-1mm-text p {
  font-size: 0.88rem; color: #8A909C; line-height: 2.1;
  margin-bottom: 0.5rem;
}
.prev-1mm-text p:last-child { margin-bottom: 0; }
.prev-1mm-em {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #6E7480;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid #D8DCE4;
  letter-spacing: 0.04em;
}

/* 旧calloutスタイル */
.prev-flow-callout { display: none; }

/* 中間テキスト */
.prev-flow-transition {
  text-align: center; padding: 1.25rem 0;
}
.prev-flow-transition p {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1rem; color: var(--green-mid); letter-spacing: 0.05em;
}

/* ブラッシング指導 ビフォーアフター */
.prev-brushing-result {
  max-width: 860px;
  margin: 0.5rem auto 1.5rem;
  padding: 1.75rem 1.75rem 1.5rem;
  background: #fff;
}
.prev-brushing-lead {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 2.1;
  margin-bottom: 1rem;
}
.prev-brushing-lead:last-of-type {
  margin-bottom: 1.5rem;
}
.prev-brushing-lead strong { color: var(--green-dark); font-weight: 600; }
.prev-brushing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.prev-brushing-grid figure {
  margin: 0; position: relative;
  background: #fff; padding: 1rem;
  border: 1px solid var(--green-light);
}
.prev-brushing-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.6rem;
}
.prev-brushing-tag--before { background: #FBE3E8; color: var(--pink-dark); }
.prev-brushing-tag--after  { background: var(--accent-pale); color: var(--green-dark); }
.prev-brushing-grid img {
  width: 100%; height: auto; display: block;
}
.prev-brushing-grid figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}
.prev-brushing-grid figcaption strong {
  color: var(--green-dark); font-size: 1rem;
}

/* 小児予防 */
.kids-prev-intro {
  text-align: center;
  max-width: 720px; margin: 0 auto 2.5rem;
}
.kids-prev-intro p {
  font-size: 0.95rem; color: var(--text-mid);
  line-height: 2.1;
}
.kids-prev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px; margin: 0 auto;
}
.kids-prev-card {
  background: #fff;
  border: 1px solid var(--pink-light);
  border-top: 3px solid var(--pink-main);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.kids-prev-card:hover {
  border-color: var(--pink);
  border-top-color: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(232, 160, 180, 0.18);
}
.kids-prev-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.kids-prev-icon svg { width: 100%; height: 100%; }
.kids-prev-card h3 {
  font-size: 1rem; color: var(--green-dark);
  margin-bottom: 0.6rem; font-weight: 600;
}
.kids-prev-card p {
  font-size: 0.82rem; color: var(--text-mid);
  line-height: 1.85; text-align: left;
}
.kids-prev-note {
  text-align: center; font-size: 0.82rem;
  color: var(--text-light); margin-top: 2rem;
}
@media (max-width: 700px) {
  .kids-prev-grid { grid-template-columns: 1fr; gap: 1rem; }
  .kids-prev-card { padding: 1.5rem 1.25rem; }
}

/* 口腔機能発達不全症 */
.oral-function-box {
  max-width: 920px; margin: 4.5rem auto 2.5rem;
  background: #fff;
  border: 1px solid var(--pink-light);
  border-top: 3px solid var(--pink-main);
  padding: 2.5rem 2.25rem 2rem;
}
/* 治療への取り組み方 セクションヘッダー上の余白 */
.kids-prev-note + .treatment-detail { margin-top: 4rem; }
.oral-function-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.oral-function-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem; letter-spacing: 0.18em;
  color: var(--pink-main); text-transform: uppercase; margin-bottom: 0.4rem;
}
.oral-function-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.3rem; color: var(--green-dark); font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 0.5rem;
}
.oral-function-lead {
  font-size: 0.92rem; color: var(--text-mid);
}
.oral-function-text {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 2.05; margin-bottom: 1.1rem;
}
.oral-function-checklist-title {
  font-size: 0.95rem !important;
  font-weight: 600;
  color: var(--green-dark);
  margin: 1.25rem 0 0.7rem !important;
  padding-left: 0.8rem;
  border-left: 3px solid var(--pink-main);
}
.oral-function-checklist {
  list-style: none; padding: 0;
  margin: 0 0 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.5rem;
}
.oral-function-checklist li {
  position: relative; padding-left: 1.6rem;
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.7;
}
.oral-function-checklist li::before {
  content: ''; position: absolute;
  left: 0; top: 0.35rem;
  width: 14px; height: 14px;
  border: 1.5px solid var(--pink-main);
  background: #fff;
  border-radius: 3px;
}
.oral-function-checklist li::after {
  content: ''; position: absolute;
  left: 3px; top: 0.55rem;
  width: 8px; height: 4px;
  border-left: 2px solid var(--pink-main);
  border-bottom: 2px solid var(--pink-main);
  transform: rotate(-45deg);
}
.oral-function-note {
  font-size: 0.82rem !important;
  color: var(--text-mid) !important;
  background: var(--pink-light);
  padding: 0.85rem 1.1rem;
  margin-top: 1rem !important;
}
@media (max-width: 700px) {
  .oral-function-checklist { grid-template-columns: 1fr; }
  .oral-function-box { padding: 1.75rem 1.5rem; }
}

/* 小児治療の方針カード */
.kids-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px; margin: 1.5rem auto 2rem;
}
/* 小児ページ セクション間の余白 */
.kids-prev-grid { margin-top: 1rem; }
.kids-prev-note { padding-bottom: 1.5rem; }
.treatment-detail + .kids-policy-grid { margin-top: 1.25rem; }
.kids-policy-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--pink-light);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}
.kids-policy-num {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  background: #fff;
  border: 2px solid var(--pink-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600; font-size: 0.95rem;
  color: var(--pink-main);
}
.kids-policy-card h3 {
  font-size: 1rem; color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.kids-policy-card p {
  font-size: 0.85rem; color: var(--text-mid);
  line-height: 1.85; text-align: left;
}

/* ご褒美ポイント帳 */
.kids-reward {
  display: flex; align-items: center; gap: 1.5rem;
  max-width: 1000px; margin: 4rem auto 2rem;
  background: #FFFAF3;
  border: 1px solid var(--butter);
  padding: 1.75rem 2rem;
}
.kids-reward-icon {
  flex-shrink: 0;
  width: 88px; height: 88px;
}
.kids-reward-icon svg { width: 100%; height: 100%; }
.kids-reward-body { flex: 1; }
.kids-reward-body h4 {
  font-size: 1.05rem; color: var(--green-dark);
  font-weight: 600; margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.kids-reward-tag {
  display: inline-block;
  background: var(--butter-light);
  color: var(--butter-dark);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.6rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.kids-reward-body p {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.95;
}
.kids-reward-body strong { color: var(--pink-dark); }
@media (max-width: 700px) {
  .kids-policy-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .kids-reward { flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1.25rem; }
  .kids-reward-body { text-align: left; }
}

/* 選ばれる理由バナー (HOME) */
.why-us-banner-section {
  padding: 2rem 1rem 2.75rem;
  background: var(--white-warm, #FAF8F4);
}
.why-us-banner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #2F8A6A 0%, #3BAA7A 55%, #5FA3BD 100%);
  box-shadow: 0 8px 22px rgba(47, 138, 106, 0.16);
}
.why-us-banner-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.18) 0, transparent 35%),
    radial-gradient(circle at 15% 80%, rgba(232, 160, 180, 0.22) 0, transparent 40%);
  pointer-events: none;
}
.why-us-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2.25rem;
  color: #fff;
}
.why-us-banner-text { flex: 1; }
.why-us-banner-sub {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  margin: 0 0 0.35rem;
  opacity: 0.85;
  text-transform: uppercase;
}
.why-us-banner-title {
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.why-us-banner-em {
  font-size: 1.8rem;
  color: #FBE3E8;
  font-weight: 700;
}
.why-us-banner-lead {
  font-size: 0.85rem;
  margin: 0 0 1.1rem;
  line-height: 1.75;
  opacity: 0.95;
}
.why-us-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.4rem;
  background: #fff;
  color: var(--green-dark, #2F8A6A);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.why-us-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.16);
}
.why-us-banner-btn svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.why-us-banner-btn:hover svg { transform: translateX(3px); }
.why-us-banner-deco {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.why-us-deco-num {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #FBE3E8;
}
.why-us-deco-label {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  margin-top: 0.3rem;
  opacity: 0.9;
}
.sp-only { display: none; }
@media (max-width: 700px) {
  .why-us-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
    gap: 1.25rem;
  }
  .why-us-banner-title { font-size: 1.25rem; }
  .why-us-banner-em { font-size: 1.55rem; }
  .why-us-banner-deco { width: 100px; height: 100px; }
  .why-us-deco-num { font-size: 2.6rem; }
  .why-us-deco-label { font-size: 0.65rem; }
  .sp-only { display: inline; }
}
@media (max-width: 480px) {
  .why-us-banner-section { padding: 1.5rem 1rem 2rem; }
  .why-us-banner-title { font-size: 1.15rem; }
  .why-us-banner-em { font-size: 1.4rem; }
  .why-us-banner-lead { font-size: 0.82rem; }
  .why-us-banner-btn { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
}

/* 季節のイベント (小児) — クリーム背景 × ピンクのかわいい囲み */
.kids-event-box {
  max-width: 820px;
  margin: 3rem auto 1.5rem;
  padding: 1.5rem 1.5rem 1.25rem;
  background: #FFFAF3;
  border: 1px solid var(--butter);
}
.kids-event-header {
  margin-bottom: 1.25rem;
  text-align: center;
}
.kids-event-sub {
  font-family: var(--font-en, 'Cormorant Garamond', serif);
  color: var(--green-dark);
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin: 0 0 0.3rem;
  font-weight: 600;
}
.kids-event-title {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin: 0 0 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-block;
}
.kids-event-lead {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0;
}
.kids-event-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.kids-event-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1.5px dashed var(--pink-main, #E8A0B4);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kids-event-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(232, 160, 180, 0.18);
}
.kids-event-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBE3E8;
  border-radius: 50%;
}
.kids-event-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--pink-dark, #C97A8E) !important;
}
.kids-event-list h4 {
  font-size: 0.9rem;
  color: var(--green-dark);
  margin: 0 0 0.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.kids-event-list p {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.7;
}
.kids-event-note {
  margin: 1.25rem 0 0;
  padding: 0.7rem 0.9rem;
  background: #FBE3E8;
  border-radius: 8px;
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.kids-event-note svg { color: var(--green-dark); }
.kids-event-note a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .kids-event-box { padding: 1.75rem 1.25rem; margin: 2.5rem auto 1.5rem; }
  .kids-event-title { font-size: 1.25rem; }
  .kids-event-list { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* 定期検診スケジュール */
.prev-schedule {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; margin-top: 1rem;
}
.prev-schedule-item {
  text-align: center; padding: 1.25rem 2rem;
  background: var(--green-main); color: #fff;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  min-width: 120px;
}
.prev-schedule-arrow {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 0.75rem; color: var(--text-light); font-size: 0.72rem; gap: 0.1rem;
}
.prev-schedule-chevron { font-size: 1.6rem; color: var(--green-light); line-height: 1; }

/* 歯周病と全身疾患 */
.disease-stat {
  text-align: center; margin-bottom: 1.5rem;
}
.disease-stat-num {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.1rem; color: var(--text-mid); line-height: 2;
}
.disease-stat-num strong {
  font-size: 3.5rem; color: var(--gold); line-height: 1;
  display: inline-block; margin: 0 0.1em;
}
.disease-stat-num span { font-size: 1.8rem; color: var(--gold); }
.disease-lead {
  max-width: 800px; margin: 0 auto 3rem;
  text-align: center; font-size: 0.92rem; color: var(--text-mid); line-height: 2;
}
.disease-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3rem;
}
.disease-card {
  background: var(--white-warm);
  border: 1px solid var(--green-light);
  border-top: 3px solid var(--gold);
  padding: 1.5rem 1.4rem; border-radius: 0;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.disease-card:hover { box-shadow: 0 6px 24px var(--shadow-strong); transform: translateY(-3px); }
.disease-card-icon {
  width: 56px; height: 56px;
  margin: 0 auto 0.85rem;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.disease-card-icon svg { width: 100%; height: 100%; }
.disease-card-title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.05rem; color: var(--green-dark); margin-bottom: 0.6rem;
}
.disease-card p {
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.85;
  text-align: left;
}
.disease-conclusion {
  background: #fff; color: var(--green-dark);
  border: 1px solid var(--green-light);
  padding: 2.5rem 3rem; text-align: center; border-radius: 0;
}
.disease-conclusion h4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.2rem; color: var(--green-dark); margin-bottom: 1rem;
}
.disease-conclusion p { font-size: 0.92rem; color: var(--green-dark); line-height: 2; }

/* 位相差顕微鏡（予防歯科） */
.microscope-box {
  display: flex; align-items: flex-start; gap: 1.75rem;
  background: #fff;
  border: 1px solid var(--pink-light);
  border-left: 4px solid var(--pink-main);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}
.microscope-box-photo {
  flex-shrink: 0;
  width: 240px;
  overflow: hidden;
}
.microscope-box-photo img {
  width: 100%; height: auto;
  display: block;
}
.microscope-box-photo.cariogram-icon {
  width: 160px;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  background: var(--accent-pale);
}
.microscope-box-photo.cariogram-icon svg { width: 100%; height: auto; }
.microscope-box-body { flex: 1; }
.microscope-box-body h4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.1rem; color: var(--green-dark);
  margin-bottom: 0.7rem; letter-spacing: 0.03em;
}
.microscope-box-body p {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.95; margin-bottom: 0.4rem;
}
.microscope-box-note {
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
  margin-top: 0.5rem;
}
.cariogram-sub {
  font-size: 0.92rem !important;
  font-weight: 600;
  color: var(--green-dark) !important;
  margin-top: 0.9rem !important;
  margin-bottom: 0.4rem !important;
  padding-left: 0.8rem;
  border-left: 3px solid var(--pink-main);
}
.cariogram-list {
  list-style: none; padding: 0;
  margin: 0 0 0.9rem;
}
.cariogram-list li {
  position: relative; padding-left: 1rem;
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.85; margin-bottom: 0.25rem;
}
.cariogram-list li::before {
  content: ''; position: absolute;
  left: 0; top: 0.7rem;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--pink-main);
}

/* カイスの輪＋カリオグラム 統合セクション */
.caries-section {
  max-width: 920px; margin: 2rem auto 1.5rem;
  background: #fff;
  border: 1px solid var(--pink-light);
  border-left: 4px solid var(--pink-main);
  padding: 2rem 2rem 1.5rem;
}
.caries-section .keyes-box,
.caries-section .microscope-box {
  max-width: none;
  margin: 0 !important;
  border: none !important;
  padding: 0 !important;
  background: transparent;
}
.caries-section .keyes-box {
  padding-bottom: 1.5rem !important;
  border-bottom: 1px dashed var(--pink-light) !important;
  margin-bottom: 2rem !important;
}

/* カイスの輪 */
.keyes-box {
  display: flex; align-items: center; gap: 2rem;
  max-width: 920px; margin: 2rem auto 1.5rem;
  background: #fff;
  border: 1px solid var(--pink-light);
  border-left: 3px solid var(--pink-main);
  padding: 1.75rem 2rem;
}
.keyes-box-visual {
  flex-shrink: 0;
  width: 220px;
}
.keyes-box-visual svg { width: 100%; height: auto; display: block; }
.keyes-box-body { flex: 1; }
.keyes-box-body h4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1.1rem; color: var(--green-dark);
  margin-bottom: 0.7rem; letter-spacing: 0.03em;
}
.keyes-box-body p {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 2; margin-bottom: 0.9rem;
}
.keyes-list {
  list-style: none; padding: 0;
  margin: 0.6rem 0 1.2rem;
}
.keyes-list li {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 1.95; margin-bottom: 0.45rem;
  display: flex; align-items: baseline; gap: 0.6rem;
}
.keyes-tag {
  flex-shrink: 0;
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.18rem 0.55rem;
  min-width: 3rem; text-align: center;
}
.keyes-tag--pink { background: var(--pink-light); color: var(--pink-dark); }
.keyes-tag--green { background: var(--accent-pale); color: var(--green-dark); }
.keyes-tag--gold { background: var(--butter-light); color: var(--butter-dark); }
.keyes-tag--gray { background: #F0F0F0; color: var(--text-mid); }
@media (max-width: 700px) {
  .keyes-box { flex-direction: column; align-items: center; gap: 1rem; padding: 1.5rem 1.25rem; }
  .keyes-box-visual { width: 200px; }
}
@media (max-width: 700px) {
  .microscope-box { flex-direction: column; align-items: stretch; padding: 1.25rem; }
  .microscope-box-photo { width: 100%; }
}

/* =============================================
   アクセス（access.html）
   ============================================= */
.access-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.access-info dt { font-size: 0.78rem; color: var(--green-mid); letter-spacing: 0.1em; margin-top: 1.25rem; margin-bottom: 0.3rem; }
.access-info dd { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; }
.access-info dd a { color: var(--green-dark); font-weight: 500; }
.map-wrap { border-radius: 0; overflow: hidden; box-shadow: 0 8px 30px var(--shadow-strong); aspect-ratio: 4/3; background: var(--green-light); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin-top: 1.5rem; border: 1px solid var(--green-light); }
.hours-table th { background: var(--accent-pale); color: var(--green-dark); padding: 0.7rem 0.9rem; font-weight: 500; text-align: center; border: 1px solid var(--green-light); }
.hours-table td { padding: 0.7rem 0.9rem; border: 1px solid var(--green-light); color: var(--text-mid); text-align: center; }
.hours-open { color: var(--green-dark); font-weight: 600; }
.hours-closed { color: var(--text-light); }
/* ネット予約 */
.reserve-online {
  margin-top: 3rem; margin-bottom: 2rem;
}
.reserve-online-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}
.reserve-online-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1.5rem;
  background: #fff;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  text-align: center;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.reserve-online-btn:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(59, 170, 122, 0.20);
}
.reserve-online-btn--primary {
  background: var(--pink-main);
  color: #fff;
  border-color: var(--pink-main);
}
.reserve-online-btn--primary:hover {
  background: #fff;
  color: var(--pink-main);
  border-color: var(--pink-main);
  box-shadow: 0 8px 22px rgba(232, 160, 180, 0.25);
}
.reserve-online-btn-label {
  font-size: 0.78rem; letter-spacing: 0.12em;
  font-weight: 600;
}
.reserve-online-btn-text {
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.04em;
}
.reserve-online-btn-arrow {
  font-size: 1rem;
  margin-top: 0.2rem;
}

.reserve-banner {
  margin-top: 3rem; background: #fff;
  border: 2px solid var(--green-dark); border-radius: 0;
  padding: 2.5rem 3rem; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.reserve-banner h3 { font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.4rem; color: var(--green-dark); margin-bottom: 0.3rem; }
.reserve-banner p { font-size: 0.85rem; color: var(--text-mid); }
.reserve-tel { text-align: right; }
.reserve-tel .tel-num { font-size: 2rem; font-weight: 700; color: var(--green-dark); letter-spacing: 0.05em; display: block; line-height: 1.2; }
.reserve-tel .tel-num a { color: var(--green-dark); }
.reserve-tel .tel-sub { font-size: 0.78rem; color: var(--text-light); }

/* =============================================
   求人（recruit.html）
   ============================================= */
.recruit-message {
  background: var(--green-pale); border-radius: 0; padding: 3rem 3.5rem;
  margin-bottom: 4rem;
}
.recruit-message blockquote {
  font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.35rem; font-weight: 600;
  color: var(--green-dark); line-height: 1.8;
  border-left: 4px solid var(--pink-main); padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.recruit-message p { font-size: 0.9rem; color: var(--text-mid); line-height: 2.1; }
.job-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.job-card {
  background: var(--white-warm); border-radius: 0; padding: 2rem;
  border: 2px solid var(--green-pale);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.job-card:hover { border-color: var(--green-light); box-shadow: 0 8px 30px var(--shadow-strong); }
.job-card-tag {
  display: inline-block; background: var(--green-main); color: #fff;
  font-size: 0.72rem; padding: 0.25rem 0.75rem; border-radius: 50px;
  margin-bottom: 1rem; font-weight: 500;
}
.job-card h3 { font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.2rem; color: var(--green-dark); margin-bottom: 1.25rem; }
.job-detail { list-style: none; }
.job-detail li { font-size: 0.85rem; color: var(--text-mid); padding: 0.5rem 0; border-bottom: 1px solid var(--green-pale); display: flex; gap: 0.75rem; align-items: baseline; }
.job-detail li:last-child { border-bottom: none; }
.job-detail-label { color: var(--green-mid); font-size: 0.75rem; white-space: nowrap; min-width: 4.5rem; flex-shrink: 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 4rem; }
.benefit-item { background: var(--green-pale); border-radius: 0; padding: 1.5rem; text-align: center; }
.benefit-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.benefit-item h4 { font-size: 0.9rem; color: var(--green-dark); margin-bottom: 0.3rem; }
.benefit-item p { font-size: 0.78rem; color: var(--text-mid); line-height: 1.7; }
.apply-box {
  background: var(--green-dark); border-radius: 0; padding: 3.5rem;
  text-align: center; color: #fff;
}
.apply-box h3 { font-family: 'M PLUS Rounded 1c', sans-serif; font-size: 1.5rem; margin-bottom: 0.75rem; }
.apply-box p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); margin-bottom: 1.5rem; }
.apply-tel { font-size: 1.9rem; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.apply-tel a { color: #fff; }
.apply-note { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); }

/* 求める人材像 */
.ideal-wrap {
  background: #fff;
  padding: 3rem 2.5rem 2.5rem;
  margin-bottom: 4rem;
  border: 1px solid var(--green-light);
}
.ideal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem;
  margin: 1.5rem 0 0;
}
.ideal-item {
  position: relative;
  background: var(--accent-pale);
  padding: 2.5rem 1.3rem 1.5rem;
  border: 1px solid var(--green-light);
  display: block;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.ideal-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(91, 191, 165, 0.18);
}
.ideal-num {
  position: absolute;
  top: -22px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem; font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(59, 170, 122, 0.25);
}
.ideal-item p {
  font-size: 0.9rem; color: var(--text-dark);
  line-height: 1.75; margin: 0;
  font-weight: 500;
}

/* 採用サイトへのリンクボタン */
.recruit-link-wrap {
  text-align: center;
  margin-bottom: 3rem;
}
.recruit-link-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--green-dark); color: #fff;
  font-size: 1rem; letter-spacing: 0.06em;
  padding: 1.1rem 3rem;
  border: 2px solid var(--green-dark);
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.recruit-link-btn:hover {
  background: #fff; color: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px var(--shadow-strong);
}
.recruit-link-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor; flex-shrink: 0;
}

/* =============================================
   フッター
   ============================================= */
footer {
  background: #3BAA7A; color: rgba(255, 255, 255, 0.92);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 1.5rem;
}
.footer-logo .logo-name { color: #fff; font-size: 1.1rem; }
.footer-logo .logo-sub { color: rgba(255, 255, 255, 0.55); }
.footer-desc { font-size: 0.82rem; line-height: 1.9; margin-top: 0.75rem; color: rgba(255, 255, 255, 0.6); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; align-content: start; }
.footer-nav a { font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); padding: 0.25rem 0; transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: rgba(255, 255, 255, 0.38); flex-wrap: wrap; gap: 0.5rem; }
.footer-insta { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(255, 255, 255, 0.65); font-size: 0.82rem; margin-top: 1rem; transition: color 0.2s; }
.footer-insta:hover { color: #fff; }

/* =============================================
   アニメーション
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .prevention-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .prev-flow-step-body { grid-template-columns: 1fr 300px; gap: 1.75rem; }
  .disease-grid { grid-template-columns: repeat(2, 1fr); }
  .job-cards { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .ideal-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .flow-arrow { display: none; }
}
@media (max-width: 900px) {
  .about-grid, .about-grid-new, .doctor-grid, .access-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-small { position: static; }
  .about-img-small .img-placeholder { aspect-ratio: 16/9; }
  .doctor-career-cols { grid-template-columns: 1fr; gap: 0; }
  .prevention-intro { grid-template-columns: 1fr; gap: 2rem; }
  .prev-1mm-text { padding: 2rem 1.5rem; }
  .gallery-slide { flex: 0 0 50%; }
  .flow-item-body { grid-template-columns: 1fr; gap: 1.25rem; }
  .banner-links { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 1.25rem; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .checkup-flow { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.55rem; }
  .slide-title { font-size: 2.2rem; }
  .doctor-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  nav ul.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white-warm); padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--green-pale);
    gap: 1rem; z-index: 999;
  }
  .gallery-slide { flex: 0 0 100%; }
  .flow-item-head { padding: 1rem 2.75rem 1rem 1.25rem; }
  .flow-item-head::after { right: 1.25rem; }
  .flow-item-body { padding: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .reserve-banner { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .reserve-tel { text-align: center; }
  .section { padding: 70px 1.25rem; }
  .news-card { flex-direction: column; align-items: flex-start; gap: 0.4rem; padding: 0.85rem 1rem; border-left-width: 2px; }
  .news-card-meta { flex-direction: row; align-items: center; gap: 0.6rem; min-width: unset; }
  .news-divider { display: none; }
  .news-date { font-size: 0.78rem; }
  .news-cat { font-size: 0.6rem; padding: 0.1rem 0.5rem; }
  .news-card-text { font-size: 0.82rem; line-height: 1.65; }
  .news-cards { gap: 0.5rem; }
  #news.section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .flow-tabs { gap: 0.4rem; }
  .flow-tab-btn { min-width: 80px; padding: 0.6rem 0.75rem; }
  .flow-tab-label { font-size: 0.72rem; }
  .flow-panel { padding: 1.75rem 1.25rem; }
  .flow-panel-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .flow-panel-title { font-size: 1.15rem; }
  .prevention-menu-grid { grid-template-columns: 1fr; }
  .prev-flow-step-body { grid-template-columns: 1fr; }
  .disease-grid { grid-template-columns: 1fr; }
  .disease-conclusion { padding: 2rem 1.5rem; }
  .prev-schedule { gap: 0.5rem; }
  .prev-brushing-grid { grid-template-columns: 1fr; }
  .prev-brushing-result { padding: 1.25rem; }
  .kids-prev-grid { grid-template-columns: 1fr; }
  .prev-schedule-item { min-width: 100px; padding: 1rem 1.25rem; }
  .checkup-flow { grid-template-columns: 1fr 1fr; }
  .job-cards { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .ideal-grid { grid-template-columns: 1fr; }
  .bring-cards-grid { grid-template-columns: 1fr !important; }
  .bring-card { display: flex !important; align-items: center; gap: 12px; }
  .bring-card-emoji { margin-bottom: 0 !important; flex-shrink: 0; }
  .bring-card-text { flex: 1; min-width: 0; }
  .recruit-message { padding: 2rem; }
  .apply-box { padding: 2.5rem 1.5rem; }
  .slide-title { font-size: 1.75rem; }
  .slide-prev, .slide-next { width: 40px; height: 40px; font-size: 1.2rem; }
  #slideshow { height: auto; aspect-ratio: 16 / 10; min-height: 0; }
  .slide-text { padding: 0 1.25rem; }
  .slide-badge { display: none; }
  .slide-title { font-size: 1.35rem; line-height: 1.45; margin-bottom: 0.8rem; }
  .slide-desc { display: none; }
  .slide-btns { gap: 0.4rem; }
  .slide-btns .btn-outline { display: none; }
  .btn-primary { padding: 0.55rem 1.1rem; font-size: 0.78rem; }
  .page-hero { height: 190px; }
  .page-hero-title { font-size: 1.6rem; }
  .prevention-intro { padding: 2rem; }
  .prevention-big-num { font-size: 4rem; }
}

/* 設備案内 - 薬機法ご案内ボックス */
.equipment-disclaimer {
  max-width: 900px;
  margin: 2.5rem auto 1.5rem;
  padding: 1.5rem 1.75rem;
  background: #FBF7F0;
  border: 1px solid var(--butter);
  border-left: 4px solid var(--butter-dark);
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.equipment-disclaimer h4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 1rem;
  color: var(--green-dark);
  margin: 0 0 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.equipment-disclaimer p { margin: 0 0 0.6rem; }
.equipment-disclaimer ul {
  margin: 0.5rem 0 0.8rem 1.25rem;
  padding: 0;
}
.equipment-disclaimer ul li { margin-bottom: 0.35rem; font-size: 0.85rem; }
.equipment-disclaimer-note {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--butter);
  font-size: 0.8rem;
  line-height: 1.9;
  color: var(--text-light);
}
