@charset "utf-8";

/**
 * 下層ページ
 * 参考イメージ: https://www.ont-womens.com/first/
 * （フルブリードのやわらかいFV＋読みやすい本文カラム）
 */

body.subpage {
  background: #fff;
  /* fixed header 分の余白。margin だと相殺して .mainimage-sub がヘッダー下に潜る */
  padding-top: var(--header-height-initial, 14rem);
}

@media only screen and (max-width: 1024px) {
  body.subpage {
    padding-top: var(--header-height-initial, 6.4rem);
  }
}

body.subpage .site-header {
  background: rgba(255, 255, 255, 0.94);
}

/* ===== 下層メインイメージ（FV） ===== */
.mainimage-sub {
  position: relative;
  margin-top: 0;
  min-height: 28rem;
  height: 32vw;
  height: clamp(24rem, 32vw, 42rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  /* 写真未設定時のフォールバック */
  background-color: var(--color-theme-second-light);
  /* background-image: url(../images/mainimage-sub_bg.jpg); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* .mainimage-sub::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(62, 100, 82, 0.5) 0%,
    rgba(62, 100, 82, 0.22) 42%,
    rgba(255, 255, 255, 0.06) 100%
  );
  z-index: 1;
  pointer-events: none;
} */

.mainimage-sub-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 2.4rem;
  row-gap: 0.2rem;
  width: var(--content-width, 80%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.4rem 0;
}

.mainimage-sub-en {
  grid-column: 2;
  grid-row: 1;
  display: block;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-theme-second);
  margin-bottom: 0;
  text-transform: uppercase;
}

.mainimage-sub-title {
  display: contents;
}

.mainimage-sub-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: block;
  width: 11.2rem;
  height: 11.2rem;
  object-fit: contain;
  align-self: center;
}

.mainimage-sub h1 {
  grid-column: 2;
  grid-row: 2;
  font-family: "Noto Serif JP", serif;
  font-size: 4.2rem;
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  font-weight: 500;
  color: var(--color-theme-second);
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 18px rgba(40, 70, 55, 0.25);
}

@media (max-width: 767px) {
  .mainimage-sub {
    min-height: 20rem;
    height: auto;
    padding: 4rem 0;
  }

  .mainimage-sub-inner {
    column-gap: 1.6rem;
  }

  .mainimage-sub-icon {
    width: 8rem;
    height: 8rem;
  }
}

/* 背景写真は修飾クラスで指定（差し替え時はこのURLを変更） */
.mainimage-sub--hero {
  background-image: url("../media/placeholders/hero.svg");
}
.mainimage-sub--exam {
  background-image: url("../media/placeholders/exam.svg");
}
.mainimage-sub--treatment {
  background-image: url("../media/placeholders/treatment.svg");
}
.mainimage-sub--seminar {
  background-image: url("../media/placeholders/seminar.svg");
}
.mainimage-sub--clinic {
  background-image: url("../media/placeholders/clinic.svg");
}
.mainimage-sub--embryo {
  background-image: url("../media/placeholders/embryo.svg");
}
.mainimage-sub--doctor {
  background-image: url("../media/placeholders/doctor.svg");
}
.mainimage-sub--staff {
  background-image: url("../media/placeholders/staff.svg");
}

/* ===== パンくず ===== */
#sub-page .breadcrumb-nav {
  padding: 1.6rem 0 0;
}

body.subpage .breadcrumb {
  margin-bottom: 0;
}

body.subpage .breadcrumb li {
  font-size: 1.4rem;
  color: #888;
}

body.subpage .breadcrumb a {
  color: var(--color-theme);
  text-decoration: none;
}

body.subpage .breadcrumb a:hover {
  text-decoration: underline;
}

body.subpage .breadcrumb li:not(:last-child)::after {
  color: #bbb;
}

/* ===== サブコンテンツ枠 ===== */
#sub-page {
  padding: 0 0 10rem;
}

@media (max-width: 767px) {
  #sub-page {
    padding-bottom: 3.2rem;
  }
}

#sub-page .main-content {
  width: var(--content-width, 80%);
  max-width: 130rem;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  :root {
    --content-width: 90vw;
  }

  #sub-page .main-content,
  .mainimage-sub-inner {
    width: 90vw;
    max-width: none;
  }

  .page-notice {
    margin: 2rem 0 0;
    padding: 1.6rem 1.6rem 1.6rem 1.8rem;
  }

  .page-notice__title {
    margin-bottom: 0.8rem;
  }
}

#sub-page .page-body {
  margin-top: 3.2rem;
}

.page-local-pills {
  margin: 0 0 3.2rem;
}

.page-local-pills a.is-current {
  background: var(--color-theme-second);
  pointer-events: none;
}

/* ===== 本文 ===== */
.page-body {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.page-body > :first-child {
  margin-top: 0;
}

/* セクション間にゆとり */
.page-body > section + section {
  margin-top: 8rem;
  padding-top: 2rem;
}

.page-body .section-title {
  position: relative;
  font-size: 2.4rem;
  font-size: clamp(2.2rem, 2.4vw, 2.4rem);
  font-weight: 700;
  font-family: "Noto Serif JP";
  color: var(--color-txt);
  margin: 4.8rem 0 2rem 0 !important;
}

/* ja / en 重ね見出し（英語を薄い地紋、日本語を前面） */
.page-body .section-title:has(> .ja) {
  position: relative;
  display: block;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 3.2rem;
  padding-top: 1.6rem;
}

/* 先頭セクションの見出しだけ、ピル下の余白を確保 */
.page-body > section:first-of-type > .section-title:first-child {
  margin-top: 1.6rem;
}

.page-body .section-title > .en {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #e6dcc4;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.page-body .section-title > .ja {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0.8rem 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-txt);
}

.page-body .section-title > .ja > span {
  font-size: 80%;
  font-weight: 500;
}

@media (max-width: 767px) {
  .page-body > section + section {
    margin-top: 5.6rem;
    padding-top: 1.2rem;
  }

  .page-body .section-title:has(> .ja) {
    padding-top: 1.2rem;
    margin-bottom: 2.4rem;
  }

  .page-body .section-title > .en {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    white-space: normal;
    max-width: 100%;
  }

  .page-body .section-title > .ja {
    margin-top: 0.6rem;
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
}

.page-body .section-subtitle,
.profile-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin: 4rem 0 2rem;
  padding: 0 0 0.8rem;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-theme-second) 28%, transparent);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-theme-second);
}

.section-subtitle__en,
.profile-heading__en {
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--color-theme-second) 55%, #fff);
}

.profile-heading {
  margin: 0 0 1.6rem;
}

/* section-subtitle より一段下の見出し */
.page-body .section-subhead {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin: 2.4rem 0 1.2rem;
  padding: 0 0 0.4rem 1rem;
  border: 0;
  border-left: 3px solid var(--color-theme-second);
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-theme-second);
}

.section-subhead__en {
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--color-theme-second) 50%, #fff);
}

.page-body .section-subtitle + .section-subhead,
.page-body p + .section-subhead {
  margin-top: 2rem;
}

.first-intro {
  align-items: start;
  margin-top: 0;
}

.first-intro .page-menu {
  margin-bottom: 0;
}

.first-intro .decimal-list {
  margin: 0 0 1.6rem;
}

.first-intro .decimal-list > li:last-child {
  margin-bottom: 0;
}

.first-intro .media-split__media {
  overflow: hidden;
}

.first-intro .media-split__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .first-intro {
    gap: 2.4rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .first-intro {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
}

/* PC：写真カラム（.media-split の後勝ちを避けるためセレクタを一段強く） */
@media (min-width: 1024px) {
  .media-split.first-intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    column-gap: 2.4rem;
    align-items: start;
  }

  .media-split.first-intro.media-split--rev {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  }
}

.page-body p {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-txt);
}

.page-body p + p {
  margin-top: 1.6rem;
}

/* .page-body ul,
.page-body ol {
  margin: 1.4rem 0 2rem;
  padding-left: 1.6em;
}

.page-body li + li {
  margin-top: 0.8rem;
} */

.lead {
  font-size: 1.7rem;
  line-height: 2.05;
  color: var(--color-txt);
}

.note {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #777;
}

/* 注記・お願いボックス（参考サイトの「お願い」枠に近い） */
.page-notice {
  margin: 3.2rem 0;
  padding: 2.4rem 2.4rem 2.4rem 2.8rem;
  background: var(--color-theme-second-light);
  border-left: 0.5rem solid var(--color-theme);
  border-radius: 0 0.8rem 0.8rem 0;
}

.page-notice__title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-theme-second);
  margin-bottom: 1.2rem;
}

.page-notice p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
}

.page-notice p + p {
  margin-top: 1rem;
}

/* 注意事項パネル（theme-second 系） */
.notes-panel {
  margin: 0;
  padding: 2.8rem 3.2rem;
  background: color-mix(in srgb, var(--color-theme-second) 6%, #fff);
  border: 1px solid color-mix(in srgb, var(--color-theme-second) 22%, transparent);
  box-shadow: inset 0.5rem 0 0 var(--color-theme-second);
}

.notes-panel__item + .notes-panel__item {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px dashed color-mix(in srgb, var(--color-theme-second) 28%, transparent);
}

.notes-panel__heading {
  position: relative;
  margin: 0 0 0.8rem;
  padding-left: 1.5em;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-theme-second);
  line-height: 1.6;
}

