
/* ===================================
   Base
=================================== */
:root {
  --pink: #E85A8A;
  --pink-deep: #D14578;
  --pink-soft: #FCE7EE;
  --pink-wash: #FFF5F8;
  --pink-pale: #FDF0F5;
  --pink-ultra: #FFF5F9;
  --teal: #3A9E95;
  --teal-pale: #EDF8F7;
  --gold: #C4956A;
  --gold-pale: #FBF5EF;
  --blue: #5B8DB8;
  --blue-pale: #EEF4F9;
  --ink: #2A2A2A;
  --sub: #7A7A7A;
  --line: #EFD9E2;
  --bg: #FFFFFF;
  --off: #FAFAFA;
  --navy: #1C2140;
  --g200: #E8E8E8;
  --g600: #666;
  --radius: 2px;
  --serif: 'Quicksand', 'Zen Maru Gothic', sans-serif;
  --sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --fsc: 'Dancing Script', cursive;
  --fen: 'Cormorant Garamond', serif;
  --tr: .22s ease;
  --sh: 0 4px 28px rgba(0,0,0,.07);
  --header-h: 140px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.9;
  letter-spacing: .05em;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .7; }
ul { list-style: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Section title */
.section-label {
  text-align: center;
  margin-bottom: 56px;
}
.section-label__en {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--pink);
  display: inline-block;
  position: relative;
  line-height: 1;
}
.section-label__en::before,
.section-label__en::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--pink);
}
.section-label__en::before { right: calc(100% + 20px); }
.section-label__en::after { left: calc(100% + 20px); }
.section-label__ja {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  letter-spacing: .3em;
  color: var(--sub);
  font-weight: 500;
}

/* ===================================
   Header
=================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header__top {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
}
.header__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: block; }
.logo__img {
  display: block;
  height: 64px;
  width: auto;
}
.logo__img--white {
  filter: brightness(0) invert(1);
}
.header__meta {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__addr {
  font-size: 16px;
  color: var(--sub);
  letter-spacing: .06em;
  line-height: 1.7;
  text-align: right;
}
.header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.header__tel-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__tel-num svg { width: 18px; height: 18px; }
.header__tel-goro {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--pink);
  padding-right: 2px;
}
.header__tel-goro strong {
  color: var(--pink);
  font-weight: 400;
  letter-spacing: .35em;
  position: relative;
  left: 10px;
}
.header__bottom {
  background: var(--pink);
}
.gnav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.gnav__list {
  display: flex;
  justify-content: center;
  gap: 0;
}
.gnav__list > li {
  flex: 1;
  max-width: 220px;
  text-align: center;
  position: relative;
}
.gnav__list > li + li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 14px;
  background: rgba(255,255,255,.35);
}
.gnav__list a {
  display: block;
  padding: 18px 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .14em;
  color: #fff;
  position: relative;
  transition: background .3s;
}
.gnav__list a:hover {
  background: var(--pink-deep);
  opacity: 1;
}

/* 子メニュー持ちの親メニュー：href="#" にしてあるのでクリック不可の見た目に */
.gnav__list a.is-no-link {
  cursor: default;
}

/* Gnav Dropdown (PC) ─ has-dropdown（自作フォールバック）と menu-item-has-children（WP標準）両対応 */
.gnav__list li.has-dropdown,
.gnav__list li.menu-item-has-children { position: relative; }

.gnav__dropdown,
.gnav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 220px;
  background: #fff;
  padding: 8px 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  z-index: 100;
  list-style: none;
}
.gnav__list li.has-dropdown:hover .gnav__dropdown,
.gnav__list li.has-dropdown:focus-within .gnav__dropdown,
.gnav__list li.menu-item-has-children:hover .sub-menu,
.gnav__list li.menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.gnav__dropdown li,
.gnav__list .sub-menu li {
  display: block;
  max-width: none;
  flex: none;
  text-align: left;
}
.gnav__dropdown li + li::before,
.gnav__list .sub-menu li + li::before { display: none; }
.gnav__dropdown a,
.gnav__list .sub-menu a {
  display: block;
  padding: 12px 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: left;
  transition: background .2s ease, color .2s ease;
}
.gnav__dropdown a:hover,
.gnav__list .sub-menu a:hover {
  background: var(--pink-wash);
  color: var(--pink);
  opacity: 1;
}

/* ===================================
   Hamburger & Drawer (SP)
=================================== */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.hamburger__bars {
  display: block;
  width: 28px;
  height: 20px;
  position: relative;
}
.hamburger__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--pink);
  transition: all .3s ease;
}
.hamburger__bars span:nth-child(1) { top: 2px; }
.hamburger__bars span:nth-child(2) { top: 9px; }
.hamburger__bars span:nth-child(3) { top: 16px; }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #FAF7F5;
  transition: right .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 105;
  padding: 20px 20px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer.is-open { right: 0; }

.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.drawer__logo img {
  height: 50px;
  width: auto;
  display: block;
}
.drawer__close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.drawer__close:hover { background: var(--pink-deep); }
.drawer__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.drawer__nav { margin-bottom: 20px; }
.drawer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.drawer__item {
  background: #fff;
  border-radius: 2px;
}
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  font-size: 16px;
  letter-spacing: .08em;
  font-weight: 500;
  color: var(--pink);
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.drawer__plus {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-wash);
  flex-shrink: 0;
}
.drawer__plus::before,
.drawer__plus::after {
  content: '';
  position: absolute;
  background: var(--pink);
  transition: transform .3s;
}
.drawer__plus::before {
  left: 8px; right: 8px;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}
.drawer__plus::after {
  top: 8px; bottom: 8px;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}
.drawer__toggle[aria-expanded="true"] .drawer__plus::after {
  transform: translateX(-50%) rotate(90deg);
}
.drawer__sublist {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: #fff;
}
.drawer__toggle[aria-expanded="true"] + .drawer__sublist {
  max-height: 600px;
}
.drawer__sublist li {
  border-top: 1px solid var(--line);
}
.drawer__sublist a {
  display: block;
  padding: 14px 22px 14px 36px;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: .06em;
}
.drawer__sublist a::before {
  content: '▸';
  color: var(--pink);
  margin-right: 10px;
  font-weight: 700;
}

.drawer__tel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 240px;
  margin: 50px auto 0;
  padding: 10px 30px;
  border-radius: 7px;
  background: var(--pink);
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s;
}
.drawer__tel-btn:hover { background: var(--pink-deep); opacity: 1; }
.drawer__tel-btn svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 102;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* SP 固定電話番号ボタン（浮かせる） */
.sp-call-bar { display: none; }
@media (max-width: 768px) {
  .sp-call-bar {
    position: fixed;
    bottom: 20px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--pink);
    color: #fff;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .04em;
    z-index: 90;
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(232, 90, 138, .35), 0 2px 6px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .sp-call-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(232, 90, 138, .45), 0 4px 8px rgba(0,0,0,.1);
    opacity: 1;
  }
  .sp-call-bar svg {
    width: 18px; height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
  }
  body { padding-bottom: 88px; }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .3s, background .3s;
  z-index: 90;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  transform: translateY(-2px);
  background: var(--pink-deep);
  opacity: 1;
}
.back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ===================================
   Hero / MV（全面写真スライド＋左に白枠キャッチ）
=================================== */
.hero {
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: transform, opacity;
  animation: heroFade 36s infinite, heroZoom 36s infinite;
}
/* 左側を少し明るくしてキャッチを読みやすく */
.hero__slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,0) 48%);
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slide:nth-child(3) { animation-delay: 12s; }
.hero__slide:nth-child(4) { animation-delay: 18s; }
.hero__slide:nth-child(5) { animation-delay: 24s; }
.hero__slide:nth-child(6) { animation-delay: 30s; }
/* ケンバーンズ：表示中だけゆっくり拡大 */
@keyframes heroZoom {
  0%   { transform: scale(1.0); }
  19%  { transform: scale(1.07); }
  100% { transform: scale(1.07); }
}
/* 6枚 × 各6秒 = 36秒で1周。背景写真とキャッチで同じタイミングを共有 */
@keyframes heroFade {
  0%    { opacity: 0; }
  2.5%  { opacity: 1; }
  16.5% { opacity: 1; }
  19%   { opacity: 0; }
  100%  { opacity: 0; }
}

/* 左の白枠キャッチ */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__copy {
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 48px 52px;
  width: 540px;      /* 明示幅。中の .hero__msg が absolute なので幅がないと潰れる */
  max-width: 100%;
  flex: 0 0 auto;    /* flex で縮まないように */
  border-radius: 10px;
}
.hero__messages { position: relative; min-height: 300px; }
.hero__msg {
  position: absolute; inset: 0;
  opacity: 0;
  animation: heroFade 36s infinite;
}
.hero__msg:nth-child(1) { animation-delay: 0s; }
.hero__msg:nth-child(2) { animation-delay: 6s; }
.hero__msg:nth-child(3) { animation-delay: 12s; }
.hero__msg:nth-child(4) { animation-delay: 18s; }
.hero__msg:nth-child(5) { animation-delay: 24s; }
.hero__msg:nth-child(6) { animation-delay: 30s; }
.hero__msg-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px; font-weight: 500;
  color: var(--pink);
  letter-spacing: .1em;
  margin: 0 0 14px;
}
.hero__lead {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.6;
  letter-spacing: .04em;
  margin: 0;
  color: var(--ink);
}
.hero__lead .em { color: var(--pink-deep); }
.hero__sub {
  font-size: 16px; line-height: 1.9; color: var(--sub);
  margin: 18px 0 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .16em;
  transition: all .3s;
  border: 1px solid var(--pink);
  border-radius: 7px;
}
.btn--pink { background: var(--pink); color: #fff; }
.btn--pink:hover { background: var(--pink-deep); border-color: var(--pink-deep); opacity: 1; }
.btn--ghost { background: transparent; color: var(--pink); }
.btn--ghost:hover { background: var(--pink); color: #fff; opacity: 1; }
.btn__arrow { width: 20px; height: 1px; background: currentColor; position: relative; }
.btn__arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ===================================
   Info (News + Clinic Hours)
=================================== */
.info { padding: 120px 0; background: var(--bg); position: relative; }
/* Googleカレンダー埋め込み枠（iframe を貼るとこの枠いっぱいに表示される） */
.gcal-embed {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.gcal-embed iframe {
  display: block;
  width: 100%;
  height: 520px;   /* 月表示が収まる高さ。既存カレンダー3種（診療/休診/祝日）を表示 */
  border: 0;
}
.info__calendar-note {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--pink-deep);
}
.gcal-embed__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.8;
}
.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;   /* 両列を同じ高さに揃え、縦の区切り線を下まで伸ばす */
}
/* 左列：診療時間（上）＋お知らせ（下）を縦積み。間は .info__news の線で区切る */
.info__left {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
/* News と Clinic Hours を分ける仕切り（PC＝縦線／中央に菱形のアクセント） */
.info__divider {
  position: relative;
  align-self: stretch;
  width: 1px;
  min-height: 220px;
  background: linear-gradient(to bottom, transparent, var(--line) 12%, var(--line) 88%, transparent);
}
.info__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--pink);
  opacity: .55;
}
/* 診療時間・お知らせ・カレンダーは背景なし。要素間を線で区切る */
/* 診療時間 → お知らせ の間に横線 */
.info__news {
  border-top: 1px solid var(--pink);
  margin-top: 44px;
  padding-top: 44px;
}
/* PC：左列（診療時間＋お知らせ）とカレンダーの間に縦線 */
.info__calendar {
  border-left: 1px solid var(--pink);
  padding-left: 56px;
}
.info__block h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.info__block > small {
  display: block;
  font-size: 16px;
  letter-spacing: .3em;
  color: var(--sub);
  margin-bottom: 32px;
}

