html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px; /* sticky header 88px + 余白16px */
}
/* セクション・主要アンカー先に同じオフセットを付与 (Safariなど scroll-padding を解釈しない場合の保険) */
section[id],
[id^="ed-"],
[id^="pe-"],
#about, #cause, #ages, #price, #synergy, #risk, #flow, #faq, #trial, #progress {
  scroll-margin-top: 104px;
}
@media (max-width: 1023px) {
  html { scroll-padding-top: 76px; }
  section[id],
  [id^="ed-"], [id^="pe-"],
  #about, #cause, #ages, #price, #synergy, #risk, #flow, #faq, #trial, #progress {
    scroll-margin-top: 76px;
  }
}

:root {
  --navy: #0c2e5c;
  --navy-deep: #082549;
  --blue: #1f6fc9;
  --blue-light: #5fb0e8;
  --sky: #bcdcf0;
  --orange: #f29032;
  --orange-deep: #e07a1c;
  --ink: #1a2740;
  --ink-soft: #3d4a63;
  --line: #dde4ec;
  --bg-soft: #f4f7fa;
  /* 下層ページ用 統一コンテンツ幅 */
  --inner-w: 1200px;   /* セクションの最大幅（既存サイトと統一） */
  --prose-w: 880px;    /* 本文・テキスト・見出しブロックの最大幅 */
  --inner-pad: 24px;   /* 左右パディング */
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  font-family:
    "Noto Sans JP",
    -apple-system,
    system-ui,
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ===== 上部ユーティリティバー ===== */
.utility-bar {
  height: 34px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.utility-bar .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.utility-bar .util-lead {
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin: 0;
}
.utility-bar .addr {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 10px;
  color: var(--ink-soft);
}
.utility-bar .addr span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.utility-bar .addr svg {
  width: 11px;
  height: 13px;
  color: var(--navy);
}

/* ===== ヘッダー ===== */
.site-header {
  background: #fff;
  height: 88px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eef2f6;
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-header .inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 240px;
  height: auto;
  display: block;
}
.gnav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

/* ヘッダー右側ツール（電話アイコン+ハンバーガー） */
.hamburger-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.header-tools {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.header-tel {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  transition: background 0.15s ease;
}
.header-tel:hover {
  background: var(--orange-deep);
}
.header-tel svg {
  width: 18px;
  height: 18px;
}
.header-line {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #06C755;
  color: #fff;
  transition: background 0.15s ease;
}
.header-line:hover {
  background: #05a847;
}
.header-line svg {
  width: 22px;
  height: 22px;
}
.hamburger-icon {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
}
.hamburger-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.hamburger-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 37, 73, 0.5);
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.gnav-item {
  position: relative;
}
.gnav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 32px 0;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.gnav-link .chev {
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--ink-soft);
  border-bottom: 1.6px solid var(--ink-soft);
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition:
    transform 0.25s ease,
    border-color 0.15s ease;
}
.gnav-item:hover .gnav-link,
.gnav-item:focus-within .gnav-link {
  color: var(--blue);
}
.gnav-item:hover .chev,
.gnav-item:focus-within .chev {
  border-color: var(--blue);
}
.gnav-item:hover .has-mega,
.gnav-item.has-mega:hover .chev {
  transform: rotate(225deg) translateY(2px);
}
.gnav-item.is-current .gnav-link {
  color: var(--blue);
}
.gnav-item.is-current .chev {
  border-color: var(--blue);
}

/* メガメニュー（コンパクト） */
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 280px;
  width: max-content;
  max-width: 520px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(20, 40, 80, 0.14);
  padding: 18px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  z-index: 60;
}
.gnav-item.has-mega:hover > .mega,
.gnav-item.has-mega:focus-within > .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.mega-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.mega-col .mega-title {
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.mega-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-list a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.mega-list a:hover {
  background: var(--bg-soft);
  color: var(--navy);
}
.mega-list .mega-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.mega-list .mega-desc {
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ===== MV ===== */
.mv {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.mv .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 44px 24px 56px;
  position: relative;
  min-height: 520px;
}
.mv-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 640px;
}
.mv-copy .lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.mv-copy .lead .accent {
  color: var(--orange);
  font-size: 36px;
  letter-spacing: 0.04em;
  padding: 0 2px;
}
.mv-copy .lead .lead-line {
  display: inline-block;
  white-space: nowrap;
  font-size: 22px;
  color: var(--ink);
  font-weight: 600;
  margin-top: 6px;
}
.mv-copy .lead-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.mv-copy .lead-tags .tag {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 4px;
  line-height: 1.4;
  white-space: nowrap;
}
.mv-copy .lead em {
  font-style: normal;
  color: var(--blue);
  font-weight: 700;
}
.mv-copy .sub {
  margin-top: 22px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink);
}
.mv-copy .sub b {
  color: var(--ink);
  font-weight: 600;
}
.mv-copy .sub small {
  display: block;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 8px;
}

.mv-features {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 560px;
}
.feat {
  background: #fff;
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 14px 6px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.feat .icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.feat .icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.feat .icon-tall img {
  max-height: 38px;
  width: auto;
  height: auto;
}
.feat .label {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.mv-cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 14px rgba(242, 144, 50, 0.32);
  min-width: 230px;
}
.btn-orange:hover {
  background: var(--orange-deep);
}
.btn-navy {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 14px rgba(31, 111, 201, 0.3);
  min-width: 240px;
}
.btn-navy:hover {
  background: #1657a8;
}
.btn-line {
  background: #06C755;
  color: #fff;
  box-shadow: 0 6px 14px rgba(6, 199, 85, 0.28);
  min-width: 230px;
}
.btn-line:hover {
  background: #05a847;
}
.btn-line svg {
  width: 22px;
  height: 22px;
}
.btn svg {
  width: 18px;
  height: 18px;
}

/* MV photo + curve cutout（自然な楕円エッジ） */
.mv-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}
.mv-photo .photo {
  position: absolute;
  inset: 0;
  background: url("assets/img-mv.webp") right center/cover no-repeat;
  clip-path: ellipse(85% 120% at 85% 50%);
}

/* MV 遊び心の装飾要素（PCではsubtle、SPで活躍） */

/* ===== 追従CTA ===== */
.float-cta {
  position: fixed;
  right: 18px;
  top: 150px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 172px;
}
.float-cta .bubble {
  align-self: center;
  background: #fff;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 24px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(31, 111, 201, 0.1);
  width: 100%;
}
.float-cta .bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: #fff;
  border-right: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 13px 14px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  border: none;
  text-align: left;
  transition:
    transform 0.12s ease,
    filter 0.12s ease;
  width: 100%;
  font-family: inherit;
}
.float-btn:hover {
  transform: translateX(-2px);
  filter: brightness(1.04);
}
.float-btn .ico {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-btn .ico svg {
  width: 18px;
  height: 18px;
}
.float-btn .lbl {
  flex: 1;
  line-height: 1.25;
}
.float-btn .lbl small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 2px;
}
.float-orange {
  background: var(--orange);
}
.float-line {
  background: #06C755;
}
.float-line:hover {
  background: #05a847;
}
.float-line .ico svg {
  width: 22px;
  height: 22px;
}
.float-tel {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  cursor: pointer;
}
.float-tel .label {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 5px;
  letter-spacing: 0.06em;
}
.float-tel .num {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.float-tel .num svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}
.float-tel .hours {
  font-size: 10px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 3px;
}

/* ===== バナー（3点） ===== */
.banners {
  background: #fff;
  padding: 56px 0;
}
.banners-price-note {
  text-align: center;
  margin: 16px auto 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.menu-mv-price-note {
  margin-top: 8px;
  font-size: 12px;
  color: #fff;
}

/* 開院予定バッジ（MV上部に置く / 開院後は HTML から削除） */
.opening-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start; /* 親が flex column のとき横幅を伸ばさない */
  width: max-content;
  max-width: 100%;
  gap: 8px;
  padding: 7px 16px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}
.opening-badge::before {
  content: "OPEN";
  font-size: 11px;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.22);
  padding: 2px 8px;
  border-radius: 999px;
}
.banners .inner {
  /* バナー4枚を2×2にするため、帯の最大幅を「360px×2＋gap＋左右padding」に制限 */
  max-width: 786px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  align-items: stretch;
}
.banners .banner {
  /* バナーは4枚構成のため、PC/タブレットでは2カラム(2×2)。横幅は従来サイズ(360px)を維持 */
  flex: 0 1 calc(50% - 9px);
  max-width: 360px;
}
.banner {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(20, 40, 80, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 140px;
  aspect-ratio: 380/140;
}
.banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(20, 40, 80, 0.16);
}
/* メニューページMV風の斜めクリップ: 左半分は単色テーマカラー、右半分に写真 (斜めエッジ) */
.banner .bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.banner .scrim {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
}
.banner .body {
  position: relative;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 3;
  color: #fff;
  flex: 1;
  gap: 8px;
  max-width: 56%;
}
.banner h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
}
.banner .banner-price {
  margin-top: 8px;
  padding: 5px 8px;
  gap: 8px;
  max-width: none;
  width: max-content;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  align-items: center;
  flex-wrap: nowrap;
}
.banner .banner-price .emp-bar-left {
  padding-right: 8px;
  border-right: 1px solid var(--line);
  gap: 0;
}
.banner .banner-price .emp-name {
  font-size: 10.5px;
  white-space: nowrap;
}
.banner .banner-price .emp-price {
  white-space: nowrap;
  flex-wrap: nowrap;
}
.banner .banner-price .emp-suffix-stack {
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-left: 2px;
}
.banner .banner-price .emp-suffix-stack .emp-suffix {
  margin-left: 0;
}
.banner .banner-price .emp-tax {
  position: absolute;
  left: 50%;
  bottom: 70%;
  transform: translateX(-50%);
  font-size: 8px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 2px;
}
.banner .banner-price .emp-yen {
  font-size: 10px;
}
.banner .banner-price .emp-num {
  font-size: 18px;
}
.banner .banner-price .emp-suffix {
  font-size: 9.5px;
  margin-left: 2px;
}
.banner .more {
  align-self: flex-start;
  margin-top: auto;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 14px 8px 18px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.banner .more .arr {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  flex-shrink: 0;
}

/* ED: 左 navy グラデ + 右に写真 (斜めクリップ部に薄い navy オーバーレイ) */
.b-ed {
  background: linear-gradient(135deg, #0a2347 0%, var(--navy) 60%, var(--navy-deep) 100%);
}
.b-ed .bg-img {
  background-image: url("assets/img-ed.webp");
  background-position: center;
}
.b-ed .scrim {
  background: linear-gradient(95deg, rgba(8, 37, 73, 0.55) 0%, rgba(8, 37, 73, 0.15) 35%, rgba(8, 37, 73, 0) 70%);
}

/* 不眠: 左 ラベンダー〜スレートグラデ (両性向け) */
.b-sleep {
  background: linear-gradient(135deg, #3e3f6e 0%, #5a6098 60%, #4a5388 100%);
}
.b-sleep::before,
.b-sleep::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.b-sleep::before {
  background-image:
    radial-gradient(circle at 80% 30%, rgba(220, 190, 240, 0.32) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(170, 200, 235, 0.28) 0%, transparent 50%);
}
.b-sleep::after {
  background-image:
    radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.7) 0.5px, transparent 1px),
    radial-gradient(circle at 22% 38%, rgba(255, 255, 255, 0.55) 0.5px, transparent 1px),
    radial-gradient(circle at 38% 8%, rgba(255, 255, 255, 0.6) 0.5px, transparent 1px),
    radial-gradient(circle at 48% 62%, rgba(255, 255, 255, 0.5) 0.5px, transparent 1px),
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.65) 0.5px, transparent 1px),
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.5) 0.5px, transparent 1px),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.55) 0.5px, transparent 1px),
    radial-gradient(circle at 92% 52%, rgba(255, 255, 255, 0.6) 0.5px, transparent 1px),
    radial-gradient(circle at 16% 72%, rgba(255, 255, 255, 0.45) 0.5px, transparent 1px),
    radial-gradient(circle at 56% 88%, rgba(255, 255, 255, 0.55) 0.5px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.9;
}
.b-sleep .bg-img {
  background-image: url("assets/img-sleep.webp");
  background-position: center;
}
.b-sleep .scrim {
  background: linear-gradient(95deg, rgba(62, 63, 110, 0.55) 0%, rgba(62, 63, 110, 0.15) 35%, rgba(62, 63, 110, 0) 70%);
}
.b-sleep .body {
  color: #fff;
}
.b-sleep h3 {
  color: #fff;
}
.b-sleep .more {
  color: #4a5388;
}
.b-sleep .more .arr {
  background: #4a5388;
}