.notes-panel__heading::before {
  content: "＊";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-theme-second);
  font-weight: 700;
}

.notes-panel__item p {
  margin: 0;
  padding-left: 1.5em;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--color-txt);
}

.notes-panel a {
  color: var(--color-theme-second);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.notes-panel a:hover {
  opacity: 0.75;
}

@media (max-width: 767px) {
  .notes-panel {
    padding: 2.2rem 1.8rem 2.2rem 2rem;
  }

  .notes-panel__heading,
  .notes-panel__item p {
    padding-left: 1.3em;
  }
}

/* 白枠＋丸リストの案内パネル（参考サイトの保険適応枠に近い） */
.info-panel {
  margin: 2.4rem 0;
  padding: 2.8rem 3.2rem;
  background: #fff;
  border: 1px solid rgba(121, 183, 145, 0.45);
  border-radius: 1.6rem;
}

.info-panel__title {
  margin: 0 0 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-theme);
  line-height: 1.5;
}

.info-panel > p + .info-panel__title {
  margin-top: 1.2rem;
}

.info-panel .link-pills {
  margin-top: 0.4rem;
}

.info-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-body .info-panel__list {
  padding-left: 0;
}

.media-split__text > .info-panel__list {
  margin: 0;
}

.info-panel__list > li {
  position: relative;
  margin: 0;
  padding: 0 0 0 2rem;
}

.info-panel__list > li + li {
  margin-top: 1.8rem;
}

.info-panel__list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background: var(--color-theme);
}

.info-panel__list strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6;
}

.info-panel__list p {
  margin: 0.4rem 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

/* ===== サイド ===== */
.page-aside {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1025px) {
  .page-aside {
    position: sticky;
    top: calc(var(--header-height-initial, 14rem) + 2rem);
  }
}

.local-nav,
.aside-card {
  background: #fff;
  padding: 0;
  box-shadow: none;
  border: 1px solid rgba(121, 183, 145, 0.28);
  border-radius: 0.8rem;
  overflow: hidden;
}

.local-nav h2,
.aside-card h2 {
  margin: 0;
  padding: 1.4rem 1.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-theme);
  letter-spacing: 0.06em;
}

.local-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
}

.local-nav a {
  display: block;
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid rgba(121, 183, 145, 0.15);
  color: var(--color-txt);
  font-size: 1.45rem;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.local-nav li:last-child a {
  border-bottom: 0;
}

.local-nav a:hover {
  background: var(--color-theme-second-light);
  color: var(--color-theme);
}

.local-nav a.is-current {
  background: var(--color-theme-second-light);
  color: var(--color-theme);
  font-weight: 700;
  box-shadow: inset 0.35rem 0 0 var(--color-theme);
}

.aside-card {
  padding-bottom: 1.8rem;
}

.aside-card > p,
.aside-card .cta-row {
  padding-left: 1.8rem;
  padding-right: 1.8rem;
}

.aside-card > p {
  margin-top: 1.6rem;
  font-size: 1.6rem;
}

.aside-card .cta-row {
  margin-top: 1.4rem;
}

/* ===== 図版 ===== */
.ph-figure {
  margin: 2.4rem 0 3.2rem;
}

.ph-figure img,
.ph-figure svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
}

.ph-figure figcaption {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #888;
  text-align: center;
}

.ph-figure--side {
  max-width: 36rem;
}

.media-split {
  display: grid;
  gap: 3rem;
  margin: 4rem 0;
}

.media-split__media {
  margin: 0;
}

.media-split__media img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0.8rem;
}

.media-split__text p:first-child {
  margin-top: 0;
}

/* カウンセリング料金表・看護師相談概要表 */
.page-body table.counseling-fee {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.6rem;
  margin: 2.4rem 0;
  box-sizing: border-box;
}

.page-body table.counseling-fee th,
.page-body table.counseling-fee td {
  border: 1px solid rgba(121, 183, 145, 0.3);
  padding: 1.2rem 1.4rem;
  vertical-align: middle;
  text-align: left;
  box-sizing: border-box;
}

.page-body table.counseling-fee th {
  width: 35%;
  background: var(--color-theme-second-light);
  color: var(--color-theme-second);
  font-weight: 700;
  word-break: keep-all;
}

.page-body table.counseling-fee td {
  width: 65%;
  color: var(--color-txt);
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .page-body table.counseling-fee th,
  .page-body table.counseling-fee td {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .media-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .media-split--rev {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .media-split--rev .ph-figure,
  .media-split--rev .media-split__media {
    order: -1;
  }

  .media-split--price-intro {
    align-items: start;
    margin-top: 2.4rem;
  }

  .media-split--price-intro .media-split__media {
    position: sticky;
    top: calc(var(--header-height-initial, 14rem) + 2rem);
  }
}

/* ===== 案内カード（解説ページのご案内に近い） ===== */
.card-grid {
  display: grid;
  gap: 1.4rem;
  margin: 2.4rem 0 1.2rem;
}

@media (min-width: 768px) {
  .card-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10rem;
  background: #fff;
  padding: 2.2rem 2rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(121, 183, 145, 0.35);
  border-radius: 0.8rem;
  box-shadow: 0 0.6rem 1.6rem rgba(80, 120, 100, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.page-card:hover {
  border-color: var(--color-theme);
  background: var(--color-theme-second-light);
  box-shadow: 0 1rem 2.4rem rgba(80, 120, 100, 0.12);
  transform: translateY(-3px);
}

.page-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-theme-second);
  border: 0;
  padding: 0;
}

.page-card p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #666;
}

/* ピル型リンク列（参考サイトの「不妊症／不育症」ボタン列に近い） */
.link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 2rem 0 1.2rem;
}

.link-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14rem;
  padding: 1.2rem 2rem;
  border-radius: 999px;
  background: var(--color-theme);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.link-pills a:hover {
  background: #5fa07a;
  transform: translateY(-2px);
}

/* アウトライン型ピル（円形写真＋説明ブロック用） */
.link-pills--outline {
  margin: 1.6rem 0 0;
  gap: 1rem 1.2rem;
}

.link-pills--outline a {
  min-width: 0;
  padding: 0.9rem 1.8rem;
  background: #fff;
  color: var(--color-theme);
  border: 1px solid var(--color-theme);
  font-weight: 500;
  font-size: 1.5rem;
}

.link-pills--outline a:hover {
  background: var(--color-theme);
  color: #fff;
  border-color: var(--color-theme);
  transform: translateY(-5px);
}

/* 円形写真＋見出し＋説明＋ピル（同系統ブロック共通） */
.topic-circle {
  display: grid;
  gap: 2.4rem;
  align-items: center;
  margin: 4rem 0;
}

.topic-circle__media {
  margin: 0 auto;
  width: min(100%, 32rem);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.topic-circle__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.topic-circle__body {
  min-width: 0;
}

.topic-circle__title {
  margin: 0 0 1.2rem;
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-theme);
}

.topic-circle__title + .link-pills {
  margin-top: 0;
}

.topic-circle__lead {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--color-txt);
}

.topic-circle__lead + .topic-circle__lead {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .topic-circle {
    grid-template-columns: minmax(22rem, 32rem) minmax(0, 1fr);
    gap: clamp(2.4rem, 4vw, 4.8rem);
    align-items: center;
  }

  .topic-circle__media {
    width: 100%;
    margin: 0;
  }

  .topic-circle--rev {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 32rem);
  }

  .topic-circle--rev .topic-circle__media {
    order: 2;
  }

  .topic-circle--rev .topic-circle__body {
    order: 1;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 2.4rem 0 0.4rem;
}

.faq-item {
  border-bottom: 1px solid rgba(121, 183, 145, 0.22);
  padding: 2rem 0;
}

.faq-item h3 {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  color: var(--color-theme-second);
}

.faq-item p {
  margin: 0;
}

.profile-meta {
  display: grid;
  gap: 0.4rem 1.6rem;
  margin: 1.2rem 0 2rem;
}

@media (min-width: 768px) {
  .profile-meta {
    grid-template-columns: 12rem minmax(0, 1fr);
  }
}

.profile-meta dt {
  font-weight: 600;
  color: var(--color-theme);
  font-size: 1.6rem;
}

.profile-meta dd {
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
}

/* 経歴 / 資格 / 所属学会 */
.profile-grid {
  display: grid;
  gap: 3.2rem;
  margin: 3.2rem 0 4rem;
  align-items: start;
}

@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 4rem 4.8rem;
  }

  .profile-grid--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 56rem;
  }
}

.profile-grid__side {
  display: grid;
  gap: 3.2rem;
}

.profile-career,
.profile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-body .profile-career,
.page-body .profile-list {
  padding-left: 0;
}

.profile-career > li {
  margin: 0;
  padding: 1.2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-theme-second) 12%, transparent);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-txt);
}

.profile-career > li:first-child {
  padding-top: 0;
}