/* News */
.news-list { border-top: 1px solid var(--line); }
.news-item {
  display: grid;
  grid-template-columns: 120px 90px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.news-item__date {
  font-family: var(--serif);
  letter-spacing: .05em;
  color: var(--sub);
}
.news-item__tag {
  display: inline-block;
  padding: 4px 8px;
  text-align: center;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 16px;
  letter-spacing: .05em;
  font-weight: 500;
  line-height: 1.4;
}
.news-item__tag--info { background: #E8F3F0; color: #4A9B8E; }
.news-item__tag--green { background: #E8F3F0; color: #4A9B8E; }
.news-more {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  letter-spacing: .2em;
  color: var(--pink);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 4px;
}

/* Hours */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  background: #fff;
  border: 1.5px solid var(--pink);
  overflow: hidden;
}
.hours-table th,
.hours-table td {
  padding: 14px 4px;
  text-align: center;
  border: 1px solid var(--line);
}
.hours-table thead th {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
  letter-spacing: .08em;
}
.hours-table thead th:first-child { background: var(--pink-deep); border-color: var(--pink-deep); }
.hours-table tbody th {
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  background: var(--pink-wash);
  white-space: nowrap;
}
.hours-table .dot { color: var(--pink); font-size: 20px; font-weight: 700; }
.hours-table .dash { color: #c9c9c9; font-size: 18px; }
.hours-note {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--pink-wash);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  border-left: 2px solid var(--pink);
}
.hours-note strong { color: var(--pink); font-weight: 600; }

/* ===================================
   Greeting + Features
=================================== */
.greeting {
  padding: 120px 0;
  background: var(--pink-wash);
  position: relative;
}
.greeting__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 88px;
}
.greeting__photo {
  aspect-ratio: 4/5;
  max-width: 300px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.greeting__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.greeting__body h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .08em;
  margin-bottom: 32px;
}
.greeting__body h3 span { color: var(--pink); }
.greeting__body p {
  font-size: 16px;
  line-height: 2.1;
  color: #444;
  margin-bottom: 20px;
}
.greeting__sign {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 40px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.greeting__sign small { font-size: 16px; color: var(--sub); letter-spacing: .2em; }
.greeting__sign strong { font-size: 20px; font-weight: 500; letter-spacing: .2em; }

/* Feature icons */
.features {
  border-top: 1px solid var(--line);
  padding-top: 72px;
}
.features__heading {
  text-align: center;
  margin-bottom: 48px;
}
.features__heading span {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .3em;
  color: var(--pink);
  display: block;
  margin-bottom: 8px;
}
.features__heading h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .1em;
}
.features__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.feature {
  flex: 0 1 calc((100% - 48px) / 3);
  background: #fff;
  padding: 40px 24px 32px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .3s;
  position: relative;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .3s;
}
.feature:hover { transform: translateY(-4px); border-color: var(--pink-soft); }
.feature:hover::before { width: 100%; }
.feature__num {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .2em;
  color: var(--pink);
  margin-bottom: 16px;
  display: block;
}
.feature__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon svg {
  width: 100%;
  height: 100%;
  color: var(--pink);
  fill: currentColor;
}
.feature__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.7;
  color: var(--ink);
}

/* ===================================
   Medical
=================================== */
.medical { padding: 120px 0; background: #fff; }
.medical__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.medical__grid > .med-card {
  grid-column: span 2;
}
.medical__grid > .med-card:nth-child(7) {
  grid-column: 2 / span 2;
}
.med-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--pink-soft);
  cursor: pointer;
  display: block;
}
.med-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.med-card:hover .med-card__img { transform: scale(1.06); }
.med-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(60, 60, 60, .3);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background .3s;
}
.med-card__overlay::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.8);
  pointer-events: none;
  transition: border-color .3s;
}
.med-card:hover .med-card__overlay {
  background: rgba(232, 90, 138, .42);
}
.med-card:hover .med-card__overlay::before {
  border-color: rgba(255,255,255,1);
}
.med-card__en {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.85);
  margin-bottom: 4px;
}
.med-card__ja {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #fff;
}

/* ===================================
   Instagram
=================================== */
/* Facebook（公式フェイスブック）埋め込みセクション ── 公式 Page Plugin の iframe を表示 */
.fb { padding: 120px 0; background: var(--pink-wash); }
/* Page Plugin は幅500px上限なので、左に紹介文＋ボタン／右にフィードの2カラムで横幅を使う */
/* 1カラム中央寄せ：タイトル → 導入文 → FB埋め込み → ボタン の縦並び */
.fb__lead {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .04em;
  color: var(--ink);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.fb-embed {
  width: 100%;
  max-width: 500px;      /* Page Plugin の上限に合わせる */
  margin: 0 auto 32px;
}
/* SDK が生成するフィードを、必ずコンテナ幅に収める（SE等でも見切れ防止） */
.fb-embed .fb-page,
.fb-embed .fb-page span,
.fb-embed .fb-page iframe { max-width: 100% !important; }
.fb__cta { text-align: center; }
.fb__cta .btn { margin: 0 4px; }
/* iframe 貼り付け前のプレースホルダー */
.fb-embed__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 260px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.8;
}

/* ===================================
   Access
=================================== */
.access { padding: 0; background: #fff; }
.access__map {
  height: 420px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.access__info {
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
/* ホスピタ掲載ページ バナー（診療時間表の下） */
.footer-hospita {
  display: block;
  margin-top: 24px;
  max-width: 250px;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity .22s ease, transform .22s ease;
}
.footer-hospita img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-hospita:hover {
  opacity: .88;
  transform: translateY(-2px);
}
.access__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.access__brand .logo__img { height: 60px; }
.access__details { font-size: 16px; line-height: 2; }
.access__row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.access__row svg { width: 16px; height: 16px; margin-top: 6px; stroke: var(--pink); fill: none; stroke-width: 1.4; }
.access__contact { margin-top: 20px; }
.access__tel {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: .05em;
  display: inline-block;
}
.access__tel-goro {
  display: block;
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--pink);
}
.access__tel-goro strong {
  color: var(--pink);
  font-weight: 500;
  position: relative;
  right: -83px;
  top: -20px;
}

/* ===================================
   Gallery（院内画像カルーセル）
=================================== */
.gallery {
  position: relative;
  background: #fff;
  padding: 48px 0 56px;
  overflow: hidden;
}
.gallery__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 50s linear infinite;
}
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}
.gallery__slide {
  flex: 0 0 auto;
  width: 480px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .gallery { padding: 32px 0 40px; }
  .gallery__slide { width: 320px; }
  .gallery__track { animation-duration: 36s; }
}

/* ===================================
   Shonan Band（湘南モチーフ）
=================================== */
.shonan-band {
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.shonan-band__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ===================================
   Page Header（下層ページ共通：パンくず＋タイトル）
=================================== */
.page-header {
  padding: 80px 0 60px;
  background: var(--pink-wash);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.page-header__en {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: .08em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.page-header__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .25em;
  color: var(--ink);
}
.breadcrumb {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--sub);
}
.breadcrumb__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumb__list li + li::before {
  content: '/';
  color: var(--line);
}
.breadcrumb a { color: var(--pink); }
.breadcrumb a:hover { text-decoration: underline; opacity: 1; }
.breadcrumb__current { color: var(--sub); }
.breadcrumb__nolink { color: var(--ink); }

/* ===================================
   Single / Page content（the_content() の出力）
=================================== */
.page-content {
  padding: 80px 0 120px;
  background: #fff;
}
.page-content__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-content__body > * + * { margin-top: 1.5em; }
.page-content__body h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ink);
  padding: 20px 0 16px 24px;
  border-left: 4px solid var(--pink);
  background: linear-gradient(to bottom, transparent 0, transparent calc(100% - 1px), var(--line) calc(100% - 1px));
  margin-top: 80px;
  line-height: 1.5;
}
.page-content__body h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--pink);
  margin-top: 56px;
  line-height: 1.6;
  padding-left: 16px;
  border-left: 3px solid var(--pink);
}
.page-content__body h4 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
  margin-top: 40px;
  line-height: 1.6;
}
.page-content__body p { line-height: 2; }
.page-content__body ul,
.page-content__body ol {
  padding-left: 1.5em;
}
.page-content__body ul li,
.page-content__body ol li {
  margin-bottom: .5em;
  line-height: 1.9;
}
.page-content__body ul { list-style: disc; }
.page-content__body ol { list-style: decimal; }
.page-content__body ul li::marker,
.page-content__body ol li::marker {
  color: var(--pink);
}
.page-content__body blockquote {
  background: var(--pink-wash);
  border-left: 3px solid var(--pink);
  padding: 24px 28px;
  color: #444;
  font-size: 15px;
  line-height: 2;
}
.page-content__body a {
  color: var(--pink);
  border-bottom: 1px solid var(--pink-soft);
}
.page-content__body a:hover { border-bottom-color: var(--pink); opacity: 1; }
.page-content__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.page-content__body table th,
.page-content__body table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
  line-height: 1.8;
}
.page-content__body table th {
  background: var(--pink-wash);
  color: var(--ink);
  font-weight: 500;
}
.page-content__body img { border-radius: 2px; }

/* WordPress標準のアラインメント */
.page-content__body .alignleft  { float: left;  margin: 0 24px 16px 0; }
.page-content__body .alignright { float: right; margin: 0 0 16px 24px; }
.page-content__body .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.page-content__body .alignwide {
  margin-left: calc(50% - 50vw + 24px);
  margin-right: calc(50% - 50vw + 24px);
  max-width: calc(100vw - 48px);
}
.page-content__body .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}

/* WPブロック微調整 */
.page-content__body .wp-block-buttons { gap: 12px; }
.page-content__body .wp-block-button__link {
  background: var(--pink);
  color: #fff;
  border-radius: 7px;
  padding: 14px 28px;
  font-size: 15px;
  letter-spacing: .12em;
  border: 1px solid var(--pink);
}
.page-content__body .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--pink);
}

/* ===================================
   Block Patterns ─ 診療科目ページ用
   ブロックエディタで配置するセクション群
=================================== */

/* セクションラッパー（.sec / .wrap） */
.page-content__body .sec {
  padding: 84px 28px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}
.page-content__body .sec > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.page-content__body .sec-ey {
  font-family: var(--fsc);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 4px;
  line-height: 1.2;
}
.page-content__body .sec-ttl {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .03em;
  line-height: 1.4;
  position: relative;
  padding: 0 0 18px;
  margin: 0 0 40px;
  border: 0;
  background: none;
}
.page-content__body .sec-ttl::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2.5px;
  border-radius: 2px;
}
.page-content__body .sec-ttl.ctr {
  text-align: center;
}
.page-content__body .sec-ttl.ctr::after {
  left: 50%;
  transform: translateX(-50%);
}

/* テーマカラー別 */
.page-content__body .sec-pink .sec-ey { color: var(--pink); }
.page-content__body .sec-pink .sec-ttl::after { background: var(--pink); }
.page-content__body .sec-teal .sec-ey { color: var(--teal); }
.page-content__body .sec-teal .sec-ttl::after { background: var(--teal); }
.page-content__body .sec-gold .sec-ey { color: var(--gold); }
.page-content__body .sec-gold .sec-ttl::after { background: var(--gold); }
.page-content__body .sec-blue .sec-ey { color: var(--blue); }
.page-content__body .sec-blue .sec-ttl::after { background: var(--blue); }