/* AGA: 左 ネイビー〜ブルーグラデ */
.b-aga {
  background: linear-gradient(135deg, #0f3a7a 0%, var(--blue) 60%, #0a2a5a 100%);
}
.b-aga .bg-img {
  background-image: url("assets/img-aga.webp");
  background-position: center;
}
.b-aga .scrim {
  background: linear-gradient(95deg, rgba(15, 58, 122, 0.55) 0%, rgba(15, 58, 122, 0.15) 35%, rgba(15, 58, 122, 0) 70%);
}
.b-aga .more {
  color: #0f3a7a;
}
.b-aga .more .arr {
  background: #0f3a7a;
}

/* 肥満・痩身: 左 グリーン〜ミントグラデ（画像は暫定で汎用画像を流用） */
.b-obesity {
  background: linear-gradient(135deg, #1f6b54 0%, #2f9e78 60%, #1b5e49 100%);
}
.b-obesity .bg-img {
  background-image: url("assets/img-obesity.webp");
  background-position: center;
}
.b-obesity .scrim {
  background: linear-gradient(95deg, rgba(31, 107, 84, 0.55) 0%, rgba(31, 107, 84, 0.15) 35%, rgba(31, 107, 84, 0) 70%);
}
.b-obesity .body {
  color: #fff;
}
.b-obesity h3 {
  color: #fff;
}
.b-obesity .more {
  color: #1f6b54;
}
.b-obesity .more .arr {
  background: #1f6b54;
}

/* ============================================================
   セクション共通：見出し
   ============================================================ */
.sec-head {
  text-align: center;
  max-width: var(--prose-w);
  margin: 0 auto 42px;
}
.sec-head .sec-en {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sec-h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.sec-h2 .num {
  color: var(--orange);
  font-size: 36px;
  padding: 0 4px;
}
.sec-head .sec-lead {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.br-pc {
  display: inline;
}
.br-sp {
  display: none;
}
.hl {
  color: var(--orange);
}

/* ============================================================
   選ばれる6つの理由
   ============================================================ */
.reasons {
  padding: 96px 0 56px;
  background: #fff;
  position: relative;
}
.reasons::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 460px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  z-index: 0;
}
.reasons .inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.reason {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.reason.reverse {
  grid-template-columns: 1fr 420px;
}
.reason.reverse .reason-media {
  order: 2;
}
.reason.reverse .reason-body {
  order: 1;
}

.reason-media {
  position: relative;
  aspect-ratio: 440/360;
}
.reason-media .media-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.reason-media .reason-no {
  position: absolute;
  top: -12px;
  left: -10px;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.04em;
  background: #fff;
  padding: 7px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(20, 40, 80, 0.12);
  z-index: 2;
}
.reason.reverse .reason-media .reason-no {
  left: -10px;
  right: auto;
}

/* 遊び心のある有機的な楕円マスク（border-radiusで変形させた blob 形状） */
.m-blob-a {
  border-radius: 62% 38% 70% 30% / 42% 60% 40% 58%;
}
.m-blob-b {
  border-radius: 38% 62% 50% 50% / 58% 42% 58% 42%;
}
.m-blob-c {
  border-radius: 55% 45% 35% 65% / 35% 65% 35% 65%;
}

.reason-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.reason-title .hl {
  color: var(--orange);
}
.reason-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

/* reason-sub-grid: リスト全体を1枠で囲うチェックリスト（料金併記） */
.reason-sub-grid {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  padding: 6px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(20, 40, 80, 0.04);
}
.reason-sub-grid .sub-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  background: transparent;
  border: 0;
}
.sub-check {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.sub-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -65%) rotate(-45deg);
}
.reason-sub-grid .sub-item .sub-body {
  min-width: 0;
}
.reason-sub-grid .sub-item .sub-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
  margin-bottom: 4px;
  line-height: 1.45;
}
.reason-sub-grid .sub-item .sub-text {
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* reason-points: リスト全体を1枠で囲う */
.reason-points {
  list-style: none;
  padding: 6px 22px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(20, 40, 80, 0.04);
}
.reason-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.ico-check {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.ico-check::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.reason-pay {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reason-pay li {
  padding: 8px 16px;
  border: 1.5px solid var(--navy);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

/* お試しプラン */
.trial-plan {
  margin: 20px 0 72px;
  background: linear-gradient(135deg, #fff 0%, var(--sky) 200%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.trial-head .trial-eyebrow {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.trial-head .trial-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 12px;
}
.trial-head .trial-title .hl {
  color: var(--orange);
}
.trial-head .trial-text {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.trial-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trial-btn {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--navy);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  line-height: 1.2;
}
.trial-btn:hover {
  background: var(--navy);
  color: #fff;
  transform: translateX(2px);
}
.trial-btn:hover .trial-btn-unit {
  color: rgba(255, 255, 255, 0.8);
}
.trial-btn-name {
  line-height: 1.3;
}
.trial-btn-price {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}
.trial-btn-unit {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 3px;
  letter-spacing: 0;
  transition: color 0.15s ease;
}
.trial-btn .arr {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}

/* 梱包配慮ブロック (reason.05) */
.package-care {
  margin-top: 22px;
  padding: 22px 24px;
  background: var(--bg-soft);
  border-radius: 12px;
}
.package-care .pc-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
  margin-bottom: 8px;
}
.package-care .pc-text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.package-care .pc-list {
  list-style: none;
  padding: 6px 16px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.package-care .pc-list li {
  font-size: 12.5px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.65;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px dashed var(--line);
  border-radius: 0;
}
.package-care .pc-list li:last-child {
  border-bottom: 0;
}
.package-care .pc-list .ico-check {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   プライバシー配慮 10項目（5カラム×2行）
   ============================================================ */
.privacy {
  padding: 72px 0 56px;
  background: #fff;
  position: relative;
}
.privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, var(--sky) 0%, transparent 50%);
  opacity: 0.4;
  pointer-events: none;
}
.privacy .inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.privacy-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  margin-top: 8px;
}
.pv-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 22px 12px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.pv-item .pv-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.pv-item .pv-icon svg {
  width: 26px;
  height: 26px;
}
.pv-item .pv-num {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  line-height: 1;
}
.pv-item .pv-text {
  font-size: 11px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* ============================================================
   すでに治療中の方へ
   ============================================================ */
.existing-treatment {
  padding: 56px 0;
  background: var(--bg-soft);
}
.existing-treatment .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ext-card: ラベル付き縦帯型 */
.ext-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(20, 40, 80, 0.06);
  border: 1px solid var(--line);
  overflow: hidden;
}
.ext-icon {
  border-radius: 50%;
  background: var(--sky);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}
.ext-icon svg {
  width: 36px;
  height: 36px;
}
.ext-body .sec-h2 {
  font-size: 22px;
  text-align: left;
  margin-bottom: 10px;
}
.ext-body p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.ext-card-a {
  padding: 32px 40px 32px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}
.ext-card-a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue) 0%, var(--navy) 100%);
}
.ext-card-a .ext-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: "Noto Serif JP", serif;
}
.ext-card-a .ext-cta {
  margin-top: 0;
}
.ext-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 16px 22px 16px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  line-height: 1;
  margin-top: 12px;
}
.ext-cta:hover {
  background: var(--navy-deep);
  transform: translateX(2px);
}
.ext-cta .arr {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}

/* ============================================================
   初診から処方までの流れ
   ============================================================ */
.flow {
  padding: 72px 0 56px;
  background: #fff;
}
.flow .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.flow-tabs {
  position: relative;
}
.flow-tab-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.flow-tab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 40px;
  border: 1.5px solid var(--navy);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}
.flow-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.flow-tab svg {
  width: 18px;
  height: 18px;
}
.flow-tab:hover {
  background: var(--bg-soft);
}

#tab-visit:checked ~ .flow-tab-list label[for="tab-visit"] {
  background: var(--navy);
  color: #fff;
}

.flow-pane {
  display: none;
}
#tab-visit:checked ~ .pane-visit {
  display: block;
}
.flow-pane.pane-visit {
  display: block;
}

.flow-steps {
  list-style: none;
  padding: 0;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}
.flow-steps::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--sky) 100%);
}
.step {
  position: relative;
  padding-left: 114px;
  margin-bottom: 32px;
}
.step:last-child {
  margin-bottom: 0;
}
.step-no {
  position: absolute;
  left: 0;
  top: 0;
  width: 112px;
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  color: var(--blue);
  background: #fff;
  padding-right: 14px;
  z-index: 1;
}
.step-no::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
  margin-left: auto;
  border: 3.5px solid #fff;
  box-shadow: 0 0 0 2px var(--blue);
}
.step-title {
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 8px;
}
.step-text {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 12px 22px 12px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.15s ease;
  line-height: 1;
  margin-top: 8px;
}
.step-cta:hover {
  background: var(--orange-deep);
}
.step-cta .arr {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}

/* ============================================================
   アクセス・診療時間
   ============================================================ */
.access {
  padding: 72px 0 56px;
  background: var(--bg-soft);
}
.access .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.access-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.access-map {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 6px 18px rgba(20, 40, 80, 0.08);
}
.access-map iframe {
  display: block;
  height: 100%;
  min-height: 400px;
}

.access-info {
  background: #fff;
  border-radius: 12px;
  padding: 30px 32px;
  box-shadow: 0 6px 18px rgba(20, 40, 80, 0.08);
}
.acc-clinic {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.acc-addr {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.acc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.acc-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.acc-row-time {
  grid-template-columns: 84px 1fr;
}
.acc-row-time .time-table {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 10px;
}
.acc-row:last-child {
  border-bottom: none;
}
.acc-row dt {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  padding-top: 4px;
}
.acc-row dd {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink);
}
.time-main {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.time-note {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 2px;
  margin-bottom: 8px;
}
.time-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
  margin-top: 6px;
}
.time-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  padding: 5px 0;
  border: 1px solid var(--navy);
  text-align: center;
}
.time-table td {
  background: #fff;
  color: var(--blue);
  padding: 7px 0;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.acc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 700;
  font-size: 13.5px;
  padding: 6px 0;
  line-height: 1;
  margin: 18px auto 0;
  width: fit-content;
  border-bottom: 1.5px solid var(--blue);
}
.acc-cta .arr {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}

/* ============================================================
   取扱治療薬
   ============================================================ */
.drugs {
  padding: 72px 0 56px;
  background: #fff;
}
.drugs .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
/* drugs タブ切替（カテゴリごと: ED / 不眠 / AGA） */
.drug-tabs {
  position: relative;
}
.drug-tab-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.drug-tab-list {
  display: grid;
  /* タブ4枚構成のため2カラム(2×2)。区切り線はgap+背景色で表現 */
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 720px;
  margin: 0 auto 40px;
  border: 1.5px solid var(--navy);
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy);
}
.drug-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  line-height: 1.2;
}
.drug-tab .dt-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex-shrink: 0;
}
.drug-tab .dt-icon svg {
  width: 18px;
  height: 18px;
}
.drug-tab:hover {
  background: var(--bg-soft);
}
#drug-tab-ed:checked ~ .drug-tab-list label[for="drug-tab-ed"] {
  background: var(--navy);
  color: #fff;
}
#drug-tab-insomnia:checked ~ .drug-tab-list label[for="drug-tab-insomnia"] {
  background: var(--navy);
  color: #fff;
}
#drug-tab-aga:checked ~ .drug-tab-list label[for="drug-tab-aga"] {
  background: var(--navy);
  color: #fff;
}
#drug-tab-obesity:checked ~ .drug-tab-list label[for="drug-tab-obesity"] {
  background: var(--navy);
  color: #fff;
}
.drug-pane {
  display: none;
}
#drug-tab-ed:checked ~ .drug-pane-ed {
  display: block;
}
#drug-tab-insomnia:checked ~ .drug-pane-insomnia {
  display: block;
}
#drug-tab-aga:checked ~ .drug-pane-aga {
  display: block;
}
#drug-tab-obesity:checked ~ .drug-pane-obesity {
  display: block;
}

/* タブ内のカード */
.drug-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 30px 36px;
  max-width: 720px;
  margin: 0 auto;
}
.drug-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.drug-card-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 12px;
}
.drug-card-text {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.drug-rows {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
/* 薬名グループ: 1リストアイテム = 1薬剤 (規格別variantは内側で縦並び) */
.drug-rows li {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.4;
}
.drug-rows .dr-name {
  color: var(--ink);
  font-weight: 600;
}
.drug-rows .dr-variants {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drug-rows .dr-variant {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: baseline;
}
.drug-rows .dr-variants .dr-variant + .dr-variant {
  padding-top: 4px;
  border-top: 1px dashed rgba(20, 40, 80, 0.08);
}
.drug-rows .dr-dose {
  font-family: "Noto Serif JP", serif;
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.04em;
  min-width: 54px;
}
.drug-rows .dr-price {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: right;
}
.drug-rows-pending li.pending {
  display: block;
  background: transparent;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  padding: 32px 12px;
  border: 1px dashed var(--line);
  font-size: 13.5px;
}

.drug-card-note {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 6px 0 16px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-radius: 6px;
}
.drug-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 14px 22px 14px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  margin: 8px auto 0;
  width: fit-content;
}
.drug-card-cta:hover {
  background: var(--navy-deep);
  transform: translateX(2px);
}
.drug-card-cta .arr {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}

.drug-note {
  margin-top: 32px;
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-soft);
  text-align: center;
}

/* ============================================================
   よくあるご質問
   ============================================================ */
.faq {
  padding: 72px 0 56px;
  background: var(--bg-soft);
}
.faq .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
/* TOP/メニュー共通の FAQ スタイルは下記のメニューページブロック (faq-cats / faq-cat-title / faq-q / faq-a) を使用 */

/* ============================================================
   末尾CTAバンド
   ============================================================ */
.bottom-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(31, 111, 201, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(95, 176, 232, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.bcta-eyebrow {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--sky);
  margin-bottom: 12px;
}
.bcta-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.55;
  margin-bottom: 26px;
}
.bcta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.bcta-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: #cfd9e6;
}
.bcta-tel a {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bcta-tel a svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}
.bcta-hours {
  font-size: 11.5px;
  color: #a9b6c8;
}

/* ============================================================
   フッター
   ============================================================ */
/* ============================================================
   MENU PAGES — 共通ベース
   ============================================================
   /menu/ed/ /menu/insomnia/ /menu/aga/ /menu/faga/ ... の
   下層メニューページが共通して使うクラス群。

   命名規則:
   - .menu-* : メニューページ全体で共通利用するブロック
   - body.page-<name> .menu-* : ページごとの配色・画像テーマ上書き
   - 接頭辞なし(.trouble-* / .anchor-* / .sec-*) : 上層/下層問わず再利用可能な汎用パーツ
   ============================================================ */

/* ===== MV: 構造ベース ===== */
.menu-mv {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 440px;
  display: flex;
  align-items: center;
  background: var(--navy);
}
.menu-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.menu-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.menu-mv .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px 64px;
  position: relative;
  z-index: 2;
}

.menu-mv-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.menu-mv-photo-img {
  position: absolute;
  inset: 0;
  background: right center/cover no-repeat;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  filter: saturate(0.9) contrast(1.05);
}
.menu-mv-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  background: linear-gradient(95deg, rgba(8, 37, 73, 0.85) 0%, rgba(8, 37, 73, 0.4) 35%, rgba(8, 37, 73, 0) 70%);
}

.menu-mv-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
}
.menu-mv-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: #cfd9e6;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.menu-mv-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 12px;
}
.menu-mv-h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-mv-h1-ja {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

/* MV内 チェック特徴: バッジカプセル型 */
.menu-mv-checks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.menu-mv-checks li {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  padding: 7px 16px 7px 32px;
  border-radius: 999px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  position: relative;
}
.menu-mv-checks li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}
.menu-mv-checks li::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(0, -70%) rotate(-45deg);
}