.profile-career > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.profile-career__date {
  display: inline-block;
  min-width: 9em;
  margin-right: 0.8rem;
  font-weight: 600;
  color: var(--color-theme-second);
}

.profile-list > li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.4em;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

.profile-list > li + li {
  margin-top: 0.8rem;
}

.profile-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--color-theme-second);
}

.table-wrap {
  overflow-x: auto;
  margin: 1.6rem 0;
}

.source-note {
  margin-top: 4.8rem;
  padding-top: 1.4rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  font-size: 1.2rem;
  color: #aaa;
}

/* 当院について：1ページ内セクション */
.page-body .about-block {
  margin-top: 4.8rem;
  scroll-margin-top: calc(var(--header-height-initial, 14rem) + 1.6rem);
}

.page-body #greeting,
.page-body #ohashi,
.page-body #maruyama,
.page-body #kitamura-career {
  scroll-margin-top: calc(var(--header-height-initial, 14rem) + 1.6rem);
}

/* 院長・医師紹介：写真＋プロフィール2カラム */
.doctor-greeting {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 34rem);
  gap: clamp(2.4rem, 4vw, 4.8rem);
  align-items: start;
  margin: 2.4rem 0 3.2rem;
}

.doctor-greeting__photo {
  margin: 0;
  width: 100%;
  max-width: 34rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #f3f3f3;
}

.doctor-greeting__photo img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}

.doctor-greeting__header {
  margin-bottom: 2rem;
}

.doctor-greeting__role {
  margin: 0 0 0.4rem;
  font-size: 1.8rem !important;
  line-height: 1 !important;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-theme-second);
}

.doctor-greeting__name {
  margin: 0;
  font-family: "Noto Serif JP", "Libre Caslon Text", serif;
  font-size: clamp(2.8rem, 3.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-theme-second);
}

.doctor-greeting__name-en {
  margin: 0.4rem 0 0;
  font-family: "Libre Caslon Text", "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-txt);
}

.doctor-greeting__text p {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-txt);
}

.doctor-greeting__text p:last-child {
  margin-bottom: 0;
}

.doctor-profile {
  margin: 0 0 5.6rem;
}

.doctor-profile .doctor-greeting {
  margin-bottom: 3.2rem;
}

/* .doctor-profile .profile-grid {
  margin-top: 0;
} */

@media (max-width: 767px) {
  .doctor-greeting {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .doctor-greeting__photo {
    max-width: 22rem;
    margin: 0 auto;
  }

  .doctor-greeting__header {
    text-align: center;
  }
}

/* スタッフ紹介 */
.staff-list {
  display: grid;
  gap: 4rem;
  margin: 2.4rem 0 0;
}

.staff-card {
  display: grid;
  gap: 2.4rem;
  align-items: start;
}

@media (min-width: 768px) {
  .staff-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
    gap: 3.2rem 4rem;
  }
}

.staff-card__body {
  min-width: 0;
}

.staff-card__name {
  margin: 0 0 1.6rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid color-mix(in srgb, var(--color-theme-second) 28%, transparent);
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-theme-second);
}

.staff-card__body p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-txt);
}

.staff-card__photo {
  margin: 0;
  max-width: 22rem;
}

.staff-card__photo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0.8rem;
}

@media (max-width: 767px) {
  .staff-card__photo {
    max-width: 18rem;
    margin: 0 auto;
  }

  .staff-card__name {
    text-align: center;
  }
}

.page-body .about-block:first-of-type {
  margin-top: 3.2rem;
}

/* 施設基準など（医師紹介に近い2カラム） */
.standards-grid {
  display: grid;
  gap: 3.2rem;
  margin: 2.4rem 0 4rem;
  align-items: start;
}

@media (min-width: 900px) {
  .standards-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 4rem 4.8rem;
  }
}

.standards-grid__main,
.standards-grid__side {
  display: grid;
  gap: 3.2rem;
}

.standards-block + .standards-block {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid color-mix(in srgb, var(--color-theme-second) 12%, transparent);
}

.standards-block__title {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-theme-second);
}

.standards-block p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--color-txt);
}

.standards-block .profile-list {
  margin-top: 1.2rem;
}

.standards-extra {
  margin: 0 0 2.4rem;
}

.standards-extra > p {
  margin: 0 0 2rem;
  font-size: 1.6rem;
  line-height: 1.9;
}

.standards-extra__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .standards-extra__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 3.2rem;
  }

  .standards-extra__grid .standards-block + .standards-block {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
}

/* 施設写真ギャラリー */
.facility-gallery-lead {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--color-txt);
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.6rem;
  margin: 2rem 0 3.2rem;
  padding: 0;
  list-style: none;
}

.page-body .facility-gallery {
  padding-left: 0;
}

.page-body .facility-gallery li + li {
  margin-top: 0;
}

.facility-gallery li {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
}

.facility-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 0.6rem;
  background: var(--color-gray-light);
}

.facility-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin: 0;
  transition: transform 0.3s ease;
}

.facility-gallery a:hover img {
  transform: scale(1.04);
}

.facility-gallery__caption {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-txt);
  text-align: center;
}

.facility-gallery__note {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--color-txt);
  text-align: center;
}

@media (max-width: 767px) {
  .facility-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .facility-gallery {
    grid-template-columns: 1fr;
  }
}

.page-body > * {
  min-width: 0;
}

.page-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-body dl.qa {
  margin: 0 0 1.6rem;
  padding: 2rem 2.4rem;
  background: var(--color-gray-light);
  border-radius: 1.6rem;
  border: 1px solid rgba(121, 183, 145, 0.45);
}

.page-body dl.qa dt,
.page-body dl.qa dd {
  position: relative;
  margin: 0;
  padding-left: 4rem;
}

.page-body dl.qa dt {
  margin-bottom: 1.4rem;
  font-weight: 500;
  color: var(--color-theme-second);
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
}

.page-body dl.qa dt::before,
.page-body dl.qa dd::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Montserrat", "Lato", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.2;
}

.page-body dl.qa dt::before {
  content: "Q";
  color: var(--color-theme-second);
}

.page-body dl.qa dd::before {
  content: "A";
  color: var(--color-theme);
}

.page-body dl.qa dd {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-txt);
}

@media (max-width: 640px) {
  .page-body dl.qa {
    padding: 1.6rem 1.6rem;
  }

  .page-body dl.qa dt,
  .page-body dl.qa dd {
    padding-left: 3.2rem;
  }

  .page-body dl.qa dt::before,
  .page-body dl.qa dd::before {
    font-size: 2rem;
  }
}

.page-body .cont-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0 2rem;
  background: var(--color-theme);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.page-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
}

.page-body th,
.page-body td {
  border: 1px solid rgba(121, 183, 145, 0.3);
  padding: 1.1rem 1.2rem;
  text-align: left;
  vertical-align: top;
}

.page-body th {
  background: var(--color-theme-second-light);
  color: var(--color-theme-second);
  font-weight: 700;
}

/* 料金表（項目 / 料金 / 説明） */
.page-body table:has(td.price-td) {
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
}

.page-body table:has(td.price-td) th,
.page-body table:has(td.price-td) td {
  vertical-align: middle;
  padding: 1.2rem 1.4rem;
}

.page-body table:has(td.price-td) th {
  width: 28%;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.5;
}

.page-body table:has(td.price-td) td.price-td {
  width: 30%;
  white-space: nowrap;
  text-align: left;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  word-break: keep-all;
  overflow-wrap: break-word;
}

