/* ============================================
   リセット・共通
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
               "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
               "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3 { margin: 0; }

/* ============================================
   1. パンくずリスト
   ============================================ */
.breadcrumb-wrap {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}
.breadcrumb-wrap::before,
.breadcrumb-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 1px;
  width: 32px; z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.breadcrumb-wrap::before { left: 0; background: linear-gradient(to right, #f7f6f2, transparent); }
.breadcrumb-wrap::after  { right: 0; background: linear-gradient(to left, #f7f6f2, transparent); }
.breadcrumb-wrap--fade-left::before  { opacity: 1; }
.breadcrumb-wrap--fade-right::after  { opacity: 1; }

.breadcrumb-wrap__chevron {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; pointer-events: none;
  color: #555; font-size: 15px; line-height: 1;
  opacity: 0; transition: opacity 0.2s ease;
}
.breadcrumb-wrap__chevron--left  { left: 4px; }
.breadcrumb-wrap__chevron--right { right: 4px; }
.breadcrumb-wrap--fade-left .breadcrumb-wrap__chevron--left   { opacity: 1; }
.breadcrumb-wrap--fade-right .breadcrumb-wrap__chevron--right { opacity: 1; }

.breadcrumb {
  background: #f7f6f2;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.breadcrumb::-webkit-scrollbar { display: none; }

.breadcrumb__list {
  display: flex; align-items: center;
  margin: 0 auto; padding: 0 16px;
  max-width: 960px; white-space: nowrap;
  font-size: 15px; line-height: 1.4;
}
.breadcrumb__item { display: flex; align-items: center; color: #555; }
.breadcrumb__item + .breadcrumb__item::before {
  content: ">"; margin: 0 8px; color: #777; font-size: 14px;
}
.breadcrumb__link {
  display: block; padding: 12px 0;
  color: #0b5da2; text-decoration: none; transition: color 0.2s ease;
}
.breadcrumb__link:hover { text-decoration: underline; }
.breadcrumb__item--current { padding: 12px 0; color: #555; }

@media (min-width: 768px) {
  .breadcrumb__list { padding: 0 20px; font-size: 16px; }
  .breadcrumb__link, .breadcrumb__item--current { padding: 14px 0; }
}

/* ============================================
   1b. ページ大見出し（h1）
   ============================================ */
.page-h1 { background: #fff; padding: 20px 16px 12px; }
.page-h1__text {
  max-width: 960px; margin: 0 auto;
  font-size: 22px; font-weight: bold; color: #333; line-height: 1.5;
}
.page-h1__badge {
  display: inline-block;
  background: #0b5da2; color: #fff;
  font-size: 15px; font-weight: bold;
  padding: 2px 10px; border-radius: 3px;
  margin-right: 8px; vertical-align: middle;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .page-h1 { padding: 16px 16px 8px; text-align: center; }
  .page-h1__text { font-size: 19px; }
  .page-h1__badge { font-size: 14px; padding: 2px 8px; margin-right: 6px; }
}

/* ============================================
   2. ヒーロー（FV）
   ============================================ */
.hero { background: #fff; text-align: center; }
.hero__img-pc { display: none; }
.hero__img-sp { display: block; width: 100%; }
@media (min-width: 768px) {
  .hero__img-pc { display: block; max-width: 960px; width: 100%; margin: 0 auto; }
  .hero__img-sp { display: none; }
}

/* ============================================
   2b. ブランドステートメント
   ============================================ */
.brand-statement { background: #f7f6f2; padding: 36px 20px; text-align: center; }
.brand-statement__inner { max-width: 640px; margin: 0 auto; }
.brand-statement__catchcopy { font-size: 26px; font-weight: bold; color: #333; line-height: 1.4; margin-bottom: 14px; }
.brand-statement__body { font-size: 18px; color: #555; line-height: 1.7; }
.brand-statement__body .accent { color: #0b5da2; font-weight: bold; }
.brand-statement__years { display: block; margin-top: 12px; font-size: 18px; color: #333; font-weight: bold; letter-spacing: 0.05em; }
.brand-statement__years .number { font-size: 38px; color: #0b5da2; font-weight: bold; line-height: 1.2; }
.brand-statement__years .unit { font-size: 22px; color: #0b5da2; }
@media (max-width: 767px) {
  .brand-statement { padding: 20px 16px; }
  .brand-statement__catchcopy { font-size: 21px; margin-bottom: 10px; }
  .brand-statement__body { font-size: 16px; }
  .brand-statement__years { font-size: 16px; margin-top: 8px; }
  .brand-statement__years .number { font-size: 30px; }
  .brand-statement__years .unit { font-size: 18px; }
}

/* ============================================
   3. トラストバー
   ============================================ */
.trust-bar { background: #2c4a6e; padding: 24px 20px; }
.trust-bar__inner {
  max-width: 960px; margin: 0 auto;
  display: flex; justify-content: center;
}
.trust-bar__item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center; padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__value { display: flex; align-items: flex-end; justify-content: center; gap: 3px; min-height: 52px; }
.trust-bar__number { font-size: 46px; font-weight: bold; color: #fff; line-height: 1; }
.trust-bar__number--text { font-size: 34px; letter-spacing: 0.05em; }
.trust-bar__unit { font-size: 20px; font-weight: bold; color: rgba(255,255,255,0.9); margin-left: 2px; }
.trust-bar__reg { font-size: 14px; color: rgba(255,255,255,0.9); vertical-align: super; line-height: 1; }
.trust-bar__label { display: block; font-size: 15px; color: #fff; margin-top: 8px; line-height: 1.4; letter-spacing: 0.05em; }

@media (max-width: 767px) {
  .trust-bar { padding: 20px 16px; }
  .trust-bar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-bar__item { padding: 14px 12px; border-right: none; }
  .trust-bar__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.2); }
  .trust-bar__item:nth-child(1), .trust-bar__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .trust-bar__value { height: 44px; }
  .trust-bar__number { font-size: 38px; }
  .trust-bar__number--text { font-size: 28px; }
  .trust-bar__unit { font-size: 18px; }
}

/* ============================================
   4. メインCTA
   ============================================ */
.main-cta { background: #f7f6f2; padding: 24px 10px 32px; }
.main-cta__inner { max-width: 960px; margin: 0 auto; }
.main-cta__lead { font-size: 16px; color: #333; text-align: center; margin-bottom: 14px; line-height: 1.6; font-weight: 500; }
.main-cta__web {
  position: relative; display: flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%; min-height: 60px;
  padding: 18px 40px 18px 20px;
  background: #0b5da2; color: #fff; border-radius: 6px;
  box-shadow: 0 2px 10px rgba(11,93,162,0.28);
  text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.main-cta__web::after {
  content: "\203A"; position: absolute; right: 16px; top: 50%;
  transform: translateY(-55%); font-size: 28px; font-weight: 300; color: #fff;
}
.main-cta__web-icon svg { width: 22px; height: 22px; display: block; }
.main-cta__web-body { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.main-cta__web-main { font-size: 22px; font-weight: bold; line-height: 1.2; }
.main-cta__web-sub { font-size: 14px; opacity: 0.85; line-height: 1.3; }
.main-cta__phone-sp {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; width: 100%; min-height: 60px; padding: 18px;
  background: #fff; color: #d4534e; border: 1px solid #d4534e;
  border-radius: 4px; text-decoration: none; margin-top: 10px;
  -webkit-tap-highlight-color: transparent;
}
.main-cta__phone-sp svg { width: 18px; height: 18px; }
.main-cta__phone-sp-label { font-size: 16px; font-weight: bold; line-height: 1.2; }
.main-cta__phone-sp-hours { font-size: 14px; color: #777; }
.main-cta__phone-pc { display: none; }

@media (min-width: 768px) {
  .main-cta { padding: 28px 20px; }
  .main-cta__lead { font-size: 17px; margin-bottom: 16px; }
  .main-cta__web {
    max-width: 440px; margin: 0 auto; min-height: 64px;
    padding: 20px 48px 20px 28px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
  }
  .main-cta__web:hover { background: #094a84; box-shadow: 0 4px 14px rgba(11,93,162,0.35); }
  .main-cta__web::after { right: 20px; font-size: 30px; }
  .main-cta__web-main { font-size: 24px; }
  .main-cta__web-sub { font-size: 14px; }
  .main-cta__phone-sp { display: none; }
  .main-cta__phone-pc {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 14px; color: #555;
  }
  .main-cta__phone-pc svg { width: 18px; height: 18px; color: #d4534e; }
  .main-cta__phone-pc-number { font-size: 24px; font-weight: bold; color: #333; letter-spacing: 0.05em; }
  .main-cta__phone-pc-note { font-size: 14px; color: #777; margin-left: 4px; }
}

/* ============================================
   5. ナビバー
   ============================================ */
.page-nav { background: #f7f6f2; padding: 0 16px; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; }
.page-nav__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 960px; margin: 0 auto; }
.page-nav__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 10px 4px; text-decoration: none;
  border-right: 1px solid #e5e5e5; -webkit-tap-highlight-color: transparent;
}
.page-nav__item:last-child { border-right: none; }
.page-nav__item:active { background: rgba(11,93,162,0.06); }
.page-nav__label {
  font-size: 15px; font-weight: bold; color: #333;
  line-height: 1.4; text-align: center; word-break: keep-all; overflow-wrap: anywhere;
}
.page-nav__chevron {
  display: block; width: 6px; height: 6px;
  border-right: 2px solid #999; border-bottom: 2px solid #999;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .page-nav { padding: 0 20px; }
  .page-nav__item { padding: 10px 8px; border-radius: 4px; border-right: none; transition: background 0.2s ease; cursor: pointer; }
  .page-nav__item:hover { background: #fff; }
  .page-nav__label { font-size: 14px; }
  .page-nav__chevron { width: 7px; height: 7px; transition: border-color 0.2s ease; }
  .page-nav__item:hover .page-nav__chevron { border-color: #0b5da2; }
}

/* ============================================
   6. 医師プロフィール
   ============================================ */
.doctor-section { background: #f7f6f2; padding: 32px 10px; }
.doctor-section__heading { text-align: center; margin-bottom: 24px; }
.doctor-section__label { font-family: 'Times New Roman', 'Georgia', serif; font-size: 14px; color: #b8a472; letter-spacing: 0.15em; margin-bottom: 6px; }
.doctor-section__title { font-size: 26px; font-weight: bold; color: #333; line-height: 1.6; }
.doctor-section__title span { color: #0b5da2; }
.doctor-card { border-bottom: 1px solid #e5e5e5; padding-bottom: 24px; margin-bottom: 24px; }
.doctor-card:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.doctor-card__summary { display: flex; gap: 16px; align-items: flex-start; }
.doctor-card__photo { flex-shrink: 0; width: 100px; height: 120px; background: #f7f6f2; border-radius: 4px; overflow: hidden; }
.doctor-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card__info { flex: 1; min-width: 0; }
.doctor-card__role { font-size: 15px; color: #0b5da2; font-weight: bold; margin-bottom: 4px; line-height: 1.3; }
.doctor-card__name { font-size: 22px; font-weight: bold; color: #333; line-height: 1.4; }
.doctor-card__career { margin-top: 16px; padding-top: 12px; border-top: 1px dotted #ddd; }
.doctor-card__career-title { font-size: 14px; font-weight: bold; color: #333; margin-bottom: 6px; }
.doctor-card__career-list { padding: 0; }
.doctor-card__career-list li { font-size: 14px; color: #555; line-height: 1.8; padding-left: 14px; position: relative; }
.doctor-card__career-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: #0b5da2; border-radius: 50%; }
.doctor-card__video { margin-top: 16px; padding-top: 12px; border-top: 1px dotted #ddd; }
.doctor-card__video-title { font-size: 14px; font-weight: bold; color: #333; margin-bottom: 8px; }
.doctor-card__video-wrap { position: relative; width: 100%; max-width: 480px; margin: 0 auto; }
.doctor-card__video-thumb { position: relative; width: 100%; padding-top: 56.25%; background: #1a2a3a; border-radius: 4px; overflow: hidden; cursor: pointer; }
.doctor-card__video-thumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.doctor-card__video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; background: rgba(11,93,162,0.85); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; }
.doctor-card__video-thumb:active .doctor-card__video-play { background: rgba(11,93,162,1); }
.doctor-card__video-play svg { width: 22px; height: 22px; margin-left: 3px; }
.doctor-card__video-thumb iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.doctor-card__comment { margin-top: 16px; padding-top: 12px; border-top: 1px dotted #ddd; text-align: center; }
.doctor-card__comment-title { font-size: 14px; font-weight: bold; color: #333; margin-bottom: 6px; text-align: left; }
.doctor-card__comment-text { font-size: 15px; color: #555; line-height: 1.8; position: relative; max-height: 8em; overflow: hidden; transition: max-height 0.4s ease; text-align: left; }
.doctor-card__comment-text::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2em; background: linear-gradient(transparent, #f7f6f2); transition: opacity 0.3s ease; }
.doctor-card__comment-text.is-open { max-height: 1000px; }
.doctor-card__comment-text.is-open::after { opacity: 0; pointer-events: none; }
.doctor-card__more { display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; padding: 6px 0; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: bold; color: #0b5da2; -webkit-tap-highlight-color: transparent; }

/* 共通 accordion-icon */
.accordion-icon { display: inline-block; width: 16px; height: 16px; position: relative; flex-shrink: 0; }
.accordion-icon::before, .accordion-icon::after { content: ''; position: absolute; background: #0b5da2; transition: transform 0.3s ease; }
.accordion-icon::before { top: 7px; left: 2px; width: 12px; height: 2px; }
.accordion-icon::after { top: 2px; left: 7px; width: 2px; height: 12px; }
.is-open > .accordion-icon::after,
.is-open .accordion-icon::after { transform: rotate(90deg); }

.doctor-section__staff-link { margin-top: 24px; text-align: center; }
.doctor-section__staff-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; width: 100%; min-height: 60px;
  padding: 16px 40px 16px 24px;
  border: 1px solid #0b5da2; border-radius: 6px;
  color: #0b5da2; background: transparent; text-decoration: none;
  font-family: inherit; font-size: 16px; font-weight: bold;
  box-shadow: 0 2px 10px rgba(11,93,162,0.12);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.doctor-section__staff-btn svg { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; }

@media (min-width: 768px) {
  .doctor-section { padding: 48px 20px; }
  .doctor-section__inner { max-width: 860px; margin: 0 auto; }
  .doctor-section__heading { margin-bottom: 32px; }
  .doctor-section__label { font-size: 16px; }
  .doctor-section__title { font-size: 32px; }
  .doctor-card__summary { gap: 24px; }
  .doctor-card__photo { width: 140px; height: 170px; }
  .doctor-card__name { font-size: 26px; }
  .doctor-card__video-thumb:hover .doctor-card__video-play { background: rgba(11,93,162,1); }
  .doctor-card__comment-text { font-size: 17px; }
  .doctor-card__more { font-size: 15px; transition: opacity 0.2s ease; }
  .doctor-card__more:hover { opacity: 0.7; }
  .doctor-card__career-list li { font-size: 15px; }
  .doctor-section__staff-btn { width: auto; min-width: 320px; padding: 16px 48px 16px 32px; font-size: 18px; }
  .doctor-section__staff-btn:hover { background: #0b5da2; color: #fff; box-shadow: 0 4px 14px rgba(11,93,162,0.25); }
  .doctor-section__staff-btn:hover svg { color: #fff; }
}

/* ============================================
   7. 症例
   ============================================ */
.case-section { background: #fff; padding: 32px 10px; }
.case-section__heading { text-align: center; margin-bottom: 24px; }
.case-section__label { font-family: 'Times New Roman', 'Georgia', serif; font-size: 14px; color: #b8a472; letter-spacing: 0.15em; margin-bottom: 6px; }
.case-section__title { font-size: 26px; font-weight: bold; color: #333; line-height: 1.6; }
.case-section__title span { color: #0b5da2; }
.case-scroll { position: relative; overflow: hidden; }
.case-scroll::before,
.case-scroll::after {
  content: ""; position: absolute; top: 0;
  width: 20px; height: 100%; z-index: 1;
  pointer-events: none;
}
.case-scroll::before { left: 0; background: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,0.6)); }
.case-scroll::after { right: 0; background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.6)); }
.case-scroll__header {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; margin-bottom: 12px; padding: 0 16px;
}
.case-scroll__hint {
  font-size: 13px; color: #999; letter-spacing: 0.02em; order: 2;
}
.case-scroll__nav { display: none; position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 2; }
.case-scroll__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.case-scroll__arrow svg { width: 18px; height: 18px; color: #0b5da2; }
.case-scroll__arrow--prev { left: -2px; }
.case-scroll__arrow--next { right: -2px; }
.case-scroll__arrow:disabled { opacity: 0; pointer-events: none; }
.case-scroll__track {
  display: flex; gap: 12px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 16px;
}
.case-scroll__track::-webkit-scrollbar { display: none; }
.case-scroll__item {
  flex: 0 0 80vw;
  scroll-snap-align: center;
}
.case-pager {
  display: flex; align-items: center;
  gap: 12px; order: 1;
  font-size: 14px; color: #999; font-weight: bold;
}
.case-pager__current { color: #0b5da2; font-size: 15px; font-weight: 900; }
.case-pager__prev,
.case-pager__next {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid #ddd; background: #fff;
  font-size: 15px; color: #0b5da2; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.case-pager__prev:disabled,
.case-pager__next:disabled { opacity: 0.3; cursor: default; }
.case-card { background: #f7f6f2; border-radius: 8px; overflow: hidden; }
.case-card__photo { padding: 16px; }
.case-card__photo img { width: 100%; border-radius: 4px; }
.case-card__more-photos { padding: 0 16px; }
.case-card__photos-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; width: 100%; padding: 12px 0; background: none; border: none;
  border-bottom: 1px dotted #ddd; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: bold; color: #0b5da2;
  -webkit-tap-highlight-color: transparent;
}
.case-card__photos-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.case-card__photos-body.is-open { max-height: 1200px; }
.case-card__photos-grid { display: flex; flex-direction: column; gap: 8px; padding: 12px 0; }
.case-card__photo-item { width: 100%; background: #1a2a3a; border-radius: 4px; overflow: hidden; }
.case-card__photo-item img { width: 100%; }
.case-card__body { padding: 16px; }
.case-card__tag { display: inline-block; padding: 3px 10px; background: #0b5da2; color: #fff; font-size: 14px; font-weight: bold; border-radius: 2px; margin-bottom: 8px; }
.case-card__case-title { font-size: 20px; font-weight: bold; color: #333; line-height: 1.6; margin-bottom: 8px; }
.case-card__patient { font-size: 15px; color: #777; margin-bottom: 10px; }
.case-card__summary { display: flex; flex-wrap: wrap; border-top: 1px dotted #ddd; padding-top: 10px; }
.case-card__summary-item { width: 50%; padding: 4px 0; }
.case-card__summary-label { font-size: 14px; color: #999; line-height: 1.3; }
.case-card__summary-value { font-size: 15px; font-weight: bold; color: #333; line-height: 1.4; }
.case-card__summary-value--price { color: #0b5da2; }
.case-card__price-breakdown { margin-top: 10px; padding-top: 10px; border-top: 1px dotted #ddd; }
.case-card__price-breakdown-title { font-size: 15px; color: #999; margin-bottom: 4px; }
.case-card__price-breakdown-list { padding: 0; display: flex; flex-wrap: wrap; gap: 0 12px; }
.case-card__price-breakdown-list li { font-size: 14px; color: #555; line-height: 1.8; padding-left: 14px; position: relative; }
.case-card__price-breakdown-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: #0b5da2; border-radius: 50%; }
.case-card__price-note { font-size: 13px; color: #999; margin-top: 6px; line-height: 1.6; }
.case-card__detail { padding: 0 16px; }
.case-card__toggle {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 12px 0; background: none; border: none;
  border-top: 1px dotted #ddd; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: bold; color: #0b5da2;
  -webkit-tap-highlight-color: transparent;
}
.case-card__detail-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.case-card__detail-body.is-open { max-height: 800px; }
.case-card__detail-content { padding-bottom: 16px; }
.case-card__detail-row { padding: 6px 0; border-bottom: 1px dotted #ddd; }
.case-card__detail-row:last-child { border-bottom: none; }
.case-card__detail-label { font-size: 15px; color: #999; margin-bottom: 2px; }
.case-card__detail-value { font-size: 15px; color: #555; line-height: 1.8; }
.case-section__more-link { margin-top: 16px; text-align: center; }
.case-section__more-lead { font-size: 18px; color: #333; font-weight: 500; text-align: center; margin-bottom: 8px; line-height: 1.6; }
.case-section__more-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; width: 100%; min-height: 60px;
  padding: 16px 40px 16px 24px;
  border: 1px solid #0b5da2; border-radius: 6px;
  color: #0b5da2; background: #fff; text-decoration: none;
  font-family: inherit; font-size: 16px; font-weight: bold;
  box-shadow: 0 2px 10px rgba(11,93,162,0.12);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.case-section__more-btn svg { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; }

@media (min-width: 768px) {
  .case-section { padding: 48px 20px; }
  .case-section__heading { margin-bottom: 32px; }
  .case-section__label { font-size: 16px; }
  .case-section__title { font-size: 32px; }
  .case-scroll__header { flex-direction: row; justify-content: space-between; gap: 0; max-width: 860px; margin: 0 auto 12px; padding: 0 20px; }
  .case-scroll__hint { font-size: 13px; order: 0; }
  .case-scroll__hint::after { content: "左右の矢印で他の症例もご覧いただけます"; }
  .case-scroll__hint > span { display: none; }
  .case-pager { font-size: 16px; gap: 8px; order: 0; }
  .case-pager__current { font-size: 20px; }
  .case-pager__prev, .case-pager__next { width: 32px; height: 32px; font-size: 18px; }
  .case-scroll__nav { display: flex; max-width: 940px; margin: 0 auto; }
  .case-scroll__arrow { width: 44px; height: 44px; }
  .case-scroll__arrow svg { width: 22px; height: 22px; }
  .case-scroll__track { max-width: 860px; margin: 0 auto; padding: 0 20px; gap: 16px; }
  .case-scroll__item { flex: 0 0 calc(860px - 160px); scroll-snap-align: center; }
  .case-card { max-width: none; }
  .case-card__body { padding: 20px 24px; }
  .case-card__detail { padding: 0 24px; }
  .case-card__toggle { transition: opacity 0.2s ease; }
  .case-card__toggle:hover { opacity: 0.7; }
  .case-section__more-btn { width: auto; min-width: 320px; padding: 16px 48px 16px 32px; font-size: 18px; }
  .case-section__more-btn:hover { background: #0b5da2; color: #fff; box-shadow: 0 4px 14px rgba(11,93,162,0.25); }
  .case-section__more-btn:hover svg { color: #fff; }
}

/* ============================================
   8. FAQ
   ============================================ */
.faq-wrapper { background: #f7f6f2; }
.faq-wrapper .idental-faq__cta { background: #fff; }
.idental-faq { max-width: 960px; margin: 0 auto; padding: 40px 20px; font-size: 18px; line-height: 1.8; color: #333; }
@media (min-width: 768px) { .idental-faq { font-size: 20px; padding: 60px 20px; } }
.idental-faq__heading { text-align: center; margin-bottom: 12px; }
.idental-faq__heading-en { display: block; font-family: 'Times New Roman', 'Georgia', serif; font-size: 14px; letter-spacing: 0.15em; color: #b8a472; font-weight: normal; text-transform: uppercase; margin-bottom: 8px; }
@media (min-width: 768px) { .idental-faq__heading-en { font-size: 16px; } }
.idental-faq__heading-ja { display: block; font-size: 26px; font-weight: 700; color: #333; line-height: 1.6; }
@media (min-width: 768px) { .idental-faq__heading-ja { font-size: 32px; } }
.idental-faq__heading-sub { text-align: center; font-size: 15px; color: #777; margin-bottom: 36px; line-height: 1.8; }
@media (min-width: 768px) { .idental-faq__heading-sub { font-size: 17px; } }
.idental-faq__list { padding: 0; }
.idental-faq__item { border-bottom: 1px solid #e5e5e5; }
.idental-faq__item:first-child { border-top: 1px solid #e5e5e5; }
.idental-faq__question {
  display: flex; align-items: flex-start; gap: 12px; width: 100%;
  padding: 20px 4px; background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit; font-size: 18px; font-weight: 600;
  color: #333; line-height: 1.7; transition: color 0.2s ease;
}
@media (min-width: 768px) { .idental-faq__question { font-size: 20px; padding: 24px 4px; } }
.idental-faq__question:hover { color: #0b5da2; }
.idental-faq__q-label {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: #0b5da2; color: #fff;
  font-family: 'Times New Roman', 'Georgia', serif; font-size: 16px; font-weight: bold; line-height: 1; margin-top: 2px;
}
.idental-faq__q-text { flex: 1; padding-top: 4px; }
.idental-faq__icon {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 7px; margin-left: auto;
  position: relative; transition: transform 0.3s ease;
}
.idental-faq__icon::before, .idental-faq__icon::after { content: ""; position: absolute; background: #999; border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease; }
.idental-faq__icon::before { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.idental-faq__icon::after { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); }
.idental-faq__item.is-open .idental-faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.idental-faq__answer { display: none; padding: 0 4px 24px 50px; }
@media (max-width: 767px) { .idental-faq__answer { padding-left: 4px; } }
.idental-faq__item.is-open .idental-faq__answer { display: block; }
.idental-faq__a-label {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: #d4534e; color: #fff;
  font-family: 'Times New Roman', 'Georgia', serif; font-size: 16px; font-weight: bold; line-height: 1; margin-bottom: 8px;
}
.idental-faq__summary { font-size: 18px; line-height: 1.9; color: #333; margin-bottom: 16px; }
@media (min-width: 768px) { .idental-faq__summary { font-size: 20px; } }
.idental-faq__detail { font-size: 16px; line-height: 1.9; color: #555; margin-bottom: 12px; }
@media (min-width: 768px) { .idental-faq__detail { font-size: 17px; } }
.idental-faq__detail strong { color: #333; font-weight: 600; }
.idental-faq__links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 14px; }
.idental-faq__links a { font-size: 16px; color: #0b5da2; text-decoration: underline; transition: text-decoration 0.2s ease; }
@media (min-width: 768px) { .idental-faq__links a { font-size: 17px; } }
.idental-faq__links a:hover { text-decoration: none; }
.idental-faq__links a::before { content: "\25B6\0020"; font-size: 12px; }
.idental-faq__cta { text-align: center; margin-top: 36px; padding: 28px 20px; background: #f7f6f2; border-radius: 8px; }
.idental-faq__cta-text { font-size: 16px; color: #333; font-weight: 500; margin-bottom: 16px; line-height: 1.7; }
@media (min-width: 768px) { .idental-faq__cta-text { font-size: 18px; } }
.idental-faq__cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 60px; padding: 18px 40px;
  background: #0b5da2; color: #fff; font-size: 18px; font-weight: bold;
  text-decoration: none; border-radius: 6px;
  box-shadow: 0 2px 10px rgba(11,93,162,0.20); letter-spacing: 0.05em;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) { .idental-faq__cta-btn { font-size: 20px; } }
.idental-faq__cta-btn:hover { background: #094a84; box-shadow: 0 4px 14px rgba(11,93,162,0.28); }
.idental-faq__cta-tel { display: block; margin-top: 12px; font-size: 15px; color: #777; }
@media (min-width: 768px) { .idental-faq__cta-tel { font-size: 16px; } }
.idental-faq .pc-only { display: block; }
@media (max-width: 767px) { .idental-faq .pc-only { display: none; } }

/* ============================================
   9. コーディネーター相談
   ============================================ */
.coordinator-section { background: #fff; padding: 40px 16px; }
.coordinator-section__inner { max-width: 960px; margin: 0 auto; }
.coordinator-section__heading { text-align: center; margin-bottom: 32px; }
.coordinator-section__label { font-family: 'Times New Roman', 'Georgia', serif; font-size: 14px; color: #b8a472; letter-spacing: 0.15em; margin-bottom: 8px; }
.coordinator-section__title { font-size: 26px; font-weight: bold; color: #333; line-height: 1.6; }
.coordinator-section__title span { color: #0b5da2; }
.coordinator-section__box { background: #f7f6f2; border-left: 3px solid #0b5da2; border-radius: 8px; padding: 24px 20px; margin-bottom: 28px; }
.coordinator-section__lead { font-size: 18px; color: #333; line-height: 1.8; margin: 0 0 12px; }
.coordinator-section__lead strong { color: #0b5da2; }
.coordinator-section__sub { font-size: 16px; color: #555; line-height: 1.8; margin: 0 0 16px; }
.coordinator-section__concerns { padding: 0; margin: 0 0 16px; }
.coordinator-section__concerns li { position: relative; padding-left: 18px; font-size: 18px; font-weight: bold; color: #333; line-height: 1.8; margin-bottom: 4px; }
.coordinator-section__concerns li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; background: #0b5da2; border-radius: 50%; }
.coordinator-section__desc { font-size: 18px; color: #555; line-height: 1.8; margin: 0; }
.coordinator-section__cta { text-align: center; margin-top: 28px; }
.coordinator-section__cta-text { font-size: 16px; color: #555; line-height: 1.8; margin: 0 0 16px; }
.coordinator-section__cta-btn {
  position: relative; display: block; width: 100%; min-height: 60px;
  padding: 18px 40px 18px 20px;
  background: #0b5da2; color: #fff; font-size: 18px; font-weight: bold;
  letter-spacing: 0.05em; text-align: center; text-decoration: none;
  border-radius: 4px; line-height: 1.4; -webkit-tap-highlight-color: transparent;
}
.coordinator-section__cta-btn::after { content: "\203A"; position: absolute; right: 16px; top: 50%; transform: translateY(-55%); font-size: 26px; font-weight: 300; color: #fff; }

@media (min-width: 768px) {
  .coordinator-section { padding: 60px 20px; }
  .coordinator-section__heading { margin-bottom: 40px; }
  .coordinator-section__label { font-size: 16px; }
  .coordinator-section__title { font-size: 32px; }
  .coordinator-section__box { padding: 32px 28px; margin-bottom: 36px; }
  .coordinator-section__lead { font-size: 20px; }
  .coordinator-section__sub { font-size: 17px; }
  .coordinator-section__concerns li { font-size: 20px; }
  .coordinator-section__concerns li::before { top: 13px; }
  .coordinator-section__desc { font-size: 20px; }
  .coordinator-section__cta { margin-top: 36px; }
  .coordinator-section__cta-text { font-size: 17px; }
  .coordinator-section__cta-btn { display: inline-block; width: auto; max-width: 440px; min-height: 60px; padding: 18px 48px 18px 28px; font-size: 20px; transition: background 0.2s ease; }
  .coordinator-section__cta-btn:hover { background: #094a84; }
  .coordinator-section__cta-btn::after { right: 20px; font-size: 28px; }
}

/* ============================================
   10. 来院エリア
   ============================================ */
.visit-area-wrapper { background: #f7f6f2; }
.visit-area { max-width: 960px; margin: 0 auto; padding: 40px 20px; font-size: 18px; line-height: 1.8; color: #333; }
@media (min-width: 768px) { .visit-area { font-size: 20px; padding: 60px 20px; } }
.visit-area__heading { text-align: center; margin-bottom: 12px; }
.visit-area__heading-en { display: block; font-family: 'Times New Roman', 'Georgia', serif; font-size: 14px; letter-spacing: 0.15em; color: #b8a472; font-weight: normal; text-transform: uppercase; margin-bottom: 8px; }
@media (min-width: 768px) { .visit-area__heading-en { font-size: 16px; } }
.visit-area__heading-ja { display: block; font-size: 26px; font-weight: 700; color: #333; line-height: 1.6; }
@media (min-width: 768px) { .visit-area__heading-ja { font-size: 32px; } }
.visit-area__heading-ja span { color: #0b5da2; }
.visit-area__lead { text-align: center; font-size: 15px; color: #555; margin-bottom: 28px; line-height: 1.9; }
@media (min-width: 768px) { .visit-area__lead { font-size: 17px; margin-bottom: 36px; } }
.visit-area__group { background: #fff; border-radius: 8px; padding: 20px 16px; margin-bottom: 12px; }
@media (min-width: 768px) { .visit-area__group { padding: 24px; } }
.visit-area__group-title { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #e5e5e5; display: flex; align-items: center; gap: 8px; }
@media (min-width: 768px) { .visit-area__group-title { font-size: 18px; } }
.visit-area__group-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: #0b5da2; color: #fff; display: flex; align-items: center; justify-content: center; }
.visit-area__group-icon svg { width: 14px; height: 14px; }
.visit-area__subgroup { padding-top: 12px; }
.visit-area__subgroup + .visit-area__subgroup { margin-top: 14px; padding-top: 14px; border-top: 1px dotted #ddd; }
.visit-area__subgroup-label { font-size: 14px; font-weight: 700; color: #0b5da2; margin-bottom: 10px; }
@media (min-width: 768px) { .visit-area__subgroup-label { font-size: 15px; } }
.visit-area__tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; }
.visit-area__tag { display: inline-block; padding: 4px 14px; font-size: 14px; color: #555; background: #f7f6f2; border-radius: 4px; line-height: 1.6; }
@media (min-width: 768px) { .visit-area__tag { font-size: 15px; padding: 5px 16px; } }
.visit-area__note { font-size: 14px; color: #777; text-align: center; margin-top: 20px; line-height: 1.8; }
@media (min-width: 768px) { .visit-area__note { font-size: 15px; } }
.visit-area__group-note { margin: 10px 0 0; font-size: 14px; color: #777; line-height: 1.6; }
@media (min-width: 768px) { .visit-area__group-note { font-size: 15px; } }
.visit-area__cta { text-align: center; margin-top: 36px; padding: 28px 20px; background: #fff; border-radius: 8px; }
.visit-area__cta-text { font-size: 16px; color: #333; font-weight: 500; margin-bottom: 16px; line-height: 1.7; }
@media (min-width: 768px) { .visit-area__cta-text { font-size: 18px; } }
.visit-area__cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 60px; padding: 18px 40px;
  background: #0b5da2; color: #fff; font-size: 18px; font-weight: bold;
  text-decoration: none; border-radius: 6px;
  box-shadow: 0 2px 10px rgba(11,93,162,0.20); letter-spacing: 0.05em;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 768px) { .visit-area__cta-btn { font-size: 20px; } }
.visit-area__cta-btn:hover { background: #094a84; box-shadow: 0 4px 14px rgba(11,93,162,0.28); }
.visit-area__cta-tel { display: block; margin-top: 12px; font-size: 15px; color: #777; }
@media (min-width: 768px) { .visit-area__cta-tel { font-size: 16px; } }
.visit-area .pc-only { display: block; }
@media (max-width: 767px) { .visit-area .pc-only { display: none; } }

/* ============================================
   11. アクセス
   ============================================ */
.access-section { background: #fff; padding: 32px 10px; }
.access-section__heading { text-align: center; margin-bottom: 24px; }
.access-section__label { font-family: 'Times New Roman', 'Georgia', serif; font-size: 14px; color: #b8a472; letter-spacing: 0.15em; margin-bottom: 6px; }
.access-section__title { font-size: 26px; font-weight: bold; color: #333; line-height: 1.6; }
.access-section__title span { color: #0b5da2; }
.access-card { background: #f7f6f2; border-radius: 8px; padding: 20px 16px; margin-bottom: 16px; }
.access-card__name { font-size: 20px; font-weight: bold; color: #333; margin-bottom: 12px; line-height: 1.4; }
.access-card__row { display: flex; padding: 8px 0; border-bottom: 1px dotted #ddd; }
.access-card__row:last-child { border-bottom: none; }
.access-card__label { flex-shrink: 0; width: 72px; font-size: 15px; font-weight: bold; color: #333; line-height: 1.6; }
.access-card__value { flex: 1; font-size: 15px; color: #555; line-height: 1.6; }
.access-map { margin-bottom: 16px; border-radius: 8px; overflow: hidden; }
.access-map iframe { width: 100%; height: 240px; border: none; display: block; }
.access-route { background: #f7f6f2; border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.access-route__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px; background: none; border: none; cursor: pointer;
  font-family: inherit; -webkit-tap-highlight-color: transparent;
}
.access-route__toggle-left { display: flex; align-items: center; gap: 10px; }
.access-route__toggle-icon { flex-shrink: 0; width: 36px; height: 36px; background: #0b5da2; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; }
.access-route__toggle-icon svg { width: 18px; height: 18px; }
.access-route__toggle-text { text-align: left; }
.access-route__toggle-station { display: block; font-size: 18px; font-weight: bold; color: #333; line-height: 1.3; }
.access-route__toggle-time { display: block; font-size: 15px; color: #777; margin-top: 2px; }
.access-route__body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.access-route__body.is-open { max-height: 5000px; }
.access-route__steps { padding: 0 16px 20px; counter-reset: step; }
.access-route__step { counter-increment: step; display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dotted #ddd; }
.access-route__step:last-child { border-bottom: none; }
.access-route__step-number { flex-shrink: 0; width: 28px; height: 28px; background: #0b5da2; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: bold; }
.access-route__step-number::before { content: counter(step); }
.access-route__step-content { flex: 1; }
.access-route__step-text { font-size: 15px; color: #555; line-height: 1.8; }
.access-route__step-img { margin-top: 8px; border-radius: 4px; overflow: hidden; }
.access-route__step-img img { width: 100%; }

@media (min-width: 768px) {
  .access-section { padding: 48px 20px; }
  .access-section__heading { margin-bottom: 32px; }
  .access-section__label { font-size: 16px; }
  .access-section__title { font-size: 32px; }
  .access-card { padding: 24px; }
  .access-card__name { font-size: 22px; }
  .access-card__label { width: 88px; font-size: 17px; }
  .access-card__value { font-size: 17px; }
  .access-map iframe { height: 320px; }
  .access-route__toggle { padding: 18px 20px; transition: background 0.2s ease; }
  .access-route__toggle:hover { background: rgba(0,0,0,0.02); }
  .access-route__toggle-station { font-size: 20px; }
  .access-route__toggle-time { font-size: 16px; }
  .access-route__step-text { font-size: 17px; }
  .access-route__step-img { max-width: 400px; }
}

/* ============================================
   12. 医院概要
   ============================================ */
.clinic-overview { background: #fff; padding: 40px 16px; }
.clinic-overview__inner { max-width: 960px; margin: 0 auto; }
.clinic-overview__heading { text-align: center; margin-bottom: 24px; }
.clinic-overview__label { font-family: 'Times New Roman', 'Georgia', serif; font-size: 14px; color: #b8a472; letter-spacing: 0.15em; margin-bottom: 6px; }
.clinic-overview__title { font-size: 26px; font-weight: bold; color: #333; line-height: 1.6; }
.clinic-overview__title span { color: #0b5da2; }
.clinic-overview__lead { font-size: 16px; color: #555; line-height: 1.8; margin: 0 0 24px; }
.clinic-overview__map-link { margin: 0 0 20px; }
.clinic-overview__map-link a { display: inline-flex; align-items: center; gap: 6px; color: #0b5da2; font-size: 16px; font-weight: bold; text-decoration: none; }
.clinic-overview__map-link a::before { content: ''; display: inline-block; width: 18px; height: 18px; background: #0b5da2; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center; flex-shrink: 0; }
.clinic-overview__visual { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; max-width: 540px; margin-left: auto; margin-right: auto; }
.clinic-overview__photo, .clinic-overview__map { border-radius: 8px; overflow: hidden; }
.clinic-overview__info { background: #f7f6f2; border-radius: 8px; padding: 20px 16px; }
.clinic-overview__row { display: flex; padding: 10px 0; border-bottom: 1px dotted #ddd; }
.clinic-overview__row:last-child { border-bottom: none; }
.clinic-overview__row-label { flex-shrink: 0; width: 80px; font-size: 15px; font-weight: bold; color: #333; line-height: 1.6; }
.clinic-overview__row-value { flex: 1; font-size: 15px; color: #555; line-height: 1.6; }
.clinic-overview__tel { color: #0b5da2; font-weight: bold; font-size: 18px; text-decoration: none; letter-spacing: 0.03em; }
.clinic-overview__tel--pc { display: none; }
.clinic-overview__tel--sp { display: inline; }
.clinic-overview__sunday-link { display: inline-block; margin-top: 4px; color: #c23a3a; font-weight: bold; font-size: 15px; text-decoration: none; }

.clinic-overview__facility { margin-top: 32px; }
.clinic-overview__facility-title { font-size: 20px; font-weight: bold; color: #0b5da2; line-height: 1.6; margin-bottom: 20px; }
.clinic-overview__facility-block { margin-bottom: 20px; }
.clinic-overview__facility-block:last-child { margin-bottom: 0; }
.clinic-overview__facility-text { font-size: 15px; font-weight: bold; color: #333; line-height: 1.8; margin-bottom: 8px; }
.clinic-overview__facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
@media (max-width: 767px) { .clinic-overview__facility-grid { grid-template-columns: 1fr; } }
.clinic-overview__facility-grid .clinic-overview__facility-block { margin-bottom: 0; }
.clinic-overview__facility-grid .clinic-overview__facility-text { font-size: 13px; margin-top: 6px; margin-bottom: 0; }
.clinic-overview__facility-photo { border-radius: 6px; overflow: hidden; }
.clinic-overview__facility-photo img { width: 100%; height: auto; }
.clinic-overview__facility-photo--360 { position: relative; padding-bottom: 56.25%; height: 0; }
.clinic-overview__facility-photo--360 iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

@media (min-width: 768px) {
  .clinic-overview { padding: 60px 20px; }
  .clinic-overview__heading { margin-bottom: 32px; }
  .clinic-overview__label { font-size: 16px; }
  .clinic-overview__title { font-size: 32px; }
  .clinic-overview__lead { font-size: 17px; text-align: center; margin-bottom: 32px; }
  .clinic-overview__visual { flex-direction: row; gap: 16px; margin-bottom: 32px; max-width: 640px; }
  .clinic-overview__photo, .clinic-overview__map { flex: 1; min-width: 0; }
  .clinic-overview__info { padding: 24px; }
  .clinic-overview__row-label { width: 100px; font-size: 17px; }
  .clinic-overview__row-value { font-size: 17px; }
  .clinic-overview__tel { font-size: 20px; }
  .clinic-overview__tel--pc { display: inline; }
  .clinic-overview__tel--sp { display: none; }
  .clinic-overview__sunday-link { font-size: 16px; }
  .clinic-overview__facility-title { font-size: 24px; }
  .clinic-overview__facility-text { font-size: 17px; }
}

/* ============================================
   適正価格セクション
   ============================================ */
.price-reason { background: #2c4a6e; padding: 40px 16px; }
.price-reason__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.price-reason__heading { margin-bottom: 20px; }
.price-reason__label {
  display: block; font-family: 'Times New Roman', 'Georgia', serif;
  font-size: 14px; color: rgba(255,255,255,0.6); letter-spacing: 0.15em; margin-bottom: 8px;
}
@keyframes marker-draw {
  to { background-size: 100% 100%; }
}
.price-reason__title {
  font-size: 26px; font-weight: bold; color: #fff; line-height: 1.6;
  display: inline;
  background-image: linear-gradient(transparent 80%, rgba(228, 120, 62, 0.85) 80%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.price-reason__title.is-visible {
  animation: marker-draw 0.7s ease-out forwards;
}
@media (prefers-reduced-motion: reduce) {
  .price-reason__title.is-visible {
    animation: none;
    background-size: 100% 100%;
  }
}
.price-reason__title span { color: #fff; }
.price-reason__lead { font-size: 18px; color: #fff; line-height: 1.8; margin-bottom: 16px; }
.price-reason__lead strong { color: #fff; }
.price-reason__desc { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 12px; text-align: left; }
.price-reason__note { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; text-align: left; }
.price-reason__link { margin-top: 24px; }
.price-reason__btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  min-height: 60px; padding: 18px 44px 18px 24px;
  background: #fff; color: #2c4a6e; font-size: 18px; font-weight: bold;
  text-decoration: none; border-radius: 4px; letter-spacing: 0.03em;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.price-reason__btn svg {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px;
}

@media (max-width: 767px) {
  .price-reason { padding: 32px 16px; }
  .price-reason__lead { font-size: 16px; }
  .price-reason__btn { width: 100%; font-size: 18px; }
}
@media (min-width: 768px) {
  .price-reason { padding: 48px 20px; }
  .price-reason__label { font-size: 16px; }
  .price-reason__title { font-size: 32px; }
  .price-reason__lead { font-size: 20px; }
  .price-reason__desc { font-size: 17px; text-align: center; }
  .price-reason__note { text-align: center; }
  .price-reason__btn:hover { background: #f7f6f2; }
}

/* ============================================
   誘導バナー
   ============================================ */
.promo-banner {
  display: block; text-decoration: none;
  background: #2c4a6e; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.promo-banner__inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 18px 20px; gap: 24px;
}
.promo-banner__body { text-align: center; }
.promo-banner__catch {
  font-size: 20px; font-weight: bold; color: #fff; line-height: 1.5;
}
.promo-banner__sub {
  font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; margin-top: 2px;
}
.promo-banner__arrow {
  flex-shrink: 0; width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.promo-banner__arrow svg { width: 16px; height: 16px; }
.sp-only { display: none; }

@media (max-width: 767px) {
  .promo-banner__inner { padding: 16px; gap: 16px; }
  .promo-banner__catch { font-size: 16px; }
  .sp-only { display: inline; }
}
@media (min-width: 768px) {
  .promo-banner:hover { background: #345580; }
}

/* ============================================
   スーパードクター書籍掲載
   ============================================ */
.book-feature { background: #fff; padding: 28px 16px; }
.book-feature__inner {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
}
.book-feature__img { flex-shrink: 0; width: 100px; }
.book-feature__img img { width: 100%; height: auto; border-radius: 2px; }
.book-feature__img-placeholder {
  aspect-ratio: 100 / 141;
  background: #f7f6f2; border: 1px dashed #ccc; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #999; text-align: center; line-height: 1.4;
}
.book-feature__title {
  font-size: 18px; font-weight: bold; color: #333; line-height: 1.6; margin-bottom: 6px;
}
.book-feature__text {
  font-size: 16px; color: #555; line-height: 1.8; margin: 0;
}

@media (max-width: 767px) {
  .book-feature { padding: 24px 16px; }
  .book-feature__img { width: 80px; }
  .book-feature__title { font-size: 16px; }
}
@media (min-width: 768px) {
  .book-feature { padding: 36px 20px; }
  .book-feature__inner { gap: 28px; }
  .book-feature__img { width: 120px; }
  .book-feature__title { font-size: 20px; }
  .book-feature__text { font-size: 17px; }
}

/* ============================================
   痛み・不安 セクション
   ============================================ */
.pain-care { background: #fff; padding: 32px 16px; }
.pain-care__inner {
  max-width: 860px; margin: 0 auto;
  background: #fff;
  border-left: 3px solid #0b5da2;
  border-radius: 8px;
  padding: 24px 20px;
}
.pain-care__heading { margin-bottom: 16px; }
.pain-care__label {
  font-family: 'Times New Roman', 'Georgia', serif;
  font-size: 14px; color: #b8a472; letter-spacing: 0.15em; margin-bottom: 6px;
}
.pain-care__title {
  font-size: 26px; font-weight: bold; color: #333; line-height: 1.6;
}
.pain-care__title span { color: #0b5da2; }
.pain-care__lead {
  font-size: 18px; color: #555; line-height: 1.8; margin-bottom: 12px;
}
.pain-care__features {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.pain-care__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; color: #0b5da2; font-weight: 500;
  background: #f7f6f2; padding: 6px 12px; border-radius: 4px;
  line-height: 1.4;
}
.pain-care__tag svg { width: 14px; height: 14px; flex-shrink: 0; }
.pain-care__link { margin-top: 4px; text-align: center; }
.pain-care__btn {
  display: inline-flex; align-items: center; position: relative;
  font-size: 16px; font-weight: bold; color: #0b5da2;
  border: 1px solid #0b5da2; background: transparent;
  padding: 12px 44px 12px 20px; border-radius: 4px; min-height: 60px;
  text-decoration: none; transition: background 0.2s ease, color 0.2s ease;
}
.pain-care__btn svg {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px;
}

@media (max-width: 767px) {
  .pain-care { padding: 24px 16px; }
  .pain-care__inner { padding: 20px 16px; }
  .pain-care__btn { display: flex; justify-content: center; width: 100%; font-size: 16px; }
}
@media (min-width: 768px) {
  .pain-care { padding: 48px 20px; }
  .pain-care__inner { padding: 32px 28px; }
  .pain-care__label { font-size: 16px; }
  .pain-care__title { font-size: 32px; }
  .pain-care__lead { font-size: 20px; }
  .pain-care__tag { font-size: 16px; }
  .pain-care__btn { font-size: 18px; padding: 14px 48px 14px 24px; min-height: 64px; }
  .pain-care__btn:hover { background: #0b5da2; color: #fff; }
  .pain-care__btn:hover svg { color: #fff; }
}

/* ============================================
   構造化データ用 非表示
   ============================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================
   医院間相互リンク（クロスリンク）
   ============================================ */
.clinic-crosslink {
  background: #f7f6f2;
}
.clinic-crosslink__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
}
.clinic-crosslink__heading {
  text-align: center;
  margin-bottom: 16px;
}
.clinic-crosslink__label {
  display: block;
  font-family: 'Times New Roman', 'Georgia', serif;
  font-size: 15px;
  color: #b8a472;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.clinic-crosslink__title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
}
.clinic-crosslink__lead {
  text-align: center;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}
.clinic-crosslink__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.clinic-crosslink__link {
  display: flex;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.clinic-crosslink__link:hover {
  background: #f9f9f9;
  border-color: #ccc;
}
.clinic-crosslink__photo {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 20px;
}
.clinic-crosslink__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clinic-crosslink__info {
  flex: 1;
  min-width: 0;
}
.clinic-crosslink__name {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  margin-bottom: 4px;
}
.clinic-crosslink__station {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}
.clinic-crosslink__station span {
  color: #0b5da2;
  font-weight: bold;
}
.clinic-crosslink__hours {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  margin-top: 2px;
}
.clinic-crosslink__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0b5da2;
  color: #fff;
  margin-left: 16px;
  transition: background 0.2s ease;
}
.clinic-crosslink__link:hover .clinic-crosslink__arrow {
  background: #094a84;
}

/* --- 現在のページ（リンクなし・グレーアウト） --- */
.clinic-crosslink__current {
  display: flex;
  align-items: center;
  padding: 16px;
  color: inherit;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  opacity: 0.55;
}
.clinic-crosslink__current .clinic-crosslink__photo {
  filter: grayscale(100%);
}
.clinic-crosslink__current .clinic-crosslink__name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.clinic-crosslink__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background: #999;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .clinic-crosslink__inner { padding: 40px 16px; }
  .clinic-crosslink__label { font-size: 13px; }
  .clinic-crosslink__title { font-size: 26px; }
  .clinic-crosslink__lead { font-size: 14px; margin-bottom: 24px; }
  .clinic-crosslink__lead br { display: none; }
  .clinic-crosslink__list { gap: 10px; }
  .clinic-crosslink__link { padding: 12px; }
  .clinic-crosslink__photo { width: 88px; height: 60px; margin-right: 12px; }
  .clinic-crosslink__name { font-size: 18px; }
  .clinic-crosslink__station { font-size: 14px; }
  .clinic-crosslink__hours { font-size: 13px; }
  .clinic-crosslink__arrow { width: 32px; height: 32px; }
  .clinic-crosslink__arrow svg { width: 16px; height: 16px; }
  .clinic-crosslink__current { padding: 12px; }
  .clinic-crosslink__badge { font-size: 10px; padding: 2px 6px; }
}