/* 料金バー（白背景、コンパクト） */
.menu-mv-price {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 10px 18px;
  margin-bottom: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  max-width: 100%;
}
.menu-mv-price .emp-bar-left {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}
.menu-mv-price .emp-eyebrow {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
}
.menu-mv-price .emp-name {
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.menu-mv-price .emp-name small {
  font-size: 10.5px;
  color: var(--ink-soft);
  margin-left: 4px;
  font-weight: 500;
}
.menu-mv-price .emp-price {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin: 0;
}
.menu-mv-price .emp-yen {
  font-size: 16px;
}
.menu-mv-price .emp-num {
  font-size: 32px;
  letter-spacing: 0.02em;
}
.menu-mv-price .emp-suffix {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-left: 3px;
}

/* ===== お悩みセクション ===== */
.menu-trouble {
  padding: 72px 0 56px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.menu-trouble::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.menu-trouble::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 247, 250, 0.2) 0%, rgba(244, 247, 250, 0.4) 100%);
  pointer-events: none;
}
.menu-trouble .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* 悩みリスト（左:画像 + 右:リスト） — 上層/下層で再利用可 */
.trouble-main {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}
.trouble-photo {
  background: center center/cover no-repeat;
  border-radius: 14px;
  min-height: 340px;
  box-shadow: 0 6px 18px rgba(20, 40, 80, 0.1);
}
.trouble-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 14px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(20, 40, 80, 0.05);
  align-self: stretch;
  margin-bottom: 0;
}
.trouble-list li {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  line-height: 1.55;
}
.t-check {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}
.t-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -65%) rotate(-45deg);
}

.trouble-statement {
  text-align: center;
  padding: 24px 0 32px;
  position: relative;
}
.trouble-statement::before,
.trouble-statement::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 40px;
  height: 2px;
  background: var(--navy);
  transform: translateX(-50%);
}
.trouble-statement::before {
  top: 0;
}
.trouble-statement::after {
  bottom: 0;
}
.trouble-statement .ts-line1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 6px;
}
.trouble-statement .ts-line2 {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 600;
}

.trouble-context {
  max-width: 880px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
  background: #fff;
  padding: 28px 36px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(20, 40, 80, 0.06);
  border: 1px solid var(--line);
}
.trouble-context p {
  margin-bottom: 14px;
}
.trouble-context p:last-child {
  margin-bottom: 0;
}
.trouble-context .ts-num {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--orange);
  letter-spacing: 0.02em;
  line-height: 1;
}
.trouble-context .ts-unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-left: 2px;
}
.trouble-context strong {
  color: var(--navy);
  font-weight: 700;
}

/* ===== アンカーリンク — 上層/下層で再利用可 ===== */
.menu-anchors {
  padding: 48px 0 56px;
  background: #fff;
}
.menu-anchors .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.anchor-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
}
.anchor-grid a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 18px 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.4;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}
.anchor-grid a:hover {
  border-color: var(--blue);
  background: var(--bg-soft);
  transform: translateY(-2px);
}
.anchor-grid .a-num {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1;
}
.anchor-grid .a-label {
  font-weight: 700;
  font-size: 13px;
}
.anchor-grid .a-arr {
  font-size: 10px;
  color: var(--blue);
  transition: transform 0.15s ease;
}
.anchor-grid a:hover .a-arr {
  transform: translateY(2px);
}

/* ===== クリニックの特徴 ===== */
.menu-features {
  padding: 72px 0 64px;
  background: var(--bg-soft);
}
.menu-features .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.menu-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.menu-feat {
  background: #fff;
  border: 1.5px solid var(--navy);
  border-radius: 12px;
  padding: 24px 16px 20px;
  text-align: center;
}
.menu-feat .ef-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.menu-feat .ef-icon svg {
  width: 30px;
  height: 30px;
}
.menu-feat .ef-icon img {
  max-width: 32px;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.menu-feat .ef-eyebrow {
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.menu-feat .ef-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.menu-feat .ef-sub {
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 600;
}

/* ============================================================
   THEME: ED (body.page-ed)
   ============================================================ */
body.page-ed .menu-mv {
  background: linear-gradient(135deg, #0a2347 0%, var(--navy) 50%, var(--navy-deep) 100%);
}
body.page-ed .menu-mv::before {
  background-image:
    radial-gradient(circle at 80% 30%, rgba(31, 111, 201, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(31, 111, 201, 0.2) 0%, transparent 50%);
}
body.page-ed .menu-mv::after {
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
}
body.page-ed .menu-mv-photo-img {
  background-image: url("../../assets/img-ed.webp");
}
body.page-ed .menu-trouble::before {
  background-image: url("../../assets/img-ed-texture.webp");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.55;
}
body.page-ed .trouble-photo {
  background-image: url("../../assets/img-ed-trouble.webp");
}
body.page-ed .about-photo {
  background-image: url("../../assets/img-ed-about.webp");
}
body.page-ed .risk-photo {
  background-image: url("../../assets/img-ed-risk.webp");
}
/* Synergy section (#synergy) と Approach section の写真をテーマ別に分けて指定 */
body.page-ed #synergy .approach-principle:nth-child(1) .approach-principle-photo {
  background-image: url("../../assets/img-ed-synergy-01.webp");
}
body.page-ed #synergy .approach-principle:nth-child(2) .approach-principle-photo {
  background-image: url("../../assets/img-reason-02.webp");
}
body.page-ed #synergy .approach-principle:nth-child(3) .approach-principle-photo {
  background-image: url("../../assets/img-ed-synergy-03.webp");
}
body.page-ed .menu-approach:not(#synergy) .approach-principle .approach-principle-photo {
  background-image: url("../../assets/img-reason-03.webp");
}

/* ============================================================
   THEME: AGA (body.page-aga)
   ============================================================ */
body.page-aga .menu-mv {
  background: linear-gradient(135deg, #0f3a7a 0%, var(--blue) 50%, #0a2a5a 100%);
}
body.page-aga .menu-mv::before {
  background-image:
    radial-gradient(circle at 80% 30%, rgba(242, 144, 50, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(95, 176, 232, 0.28) 0%, transparent 50%);
}
body.page-aga .menu-mv::after {
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}
body.page-aga .menu-mv-photo-img {
  background-image: url("../../assets/img-aga.webp");
}
body.page-aga .menu-mv-photo::after {
  background: linear-gradient(95deg, rgba(15, 58, 122, 0.85) 0%, rgba(15, 58, 122, 0.4) 35%, rgba(15, 58, 122, 0) 70%);
}
body.page-aga .menu-trouble::before {
  background: linear-gradient(180deg, rgba(31, 111, 201, 0.05) 0%, rgba(242, 144, 50, 0.04) 100%);
}
body.page-aga .trouble-photo {
  background-image: url("../../assets/img-aga-trouble.webp");
}
body.page-aga .about-photo {
  background-image: url("../../assets/img-aga-about.webp");
}
body.page-aga .risk-photo {
  background-image: url("../../assets/img-reason-04.webp");
}
body.page-aga .approach-principle:nth-child(1) .approach-principle-photo {
  background-image: url("../../assets/img-reason-01.webp");
}
body.page-aga .approach-principle:nth-child(2) .approach-principle-photo {
  background-image: url("../../assets/img-reason-04.webp");
}
body.page-aga .approach-principle:nth-child(3) .approach-principle-photo {
  background-image: url("../../assets/img-reason-02.webp");
}
body.page-aga .menu-cta-final {
  background-image: url("../../assets/img-aga.webp");
}
body.page-aga .menu-cta-final::before {
  background:
    linear-gradient(135deg, rgba(15, 58, 122, 0.92) 0%, rgba(31, 111, 201, 0.88) 50%, rgba(10, 42, 90, 0.95) 100%),
    radial-gradient(circle at 50% 110%, rgba(242, 144, 50, 0.25) 0%, transparent 60%);
}

@media (max-width: 1023px) {
  body.page-aga .menu-mv-photo::after {
    background: linear-gradient(
      90deg,
      rgba(15, 58, 122, 0.95) 0%,
      rgba(15, 58, 122, 0.4) 60%,
      rgba(15, 58, 122, 0.1) 100%
    );
  }
}
@media (max-width: 767px) {
  body.page-aga .menu-mv-photo::after {
    background: linear-gradient(
      90deg,
      rgba(15, 58, 122, 0.55) 0%,
      rgba(15, 58, 122, 0.15) 35%,
      rgba(15, 58, 122, 0) 70%
    );
  }
}

/* ============================================================
   THEME: Insomnia (body.page-insomnia)
   ============================================================ */
/* 両性向け配色: 深いネイビーから柔らかいラベンダー〜ティールへの優しいグラデ */
body.page-insomnia .menu-mv {
  background: linear-gradient(135deg, #3e3f6e 0%, #5a6098 45%, #8a7fb0 100%);
}
body.page-insomnia .menu-mv::before {
  background-image:
    radial-gradient(circle at 80% 30%, rgba(220, 190, 240, 0.32) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(170, 200, 235, 0.28) 0%, transparent 50%);
}
body.page-insomnia .menu-mv::after {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.55) 1px, transparent 2px),
    radial-gradient(circle at 32% 55%, rgba(255, 255, 255, 0.4) 1px, transparent 2px),
    radial-gradient(circle at 58% 10%, rgba(255, 255, 255, 0.5) 1px, transparent 2px),
    radial-gradient(circle at 86% 62%, rgba(255, 255, 255, 0.45) 1px, transparent 2px),
    radial-gradient(circle at 25% 80%, rgba(255, 255, 255, 0.35) 1px, transparent 2px),
    radial-gradient(circle at 70% 88%, rgba(255, 255, 255, 0.45) 1px, transparent 2px);
  background-size: 240px 240px;
  opacity: 0.85;
}
body.page-insomnia .menu-mv-photo-img {
  background-image: url("../../assets/img-sleep.webp");
  /* 不眠だけ: モデルが画像右側に寄っているため、若干拡大 + 右端アンカーで左寄りに見せる */
  background-size: 128% auto;
  background-position: right center;
  filter: saturate(0.85) contrast(1.05) brightness(0.9);
}
body.page-insomnia .menu-mv-photo::after {
  background: linear-gradient(95deg, rgba(62, 63, 110, 0.78) 0%, rgba(62, 63, 110, 0.35) 35%, rgba(62, 63, 110, 0) 70%);
}
body.page-insomnia .menu-mv-eyebrow::before {
  background: var(--blue-light);
}
body.page-insomnia .menu-mv-checks li::before {
  background: var(--blue-light);
}
body.page-insomnia .menu-trouble::before {
  background: linear-gradient(180deg, rgba(170, 200, 235, 0.08) 0%, rgba(220, 190, 240, 0.07) 100%);
}
body.page-insomnia .trouble-photo {
  background-image: url("../../assets/img-insomnia-trouble.webp");
}
body.page-insomnia .about-photo {
  background-image: url("../../assets/img-insomnia-about.webp");
}
body.page-insomnia .risk-photo {
  background-image: url("../../assets/img-reason-05.webp");
}
body.page-insomnia .approach-principle:nth-child(1) .approach-principle-photo {
  background-image: url("../../assets/img-reason-04.webp");
}
body.page-insomnia .approach-principle:nth-child(2) .approach-principle-photo {
  background-image: url("../../assets/img-reason-03.webp");
}
body.page-insomnia .approach-principle:nth-child(3) .approach-principle-photo {
  background-image: url("../../assets/img-reason-01.webp");
}

/* ============================================================
   THEME: Obesity / 肥満・痩身外来 (body.page-obesity)
   ============================================================ */
/* 健康・痩身向け配色: 深いグリーンから爽やかなミント〜ティールへのグラデ */
/* ※ 画像は暫定で既存の汎用画像を流用。肥満専用画像が用意でき次第差し替え */
body.page-obesity .menu-mv {
  background: linear-gradient(135deg, #1f6b54 0%, #2f9e78 48%, #79c7a6 100%);
}
body.page-obesity .menu-mv::before {
  background-image:
    radial-gradient(circle at 80% 30%, rgba(200, 240, 220, 0.30) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(170, 225, 205, 0.26) 0%, transparent 50%);
}
body.page-obesity .menu-mv::after {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.5) 1px, transparent 2px),
    radial-gradient(circle at 32% 55%, rgba(255, 255, 255, 0.38) 1px, transparent 2px),
    radial-gradient(circle at 58% 10%, rgba(255, 255, 255, 0.46) 1px, transparent 2px),
    radial-gradient(circle at 86% 62%, rgba(255, 255, 255, 0.42) 1px, transparent 2px),
    radial-gradient(circle at 25% 80%, rgba(255, 255, 255, 0.32) 1px, transparent 2px),
    radial-gradient(circle at 70% 88%, rgba(255, 255, 255, 0.42) 1px, transparent 2px);
  background-size: 240px 240px;
  opacity: 0.8;
}
body.page-obesity .menu-mv-photo-img {
  background-image: url("../../assets/img-obesity.webp");
  background-position: center;
  filter: saturate(0.95) contrast(1.02);
}
body.page-obesity .menu-mv-photo::after {
  background: linear-gradient(95deg, rgba(31, 107, 84, 0.8) 0%, rgba(31, 107, 84, 0.38) 35%, rgba(31, 107, 84, 0) 70%);
}
body.page-obesity .menu-mv-eyebrow::before {
  background: #7fd3b0;
}
body.page-obesity .menu-mv-checks li::before {
  background: #7fd3b0;
}
body.page-obesity .menu-trouble::before {
  background: linear-gradient(180deg, rgba(170, 225, 205, 0.08) 0%, rgba(200, 240, 220, 0.07) 100%);
}
body.page-obesity .trouble-photo {
  background-image: url("../../assets/img-reason-02.webp");
}
body.page-obesity .about-photo {
  background-image: url("../../assets/img-reason-03.webp");
}
body.page-obesity .risk-photo {
  background-image: url("../../assets/img-reason-04.webp");
}

/* ============================================================
   MENU PAGES — レスポンシブ
   ============================================================ */
@media (max-width: 1023px) {
  /* タブレット (768-1023): SPと同じ横並びバナー型を踏襲 (写真は右に斜めクリップ) */
  .menu-mv {
    min-height: 360px;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .menu-mv-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 100%;
    opacity: 1;
    z-index: 1;
  }
  .menu-mv-photo-img {
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
    background-position: right 10% top 35%;
  }
  .menu-mv-photo::after {
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .menu-mv .inner {
    padding: 40px 24px;
    padding-right: calc(40% + 10px);
    max-width: 100%;
  }
  .menu-mv-copy {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .menu-mv-eyebrow,
  .menu-mv-h1,
  .menu-mv-checks {
    max-width: 100%;
  }
  .menu-mv-h1-ja {
    font-size: 38px;
  }
  .menu-mv-eyebrow {
    font-size: 12.5px;
  }
  .menu-mv-checks {
    gap: 6px;
    margin: 0 0 18px;
  }
  .menu-mv-checks li {
    font-size: 11.5px;
    padding: 5px 12px 5px 26px;
  }
  .menu-mv-checks li::before {
    width: 11px;
    height: 11px;
    left: 8px;
  }
  .menu-mv-price {
    width: 100%;
    margin-top: 14px;
    padding: 10px 14px;
    gap: 12px;
  }
  .menu-mv-price .emp-bar-left {
    padding-right: 12px;
  }
  .menu-mv-price .emp-num {
    font-size: 26px;
  }
  .menu-mv-price .emp-name {
    font-size: 12px;
  }
  .menu-mv-price .emp-eyebrow {
    font-size: 9.5px;
  }

  /* 斜めエッジ部分の薄いテーマ色オーバーレイ */
  body.page-ed .menu-mv-photo::after {
    background: linear-gradient(90deg, rgba(8, 37, 73, 0.6) 0%, rgba(8, 37, 73, 0.15) 35%, rgba(8, 37, 73, 0) 70%);
  }
  body.page-insomnia .menu-mv-photo::after {
    background: linear-gradient(90deg, rgba(62, 63, 110, 0.55) 0%, rgba(62, 63, 110, 0.15) 35%, rgba(62, 63, 110, 0) 70%);
  }
  body.page-aga .menu-mv-photo::after {
    background: linear-gradient(90deg, rgba(15, 58, 122, 0.6) 0%, rgba(15, 58, 122, 0.15) 35%, rgba(15, 58, 122, 0) 70%);
  }

  .trouble-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trouble-photo {
   min-height: auto;
   width: 100%;
    aspect-ratio: 16/9;
  }
  .trouble-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 22px;
  }
  .trouble-statement .ts-line1 {
    font-size: 18px;
  }

  .anchor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  /* SP: 上段に価格バー全幅、下段は左=テキスト / 右=斜めクリップ写真の2カラム */
  .menu-mv {
    min-height: auto;
    padding: 0;
    display: block;
    position: relative;
  }
  .menu-mv-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 1;
    z-index: 1;
  }
  .menu-mv-photo-img {
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
        background-position: right 40% top 35%;
  }
  .menu-mv-photo::after {
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .menu-mv .inner {
    padding: 24px 16px 22px;
    max-width: 100%;
  }
  .menu-mv-copy {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* 価格バーはMV最下段に横幅いっぱいで配置、大きく訴求 */
  .menu-mv-price {
    width: 100%;
    margin: 18px 0 0;
    padding: 14px 18px;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .menu-mv-price .emp-bar-left {
    padding-right: 14px;
  }
  .menu-mv-price .emp-eyebrow {
    font-size: 10.5px;
  }
  .menu-mv-price .emp-name {
    font-size: 12.5px;
  }
  .menu-mv-price .emp-name small {
    font-size: 10px;
  }
  .menu-mv-price .emp-num {
    font-size: 32px;
  }
  .menu-mv-price .emp-yen {
    font-size: 16px;
  }
  .menu-mv-price .emp-suffix {
    font-size: 13px;
  }

  /* テキスト要素は左カラム（56%幅）に制限して写真と被らないようにする */
  .menu-mv-eyebrow {
    max-width: 56%;
    font-size: 11px;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .menu-mv-eyebrow::before {
    width: 22px;
    margin-bottom: 8px;
  }
  .menu-mv-h1 {
    max-width: 56%;
    margin-bottom: 14px;
  }
  .menu-mv-h1-ja {
    font-size: 24px;
    letter-spacing: 0.04em;
  }
  .menu-mv-checks {
    max-width: 56%;
    gap: 4px;
    margin: 0;
  }
  .menu-mv-checks li {
    font-size: 10px;
    padding: 3px 8px 3px 20px;
  }
  .menu-mv-checks li::before {
    width: 9px;
    height: 9px;
    left: 6px;
  }
  .menu-mv-checks li::after {
    left: 8.5px;
    width: 5px;
    height: 2.5px;
  }

  /* 斜めエッジ部分だけテーマ色を薄く重ねてテキスト側との境界を馴染ませる */
  body.page-ed .menu-mv-photo::after {
    background: linear-gradient(90deg, rgba(8, 37, 73, 0.55) 0%, rgba(8, 37, 73, 0.15) 35%, rgba(8, 37, 73, 0) 70%);
  }
  body.page-insomnia .menu-mv-photo::after {
    background: linear-gradient(90deg, rgba(62, 63, 110, 0.5) 0%, rgba(62, 63, 110, 0.12) 35%, rgba(62, 63, 110, 0) 70%);
  }
  body.page-insomnia .menu-mv-photo-img {
    background-size: cover;
    background-position: right 40% top 35%;
    filter: saturate(0.9) contrast(1.05);
  }
  body.page-insomnia .menu-mv::after {
    background-size: 200px 200px;
    opacity: 0.6;
  }

  .trouble-list li {
    font-size: 13.5px;
    padding: 8px 0;
  }
  .trouble-context {
    font-size: 13px;
    line-height: 1.95;
  }
  .trouble-context .ts-num {
    font-size: 20px;
  }

  .menu-trouble,
  .menu-features {
    padding: 48px 0 40px;
  }
  .menu-anchors {
    padding: 32px 0 40px;
  }
  .menu-anchors .inner {
    padding: 0 16px;
  }
  .menu-trouble .inner,
  .menu-features .inner {
    padding: 0 16px;
  }

  .anchor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .anchor-grid a {
    padding: 14px 12px;
    font-size: 12.5px;
    min-height: 60px;
    align-content: center;
  }
  .anchor-grid .a-label {
    font-size: 12px;
  }

  /* 5項目で2列だと最終行が1個になるためflex+center wrap */
  .menu-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .menu-feat {
    flex: 0 0 calc(50% - 6px);
    padding: 18px 10px 14px;
  }
  .menu-feat .ef-icon {
    width: 42px;
    height: 42px;
  }
  .menu-feat .ef-icon svg {
    width: 24px;
    height: 24px;
  }
  .menu-feat .ef-title {
    font-size: 16px;
  }
}

/* ============================================================
   MENU PAGES — 後続セクション (about / cause / price / risk / flow / faq / cta-final)
   ============================================================ */

/* About: 疾患概要 (写真 + テキスト2カラム) */
.menu-about {
  padding: 72px 0 0;
  background: #fff;
}
.menu-about .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
/* 下層ページ（TOP・メニュー以外）はセクション末尾の余白を確保 */
.page-clinic .menu-about,
.page-first-visit .menu-about,
.page-guideline .menu-about,
.page-treatment .menu-about,
.page-recruit .menu-about,
.page-sitemap .menu-about,
.page-privacy .menu-about {
  padding-bottom: 64px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 36px;
}
.about-photo {
  aspect-ratio: 4/3;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(20, 40, 80, 0.12);
}
.about-text .lead {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0;
  text-align: justify;
}
.about-text .lead + .lead {
  margin-top: 1.4em;
}
.about-text .lead strong {
  color: var(--navy);
  font-weight: 700;
}
/* about-photo の画像はテーマブロック (body.page-X) で指定 */
/* 写真なし・文章のみ（リード文を全幅表示）。グリッドのmargin-topを引き継ぐ */
.about-text--full {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .about-text--full {
    margin-top: 24px;
  }
}

/* Cause: 主な原因 (3カラム アイコン付きカードグリッド) */
.menu-cause {
  padding: 72px 0 64px;
  background: var(--bg-soft);
}
.menu-cause .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.cause-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.cause-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 22px 22px;
  text-align: center;
}
.cause-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 111, 201, 0.08) 0%, rgba(95, 176, 232, 0.05) 100%);
  border: 1px solid rgba(31, 111, 201, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--blue);
}
.cause-card-icon svg {
  width: 34px;
  height: 34px;
}
.cause-card-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.cause-card-body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
  text-align: left;
}