.page-body table:has(td.price-td) td:last-child {
  width: 42%;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 2カラム料金表（項目 / 料金）※3カラム表は除外 */
.page-body table:has(td[colspan="2"]):not(:has(td.price-td)),
.page-body table.price-pair {
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
}

.page-body table:has(td[colspan="2"]):not(:has(td.price-td)) th,
.page-body table.price-pair:not(.price-pair--icsi) th {
  width: 72%;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.page-body table:has(td[colspan="2"]):not(:has(td.price-td)) td,
.page-body table.price-pair:not(.price-pair--icsi) td {
  width: 28%;
  vertical-align: middle;
}

.page-body table:has(td[colspan="2"]):not(:has(td.price-td)) td {
  white-space: nowrap;
}

/* 受精表：左2列で72%、料金列28%（採卵・胚移植と境界を揃える） */
.page-body table.price-pair--icsi col:nth-child(1),
.page-body table.price-pair--icsi col:nth-child(2) {
  width: 36%;
}

.page-body table.price-pair--icsi col:nth-child(3) {
  width: 28%;
}

.page-body table.price-pair--icsi th,
.page-body table.price-pair--icsi td {
  vertical-align: middle;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  /* 3列料金表（項目 / 料金 / 説明）→ 縦積みカード */
  .page-body table:has(td.price-td) {
    table-layout: auto;
  }

  .page-body table:has(td.price-td),
  .page-body table:has(td.price-td) tbody,
  .page-body table:has(td.price-td) tr,
  .page-body table:has(td.price-td) th,
  .page-body table:has(td.price-td) td,
  .page-body table:has(td.price-td) td.price-td,
  .page-body table:has(td.price-td) td:last-child {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-body table:has(td.price-td) tr {
    margin: 0 0 1.2rem;
    border: 1px solid rgba(121, 183, 145, 0.35);
    overflow: hidden;
  }

  .page-body table:has(td.price-td) th,
  .page-body table:has(td.price-td) td {
    border: 0;
    padding: 1rem 1.2rem;
  }

  .page-body table:has(td.price-td) th {
    border-bottom: 1px solid rgba(121, 183, 145, 0.25);
  }

  .page-body table:has(td.price-td) td.price-td {
    width: 100%;
    white-space: normal;
    font-weight: 700;
    color: var(--color-theme-second);
    padding-bottom: 0.4rem;
  }

  .page-body table:has(td.price-td) td:last-child:empty {
    display: none;
  }

  .page-body table:has(td.price-td) td:last-child:not(:empty) {
    padding-top: 0.4rem;
    font-size: 1.4rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--color-txt) 78%, #fff);
  }

  /* 2列料金表 */
  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)),
  .page-body table.price-pair:not(.price-pair--icsi),
  .page-body table.counseling-fee {
    table-layout: auto;
  }

  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)),
  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)) tbody,
  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)) tr,
  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)) th,
  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)) td,
  .page-body table.price-pair:not(.price-pair--icsi),
  .page-body table.price-pair:not(.price-pair--icsi) tbody,
  .page-body table.price-pair:not(.price-pair--icsi) tr,
  .page-body table.price-pair:not(.price-pair--icsi) th,
  .page-body table.price-pair:not(.price-pair--icsi) td,
  .page-body table.counseling-fee,
  .page-body table.counseling-fee tbody,
  .page-body table.counseling-fee tr,
  .page-body table.counseling-fee th,
  .page-body table.counseling-fee td {
    display: block;
    width: 100%;
  }

  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)) tr,
  .page-body table.price-pair:not(.price-pair--icsi) tr,
  .page-body table.counseling-fee tr {
    margin: 0 0 1.2rem;
    border: 1px solid rgba(121, 183, 145, 0.35);
    overflow: hidden;
  }

  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)) th,
  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)) td,
  .page-body table.price-pair:not(.price-pair--icsi) th,
  .page-body table.price-pair:not(.price-pair--icsi) td,
  .page-body table.counseling-fee th,
  .page-body table.counseling-fee td {
    border: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1rem 1.2rem;
    white-space: normal;
  }

  .page-body table:has(td[colspan="2"]):not(:has(td.price-td)) th,
  .page-body table.price-pair:not(.price-pair--icsi) th,
  .page-body table.counseling-fee th {
    border-bottom: 1px solid rgba(121, 183, 145, 0.25);
  }

  .page-body table.price-pair--icsi {
    table-layout: auto;
    font-size: 1.4rem;
  }

  .page-body table.price-pair--icsi col {
    width: auto;
  }

  .page-body table.price-pair--icsi th,
  .page-body table.price-pair--icsi td {
    padding: 0.9rem 1rem;
    white-space: normal;
  }

  /* ドック等の検査料金表（検査名 / 料金 / 内容） */
  .table-scroll:has(.exam-fee-table) {
    overflow: visible;
  }

  .exam-fee-table {
    min-width: 0;
  }

  .exam-fee-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .exam-fee-table,
  .exam-fee-table tbody,
  .exam-fee-table tr,
  .exam-fee-table th,
  .exam-fee-table td {
    display: block;
    width: 100%;
  }

  .exam-fee-table tbody tr {
    margin: 0 0 1.6rem;
    border: 1px solid rgba(121, 183, 145, 0.35);
    overflow: hidden;
    background: #fff;
  }

  .exam-fee-table tbody th,
  .exam-fee-table td {
    border: 0;
    white-space: normal;
    text-align: left;
  }

  .exam-fee-table tbody th {
    border-bottom: 1px solid rgba(121, 183, 145, 0.25);
  }

  .exam-fee-table td:nth-child(2) {
    font-weight: 700;
    color: var(--color-theme-second);
    padding-bottom: 0.4rem;
  }

  .exam-fee-table td:nth-child(2)::before {
    content: "料金：";
  }

  .exam-fee-table td:nth-child(3) {
    padding-top: 0.4rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .exam-fee-table td:nth-child(3)::before {
    content: "内容";
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: var(--color-theme-second);
    font-size: 1.3rem;
  }

  .exam-fee-table.schedule-month-table {
    min-width: 0;
  }

  .exam-fee-table.schedule-month-table td:nth-child(2) {
    white-space: normal;
    text-align: left;
    font-weight: 400;
    color: inherit;
    overflow-wrap: anywhere;
  }

  .exam-fee-table.schedule-month-table td:nth-child(2)::before {
    content: "内容：";
    font-weight: 700;
    color: var(--color-theme-second);
  }

  .exam-fee-table.schedule-month-table td:nth-child(3) {
    font-size: 1.6rem;
  }

  .exam-fee-table.schedule-month-table td:nth-child(3)::before {
    content: "通院のイメージ";
  }

  .table-scroll:has(.exam-fee-table--matrix) {
    overflow-x: auto;
  }

  .exam-fee-table--matrix,
  .exam-fee-table--matrix tbody,
  .exam-fee-table--matrix tr,
  .exam-fee-table--matrix th,
  .exam-fee-table--matrix td {
    display: revert;
    width: auto;
  }

  .exam-fee-table--matrix {
    display: table;
    min-width: 52rem;
  }

  .exam-fee-table--matrix thead {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    clip-path: none;
  }

  .exam-fee-table--matrix tbody tr {
    display: table-row;
    margin: 0;
    border: 0;
  }

  .exam-fee-table--matrix tbody th,
  .exam-fee-table--matrix td {
    display: table-cell;
    border: 1px solid rgba(121, 183, 145, 0.3);
    white-space: normal;
  }

  .exam-fee-table--matrix td:nth-child(2),
  .exam-fee-table--matrix td:nth-child(3) {
    font-weight: inherit;
    color: inherit;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    font-size: inherit;
  }

  .exam-fee-table--matrix td:nth-child(2)::before,
  .exam-fee-table--matrix td:nth-child(3)::before {
    content: none;
  }
}

.page-body .grid {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .page-body .grid-col-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* 看護師相談：相談内容の例 */
.nurse-topics {
  display: grid;
  gap: 2.8rem;
  margin: 2.4rem 0;
}

.counseling-topics {
  padding: 2rem;
  border: solid 1px var(--color-theme-second);
}

.nurse-topic {
  min-width: 0;
}

.nurse-topic .section-subtitle {
  margin-top: 0;
}

.dash-arrow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .dash-arrow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3.2rem;
  }
}

.page-body .dash-arrow-list {
  padding-left: 0;
}

.page-body .dash-arrow-list li + li {
  margin-top: 0;
}

.dash-arrow-list > li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 1.4rem 0;
  border-bottom: 1px dashed rgba(110, 65, 24, 0.35);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-txt);
}