/* ABOUT（リード文＋ポイント3つ） */
.page-content__body .lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.page-content__body .lead-photo {
  aspect-ratio: 4/3;
  border-radius: 26px 80px 26px 26px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  margin: 0;
}
.page-content__body .lead-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .lead-catch {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.55;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: none;
}
.page-content__body .hl-pink {
  background: linear-gradient(transparent 60%, rgba(255,235,59,.55) 60%);
}
.page-content__body .lead-p {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 14px;
}
.page-content__body .lead-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.page-content__body .lead-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--pink-ultra);
  border-radius: 12px;
  padding: 14px 18px;
}
.page-content__body .lead-point-ic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  position: relative;
}
.page-content__body .lead-point-ic::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
.page-content__body .lead-point-tx {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.page-content__body .lead-point-tx small {
  display: block;
  font-weight: 400;
  color: var(--g600);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 4px;
}

/* CARIES（虫歯治療） */
.page-content__body .caries-sub-h {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.5;
}
.page-content__body .filling-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.page-content__body .filling-photo {
  aspect-ratio: 3/2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh);
  margin: 0;
}
.page-content__body .filling-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .caries-p {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 16px;
}
.page-content__body .caries-p:last-child {
  margin-bottom: 0;
}

/* 進行段階テーブル */
.page-content__body .c-table {
  margin: 16px 0 24px;
}
.page-content__body .c-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh);
  border: 0;
}
.page-content__body .c-table thead th {
  background: var(--teal);
  color: #fff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  letter-spacing: .04em;
  border: 0;
}
.page-content__body .c-table thead th:first-child {
  width: 80px;
  text-align: center;
}
.page-content__body .c-table tbody tr:nth-child(odd) td {
  background: #fff;
}
.page-content__body .c-table tbody tr:nth-child(even) td {
  background: var(--teal-pale);
}
.page-content__body .c-table tbody td {
  padding: 14px 20px;
  font-size: 16px;
  line-height: 1.7;
  border: 0;
  border-bottom: 1px solid var(--g200);
}
.page-content__body .c-table tbody td:first-child {
  font-weight: 700;
  color: var(--teal);
  text-align: center;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .04em;
}
.page-content__body .c-table tbody td:nth-child(2) {
  font-weight: 600;
  color: var(--navy);
}

/* 注釈テキスト */
.page-content__body .caries-note {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 36px;
}
.page-content__body .caries-em {
  color: var(--teal);
  font-weight: 700;
}

/* CAD/CAM冠ボックス（汎用カラーボックス） */
.page-content__body .cadcam-box {
  background: linear-gradient(135deg, #F5FBFA 0%, #F5F9FC 100%);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  border: 1.5px solid rgba(58,158,149,.15);
}
.page-content__body .cadcam-box--pink {
  background: linear-gradient(135deg, #FFF5F8 0%, #FDF0F5 100%);
  border-color: rgba(232,90,138,.18);
}
.page-content__body .cadcam-text h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.4;
}
.page-content__body .cadcam-text .badge {
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: .04em;
}
.page-content__body .cadcam-text p {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0;
}
.page-content__body .cadcam-photo {
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh);
  margin: 0;
}
.page-content__body .cadcam-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ロゴ表示用：写真ではなくロゴを切らずに白カードで見せる（.cadcam-photo--logo） */
.page-content__body .cadcam-photo--logo {
  background: #a8cad0;
  width: 100px;
  height: 100px;
  padding: 14px;
  border-radius: 50%;
  flex: none;
}
.page-content__body .cadcam-photo--logo img {
  object-fit: contain;
}
/* ロゴ用の箱：ロゴはさりげなく小さく（幅ぶんだけ取り、残りをテキスト） */
.page-content__body .cadcam-box--logo {
  grid-template-columns: auto 1fr;
}

/* 症状カード（Symptoms） */
.page-content__body .kdc-symptoms {
  background: var(--off);
}
.page-content__body .symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.page-content__body .symptom-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1.5px solid var(--g200);
  transition: all var(--tr);
}
.page-content__body .symptom-card:hover {
  border-color: var(--pink);
  background: var(--pink-ultra);
}
.page-content__body .symptom-ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--pink);
}
.page-content__body .symptom-ic img,
.page-content__body .symptom-ic svg,
.page-content__body .symptom-ic .hi-icon {
  width: 60%;
  height: 60%;
  object-fit: contain;
  border-radius: 0;
}
.page-content__body .symptom-ic i {
  font-size: 22px;
}
.page-content__body .symptom-num {
  display: block;
  font-family: var(--fsc);
  font-size: 26px;
  font-weight: 400;
  color: #fee3ed;
  letter-spacing: .04em;
  margin: 0 0 8px;
  line-height: 1;
  text-align: center;
}

/* Dental Fear セクション（TSD法） */
.page-content__body .kdc-dental-fear {
  background: linear-gradient(135deg, #fdf2f6 0%, #f4eef9 50%, #edf8f7 100%);
}
.page-content__body .dental-fear-intro {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 36px;
}
.page-content__body .tsd-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
}
.page-content__body .tsd-box__h {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.5;
}
.page-content__body .tsd-box__p {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0 0 32px;
}
.page-content__body .tsd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.page-content__body .tsd-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 22px 24px;
  text-align: center;
  position: relative;
  border: 1px solid var(--pink);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.page-content__body .tsd-letter {
  font-family: var(--fen);
  font-size: 56px;
  font-style: italic;
  font-weight: 400;
  color: #fac7db;
  line-height: 1;
  margin: 0 0 16px;
  display: block;
}
.page-content__body .tsd-ttl {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .tsd-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  text-align: left;
  margin: 0;
}

/* After Care セクション（抜歯後の注意事項） */
.page-content__body .aftercare-intro {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 36px;
}
.page-content__body .aftercare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.page-content__body .aftercare-card {
  background: #fff;
  padding: 22px 22px 22px 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
}
.page-content__body .aftercare-card--ng {
  border-left-color: #E2935A;
}
.page-content__body .aftercare-ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.page-content__body .aftercare-card--ng .aftercare-ic {
  background: #FBEBD9;
  color: #E2935A;
}
.page-content__body .aftercare-ic i {
  font-size: 18px;
}
.page-content__body .aftercare-body {
  flex: 1;
}
.page-content__body .aftercare-ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.5;
}
.page-content__body .aftercare-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.8;
  margin: 0;
}

/* 緊急サイン */
.page-content__body .aftercare-alert {
  background: var(--pink-soft);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 28px;
}
.page-content__body .aftercare-alert__h {
  font-size: 16px;
  font-weight: 700;
  color: var(--pink);
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.page-content__body .aftercare-alert p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.9;
  margin: 0;
}

/* 口腔がんセクション専用：警戒色（濃ピンク #c9184a）に上書き */
.page-content__body .kdc-oral-cancer .prevention-signs__h i,
.page-content__body .kdc-oral-cancer .prevention-sign i {
  background: #c9184a;
}
.page-content__body .kdc-oral-cancer .prevention-sign {
  border-left-color: #c9184a;
}
.page-content__body .kdc-oral-cancer .oral-cancer-warn {
  margin: 20px 0 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.9;
}
.page-content__body .kdc-oral-cancer .oral-cancer-warn strong {
  color: #c9184a;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* がん患者歯科医療連携登録医院 認定バナー（口腔外科ページのカスタムHTMLブロックから移設） */
.page-content__body .kdc-cert-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 2px solid #399E95;
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 48px;
  box-shadow: 0 8px 24px rgba(57, 158, 149, 0.10);
}
.page-content__body .kdc-cert-banner__ic {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(57, 158, 149, 0.10);
  color: #399E95;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.page-content__body .kdc-cert-banner__body {
  flex: 1;
}
.page-content__body .kdc-cert-banner__chip {
  display: inline-block;
  background: #399E95;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 8px;
}
.page-content__body .kdc-cert-banner__ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2140;
  line-height: 1.4;
  margin: 0 0 8px;
}
.page-content__body .kdc-cert-banner__ttl strong {
  color: #399E95;
}
.page-content__body .kdc-cert-banner__tx {
  font-size: 1rem;
  line-height: 1.7;
  color: #1C2140;
  margin: 0;
}
.page-content__body a.kdc-cert-banner__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E85A8A;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 999px;
  padding: 14px 28px;
  text-decoration: none;
  transition: opacity .25s;
}
.page-content__body a.kdc-cert-banner__btn:hover {
  opacity: 0.8;
}
/* がん治療サポートセクション内の認定プレート */
.page-content__body .kdc-cert-plaque {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #399E95;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 10px 26px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .page-content__body .kdc-cert-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .page-content__body .kdc-cert-banner__btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* MATERIALS セクション（素材の選び方ガイド） */
.page-content__body .material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.page-content__body .material-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.page-content__body .material-badge {
  display: inline-block;
  background: var(--g200);
  color: var(--g600);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.page-content__body .material-badge--recommend {
  background: var(--pink);
  color: #fff;
}
.page-content__body .material-badge--premium {
  background: var(--pink-pale);
  color: var(--pink-deep);
}
.page-content__body .material-card__ttl {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.4;
}
.page-content__body .material-card__sub {
  font-family: var(--fen);
  font-style: italic;
  font-size: 16px;
  color: var(--pink);
  letter-spacing: .04em;
  display: block;
  margin-bottom: 16px;
}
.page-content__body .material-stars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.page-content__body .material-star-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--g600);
}
.page-content__body .material-stars-ic {
  display: inline-flex;
  gap: 2px;
}
.page-content__body .material-stars-ic .fa-solid { color: #fbbf24; }
.page-content__body .material-stars-ic .fa-regular { color: #d4d4d4; }
.page-content__body .material-stars-ic i { font-size: 14px; }
.page-content__body .material-card__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.8;
  text-align: left;
  margin: 0 0 18px;
}
.page-content__body .material-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}
.page-content__body .material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.page-content__body .material-tag {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* 比較表 */
.page-content__body .material-table-wrap {
  margin-top: 40px;
}
.page-content__body .material-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh);
}
.page-content__body .material-table thead th {
  background: var(--pink-pale);
  color: var(--pink-deep);
  padding: 18px 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: 0;
  line-height: 1.4;
}
.page-content__body .material-table thead th.is-highlight {
  background: var(--pink);
  color: #fff;
}
.page-content__body .material-table tbody td,
.page-content__body .material-table tbody th {
  padding: 16px 14px;
  font-size: 16px;
  border-bottom: 1px solid var(--g200);
  background: #fff;
  text-align: center;
  line-height: 1.6;
  color: var(--ink);
}
.page-content__body .material-table tbody th {
  text-align: left;
  font-weight: 700;
  background: #f5f5f5;
  color: var(--navy);
}
.page-content__body .material-table tbody td.is-highlight {
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-weight: 700;
}
.page-content__body .material-table tbody td.is-muted {
  color: var(--g600);
}
.page-content__body .material-table tbody tr:last-child td,
.page-content__body .material-table tbody tr:last-child th {
  border-bottom: 0;
}
.page-content__body .material-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--g600);
  line-height: 1.7;
}