/* About: 早漏(PE) 3分類リスト */
.about-pe-types {
  list-style: none;
  padding: 14px 18px;
  margin: 14px 0 0;
  background: var(--bg-soft);
  border-radius: 10px;
  display: grid;
  gap: 8px;
}
.about-pe-types li {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.about-pe-types li strong {
  color: var(--navy);
  font-weight: 700;
  margin-right: 4px;
}

/* About: 発症メカニズム (画像 + 解説テキスト 2カラム) */
.about-mechanism {
  margin-top: 36px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 32px;
}
.about-mechanism-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  text-align: center;
}
.about-mechanism-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.about-mechanism-figure {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(20, 40, 80, 0.05);
}
.about-mechanism-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.about-mechanism-text {
  display: grid;
  gap: 12px;
}
.about-mechanism-text p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0;
}
.about-mechanism-text strong {
  color: var(--navy);
  font-weight: 700;
}

/* About: 一次情報出典注釈 */
.about-note {
  margin-top: 24px;
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  padding: 14px 18px;
  background: var(--bg-soft);
  border-radius: 8px;
}
.about-note .fn-mark {
  color: var(--orange-deep);
  margin-right: 4px;
}
.about-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.about-note a:hover {
  color: var(--orange-deep);
}

/* About内 callout (例: ED「併発しやすい背景」) — ループする2症状を示すアイコン付き */
.about-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(31, 111, 201, 0.08) 0%, rgba(95, 176, 232, 0.04) 100%);
  border: 1px solid rgba(31, 111, 201, 0.22);
  border-radius: 14px;
  padding: 26px 30px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.about-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
}
.about-callout-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(31, 111, 201, 0.18);
}
.about-callout-icon svg {
  width: 32px;
  height: 32px;
}
.about-callout-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.about-callout-body {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}
.about-callout-body strong {
  color: var(--navy);
  font-weight: 700;
}

/* Ages section (年代別) — 横並びタイムラインカード */
.menu-ages {
  padding: 64px 0 64px;
  background: #fff;
}
.ages-list {
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  max-width: 880px;
  display: grid;
  gap: 12px;
  position: relative;
}
.ages-list::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 38px;
  bottom: 38px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--blue) 100%);
  z-index: 0;
}
.age-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: 0 4px 14px rgba(20, 40, 80, 0.04);
  position: relative;
  z-index: 1;
}
.age-card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  color: var(--orange);
}
.age-card-num .age-num-big {
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.02em;
}
.age-card-num .age-num-unit {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-top: 4px;
}
.age-card-text {
  border-left: 1.5px solid var(--line);
  padding-left: 24px;
}
.age-card-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.age-card-body {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

/* Price: 治療薬一覧テーブル型 (参考: 大通公園メンズクリニック) */
.price-lead {
  text-align: center;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 24px auto 32px;
  max-width: 780px;
}
.price-lead strong {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 6px;
  padding: 6px 18px;
  background: rgba(242, 144, 50, 0.08);
  border: 1px solid rgba(242, 144, 50, 0.3);
  border-radius: 99px;
}
.price-lead small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 4px;
}

.price-table-wrap {
   border: 1px solid var(--navy);
   border-radius: 8px 8px 0 0;
  margin: 0 auto 8px;
  max-width: 880px;
}
.price-table-note {
  max-width: 880px;
  margin: 0 auto 28px;
  padding: 0 4px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}
.price-table-note small {
  font-size: inherit;
}
.price-table-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: var(--navy);
  padding: 12px 22px;
  border-radius: 8px 8px 0 0;
  letter-spacing: 0.02em;
  margin: 0;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background: #fff;
}
.price-table thead th {
  background: var(--bg-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 18px;
  border-bottom: 2px solid var(--navy);
  text-align: left;
  letter-spacing: 0.04em;
}
.price-table thead th.t-price {
  text-align: right;
  width: 34%;
}
.price-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
  vertical-align: middle;
}
.price-table tbody td small {
  display: inline-block;
  font-size: 11.5px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.price-table tbody tr:last-child td {
  border-bottom: 0;
}
.price-table tbody td.t-price {
  text-align: right;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--orange);
  white-space: nowrap;
}

/* 3カラム価格表 (薬剤名 | 規格 | 料金) — 同薬名は rowspan で統合 */
.price-table-3col thead th.t-spec {
  text-align: center;
  width: 110px;
}
.price-table-3col thead th.t-price {
  width: 30%;
}
.price-table-3col tbody td.t-spec {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  white-space: nowrap;
  background: rgba(31, 111, 201, 0.03);
}
.price-table-3col tbody td[rowspan] {
  vertical-align: middle;
  border-right: 1px solid var(--line);
}

.price-trial {
  margin-top: 18px;
  border: 1px solid var(--orange);
}
.price-trial-title {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%) !important;
}
.price-trial-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  background: linear-gradient(135deg, rgba(242, 144, 50, 0.06) 0%, #fff 100%);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 14px 22px;
  margin: 0;
}
.price-trial-desc strong {
  color: var(--orange-deep);
  font-weight: 700;
}
.price-table-trial thead th:nth-child(2),
.price-table-trial thead th:nth-child(4) {
  text-align: right;
}
.price-table-trial tbody td:nth-child(2),
.price-table-trial tbody td:nth-child(4) {
  text-align: right;
  font-size: 13px;
  color: var(--ink-soft);
}
.price-table-trial tbody td:nth-child(4) {
  color: var(--orange-deep);
  font-weight: 700;
}