.dash-arrow-list > li::before {
  content: "\f054";
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #b0b0b0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

/* 矢印を右端に置くリスト（画像＋リストの2カラム用） */
.dash-arrow-list--end {
  grid-template-columns: 1fr;
}

.dash-arrow-list--end > li {
  justify-content: space-between;
  gap: 1.6rem;
  border-top: 1px dashed rgba(110, 65, 24, 0.35);
  border-bottom: 0;
}

.dash-arrow-list--end > li:last-child {
  border-bottom: 1px dashed rgba(110, 65, 24, 0.35);
}

.dash-arrow-list--end > li::before {
  display: none;
}

.dash-arrow-list--end > li::after {
  content: "\f054";
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--color-theme);
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

.follow-split {
  align-items: center;
  margin-top: 3.2rem;
}

.follow-split .media-split__text > p:first-child {
  margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
  .follow-split {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

/* 受診の流れ（円形ステップ） */
.grid {
  display: grid;
  margin-bottom: 1.6rem;
}

.grid.en {
  grid-template-columns: 1fr 25px 1fr 25px 1fr;
  gap: 0;
  justify-items: center;
  align-items: center;
  margin: 2rem 0;
}

.grid.en > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-theme-second-light);
  border: 2px solid var(--color-theme-light);
  border-radius: 50%;
  box-sizing: border-box;
}

.grid.en p {
  margin: 0;
  padding: 0;
  color: var(--color-theme-second);
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
}

.grid.en .fa-right-long {
  color: var(--color-theme-light);
  font-size: 1.8rem;
}

@media (min-width: 641px) {
  .grid.en {
    grid-template-columns: 1fr 100px 1fr 100px 1fr;
    width: 60%;
    margin: 4rem auto;
  }

  .grid.en p {
    font-size: clamp(2rem, 2.2vw, 2.6rem);
  }

  .grid.en .fa-right-long {
    font-size: 2.8rem;
  }
}

/* 検査コース：選び方チャート */
.exam-flow {
  margin: 0 0 3.2rem;
  padding: 1.6rem;
  background: var(--color-theme-second-light, #f3f8f4);
  border: 1px solid rgba(121, 183, 145, 0.35);
}

.exam-flow .centerimg {
  margin: 0;
}

.exam-flow img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 検査項目アコーディオン */
.exam-faq {
  margin: 1.6rem 0 0;
}

.exam-faq-item {
  border-bottom: 1px solid rgba(121, 183, 145, 0.25);
  padding: 0.4rem 0;
}

.exam-faq-item summary {
  cursor: pointer;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-theme-second, #5a8f6e);
  padding: 1rem 0.4rem;
  list-style: none;
}

.exam-faq-item summary::-webkit-details-marker {
  display: none;
}

.exam-faq-item summary::before {
  content: "＋";
  display: inline-block;
  width: 1.6em;
  color: var(--color-theme, #79b791);
}

.exam-faq-item[open] summary::before {
  content: "−";
}

.exam-faq-item p {
  margin: 0 0 1.2rem;
  padding: 0 0.4rem 0.4rem 1.6em;
  font-size: 1.6rem;
  line-height: 1.8;
}

.page-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  margin: 2.4rem 0;
  padding: 0;
}

.page-menu .bt03 {
  text-align: center;
}

.page-menu .bt03__note {
  font-size: 0.85em;
  font-weight: 500;
}

.page-menu--first {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.6rem;
  margin: 3.2rem 0 0;
}

.page-menu--first .bt03 {
  justify-content: space-between;
  width: 100%;
  min-height: 5.6rem;
  padding: 1.4rem 2rem;
  border: none;
  border-radius: 0;
  background: var(--color-theme-second-light);
  color: var(--color-theme-second) !important;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: left;
}

.page-menu--first .bt03::after {
  content: "+";
  flex-shrink: 0;
  margin-left: 1.2rem;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.page-menu--first .bt03:hover {
  background: var(--color-theme-second-light);
  color: var(--color-theme-second) !important;
  transform: none;
  opacity: 0.85;
}

.first-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 3.2rem;
}

.first-accordion--stack {
  gap: 0;
  width: 100%;
  max-width: 100%;
}

.first-accordion--stack .first-acc__toggle {
  border-bottom: 1px solid #fff;
  font-size: 1.6rem;
  min-width: 0;
  white-space: normal;
}

.first-accordion--stack .first-acc__body {
  padding: 1.6rem 2rem 2.4rem;
  background: #fff;
}

.first-acc {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  scroll-margin-top: calc(var(--header-height-initial, 6.4rem) + 1.6rem);
}

.first-acc__details {
  width: 100%;
  border: none;
}

.first-acc__toggle {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 5.6rem;
  padding: 1.8rem 2rem;
  background: var(--color-theme-second-light);
  color: var(--color-theme-second);
  font-size: 1.8rem;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

.first-acc__toggle::-webkit-details-marker {
  display: none;
}

.first-acc__toggle::after {
  content: "+";
  flex-shrink: 0;
  margin-left: auto;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.first-acc__details[open] .first-acc__toggle::after {
  content: "−";
}

.first-acc__heading {
  margin: 1.6rem 0 1.2rem;
}

.first-acc__en {
  display: block;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-theme);
  margin-bottom: 0.4rem;
}

.first-acc__ja {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-theme-second);
  line-height: 1.4;
}

.first-acc__body {
  padding: 0 0 1.6rem;
  min-width: 0;
}

.first-acc__body table,
.first-acc__body .table-scroll {
  max-width: 100%;
}

.first-acc__body > :first-child {
  margin-top: 0;
}

.first-acc__body > .media-split {
  margin-top: 0;
  margin-bottom: 2rem;
}

.first-acc__body > .section-subtitle:first-child {
  margin-top: 0;
}

.first-accordion--guide {
  gap: 0;
  margin-top: 3.2rem;
}

.guide-index__item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.6rem 0 2rem;
  text-decoration: none;
  color: inherit;
}

.guide-index__icon {
  display: block;
  flex-shrink: 0;
  width: 6.4rem;
  height: 6.4rem;
  object-fit: contain;
}

.guide-index__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

.guide-index__title {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-theme-second);
}

.guide-index__title::after {
  content: ">";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--color-theme);
  color: #fff;
  font-family: "Montserrat", "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.guide-index__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--color-txt);
}

@media only screen and (min-width: 1025px) {
  .first-accordion--guide {
    margin-top: 4rem;
  }

  .guide-index__icon {
    width: 7.2rem;
    height: 7.2rem;
  }

  .guide-index__title {
    font-size: 2.4rem;
  }
}

@media only screen and (min-width: 768px) {
  .first-acc__toggle,
  .first-accordion--stack .first-acc__toggle {
    min-height: 6.8rem;
    padding: 2.2rem 2.4rem;
    font-size: 2rem;
  }

  .first-acc__toggle::after {
    font-size: 2.6rem;
  }
}

@media only screen and (min-width: 1025px) {
  .first-accordion {
    display: block;
    margin-top: 4rem;
  }

  .first-acc {
    margin: 0 0 1.6rem;
  }

  .first-acc__toggle,
  .first-accordion--stack .first-acc__toggle {
    display: flex;
    min-height: 8rem;
    padding: 2.8rem 3.2rem;
    font-size: 2.4rem;
  }

  .first-acc__toggle::after {
    font-size: 3.2rem;
  }

  .first-acc__heading {
    display: none;
  }

  .first-acc__body {
    padding: 2.4rem 3.2rem 3.2rem;
  }

  .first-accordion--stack .first-acc__body {
    padding: 2.4rem 3.2rem 3.2rem;
    background: #fff;
  }

  .first-accordion--pc-heading .first-acc {
    margin: 0 0 4rem;
  }

  .first-accordion--pc-heading .first-acc__toggle {
    display: none;
  }

  .first-accordion--pc-heading .first-acc__details:not([open]) > .first-acc__heading,
  .first-accordion--pc-heading .first-acc__details:not([open]) > .first-acc__body {
    display: block;
  }

  .first-accordion--pc-heading .first-acc__heading {
    display: block;
    position: relative;
    margin: 0 0 3.2rem;
    padding-top: 1.6rem;
    line-height: 1.2;
  }

  .first-accordion--pc-heading .first-acc__en {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    margin-bottom: 0;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #e6dcc4;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }

  .first-accordion--pc-heading .first-acc__ja {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0.8rem 0 0;
    font-size: 4rem;
    line-height: 1.5;
    color: var(--color-txt);
  }

  .first-accordion--pc-heading .first-acc__body,
  .first-accordion--pc-heading.first-accordion--stack .first-acc__body {
    padding: 0;
    background: transparent;
  }
}

.patient-lead {
  margin: 0 0 3.2rem;
}

.patient-lead__banner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0 0 2.4rem;
  padding: 1.8rem 2rem;
  background: var(--color-theme-second-light);
  color: var(--color-theme-second);
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.patient-lead__banner .fa-envelope-open-text {
  flex-shrink: 0;
  font-size: 2.4rem;
  color: var(--color-theme);
}

.first-accordion--patient .first-acc__body {
  padding: 2.4rem 2rem 3.2rem;
}

.first-accordion--patient .first-acc__body .link-pills {
  margin-top: 2rem;
}

.first-accordion--patient .first-acc__body .page-notice {
  margin-top: 2.4rem;
}

@media only screen and (min-width: 1025px) {
  .first-accordion--patient {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.4rem;
    margin-top: 4rem;
  }

  .first-accordion--patient .first-acc {
    flex: 0 0 calc((100% - 4.8rem) / 3);
    margin: 0;
  }

  .first-accordion--patient .first-acc__toggle {
    display: flex;
  }

  .first-accordion--patient .first-acc__heading {
    display: none;
  }

  .first-accordion--patient .first-acc__details {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
  }

  .first-accordion--patient .first-acc__body,
  .first-accordion--patient.first-accordion--stack .first-acc__body {
    flex: 1;
    padding: 2.4rem 2rem 3.2rem;
    background: #fff;
  }
}

.price-josei-more {
  margin: 2.8rem 0 0;
  text-align: center;
}

.price-josei-more a {
  color: var(--color-theme-second);
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

.visit-flow {
  display: grid;
  gap: 3.2rem;
}

.visit-flow__item {
  min-width: 0;
}

.visit-flow__media {
  position: relative;
  margin: 0 0 1.6rem;
  overflow: hidden;
  border-radius: 0.4rem;
  background: #f3f3f3;
}

.visit-flow__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.visit-flow__badge {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.8rem;
  height: 8.8rem;
  padding: 0.6rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-theme) 90%, transparent);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.visit-flow__title {
  margin: 0 0 1.2rem;
  padding: 0 0 1rem;
  border-bottom: 1px dotted rgba(110, 65, 24, 0.45);
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-theme-second);
}

.visit-flow__text {
  margin: 0 0 1.6rem;
}

.visit-flow__text p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

.visit-flow__text p + p {
  margin-top: 0.6rem;
}

.visit-flow__fee-title {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-theme-second);
}

.visit-flow__fee-list {
  margin: 0;
}

.visit-flow__fee-list > div {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1.2rem;
}

.visit-flow__fee-list > div + div {
  margin-top: 0.4rem;
}