/* WHITENING セクション（ホワイトニング） */
.page-content__body .wh-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.page-content__body .wh-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1px solid var(--g200);
}
.page-content__body .wh-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--g200);
}
.page-content__body .wh-num {
  font-family: var(--fen);
  font-style: italic;
  font-size: 32px;
  color: var(--blue);
  line-height: 1;
}
.page-content__body .wh-card__ttl {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}
.page-content__body .wh-card__sub {
  font-size: 14px;
  color: var(--g600);
  margin-top: 2px;
}
.page-content__body .wh-spec {
  margin: 0;
}
.page-content__body .wh-spec div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dotted var(--g200);
}
.page-content__body .wh-spec div:last-child {
  border-bottom: 0;
}
.page-content__body .wh-spec dt {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}
.page-content__body .wh-spec dd {
  font-size: 16px;
  margin: 0;
  color: var(--ink);
  line-height: 1.7;
}
.page-content__body .wh-for {
  margin: 18px 0 0;
  background: var(--blue-pale);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--ink);
}
.page-content__body .wh-for strong {
  color: var(--blue);
  font-weight: 700;
}

/* Before/After + トーンゲージ */
.page-content__body .wh-ba {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 32px;
}
.page-content__body .wh-ba-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.page-content__body .wh-ba-state {
  text-align: center;
}
.page-content__body .wh-ba-tag {
  display: inline-block;
  font-family: var(--fen);
  font-style: italic;
  font-size: 18px;
  letter-spacing: .1em;
  color: var(--g600);
  margin-bottom: 10px;
}
.page-content__body .wh-ba-tag--after {
  color: var(--blue);
}
.page-content__body .wh-ba-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 12px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--g200);
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.page-content__body .wh-ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .wh-ba-state p {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.8;
  margin: 0;
}
.page-content__body .wh-ba-arrow {
  color: var(--blue);
  font-size: 22px;
  text-align: center;
}
.page-content__body .wh-gauge {
  margin-top: 28px;
}
.page-content__body .wh-gauge-bar {
  display: flex;
  height: 26px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--g200);
}
.page-content__body .wh-gauge-bar span {
  flex: 1;
}
.page-content__body .wh-gauge-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  color: var(--g600);
}

/* TREATMENTS セクション（治療メニュー） */
.page-content__body .treat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.page-content__body .treat-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.page-content__body .treat-card__head {
  background: var(--teal-pale);
  padding: 22px 26px;
}
.page-content__body .treat-card__ttl {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.4;
}
.page-content__body .treat-card__sub {
  font-family: var(--fen);
  font-size: 18px;
  font-style: italic;
  color: var(--teal);
  letter-spacing: .04em;
  margin-top: 4px;
  display: block;
}
.page-content__body .treat-card__body {
  padding: 22px 26px 26px;
}
.page-content__body .treat-card__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0 0 18px;
}
.page-content__body .treat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-content__body .treat-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* TMD セクション（顎関節症） */

/* 治療法ボックス */
.page-content__body .tmd-treat-box {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 32px 36px;
}
.page-content__body .tmd-treat-h {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.5;
}
.page-content__body .tmd-treat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.page-content__body .tmd-treat {
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 4px solid var(--blue);
}
.page-content__body .tmd-treat-ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.page-content__body .tmd-treat-ic i {
  font-size: 18px;
}
.page-content__body .tmd-treat-body {
  flex: 1;
}
.page-content__body .tmd-treat-ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .tmd-treat-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.8;
  margin: 0;
}

/* Wisdom Tooth セクション（親知らずについて） */
.page-content__body .wisdom-intro {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 36px;
}
.page-content__body .wisdom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.page-content__body .wisdom-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px 24px;
  position: relative;
  border: 1px solid var(--teal);
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.page-content__body .wisdom-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin: 0 0 14px;
  letter-spacing: .04em;
}
.page-content__body .wisdom-badge--gray {
  background: #ffffff;
  color: #696969;
  border: 2px solid #399e95;
}
.page-content__body .wisdom-badge--pink-dark  { background: #c9184a;       color: #fff; }
.page-content__body .wisdom-badge--orange     { background: #399e95;       color: #fff; }
.page-content__body .wisdom-ttl {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.5;
}
.page-content__body .wisdom-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0 0 16px;
}
.page-content__body .wisdom-action {
  font-size: 16px;
  font-weight: 700;
  color: #399e95;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-content__body .wisdom-action i {
  font-size: 14px;
}

/* Prevention セクション（子どものむし歯予防） */
.page-content__body .prevention-intro {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 48px;
}
.page-content__body .prevention-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  padding-top: 14px;
}
.page-content__body .prevention-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  border: 2px solid #5a8db8;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.page-content__body .prevention-ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue);
}
.page-content__body .prevention-ic i {
  font-size: 26px;
}
.page-content__body .prevention-ttl {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .prevention-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin: 0 0 18px;
  letter-spacing: .04em;
}
.page-content__body .prevention-badge--off {
  background: var(--g200);
  color: var(--g600);
}
.page-content__body .prevention-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0;
  text-align: left;
}

/* 来院サイン（こんなサインがあったらご来院ください） */
.page-content__body .prevention-signs {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 32px 36px;
}
.page-content__body .prevention-signs__h {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.5;
}
.page-content__body .prevention-signs__h i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.page-content__body .prevention-signs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-content__body .prevention-sign {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-left: 3px solid var(--blue);
}
.page-content__body .prevention-sign i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.page-content__body .prevention-sign span {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}