/* ページ内ナビ (ED治療薬 / 早漏治療薬 / お試しセット) */
.price-nav {
  display: flex;
  gap: 8px;
  max-width: 880px;
  margin: 0 auto 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 6px;
}
.price-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 99px;
  background: transparent;
  color: var(--ink);
  text-align: center;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
  line-height: 1.2;
}
.price-nav a:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 40, 80, 0.08);
}
.price-nav .price-nav-en {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-nav .price-nav-ja {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.price-nav a:hover .price-nav-en {
  color: var(--orange);
}

/* 注意書きブロック */
.fn-mark {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  margin-left: 2px;
  letter-spacing: 0.02em;
  vertical-align: super;
}
.price-note {
  max-width: 880px;
  margin: 24px auto 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 26px;
}
.price-note-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.price-footnotes {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  margin: 0 0 16px;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.price-footnotes dt {
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
}
.price-footnotes dd {
  margin: 0;
}
.price-footnotes strong {
  color: var(--navy);
  font-weight: 700;
}
.price-cautions {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.price-cautions li {
  margin-bottom: 2px;
}

/* 各薬剤の詳細解説 (長文型) */
.drug-details {
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.drug-details-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 14px;
}
.drug-details-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 14px auto 0;
  border-radius: 2px;
}
.drug-detail {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.drug-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.drug-detail-h {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.drug-detail-h small {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-left: 8px;
  letter-spacing: 0.02em;
}
.drug-detail p {
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}
.drug-detail p strong {
  color: var(--navy);
  font-weight: 700;
}

/* 主なリスク・副作用 (1文・インラインタグ型) */
.drug-detail .drug-risk {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: #fff8f0;
  border: 1px solid rgba(242, 144, 50, 0.3);
  border-radius: 6px;
  padding: 8px 12px;
}
.drug-risk-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-deep);
  letter-spacing: 0.04em;
  margin-right: 8px;
  white-space: nowrap;
}
/* 薬剤詳細内の小見出し（マンジャロの使い方/保管/廃棄 等を見出し分け） */
.drug-detail .drug-sub-h {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin: 16px 0 6px;
  padding-left: 10px;
  border-left: 3px solid var(--orange);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.drug-detail p + p {
  margin-top: 10px;
}
.drug-detail ul.drug-sub-list {
  margin: 4px 0 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.drug-detail ul.drug-sub-list li {
  margin: 2px 0;
}

/* Price: 治療薬と料金 (詳細スペック付き薬カード + 比較表 + お試しプラン) */
.menu-price {
  padding: 72px 0 64px;
  background: #fff;
}
.menu-price .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.drug-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.drug-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
}
.drug-card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.drug-card-tag {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  align-self: flex-start;
  background: rgba(31, 111, 201, 0.08);
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.drug-card-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.2;
}
.drug-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.drug-card-price-label {
  font-size: 11.5px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.drug-card-price {
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
  margin: 0;
}
.drug-card-price .dyen {
  font-size: 14px;
  color: var(--orange);
  font-weight: 700;
}
.drug-card-price .dnum {
  font-size: 30px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.drug-card-price .dsuf {
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
  margin-left: 3px;
}
.drug-spec {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 0;
}
.drug-spec li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.5;
}
.drug-spec li:last-child {
  border-bottom: 0;
}
.drug-spec-label {
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 11.5px;
}
.drug-spec-value {
  color: var(--navy);
  font-weight: 700;
}
.drug-card-body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
  flex: 1;
  margin: 0;
}

/* 比較表 (薬カードの下) */
.drug-compare {
  margin-top: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 28px;
  overflow-x: auto;
}
.drug-compare-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.drug-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 560px;
}
.drug-compare thead th {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 12px;
  border-bottom: 2px solid var(--navy);
  text-align: left;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.drug-compare tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  vertical-align: middle;
}
.drug-compare tbody tr:last-child td {
  border-bottom: 0;
}
.drug-compare tbody td:first-child {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 13.5px;
}
.drug-compare tbody td.price {
  color: var(--orange);
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}

.trial-plan {
  margin-top: 36px;
  background: linear-gradient(135deg, #fff7ec 0%, #fff 100%);
  border: 1.5px solid var(--orange);
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.trial-plan-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trial-plan-eyebrow {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trial-plan-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin: 0;
}
.trial-plan-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.trial-plan-cta {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition:
    background 0.15s,
    transform 0.15s;
}
.trial-plan-cta:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

/* Risk: 放置のリスク (テキスト + 写真2カラム、About と反対側に写真) */
.menu-risk {
  padding: 72px 0 64px;
  background: var(--bg-soft);
}
.menu-risk .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 36px;
}
.risk-photo {
  aspect-ratio: 4/3;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 8px 24px rgba(20, 40, 80, 0.12);
}
.risk-body {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0;
  background: #fff;
  padding: 28px 32px;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(20, 40, 80, 0.04);
}
.risk-body p {
  margin-bottom: 14px;
}
.risk-body p:last-child {
  margin-bottom: 0;
}
.risk-body strong {
  color: var(--navy);
  font-weight: 700;
}
/* risk-photo の画像はテーマブロック (body.page-X) で指定 */

/* Flow: 来院から処方の流れ (縦タイムライン) */
.menu-flow {
  padding: 72px 0 64px;
  background: #fff;
}
.menu-flow .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.flow-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 40px auto 0;
  max-width: 720px;
  list-style: none;
  padding: 0;
}
.flow-list::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 31px;
  width: 2px;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(31, 111, 201, 0.3) 100%);
  z-index: 0;
}
.flow-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 14px 0;
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.flow-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(31, 111, 201, 0.28);
  border: 3px solid #fff;
}
.flow-text {
  padding: 14px 0 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 22px;
  flex: 1;
}
.flow-text-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.flow-text-body {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}
.flow-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px 10px 16px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(31, 111, 201, 0.22);
  transition: background 0.15s ease, transform 0.15s ease;
}
.flow-cta-btn:hover {
  background: #1657a8;
  transform: translateY(-1px);
}
.flow-cta-btn svg {
  width: 16px;
  height: 16px;
}
.flow-cta-btn .arr {
  margin-left: 2px;
  font-size: 14px;
}
.flow-cta-line {
  background: #06C755;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.22);
}
.flow-cta-line:hover {
  background: #05a847;
}
.flow-cta-line svg {
  width: 18px;
  height: 18px;
}
.flow-cta-tel {
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(242, 144, 50, 0.22);
}
.flow-cta-tel:hover {
  background: var(--orange-deep);
}
.flow-readmore {
  text-align: center;
  margin: 24px 0 0;
}
.flow-readmore a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
  transition: opacity 0.15s ease;
}
.flow-readmore a:hover {
  opacity: 0.75;
}
.flow-readmore a .arr {
  font-size: 14px;
}

/* Flow: 補足ポイント (ED+早漏特有の補足等) */
.flow-extra {
  max-width: 840px;
  margin: 36px auto 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 28px;
}
.flow-extra-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.flow-extra-list {
  margin: 0;
  display: grid;
  gap: 12px;
}
.flow-extra-list dt {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}
.flow-extra-list dd {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.flow-extra-list dd strong {
  color: var(--navy);
  font-weight: 700;
}

/* Progress banner (例: AGA 進行パターン図解 — 全体が見えるよう contain で表示) */
.progress-banner {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16/9;
  margin: 0 auto 28px;
  border-radius: 14px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--bg-soft);
}
body.page-aga .progress-banner {
  background-image: url("../../assets/img-aga-progress.webp");
}

/* Message section (例: AGA「どの段階でも、治療介入に意義があります」) */
.menu-message {
  padding: 72px 0 64px;
  background: var(--bg-soft);
}
.menu-message .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 8px 30px rgba(20, 40, 80, 0.06);
  border: 1px solid var(--line);
}
.message-photo {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--bg-soft);
  box-shadow: 0 6px 18px rgba(20, 40, 80, 0.1);
}
body.page-aga .message-photo {
  background-image: url("../../assets/img-aga-message.webp");
}
.message-eyebrow {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.message-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}
.message-body {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
  margin: 0;
}
.message-body strong {
  color: var(--navy);
  font-weight: 700;
}

/* Approach: 当院の向き合い方 / お薬選びへの考え方 (写真付きカード) */
.menu-approach {
  padding: 72px 0 64px;
  background: #fff;
}
.menu-approach .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.approach-lead {
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  max-width: 840px;
  margin: 28px auto 36px;
  text-align: center;
}
.approach-lead strong {
  color: var(--navy);
  font-weight: 700;
}
.approach-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
body.page-treatment .approach-principles,
body.page-first-visit .approach-principles {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.approach-principle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.approach-principle-photo {
  aspect-ratio: 16/10;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--bg-soft);
}
.approach-principle-inner {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.approach-principle-num {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.approach-principle-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.55;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.approach-principle-body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}

/* Approach: 問診で確認する主な項目 */
.approach-checklist {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 0 0 24px;
}
.approach-checklist-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.approach-checklist-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.approach-checklist-list li {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.approach-checklist-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
}
.approach-checklist-list li::after {
  content: "";
  position: absolute;
  left: 3.5px;
  top: 11px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.approach-closing {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, rgba(31, 111, 201, 0.06) 0%, rgba(95, 176, 232, 0.04) 100%);
  padding: 26px 32px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

/* Approach is-hero モード: 1枚のヒーロー写真 + 3つの説明カード (写真なし) */
.menu-approach.is-hero .approach-hero {
  aspect-ratio: 21/8;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 8px 0 36px;
  box-shadow: 0 8px 24px rgba(20, 40, 80, 0.1);
  position: relative;
  overflow: hidden;
}
.menu-approach.is-hero .approach-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 37, 73, 0.25) 100%);
  pointer-events: none;
}
.menu-approach.is-hero .approach-lead {
  margin: 28px auto 12px;
}
.menu-approach.is-hero .approach-principle {
  flex-direction: row;
  text-align: left;
  align-items: stretch;
}
.menu-approach.is-hero .approach-principle-photo {
  display: none;
}
.menu-approach.is-hero .approach-principle-inner {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body.page-ed .menu-approach.is-hero .approach-hero {
  background-image: url("../../assets/img-reason-04.webp");
}
body.page-insomnia .menu-approach.is-hero .approach-hero {
  background-image: url("../../assets/img-reason-03.webp");
}
body.page-aga .menu-approach.is-hero .approach-hero {
  background-image: url("../../assets/img-reason-01.webp");
}
/* Approach 写真の割当 — 各テーマブロック側で個別指定 */

/* FAQ */
.menu-faq {
  padding: 72px 0 80px;
  background: var(--bg-soft);
}
.menu-faq .inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-cats {
  display: grid;
  gap: 36px;
  margin: 36px auto 0;
  max-width: 880px;
}
.faq-cat-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 10px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 18px 22px;
}
.faq-q {
  font-weight: 700;
  color: var(--navy);
  font-size: 14.5px;
  line-height: 1.6;
  position: relative;
  padding-left: 28px;
  margin: 0;
}
.faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--orange);
  line-height: 1.2;
}
.faq-a {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  position: relative;
  padding: 10px 0 0 28px;
  margin: 10px 0 0;
  border-top: 1px dashed var(--line);
}
.faq-a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 10px;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--blue);
  line-height: 1.4;
}
.faq-a a {
  color: var(--blue);
  text-decoration: underline;
}