.visit-flow__fee-list dt,
.visit-flow__fee-list dd {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

.visit-flow__fee-list dt {
  flex: 0 0 auto;
  min-width: 9em;
}

.visit-flow__fee-list dd {
  flex: 1 1 auto;
  min-width: 0;
}

.visit-flow__body {
  min-width: 0;
}

@media only screen and (min-width: 1025px) {
  .visit-flow {
    gap: 5.6rem;
  }

  .visit-flow__item {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 4rem;
  }

  .visit-flow__item + .visit-flow__item {
    padding-top: 4.8rem;
    border-top: 1px solid rgba(110, 65, 24, 0.18);
  }

  .visit-flow__media {
    flex: 0 0 32rem;
    width: 32rem;
    max-width: 32rem;
    margin: 0;
  }

  .visit-flow__body {
    flex: 1 1 auto;
    min-width: 0;
  }

  .visit-flow__title {
    font-size: 2.4rem;
  }
}

.first-subhead {
  margin: 2.8rem 0 1.2rem;
  padding: 0 0 1rem;
  border-bottom: 1px dotted rgba(110, 65, 24, 0.45);
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-theme-second);
}

.first-acc__body > .first-subhead:first-child {
  margin-top: 0;
}

.first-subhead--mark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.first-subhead--mark::before {
  content: "";
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--color-theme-second);
}

.first-band {
  margin: 2rem 0 1.2rem;
  padding: 1.2rem 1.6rem;
  background: var(--color-theme-second-light);
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-theme-second);
}

.first-ph {
  margin: 1.6rem 0 2.4rem;
  padding: 1.6rem;
  text-align: center;
}

.first-ph img {
  margin-inline: auto;
}
.first-info {
  margin: 1.6rem 0 2rem;
  padding: 1.6rem 1.8rem;
  background: var(--color-theme-second-light);
}

.first-info > .first-subhead {
  margin-top: 0;
}

.first-info > p:last-child {
  margin-bottom: 0;
}

.first-dl {
  margin: 0;
}

.first-dl > div {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1.2rem;
}

.first-dl dt,
.first-dl dd {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

.first-dl dt {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--color-theme-second);
}

.first-dl dd {
  flex: 1 1 auto;
  min-width: 0;
}

@media only screen and (min-width: 1025px) {
  .first-subhead {
    font-size: 2.4rem;
  }
}

/* 汎用：チェック付きリスト（持ち物・注意書きなど） */
.list-check {
  list-style: none;
  margin: 1.4rem 0 2rem;
  padding: 1.8rem 2.2rem;
  border: 1px solid rgba(121, 183, 145, 0.4);
  border-radius: 1.2rem;
}

.list-check > li {
  display: flex;
  align-items: flex-start;
  gap: 0.85em;
  margin: 0;
  padding: 1.1rem 0;
  border-bottom: 1px dashed rgba(121, 183, 145, 0.5);
  line-height: 1.7;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-txt);
}

.list-check > li:first-child {
  padding-top: 0;
}

.list-check > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.list-check > li::before {
  content: "\f058";
  flex: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.55em;
  line-height: 1.45;
  color: var(--color-theme);
}

.exam-course-groups {
  display: grid;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.exam-course-group h3 {
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
  color: var(--color-theme-second, #5a8f6e);
}

.exam-course-lead {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
}

.exam-course-cards {
  display: grid;
  gap: 1.2rem;
  margin: 0 0 2.4rem;
}

@media (min-width: 768px) {
  .exam-course-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-course-cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.exam-course-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--color-theme-second) 40%, #fff);
  background: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
}

.exam-course-card h4 {
  margin: 0;
  padding: 1.6rem 1.6rem 0.8rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-theme-second);
}

.exam-course-card p:not(.exam-course-price) {
  margin: 0;
  padding: 0 1.6rem 1.2rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-txt);
}

.exam-course-price {
  margin: 0;
  padding: 0.8rem 1.6rem 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-theme);
  line-height: 1.2;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  margin: 1.6rem 0 2.4rem;
  -webkit-overflow-scrolling: touch;
}

.exam-compare-table,
.exam-fee-table {
  width: 100%;
  min-width: 64rem;
  border-collapse: collapse;
  font-size: 1.6rem;
}

.exam-fee-table {
  min-width: 48rem;
}

.exam-compare-table th,
.exam-compare-table td,
.exam-fee-table th,
.exam-fee-table td {
  border: 1px solid rgba(121, 183, 145, 0.3);
  padding: 1.1rem 1.2rem;
  vertical-align: top;
}

.exam-compare-table thead th,
.exam-fee-table thead th {
  background: var(--color-theme-second-light, #f3f8f4);
  color: var(--color-theme-second, #5a8f6e);
  font-weight: 700;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.45;
}

.exam-compare-table tbody th,
.exam-fee-table tbody th {
  background: rgba(121, 183, 145, 0.12);
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  font-size: 1.6rem;
}

.exam-compare-table tbody th span,
.exam-fee-table tbody th span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  color: #666;
}

.exam-compare-table td {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.exam-fee-table td:nth-child(2) {
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
}

.exam-fee-table--matrix td {
  text-align: center;
  font-weight: 400;
  white-space: normal;
}

.exam-fee-table--matrix tbody tr:first-child td {
  font-weight: 700;
  white-space: nowrap;
}

.exam-note {
  margin: 1.2rem 0 2rem;
  font-size: 1.4rem;
  line-height: 1.7;
}

.first-acc__body .disc-list {
  margin: 0 0 2rem 2.4rem;
}

.first-acc__body .disc-list > li {
  margin: 0 0 1.6rem;
  line-height: 1.8;
}

.first-acc__body .disc-list > li:last-child {
  margin-bottom: 0;
}

.first-acc__body .disc-list > li strong {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.first-acc__body .disc-list .bt03--sm {
  display: flex;
  width: fit-content;
  margin-top: 1rem;
}

.first-acc__body > .bt03--sm {
  display: flex;
  width: fit-content;
  margin-top: 1rem;
}

.art-step {
  margin: 0 0 2rem;
}

.art-step__heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  color: var(--color-theme-second);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

.art-step__label {
  flex-shrink: 0;
}

.art-step__line {
  flex: 1 1 auto;
  min-width: 2.4rem;
  height: 0;
  border-bottom: 1px dotted rgba(110, 65, 24, 0.45);
}

.art-step__body {
  padding: 1.2rem 0 0.4rem;
}

.art-step__body > :first-child {
  margin-top: 0;
}

.art-step__body .bt03--sm {
  display: flex;
  width: fit-content;
  margin-top: 1rem;
}

/* クリニックの特徴：円形写真＋タイトル＋テキスト（3カラム） */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  margin: 3.2rem 0 4rem;
}

.feature-card {
  display: grid;
  gap: 1.6rem;
  align-items: start;
  justify-items: center;
  padding: 0;
  background: transparent;
  text-align: left;
}

.feature-card__image {
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1.2rem;
}

.feature-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-card__content {
  min-width: 0;
  width: 100%;
}

.feature-card__title {
  margin: 0 0 1rem;
  font-family: "LINE Seed JP", "Noto Sans JP", sans-serif;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 700;
  color: var(--color-theme);
  line-height: 1.4;
  text-align: center;
}

.feature-card__content p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

.feature-card__content p + p {
  margin-top: 0.8rem;
}

@media (min-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem 2.8rem;
    align-items: start;
  }
}

.feature-more {
  list-style: none;
  margin: 0 0 4rem;
  padding: 0;
  display: grid;
  gap: 2rem;
}

.page-body .feature-more {
  padding-left: 0;
}

.feature-more > li {
  margin: 0;
  padding: 1.6rem 0 0;
  border-top: 1px dashed rgba(110, 65, 24, 0.28);
}

.feature-more > li:first-child {
  padding-top: 0;
  border-top: 0;
}

.feature-more strong {
  display: block;
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-theme-second);
}

.feature-more p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

@media (min-width: 768px) {
  .feature-more {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3.2rem;
    row-gap: 2.4rem;
  }

  .feature-more > li {
    padding-top: 0;
    border-top: 0;
    padding-left: 1.2rem;
    border-left: 3px solid var(--color-theme);
  }
}

.philosophy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.philosophy-list li {
  padding: 1rem 2rem;
  background: var(--color-theme-second-light);
  border-radius: 1rem;
  list-style: disc;
  list-style-position: inside;
  font-size: 1.6rem;
}

.philosophy-list li::marker {
  color: var(--color-theme-second, #5a8f6e);
  font-size: 2.4rem;
  font-weight: 700;
}
.exam-belongings {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.exam-belongings li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.4em;
  font-size: 1.6rem;
  line-height: 1.7;
}

.exam-belongings li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--color-theme-second, #5a8f6e);
  font-size: 1.1rem;
}

/* タイムラプス胚発育ステージ画像テーブル */
.timelapse-stages {
  width: 100%;
  margin: 3.2rem 0;
  border-collapse: collapse;
}

.timelapse-stages tbody:not(.pc) {
  display: table-row-group;
}

.timelapse-stages tbody.pc {
  display: none;
}

@media (min-width: 768px) {
  .timelapse-stages tbody:not(.pc) {
    display: none;
  }

  .timelapse-stages tbody.pc {
    display: table-row-group;
  }
}

.timelapse-stages th,
.timelapse-stages td {
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}

.timelapse-stages img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 治療実績：表組み */
.result-table {
  width: 100%;
  max-width: 72rem;
  margin: 2.4rem auto 3.2rem;
  border-collapse: collapse;
  font-size: 1.6rem;
}