/* Growth セクション（子どもの歯の発育タイムライン） */
.page-content__body .growth-intro {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 36px;
}
.page-content__body .growth-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.page-content__body .growth-card {
  padding: 24px 16px;
  border-radius: 12px;
  text-align: center;
}
.page-content__body .growth-card__age {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}
.page-content__body .growth-card__name {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: .04em;
}
.page-content__body .growth-card__desc {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  color: var(--g600);
  margin: 0;
}
/* 色バリエーション（背景と見出し色） */
.page-content__body .growth-card--green  { background: #EAF5E9; }
.page-content__body .growth-card--green .growth-card__age,
.page-content__body .growth-card--green .growth-card__name { color: #4A8748; }
.page-content__body .growth-card--yellow { background: #FBF6E0; }
.page-content__body .growth-card--yellow .growth-card__age,
.page-content__body .growth-card--yellow .growth-card__name { color: #A38B26; }
.page-content__body .growth-card--orange { background: #FBEBD9; }
.page-content__body .growth-card--orange .growth-card__age,
.page-content__body .growth-card--orange .growth-card__name { color: #B07A40; }
.page-content__body .growth-card--pink   { background: #FCE9EF; }
.page-content__body .growth-card--pink .growth-card__age,
.page-content__body .growth-card--pink .growth-card__name { color: #B85478; }
.page-content__body .growth-card--purple { background: #ECEBF4; }
.page-content__body .growth-card--purple .growth-card__age,
.page-content__body .growth-card--purple .growth-card__name { color: #4A4470; }

/* 注意ボックス */
.page-content__body .growth-note {
  background: var(--pink-soft);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 24px;
}
.page-content__body .growth-note__h {
  font-size: 17px;
  font-weight: 700;
  color: var(--pink);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .growth-note p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.9;
  margin: 0;
}
.page-content__body .symptom-card--teal .symptom-ic { background: var(--teal-pale); }
.page-content__body .symptom-card--gold .symptom-ic { background: var(--gold-pale); }
.page-content__body .symptom-card--blue .symptom-ic { background: var(--blue-pale); }

/* LASER（レーザー治療：特徴4つ + Before/After） */
.page-content__body .laser-intro {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 36px;
}
.page-content__body .laser-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.page-content__body .laser-feat {
  background: #fff;
  padding: 24px 22px;
  border-left: 4px solid var(--blue);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.page-content__body .laser-feat-ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.page-content__body .laser-feat-ic img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.page-content__body .laser-feat-ic i {
  font-size: 20px;
}
.page-content__body .laser-feat-ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .laser-feat-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.8;
  margin: 0;
}
.page-content__body .laser-ba-h {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.5;
}
.page-content__body .laser-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.page-content__body .laser-ba-item {
  text-align: center;
}
.page-content__body .laser-ba-photo {
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 12px;
  box-shadow: var(--sh);
  position: relative;
}
.page-content__body .laser-ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .laser-ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .06em;
}
.page-content__body .laser-ba-label.af {
  background: var(--pink);
  color: #fff;
}
.page-content__body .laser-ba-caption {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.7;
  margin: 0;
}

/* PHOBIA（歯科恐怖症：写真＋メソッド3つ） */
.page-content__body .kdc-phobia {
  background: linear-gradient(135deg, #fdf2f6 0%, #f4eef9 50%, #edf8f7 100%);
}
.page-content__body .phobia-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-content__body .phobia-body p {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 16px;
}
.page-content__body .phobia-photo {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(232,90,138,.12);
  margin: 0;
}
.page-content__body .phobia-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .phobia-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.page-content__body .phobia-method {
  background: var(--pink-ultra);
  padding: 18px 22px;
  border-left: 3px solid var(--pink);
}
.page-content__body .phobia-method--teal { border-left-color: var(--teal); }
.page-content__body .phobia-method--gold { border-left-color: var(--gold); }
.page-content__body .phobia-method h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .phobia-method p {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.8;
  margin: 0;
}

/* FAQ（アコーディオン式Q&A） */
.page-content__body .kdc-faq {
  background: #fff;
}
.page-content__body .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-content__body .faq-item {
  background: #fff;
  border-left: 4px solid var(--pink);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.page-content__body .faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  cursor: pointer;
}
.page-content__body .faq-qi {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.page-content__body .faq-qt {
  flex: 1;
}
.page-content__body .faq-tg {
  margin-left: auto;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  transition: transform .25s;
}
.page-content__body .faq-item.op .faq-tg {
  transform: rotate(45deg);
}
.page-content__body .faq-a {
  display: none;
  padding: 0 22px 18px calc(22px + 28px + 12px);
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
}
.page-content__body .faq-item.op .faq-a {
  display: block;
}

/* FIRST VISIT（初診の流れ：5ステップ） */
.page-content__body .kdc-first-visit {
  background: var(--off);
}
.page-content__body .fv-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-content__body .fv-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
}
.page-content__body .fv-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink-l, #F4A0BF), transparent);
}
.page-content__body .fv-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
  z-index: 1;
  align-self: flex-start;
  line-height: 1;
}
.page-content__body .fv-num small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-top: 2px;
}
.page-content__body .fv-item:nth-child(1) .fv-num { background: #F4A0BF; }
.page-content__body .fv-item:nth-child(2) .fv-num { background: #EE7FA8; }
.page-content__body .fv-item:nth-child(3) .fv-num { background: #E85A8A; }
.page-content__body .fv-item:nth-child(4) .fv-num { background: #C93E75; }
.page-content__body .fv-item:nth-child(5) .fv-num { background: #9C2A5C; }
.page-content__body .fv-content {
  padding: 16px 0 44px 28px;
}
.page-content__body .fv-step {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.page-content__body .fv-item:nth-child(1) .fv-step { color: #F4A0BF; }
.page-content__body .fv-item:nth-child(2) .fv-step { color: #EE7FA8; }
.page-content__body .fv-item:nth-child(3) .fv-step { color: #E85A8A; }
.page-content__body .fv-item:nth-child(4) .fv-step { color: #C93E75; }
.page-content__body .fv-item:nth-child(5) .fv-step { color: #9C2A5C; }
.page-content__body .fv-ttl {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .fv-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0;
}
.page-content__body .fv-tip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  padding: 10px 20px;
  background: var(--pink-soft);
  border-radius: 6px;
  color: var(--pink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.page-content__body .fv-tip i {
  font-size: 15px;
  flex-shrink: 0;
}

/* 初めてのお子さまの受診の流れ（小児歯科専用：薄背景 + 番号ラベルなし） */
.page-content__body .kdc-pediatric-fv,
.page-content__body .kdc-oral-flow {
  background: #F5F5F5;
}

/* 審美歯科 FLOW（治療の流れ）─ 薄グレー背景（kdc-oral-flow と同じトーン） */
.page-content__body .kdc-aesthetic-flow,
.page-content__body .kdc-ortho-flow,
.page-content__body .kdc-perio-flow,
.page-content__body .kdc-implant-flow,
.page-content__body .kdc-denture-flow {
  background: #F5F5F5;
}
.page-content__body .fv-desc strong {
  color: var(--pink);
  font-weight: 700;
}

/* 矯正歯科 MERITS（3つのメリット）─ 白カード + 上ボーダー + 大数字 */
.page-content__body .merit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.page-content__body .merit-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px 36px;
  box-shadow: 0 4px 22px rgba(0,0,0,.05);
  border-top: 4px solid var(--pink);
}
.page-content__body .merit-card--teal {
  border-top-color: var(--teal);
}
.page-content__body .merit-num {
  display: block;
  font-family: var(--fsc);
  font-style: italic;
  font-size: 38px;
  font-weight: 400;
  color: var(--pink-pale);
  letter-spacing: .04em;
  line-height: 1;
  margin: 0 0 28px;
}
.page-content__body .merit-card--teal .merit-num {
  color: var(--teal-pale);
}
.page-content__body .merit-ttl {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .merit-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.95;
  margin: 0;
}
/* kdc-ortho-merits / kdc-implant-feature / kdc-about-facility 専用：全カードティール統一 + 数字色 */
.page-content__body .kdc-ortho-merits .merit-card,
.page-content__body .kdc-implant-feature .merit-card,
.page-content__body .kdc-about-facility .merit-card {
  border-top-color: var(--teal);
}
.page-content__body .kdc-ortho-merits .merit-num,
.page-content__body .kdc-implant-feature .merit-num,
.page-content__body .kdc-about-facility .merit-num {
  color: #94d2cc;
}

/* 補足インフォボックス（ティール薄背景 + 左ティールボーダー） */
.page-content__body .info-box {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 24px 32px;
  margin-top: 32px;
}
.page-content__body .info-box__ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .info-box__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0;
}

/* インプラント STRUCTURE（構造／3パーツ）─ 2カラム／左写真・右リスト */
.page-content__body .structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}
.page-content__body .structure-photo {
  background: #FAFAFA;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-content__body .structure-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.page-content__body .structure-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-content__body .structure-item {
  border-left: 3px solid var(--teal);
  padding: 14px 0 14px 24px;
}
.page-content__body .structure-item__ttl {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.page-content__body .structure-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.page-content__body .structure-item__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0;
}

/* インプラント PERIOD（治療期間）─ 縦タイムライン + 下部サマリー */
.page-content__body .period-timeline {
  position: relative;
  padding-left: 40px;
  margin: 32px 0 40px;
}
.page-content__body .period-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--pink-soft);
}
.page-content__body .period-item {
  position: relative;
  padding: 0 0 32px;
}
.page-content__body .period-item:last-child { padding-bottom: 0; }
.page-content__body .period-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--pink);
  z-index: 1;
}
.page-content__body .period-label {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 14px;
  margin-bottom: 10px;
}
.page-content__body .period-ttl {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .period-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0 0 12px;
}
.page-content__body .period-tip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F4F4F4;
  color: var(--g600);
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 14px;
  margin: 0;
}
.page-content__body .period-tip i {
  font-size: 13px;
}
.page-content__body .period-stats {
  background: var(--pink-wash);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.page-content__body .period-stat {
  text-align: center;
}
.page-content__body .period-stat__num {
  font-size: 26px;
  font-weight: 700;
  color: var(--pink);
  margin: 0 0 6px;
  line-height: 1.2;
}
.page-content__body .period-stat__lbl {
  font-size: 14px;
  color: var(--g600);
  margin: 0;
  line-height: 1.6;
}

/* インプラント SUITABILITY（適応・注意） ─ 2カード（OK/NG）+ 下部ブルー注意ボックス */
.page-content__body .suit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.page-content__body .suit-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.page-content__body .suit-card--ok { border-left: 4px solid var(--blue); }
.page-content__body .suit-card--ng { border-left: 4px solid #E89A55; }
.page-content__body .suit-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.page-content__body .suit-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.page-content__body .suit-ic--ok { background: var(--blue-pale); color: var(--blue); }
.page-content__body .suit-ic--ng { background: #FCE9D8; color: #E89A55; }
.page-content__body .suit-card__ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .suit-card__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0;
}
.page-content__body .suit-note {
  background: var(--blue-pale);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 28px;
}
.page-content__body .suit-note__ttl {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 10px;
  line-height: 1.5;
}
.page-content__body .suit-note__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0;
}

/* 入れ歯 TYPES（入れ歯の種類）─ 2列4カード（バッジ + 写真 + 本文 + タグ） */
.page-content__body .denture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.page-content__body .denture-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,.05);
  position: relative;
}
.page-content__body .denture-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  z-index: 1;
}
.page-content__body .denture-badge--insurance {
  background: var(--blue);
  color: #fff;
}
.page-content__body .denture-badge--paid {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue-pale);
}
.page-content__body .denture-photo {
  aspect-ratio: 16/9;
  background: var(--blue-pale);
  overflow: hidden;
}
.page-content__body .denture-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .denture-body {
  padding: 22px 28px 28px;
}
.page-content__body .denture-card__sub {
  display: block;
  font-family: var(--fsc);
  font-style: italic;
  font-size: 14px;
  color: var(--blue);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.page-content__body .denture-card__ttl {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .denture-card__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0 0 18px;
}
.page-content__body .denture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-content__body .denture-tag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* 矯正歯科 TYPES（当院の矯正メニュー）─ 2列4カード／上ブルー帯＋下白 */
.page-content__body .menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.page-content__body .menu-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,.05);
}
.page-content__body .menu-card__head {
  background: var(--blue);
  padding: 28px 32px;
  color: #fff;
}
.page-content__body .menu-card__sub {
  display: block;
  font-family: var(--fsc);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .04em;
  margin-bottom: 6px;
  opacity: .85;
}
.page-content__body .menu-card__ttl {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .menu-card__body {
  padding: 28px 32px 30px;
}
.page-content__body .menu-card__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.95;
  margin: 0 0 20px;
}
.page-content__body .menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-content__body .menu-tag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* 矯正歯科 AESTHETIC（審美矯正コラボ）─ 薄ピンク背景ボックス + 2カラム */
.page-content__body .collab-box {
  background: var(--pink-wash);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-content__body .collab-photo {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
  margin: 0;
}
.page-content__body .collab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .collab-h {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.55;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: none;
}
.page-content__body .collab-p {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 16px;
}
.page-content__body .collab-p:last-child {
  margin-bottom: 0;
}
.page-content__body .collab-p strong {
  color: var(--pink);
  font-weight: 700;
}
/* kdc-denture-cleaning スコープ：collab-box をティールに */
.page-content__body .kdc-denture-cleaning .collab-box {
  background: var(--teal-pale);
}
.page-content__body .kdc-denture-cleaning .collab-p strong {
  color: var(--teal);
}
/* kdc-about-doctor / kdc-about-hygiene スコープ：collab-box をブルーに */
.page-content__body .kdc-about-doctor .collab-box,
.page-content__body .kdc-about-hygiene .collab-box {
  background: var(--blue-pale);
}
.page-content__body .kdc-about-doctor .collab-p strong,
.page-content__body .kdc-about-hygiene .collab-p strong {
  color: var(--blue);
}
/* kdc-about-hygiene：collab-box の下にサブカードがある場合の余白 */
.page-content__body .kdc-about-hygiene .collab-box + .whole-grid {
  margin-top: 32px;
}
/* collab-body 内のリンク（医師紹介ページで詳しく見る等） */
.page-content__body .collab-link {
  margin: 24px 0 0;
}
.page-content__body .collab-link a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.page-content__body .collab-link a:hover {
  opacity: .7;
  border-bottom-color: var(--blue);
}

/* 院内フォトギャラリー ─ 3列カード（写真＋タイトル＋説明） */
.page-content__body .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.page-content__body .gallery-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,.05);
}
.page-content__body .gallery-card__photo {
  aspect-ratio: 4/3;
  background: var(--teal-pale);
  overflow: hidden;
}
.page-content__body .gallery-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .gallery-card__body {
  padding: 22px 26px 26px;
}
.page-content__body .gallery-card__ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .gallery-card__desc {
  font-size: 15px;
  color: var(--g600);
  line-height: 1.8;
  margin: 0;
}

/* クリニックの特徴 ─ 2列×2行 横長カード（左写真＋右本文） */
.page-content__body .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.page-content__body .features-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  border: 1px solid var(--teal-pale);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,.04);
}
.page-content__body .features-card__photo {
  position: relative;
  background: var(--teal-pale);
  overflow: hidden;
  min-height: 280px;
}
.page-content__body .features-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .features-card__body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-content__body .features-card__ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .features-card__desc {
  font-size: 15px;
  color: var(--g600);
  line-height: 1.85;
  margin: 0;
}

/* 設備に関して ─ 2列カード（タイトル左に短いブルー縦線）+ 提携病院ボックス */
.page-content__body .equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.page-content__body .equip-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.page-content__body .equip-card__ttl {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  padding: 0 0 0 14px;
  border: 0;
  line-height: 1.4;
}
.page-content__body .equip-card__ttl::before {
  content: '';
  position: absolute;
  left: 0;
  top: .25em;
  width: 4px;
  height: 1em;
  background: var(--pink);
  border-radius: 2px;
}
.page-content__body .equip-card__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.85;
  margin: 0;
  padding-left: 14px;
}

/* 求人募集 JOBS（募集職種）─ 2列カード（タイトル左に短いティール縦線） */
.page-content__body .jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.page-content__body .jobs-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.page-content__body .jobs-card__ttl {
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  padding: 0 0 0 14px;
  border: 0;
  line-height: 1.4;
}
.page-content__body .jobs-card__ttl::before {
  content: '';
  position: absolute;
  left: 0;
  top: .25em;
  width: 4px;
  height: 1em;
  background: var(--teal);
  border-radius: 2px;
}
.page-content__body .jobs-card__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.85;
  margin: 0;
  padding-left: 14px;
}

.page-content__body .partners-box {
  background: var(--pink-wash);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 24px;
}
.page-content__body .partners-box__ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .partners-box__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.85;
  margin: 0 0 18px;
}
.page-content__body .partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-content__body .partners-link {
  display: inline-block;
  background: #fff;
  color: var(--pink);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--pink);
  text-decoration: none;
  transition: all .2s;
}
.page-content__body .partners-link:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* 医師紹介 DOCTOR セクション（院長・副院長）─ 2カラム＋下に経歴/資格/所属学会の3カラム */
.page-content__body .doctor-profile {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
  margin-top: 32px;
}
.page-content__body .doctor-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
  aspect-ratio: 3/4;
  background: var(--pink-wash);
}
.page-content__body .doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-content__body .doctor-info {
  padding-top: 32px;
}
.page-content__body .doctor-info__sub {
  font-family: var(--fsc);
  font-style: italic;
  font-size: 17px;
  color: var(--pink);
  margin: 0 0 14px;
  letter-spacing: .04em;
}
.page-content__body .doctor-info__name {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  line-height: 1.3;
  letter-spacing: .08em;
}
.page-content__body .doctor-info__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 2;
  margin: 0 0 16px;
}
.page-content__body .doctor-info__desc:last-child {
  margin-bottom: 0;
}
.page-content__body .doctor-cv {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 22px rgba(0,0,0,.05);
  padding: 36px 44px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.page-content__body .doctor-cv__h {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--pink);
  line-height: 1.4;
}
.page-content__body .doctor-cv__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-content__body .doctor-cv__list li {
  font-size: 14px;
  color: var(--g600);
  line-height: 1.7;
  padding: 10px 0;
  border-bottom: 1px dashed var(--g200);
}
.page-content__body .doctor-cv__list li:last-child {
  border-bottom: none;
}
/* kdc-doctor-vice スコープ：ブルー化 */
.page-content__body .kdc-doctor-vice .doctor-photo {
  background: var(--blue-pale);
}
.page-content__body .kdc-doctor-vice .doctor-info__sub {
  color: var(--blue);
}
.page-content__body .kdc-doctor-vice .doctor-cv__h {
  border-bottom-color: var(--blue);
}