/* Final CTA (背景写真 + テーマグラデオーバーレイ) */
.menu-cta-final {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.menu-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 35, 71, 0.92) 0%, rgba(12, 46, 92, 0.88) 50%, rgba(8, 37, 73, 0.95) 100%),
    radial-gradient(circle at 50% 110%, rgba(31, 111, 201, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
body.page-ed .menu-cta-final {
  background-image: url("../../assets/img-ed.webp");
}
body.page-insomnia .menu-cta-final {
  background-image: url("../../assets/img-sleep.webp");
}
body.page-insomnia .menu-cta-final::before {
  background:
    linear-gradient(135deg, rgba(30, 37, 102, 0.92) 0%, rgba(12, 46, 92, 0.88) 50%, rgba(5, 10, 37, 0.95) 100%),
    radial-gradient(circle at 50% 110%, rgba(124, 92, 240, 0.3) 0%, transparent 60%);
}
.menu-cta-final .inner {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.cta-final-eyebrow {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.cta-final-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  line-height: 1.45;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
}
.cta-final-body {
  font-size: 14.5px;
  line-height: 1.95;
  color: #cfd9e6;
  margin: 0 auto 32px;
  max-width: 680px;
}
.cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}
.cta-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.cta-final-btn-orange {
  background: var(--orange);
  color: #fff;
}
.cta-final-btn-orange:hover {
  background: var(--orange-deep);
}
.cta-final-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cta-final-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   後続セクション レスポンシブ
   ============================================================ */
@media (max-width: 1023px) {
  .about-grid,
  .risk-grid {
    gap: 28px;
  }
  .cause-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .drug-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trial-plan {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .trial-plan-head {
    align-items: center;
  }
  .drug-compare {
    padding: 20px 22px;
  }
}

@media (max-width: 767px) {
  .menu-about {
    padding: 48px 0 0;
  }
  .page-clinic .menu-about,
  .page-first-visit .menu-about,
  .page-guideline .menu-about,
  .page-treatment .menu-about,
  .page-recruit .menu-about,
  .page-sitemap .menu-about,
  .page-privacy .menu-about {
    padding-bottom: 48px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }
  .about-photo {
    aspect-ratio: 16/10;
  }
  .about-text .lead {
    font-size: 13.5px;
    line-height: 1.95;
  }
  .menu-cause {
    padding: 48px 0 40px;
  }
  .menu-ages {
    padding: 40px 0 40px;
  }
  .ages-list {
    margin-top: 24px;
    gap: 10px;
  }
  .ages-list::before {
    display: none;
  }
  .age-card {
    grid-template-columns: 80px 1fr;
    gap: 14px;
    padding: 16px 18px;
  }
  .age-card-num {
    width: 80px;
  }
  .age-card-num .age-num-big {
    font-size: 22px;
  }
  .age-card-num .age-num-unit {
    font-size: 12px;
    margin-top: 2px;
  }
  .age-card-text {
    padding-left: 14px;
  }
  .age-card-title {
    font-size: 14px;
  }
  .age-card-body {
    font-size: 12.5px;
    line-height: 1.75;
  }
  .about-mechanism {
    padding: 20px 18px;
  }
  .about-mechanism-title {
    font-size: 15.5px;
    margin-bottom: 14px;
  }
  .about-mechanism-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-mechanism-text p {
    font-size: 12.5px;
    line-height: 1.8;
  }
  .about-note {
    font-size: 11px;
    line-height: 1.7;
    padding: 12px 14px;
  }
  .progress-banner {
    aspect-ratio: 4/3;
    margin-bottom: 20px;
  }
  .about-callout {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 22px;
  }
  .about-callout-icon {
    width: 48px;
    height: 48px;
  }
  .about-callout-icon svg {
    width: 24px;
    height: 24px;
  }
  .about-callout-title {
    font-size: 15px;
  }
  .about-callout-body {
    font-size: 12.5px;
    line-height: 1.85;
  }
  .cause-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .cause-card {
    padding: 22px 20px 20px;
  }
  .cause-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }
  .cause-card-icon svg {
    width: 28px;
    height: 28px;
  }
  .cause-card-title {
    font-size: 14.5px;
  }
  .cause-card-body {
    font-size: 12.5px;
  }
  .menu-price {
    padding: 48px 0 40px;
  }
  .price-lead {
    font-size: 13px;
    margin: 18px auto 24px;
  }
  .price-lead strong {
    font-size: 15px;
    padding: 5px 14px;
  }
  .price-table-wrap {
    margin-bottom: 22px;
  }
  .price-table-title {
    font-size: 14.5px;
    padding: 10px 16px;
  }
  .price-table thead th {
    font-size: 11.5px;
    padding: 9px 12px;
  }
  .price-table tbody td {
    font-size: 12.5px;
    padding: 11px 12px;
  }
  .price-table-3col thead th.t-spec {
    width: 64px;
  }
  .price-table-3col tbody td.t-spec {
    font-size: 12.5px;
    padding: 11px 8px;
  }
  .price-table tbody td small {
    font-size: 10.5px;
  }
  .price-table tbody td.t-price {
    font-size: 14.5px;
  }
  .price-table-trial {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .price-nav {
    flex-direction: column;
    border-radius: 14px;
    gap: 4px;
    padding: 6px;
  }
  .price-nav a {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 8px;
  }
  .price-nav .price-nav-en {
    font-size: 10.5px;
    min-width: 78px;
  }
  .price-nav .price-nav-ja {
    font-size: 13px;
  }
  .price-note {
    padding: 18px 20px;
  }
  .price-note-title {
    font-size: 13px;
  }
  .price-footnotes {
    font-size: 12px;
    grid-template-columns: auto 1fr;
    gap: 4px 10px;
  }
  .price-cautions {
    font-size: 11.5px;
  }
  .price-trial-desc {
    font-size: 12.5px;
    padding: 12px 16px;
  }
  .drug-details {
    margin-top: 36px;
  }
  .drug-details-title {
    font-size: 18px;
    margin-bottom: 22px;
  }
  .drug-detail-h {
    font-size: 16px;
  }
  .drug-detail-h small {
    font-size: 11px;
  }
  .drug-detail p {
    font-size: 13px;
    line-height: 1.85;
  }
  .drug-risk {
    padding: 8px 12px;
    font-size: 11.5px;
    line-height: 1.6;
  }
  .drug-risk-tag {
    font-size: 10px;
    margin-right: 6px;
  }
  .drug-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  .drug-card {
    padding: 22px 20px 20px;
  }
  .drug-card-name {
    font-size: 19px;
  }
  .drug-card-price .dnum {
    font-size: 26px;
  }
  .drug-spec li {
    grid-template-columns: 70px 1fr;
    font-size: 12px;
  }
  .drug-compare {
    padding: 18px 16px;
    margin-top: 24px;
  }
  .drug-compare-title {
    font-size: 14px;
  }
  .trial-plan {
    padding: 22px;
    margin-top: 24px;
  }
  .trial-plan-title {
    font-size: 17px;
  }
  .trial-plan-body {
    font-size: 13px;
  }
  .menu-risk {
    padding: 48px 0 40px;
  }
  .risk-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }
  .risk-photo {
    aspect-ratio: 16/10;
    order: -1;
  }
  .risk-body {
    padding: 22px 20px;
    font-size: 13.5px;
    line-height: 1.9;
  }
  .menu-flow {
    padding: 48px 0 40px;
  }
  .flow-list {
    margin: 28px auto 0;
  }
  .flow-list::before {
    top: 26px;
    bottom: 26px;
    left: 23px;
  }
  .flow-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 10px 0;
  }
  .flow-num {
    width: 46px;
    height: 46px;
    font-size: 17px;
    border-width: 2px;
      transform: translateX(-18px);
  }
  .flow-text {
    padding: 14px 16px;
  }
  .flow-text-title {
    font-size: 15px;
  }
  .flow-extra {
    padding: 18px 20px;
    margin-top: 28px;
  }
  .flow-extra-title {
    font-size: 14.5px;
    margin-bottom: 10px;
  }
  .flow-extra-list dt {
    font-size: 13px;
  }
  .flow-extra-list dd {
    font-size: 12.5px;
    line-height: 1.75;
  }
  .approach-checklist {
    padding: 18px 20px;
  }
  .approach-checklist-title {
    font-size: 16px;
  }
  .approach-checklist-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .approach-checklist-list li {
    font-size: 12.5px;
  }
  .about-pe-types {
    padding: 12px 16px;
  }
  .about-pe-types li {
    font-size: 12.5px;
    line-height: 1.75;
  }
  .flow-text-body {
    font-size: 12.5px;
    line-height: 1.75;
  }
  .menu-message {
    padding: 48px 0 40px;
  }
  .message-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .message-photo {
    aspect-ratio: 16/10;
  }
  .message-title {
    font-size: 19px;
    line-height: 1.5;
  }
  .message-body {
    font-size: 13px;
    line-height: 1.85;
  }
  .menu-approach.is-hero .approach-hero {
    aspect-ratio: 16/9;
    margin: 0 0 24px;
  }
  .menu-approach {
    padding: 48px 0 40px;
  }
  .approach-lead {
    font-size: 13.5px;
    line-height: 1.9;
    margin: 18px auto 24px;
  }
  .approach-principles {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
  .approach-principle-photo {
    aspect-ratio: 21/10;
  }
  .approach-principle-inner {
    padding: 18px 20px 22px;
  }
  .approach-principle-num {
    font-size: 20px;
  }
  .approach-principle-title {
    font-size: 14.5px;
    margin-bottom: 10px;
  }
  .approach-principle-body {
    font-size: 12.5px;
  }
  .approach-closing {
    font-size: 14px;
    padding: 20px 22px;
    line-height: 1.8;
  }
  .menu-faq {
    padding: 48px 0 56px;
  }
  .flow-item {
    padding: 16px 18px;
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
  .flow-num {
    font-size: 24px;
  }
  .flow-text-title {
    font-size: 15px;
  }
  .flow-text-body {
    font-size: 13px;
    line-height: 1.7;
  }
  .menu-faq {
    padding: 48px 0 40px;
  }
  .faq-cats {
    gap: 24px;
    margin-top: 24px;
  }
  .faq-cat-title {
    font-size: 16px;
  }
  .faq-item {
    padding: 14px 16px;
  }
  .faq-q {
    font-size: 13.5px;
    padding-left: 24px;
  }
  .faq-q::before {
    font-size: 17px;
  }
  .faq-a {
    font-size: 12.5px;
    line-height: 1.8;
    padding-left: 24px;
  }
  .faq-a::before {
    font-size: 17px;
  }
  .menu-cta-final {
    padding: 56px 0;
  }
  .cta-final-title {
    font-size: 22px;
    line-height: 1.45;
  }
  .cta-final-body {
    font-size: 13.5px;
    line-height: 1.85;
  }
  .cta-final-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .cta-final-btn {
    padding: 12px 24px;
    justify-content: center;
  }
}

.site-footer {
  background: #0a2347;
  color: #cfd9e6;
  padding: 48px 0 28px;
}
.site-footer .inner {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.foot-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-brand-logo {
  width: 240px;
  height: auto;
  display: block;
}
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: flex-end;
}
.foot-nav a {
  color: #cfd9e6;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.foot-nav a:hover {
  color: #fff;
}

.foot-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-info-block .foot-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #7a8aa3;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.foot-info-block p {
  font-size: 13px;
  line-height: 1.75;
  color: #cfd9e6;
  margin: 0;
}

.foot-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.foot-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-meta a {
  font-size: 12px;
  color: #a9b6c8;
  transition: color 0.15s ease;
}
.foot-meta a:hover {
  color: #fff;
}
.copy {
  font-size: 12px;
  color: #7a8aa3;
}

/* ============================================================
   レスポンシブ対応
   ブレークポイント:
   - 1199px↓ : 中型タブレット〜小型ノート
   -  1023px↓ : タブレット縦
   -   767px↓ : スマホ
   ============================================================ */

/* ===== タブレット縦・スマホ共通 (≤1023px) ===== */
@media (max-width: 1023px) {
  /* utility-bar は SP/タブレット縦では非表示（h1 テキストは画面外で SEO 維持） */
  .utility-bar {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ヘッダー: タブレット/SPはハンバーガー機能化 */
  .site-header {
    height: 60px;
  }
  .site-header .inner {
    position: relative;
    padding: 0 16px;
  }
  .brand-logo {
    width: 180px;
  }

  /* ヘッダー右ツール表示（電話+ハンバーガー） */
  .header-tools {
    display: flex;
  }
  .hamburger-icon {
    display: flex;
  }
  .header-tel,
  .header-line {
    display: none;
  }

  /* ハンバーガーアニメーション（チェック時に×に変化） */
  .hamburger-toggle:checked ~ .inner .hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-toggle:checked ~ .inner .hamburger-icon span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-toggle:checked ~ .inner .hamburger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* gnav: ヘッダー下にスライドイン（ヘッダー固定で被らない） */
  .site-header {
    z-index: 40;
  }
  .gnav {
    position: fixed;
    top: 60px;
    right: 0;
    width: 82%;
    max-width: 340px;
    height: calc(100vh - 60px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 80px;
    box-shadow: -4px 0 18px rgba(20, 40, 80, 0.18);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 35;
    overflow-y: auto;
  }
  .hamburger-toggle:checked ~ .inner .gnav {
    transform: translateX(0);
  }
  .hamburger-toggle:checked ~ .hamburger-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
    top: 60px;
  }
  .gnav-item {
    border-bottom: 1px solid var(--line);
  }
  .gnav-link {
    padding: 18px 8px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    justify-content: space-between;
  }
  .gnav-link .chev {
    transform: rotate(-45deg);
  }
  /* メガメニューはSPでは展開済みリストに */
  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--bg-soft);
    padding: 8px 12px;
    margin: 0 -8px 8px;
    border-radius: 6px;
    min-width: 0;
    width: auto;
    max-width: none;
  }
  .mega::before {
    display: none;
  }
  .mega-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .mega-col .mega-title {
    padding-bottom: 4px;
    margin-bottom: 4px;
  }
  .mega-list a {
    padding: 6px 8px;
  }
  /* SP: メガは展開済みリスト表示のため、ホバー/フォーカスで開く演出(transform移動)を無効化。
     リンク機能・展開表示は維持し、動きのみ止める */
  .gnav-item.has-mega:hover > .mega,
  .gnav-item.has-mega:focus-within > .mega {
    transform: none;
  }

  /* MV: SPは「写真を右側に大きく、文字を左前面」レイアウト */
  .mv {
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    overflow: hidden;
    position: relative;
  }
  .mv .inner {
    padding: 0 18px 24px;
    min-height: auto;
    position: relative;
    display: block;
  }
  .mv-photo {
    position: absolute;
    top: 0;
    right: -4%;
    width: 64svw;
    height: 62%;
    margin: 0;
    overflow: visible;
    order: 0;
    z-index: 0;
    opacity: 1;
  }
  .mv-photo .photo {
    position: absolute;
    inset: 0;
    clip-path: none;
    background-position: center;
    background-size: cover;
    border-radius: 0;
    box-shadow: none;
    mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  }
  .mv-copy {
    max-width: 100%;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 1;
    padding-top: 34px;
    padding-right: 30%;
  }
  .mv-copy .lead-tags {
    justify-content: flex-start;
    margin-bottom: 14px;
    gap: 5px;
  }
  .mv-copy .lead-tags .tag {
    font-size: 10.5px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    font-weight: 700;
  }
  .mv-copy .lead-tags .tag:nth-child(2) {
    border-color: var(--blue);
    color: var(--blue);
  }
  .mv-copy .lead-tags .tag:nth-child(3) {
    border-color: var(--orange);
    color: var(--orange);
  }
  .mv-copy .lead-tags .tag:nth-child(4) {
    border-color: var(--blue-light);
    color: var(--blue-light);
  }
  .mv-copy .lead {
    font-size: 23px;
    white-space: normal;
    line-height: 1.5;
    margin: 0;
    font-weight: 700;
  }
  .mv-copy .lead .lead-sm {
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
    color: var(--ink-soft);
    font-weight: 500;
    line-height: 1.4;
  }
  .mv-copy .lead .lead-line {
    display: block;
    white-space: normal;
    font-size: 18px;
    margin-top: 8px;
    line-height: 1.5;
  }
  .mv-copy .lead .accent {
    font-size: 30px;
    display: inline-block;
    background: linear-gradient(180deg, transparent 60%, rgba(242, 144, 50, 0.35) 60%);
    padding: 0 3px;
    font-weight: 900;
    line-height: 1.2;
  }
  .mv-copy .sub {
    display: none;
  }

  /* features: 2カラム */
  .mv-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 6px;
    margin-top: 24px;
    padding-right: 0;
    position: relative;
    z-index: 1;
  }
  .feat {
    padding: 10px 6px 8px;
    border-width: 1px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
  }
  .feat .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 3px;
  }
  .feat .icon svg,
  .feat .icon img {
    width: 20px;
    height: 20px;
  }
  .feat .label {
    font-size: 10.5px;
    line-height: 1.4;
  }

  /* SPでは MV 内のCTAは削除（追従CTAに集約） */
  .mv-cta {
    display: none;
  }

  /* 追従CTA: SPは下部固定バー化、電話はheader移動のため非表示。各ボタンに吹き出し付き */
  .float-cta {
    position: fixed;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    flex-direction: row;
    gap: 8px;
    background: #fff;
    padding: 10px 12px 12px;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 14px rgba(20, 40, 80, 0.12);
    z-index: 55;
  }
  .float-cta .bubble {
    display: none;
  }
  /* float-orange に吹き出し */
  .float-orange {
    position: relative;
  }
  .float-orange::before {
    content: "ご予約なしOK！";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  .float-orange::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background: var(--navy);
  }
  .float-btn {
    padding: 10px 6px;
    font-size: 11.5px;
    flex: 1;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
  }
  .float-btn .ico {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.22);
  }
  .float-btn .ico svg {
    width: 13px;
    height: 13px;
  }
  .float-btn .lbl small {
    display: none;
  }
  .float-btn .lbl {
    font-size: 11.5px;
    line-height: 1.2;
  }
  /* SPでは追従CTAから電話削除（ヘッダー右の電話アイコンに集約） */
  .float-tel {
    display: none;
  }
  /* SPではLINEもヘッダー右のアイコンに集約（追従CTAでは非表示） */
  .float-line {
    display: none;
  }

  /* バナー: 1カラム、写真を上、文字を下に */
  .banners {
    padding: 32px 0;
  }
  .banners .inner {
    padding: 0 16px;
    gap: 10px;
    max-width: 100%;
  }
  .banners .banner {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .banner {
    min-height: 0;
    aspect-ratio: 343 / 148;
  }
  /* SP: タップ/ホバー時に動く装飾アニメーション(浮き上がり・スライド・矢印回転)を一律無効化。
     ※ リンク遷移・ドロワー開閉(ハンバーガー)などの機能は維持し、transformによる「動き」のみ止める */
  .banner:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(20, 40, 80, 0.08);
  }
  .btn:hover,
  .btn:active,
  .float-btn:hover,
  .float-btn:active,
  .banner:active,
  .trial-btn:hover,
  .ext-cta:hover,
  .drug-card-cta:hover,
  .anchor-grid a:hover,
  .anchor-grid a:hover .a-arr,
  .price-nav a:hover,
  .trial-plan-cta:hover,
  .flow-cta-btn:hover,
  .cta-final-btn:hover,
  .gnav-item:hover .chev,
  .gnav-item:hover .has-mega,
  .gnav-item.has-mega:hover .chev,
  .drug-card-cta:active,
  .trial-btn:active {
    transform: none;
  }
  .banner .body {
    padding: 14px 16px 12px;
    gap: 6px;
    justify-content: flex-end;
    max-width: 100%;
    position: relative;
  }
  /* SP: 斜めクリップ解除、写真を全幅表示 */
  .banner .bg-img,
  .banner .scrim {
    width: 100%;
    clip-path: none;
  }
  .banner h3 {
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .banner .banner-price {
    width: max-content;
    max-width: 100%;
    margin-top: 4px;
    padding: 4px 8px;
    gap: 8px;
  }
  .banner .banner-price .emp-bar-left {
    padding-right: 8px;
    border-right: 1px solid var(--line);
  }
  .banner .banner-price .emp-name {
    font-size: 10.5px;
  }
  .banner .banner-price .emp-yen {
    font-size: 10px;
  }
  .banner .banner-price .emp-num {
    font-size: 17px;
  }
  .banner .banner-price .emp-suffix {
    font-size: 9px;
  }
  .banner .banner-price .emp-tax {
    font-size: 7.5px;
  }
  .banner .more {
    position: absolute;
    right: 16px;
    bottom: 12px;
    margin-top: 0;
    padding: 6px 12px 6px 14px;
    font-size: 11.5px;
  }
  .banner .more .arr {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
  /* SP: 星と装飾のスケール調整 */
  .b-sleep::after {
    background-size: 70px 70px;
  }
  /* バナーのスクリムを下に集中（写真の上部が見える） */
  .b-ed .bg-img,
  .b-sleep .bg-img,
  .b-aga .bg-img {
    background-size: cover;
  }
  .b-ed .bg-img {
    background-position: center 35%;
  }
  .b-sleep .bg-img {
    background-position: center 55%;
  }
  .b-aga .bg-img {
    background-position: center 50%;
  }
  .b-ed .scrim {
    background: linear-gradient(180deg, rgba(8, 37, 73, 0) 0%, rgba(8, 37, 73, 0.4) 40%, rgba(8, 37, 73, 0.92) 80%);
  }
  .b-sleep .scrim {
    background: linear-gradient(
      180deg,
      rgba(62, 63, 110, 0) 0%,
      rgba(90, 96, 152, 0.55) 40%,
      rgba(62, 63, 110, 0.92) 85%
    );
  }
  .b-aga .scrim {
    background: linear-gradient(
      180deg,
      rgba(15, 58, 122, 0) 0%,
      rgba(31, 111, 201, 0.5) 40%,
      rgba(15, 58, 122, 0.92) 80%
    );
  }

  /* セクション見出し */
  .sec-h2 {
    font-size: 26px;
  }
  .sec-h2 .num {
    font-size: 32px;
  }
  .sec-head {
    margin-bottom: 36px;
  }

  /* reasons: 1カラム化 */
  .reasons {
    padding: 64px 0 48px;
  }
  .reasons::before {
    height: 380px;
  }
  .reasons .inner {
    padding: 0 16px;
  }
  .reason {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }
  .reason.reverse {
    grid-template-columns: 1fr;
  }
  .reason.reverse .reason-media {
    order: 0;
  }
  .reason.reverse .reason-body {
    order: 1;
  }
  .reason.reverse .reason-media .reason-no {
    left: -12px;
    right: auto;
  }
  .reason-media {
    aspect-ratio: 520/380;
    max-width: 520px;
    margin: 0 auto;
    width: 90%;
  }
  .reason-media .reason-no {
    font-size: 13px;
    padding: 6px 14px;
    top: -12px;
    left: -8px;
  }
  .reason-title {
    font-size: 21px;
    line-height: 1.5;
  }
  .reason-text {
    font-size: 14px;
  }
  .reason-sub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 16px;
  }
  .package-care {
    padding: 18px 20px;
  }
  .package-care .pc-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .trial-plan {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 22px;
    margin: 24px 0 60px;
  }

  /* privacy: 5col → 3col */
  .privacy {
    padding: 64px 0 48px;
  }
  .privacy .inner {
    padding: 0 16px;
  }
  .privacy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .pv-item {
    padding: 22px 12px 18px;
  }

  /* existing-treatment */
  .existing-treatment {
    padding: 48px 0;
  }
  .existing-treatment .inner {
    padding: 0 16px;
  }
  .ext-card {
    padding: 24px 22px;
    text-align: center;
  }
  .ext-icon {
    margin: 0 auto;
  }
  .ext-body .sec-h2 {
    text-align: center;
    font-size: 20px;
  }
  .ext-cta {
    margin: 8px auto 0;
    justify-self: center;
  }

  /* SP: ext-card-a は縦並びに */
  .ext-card-a {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 22px 24px 26px;
  }
  .ext-card-a .ext-icon {
    margin: 0 auto;
  }
  .ext-card-a .ext-eyebrow {
    text-align: center;
  }
  .ext-card-a .ext-body {
    text-align: center;
  }
  .ext-card-a .ext-cta {
    margin: 8px auto 0;
  }

  /* flow */
  .flow {
    padding: 64px 0 48px;
  }
  .flow .inner {
    padding: 0 16px;
  }
  .flow-tabs .flow-tab-list {
    max-width: 100%;
  }
  .flow-tab {
    font-size: 13px;
    padding: 14px 16px;
  }
  /* SPは「Step n」テキストが上、丸が下、本文がその下＝縦並び */
  .flow-steps::before {
    display: none;
  }
  .step {
    padding-left: 0;
    margin-bottom: 32px;
    position: relative;
  }
  .step-no {
    position: relative;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    padding: 0 0 8px;
    background: transparent;
    gap: 6px;
  }
  .step-no::after {
    width: 14px;
    height: 14px;
    border-width: 0;
    background: var(--blue);
    box-shadow: none;
    margin-left: 0;
    flex-shrink: 0;
    line-height: 0;
    font-size: 0;
    display: inline-block;
    background-clip: padding-box;
  }
  .step-title {
    padding-top: 0;
  }

  /* access: 縦積み */
  .access {
    padding: 64px 0 48px;
  }
  .access .inner {
    padding: 0 16px;
  }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .access-map {
    min-height: 280px;
  }
  .access-map iframe {
    min-height: 280px;
  }
  .access-info {
    padding: 28px 24px;
  }

  /* drugs: タブをコンパクトに */
  .drugs {
    padding: 64px 0 48px;
  }
  .drugs .inner {
    padding: 0 16px;
  }
  .drug-tab-list {
    margin-bottom: 28px;
    max-width: 100%;
  }
  .drug-tab {
    padding: 12px 10px;
    font-size: 12.5px;
    gap: 6px;
  }
  .drug-tab .dt-icon {
    width: 18px;
    height: 18px;
  }
  .drug-tab .dt-icon svg {
    width: 14px;
    height: 14px;
  }
  .drug-card {
    padding: 24px 22px;
    border-radius: 12px;
  }
  .drug-card-title {
    font-size: 16px;
    line-height: 1.5;
  }
  .drug-card-text {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 18px;
  }
  .drug-rows li {
    grid-template-columns: 1fr 1fr;
    padding: 12px 14px;
    font-size: 13px;
    gap: 10px;
  }
  .drug-rows .dr-name {
    font-size: 13px;
  }
  .drug-rows .dr-variant {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }
  .drug-rows .dr-dose {
    font-size: 11.5px;
    min-width: 46px;
  }
  .drug-rows .dr-price {
    font-size: 14px;
  }

  /* faq */
  .faq {
    padding: 64px 0 48px;
  }
  .faq .inner {
    padding: 0 16px;
  }
  .faq-cat {
    padding: 24px 22px;
  }
  .faq-cat-title {
    font-size: 16px;
  }

  /* bottom-cta */
  .bottom-cta {
    padding: 56px 0;
  }
  .bottom-cta .inner {
    padding: 0 16px;
  }
  .bcta-title {
    font-size: 24px;
  }
  .bcta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .bcta-buttons .btn {
    width: 100%;
  }
  .bcta-tel {
    flex-direction: column;
    gap: 6px;
  }

  /* footer */
  .site-footer {
    padding: 48px 0 24px;
    padding-bottom: 96px; /* 下部固定CTA分の余白 */
  }
  .site-footer .inner {
    padding: 0 16px;
  }
  /* ロゴ中央、リンクを2カラム */
  .foot-top {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    justify-items: center;
  }
  .foot-brand {
    display: block;
    margin: 0 auto;
  }
  .foot-brand-logo {
    margin: 0 auto;
  }
  .foot-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    justify-content: start;
    justify-items: start;
    text-align: left;
  }
  .foot-info {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== スマホ専用 (≤767px) ===== */
@media (max-width: 767px) {
  /* SP時のみ改行する <br class="br-sp"> を有効化 */
  .br-sp {
    display: initial;
  }

  /* MV: SP では1023px↓の設定をそのまま使う（更にコンパクトにしない） */
  .mv .inner {
    padding: 0 14px 20px;
  }

  /* utility-bar */
  .utility-bar .util-lead {
    font-size: 10px;
  }
  .utility-bar .addr {
    font-size: 10px;
  }

  /* セクション見出し */
  .sec-h2 {
    font-size: 22px;
  }
  .sec-h2 .num {
    font-size: 28px;
  }

  /* reasons */
  .reason-media {
    aspect-ratio: 5/4;
  }
  .reason-title {
    font-size: 19px;
    line-height: 1.5;
  }

  /* privacy: 3col → 2col */
  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pv-item {
    padding: 18px 10px 14px;
    gap: 6px;
  }
  .pv-item .pv-icon {
    width: 48px;
    height: 48px;
  }
  .pv-item .pv-icon svg {
    width: 24px;
    height: 24px;
  }
  .pv-item .pv-text {
    font-size: 11.5px;
  }

  /* trial-plan ボタン */
  .trial-btn {
    padding: 14px 18px;
    font-size: 13px;
  }

  /* flow */
  .step {
    padding-left: 64px;
  }
  .flow-steps::before {
    left: 24px;
  }
  .step-no {
    width: 60px;
    font-size: 12px;
  }
  .step-no::after {
    width: 14px;
    height: 14px;
  }
  .step-title {
    font-size: 15px;
  }
  .step-text {
    font-size: 13px;
  }
  .step-cta {
    padding: 11px 18px;
    font-size: 12px;
  }

  /* access */
  .access-info {
    padding: 22px 18px;
    text-align: center;
  }
  .acc-clinic {
    font-size: 18px;
  }
  .time-main {
    font-size: 18px;
  }
  .acc-list {
    text-align: left;
  }
  /* SP: 診療日の表は 4列 × 2行 のグリッド表記
     ※ tbody を grid にして tr は display:contents で透過させる方が
        ブラウザ間で安定して 2 行レイアウトになる */
  .time-table {
    display: block;
    font-size: 13px;
    margin-top: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
  }
  .time-table thead {
    display: none;
  }
  .time-table tbody {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .time-table tr {
    display: contents;
  }
  .time-table td {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    gap: 2px;
  }
  .time-table td:nth-child(4n) {
    border-right: 0;
  }
  .time-table td:nth-last-child(-n + 4) {
    border-bottom: 0;
  }
  .time-table td::before {
    content: attr(data-day);
    display: block;
    font-size: 11px;
    color: var(--navy);
    font-weight: 600;
  }
  .acc-cta {
    display: flex;
    margin: 12px auto 0;
    justify-content: center;
    width: fit-content;
  }

  /* drugs: より小型化 */
  .drug-tab {
    font-size: 11.5px;
    padding: 11px 6px;
    gap: 4px;
  }
  .drug-card {
    padding: 20px 16px;
    text-align: center;
  }
  .drug-card-eyebrow,
  .drug-card-title,
  .drug-card-text {
    text-align: left;
  }
  .drug-card-title {
    font-size: 15px;
  }
  .drug-rows {
    text-align: left;
  }
  .drug-rows li {
    padding: 10px 12px;
  }
  .drug-rows .dr-price {
    text-align: right;
  }
  .drug-card-cta {
    display: inline-flex;
    margin: 8px auto 0;
  }

  /* faq */
  .faq-cat {
    padding: 20px 0;
  }
  .faq-cat-title {
    font-size: 15px;
  }
  .faq-item dt {
    font-size: 14px;
  }
  .faq-item dd {
    font-size: 13px;
  }

  /* bottom-cta */
  .bottom-cta::before,
  .bottom-cta::after {
    display: none;
  }
  .bcta-title {
    font-size: 20px;
    line-height: 1.55;
  }

  /* footer */
  .foot-brand-logo {
    width: 200px;
  }
  .foot-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* ===== 極小スマホ (≤374px) ===== */
@media (max-width: 374px) {
  .mv-features {
    grid-template-columns: 1fr 1fr;
  }
  .float-btn {
    padding: 8px 4px;
    font-size: 11px;
  }
  .float-btn .ico {
    display: none;
  }
}

/* ============================================================
   下層ページMV（背景画像 + タイトル）
   .page-mv
   - 背景画像は body.page-<x> で差し替え（デフォルトは img-mv.webp）
   - 画像なしにしたい場合は .page-mv.no-bg
   使用想定: 当院について / 初めての方へ / 治療中の方へ / 採用情報 など
   ============================================================ */
.page-mv {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  background: var(--navy);
  isolation: isolate;
}
.page-mv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center/cover no-repeat;
  background-image: url("../../assets/img-mv.webp");
}
.page-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(12, 46, 92, 0.82) 0%, rgba(8, 37, 73, 0.88) 100%);
}
.page-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(95, 176, 232, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(31, 111, 201, 0.14) 0%, transparent 50%);
  pointer-events: none;
}
.page-mv .inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-mv-eyebrow {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--blue-light);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.page-mv-h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.35;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* 画像なしバリアント */
.page-mv.no-bg .page-mv-bg {
  display: none;
}
.page-mv.no-bg::before {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}