.result-table--transfer {
  min-width: 56rem;
  max-width: none;
}

.result-table th,
.result-table td {
  border: 0;
  border-bottom: 1px solid #d7e2da;
  padding: 1.6rem 1.2rem;
  text-align: center;
  vertical-align: middle;
  background: #fff;
  color: var(--color-txt);
  font-weight: 400;
}

.result-table thead th {
  background: color-mix(in srgb, var(--color-theme) 36%, #fff);
  color: var(--color-txt);
  font-weight: 500;
}

.result-table tbody tr:nth-child(even) th,
.result-table tbody tr:nth-child(even) td {
  background: var(--color-theme-second-light);
}

.result-table tbody th {
  font-weight: 500;
  white-space: nowrap;
}

.result-table tbody tr:last-child td,
.result-table tbody tr:last-child th {
  font-weight: 700;
}

/* スケジュール：ステップアップ */
.schedule-stepup {
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.6rem;
}

.schedule-stepup > li {
  margin: 0;
  padding: 1.6rem 1.8rem;
  background: var(--color-theme-second-light, #f3f8f4);
  border-left: 4px solid var(--color-theme-second, #5a8f6e);
}

.schedule-stepup-title {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-theme-second, #5a8f6e);
}

.schedule-stepup > li p {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
}

.schedule-stepup > li .btn-2 {
  margin: 0.8rem 0 0;
}

.schedule-month-table tbody th {
  white-space: normal;
}

@media (min-width: 768px) {
  .schedule-month-table {
    min-width: 52rem;
  }
}

.result .section-subtitle {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.result .section-subtitle:first-of-type {
  margin-top: 3.2rem;
}

.result img.f_clar {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 2.4rem;
}

.result-kpi-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin: 2.4rem 0 3.2rem;
}

.first-subhead + .result-kpi-grid {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .first-subhead + .result-kpi-grid {
    margin-top: 3.2rem;
  }
}

.result .first-subhead {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.result .first-acc__body > .first-subhead:first-child {
  margin-top: 0;
}

.result-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex: 0 0 calc((100% - 1.6rem) / 2);
  min-height: 15.2rem;
  margin: 0;
  padding: 2rem 1.2rem 2.4rem;
  border: 0.2rem solid #ca907e;
  border-radius: 1.2rem;
  background: #fff;
  text-align: center;
}

.result-kpi__label {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-theme-second);
}

.page-body .result-kpi__value {
  margin: 1.2rem 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-accent);
}

.result-kpi__unit {
  margin-left: 0.2em;
  font-size: 1.6rem;
  font-weight: 600;
}

.result-media {
  display: grid;
  gap: 1.6rem;
  margin: 0 0 2.4rem;
  align-items: center;
}

.result-chart {
  margin: 0;
}

.result-chart img {
  display: block;
  width: 100%;
  height: auto;
}

.result-chart--bar {
  display: grid;
  gap: 1.6rem;
  margin: 0 0 1.6rem;
}

.result-chart--pie {
  width: min(100%, 28rem);
  margin-inline: auto;
  aspect-ratio: 1;
}

.result-chart--pie img,
.result-chart__ph {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.result-chart__ph {
  box-sizing: border-box;
  padding: 2rem;
  border: 1.6rem solid var(--color-theme-light);
  background: #fff;
  color: var(--color-theme-second);
  font-size: 1.4rem;
  text-align: center;
}

.first-accordion--stack.result .first-acc__body {
  padding: 2.4rem 2rem 3.2rem;
}

.result .center-img {
  display: block;
  margin: 3.2rem auto;
}

.result .center-img img {
  display: block;
  max-width: 100%;
  height: auto;
}

.result p.center {
  margin: 1.6rem 0 3.2rem;
}

.result .first-acc__body > p:first-child {
  margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
  .result-kpi-grid {
    gap: 2.4rem;
    margin: 3.2rem 0 4rem;
  }

  .result-kpi {
    flex-basis: calc((100% - 4.8rem) / 3);
    min-height: 18.4rem;
    padding: 2.4rem 1.6rem 2.8rem;
  }

  .page-body .result-kpi__value {
    font-size: 3.2rem;
  }

  .result-media {
    grid-template-columns: minmax(20rem, 28rem) minmax(0, 1fr);
    gap: 3.2rem;
    margin-bottom: 3.2rem;
  }

  .result-chart--pie {
    width: 28rem;
    margin-inline: 0;
  }

  .result-chart--bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .result-kpi-grid {
    gap: 2.8rem;
    margin: 3.2rem 0 4.8rem;
  }

  .result-kpi {
    flex-basis: calc((100% - 5.6rem) / 3);
    min-height: 22rem;
    padding: 2.8rem 2rem 3.2rem;
  }

  .result-kpi__label {
    font-size: 2rem;
    line-height: 1.5;
  }

  .page-body .result-kpi__value {
    margin-top: 1.6rem;
    font-size: 5.2rem;
  }

  .result-kpi__unit {
    font-size: 2.2rem;
  }

  .result .center-img {
    margin: 4rem auto;
  }

  .result p.center {
    margin: 2rem 0 4rem;
  }
}

@media only screen and (min-width: 1025px) {
  .result .first-acc {
    margin-bottom: 1.6rem;
  }

  .first-accordion--stack.result .first-acc__body {
    padding: 2.4rem 3.2rem 3.2rem;
  }
}

/* ===== セミナーページ ===== */
.seminar-lead {
  margin: 0 0 3.2rem;
}

.seminar-lead p {
  font-size: 1.7rem;
  line-height: 2.05;
}

.seminar-block {
  margin-bottom: 4rem;
}

.seminar-target {
  display: grid;
  gap: 2.4rem;
  align-items: start;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .seminar-target {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 3.2rem;
  }
}

.seminar-target__body .list-check {
  margin-top: 0;
}

.seminar-target__photo {
  margin: 0;
}

.seminar-target__photo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0.8rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.seminar-overview__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.6rem;
  margin: 2rem 0 0;
}

.seminar-overview__table th,
.seminar-overview__table td {
  border: 1px solid rgba(121, 183, 145, 0.3);
  padding: 1.2rem 1.4rem;
  vertical-align: middle;
  text-align: left;
}

.seminar-overview__table th {
  width: 28%;
  background: var(--color-theme-second-light);
  color: var(--color-theme-second);
  font-weight: 700;
  word-break: keep-all;
}

.seminar-overview__table td {
  width: 72%;
  white-space: normal;
  line-height: 1.7;
  color: var(--color-txt);
}

.seminar-reserve {
  display: grid;
  gap: 2rem;
  margin: 2rem 0 2.4rem;
}

@media (min-width: 768px) {
  .seminar-reserve {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
  }
}

.seminar-reserve__card {
  padding: 2.4rem;
  background: var(--color-theme-second-light);
  border-radius: 0.8rem;
}

.seminar-reserve__card .section-subtitle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0;
  margin-bottom: 1.6rem;
}

.seminar-reserve__card .section-subtitle > i {
  color: var(--color-theme);
  font-size: 0.9em;
}

.seminar-reserve__meta {
  display: grid;
  gap: 1.2rem;
  margin: 0 0 1.6rem;
  padding: 1.4rem 1.6rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0.6rem;
}

.seminar-reserve__meta dt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-theme-second);
}

.seminar-reserve__meta dt i {
  width: 1.2em;
  text-align: center;
  color: var(--color-theme);
}

.seminar-reserve__meta dd {
  margin: 0.35rem 0 0;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-txt);
}

.seminar-reserve__meta dd a {
  color: var(--color-theme-second);
  text-decoration: none;
}

.seminar-reserve__meta dd a:hover {
  text-decoration: underline;
}

.seminar-reserve__card .bt01 {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.seminar-reserve__card p:last-child {
  margin-bottom: 0;
}

.reserve-notes {
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}

.page-body .reserve-notes {
  padding-left: 0;
}

.reserve-notes > li {
  position: relative;
  margin: 0;
  padding-left: 1.4em;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--color-txt);
}

.reserve-notes > li + li {
  margin-top: 1rem;
}

.reserve-notes > li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-theme-second);
  font-weight: 700;
}

.reserve-notes strong {
  color: var(--color-theme-second);
}

/* ご予約ガイド（共通：中央寄せ） */
.reserve-guide {
  margin: 2.4rem 0;
  padding: 2rem 1.2rem 1.6rem;
  text-align: center;
  background-color: var(--color-theme-second-light);
  box-sizing: border-box;
}

.reserve-guide__inner {
  display: grid;
  gap: 2.4rem;
  width: 100%;
  margin: 0 auto;
}

.reserve-guide__block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reserve-guide__block + .reserve-guide__block {
  margin-top: 0;
}

.reserve-guide__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 1rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-theme-second);
}

.reserve-guide__heading::before,
.reserve-guide__heading::after {
  content: "";
  width: clamp(1.2rem, 3vw, 3.2rem);
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.reserve-guide__block > p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.85;
  color: var(--color-txt);
}

.reserve-guide__block > p + p {
  margin-top: 1rem;
}