/* 歯周病 STAGES（進行ステージ）─ パステル4段階カード */
.page-content__body .stage-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 56px;
}
.page-content__body .stage-card {
  border-radius: 16px;
  padding: 28px 20px 26px;
  text-align: center;
}
.page-content__body .stage-card--healthy { background: #ECF4E8; color: #4A7C4F; }
.page-content__body .stage-card--stage1  { background: #FCF1D5; color: #B5933A; }
.page-content__body .stage-card--stage2  { background: #FCE0CC; color: #C2702A; }
.page-content__body .stage-card--stage4  { background: #FBD1D4; color: #B85565; }
.page-content__body .stage-ic {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
}
.page-content__body .stage-label {
  font-family: var(--fsc);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .08em;
  margin-bottom: 6px;
  opacity: .85;
}
.page-content__body .stage-ttl {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .stage-desc {
  font-size: 14px;
  color: var(--g600);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}
.page-content__body .stage-desc strong {
  font-weight: 700;
  color: var(--navy);
}

/* 歯周ポケットチャート */
.page-content__body .pocket-chart {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 22px rgba(0,0,0,.05);
  padding: 40px 44px 36px;
}
.page-content__body .pocket-chart-h {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .pocket-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* 行を 3 つに固定：1fr=バー領域 / auto=mm軸テキスト / auto=ステータスバッジ
     すべての列のラベル高さが揃うので、バーの底辺が必ず一致する */
  grid-template-rows: 1fr auto auto;
  column-gap: 14px;
  row-gap: 0;
  align-items: end;
  height: 240px;
  margin-bottom: 24px;
}
.page-content__body .pocket-bar {
  /* 親グリッドの行トラックを継承（subgrid）：mm軸とステータスの高さが他列と揃う */
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / span 3;
  justify-items: center;
  align-items: end;
  position: relative;
}
.page-content__body .pocket-bar-fill {
  width: 100%;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  position: relative;
}
.page-content__body .pocket-bar-mm {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}
.page-content__body .pocket-bar-fill--healthy { background: #B5D9B0; }
.page-content__body .pocket-bar-fill--stage1  { background: #F0D87A; }
.page-content__body .pocket-bar-fill--light   { background: #F1B07A; }
.page-content__body .pocket-bar-fill--mid     { background: #E89090; }
.page-content__body .pocket-bar-fill--severe  { background: #C76B6B; }
.page-content__body .pocket-bar-axis {
  font-size: 13px;
  font-weight: 700;
  color: var(--g600);
  margin: 10px 0 6px;
}
.page-content__body .pocket-bar-status {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}
.page-content__body .pocket-bar-status--healthy { background: #ECF4E8; color: #4A7C4F; }
.page-content__body .pocket-bar-status--stage1  { background: #FCF1D5; color: #B5933A; }
.page-content__body .pocket-bar-status--light   { background: #FCE0CC; color: #C2702A; }
.page-content__body .pocket-bar-status--mid     { background: #FBD9DC; color: #C56B6B; }
.page-content__body .pocket-bar-status--severe  { background: #F5C0C3; color: #A84A55; }
.page-content__body .pocket-note {
  font-size: 14px;
  color: var(--g600);
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* 歯周病 WHOLE BODY（全身疾患との関係）─ 2列カード／薄ブルー背景＋左ブルー縦ボーダー */
.page-content__body .whole-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.page-content__body .whole-card {
  background: var(--blue-pale);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 24px 28px;
}
.page-content__body .whole-card__ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .whole-card__desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.9;
  margin: 0;
}
/* kdc-about-philosophy スコープ：whole-grid を1列＋ピンク化 + リード文 strong ピンク */
.page-content__body .kdc-about-philosophy .whole-grid {
  grid-template-columns: 1fr;
}
.page-content__body .kdc-about-philosophy .whole-card {
  background: var(--pink-wash);
  border-left-color: var(--pink);
}
.page-content__body .kdc-about-philosophy .caries-p strong {
  color: var(--pink);
  font-weight: 700;
}

/* インプラント MERIT（メリット・デメリット）─ 2列カード／上カラー帯＋下白本体 */
.page-content__body .pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.page-content__body .pros-cons-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(0,0,0,.05);
}
.page-content__body .pros-cons__head {
  padding: 18px 28px;
}
.page-content__body .pros-cons-card--pro .pros-cons__head { background: var(--blue); }
.page-content__body .pros-cons-card--con .pros-cons__head { background: #9CA3AF; }
.page-content__body .pros-cons__ttl {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 1.4;
}
.page-content__body .pros-cons__body {
  padding: 24px 28px 28px;
}
.page-content__body .pros-cons__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-content__body .pros-cons__list li {
  position: relative;
  padding: 0 0 0 22px;
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--g600);
  line-height: 1.85;
}
.page-content__body .pros-cons__list li:last-child { margin-bottom: 0; }
.page-content__body .pros-cons__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.page-content__body .pros-cons-card--pro .pros-cons__list li::before { background: var(--blue); }
.page-content__body .pros-cons-card--con .pros-cons__list li::before { background: #9CA3AF; }

/* RELATED（関連診療メニュー4つ） */
.page-content__body .related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.page-content__body .related-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.page-content__body .related-card {
  display: block;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: all var(--tr);
  text-decoration: none;
  color: inherit;
}
.page-content__body .related-card:nth-child(4n+1) { background: var(--pink-ultra); }
.page-content__body .related-card:nth-child(4n+2) { background: #F5FBFA; }
.page-content__body .related-card:nth-child(4n+3) { background: #FDF9F5; }
.page-content__body .related-card:nth-child(4n)   { background: #F5F9FC; }
.page-content__body .related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  border-color: transparent;
}
.page-content__body .related-ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.page-content__body .related-ic img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.page-content__body .related-ic i {
  font-size: 22px;
  line-height: 1;
}
.page-content__body .related-card:nth-child(4n+1) .related-ic i { color: var(--pink); }
.page-content__body .related-card:nth-child(4n+2) .related-ic i { color: var(--teal); }
.page-content__body .related-card:nth-child(4n+3) .related-ic i { color: var(--gold); }
.page-content__body .related-card:nth-child(4n)   .related-ic i { color: var(--blue); }
.page-content__body .related-nm {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* CTA BANNER（予約・お問い合わせバナー）─ ページ末尾共通 + カスタムHTML両対応 */
.cta-ban {
  /* ピンク/紫の強いオーバーレイをやめ、写真（海）の色を活かす濃紺の半透明オーバーレイに。
     透明感を残しつつ白文字が読める濃さ。色みを変えたい/透け具合はこの2つのrgbaで調整 */
  background-image: linear-gradient(180deg, rgba(17,34,51,.28) 0%, rgba(17,34,51,.55) 100%), url('../images/general/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 76px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* page-content__body 内（カスタムHTMLブロックとして配置）で使う場合のフルワイド調整 */
.page-content__body .cta-ban {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}
.cta-ban-in {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-ban h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 1.4;
}
.cta-ban p {
  font-size: 16px;
  color: rgba(255,255,255,.92);
  line-height: 1.9;
  margin: 0 0 36px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-w {
  background: #fff;
  color: var(--pink);
  border-radius: 40px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 22px rgba(0,0,0,.14);
  text-decoration: none;
  transition: all var(--tr);
  border: 0;
}
.btn-w:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  border-bottom-color: transparent;
}
.btn-wo {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 40px;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all var(--tr);
}
.btn-wo:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.65);
}
.btn-w i,
.btn-wo i {
  font-size: 18px;
}

.page-content__body .symptom-ttl {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  line-height: 1.5;
}
.page-content__body .symptom-desc {
  font-size: 16px;
  color: var(--g600);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .page-content__body .sec { padding: 60px 20px; }
  .page-content__body .symptom-grid { grid-template-columns: repeat(2, 1fr); }
  .page-content__body .lead-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-content__body .lead-catch { font-size: 18px; }
  .page-content__body .filling-intro { grid-template-columns: 1fr; gap: 28px; }
  .page-content__body .cadcam-box { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .page-content__body .cadcam-photo--logo { width: 70px; height: 70px; padding: 10px; justify-self: center; }
  .page-content__body .c-table thead th,
  .page-content__body .c-table tbody td { padding: 12px 14px; }
  .page-content__body .laser-features { grid-template-columns: 1fr; }
  .page-content__body .laser-ba { grid-template-columns: 1fr; }
  .page-content__body .phobia-content { grid-template-columns: 1fr; gap: 28px; }
  .page-content__body .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-ban { padding: 56px 20px; }
  .page-content__body .growth-grid { grid-template-columns: repeat(2, 1fr); }
  .page-content__body .prevention-grid { grid-template-columns: 1fr; }
  .page-content__body .prevention-signs__grid { grid-template-columns: 1fr; }
  .page-content__body .prevention-signs { padding: 24px 20px; }
  .page-content__body .tsd-grid { grid-template-columns: 1fr; }
  .page-content__body .tsd-box { padding: 24px 20px; }
  .page-content__body .wisdom-grid { grid-template-columns: 1fr; }
  .page-content__body .aftercare-grid { grid-template-columns: 1fr; }
  .page-content__body .tmd-treat-grid { grid-template-columns: 1fr; }
  .page-content__body .tmd-treat-box { padding: 24px 20px; }
  .page-content__body .treat-grid { grid-template-columns: 1fr; }
  .page-content__body .wh-compare { grid-template-columns: 1fr; }
  .page-content__body .material-grid { grid-template-columns: 1fr; }
  .page-content__body .material-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .page-content__body .material-table { min-width: 720px; }
  .page-content__body .merit-grid { grid-template-columns: 1fr; gap: 16px; }
  .page-content__body .merit-card { padding: 32px 24px 28px; }
  .page-content__body .merit-num { font-size: 32px; margin-bottom: 20px; }
  .page-content__body .menu-grid { grid-template-columns: 1fr; gap: 16px; }
  .page-content__body .menu-card__head { padding: 22px 24px; }
  .page-content__body .menu-card__body { padding: 22px 24px 24px; }
  .page-content__body .menu-card__ttl { font-size: 20px; }
  .page-content__body .collab-box { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; border-radius: 18px; }
  .page-content__body .collab-h { font-size: 19px; }
  .page-content__body .stage-flow { grid-template-columns: repeat(2, 1fr); }
  .page-content__body .pocket-chart { padding: 28px 15px 24px; border-radius: 16px; }
  .page-content__body .pocket-bars { gap: 6px; height: 200px; }
  .page-content__body .pocket-bar-mm { font-size: 12px; }
  .page-content__body .pocket-bar-axis { font-size: 9px; margin: 8px 0 4px; }
  .page-content__body .pocket-bar-status { font-size: 9px; padding: 2px 7px; }
  .page-content__body .whole-grid { grid-template-columns: 1fr; gap: 14px; }
  .page-content__body .whole-card { padding: 20px 22px; }
  .page-content__body .pros-cons-grid { grid-template-columns: 1fr; gap: 16px; }
  .page-content__body .pros-cons__head { padding: 16px 22px; }
  .page-content__body .pros-cons__body { padding: 20px 22px 22px; }
  .page-content__body .info-box { padding: 20px 22px; }
  .page-content__body .structure-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-content__body .structure-photo { padding: 20px; }
  .page-content__body .period-timeline { padding-left: 30px; }
  .page-content__body .period-dot { left: -30px; width: 14px; height: 14px; border-width: 2px; }
  .page-content__body .period-timeline::before { left: 6px; }
  .page-content__body .period-ttl { font-size: 17px; }
  .page-content__body .period-stats { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .page-content__body .period-stat__num { font-size: 24px; }
  .page-content__body .suit-grid { grid-template-columns: 1fr; gap: 14px; }
  .page-content__body .suit-card { padding: 20px 22px; }
  .page-content__body .suit-note { padding: 22px 24px; }
  .page-content__body .denture-grid { grid-template-columns: 1fr; gap: 18px; }
  .page-content__body .denture-body { padding: 20px 22px 24px; }
  .page-content__body .denture-card__ttl { font-size: 18px; }
  .page-content__body .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .page-content__body .gallery-card__body { padding: 18px 20px 20px; }
  .page-content__body .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .page-content__body .features-card { grid-template-columns: 1fr; }
  .page-content__body .features-card__photo { aspect-ratio: 16/9; min-height: 0; }
  .page-content__body .features-card__body { padding: 20px 22px; }
  .page-content__body .equip-grid { grid-template-columns: 1fr; }
  .page-content__body .equip-card { padding: 20px 22px; }
  .page-content__body .partners-box { padding: 24px 22px; }
  .page-content__body .jobs-grid { grid-template-columns: 1fr; gap: 14px; }
  .page-content__body .jobs-card { padding: 20px 22px; }
  .page-content__body .doctor-profile { grid-template-columns: 1fr; gap: 28px; }
  .page-content__body .doctor-photo { aspect-ratio: 4/3; max-width: 360px; }
  .page-content__body .doctor-info { padding-top: 0; }
  .page-content__body .doctor-cv { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
  .page-content__body .wh-ba-row { grid-template-columns: 1fr; gap: 16px; }
  .page-content__body .wh-ba-arrow { transform: rotate(90deg); }
  .page-content__body .wh-ba { padding: 24px 20px; }
}
@media (max-width: 500px) {
  .page-content__body .symptom-grid { grid-template-columns: 1fr; }
  .page-content__body .gallery-grid { grid-template-columns: 1fr; }
  .page-content__body .c-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .page-content__body .c-table table { min-width: 480px; }
  .page-content__body .fv-item { grid-template-columns: 60px 1fr; }
  .page-content__body .fv-item:not(:last-child)::after { left: 29px; top: 60px; }
  .page-content__body .fv-num { width: 60px; height: 60px; font-size: 18px; }
  .page-content__body .fv-num small { font-size: 9px; }
  .page-content__body .fv-content { padding: 8px 0 32px 20px; }
  .page-content__body .stage-flow { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-w,
  .btn-wo { width: 100%; max-width: 320px; justify-content: center; }
  .page-content__body .growth-grid { grid-template-columns: 1fr; }
}

/* ===================================
   Footer
=================================== */
.footer {
  background: #8B6873;
  color: rgba(255,255,255,.85);
  padding: 10px 0;
  font-size: 16px;
  letter-spacing: .1em;
}
.footer__copy {
  text-align: center;
  font-family: var(--serif);
  letter-spacing: .24em;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

/* ===================================
   Responsive
=================================== */
@media (max-width: 900px) {
  :root { --header-h: 86px; }
  .header__inner { height: 86px; padding: 8px 12px 8px 16px; gap: 8px; }
  .logo__img { height: 50px; }
  .header__addr { display: none; }
  .header__tel { display: none; }
  .header__meta { gap: 8px; }
  .header__bottom { display: none; }
  .hamburger { display: block; }
  /* MV：スマホは「写真バンド（上）＋カード（下・少し重ねる）」で写真をしっかり見せる */
  .hero { height: auto; min-height: 0; overflow: hidden; background: var(--pink-wash); padding-bottom: 32px; }
  .hero__slides { position: relative; inset: auto; height: 46vh; min-height: 260px; }
  .hero__content { display: block; height: auto; padding: 0 16px; margin-top: -36px; position: relative; z-index: 2; }
  .hero__copy { padding: 28px 22px; max-width: 100%; background: rgba(255,255,255,.94); box-shadow: 0 12px 30px rgba(209,69,120,.12); }
  .hero__messages { min-height: 250px; }
  .hero__msg-title { font-size: 20px; margin-bottom: 0; }
  .hero__lead { font-size: clamp(20px, 5vw, 28px); }
  .hero__sub { margin-top: 0; }
  .info, .greeting, .medical, .fb { padding: 72px 0; }
  .info__grid, .greeting__grid, .access__info { grid-template-columns: 1fr; gap: 48px; }
  /* Facebook：スマホは導入文を少し小さく（フィードはSDKがコンテナ幅に自動追従） */
  .fb__lead { font-size: 18px; }
  /* ホスピタバナー：スマホは中央寄せ */
  .footer-hospita { margin: 24px auto 0; }
  /* スマホ：1カラム縦並び。カレンダーとの区切りは縦線→横線に */
  .info__grid { gap: 0; }
  .info__calendar {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--pink);
    margin-top: 44px;
    padding-top: 44px;
  }
  /* 診療時間表：スマホでは8列が収まらず飛び出すので、折り返し可＋縮小して幅内に収める */
  .hours-table { font-size: 13px; }
  .hours-table th,
  .hours-table td { padding: 9px 2px; }
  .hours-table thead th { font-size: 12px; letter-spacing: 0; }
  .hours-table tbody th { white-space: normal; font-size: 11px; line-height: 1.4; }
  .hours-table .dot { font-size: 15px; }
  .hours-table .dash { font-size: 13px; }
  .greeting__photo { margin: 0 auto; max-width: 230px; }
  /* 診療案内：タブレット以下は2列。カード内の余白・枠・文字も縮小してバランス調整 */
  .medical__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .medical__grid > .med-card,
  .medical__grid > .med-card:nth-child(7) { grid-column: auto; }
  .med-card__overlay { padding: 14px; }
  .med-card__overlay::before { inset: 8px; }
  .med-card__en { font-size: 12px; letter-spacing: .15em; margin-bottom: 2px; }
  .med-card__ja { font-size: 15px; letter-spacing: .06em; }
  .feature { flex-basis: calc((100% - 24px) / 2); padding: 20px; }
  .section-label__en { font-size: 32px; }
  .section-label__en::before, .section-label__en::after { width: 20px; }
  .page-header { padding: 48px 0 36px; }
  .page-header__en { font-size: 28px; }
  .page-header__title { font-size: 16px; letter-spacing: .15em; }
  .page-content { padding: 56px 0 80px; }
  .page-content__body h2 { font-size: 22px; margin-top: 56px; }
  .page-content__body h3 { font-size: 18px; margin-top: 40px; }
}
@media (max-width: 500px) {
  /* お知らせ：日付＋カテゴリーを縦並び、タイトルは右カラムに */
  .news-item {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    align-items: start;
  }
  .news-item__date { grid-column: 1; grid-row: 1; }
  .news-item__tag  { grid-column: 1; grid-row: 2; justify-self: start; }
  .news-item > :nth-child(3) {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .feature__title { font-size: 14px; }
  .hero__content { padding: 0 14px; }
  .hero__copy { padding: 26px 20px; }
  .hero__messages { min-height: 230px; }
}

/* ============================================
   求人募集 OUTLINE（募集要項テーブル）
   ============================================ */
.kdc-recruit-outline .outline-list {
  margin: 40px 0 24px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(20, 60, 110, .06);
}
.kdc-recruit-outline .outline-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--blue-pale);
}
.kdc-recruit-outline .outline-row:last-child {
  border-bottom: none;
}
.kdc-recruit-outline .outline-row:nth-child(odd) {
  background: var(--blue-pale);
}
.kdc-recruit-outline .outline-row__label {
  color: var(--blue);
  font-weight: 700;
  padding: 24px 28px;
  font-size: 16px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
}
.kdc-recruit-outline .outline-row__value {
  color: var(--navy);
  padding: 24px 28px;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  display: flex;
  align-items: center;
}
.kdc-recruit-outline .outline-note {
  font-size: 14px;
  color: var(--g600);
  margin-top: 16px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .kdc-recruit-outline .outline-row {
    grid-template-columns: 150px 1fr;
  }
  .kdc-recruit-outline .outline-row__label,
  .kdc-recruit-outline .outline-row__value {
    padding: 20px 20px;
  }
}

@media (max-width: 500px) {
  .kdc-recruit-outline .outline-row {
    grid-template-columns: 1fr;
    padding: 18px 20px;
    gap: 4px;
  }
  .kdc-recruit-outline .outline-row__label,
  .kdc-recruit-outline .outline-row__value {
    padding: 0;
    font-size: 16px;
  }
  .kdc-recruit-outline .outline-row__label {
    font-size: 14px;
    letter-spacing: .06em;
  }
}

/* ============================================
   求人募集 MERIT（当院で働く魅力／3列カード）
   ============================================ */
.kdc-recruit-merit .merit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.kdc-recruit-merit .merit-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 30px 32px;
  box-shadow: 0 4px 18px rgba(20, 60, 110, .06);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--pink);
}

.kdc-recruit-merit .merit-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  margin: 0 0 18px;
  color: var(--pink);
  letter-spacing: .02em;
}

.kdc-recruit-merit .merit-card__ttl {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.6;
  letter-spacing: .02em;
}
.kdc-recruit-merit .merit-card__desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--g600);
  margin: 0;
}

@media (max-width: 900px) {
  .kdc-recruit-merit .merit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .kdc-recruit-merit .merit-card {
    padding: 30px 24px 26px;
  }
}

@media (max-width: 500px) {
  .kdc-recruit-merit .merit-card__num { font-size: 28px; }
  .kdc-recruit-merit .merit-card__ttl { font-size: 17px; }
}

/* ============================================
   求人募集 APPLY（応募方法／電話ボックス）
   ============================================ */
.kdc-recruit-apply .apply-box {
  background: var(--pink-soft);
  border-radius: 18px;
  padding: 50px 40px 46px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.kdc-recruit-apply .apply-lead {
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.8;
}
.kdc-recruit-apply .apply-hours {
  font-size: 16px;
  color: var(--g600);
  margin: 0 0 32px;
  line-height: 1.8;
}
/* 汎用電話ボタン（ピンクのピル型） */
.tel-btn,
.page-content__body .tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  padding: 20px 50px;
  border-radius: 999px;
  border-bottom: 0;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  box-shadow: 0 6px 18px rgba(232, 90, 138, .25);
}
.tel-btn:hover,
.page-content__body .tel-btn:hover {
  background: var(--pink-deep);
  transform: translateY(-1px);
  border-bottom: 0;
  opacity: 1;
}
.tel-btn i {
  font-size: 18px;
}
.kdc-recruit-apply .apply-note {
  margin: 32px 0 0;
  font-size: 16px;
  color: var(--g600);
  line-height: 1.8;
}
.kdc-recruit-apply .apply-note__hl {
  color: var(--pink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .kdc-recruit-apply .apply-box {
    padding: 40px 24px;
  }
  .tel-btn,
  .page-content__body .tel-btn {
    font-size: 20px;
    padding: 14px 32px;
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .kdc-recruit-apply .apply-box {
    padding: 36px 18px;
  }
  .kdc-recruit-apply .apply-hours {
    font-size: 15px;
    text-align: left;
  }
  .tel-btn,
  .page-content__body .tel-btn {
    font-size: 20px;
    padding: 10px 40px;
  }
}

/* ===================================
   初めての方へ - 診療時間セクション
   .kdc-firstvisit-hours
=================================== */
.kdc-firstvisit-hours .hours-table-wrap {
  margin-top: 16px;
}
.kdc-firstvisit-hours .hours-table {
  min-width: 640px;
}
/* 曜日（thead th 2列目以降）と記号セル（tbody td）を中央揃え
   ※ .page-content__body table th/td { text-align: left } を上書き */
.page-content__body .kdc-firstvisit-hours .hours-table thead th:not(:first-child),
.page-content__body .kdc-firstvisit-hours .hours-table tbody td {
  text-align: center;
}
/* 配色をトップページの診療時間表に合わせる（.page-content__body table の淡色指定を上書き） */
.page-content__body .kdc-firstvisit-hours .hours-table {
  border: 1.5px solid var(--pink);
}
.page-content__body .kdc-firstvisit-hours .hours-table thead th {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
  font-weight: 600;
}
.page-content__body .kdc-firstvisit-hours .hours-table thead th:first-child {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
}
.page-content__body .kdc-firstvisit-hours .hours-table tbody th {
  background: var(--pink-wash);
  color: var(--ink);
  font-weight: 600;
}
.page-content__body .kdc-firstvisit-hours .hours-table .dot {
  color: var(--pink);
  font-size: 20px;
  font-weight: 700;
}
.page-content__body .kdc-firstvisit-hours .hours-table .dash {
  color: #c9c9c9;
  font-size: 18px;
}

@media (max-width: 700px) {
  .kdc-firstvisit-hours .hours-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* スクロール可能であることがわかるよう右端をフェード */
    mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent 100%);
  }
}

/* ===================================
   初めての方へ - アクセスセクション
   .kdc-firstvisit-access
=================================== */
.kdc-firstvisit-access .access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.kdc-firstvisit-access .access-photo {
  background: var(--blue-pale);
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.kdc-firstvisit-access .access-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kdc-firstvisit-access .access-info__row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.kdc-firstvisit-access .access-info__row:first-child {
  padding-top: 0;
}
.kdc-firstvisit-access .access-info__ic {
  flex-shrink: 0;
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}
.kdc-firstvisit-access .access-info__ic svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
}
.kdc-firstvisit-access .access-info__txt {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
}
.kdc-firstvisit-access .access-tel {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px 24px;
  align-items: baseline;
}
.kdc-firstvisit-access .access-tel__lbl {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue);
}
.kdc-firstvisit-access .access-tel__lbl--tel {
  color: var(--blue);
}
.kdc-firstvisit-access .access-tel__num {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
}
.kdc-firstvisit-access .access-tel__num a,
.page-content__body .kdc-firstvisit-access .access-tel__num a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 0;
}

/* 地図 */
.kdc-firstvisit-access .access-map {
  width: 100%;
  margin-bottom: 56px;
  border-radius: 8px;
  overflow: hidden;
}
.kdc-firstvisit-access .access-map iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

/* 道順ボックス */
.kdc-firstvisit-access .access-directions {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: start;
  background: var(--blue-pale);
  padding: 40px 48px 40px 56px;
  border-radius: 8px;
  position: relative;
}
.kdc-firstvisit-access .access-directions::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 32px;
  width: 3px;
  background: var(--blue);
  border-radius: 2px;
}
.kdc-firstvisit-access .access-directions__label {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
}
.kdc-firstvisit-access .access-directions__body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}
.kdc-firstvisit-access .access-directions__body p:last-child {
  margin-bottom: 0;
}
.kdc-firstvisit-access .access-directions__body strong {
  color: var(--blue);
  font-weight: 700;
}
.kdc-firstvisit-access .access-directions__sub {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}
.kdc-firstvisit-access .access-directions__sub img {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 12px;
}
.kdc-firstvisit-access .access-directions__sub p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
}

/* 道順ステップ（写真スロット付き）── access-route ブロック */
.kdc-firstvisit-access .kdc-route { margin-top: 56px; }
.kdc-firstvisit-access .kdc-route__h {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C2140;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kdc-firstvisit-access .kdc-route__h::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E85A8A;
}
.kdc-firstvisit-access .kdc-route__step {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px dashed rgba(28, 33, 64, 0.15);
}
.kdc-firstvisit-access .kdc-route__step:last-of-type { border-bottom: none; }
.kdc-firstvisit-access .kdc-route__txt {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.kdc-firstvisit-access .kdc-route__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E85A8A;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kdc-firstvisit-access .kdc-route__ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1C2140;
  margin: 0 0 8px;
  line-height: 1.5;
}
.kdc-firstvisit-access .kdc-route__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #1C2140;
  margin: 0;
}
.kdc-firstvisit-access .kdc-route__desc strong { color: #E85A8A; }
.kdc-firstvisit-access .kdc-route__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  background: #fff;
  border: 1px solid rgba(57, 158, 149, 0.35);
  border-radius: 12px;
  padding: 10px 16px;
  width: fit-content;
}
.kdc-firstvisit-access .kdc-route__logo img { width: 44px; height: auto; }
.kdc-firstvisit-access .kdc-route__logo p {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1C2140;
  margin: 0;
  line-height: 1.5;
}
.kdc-firstvisit-access .kdc-route__ph {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
}
.kdc-firstvisit-access .kdc-route__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kdc-firstvisit-access .kdc-route__ph-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(57, 158, 149, 0.06);
  border: 2px dashed rgba(57, 158, 149, 0.4);
  border-radius: 16px;
  color: #399E95;
}
.kdc-firstvisit-access .kdc-route__ph-placeholder i { font-size: 28px; }
.kdc-firstvisit-access .kdc-route__ph-placeholder span {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.6;
  padding: 0 12px;
}
.kdc-firstvisit-access .kdc-route__note {
  margin-top: 24px;
  background: rgba(57, 158, 149, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #1C2140;
}
@media (max-width: 767px) {
  .kdc-firstvisit-access .kdc-route__step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .kdc-firstvisit-access .kdc-route__num {
    width: 40px;
    height: 40px;
    font-size: 1.0625rem;
  }
}

@media (max-width: 900px) {
  .kdc-firstvisit-access .access-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .kdc-firstvisit-access .access-photo {
    aspect-ratio: 16 / 10;
  }
  .kdc-firstvisit-access .access-map {
    margin-bottom: 40px;
  }
  .kdc-firstvisit-access .access-map iframe {
    height: 360px;
  }
  .kdc-firstvisit-access .access-directions {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px 32px 44px;
  }
  .kdc-firstvisit-access .access-directions::before {
    top: 32px;
    bottom: 32px;
    left: 24px;
  }
  .kdc-firstvisit-access .access-directions__sub {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .kdc-firstvisit-access .access-tel {
    grid-template-columns: 52px 1fr;
    gap: 8px 16px;
  }
  .kdc-firstvisit-access .access-tel__lbl {
    font-size: 14px;
  }
  .kdc-firstvisit-access .access-tel__num {
    font-size: 19px;
  }
  .kdc-firstvisit-access .access-map iframe {
    height: 280px;
  }
  .kdc-firstvisit-access .access-directions {
    padding: 24px 18px 24px 32px;
  }
  .kdc-firstvisit-access .access-directions::before {
    top: 24px;
    bottom: 24px;
    left: 14px;
  }
}

/* ===================================
   お知らせ一覧 / アーカイブ
   - news-layout : 2カラム（メイン + サイドバー）
   - news-side   : カテゴリ・月別アーカイブ
   - pagination  : ページネーション
=================================== */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

/* サイドバー */
.news-side__block {
  margin-bottom: 40px;
}
.news-side__block:last-child {
  margin-bottom: 0;
}
.news-side__h {
  margin: 0 0 16px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  border-bottom: 2px solid var(--pink);
}
.news-side__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-side__list li {
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.news-side__list li a,
.page-content__body .news-side__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 0;
  transition: color .15s, background .15s;
}
.news-side__list li a:hover,
.page-content__body .news-side__list li a:hover {
  color: var(--pink);
  background: var(--pink-wash);
  border-bottom: 0;
}
.news-side__count {
  margin-left: auto;
  font-size: 14px;
  color: var(--sub);
}

/* 月別アーカイブ：プルダウン */
.news-side__select-wrap {
  position: relative;
}
.news-side__select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--sub);
  border-bottom: 2px solid var(--sub);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: border-color .15s;
}
.news-side__select-wrap:hover::after {
  border-color: var(--pink);
}
.news-side__select {
  width: 100%;
  padding: 14px 40px 14px 18px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .15s, background .15s;
}
.news-side__select:hover {
  border-color: var(--pink);
}
.news-side__select:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--pink-wash);
}

/* ページネーション */
.pagination {
  margin-top: 48px;
  text-align: center;
}
.pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.pagination a.page-numbers:hover,
.page-content__body .pagination a.page-numbers:hover {
  background: var(--pink-wash);
  color: var(--pink);
  border-color: var(--pink);
  border-bottom: 1px solid var(--pink);
}
.pagination .page-numbers.current {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.pagination .page-numbers.dots {
  border: 0;
  background: transparent;
}
/* page-content__body 内アンカーの border-bottom 上書き */
.page-content__body .pagination a.page-numbers {
  border-bottom: 1px solid var(--line);
}

/* 投稿ナビ（前の記事 / 次の記事） */
.post-nav {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.post-nav__item {
  flex: 0 1 auto;
}
.post-nav__item a,
.page-content__body .post-nav__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 200px;
  padding: 14px 28px;
  color: var(--pink);
  background: #fff;
  border: 1px solid var(--pink);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.post-nav__item a:hover,
.page-content__body .post-nav__item a:hover {
  background: var(--pink);
  color: #fff;
  border-bottom: 1px solid var(--pink);
}
.post-nav__arrow {
  font-size: 20px;
  line-height: 1;
}
.post-nav__txt {
  display: inline-block;
}

/* 片方しかない場合に右寄せ／左寄せにする */
.post-nav__item--next {
  margin-left: auto;
}

@media (max-width: 500px) {
  .post-nav__item a,
  .page-content__body .post-nav__item a {
    min-width: 0;
    padding: 12px 18px;
    gap: 8px;
    font-size: 14px;
  }
}

/* モバイル：縦並び */
@media (max-width: 900px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 500px) {
  .news-side__h {
    font-size: 17px;
  }
  .news-side__list li a,
  .page-content__body .news-side__list li a {
    font-size: 15px;
    padding: 10px 4px;
  }
  .pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
    padding: 0 10px;
  }
}