/* テーマ別 背景画像 */
body.page-ed       .page-mv-bg { background-image: url("../../assets/img-ed-about.webp"); }
body.page-insomnia .page-mv-bg { background-image: url("../../assets/img-insomnia-about.webp"); }
body.page-aga      .page-mv-bg { background-image: url("../../assets/img-aga-about.webp"); }

/* ============================================================
   パンくず
   .breadcrumb / .breadcrumb-list
   ============================================================ */
.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.breadcrumb .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  padding: 0;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumb-list li + li::before {
  content: "›";
  color: var(--line);
  font-size: 16px;
  margin-right: 0;
}
.breadcrumb-list a {
  color: var(--blue);
  text-decoration: none;
}
.breadcrumb-list a:hover {
  text-decoration: underline;
}
.breadcrumb-list [aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================================
   テンプレートページ専用UI
   body.page-template ... 本番ページには影響しないようすべて body 配下に閉じる
   ============================================================ */
body.page-template {
  background: var(--bg-soft);
}
body.page-template .tpl-main {
  margin-left: 240px;
}
/* 左サイド固定 目次 */
body.page-template .tpl-toc {
  position: fixed;
  left: 0;
  top: 124px;
  width: 240px;
  height: calc(100vh - 124px);
  overflow-y: auto;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 20px 16px 32px;
  z-index: 5;
  font-size: 12.5px;
}
body.page-template .tpl-toc-h {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
}
body.page-template .tpl-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.page-template .tpl-toc-list li {
  margin: 4px 0;
}
body.page-template .tpl-toc-list a {
  display: block;
  padding: 6px 8px;
  color: var(--ink-soft);
  border-radius: 4px;
  line-height: 1.4;
}
body.page-template .tpl-toc-list a:hover {
  background: var(--bg-soft);
  color: var(--navy);
}

/* イントロ */
body.page-template .tpl-intro {
  background: #fff;
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
}
body.page-template .tpl-intro .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-template .tpl-intro-eyebrow {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 12px;
}
body.page-template .tpl-intro-h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 20px;
}
body.page-template .tpl-intro-lead {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  max-width: 760px;
  margin-bottom: 24px;
}
body.page-template .tpl-intro-meta {
  list-style: none;
  margin: 0;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  font-size: 13px;
  color: var(--ink-soft);
  border-radius: 0 4px 4px 0;
}
body.page-template .tpl-intro-meta li {
  margin: 4px 0;
}
body.page-template .tpl-intro-meta code {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--navy);
}