.reserve-guide__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
  /* hover の translateY(-5px) が overflow で切れないよう余白を確保 */
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.reserve-guide__closing {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

.reserve-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 1.2rem 1rem;
  background: var(--color-theme);
  color: #fff !important;
  text-decoration: none !important;
  text-align: left;
  white-space: normal;
  box-sizing: border-box;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.reserve-cta-btn > .fa-phone,
.reserve-cta-btn > .fa-laptop,
.reserve-cta-btn > .fa-envelope {
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
}

.reserve-cta-btn__text {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  flex: 1 1 auto;
}

.reserve-cta-btn__label {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  opacity: 0.95;
  white-space: normal;
}

.reserve-cta-btn__main {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  white-space: normal;
}

.reserve-cta-btn__arrow {
  flex-shrink: 0;
  margin-left: 0.2rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

.reserve-cta-btn:hover {
  transform: translateY(-5px);
  filter: brightness(1.03);
}

.reserve-cta-btn[href^="tel"] .reserve-cta-btn__main {
  font-size: 2rem;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .reserve-guide {
    margin: 3.2rem 0;
    padding: 2.4rem 0 1.6rem;
  }

  .reserve-guide__inner {
    gap: 4rem;
  }

  .reserve-guide__heading {
    gap: 1.2rem;
    margin: 0 0 1.6rem;
  }

  .reserve-guide__block > p {
    font-size: 1.6rem;
    line-height: 1.9;
  }

  .reserve-guide__block > p + p {
    margin-top: 1.2rem;
  }

  .reserve-guide__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
  }

  .reserve-guide__closing {
    font-size: 1.6rem;
    line-height: 1.9;
  }

  .reserve-cta-btn {
    flex: 0 1 auto;
    width: auto;
    min-width: 340px;
    max-width: none;
    gap: 1.2rem;
    padding: 1.4rem 2rem 1.4rem 2.2rem;
    white-space: nowrap;
  }

  .reserve-cta-btn > .fa-phone,
  .reserve-cta-btn > .fa-laptop,
  .reserve-cta-btn > .fa-envelope {
    font-size: 2.4rem;
  }

  .reserve-cta-btn__text {
    flex: 0 1 auto;
  }

  .reserve-cta-btn__label {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .reserve-cta-btn__main {
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    line-height: 1.25;
    white-space: nowrap;
  }

  .reserve-cta-btn__arrow {
    font-size: 1.2rem;
  }

  .reserve-cta-btn[href^="tel"] .reserve-cta-btn__main {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
  }
}

/* FAQ */
.faq-lead {
  margin: 0 0 3.2rem;
}

.faq-lead .reserve-guide__actions {
  margin: 2.4rem 0 3.2rem;
}

.faq-lead p.center + p.center {
  margin-top: 1.6rem;
}

.faq-page__nav {
  margin: 0 0 1.6rem;
}

.faq-page .first-acc {
  scroll-margin-top: calc(var(--header-height-initial, 14rem) + 1.6rem);
}

.faq-page .first-acc + .first-acc {
  margin-top: 0;
}

.faq-page .first-acc__body dl.qa {
  margin-bottom: 2rem;
}

.faq-page .first-acc__body dl.qa:last-child {
  margin-bottom: 0;
}

.faq-page .link-pills:last-child {
  margin-top: 3.2rem;
}

/* 診療時間・アクセスページ */
.access-page__clinic {
  display: grid;
  gap: 2.4rem;
  margin: 0 0 3.2rem;
}

.access-page__address p {
  margin: 0 0 1.2rem;
  font-size: 1.7rem;
  line-height: 1.9;
}

.access-page__address p:last-child {
  margin-bottom: 0;
}

.access-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  align-items: center;
}

.access-page__hours {
  margin: 0 0 3.2rem;
  padding: 2.4rem 2rem;
  border: 1px solid rgba(121, 183, 145, 0.45);
  border-radius: 1.6rem;
  background: #fff;
  overflow-x: auto;
}

.access-page__hours .clinic-hours-table {
  width: 100%;
  min-width: 52rem;
  margin: 0;
}

.access-page__note {
  margin: 1.6rem 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--color-txt) 78%, #fff);
}

.access-page__ways {
  display: grid;
  gap: 2rem;
  margin: 0 0 3.2rem;
}

.access-page__ways .info-panel {
  margin: 0;
}

.access-page__map {
  margin: 0 0 3.2rem;
  border-radius: 1.6rem;
  overflow: hidden;
}

.access-page__map iframe {
  display: block;
  width: 100%;
  min-height: 36rem;
}

@media (min-width: 768px) {
  .access-page__clinic {
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 42rem);
    align-items: start;
    gap: 3.2rem;
  }

  .access-page__ways {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem;
  }

  .access-page__hours {
    padding: 3.2rem;
  }
}

.first-acc__body > .point-header:first-child {
  margin-top: 0;
}

.first-acc__body .point-header {
  margin-bottom: 3.2rem;
}

.about-reason-rows {
  display: grid;
  gap: 3.2rem;
  margin: 0 0 3.2rem;
}

.about-reason-row {
  display: grid;
  gap: 2rem;
  align-items: start;
  min-width: 0;
}

.about-reason-row__media {
  margin: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #f3f3f3;
}

.about-reason-row__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.about-reason-row__body {
  min-width: 0;
}

.about-reason-row__title {
  margin: 0 0 1.2rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-theme);
}

.about-reason-row p {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  line-height: 1.8;
}

.about-reason-row p:last-child {
  margin-bottom: 0;
}

.about-reason-row__sub {
  margin: 1.6rem 0 0.8rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-theme-second);
}

.about-reason-row__sub:first-of-type {
  margin-top: 0;
}

.about-reason-row a {
  color: inherit;
  text-decoration: underline;
}

.about-reason-row__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.6rem;
  line-height: 1.8;
}

.about-reason-row__list li + li {
  margin-top: 0.4rem;
}

@media (min-width: 768px) {
  .about-reason-rows {
    gap: 4rem;
  }

  .about-reason-row {
    grid-template-columns: minmax(22rem, 36rem) minmax(0, 1fr);
    gap: clamp(2.4rem, 4vw, 4.8rem);
    align-items: start;
  }

  .about-reason-row__title {
    font-size: 2.4rem;
  }
}

.facility-guide {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-theme-second);
  font-size: 1.6rem;
  line-height: 1.8;
}

.facility-guide > li {
  margin: 0 0 1.2rem;
}

.facility-guide > li:last-child {
  margin-bottom: 0;
}

.facility-guide__name {
  font-weight: 700;
}

.facility-guide ul {
  margin: 0.2rem 0 0 1.6em;
  padding: 0;
  list-style: none;
}

.doctor-intro-list {
  display: grid;
  gap: 2.4rem;
}

.doctor-intro {
  position: relative;
  min-width: 0;
  padding: 1.2rem 0;
}

.doctor-intro__inner {
  position: relative;
  z-index: 1;
}

.doctor-intro--photo .doctor-intro__inner {
  display: grid;
  grid-template-columns: 16.8rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.doctor-intro__photo {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  width: 16.8rem;
  height: 16.8rem;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
}

.doctor-intro__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background: var(--color-theme-second-light);
}

.doctor-intro__photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
}

.doctor-intro__role {
  margin: 0 0 0.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-theme-second);
}

.doctor-intro__name {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-theme-second);
}

.page-body .doctor-intro__note {
  margin: 0.8rem 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

.doctor-intro__panel {
  margin: 1.2rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px dotted rgba(110, 65, 24, 0.45);
}

.doctor-intro__row {
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  gap: 0.8rem 1.6rem;
  align-items: start;
}

.doctor-intro__row + .doctor-intro__row {
  margin-top: 1.6rem;
}

.doctor-intro__label {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-theme-second);
}

.doctor-intro__content > p {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-txt);
}

.doctor-intro__content > p:last-child {
  margin-bottom: 0;
}

.doctor-intro__content .profile-career > li {
  padding: 0.8rem 0;
}

.doctor-intro__content .profile-career > li:first-child {
  padding-top: 0;
}

.doctor-intro__blog {
  margin: 1.2rem 0 0;
}

.doctor-intro__blog a {
  color: var(--color-theme-second);
  font-size: 1.6rem;
  line-height: 1.7;
  text-decoration: none;
}

.doctor-intro__blog a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .doctor-intro--photo .doctor-intro__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.6rem;
  }

  .doctor-intro__photo {
    width: 22rem;
    height: 22rem;
  }

  .doctor-intro__body {
    width: 100%;
  }

  .doctor-intro__role,
  .doctor-intro__name {
    text-align: center;
  }

  .doctor-intro__note {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .doctor-intro--photo .doctor-intro__inner {
    grid-template-columns: 24rem minmax(0, 1fr);
    gap: 3.2rem;
  }

  .doctor-intro__photo {
    width: 24rem;
    height: 24rem;
  }
}

@media (min-width: 1024px) {
  .doctor-intro--photo .doctor-intro__inner {
    grid-template-columns: 26.4rem minmax(0, 1fr);
    gap: 4rem;
  }

  .doctor-intro__photo {
    width: 26.4rem;
    height: 26.4rem;
  }
}