/* ブロックラベル（各セクション直前） */
body.page-template .tpl-tag {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  margin: 48px 28px 0;
  border-radius: 6px 6px 0 0;
  font-size: 12.5px;
  scroll-margin-top: 124px;
}
body.page-template .tpl-tag-no {
  background: var(--orange);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 13px;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
body.page-template .tpl-tag-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}
body.page-template .tpl-tag-class {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72);
  flex-basis: 100%;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 3px;
}
body.page-template .tpl-tag-use {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
}
/* セクション本体の余白調整（tpl-tag 直後のセクションを密着） */
body.page-template .tpl-tag + section {
  margin-top: 0;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: #fff;
  margin-left: 28px;
  margin-right: 28px;
  overflow: hidden;
}
body.page-template .tpl-tag + nav.breadcrumb {
  margin-top: 0;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: #fff;
  margin-left: 28px;
  margin-right: 28px;
}
/* MV/banners/bottom-cta などはフルブリードのまま、ラベルだけ角丸＆余白 */
body.page-template .tpl-tag + .menu-mv,
body.page-template .tpl-tag + .page-mv,
body.page-template .tpl-tag + .bottom-cta,
body.page-template .tpl-tag + .banners {
  border-radius: 0 0 6px 6px;
  border: 1px solid var(--line);
  border-top: none;
  margin-left: 28px;
  margin-right: 28px;
}

/* ボタン展示セクション */
body.page-template .tpl-buttons-section {
  padding: 40px 0;
}
body.page-template .tpl-buttons-section .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
body.page-template .tpl-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
body.page-template .tpl-note {
  font-size: 13px;
  color: var(--ink-soft);
}
body.page-template .tpl-note code {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--navy);
}

/* テンプレでは追従CTAの位置を少し下げて目次と重ならないように */
body.page-template .float-cta {
  top: 200px;
}

@media (max-width: 1023px) {
  body.page-template .tpl-toc {
    display: none;
  }
  body.page-template .tpl-main {
    margin-left: 0;
  }
  body.page-template .tpl-tag,
  body.page-template .tpl-tag + section,
  body.page-template .tpl-tag + nav.breadcrumb,
  body.page-template .tpl-tag + .menu-mv,
  body.page-template .tpl-tag + .page-mv,
  body.page-template .tpl-tag + .bottom-cta,
  body.page-template .tpl-tag + .banners {
    margin-left: 16px;
    margin-right: 16px;
  }
  .page-mv {
    padding: 56px 0;
  }
  .page-mv-h1 {
    font-size: 26px;
  }
  .page-mv-eyebrow {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

/* ============================================================
   コンセプト3カラム (.concept-cards)
   ============================================================ */
.concept-section {
  padding: 72px 0 80px;
  background: #fff;
}
.concept-section .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.concept-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
}
.concept-card-num {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.concept-card-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 16px;
}
.concept-card-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
}

/* ============================================================
   アクセス情報 (.access-section / .access-grid / .hours-table / .access-table / .access-map)
   左カラム: 診療時間表 + 所在地dl ／ 右カラム: Googleマップ
   ============================================================ */
.access-section {
  padding: 72px 0 64px;
  background: #fff;
}
.access-section .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 36px;
  margin-top: 40px;
  align-items: stretch;
}
.access-info {
  display: flex;
  flex-direction: column;
}
.access-sub-h {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--orange);
}
.access-info .access-sub-h + * {
  margin-top: 0;
}
.access-info .access-sub-h:not(:first-child) {
  margin-top: 28px;
}

/* 診療時間 曜日別テーブル */
.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}
.hours-table th,
.hours-table td {
  padding: 12px 6px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.hours-table th:last-child,
.hours-table td:last-child {
  border-right: none;
}
.hours-table tbody tr:last-child th,
.hours-table tbody tr:last-child td {
  border-bottom: none;
}
.hours-table thead th {
  background: var(--navy);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
}
.hours-table .ht-corner {
  background: var(--navy-deep);
}
.hours-table .ht-row {
  background: var(--bg-soft);
  color: var(--navy);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 13.5px;
  white-space: nowrap;
  padding: 14px 12px;
  text-align: center;
}
.hours-table tbody td {
  font-size: 16px;
  color: var(--orange);
  font-weight: 700;
}
.hours-note {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* 所在地・連絡先 dl */
.access-table {
  margin: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.access-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.access-row:last-child {
  border-bottom: none;
}
.access-label {
  background: var(--navy);
  color: #fff;
  padding: 14px 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}
.access-value {
  padding: 14px 18px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink);
  background: #fff;
}
.access-value strong {
  color: var(--navy);
  font-weight: 700;
}
.access-tel {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--orange);
  letter-spacing: 0.04em;
}

/* Map (右カラム・左カラムと同じ高さに伸ばす) */
.access-map {
  display: flex;
  flex-direction: column;
}
.access-map-frame {
  flex: 1;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(12, 46, 92, 0.06);
}
.access-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
}
.access-map-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: right;
}

/* Route steps - 横スクロール スライダー（縦長写真） */
.route-steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 4px 4px 20px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--navy) var(--bg-soft);
}
.route-steps::-webkit-scrollbar {
  height: 8px;
}
.route-steps::-webkit-scrollbar-track {
  background: var(--bg-soft);
  border-radius: 4px;
}
.route-steps::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 4px;
}
.route-step {
  flex: 0 0 280px;
  width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(12, 46, 92, 0.05);
}
.route-step-photo {
  /* 縦長写真用：横幅280px×縦約330px (3:3.6 ratio) */
  aspect-ratio: 3 / 3.6;
  width: 100%;
  background: #c8d2e1 center/cover no-repeat;
  position: relative;
}
.route-step-text {
  padding: 18px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.route-step-num {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.route-step-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 8px;
}
.route-step-body {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink);
}

/* ============================================================
   院内紹介（写真なし）(.facility-section / .facility-points)
   ============================================================ */
.facility-section {
  padding: 72px 0 80px;
  background: var(--bg-soft);
}
.facility-section .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.facility-lead {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  text-align: center;
}
.facility-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.facility-point {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
}
.fp-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 8px;
  color: var(--navy);
  margin-bottom: 16px;
}
.fp-icon svg {
  width: 28px;
  height: 28px;
}
.fp-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 12px;
}
.fp-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink);
}
.fp-body strong {
  color: var(--navy);
  font-weight: 700;
}

/* ============================================================
   汎用テキストブロック (.prose-section / .prose)
   ============================================================ */
.prose-section {
  padding: 72px 0 80px;
  background: #fff;
}
.prose-section .inner {
  max-width: var(--inner-w);
  margin: 0 auto;
  padding: 0 var(--inner-pad);
}
/* prose-section 内では sec-head を本文と同じ幅に揃え、左揃え */
.prose-section .sec-head {
  max-width: var(--prose-w);
  margin: 0 auto 32px;
  text-align: left;
}
.prose {
  max-width: var(--prose-w);
  margin: 0 auto;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.95;
}
.prose > * + * {
  margin-top: 1.6em;
}
.prose h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.45;
  color: var(--navy);
  margin-top: 2.6em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.prose > h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy);
  margin-top: 2.2em;
  padding-left: 14px;
  border-left: 4px solid var(--orange);
}
.prose h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy);
  margin-top: 1.8em;
}
.prose p {
  margin: 0;
}
.prose > * + p,
.prose > p + *,
.prose > * + dl,
.prose > * + ul,
.prose > * + ol {
  margin-top: 1.6em;
}
.prose strong {
  color: var(--navy);
  font-weight: 700;
}
.prose em {
  font-style: italic;
  color: var(--navy);
}
.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover {
  color: var(--orange);
}
.prose code {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 0.92em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--navy);
}
.prose ul,
.prose ol {
  padding-left: 1.6em;
  margin: 0;
}
.prose ul {
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose ul li::marker,
.prose ol li::marker {
  color: var(--orange);
}
.prose li + li {
  margin-top: 0.4em;
}
.prose li > ul,
.prose li > ol {
  margin-top: 0.4em;
}
/* サイトマップ: 見出し直下のリストに余白を確保 */
.page-sitemap .prose > h2 + ul,
.page-sitemap .prose > h2 + ol {
  margin-top: 1.4em;
}
/* ガイドライン・プラポリ: 定義リスト (dl) の上に余白を確保 */
.page-guideline .prose > * + dl,
.page-privacy .prose > * + dl {
  margin-top: 2em;
}
.prose dl {
  margin: 0;
  padding: 18px 20px;
  background: var(--bg-soft);
  border-radius: 6px;
  border-left: 3px solid var(--navy);
}
.prose dt {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.97em;
}
.prose dd + dt {
  margin-top: 1.2em;
}
.prose dt + dd {
  margin-top: 0.4em;
}
.prose dd {
  margin: 0 0 0 1em;
}
.prose blockquote {
  margin: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--orange);
  background: var(--bg-soft);
  border-radius: 0 6px 6px 0;
}
.prose blockquote p {
  font-style: italic;
  color: var(--ink-soft);
}
.prose blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.9em;
  font-style: normal;
  color: var(--ink-soft);
}

/* ============================================================
   セクション内のリード文（sec-head直下に置く単段落）
   ============================================================ */
.sec-lead-center {
  max-width: var(--prose-w);
  margin: 0 auto 32px;
  text-align: center;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
}
.sec-lead-center strong {
  color: var(--navy);
  font-weight: 700;
}

/* ============================================================
   推奨環境リスト (.req-list)
   ============================================================ */
.req-list {
  list-style: none;
  margin: 32px auto 0;
  padding: 0;
  max-width: 880px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.req-item {
  display: grid;
  grid-template-columns: 70px 180px 1fr;
  align-items: center;
  gap: 0;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.req-item:last-child {
  border-bottom: none;
}
.req-icon {
  font-size: 26px;
  line-height: 1;
}
.req-label {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.req-value {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}

/* ============================================================
   タブ切り替え (.tabs / .tab-pane)
   ============================================================ */
.tabs {
  margin-top: 32px;
}
.tabs-nav {
  display: flex;
  gap: 6px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 0;
}
.tab-btn {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-bottom: none;
  color: var(--ink-soft);
  padding: 12px 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  transition: background 0.15s, color 0.15s;
}
.tab-btn:hover {
  background: #fff;
  color: var(--navy);
}
.tab-btn.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  font-weight: 700;
}
.tab-panes {
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 32px 28px 36px;
}
@media (max-width: 767px) {
  #route .tab-panes {
    padding: 0;
    border: 0;
  }
}
.tab-pane-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}
.tab-pane p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink);
}

/* ============================================================
   ✅理由リスト (.check-reasons)
   ============================================================ */
.check-reasons {
  list-style: none;
  margin: 32px auto 0;
  padding: 0;
  max-width: 880px;
  display: grid;
  gap: 16px;
}
.cr-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
}
.cr-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cr-mark svg {
  width: 20px;
  height: 20px;
}
.cr-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.5;
}
.cr-body {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink);
}

/* ============================================================
   募集要項テーブル (.recruit-table)
   ============================================================ */
.recruit-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin: 32px 0 16px;
}
.recruit-title small {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-left: 6px;
}
.recruit-table {
  margin: 0 0 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.recruit-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--line);
}
.recruit-row:last-child {
  border-bottom: none;
}
.recruit-label {
  background: var(--navy);
  color: #fff;
  padding: 16px 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}
.recruit-value {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
}

/* ============================================================
   レスポンシブ（新規ブロック）
   ============================================================ */
@media (max-width: 1023px) {
  .concept-cards {
    grid-template-columns: 1fr;
  }
  .route-step {
    flex: 0 0 240px;
    width: 240px;
  }
  .facility-points {
    grid-template-columns: 1fr;
  }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .access-map-frame,
  .access-map-frame iframe {
    min-height: 320px;
  }
  .hours-table th,
  .hours-table td {
    padding: 10px 4px;
    font-size: 13px;
  }
  .hours-table .ht-row {
    padding: 10px 8px;
    font-size: 12px;
  }
  .access-row,
  .recruit-row {
    grid-template-columns: 1fr;
  }
  .access-label,
  .recruit-label {
    padding: 12px 18px;
  }
  .req-item {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    row-gap: 4px;
  }
  .req-icon {
    grid-row: 1 / 3;
  }
  .req-label {
    grid-column: 2;
  }
  .req-value {
    grid-column: 2;
  }
  .tabs-nav {
    flex-wrap: wrap;
  }
  .tab-btn {
    font-size: 13px;
    padding: 10px 14px;
  }
  .cr-item {
    padding: 18px 20px;
  }
  .prose {
    font-size: 14.5px;
  }
  .prose h2 {
    font-size: 21px;
  }
  .prose h3 {
    font-size: 17.5px;
  }
}
