@charset "UTF-8";

/* ユーティリティ */
.mt40 { margin-top: 60px !important; }

/* * {
  outline: 2px solid blue;
} */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

/* body 0315修正 */
body {
  margin: 0 auto;
  background-color: #fff;
  color: #333;
  min-width: auto;
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Yu Gothic Medium",
    "Meiryo",
    sans-serif;
  overflow-x: hidden;
  font-size: 1rem;
}

/* リンク設定 */
a {
  color: inherit;
  text-decoration: none;
  transition-duration: 0.5s;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
}

/* PCでは表示しない（改行しない） */
.sp-br {
  display: none;
}

/* モバイルだけ改行させる */
@media (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

/* 下層メイン見出し */
.info-header {
  width: 100%;
  height: 300px;
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  .info-header {
    height: 200px;
  }
}

/* 画像を暗くするためのバックグラウンド設定 */
.info-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-bg-image, none) center/cover no-repeat;
  z-index: -1;
}

/* 背景画像にグレーオーバーレイ */
.info-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 120, 120, 0.50);
  z-index: 0;
}

/* テキスト部分 */
.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  letter-spacing: 2px;
  /* text-shadow: 0px 0px 7px rgb(0 0 0 / 38%); */
  text-align: center;
  z-index: 2;
}

.main-header p {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 4rem;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
}

.main-header span {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  top: 100%;
  margin-top: 16px;
  white-space: nowrap;
}

.headerNav {
  margin-top: 0;
}

@media (max-width: 768px) {
  .main-header p {
    font-size: 2.5rem;
  }
	.main-header {
		margin-top: 20px;
	}
  .main-header span {
    font-size: 0.875rem;
  }
}

/* 背景画像 */
/* カスタム投稿タイプ */
.custom-page::before {
  background-image: url(../images/bg-custom-page--pc.webp);
}

@media (max-width: 768px) {
  .custom-page::before {
    background-image: url(../images/bg-custom-page--sp.webp);
  }
}

/* ライフメディカルグループのお約束 */
.page-promise::before {
  background-image: url(../images/bg-PROMISE--pc.webp);
}

@media (max-width: 768px) {
  .page-promise::before {
    background-image: url(../images/bg-PROMISE--pc.webp);
  }
}

/* スタッフ・院内紹介 */
.page-team::before {
  background-image: url(../images/bg-team--pc.webp);
}

@media (max-width: 768px) {
  .page-team::before {
    background-image: url(../images/bg-team--pc.webp);
  }
}

/* 求人に関するご案内 */
.page-recruit::before {
  background-image: url(../images/bg-recruit--pc.webp);
}

@media (max-width: 768px) {
  .page-recruit::before {
    background-image: url(../images/bg-recruit--pc.webp);
  }
}

/* アクセス・ご予約方法 */
.page-access::before {
  background-image: url(../images/bg-accsess--pc.webp);
}

@media (max-width: 768px) {
  .page-access::before {
    background-image: url(../images/bg-accsess--pc.webp);
  }
}

/* 診療案内 */
.page-guide::before {
  background-image: url(../images/bg-guide--pc.webp);
}

@media (max-width: 768px) {
  .page-guide::before {
    background-image: url(../images/bg-guide--pc.webp);
  }
}

/* 診療症状別で治療法を探す案内 */
.page-case::before {
  background-image: url(../images/bg-guide--pc.webp);
}

@media (max-width: 768px) {
  .page-case::before {
    background-image: url(../images/bg-guide--pc.webp);
  }
}

/* 健康な歯を保ちたい */
.page-kenkou::before {
  background-image: url(../images/bg-kenkou--pc.webp);
}

@media (max-width: 768px) {
  .page-kenkou::before {
    background-image: url(../images/bg-kenkou--pc.webp);
  }
}

/* サイトマップ */
.page-site-map::before {
  background-image: url(../images/bg-site-map--pc.webp);
}

@media (max-width: 768px) {
  .page-site-map::before {
    background-image: url(../images/bg-site-map--pc.webp);
  }
}

/* ライフメディカルグループのご紹介 */
.page-clinic::before {
  background-image: url(../images/bg-clinic--pc.webp);
}

@media (max-width: 768px) {
  .page-clinic::before {
    background-image: url(../images/bg-clinic--pc.webp);
  }
}

/* 4つのコンセプト */
.page-concept::before {
  background-image: url(../images/bg-concept--pc.webp);
}

@media (max-width: 768px) {
  .page-concept::before {
    background-image: url(../images/bg-concept--pc.webp);
  }
}

/* 安全な日帰り全身麻酔施設ライフメディカル歯科口腔外科NORTH八潮 */
.page-hanare::before {
  background-image: url(../images/bg-hanare--pc.webp);
}

@media (max-width: 768px) {
  .page-hanare::before {
    background-image: url(../images/bg-hanare--pc.webp);
  }
}

/* 管理型歯科医師臨床研修プログラム */
.page-kensyu::before {
  background-image: url(../images/bg-kensyu--pc.webp);
}

@media (max-width: 768px) {
  .page-kensyu::before {
    background-image: url(../images/bg-kensyu--pc.webp);
  }
}

/* 募集要項 */
.page-bosyu::before {
  background-image: url(../images/bg-team--pc.webp);
}

@media (max-width: 768px) {
  .page-bosyu::before {
    background-image: url(../images/bg-team--pc.webp);
  }
}

/* 衛生管理体制 */
.page-kansen_yobou::before {
  background-image: url(../images/bg-kansen_yobou--pc.webp);
}

@media (max-width: 768px) {
  .page-kansen_yobou::before {
    background-image: url(../images/bg-kansen_yobou--pc.webp);
  }
}

/* 先輩の声・福利厚生 */
.page-interview::before {
  background-image: url(../images/bg-interview--pc.webp);
}

@media (max-width: 768px) {
  .page-interview::before {
    background-image: url(../images/bg-interview--pc.webp);
  }
}

/* 求職者の方へ */
.page-message::before {
  background-image: url(../images/bg-message--pc.webp);
}

@media (max-width: 768px) {
  .page-message::before {
    background-image: url(../images/bg-message--pc.webp);
  }
}

/* 募集要項 */
.page-boshu::before {
  background-image: url(../images/bg-job--pc.webp);
}

@media (max-width: 768px) {
  .page-boshu::before {
    background-image: url(../images/bg-job--sp.webp);
  }
}

/* インプラント */
.page-implant::before {
  background-image: url(../images/bg-implant--pc.webp);
}

@media (max-width: 768px) {
  .page-implant::before {
    background-image: url(../images/bg-implant--pc.webp);
  }
}

/* 小児歯科 */
.page-pediatric::before {
  background-image: url(../images/bg-pediatric--pc.webp);
}

@media (max-width: 768px) {
  .page-pediatric::before {
    background-image: url(../images/bg-pediatric--pc.webp);
  }
}

/* 自分に合う入れ歯がほしい */
.page-au_ireba::before {
  background-image: url(../images/bg-au_ireba--pc.webp);
}

@media (max-width: 768px) {
  .page-au_ireba::before {
    background-image: url(../images/bg-au_ireba--pc.webp);
  }
}








/* 矯正歯科 */
.page-orth::before {
  background-image: url(../images/bg-orth--pc.webp);
}

@media (max-width: 768px) {
  .page-orth::before {
    background-image: url(../images/bg-orth--pc.webp);
  }
}

/* 料金一覧 */
.page-price::before {
  background-image: url(../images/bg-price--pc.webp);
}

@media (max-width: 768px) {
  .page-price::before {
    background-image: url(../images/bg-price--sp.webp);
  }
}

/* 虫歯治療 */
.page-dentistry::before {
  background-image: url(../images/bg-dentistry--pc.webp);
}

@media (max-width: 768px) {
  .page-dentistry::before {
    background-image: url(../images/bg-dentistry--pc.webp);
  }
}

/* 歯周病治療 */
.page-perio::before {
  background-image: url(../images/bg-perio--pc.webp);
}

@media (max-width: 768px) {
  .page-perio::before {
    background-image: url(../images/bg-perio--pc.webp);
  }
}

/* 入れ歯治療 */
.page-denture::before {
  background-image: url(../images/bg-denture--pc.webp);
}

@media (max-width: 768px) {
  .page-denture::before {
    background-image: url(../images/bg-denture--pc.webp);
  }
}

/* 根管治療 */
.page-root::before {
  background-image: url(../images/bg-root--pc.webp);
}

@media (max-width: 768px) {
  .page-root::before {
    background-image: url(../images/bg-root--pc.webp);
  }
}

/* 口腔外科 */
.page-dentalsurgery::before {
  background-image: url(../images/bg-dentalsurgery--pc.webp);
}

@media (max-width: 768px) {
  .page-dentalsurgery::before {
    background-image: url(../images/bg-dentalsurgery--pc.webp);
  }
}

/* 予防歯科 */
.page-preventive::before {
  background-image: url(../images/bg-preventive--pc.webp);
}

@media (max-width: 768px) {
  .page-preventive::before {
    background-image: url(../images/bg-preventive--pc.webp);
  }
}

/* 訪問歯科 */
.page-houmon::before {
  background-image: url(../images/bg-houmon--pc.webp);
}

@media (max-width: 768px) {
  .page-houmon::before {
    background-image: url(../images/bg-houmon--pc.webp);
  }
}

/* 審美歯科 */
.page-esthe::before {
  background-image: url(../images/bg-esthe--pc.webp);
}

@media (max-width: 768px) {
  .page-esthe::before {
    background-image: url(../images/bg-esthe--pc.webp);
  }
}

/* ホワイトニング */
.page-whitening::before {
  background-image: url(../images/bg-whitening--pc.webp);
}

@media (max-width: 768px) {
  .page-whitening::before {
    background-image: url(../images/bg-whitening--pc.webp);
  }
}

/* デンタルリフレクソロジー */
.page-reflexology::before {
  background-image: url(../images/bg-reflexology--pc.webp);
}

@media (max-width: 768px) {
  .page-reflexology::before {
    background-image: url(../images/bg-reflexology--pc.webp);
  }
}

/* 骨が少ない時のインプラント */
.page-hone_ga_sukunai::before {
  background-image: url(../images/bg-hone_ga_sukunai--pc.webp);
}

@media (max-width: 768px) {
  .page-hone_ga_sukunai::before {
    background-image: url(../images/bg-hone_ga_sukunai--pc.webp);
  }
}

/* 子供の矯正 */
.page-kidskyousei::before {
  background-image: url(../images/bg-kidskyousei--pc.webp);
}

@media (max-width: 768px) {
  .page-kidskyousei::before {
    background-image: url(../images/bg-kidskyousei--pc.webp);
  }
}

/* マウスピース矯正（インビザライン） */
.page-invisalign::before {
  background-image: url(../images/bg-invisalign--pc.webp);
}

@media (max-width: 768px) {
  .page-invisalign::before {
    background-image: url(../images/bg-invisalign--pc.webp);
  }
}

/* 歯がしみる・痛い */
.page-shimiru_itai::before {
  background-image: url(../images/bg-shimiru_itai--pc.webp);
}

@media (max-width: 768px) {
  .page-shimiru_itai::before {
    background-image: url(../images/bg-shimiru_itai--pc.webp);
  }
}

/* 歯がぐらぐらする */
.page-guragura::before {
  background-image: url(../images/bg-guragura--pc.webp);
}

@media (max-width: 768px) {
  .page-guragura::before {
    background-image: url(../images/bg-guragura--pc.webp);
  }
}

/* 詰め物・被せ物がとれた */
.page-tsumemono_kabusemono_toreta::before {
  background-image: url(../images/bg-tsumemono_kabusemono_toreta--pc.webp);
}

@media (max-width: 768px) {
  .page-tsumemono_kabusemono_toreta::before {
    background-image: url(../images/bg-tsumemono_kabusemono_toreta--pc.webp);
  }
}

/* 銀歯を白くしたい */
.page-ginba_shiroku::before {
  background-image: url(../images/bg-ginba_shiroku--pc.webp);
}

@media (max-width: 768px) {
  .page-ginba_shiroku::before {
    background-image: url(../images/bg-ginba_shiroku--pc.webp);
  }
}

/* 歯を失ってしまった */
.page-hawoushinatta::before {
  background-image: url(../images/bg-hawoushinatta--pc.webp);
}

@media (max-width: 768px) {
  .page-hawoushinatta::before {
    background-image: url(../images/bg-hawoushinatta--pc.webp);
  }
}

/* 歯並びやすきっ歯が気になる */
.page-hanarabi::before {
  background-image: url(../images/bg-hanarabi--pc.webp);
}

@media (max-width: 768px) {
  .page-hanarabi::before {
    background-image: url(../images/bg-hanarabi--pc.webp);
  }
}

/* 子どもの歯の治療について知りたい */
.page-kodomonoha::before {
  background-image: url(../images/bg-kodomonoha--pc.webp);
}

@media (max-width: 768px) {
  .page-kodomonoha::before {
    background-image: url(../images/bg-kodomonoha--pc.webp);
  }
}

/* プライバシーポリシー・キャンセルポリシー */
.page-privacypolicy::before,
.page-cancelpolicy::before {
  background-image: url(../images/bg-privacy-pc.webp);
}

@media (max-width: 768px) {
  .page-privacypolicy::before,
  .page-cancelpolicy::before {
    background-image: url(../images/bg-privacy-sp.webp);
  }
}


/* clinic intro grid */
.clinic-intro {
  max-width: 1090px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.clinic-intro__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  padding: 30px 0;
  margin-bottom: 40px;
  border-top: 2px solid #999;
  border-bottom: 2px solid #D7D7D7;
  line-height: 1.6;
  white-space: nowrap;
}
.clinic-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, 530px);
  gap: 30px;
  justify-content: center;
}
.clinic-intro__card {
  display: flex;
  width: 530px;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.clinic-intro__card:hover {
  opacity: 0.85;
}
.clinic-intro__card-image {
  width: 530px;
  height: 371px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.clinic-intro__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clinic-intro__card--concept .clinic-intro__card-image {
  background: #fff;
}
.clinic-intro__card--concept .clinic-intro__card-image img {
  object-fit: contain;
  width: 50%;
  height: auto;
}
.clinic-intro__card-label {
  display: flex;
  width: 530px;
  height: 69px;
  padding: 20px 24.5px;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #707070;
  box-sizing: border-box;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.clinic-intro__card-label span {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.clinic-intro__card-label::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  transform: translateY(-50%);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 25 25" fill="none"><circle cx="12.5" cy="12.5" r="12" fill="%23fff"/><path d="M10.5 9.5L14.5 12.5L10.5 15.5" stroke="%23787878" stroke-width="1.5" fill="none" stroke-linejoin="round" stroke-linecap="round"/></svg>') no-repeat center / contain;
}

@media screen and (max-width: 767px) {
  .clinic-intro {
    padding: 30px 15px 50px;
  }
  .clinic-intro__title {
    font-size: 20px;
    padding: 10px 5px;
    margin-bottom: 25px;
    white-space: normal;
  }
  .clinic-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .clinic-intro__card {
    width: 100%;
  }
  .clinic-intro__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 530 / 371;
  }
  .clinic-intro__card-label {
    width: 100%;
    height: auto;
    padding: 10px 32px 10px 10px;
    min-height: 40px;
	  font-size: 12px;
  }
  .clinic-intro__card-label span {
    font-size: 12px;
  }
  .clinic-intro__card-label::after {
    width: 20px;
    height: 20px;
    right: 8px;
  }
  .clinic-intro__card--concept .clinic-intro__card-image img {
    width: 50%;
    height: 60%;
  }
}

/* 共通 */
.l-inner {
  height: inherit;
  margin-inline: auto;
  max-width: 73.75rem;
  padding: 0 2.5rem;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1.25rem;
    width: 100%;
  }
}

/* 下層ページのcontainer */
.container {
  padding-top: 100px;
}

/* 下層ページのメインインナー */
.p-lower__inner {
  padding-block: 2.25rem 6.25rem
}

@media screen and (max-width:767px) {
  .container {
    padding: 2rem 0;
  }

  /* 0315修正 */
  .p-lower__inner {
    padding-block: 2.5rem 5rem;
  }
}

.p-lower__section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem
}

@media screen and (max-width:767px) {
  .p-lower__section {
    gap: 1.25rem
  }
}

.p-lower__section+.p-lower__section {
  margin-top: 0;
}

@media screen and (max-width:767px) {
  .p-lower__section+.p-lower__section {
    margin-top: 0;
  }
}

/* ----- inner_nav ----- */
.inner_nav_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(2.0rem, 20px) min(2.5rem, 25px);
}

/* .inner_nav_item a 0315修正 */
.inner_nav_item a {
  padding: min(1rem, 10px);
  border: min(0.1rem, 1px) solid #0050A2;
  background: #F2F6FA;
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #0050A2;
  letter-spacing: 0em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner_nav_item a::after {
  content: "";
  background-image: url(../images/Vector.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(.8rem, 8px);
  height: min(.4rem, 4px);
}

@media (max-width: 768px) {
  .inner_nav_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 10px;
  }

  .inner_nav_item {
    height: 100%;
  }

  .inner_nav_item a {
    padding: 1rem 10px;
    border: .1rem solid #0050A2;
    font-size: 12px;
    height: 100%;
    align-items: center;
  }

  .inner_nav_item a::after {
    width: 0.7rem;
    height: 0.3rem;
  }
}

/* 0315修正 */
@media (max-width: 480px) {
  .inner_nav_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    padding: 0;
  }

  .inner_nav_item a {
    padding: 0.625rem 0.625rem;
    align-items: center;
  }
}

.p-lower__h2 {
  color: #333333;
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  padding: 0 0 1.3125rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.p-lower__h2 br {
  display: none;
}

.p-lower__h2::after {
  content: '';
  position: absolute;
  width: 5rem;
  height: 0.0625rem;
  bottom: 0;
  background: #333333;
  left: calc(50% - 2.5rem);
}

/* 0315修正 */
@media (max-width: 768px) {
  .p-lower__h2 {
    text-align: center;
    position: relative;
    padding: 0 0 0.75rem;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 500;
  }

  .p-lower__h2 br {
    display: block;
  }

  .p-lower__h2::after {
    content: '';
    position: absolute;
    width: 1.875rem;
    left: calc(50% - 0.625rem);
  }
}

.p-lower__h2_border {
  border-top: 1px solid #333;
  border-bottom: 1px solid #D7D7D7;
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
  font-size: 1.75rem;
  margin-top: 100px;
}

/* caseページ：パンくず〜最初のh2間を調整 */
.p-case-search__wrap .p-lower__h2_border {
  margin-top: 76px;
}

@media screen and (max-width: 767px) {
  .p-case-search__wrap .p-lower__h2_border {
    margin-top: 30px;
  }
}

/* p-lower__h2の直後のh2_borderはmargin-top不要 */
.p-lower__h2 + .p-lower__h2_border {
  margin-top: 0;
}

/* navなしページ：パンくず〜最初のh2間を100pxに調整 */
.p-lower__inner:not(:has(.inner_nav_wrap)) .p-lower__h2_border:first-of-type {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .p-lower__h2_border {
    font-size: 1.25rem;
    margin-top: 50px;
  }

  .p-lower__inner:not(:has(.inner_nav_wrap)) .p-lower__h2_border:first-of-type {
    margin-top: 0;
  }
}

.p-lower__h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4166666667;
  margin-top: 2.5rem;
  margin-bottom: 2.125rem;
  padding-bottom: .625rem;
  border-bottom: .0625rem solid #D7D7D7;
}

@media screen and (max-width:767px) {
  .p-lower__h3 {
    font-size: 1.125rem;
    line-height: 1.45;
    margin-top: 2rem;
    margin-bottom: 1.75rem;
    padding-bottom: .75rem;
  }
}

.p-lower__h3_center {
  color: #333;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  .p-lower__h3_center {
    font-size: 1.25rem;
  }
}

.p-lower__h3_bg {
  background: #F5F5F5;
  color: #333333;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: normal;
  margin: 20px 0 -16px 0; /* gap 40px と差し引き → 実質 top 60px / bottom 24px */
  overflow: hidden;
  padding-block: 10px;
  padding-left: 40px;
  padding-right: 24px;
  position: relative;
}

/* 0315修正 */
@media screen and (max-width:767px) {
  .p-lower__h3_bg {
    font-size: 1.125rem;
    padding-block: .75rem;
    padding-left: 1.5rem;
    margin: 10px 0 -8px 0; /* gap 20px と差し引き → 実質 top 30px / bottom 12px */
  }
}

.p-lower__h3_bg::before {
  content: "";
  position: absolute;
  left: 1%;
  width: .625rem;
  height: 80%;
  background: #787878;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width:767px) {
  .p-lower__h3_bg::before {
    width: .375rem;
    left: 2%;
  }
}

.p-lower__h4 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4444444444;
  /* margin-bottom: 1.25rem; */
  margin-top: 20px;
  position: relative;
  color: #333333;
}

.p-lower__h4::before {
  background: #D7D7D7;
  bottom: -15px;
  content: "";
  height: .0625rem;
  left: 0;
  position: absolute;
  width: 100%
}

@media screen and (max-width:767px) {
  .p-lower__h4 {
    font-size: 1.125rem;
    line-height: 1.4375;
    margin-bottom: 0.875rem;
    padding-bottom: 10px;
  }

  .p-lower__h4::before {
    bottom: -1px;
  }
}

/* -------------------------
   番号付き h4
   ------------------------- */
.p-lower__h4_num {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.p-lower__h4_num-no {
  flex: 0 0 auto;
  min-width: 3rem;
  color: #E10078;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.p-lower__h4_num-text {
  flex: 1;
}

@media screen and (max-width:767px) {
  .p-lower__h4_num {
    gap: 0;
  }

  .p-lower__h4_num-no {
    font-size: 1.125rem;
    min-width: 2rem;
  }
}

.p-lower__h4_num--gray .p-lower__h4_num-no {
  color: #D7D7D7;
}

.p-lower__h5 {
  font-size: 1.25rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 16px;
}

@media screen and (max-width:767px) {
  .p-lower__h5 {
    font-size: 1rem;
  }
}

/* ドット付きh5（固定ページ用追加デザイン） */
.p-lower__h5_dot {
  position: relative;
  font-size: 1.25rem;
  color: #333;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  padding-left: 28px;
  margin-bottom: -24px;
}

.p-lower__h5_dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #D7D7D7;
}

/* ピンクにしたいとき */
.p-lower__h5_dot--pink::before {
  background: #E10078;
}

/* ドット大きめ（25px） */
.p-lower__h5_dot--lg {
  padding-left: 35px;
}
.p-lower__h5_dot--lg::before {
  width: 25px;
  height: 25px;
  aspect-ratio: 1/1;
}

/* 下線付き（p-lower__h4::before と同じスタイル） */
.p-lower__h5_dot--line {
  margin-bottom: 0;
}
.p-lower__h5_dot--line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: .0625rem;
  background: #D7D7D7;
}

/* グレーにしたいとき */
.p-lower__h5_dot--gray::before {
  background: #787878;
}

@media screen and (max-width:767px) {
  .p-lower__h5_dot,
  .p-faq__answer .p-lower__h5_dot {
    font-size: 16px;
    margin-bottom: -12px;
  }
}

.p-text,
.p-lower__section p:not([class]) {
  line-height: 30px;
}

/* wpautopによる空pタグを非表示 */
.p-lower__inner p:empty,
.p-single__contents p:empty {
  display: none;
}

/* テキストサイズ大（20px） */
.p-text--lg {
  font-size: 20px;
}
@media screen and (max-width:767px) {
  .p-text--lg {
    font-size: 16px;
  }
}

/* 電話番号リンク色 */
.p-text__tel-link {
  color: #333;
}

.feature-item-block .p-text + .p-text {
  margin-top: 1rem;
}

.container img {
  width: 100%;
  margin: 30px auto 20px auto;
}

@media screen and (max-width:767px) {
  .p-text,
  .p-lower__section p:not([class]) {
    font-size: 0.875rem;
  }

  .container img {
    width: 100%;
    margin: 15px auto 5px auto;
  }
}

/* 共通ボタン */
.p-lower-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25rem 4.5rem 1.25rem 1.75rem;
  border-radius: .31rem;
  color: #fff;
  background: #787878;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background-color .6s ease, color .6s ease, opacity .6s ease;
}

/* 右の白丸 */
.p-lower-btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 1.55rem;
  height: 1.55rem;
  background: #fff;
  border-radius: 45%;
  transform: translateY(-50%);
}

/* 矢印（＞ 向き） */
.p-lower-btn::before {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: .5rem;
  height: .5rem;
  border-top: 2px solid #787878;
  border-right: 2px solid #787878;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.p-lower-btn:hover {
  background: #0050A2;
}

/* オレンジ色 */
.p-lower-btn--orange {
  background: #ED7300;
  font-size: 20px;
  line-height: normal;
  text-align: center;
}

/* PC時：br非表示 */
.p-lower-btn--orange br {
  display: none;
}

.p-lower-btn--orange::before {
  border-top: 2px solid #ED7300;
  border-right: 2px solid #ED7300;
}

.p-lower-btn--orange:hover {
  background: #787878;
}

@media screen and (max-width:767px) {
  .p-lower-btn {
    padding: 1rem 3.75rem 1rem 1.25rem;
    font-size: 14px;
  }

  .p-lower-btn--orange {
    font-size: 16px;
    text-align: center;
  }

  .p-lower-btn--orange br {
    display: inline;
  }

  .p-lower-btn::before {
    right: 1.7rem;
  }

  .p-lower-btn::after {
    width: 2rem;
    height: 2rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .p-lower-btn::before {
    right: 1.5rem;
    width: .25rem;
    height: .25rem;
  }

  .p-lower-btn::after {
    width: 20px;
    height: 20px;
    right: 1rem;
  }
}

/* 0315修正 */
/* 枠線タイプの共通ボタン */
.p-lower-btn-line {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 20px;
  border: 2px solid #D7D7D7;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .03em;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color .6s ease, color .6s ease, border-color .6s ease, opacity .6s ease;
}

/* 右のグレー丸 */
.p-lower-btn-line::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 1.55rem;
  height: 1.55rem;
  background: #787878;
  border-radius: 45%;
  transform: translateY(-50%);
  transition: background-color .6s ease, color .6s ease, border-color .6s ease, opacity .6s ease;
}

/* 白い矢印 */
.p-lower-btn-line::before {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
  transition: background-color .6s ease, color .6s ease, border-color .6s ease, opacity .6s ease;
}

.p-lower-btn-line:hover {
  background: #F5F5F5;
  border-color: #ABABAB;
}

@media screen and (max-width: 767px) {
  .p-lower-btn-line {
    padding: 1rem 3.75rem 1rem 1rem;
    font-size: 1rem;
  }

  .p-lower-btn-line::after {
    right: 1rem;
    width: 1.25rem;
    height: 1.25rem;
  }

  .p-lower-btn-line::before {
    right: 1.5rem;
    width: 0.275rem;
    height: 0.275rem;
  }
}

.p-lower-btn-line-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}

/* ---------------------------------------------------------------------------------------
-------アクセス・ご予約方法----------------------------------------------------- */

/* ===== 予約導線===== */
.reserve-cta__inner {
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid #E4832E;
  /* オレンジ枠 */
  border-radius: 10px;
  padding: 35px 28px 35px;
  background: #fff;
}

.p-lower__inner h2.reserve-cta__title {
  text-align: center;
  font-weight: 500;
  letter-spacing: .06em;
  color: #222;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: none;
  border-bottom: .0625rem solid #ED7300;
  margin-top: 0;
  text-align: center;
  font-size: 2rem;
}

.reserve-cta__title-accent {
  color: #ED7300;
  letter-spacing: .08em;
}

.reserve-cta__note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  color: #333;
  letter-spacing: .02em;
}

.reserve-cta__buttons {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* ボタン間の余白 */
  justify-items: center;
}

.reserve-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 54px;
  background: #ED7300;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .12);
  transition: background-color .2s ease .08s, transform .08s ease, opacity .2s ease;
}

.reserve-cta__btn:hover {
  background: #787878;
}

/* SOUTH（ピンク） */
.reserve-cta--south .reserve-cta__inner {
  border: 1px solid #DE0078;
}

.reserve-cta--south .reserve-cta__btn {
  background: #DE0078;
}

.reserve-cta--south .reserve-cta__btn:hover {
  background: #787878;
}

.p-lower__inner .reserve-cta--south .reserve-cta__title {
  border-bottom-color: #DE0078;
}

@media (max-width: 480px) {
  .p-lower__inner .reserve-cta--south .reserve-cta__title {
    font-size: 14px;
  }
}

.reserve-cta--south .reserve-cta__title-accent {
  color: #DE0078;
}

/* EAST（グリーン） */
.reserve-cta--east .reserve-cta__inner {
  border: 1px solid #00987D;
}

.reserve-cta--east .reserve-cta__btn {
  background: #00987D;
}

.reserve-cta--east .reserve-cta__btn:hover {
  background: #787878;
}

.p-lower__inner .reserve-cta--east .reserve-cta__title {
  border-bottom-color: #00987D;
}

.reserve-cta--east .reserve-cta__title-accent {
  color: #00987D;
}

.p-lower__inner h2.reserve-cta__title.reserve-cta__title--logo {
  text-align: center;
  font-weight: 500;
  letter-spacing: .06em;
  color: #222;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: none;
  border-bottom: none;
  font-size: 2rem;
}

/* クリニック詳細セクション（#WEST, #SOUTH, #EAST）のロゴh2 */
.p-lower__section > div > h2.reserve-cta__title.reserve-cta__title--logo {
  margin-top: 100px;
  padding-top: 20px;
  border-top: .0625rem solid #333;
}

/* #team03 院内ツアーではmargin-topを無効化 */
#team03 .p-lower__section > div > h2.reserve-cta__title.reserve-cta__title--logo,
#team03 > div > h2.reserve-cta__title.reserve-cta__title--logo {
  margin-top: 0;
}

/* SOUTH・EASTのロゴタイトル下線色 — 不要（線はold-nameに移動） */

.reserve-cta__title--logo img {
  display: block;
  max-width: 100%;
  width: auto;
  height: 70px;
  margin: 0 auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.reserve-cta__title--logo img.access__logo {
  width: 30px;
  height: auto;
  margin: 0 auto 10px;
}

@media (max-width: 767px) {
  .p-lower__section > div > h2.reserve-cta__title.reserve-cta__title--logo {
    margin-top: 50px;
    padding-top: 10px;
  }

  .reserve-cta__title--logo img {
    height: 40px;
  }

  .reserve-cta__title--logo img.access__logo {
    width: 30px;
    height: auto;
    margin: 0 auto 10px;
  }
}

.reserve-cta__old-name {
  padding: 5px 0 20px;
  margin: 5px 0 20px;
  text-align: center;
  font-size: .875rem;
  line-height: 1.5;
  color: #787878;
  font-weight: 400;
  border-bottom: .0625rem solid #D7D7D7;
}

.reserve-cta--south .reserve-cta__old-name {
  border-bottom-color: #D7D7D7;
}

.reserve-cta--east .reserve-cta__old-name {
  border-bottom-color: #D7D7D7;
}

#team03 > .p-lower__h2 {
  margin-bottom: 0;
}

/* ===== SP調整 ===== */
@media (max-width: 767px) {
  .reserve-cta__old-name {
    padding-bottom: 10px;
  }

  .reserve-cta__inner {
    padding: 22px 9px 22px;
  }

  .p-lower__inner h2.reserve-cta__title {
    font-size: 1.125rem;
  }

  .reserve-cta__buttons {
    gap: 12px;
    margin-top: 16px;
  }

  .reserve-cta__btn {
    max-width: 100%;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .p-lower__inner h2.reserve-cta__title {
    font-size: 1rem;
  }
}

/* 八潮駅徒歩3分内に3つのクリニック */
.clinic-buttons {
  display: grid;
  gap: 1.5rem;
}

/* 3色共通ボタン */
.clinic-btn {
  position: relative;
  display: block;
  padding: 1.25rem 4.5rem 1.25rem 1.75rem;
  border-radius: .5rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .03em;
  text-decoration: none;
}

/* 右の白丸 */
.clinic-btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 1.55rem;
  height: 1.55rem;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* 矢印（V字） */
.clinic-btn::before {
  content: "";
  position: absolute;
  right: 2.0rem;
  top: 50%;
  width: .5rem;
  height: .5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  z-index: 1;
}

/* WEST（オレンジ） */
.clinic-btn--west::before {
  border-color: #ED7300;
}

.clinic-btn--west {
  background: #ED7300;
}

/* SOUTH（ピンク） */
.clinic-btn--south::before {
  border-color: #DE0078;
}

.clinic-btn--south {
  background: #DE0078;
}

/* EAST（グリーン） */
.clinic-btn--east::before {
  border-color: #00987D;
}

.clinic-btn--east {
  background: #00987D;
}










/* SP */
@media (max-width: 767px) {
  .clinic-btn {
    padding: 1rem 3.75rem 1rem 1.25rem;
    font-size: 14px;
  }

  .clinic-btn::after {
    width: 2rem;
    height: 2rem;
    right: 1rem;
  }

  .clinic-btn::before {
    right: 1.7rem;
  }
}

@media (max-width: 480px) {
  .clinic-btn::after {
    width: 20px;
    height: 20px;
    right: 1rem;
  }

  .clinic-btn::before {
    right: 1.5rem;
    width: .25rem;
    height: .25rem;
  }
}

/* パネル型ボタンバリエーション */
.p-lower-btn-line--panel {
  padding: 1.5rem 4.5rem 1.5rem 1.5rem;
}

/* 中身 */
.p-lower-btn-line__inner {
  display: block;
}

/* タイトル */
.p-lower-btn-line__title {
  display: block;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

/* 0315追加 */
@media screen and (max-width:767px) {
  .p-lower-btn-line__title {
    font-size: 1rem;
  }
}

/* 説明文 */
.p-lower-btn-line__text {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}

.bold {
  font-weight: bold;
}

.color_blue {
  color: #0050A2;
}

.p-information__contents {
  margin-top: 3.75rem
}

@media screen and (max-width:767px) {
  #WEST h4 {
    font-size: 1.125rem;
  }

  .p-information__contents {
    margin-top: 1.875rem
  }
}

.p-information__top {
  align-items: center;
  display: flex;
  gap: 2.5rem
}

@media screen and (max-width:767px) {
  .p-information__top {
    flex-direction: column;
    gap: 1.25rem
  }
}

.p-information__top-img {
  flex: 1;
  height: 24.875rem;
  overflow: hidden;
}

@media screen and (max-width:767px) {
  .p-information__top-img {
    height: 13.125rem;
    width: 100%;
    margin: 0 auto;
  }

  .p-information__top-img img {
    width: 100%;
    object-fit: cover;
  }
}

.p-information__top-right {
  flex: 1;
}

@media screen and (max-width:767px) {
  .p-information__top-right {
    width: 100%;
  }
}

/* 診療時間表 */
.p-information__top-table {
  border: 1px solid #ED7300;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 1.5rem;
  overflow: hidden;
  table-layout: fixed
}

.reserve-cta--south .p-information__top-table {
  border: 1px solid #DE0078;
}

.reserve-cta--east .p-information__top-table {
  border: 1px solid #00987D;
}

@media screen and (max-width:767px) {
  .p-information__top-table {
    margin-top: .75rem;
    width: 100%;

  }

  .p-information__top-right p {
    font-size: 14px;
  }
}

.p-information__top-table th {
  border-bottom: .0625rem solid #ED7300;
  border-right: .0625rem solid #ED7300;
  font-weight: 500;
  padding: .5625rem;
  text-align: center;
  vertical-align: middle
}

.reserve-cta--south .p-information__top-table th {
  border-bottom: .0625rem solid #DE0078;
  border-right: .0625rem solid #DE0078;
}

.reserve-cta--east .p-information__top-table th {
  border-bottom: .0625rem solid #00987D;
  border-right: .0625rem solid #00987D;
}


@media screen and (max-width:767px) {
  .p-information__top-table th {
    font-size: .875rem;
    padding: .5625rem .3125rem
  }
}

.p-information__top-table td {
  border-bottom: .0625rem solid #ED7300;
  border-right: .0625rem solid #ED7300;
  font-weight: 700;
  padding: .5625rem;
  text-align: center;
  vertical-align: middle
}

.reserve-cta--south .p-information__top-table td {
  border-bottom: .0625rem solid #DE0078;
  border-right: .0625rem solid #DE0078;
}

.reserve-cta--east .p-information__top-table td {
  border-bottom: .0625rem solid #00987D;
  border-right: .0625rem solid #00987D;
}

@media screen and (max-width:767px) {
  .p-information__top-table td {
    font-size: .875rem
  }
}

@media screen and (max-width:480px) {
  .p-information__top-table td {
    font-size: .75rem
  }
}

.p-information__top-table thead th {
  background: #ED7300;
  color: #fff;
  height: 2.5625rem;
  width: 5.625rem
}

.reserve-cta--south .p-information__top-table thead th {
  background: #DE0078;
}

.reserve-cta--east .p-information__top-table thead th {
  background: #00987D;
}

.p-information__top-table thead th:last-child {
  border-right: none
}

@media screen and (max-width:767px) {
  .p-information__top-table thead th {
    height: 2.1875rem;
    width: 1.5rem
  }
}

.p-information__top-table thead th:first-child {
  width: 8.125rem
}

@media screen and (max-width:767px) {
  .p-information__top-table thead th:first-child {
    width: 5.625rem
  }
}

.p-information__top-table tbody tr:first-child td:last-child {
  border-right: none
}

.p-information__top-table tbody tr:last-child td, .p-information__top-table tbody tr:last-child th {
  border-bottom: none
}

.p-information__top-table tbody tr:last-child td:last-child {
  border-right: none
}

.p-information__top-table tbody th:first-child {
  background: #E9E9E9;
}

.p-information__top-table tbody th {
  color: #333;
  width: 8.125rem
}

@media screen and (max-width:767px) {
  .p-information__top-table tbody th {
    width: 5.625rem;
  }
}

.p-information__top-table tbody td {
  color: #ED7300;
}

.reserve-cta--south .p-information__top-table tbody td {
  color: #DE0078;
}

.reserve-cta--east .p-information__top-table tbody td {
  color: #00987D;
}

.p-information__top-amendment {
  line-height: 1.1875;
  margin-top: .625rem
}

@media screen and (max-width:767px) {
  .p-information__top-amendment {
    font-size: .875rem;
    line-height: 1.2142857143
  }
}

.p-information__top-lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media screen and (max-width:767px) {
  .p-information__top-lists {
    border-radius: .3125rem;
    gap: .625rem;
    margin-top: .75rem;
    padding: .9375rem 0;
  }
}

.p-information__top-list {
  border-bottom: .0625rem solid #D7D7D7;
  display: flex;
  gap: 1.25rem;
  padding-bottom: .625rem
}

@media screen and (max-width:767px) {
  .p-information__top-list {
    align-items: flex-start;
  }
}

.p-information__top-list:last-child {
  border-bottom: unset;
  padding-bottom: 0
}

.p-information__top-list--left {
  line-height: 1.4375;
  width: 4rem;
  font-weight: bold;
}

@media screen and (max-width:767px) {
  .p-information__top-list--left {
    flex: 0 0 85px;
    width: 85px;
    white-space: nowrap;
    font-size: 14px;
  }
}

.p-information__top-list--right {
  flex-grow: 1;
  line-height: 1.1875
}

@media screen and (max-width:767px) {
  .p-information__top-list--right {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
    font-size: 14px;
  }
}

.p-information__top-list__buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width:767px) {
  .p-information__top-list__buttons {
    flex-direction: column;
  }

  .p-information__top-list__buttons br {
    display: none;
  }
}

.p-information__top-list__buttons .reserve-cta__btn_right {
  background: #0050A2;
}

.p-information__top-list__buttons .reserve-cta__btn_right:hover {
  background: #787878;
}

.p-information__center .p-lower__h4 {
  color: #333;
}

.p-information__center .p-lower__h4::before {
  background: #787878;
}

/* =========================
   Information Center 
   ========================= */

/* 外側の薄いグレー背景ボックス */
.p-information__center {
  background: #F5F5F5;
  padding: 40px;
  margin: 40px 0;
}

/* セクション間の余白 */
.p-information__center_top {
  margin-bottom: 40px;
}

/* ULのデフォ装飾を消す */
.p-information__center ul {
  list-style: none;
  margin: 40px 0;
  padding: 0;
}

@media screen and (max-width:767px) {
  .p-information__center ul {
    margin: 22px 0;
  }
}

/* 2列レイアウト（スクショ通り左右に分かれる） */
.p-information__center_top ul,
.p-information__center_bottom ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 20px;
}

/* li：丸ドット＋文字の位置関係 */
.p-information__center li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  color: #2C2C2C;
  line-height: 1.6;
}

/* 丸ドット（上セクション：薄グレー） */
.p-information__center_top li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #D7D7D7;
}

/* 丸ドット（下セクション：濃グレー） */
.p-information__center_bottom li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #787878;
}

/* 託児サービスについて */
#SOUTH .p-information__center_bottom p {
  margin-top: 1rem;
}

#SOUTH .p-information__center_bottom p a {
  position: relative;
  display: inline-block;
  color: #DE0078;
  text-decoration: none;
  border-bottom: 1px solid #DE0078;
  line-height: 1.4;
}

@media (max-width: 768px) {
  #SOUTH .p-information__center_bottom p a {
    font-size: 14px;
  }
}

/* 右向き矢印（疑似要素） */
#SOUTH .p-information__center_bottom p a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid #E4006E;
  border-right: 2px solid #E4006E;
  transform: translateY(-50%) rotate(45deg);
}

/* =========================
   SP調整（崩れ防止）
   ========================= */
@media (max-width: 767px) {
  .p-information__center {
    padding: 40px 20px;
  }

  .p-information__center .p-lower__h4 {
    font-size: 16px;
    margin-bottom: 22px;
    padding-bottom: 14px;
  }

  .p-information__center_top ul,
  .p-information__center_bottom ul {
    grid-template-columns: 1fr;
    /* SPは1列 */
    column-gap: 0;
    row-gap: 18px;
  }

  .p-information__center_top {
    margin-bottom: 44px;
  }

  .p-information__center li {
    padding-left: 25px;
    font-size: 14px;
  }

  .p-information__center_top li::before,
  .p-information__center_bottom li::before {
    width: 14px;
    height: 14px;
  }
}

.p-information__bottom {
  margin-top: 2.5rem;
}

@media screen and (max-width:767px) {
  .p-information__bottom {
    margin-top: 1.25rem
  }
}

.p-information__map {
  flex: 1;
  height: 21.25rem;
  overflow: hidden
}

@media screen and (max-width:767px) {
  .p-information__map {
    flex: unset;
    height: 13.125rem;
    width: 100%
  }
}

.p-information__map iframe {
  height: 21.25rem
}

@media screen and (max-width:767px) {
  .p-information__map iframe {
    height: 13.125rem
  }
}

/* ライフメディカルクリニック歯科口腔外科NORTH八潮の詳細 */
#EAST .p-information__center_bottom p, #p-promise01 .p-information__center_bottom p,
#EAST .p-information__center_bottom p {
  margin-top: 1rem;
}

#EAST .p-information__center_bottom p a, #p-promise01 .p-information__center_bottom p a {
  position: relative;
  display: inline-block;
  color: #0050A2;
  text-decoration: none;
  padding-right: 20px;
  border-bottom: 1px solid #0050A2;
  line-height: 1.4;
}

/* 右向き矢印（疑似要素） */
#EAST .p-information__center_bottom p a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid #0050A2;
  border-right: 2px solid #0050A2;
  transform: translateY(-50%) rotate(45deg);
}

#p-promise01 .p-information__center_bottom p a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid #0050A2;
  border-right: 2px solid #0050A2;
  transform: translateY(-50%) rotate(45deg);
}

.p-access .p-lower-btn {
  margin-top: 1.5rem;
}

@media screen and (max-width:767px) {
  .p-access .p-lower-btn {
    margin-top: 1rem;
  }
}

.p-access .p-text {
  margin-top: 1rem;
}

/* ------------------------------------------------------------------------
---------------------サイトマップ---------------------------------------- */

.sitemap_wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: min(4rem, 40px);
}

.sitemap_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: min(1rem, 10px);
  border-bottom: min(0.1rem, 1px) solid #D7D7D7;
  transition: all .8s;
  color: #787878;
}

.sitemap_item a::after {
  content: '';
  background-image: url(../images/sitemap-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}

.menu_wrap {
  margin-top: min(2.4rem, 24px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2rem, 20px);
}

.menu_item a {
  display: block;
  width: 100%;
  padding: min(1rem, 10px);
  font-size: min(1.8rem, 18px);
  font-weight: 500;
  border-bottom: none;
  letter-spacing: 0em;
  line-height: 1.8;
  transition: all .8s;
  border-bottom: none;
}

/* 診療案内系 */
.menu_wrap--blue .menu_item a {
  background: #F2F9FF;
  color: #005194;
}

/* 症状別 */
.menu_wrap--orange .menu_item a {
  background: #FFF7EF;
  color: #ED7300;
}

/* 求人系 */
.menu_wrap--green .menu_item a {
  background: #F2FFFC;
  color: #00987D;
}

/* ----- hover animation ----- */
.sitemap_item a,
.menu_item a {
  transition: opacity 0.25s ease;
}

.sitemap_item a:hover,
.menu_item a:hover {
  opacity: 0.7;
}

@media (max-width: 799px) {
  .sitemap_wrap {
    gap: 2rem;
  }

  .sitemap_item a {
    font-size: 1rem;
    padding-bottom: 1rem;
  }

  .sitemap_item a::after {
    width: 30px;
    height: 30px;
  }

  .menu_wrap {
    margin-top: 1.2rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu_item a {
    padding: 1rem;
    font-size: .875rem;
  }
}

/* ------------------------------------------------------------------------
---------------------ライフメディカルグループのお約束---------------------------------------- */
/* ３つ横並び */
.feature-cards {
  display: flex;
  gap: 2.5rem;
}

.feature-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.75rem;
  background: #F5F5F5;
  padding: 1.25rem;
  box-sizing: border-box;
}

.feature-card__text {
  margin: 0;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .feature-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-card {
    min-height: 6.25rem;
  }

  .feature-card__text {
    font-size: 1rem;
  }
}

/* 番号付き3カード */
.feature-number-cards {
  display: flex;
  gap: 2.5rem;
}

.feature-number-card {
  position: relative;
  flex: 1;
  background: #F5F5F5;
  min-height: 8.75rem;
  padding: 1.25rem;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 左上の番号 */
.feature-number-card__num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #787878;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

/* テキスト */
.feature-number-card__text {
  margin: 0;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* SP */
@media screen and (max-width: 767px) {
  .feature-number-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-number-card {
    min-height: 6.25rem;
  }

  .feature-number-card__text {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* 画像とテキスト横並び */
.media-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
}

/* 上揃えにしたい場合に追加 */
.media-block.media-block--top {
  align-items: flex-start;
}

.media-block__image {
  flex: 0 0 auto;
}

.media-block__image img {
  display: block;
  width: auto;
  max-width: 31.25rem;
  height: auto;
  margin-bottom: 40px;
}

.media-block__image .training-outline + p,
.media-block__image p + p {
  margin-top: 24px;
}

.media-block__text {
  flex: 1;
  text-align: left;
  line-height: 30px;
}

.media-block__text > * + * {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .media-block {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .media-block__image,
  .media-block__text {
    width: 100%;
  }

  .media-block__image img {
    max-width: 100%;
  }

  .media-block__text p {
    font-size: 0.875rem;
  }
}

/* 画像横並び */
.feature-item-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-item-block {
  width: 100%;
}

.feature-item-block__image {
  margin-bottom: 1.5rem;
}

.feature-item-block__image img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-item-block__text {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .feature-item-blocks {
    gap: 20px;
  }

  .feature-item-blocks--single-sp {
    grid-template-columns: 1fr;
  }

  .feature-item-block .p-lower__h5 {
    margin-bottom: 10px;
  }

  .feature-item-block__title {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }

  .feature-item-block__image {
    margin-bottom: 1rem;
  }

  .feature-item-block__text {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}

/* グレー背景の見出し */
.section-panel {
  padding: 2.5rem 2.5rem 3rem;
  background: #F5F5F5;
}

.section-panel__title {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #787878;
  color: #333333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

/* 数字 */
.section-panel__title--num {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.75rem;
}

.section-panel__num {
  flex: 0 0 auto;
  color: #787878;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-panel__title-text {
  display: inline-block;
}

.section-panel__body {
  margin-top: 1.75rem;
}

.section-panel__body p {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 2;
}

.section-panel__body p+p {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .section-panel {
    padding: 1.5rem 1.25rem 2rem;
  }

  .section-panel__title {
    padding-bottom: 0.75rem;
    font-size: 1rem;
  }

  /* 数字 */
  .section-panel__title--num {
    gap: 0.75rem;
  }

  .section-panel__num {
    font-size: 1rem;
  }

  .section-panel__body {
    margin-top: 1.25rem;
  }

  .section-panel__body p {
    font-size: 0.875rem;
    line-height: 1.9;
  }

  .section-panel__body p+p {
    margin-top: 1rem;
  }
}

/* 4色グラデーション */
.merit-card-list {
  display: flex;
  align-items: stretch;
}

.merit-card {
  flex: 1;
  padding: 2.5rem 1.5rem 2.75rem;
  min-height: 23.75rem;
  box-sizing: border-box;
}

.merit-card--01 {
  background: #F7F7F7;
}

.merit-card--02 {
  background: #EAEAEA;
}

.merit-card--03 {
  background: #DEDEDE;
}

.merit-card--04 {
  background: #D1D1D1;
}

.merit-card .p-lower__h5 {
  margin: 0 0 1.5rem;
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.merit-card__text {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 30px;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .merit-card-list {
    flex-direction: column;
  }

  .merit-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }

  .merit-card .p-lower__h5 {
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .merit-card__text {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}

/* -------------------------
   merit-card 画像入り派生
------------------------- */

.merit-card-list--image .merit-card {
  /* 既存の min-height が邪魔なら上書き（必要な時だけ） */
  min-height: auto;
}

/* 上部ラベル（01 埋入手術） */
.merit-card__label {
  margin: 0 0 1.25rem;
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.merit-card__no {
  color: #787878;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

/* 画像枠（白背景の箱） */
.merit-card__figure {
  background: #fff;
  padding: 1.5rem;
  margin: 0 0 1.5rem;
}

.merit-card__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  /* .container img の共通margin対策 */
}

@media screen and (max-width: 767px) {
  .merit-card__label {
    font-size: 1rem;
  }

  .merit-card__no {
    font-size: 1rem;
  }
}

/* テキストは既存 merit-card__text をそのまま使える */
/* ------------------------------------------------------------------------
---------------------スタッフのご紹介---------------------------------------- */
.staff-doctor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2rem;
  row-gap: 2rem;
}

.staff-doctor-card {
  text-align: center;
}

.staff-doctor-card__name {
  margin: 0 0 1.25rem;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.staff-doctor-card__image {
  margin-bottom: 1rem;
}

.staff-doctor-card__image img {
  display: block;
  width: 100%;
  max-width: 12.5rem;
  height: auto;
  margin: 0 auto;
}

.staff-doctor-card__text {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 2;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .staff-doctor-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 2rem;
  }

  .staff-doctor-card__name {
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
  }

  .staff-doctor-card__image {
    margin-bottom: 0.75rem;
  }

  .staff-doctor-card__image img {
    max-width: 8.75rem;
  }

  .staff-doctor-card__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.staff-member-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 2rem;
  row-gap: 1.5rem;
}

.staff-member-card {
  text-align: center;
}

.staff-member-card__name {
  margin: 0 0 1.25rem;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.staff-member-card__image {
  margin-bottom: 1rem;
}

.staff-member-card__image img {
  display: block;
  width: 100%;
  max-width: 11.875rem;
  height: auto;
  margin: 0 auto;
}

.staff-member-card__text {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 1.9;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .staff-member-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    row-gap: 1.25rem;
  }

  .staff-member-card__name {
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
  }

  .staff-member-card__image {
    margin-bottom: 0.75rem;
  }

  .staff-member-card__image img {
    max-width: 8.75rem;
  }

  .staff-member-card__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

/* ------------------------------------------------------------------------
---------------------研修プログラムの特色---------------------------------------- */
/* スタッフページ用アコーディオン*/
.p-staff-faq__item {
  border: 1px solid #E9E9E9;
  background: #F7F7F7;
}

.p-staff-faq + .p-staff-faq {
  margin-top: -16px; /* gap 40px を打ち消して実質 24px に */
}

/* 質問 */
.p-staff-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  background: #E9E9E9;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* 矢印（::afterで描画 - WPエディタがspan削除するため） */
.p-staff-faq__question::after {
  content: "";
  flex-shrink: 0;
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: .3s;
}

.p-staff-faq__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
}

/* spanが残っている場合は::afterを非表示 */
.p-staff-faq__question:has(.p-staff-faq__arrow)::after {
  display: none;
}

/* 矢印（span版 - 残存した場合の互換） */
.p-staff-faq__arrow {
  display: inline-block;
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: .3s;
}

/* 開いた状態 */
.p-staff-faq__item.is-open .p-staff-faq__answer {
  display: block;
}

.p-staff-faq__item.is-open .p-staff-faq__question::after {
  transform: rotate(-135deg);
}

.p-staff-faq__item.is-open .p-staff-faq__arrow {
  transform: rotate(-135deg);
}

/* 回答 */
.p-staff-faq__answer {
  display: none;
  padding: 2.5rem 2rem;
  background: #F5F5F5;
}

.p-staff-faq__layout {
  display: grid;
  grid-template-columns: 1fr 28rem;
  gap: 2.5rem;
  align-items: start;
}

.p-staff-faq__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-staff-faq__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-staff-faq__heading {
  position: relative;
  margin: 0;
  padding-left: 1.5rem;
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-staff-faq__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 1rem;
  height: 1rem;
  background: #787878;
  transform: translateY(-50%);
}

.p-staff-faq__block p {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 2;
}

.p-staff-faq__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

/* SP */
@media screen and (max-width: 767px) {
  .p-staff-faq__question {
    padding: 1rem 1.25rem;
  }

  .p-staff-faq__text {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .p-staff-faq__question::after {
    width: 8px;
    height: 8px;
  }

  .p-staff-faq__arrow {
    width: 8px;
    height: 8px;
  }

  .p-staff-faq + .p-staff-faq {
    margin-top: 4px; /* SP: gap 20px + 4px = 24px */
  }

  .p-staff-faq__answer {
    padding: 1.5rem 1.25rem;
  }

  .p-staff-faq__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .p-staff-faq__image {
    order: -1;
  }

  .p-staff-faq__body {
    gap: 1.5rem;
  }

  .p-staff-faq__block {
    gap: 0.75rem;
  }

  .p-staff-faq__heading {
    font-size: 1rem;
    padding-left: 1.25rem;
  }

  .p-staff-faq__heading::before {
    width: 0.875rem;
    height: 0.875rem;
  }

  .p-staff-faq__block p {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}

/* ------------------------------------------------------------------------
---------------------令和5年度管理型研修プログラム---------------------------------------- */
.program-feature-list {
  list-style: none;
  padding: 0;
}

.program-feature-list__item {
  display: flex;
  align-items: center;
}

.program-feature-list__item+.program-feature-list__item {
  margin-top: 16px;
}

.program-feature-list__num {
  flex: 0 0 auto;
  min-width: 3rem;
  color: #787878;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 90%;
}

/* ピンク色 */
.program-feature-list__num--pink {
  color: #DE0078;
}

.program-feature-list__text {
  flex: 1;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
}

/* 番号なし・ドット付きリスト（__numを使わず__textのみの場合） */
.program-feature-list__item:not(:has(.program-feature-list__num))::before {
  content: "";
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: #787878;
  margin-right: 10px;
}
.program-feature-list__item:not(:has(.program-feature-list__num)) .program-feature-list__text {
  font-size: 16px;
}

/* 小さめ版（数字24px / テキスト16px） */
.program-feature-list--sm .program-feature-list__num {
  font-size: 24px;
  min-width: 2.5rem;
  line-height: 180%;
}

.program-feature-list--sm .program-feature-list__text {
  font-size: 16px;
  line-height: 180%;
}

/* 本文テキスト版（太字でない） */
.program-feature-list--light .program-feature-list__num {
  font-size: 1.5rem;
  min-width: 2.5rem;
}

.program-feature-list--light .program-feature-list__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 180%;
}

/* h4で使う場合のリセット */
h4.program-feature-list__item {
  margin: 0;
  font-size: inherit;
}

@media screen and (max-width: 767px) {
  .program-feature-list__item+.program-feature-list__item {
    margin-top: 0.625rem;
  }

  .program-feature-list__num {
    min-width: 2.25rem;
    font-size: 1.5rem;
  }

  .program-feature-list__text {
    font-size: 1rem;
    line-height: normal;
  }

  .program-feature-list--light .program-feature-list__text {
    font-size: 0.875rem;
    line-height: 180%;
  }
}

.p-team-text {
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-team-text {
    font-size: 1rem;
  }
}

.p-team .case-table__link {
  color: #0F4FA8;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  word-break: break-all;
}

.case-table__link:hover {
  opacity: 0.8;
}

/* 研修要領 */
.training-outline__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.training-outline__list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.75rem;
  column-gap: 0;
}

.training-outline__item {
  position: relative;
  padding-left: 1.5rem;
  color: #333333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

.training-outline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 15px;
  height: 15px;
  aspect-ratio: 1/1;
  background: #787878;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ドット小サイズ */
.training-outline--sm .training-outline__item::before {
  width: 10px;
  height: 10px;
}

/* ドット四角バリエーション（■） */
.training-outline--square .training-outline__item::before {
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  border-radius: 0;
}

/* テキスト部分のインデント調整 */
.training-outline__text {
  display: inline-block;
  padding-left: 0;
  margin-left: 0;
}

/* ドット色違いバリエーション */
.training-outline--gray .training-outline__item::before {
  background: #D7D7D7;
}

.training-outline.training-outline--pink .training-outline__item::before {
  background: #E10078;
}

.training-outline__item+.training-outline__item {
  margin-top: 0.75rem;
}

.training-outline__list--grid > .training-outline__item+.training-outline__item {
  margin-top: 0;
}

.training-outline__selection {
  color: #333333;
  font-size: 1rem;
  line-height: 2;
}

.training-outline__selection p {
  margin: 0;
}

@media screen and (max-width: 767px) {
/* 	0316修正 */
  .training-outline {
    margin-top: 0;
  }

  .training-outline__item,
  .training-outline__selection {
    font-size: 0.875rem;
    line-height: 1.9;
  }

  .training-outline__item {
    padding-left: 1.25rem;
  }

  .training-outline__item::before {
    width: 15px;
    height: 15px;
  }

  .training-outline__list--grid {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }

  .training-outline__list--grid > .training-outline__item+.training-outline__item {
    margin-top: 0;
  }

  .training-outline__item+.training-outline__item {
    margin-top: 0.5rem;
  }
}

/* ------------------------------------------------------------------------
---------------------院内ツアー---------------------------------------- */
.gallery-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.5rem;
  row-gap: 3.5rem;
  align-items: start;
}

/* 1枚（figure） */
.gallery-grid__item {
  margin: 0;
}

/* ラベル（外観/診療室） */
.gallery-grid__label {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 1rem;
  color: #333;
}

/* 画像枠 */
.gallery-grid__img {
  width: 100%;
}

/* ★あなたの共通CSS「.container img { margin: ... }」の影響を打ち消す */
.gallery-grid__img img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

/* 2段目の左に固定 */
.gallery-grid__item--bottom-left {
  grid-column: 1 / 2;
}

/* SP：2カラム */
@media screen and (max-width: 767px) {
  .gallery-grid__items {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 2rem;
  }

  .gallery-grid__label {
    font-size: 1rem;
    margin: 0 0 .75rem;
  }

  .gallery-grid__item--bottom-left {
    grid-column: auto;
  }
}

/* ------------------------------------------------------------------------
---------------------料金表とか---------------------------------------- */
/* 料金ページ：section間の上部余白（h2のmargin-topで管理） */
.p-price > .p-lower__section + .p-lower__section {
  margin-top: 0;
}
@media screen and (max-width:767px) {
  .p-price > .p-lower__section + .p-lower__section {
    margin-top: 0;
  }
}

/* 料金ページ：テーブル直後の注釈テキスト（gap差し引きで24px） */
.p-price .price-table-wrap + .p-text {
  margin-top: -16px; /* gap 40px + (-16px) = 24px */
}
@media screen and (max-width:767px) {
  .p-price .price-table-wrap + .p-text {
    margin-top: 4px; /* gap 20px + 4px = 24px */
  }
}

/* 前歯・奥歯などのサブ見出し（クラスなしh3） */
.p-price h3:not([class]) {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  margin-bottom: calc(10px - 2.5rem);
}
@media screen and (max-width:767px) {
  .p-price h3:not([class]) {
    font-size: 1.25rem;
    margin-bottom: calc(10px - 1.25rem);
  }
}
.price-table-wrap {
  width: 100%;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #D9D9D9;
  font-size: 1rem;
}

/* ヘッダー */
.price-table thead th {
  background: #E9E9E9;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  border: 1px solid #D9D9D9;
}

/* セル */
.price-table td,
.price-table tbody th {
  padding: 1.25rem 1.5rem;
  border: 1px solid #D9D9D9;
  text-align: left;
}

/* 左列 */
.price-table tbody th {
  background: #E9E9E9;
  font-weight: 700;
  width: 30%;
}

/* 中央列・右列を均等幅 */
.price-table td {
  width: 35%;
}
/* 全セル上揃え */
.price-table td,
.price-table th {
  vertical-align: top;
}
/* 詳細リスト */
.price-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.price-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.6;
}
.price-detail-list li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: #787878;
  margin-top: .6em;
}
/* 料金ページ・ホワイトニングページ共通：列幅（280 / 619 / 200 比率） */
.p-price .price-table tbody th,
.p-price .price-table thead th:first-child,
.p-whitening .price-table tbody th,
.p-whitening .price-table thead th:first-child,
.p-kidskyousei .price-table tbody th,
.p-kidskyousei .price-table thead th:first-child {
  width: 25.5%;
}
.p-price .price-table td:first-of-type,
.p-price .price-table thead th:nth-child(2),
.p-whitening .price-table td:first-of-type,
.p-whitening .price-table thead th:nth-child(2),
.p-kidskyousei .price-table td:first-of-type,
.p-kidskyousei .price-table thead th:nth-child(2) {
  width: 56.3%;
}
.p-price .price-table td:last-of-type,
.p-price .price-table thead th:last-child,
.p-whitening .price-table td:last-of-type,
.p-whitening .price-table thead th:last-child,
.p-kidskyousei .price-table td:last-of-type,
.p-kidskyousei .price-table thead th:last-child {
  width: 18.2%;
}

@media screen and (max-width:767px) {
  .price-table {
    width: 100%;
    font-size: .875rem;
  }
  .price-table thead th,
  .price-table td,
  .price-table tbody th {
    padding: .9rem .75rem;
  }
  /* 料金ページ・ホワイトニングページ・小児矯正ページ共通SP：フォント12px・padding 10px・列幅（80/175/95比率） */
  .p-price .price-table,
  .p-whitening .price-table,
  .p-kidskyousei .price-table {
    font-size: 12px;
  }
  .p-price .price-table thead th,
  .p-price .price-table td,
  .p-price .price-table tbody th,
  .p-whitening .price-table thead th,
  .p-whitening .price-table td,
  .p-whitening .price-table tbody th,
  .p-kidskyousei .price-table thead th,
  .p-kidskyousei .price-table td,
  .p-kidskyousei .price-table tbody th {
    padding: 10px;
  }
  .p-price .price-table tbody th,
  .p-price .price-table thead th:first-child,
  .p-whitening .price-table tbody th,
  .p-whitening .price-table thead th:first-child,
  .p-kidskyousei .price-table tbody th,
  .p-kidskyousei .price-table thead th:first-child {
    width: 22.9%;
  }
  .p-price .price-table td:first-of-type,
  .p-price .price-table thead th:nth-child(2),
  .p-whitening .price-table td:first-of-type,
  .p-whitening .price-table thead th:nth-child(2),
  .p-kidskyousei .price-table td:first-of-type,
  .p-kidskyousei .price-table thead th:nth-child(2) {
    width: 50%;
  }
  .p-price .price-table td:last-of-type,
  .p-price .price-table thead th:last-child,
  .p-whitening .price-table td:last-of-type,
  .p-whitening .price-table thead th:last-child,
  .p-kidskyousei .price-table td:last-of-type,
  .p-kidskyousei .price-table thead th:last-child {
    width: 27.1%;
  }
}

/* 比較テーブル（4列：140px + 320px×3） */
.price-table--compare {
  table-layout: fixed;
}

.price-table--compare thead th,
.price-table--compare tbody th,
.price-table--compare td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}

.price-table--compare thead th:first-child,
.price-table--compare tbody th {
  width: 140px;
}

.price-table--compare thead th:not(:first-child),
.price-table--compare td {
  width: 320px;
}

@media screen and (max-width: 767px) {
  .price-table-wrap:has(.price-table--compare) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-table--compare {
    min-width: 700px;
  }
}

/* ------------------------------------------------------------------------
---------------------求人に関するご案内---------------------------------------- */
.youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube-wrap--short {
  padding-top: 0;
  aspect-ratio: 163/66;
}

.youtube-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-wrap--short iframe {
  position: static;
  aspect-ratio: 163/66;
}
}

/* ------------------------------------------------------------------------
---------------------採用ページカード一覧----------------------------------- */
.recruit-movie-block {
  display: flex;
  flex-direction: column;
}

.recruit-movie-block__text {
  order: 1;
  line-height: 30px;
}

.recruit-movie-block__video {
  order: 2;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .recruit-movie-block {
    display: flex;
    flex-direction: column;
  }

  .recruit-movie-block__text {
    order: 2;
    font-size: 0.875rem;
  }

  .recruit-movie-block__video {
    order: 1;
    margin-top: 0;
  }
}

.recruit-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.recruit-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.recruit-card__image {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.recruit-card__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.recruit-card__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.75rem;
  padding: 0.75rem 2.75rem 0.75rem 0.75rem;
  background: #787878;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: .03em;
  box-sizing: border-box;
}

.recruit-card__button .sp-br {
  display: none;
}

/* 右の白丸 */
.recruit-card__button::after {
  content: "";
  position: absolute;
  right: 2.4rem;
  top: 50%;
  width: 25px;
  height: 25px;
  background: #FFFFFF;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* グレー矢印 */
.recruit-card__button::before {
  content: "";
  position: absolute;
  right: 3.03rem;
  top: 50%;
  width: 0.28rem;
  height: 0.28rem;
  border-top: 2px solid #787878;
  border-right: 2px solid #787878;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.recruit-card:hover .recruit-card__button {
  background: #0050A2;
}

@media screen and (max-width: 768px) {
  .recruit-card-grid {
    gap: 0.75rem;
  }

  .recruit-card__button {
    height: 3.375rem;
    /* 54px */
    min-height: auto;
    padding: 0 0.75rem;
    font-size: 0.75rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .recruit-card__button .sp-br {
    display: block;
  }

  .recruit-card__button::after {
    right: 0.75rem;
    width: 1.125rem;
    height: 1.125rem;
  }

  .recruit-card__button::before {
    right: 1.15rem;
    width: 0.3rem;
    height: 0.3rem;
  }
}

/* ------------------------------------------------------------------------
---------------------採用お問い合わせボタン---------------------------------- */
.recruit-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.recruit-contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.3125rem;
  padding: 1rem 4.5rem;
  border-radius: 0.3125rem;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: background-color .6s ease, color .6s ease, border-color .6s ease, opacity .6s ease;
}

.recruit-contact-btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 1.75rem;
  height: 1.75rem;
  background: #FFFFFF;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background-color .6s ease, color .6s ease, border-color .6s ease, opacity .6s ease;
}

.recruit-contact-btn::before {
  content: "";
  position: absolute;
  right: 2.2rem;
  top: 50%;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 0.125rem solid currentColor;
  border-right: 0.125rem solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
  transition: background-color .6s ease, color .6s ease, border-color .6s ease, opacity .6s ease;
}

.recruit-contact-btn:hover {
  opacity: 0.65;
}

@media screen and (max-width: 767px) {
  .recruit-contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .recruit-contact-btn {
    min-height: 3.4375rem;
    padding: 0.875rem 3.75rem;
    font-size: 1rem;
  }

  .recruit-contact-btn::after {
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
  }

  .recruit-contact-btn::before {
    right: 1.55rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}

/* カラー */
.recruit-contact-btn--pink {
  background: #E10078;
}

.recruit-contact-btn--pink::before {
  border-top-color: #E10078;
  border-right-color: #E10078;
}

.recruit-contact-btn--blue {
  background: #005194;
}

.recruit-contact-btn--blue::before {
  border-top-color: #005194;
  border-right-color: #005194;
}

.recruit-contact-btn--orange {
  background: #ED7300;
}

.recruit-contact-btn--orange::before {
  border-top-color: #ED7300;
  border-right-color: #ED7300;
}

.recruit-contact-btn--green {
  background: #009F7D;
}

.recruit-contact-btn--green::before {
  border-top-color: #009F7D;
  border-right-color: #009F7D;
}

.banner-link {
  display: block;
}

.banner-link img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .p-lower-btn-line + .banner-link {
    margin-top: 12px;
  }
}

/* ------------------------------------------------------------------------
---------------------4つのコンセプト---------------------------------- */
/* コンセプトの表 */
.concept-panels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 1ブロック */
.concept-panel {
  --panel-color: #787878;
  /* 帯の色（デフォ） */
  --panel-bg: #f5f5f5;
  /* 本文背景（デフォ） */
}

/* 色バリエーション（必要なら色コードは後で調整OK） */
.concept-panel--pink {
  --panel-color: #E10078;
  --panel-bg: #FFF5FB;
}

.concept-panel--blue {
  --panel-color: #005194;
  --panel-bg: #F2F9FF;
}

.concept-panel--orange {
  --panel-color: #ED7300;
  --panel-bg: #FFF7EF;
}

.concept-panel--green {
  --panel-color: #009F7D;
  --panel-bg: #F2FFFC;
}

/* タイトル帯 */
.concept-panel__title {
  margin: 0;
  padding: 1.25rem 1.75rem;
  background: var(--panel-color);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .05em;
}

/* 本文エリア */
.concept-panel__body {
  background: var(--panel-bg);
  padding: 1.5rem 1.75rem 1.75rem;
}

/* 本文 */
.concept-panel__text {
  margin: 0;
  color: #333;
  line-height: 1.8;
}

/* 段落間 */
.concept-panel__text+.concept-panel__text {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .concept-panels {
    gap: 1.25rem;
  }

  .concept-panel__title {
    font-size: 1.125rem;
    padding: .75rem 1rem;
  }

  .concept-panel__body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .concept-panel__text {
    font-size: .875rem;
  }
}

/* =========================
  執筆協力書籍 p-concept-publications
   ========================= */

.p-concept-publications__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 3rem;
  /* row / column */
  align-items: start;
}

.p-concept-publications__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-concept-publications__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  /* 共通の .container img の margin を打ち消す */
}

.p-concept-publications__text {
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

/* SP：2列 */
@media screen and (max-width: 767px) {
  .p-concept-publications__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
  }

  .p-concept-publications__item {
    gap: .75rem;
  }

  .p-concept-publications__text {
    font-size: .875rem;
    line-height: 1.7;
  }
}

.p-message .p-text {
  margin-top: 1rem;
}

/* 0315追加 */
.p-message .p-mt-none { margin-top: 0; }

/* ------------------------------------------------------------------------
---------------------管理型歯科医師臨床研修プログラム---------------------------------- */
/* 3つ並びのページ内ジャンプ*/
.p-program-jump {
  margin-top: -40px;
  margin-bottom: -120px;
}

.p-program-jump__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3rem;
  align-items: center;
}

.p-program-jump__item {
  margin: 0;
}

.p-program-jump__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0.75rem 0.25rem;
  color: #00987D;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;

  border-bottom: 1px solid #00987D;
}

/* 右の▼（V字） */
.p-program-jump__link::after {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* SP：2列で左寄せ */
@media screen and (max-width: 767px) {
  .p-program-jump {
    margin-bottom: -30px;
  }

  .p-program-jump__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    row-gap: 1rem;
    justify-content: start;
  }

  .p-program-jump__link {
    font-size: 0.75rem;
    padding: 0.65rem 0.15rem;
  }

  .p-program-jump__link::after {
    width: 0.4rem;
    height: 0.4rem;
  }
}

/* ------------------------------------------------------------------------
---------------------募集要項---------------------------------- */
/* -------------------------
   採用ページ用ジャンプナビ
   PC:4列 / SP:2列
------------------------- */
.p-job-jump__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 3rem;
  align-items: center;
}

.p-job-jump__item {
  margin: 0;
}

.p-job-jump__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0.75rem 0.25rem;
  color: #005194;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  border-bottom: 1px solid #005194;
}

/* 右の▼（V字） */
.p-job-jump__link::after {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* SP：2列で左寄せ */
@media screen and (max-width: 767px) {
  .p-job-jump__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    row-gap: 1rem;
    justify-content: start;
  }

  /* 0315修正 */
  .p-job-jump__link {
    font-size: 0.75rem;
    padding: 0 0.15rem 0.65rem 0.15rem;
  }

  .p-job-jump__link::after {
    width: 0.4rem;
    height: 0.4rem;
  }
}

.p-job-jump-btn-p {
  margin-top: 1rem;
  color: #ED7300;
}

@media screen and (min-width: 768px) {
  .p-job-jump-btn-p {
    margin-top: -30px;
  }
}

@media screen and (max-width: 767px) {
  .p-job-jump-btn-p {
    margin-top: -10px;
    font-size: 0.875rem;
  }
}

/* ------------------------------------------------------------------------
---------------------インプラント治療方法---------------------------------- */
.p-implant-treatment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.p-implant-treatment__item {
  /* text-align: center; */
}

.p-implant-treatment__title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}

.p-implant-treatment__image img {
  width: 100%;
  height: auto;
  margin: 0;
}

.p-implant-treatment__text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  text-align: left;
}

/* SP */

@media screen and (max-width: 767px) {

  .p-implant-treatment {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .p-implant-treatment__title {
    font-size: 1rem;
  }

  .p-implant-treatment__text {
    font-size: 0.875rem;
  }

}

/* ----------------------設備紹介グリッド---------------------------------------
---------------------安全な日帰り全身麻酔施設ライフメディカル歯科口腔外科NORTH八潮---------------------------------- */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 5rem;
  row-gap: 0;
}

.facility-grid__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.facility-grid__title {
  align-self: start;
  margin: 0 0 1.5rem;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.facility-grid__photo {
  margin-bottom: 1.5rem;
}

.facility-grid__photo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.facility-grid__text {
  margin: 0 0 3rem;
  color: #333333;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 0;
  }

  .facility-grid__title {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }

  .facility-grid__photo {
    margin-bottom: 1rem;
  }

  .facility-grid__text {
    font-size: 0.875rem;
    line-height: 1.9;
    margin-bottom: 2rem;
  }
}

/* ------------------------------------------------------------------------
---------------------インプラントの症例集---------------------------------- */
.p-implant-case-intro {
  padding: 2.5rem;
  background: #F5F5F5;
}

.p-implant-case-intro__title {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #787878;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.p-implant-case-intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.p-implant-case-intro__image img {
  width: 100%;
  height: auto;
}

.p-implant-case-intro__body p {
  margin: 0;
  line-height: 2;
  padding-bottom: 1rem;
}

@media screen and (max-width: 767px) {

  .p-implant-case-intro {
    padding: 1.5rem 1.25rem;
  }

  .p-implant-case-intro__title {
    font-size: 1.125rem;
  }

  .p-implant-case-intro__content {
    grid-template-columns: 1fr;
    /* 1列にする */
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .p-implant-case-intro__body p {
    font-size: 0.875rem;
    line-height: 1.9;
  }

}

/* インプラントの症例集ボタン */
.p-implant-case-intro__btn {
  position: relative;
  display: block;
  padding: 1.25rem 4.5rem 1.25rem 1.75rem;
  border-radius: .31rem;
  color: #fff;
  background: #787878;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .03em;
  text-decoration: none;
  transition: background-color .3s ease;
}

/* 右の白丸 */
.p-implant-case-intro__btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 1.55rem;
  height: 1.55rem;
  background: #fff;
  border-radius: 45%;
  transform: translateY(-50%);
}

/* 矢印（＞ 向き） */
.p-implant-case-intro__btn::before {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: .5rem;
  height: .5rem;
  border-top: 2px solid #787878;
  border-right: 2px solid #787878;
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}

.p-implant-case-intro__btn:hover {
  background: #0050A2;
}

@media screen and (max-width:767px) {
  .p-implant-case-intro__btn {
    padding: 1rem 3.75rem 1rem .5rem;
    font-size: 14px;
  }

  .p-implant-case-intro__btn::before {
    right: 1.7rem;
  }

  .p-implant-case-intro__btn::after {
    width: 2rem;
    height: 2rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .p-lower-btn::before {
    right: 1.5rem;
    width: .25rem;
    height: .25rem;
  }

  .p-lower-btn::after {
    width: 20px;
    height: 20px;
    right: 1rem;
  }
}

/* クリニック一覧はこちら */
.p-implant .p-information__center_bottom p {
  margin-top: 1rem;
}

.p-implant .p-information__center_bottom p a,
.p-kensyu .p-information__center_bottom a {
  position: relative;
  display: inline-block;
  color: #0050A2;
  text-decoration: underline;
  text-decoration-color: #0050A2;
  text-underline-offset: 4px;
  padding-right: 20px;
  line-height: 1.4;
}

/* 右向き矢印（疑似要素） */
.p-implant .p-information__center_bottom p a::after,
.p-kensyu .p-information__center_bottom a::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 7px;
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid #005194;
  border-right: 1.5px solid #005194;
  transform: rotate(-45deg);
}

/* 矢印付きリンク（オレンジ版） */
.p-arrow-link--orange {
  position: relative;
  display: inline-block;
  color: #ed7300;
  text-decoration: underline;
  text-decoration-color: #ed7300;
  text-underline-offset: 4px;
  padding-right: 20px;
  line-height: 1.4;
}

.p-arrow-link--orange::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 7px;
  width: 8px;
  height: 8px;
  border-bottom: 1.5px solid #ed7300;
  border-right: 1.5px solid #ed7300;
  transform: rotate(-45deg);
}


/* ------------------------------------------------------------------------
---------------------診療案内ページ---------------------------------- */

.p-guide .p-guide__tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 0;
}

.p-guide .p-guide__tab {
  width: 515px;
  height: 76px;
  border: none;
  border-radius: 14px 14px 0 0;
  background: #e8ece9;
  color: #48a289;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

/* 非アクティブ時の文字色 */
.p-guide .p-guide__tab[data-tab="insurance"] {
  color: #2459ad;
}

.p-guide .p-guide__tab[data-tab="private"] {
  color: #49a48c;
}

.p-guide .p-guide__tab:hover {
  opacity: 0.9;
}

/* 保険タブがアクティブ */
.p-guide .p-guide__tab[data-tab="insurance"].is-active {
  background: #2459ad;
  color: #ffffff;
}

/* 自費タブがアクティブ */
.p-guide .p-guide__tab[data-tab="private"].is-active {
  background: #49a48c;
  color: #ffffff;
}

.p-guide .p-guide__wrap {
  width: 100%;
  margin-bottom: 100px;
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

/* 保険診療表示中 */
.p-guide .p-guide__wrap.is-insurance {
  background: #eff1f4;
  border-top: 1px solid #5f8ed8;
  border-bottom: 1px solid #5f8ed8;
}

/* 自費診療表示中 */
.p-guide .p-guide__wrap.is-private {
  background: #edf5f2;
  border-top: 1px solid #8bcbbb;
  border-bottom: 1px solid #8bcbbb;
}

/* パネル自体は背景なしでOK */
.p-guide .p-guide__panel--insurance,
.p-guide .p-guide__panel--private {
  display: none;
}

.p-guide .p-guide__panel.is-active {
  display: block;
}

.p-guide .p-guide__body {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  padding-top: 58px;
  padding-bottom: 74px;
}

.p-guide .p-guide__menu {
  width: 530px;
  flex-shrink: 0;
}

.p-guide .p-guide__visual-wrap {
  width: 530px;
  height: 680px;
  flex-shrink: 0;
}

.p-guide .p-guide__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-guide .p-guide__item + .p-guide__item {
  margin-top: 20px;
}

.p-guide .p-guide__button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  height: 60px;
  padding: 15px 20px;
  border: 1px solid #9f9f9f;
  border-radius: 10px;
  background: #ffffff;
  color: #333333;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  transform-origin: center;
  box-sizing: border-box;
}

.p-guide .p-guide__button:hover,
.p-guide .p-guide__button:focus-visible {
  transform: scale(1.03);
  outline: none;
}

/* 保険 */
.p-guide .p-guide__panel--insurance .p-guide__button:hover,
.p-guide .p-guide__panel--insurance .p-guide__button:focus-visible,
.p-guide .p-guide__panel--insurance .p-guide__button.is-current {
  border-color: #2459ad;
}

/* 自費 */
.p-guide .p-guide__panel--private .p-guide__button:hover,
.p-guide .p-guide__panel--private .p-guide__button:focus-visible,
.p-guide .p-guide__panel--private .p-guide__button.is-current {
  border-color: #49a48c;
}

.p-guide .p-guide__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.p-guide .p-guide__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-guide .p-guide__label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
}

.p-guide .p-guide__visual {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
  background: #dddddd;
}

.p-guide .p-guide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-guide .p-guide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* 保険 */
.p-guide .p-guide__panel--insurance .p-guide__overlay {
  background: rgba(36, 89, 173, 0.58);
}

/* 自費 */
.p-guide .p-guide__panel--private .p-guide__overlay {
  background: rgba(73, 164, 140, 0.58);
}

.p-guide .p-guide__visual.is-show-overlay .p-guide__overlay {
  opacity: 1;
  visibility: visible;
}

.p-guide .p-guide__overlay-content {
  width: 100%;
  max-width: 420px;
  color: #ffffff;
  text-align: center;
}

.p-guide .p-guide__overlay-title {
  display: none;
}

.p-guide .p-guide__overlay-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
	white-space: pre-line;
}

@media screen and (max-width: 767px) {
  .p-guide {
    display: block;
  }

  .p-guide__inner-top100 {
    padding-top: 10px;
  }

  .p-guide .p-guide__tabs {
    gap: 0.625rem;
    padding: 0 0.625rem;
  }

  .p-guide .p-guide__tab {
    width: calc(50% - 0.3125rem);
    height: 3.125rem;
    border-radius: 0.875rem 0.875rem 0 0;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  .p-guide .p-guide__wrap {
    margin-bottom: 50px;
  }

  .p-guide .p-guide__wrap.is-insurance {
    border-top: 0.0625rem solid #5f8ed8;
    border-bottom: 0.0625rem solid #5f8ed8;
  }

  .p-guide .p-guide__wrap.is-private {
    border-top: 0.0625rem solid #8bcbbb;
    border-bottom: 0.0625rem solid #8bcbbb;
  }

  .p-guide .p-guide__body {
    display: block;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .p-guide .p-guide__menu {
    width: 100%;
    height: 25.875rem;
  }

  .p-guide .p-guide__visual-wrap {
    display: none;
  }

  .p-guide .p-guide__list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 25.875rem;
  }

  .p-guide .p-guide__item {
    height: 2.6875rem;
  }

  .p-guide .p-guide__item + .p-guide__item {
    margin-top: 0;
  }

  .p-guide .p-guide__button {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    width: 100%;
    height: 100%;
    min-height: auto;
    padding: 0.625rem 0.9375rem;
    border-radius: 0.625rem;
    transform: none;
    box-sizing: border-box;
  }

  .p-guide .p-guide__button:hover,
  .p-guide .p-guide__button:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .p-guide .p-guide__icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .p-guide .p-guide__label {
    font-size: 1rem;
    line-height: 1.2;
  }

  .p-guide .p-guide__overlay,
  .p-guide .p-guide__visual,
  .p-guide .p-guide__image {
    display: none;
  }
}
/* ------------------------------------------------------------------------
---------------------症状別で治療法を探す----------------------------------
*/
.p-case-search .p-case-search__inner {
  position: relative;
}

.p-case-search .p-case-search__wrap {
  width: 100%;
  overflow: hidden;
}

.p-case-search .p-case-search__body {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 2.5rem;
  padding-top: 3.625rem;
  padding-bottom: 4.625rem;
}

.p-case-search .p-case-search__menu {
  width: 33.125rem;
  height: 43.75rem;
  /* 700px */
  flex-shrink: 0;
}

.p-case-search .p-case-search__visual-wrap {
  width: 33.125rem;
  height: 43.75rem;
  /* 700px */
  flex-shrink: 0;
}

.p-case-search .p-case-search__list {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-case-search .p-case-search__item+.p-case-search__item {
  margin-top: 0;
}

.p-case-search .p-case-search__button {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  min-height: 3.625rem;
  padding: 0.8125rem 1.25rem;
  border: 0.0625rem solid #9f9f9f;
  border-radius: 0.625rem;
  background: #ffffff;
  color: #333333;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  transform-origin: center;
}

.p-case-search .p-case-search__button:hover,
.p-case-search .p-case-search__button:focus-visible {
  transform: scale(1.03);
  border-color: #787878;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #333333;
  outline: none;
}

.p-case-search .p-case-search__button.is-current {
  border-color: #787878;
}

.p-case-search .p-case-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
}

.p-case-search .p-case-search__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-case-search .p-case-search__label {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
}

.p-case-search .p-case-search__visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #dddddd;
}

.p-case-search .p-case-search__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-case-search .p-case-search__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: rgba(120, 120, 120, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.p-case-search .p-case-search__visual.is-show-overlay .p-case-search__overlay {
  opacity: 1;
  visibility: visible;
}

.p-case-search .p-case-search__overlay-content {
  width: 100%;
  max-width: 26.25rem;
  color: #ffffff;
  text-align: center;
}

.p-case-search .p-case-search__overlay-text {
  margin: 0;
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
  color: #ffffff;
	 white-space: pre-line;
}

.p-case-search-bg {
  background: #FAFAFA;
}

@media screen and (max-width: 767px) {
    .p-case-search .p-case-search__body {
    display: block;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .p-case-search .p-case-search__menu {
    width: 100%;
    height: 29.1875rem;   /* 467px */
    margin: 0 auto;
  }

  .p-case-search .p-case-search__visual-wrap {
    display: none;
  }

  .p-case-search .p-case-search__item+.p-case-search__item {
    margin-top: 0;
  }

  .p-case-search .p-case-search__button {
    gap: 0.3125rem;
    min-height: 2.6875rem;
    padding: 0.625rem 0.9375rem;
    border-radius: 0.625rem;
    transform: none;
  }

  .p-case-search .p-case-search__button:hover,
  .p-case-search .p-case-search__button:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .p-case-search .p-case-search__icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .p-case-search .p-case-search__label {
    font-size: 1rem;
    line-height: 1.5;
  }
    .p-case-search .p-case-search__list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* =========================
 FAQ アコーディオン
========================= */
.p-faq__item {
  border: 1px solid #E9E9E9;
  background: #F7F7F7;
}

.p-faq__item + .p-faq__item {
  margin-top: 24px;
}

/* 質問 */
.p-faq__question {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem 1rem 4rem;
  background: #E9E9E9;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* Qアイコン */
.p-faq__question::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-image: url("https://identalofficeimai.asogi-test.xyz/wp-content/uploads/2026/03/Frame-8482.webp");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-faq__q {
  font-weight: 700;
  color: #333;
}

.p-faq__text {
  font-size: 1.5rem;
  font-weight: 700;
}

/* 矢印（::after疑似要素 — spanが無くても表示） */
.p-faq__question::after {
  content: "";
  display: inline-block;
  margin-left: auto;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: .3s;
}

/* spanが残っている場合は::afterを非表示 */
.p-faq__question:has(.p-faq__arrow)::after {
  display: none;
}

/* 矢印（span版 — 互換） */
.p-faq__arrow {
  display: inline-block;
  margin-left: auto;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: .3s;
}

/* 開いた状態 */
.p-faq__item.is-open .p-faq__answer {
  display: block;
}

.p-faq__item.is-open .p-faq__question::after {
  transform: rotate(-135deg);
}

.p-faq__item.is-open .p-faq__arrow {
  transform: rotate(-135deg);
}

/* 回答 */
.p-faq__answer {
  display: none;
  padding: 1.5rem;
  background: #F5F5F5;
}

.p-faq__lead {
  color: #E10078;
  font-weight: 700;
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.p-faq__answer p {
  margin: 0 0 1rem;
  line-height: 1.9;
}

.p-hygiene__heading {
  font-weight: 600;
  margin-top: 15px !important;
}

.p-hygiene__heading::before {
  content: "■ ";
  color: #787878;
}

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

@media screen and (max-width: 767px) {

  /* 質問（グレー帯） */
  .p-faq__question {
    padding: .875rem 1rem .875rem 3.25rem;
    /* 左を詰める */
  }

  /* Qアイコン（疑似要素） */
  .p-faq__question::before {
    left: .875rem;
    width: 25px;
    height: 25px;
  }

  /* 質問テキスト */
  .p-faq__text {
    font-size: 1.125rem;
    line-height: 1.4;
  }

  /* 矢印 */
  .p-faq__arrow {
    width: 7px;
    height: 7px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  /* 回答エリア */
  .p-faq__answer {
    padding: 1.25rem 1.25rem 1.5rem;
    /* 350px幅でも詰まりすぎない */
  }

  /* ピンクのリード */
  .p-faq__lead {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 .875rem;
  }

  /* 本文 */
  .p-faq__answer p {
    font-size: .875rem;
    line-height: 1.9;
    margin: 0 0 .875rem;
  }
}

/* =========================
   FAQ アイコン無し版（既存の流用）
========================= */
.p-faq--noicon .p-faq__question {
  padding-left: 1.25rem;
  /* 4rem → アイコン分を戻す */
}

.p-faq--noicon .p-faq__question::before {
  display: none;
  /* Qアイコン消す */
}

@media screen and (max-width: 767px) {
  .p-faq--noicon .p-faq__question {
    padding-left: 1rem;
    /* SPもアイコン分を戻す */
  }

  .p-faq--noicon .p-faq__question::before {
    display: none;
  }
}

/* ------------------------------------------------------------------------
---------------------診療案内ページ---------------------------------- */
.p-guide .p-guide__inner {
  position: relative;
}
.p-guide__inner-top100 {
  padding-top: 76px;
}
.p-guide .p-guide__tabs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 0;
}

.p-guide .p-guide__tab {
  width: 515px;
  height: 76px;
  border: none;
  border-radius: 14px 14px 0 0;
  background: #e8ece9;
  color: #48a289;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

/* 非アクティブ時の文字色 */
.p-guide .p-guide__tab[data-tab="insurance"] {
  color: #2459ad;
}

.p-guide .p-guide__tab[data-tab="private"] {
  color: #49a48c;
}

.p-guide .p-guide__tab:hover {
  opacity: 0.9;
}

/* 保険タブがアクティブ */
.p-guide .p-guide__tab[data-tab="insurance"].is-active {
  background: #2459ad;
  color: #ffffff;
}

/* 自費タブがアクティブ */
.p-guide .p-guide__tab[data-tab="private"].is-active {
  background: #49a48c;
  color: #ffffff;
}

.p-guide .p-guide__wrap {
  width: 100%;
  margin-bottom: 100px;
  overflow: hidden;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

/* 保険診療表示中 */
.p-guide .p-guide__wrap.is-insurance {
  background: #eff1f4;
  border-top: 1px solid #5f8ed8;
  border-bottom: 1px solid #5f8ed8;
}

/* 自費診療表示中 */
.p-guide .p-guide__wrap.is-private {
  background: #edf5f2;
  border-top: 1px solid #8bcbbb;
  border-bottom: 1px solid #8bcbbb;
}

/* パネル自体は背景なしでOK */
.p-guide .p-guide__panel--insurance,
.p-guide .p-guide__panel--private {
  display: none;
}

.p-guide .p-guide__panel.is-active {
  display: block;
}

.p-guide .p-guide__body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  padding-top: 58px;
  padding-bottom: 74px;
}

.p-guide .p-guide__menu {
  width: 506px;
  flex-shrink: 0;
}

.p-guide .p-guide__visual-wrap {
  width: 506px;
  flex-shrink: 0;
}

.p-guide .p-guide__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-guide .p-guide__item + .p-guide__item {
  margin-top: 20px;
}

.p-guide .p-guide__button {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 13px 20px;
  border: 1px solid #9f9f9f;
  border-radius: 10px;
  background: #ffffff;
  color: #333333;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  transform-origin: center;
}

.p-guide .p-guide__button:hover,
.p-guide .p-guide__button:focus-visible {
  transform: scale(1.03);
  outline: none;
}

/* 保険 */
.p-guide .p-guide__panel--insurance .p-guide__button:hover,
.p-guide .p-guide__panel--insurance .p-guide__button:focus-visible,
.p-guide .p-guide__panel--insurance .p-guide__button.is-current {
  border-color: #2459ad;
}

/* 自費 */
.p-guide .p-guide__panel--private .p-guide__button:hover,
.p-guide .p-guide__panel--private .p-guide__button:focus-visible,
.p-guide .p-guide__panel--private .p-guide__button.is-current {
  border-color: #49a48c;
}

.p-guide .p-guide__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.p-guide .p-guide__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-guide .p-guide__label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
}

.p-guide .p-guide__visual {
  position: relative;
  width: 100%;
  height: 648px;
  overflow: hidden;
  background: #dddddd;
}

.p-guide .p-guide__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-guide .p-guide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* 保険 */
.p-guide .p-guide__panel--insurance .p-guide__overlay {
  background: rgba(36, 89, 173, 0.58);
}

/* 自費 */
.p-guide .p-guide__panel--private .p-guide__overlay {
  background: rgba(73, 164, 140, 0.58);
}

.p-guide .p-guide__visual.is-show-overlay .p-guide__overlay {
  opacity: 1;
  visibility: visible;
}

.p-guide .p-guide__overlay-content {
  width: 100%;
  max-width: 420px;
  color: #ffffff;
  text-align: center;
}

.p-guide .p-guide__overlay-title {
  display: none;
}

.p-guide .p-guide__overlay-text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-guide {
    display: block;
  }

  .p-guide__inner-top100 {
  padding-top: 10px;
}
  .p-guide .p-guide__tabs {
    gap: 0.625rem;
    padding: 0 0.625rem;
  }

  .p-guide .p-guide__tab {
    width: calc(50% - 0.3125rem);
    height: 3.125rem;
    border-radius: 0.875rem 0.875rem 0 0;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
.p-guide .p-guide__wrap {
  margin-bottom: 50px;
}
  .p-guide .p-guide__wrap.is-insurance {
    border-top: 0.0625rem solid #5f8ed8;
    border-bottom: 0.0625rem solid #5f8ed8;
  }

  .p-guide .p-guide__wrap.is-private {
    border-top: 0.0625rem solid #8bcbbb;
    border-bottom: 0.0625rem solid #8bcbbb;
  }

  .p-guide .p-guide__body {
    display: block;
    padding-top: 1.125rem;
    padding-bottom: 2.375rem;
  }

  .p-guide .p-guide__menu {
    width: 100%;
  }

  .p-guide .p-guide__visual-wrap {
    display: none;
  }

  .p-guide .p-guide__item + .p-guide__item {
    margin-top: 0.625rem;
  }

  .p-guide .p-guide__button {
    gap: 0.3125rem;
    min-height: auto;
    padding: 0.625rem 0.9375rem;
    border-radius: 0.625rem;
    transform: none;
  }

  .p-guide .p-guide__button:hover,
  .p-guide .p-guide__button:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .p-guide .p-guide__icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .p-guide .p-guide__label {
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-guide .p-guide__overlay,
  .p-guide .p-guide__visual,
  .p-guide .p-guide__image {
    display: none;
  }
}
























/* archive アーカイブ ページのCSS */
.p-archive__inner {
  padding-bottom: 6.25rem;
  padding-top: 3.75rem
}

@media screen and (max-width:767px) {
  .p-archive__inner {
    padding-bottom: 3.125rem;
    padding-top: 1.875rem
  }
}

.p-archive__tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 60px;
}

/* SP：2列にする */
@media screen and (max-width: 767px) {
  .p-archive__tabs {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    gap: .625rem;
    margin-bottom: 40px;
  }

  .p-archive__tab {
    width: 100%;
    text-align: center;
  }
}

.p-archive__tab {
  background: #f4f4f4;
  border-radius: 999px;
  display: grid;
  font-size: 1.25rem;
  font-weight: 500;
  height: 3.75rem;
  line-height: 1.45;
  place-items: center;
  position: relative;
  width: 16.125rem
}

@media screen and (max-width:767px) {
  .p-archive__tab {
    font-size: .875rem;
    height: 2.19rem;
    line-height: 1.4285714286;
    width: 100%;
  }
}

.p-archive__tab a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.p-archive__tab.p-archive__current {
  background: #333333;
  color: #fff;
}

.p-archive__tab.p-archive__current a {
  color: #fff;
}

/* blogページで選択中（活動報告） */
.post-type-archive-news .p-archive__tab.p-archive__current {
  background: #00987D;
}

/* blogページで選択中（活動報告） */
.post-type-archive-blog .p-archive__tab.p-archive__current {
  background: #E10078;
}

/* sampleページで選択中（症例） */
.post-type-archive-sample .p-archive__tab.p-archive__current {
  background: #0050A2;
}


/* ------------------------------------------------------------
--------------TOP用のタブデザイン----------------------------- */
.p-top-archive-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0;
  list-style: none;
}

.p-top-archive-tabs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.9375rem;
  background: #EAF4F2;
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.p-top-archive-tabs__item button {
  appearance: none;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 3.9375rem;
  padding: 0.75rem 1rem;
  color: #00987D;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* current共通 */
.p-top-archive-tabs__item.is-current button {
  color: #fff;
}

/* タブごとの選択色 */
.p-top-archive-tabs__item.is-news.is-current {
  background: #00987D;
}

.p-top-archive-tabs__item.is-blog.is-current {
  background: #E10078;
}

.p-top-archive-tabs__item.is-sample.is-current {
  background: #0050A2;
}

.p-top-archive-tabs__item.is-all.is-current {
  background: #00987D;
}

@media screen and (max-width: 767px) {
  .p-top-archive-tabs {
    gap: 0.625rem;
    max-width: 95%;
  }

  .p-top-archive-tabs__item {
    min-height: 2.8125rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

/* 	0316修正 */
 .p-top-archive-tabs__item button {
    min-height: 2.8125rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
  }
}


.p-top-news__panel {
  display: none;
}

.p-top-news__panel.is-active {
  display: block;
}









#p-access02 p {
  line-height: 1.875rem;
}


@media screen and (max-width:767px) {
  .p-archive__contents {
    margin-top: 1.875rem
  }

  #p-access02 p {
    font-size: 0.875rem;
  }
}

.p-archive__cards {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  list-style: none;
}

@media screen and (max-width:767px) {
  .p-archive__cards {
    gap: .6875rem
  }
}

.p-archive__card {
  border-bottom: .0625rem solid #dfdfdf;
  padding-bottom: 1.5rem;
  width: 100%
}

@media screen and (max-width:767px) {
  .p-archive__card {
    padding-bottom: .75rem
  }
}

.p-archive__card:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.p-archive__wrap {
  display: flex;
  gap: 1.25rem
}

@media screen and (max-width:767px) {
  .p-archive__wrap {
    flex-direction: column;
    gap: .625rem
  }
}

.p-archive__card-left {
  flex-shrink: 0;
  width: 19.375rem;
  height: 12.5rem;
  /* 中央寄せはしない */
  display: block;
}

@media screen and (max-width:767px) {
  .p-archive__card-left {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }
}

.p-archive__card-img {
  width: 310px;
  height: 200px;
  margin: auto;
  /* ← これで中央 */
  overflow: hidden;
  display: grid;
  place-items: center;
}

.p-archive__card-img img {
  width: 300px;
  height: 190px;
  object-fit: cover;
  display: block;
  /* 余計な隙間対策 */
}

@media screen and (max-width:767px) {

  /* 画像枠：幅いっぱい（高さは比率で決める） */
  .p-archive__card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 350 / 225;
    /* デザイン比率に合わせて調整 */
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .p-archive__card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.p-archive__card-right {
  align-self: center
}

@media screen and (max-width:767px) {
  .p-archive__card-right {
    align-self: unset
  }
}

.p-archive__card-info {
  align-items: center;
  display: flex;
  gap: .3125rem
}

.p-archive__card-time {
  color: #787878;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
}

.p-archive__card-category {
  background: #787878;
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-size: .75rem;
  line-height: 1.1666666667;
  padding: .1875rem .625rem;
  text-align: center
}

/* お知らせ */
.post-type-archive-news .p-archive__card-category {
  background: #00987D;
}

/* 活動報告 */
.post-type-archive-blog .p-archive__card-category {
  background: #E10078;
}

/* 症例 */
.post-type-archive-sample .p-archive__card-category {
  background: #0050A2;
}

/* コラム */
.post-type-archive-column .p-archive__card-category {
  background: #ED7300;
}


/* お知らせ */
.p-archive__card--news .p-archive__card-category {
  background: #00987D;
}

/* 活動報告 */
.p-archive__card--blog .p-archive__card-category {
  background: #E10078;
}

/* 症例 */
.p-archive__card--sample .p-archive__card-category {
  background: #0050A2;
}

/* コラム */
.p-archive__card--column .p-archive__card-category {
  background: #ED7300;
}

.p-archive__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
  margin-top: .625rem
}

@media screen and (max-width:767px) {
  .p-archive__card-title {
    font-size: 1rem;
    line-height: normal
  }
}

.p-archive__card-text {
  line-height: 187.5%;
  margin-top: 1.5rem
}

@media screen and (max-width:767px) {
  .p-archive__card-text {
    margin-top: .75rem;
    font-size: 14px;
  }
}

.p-archive__pagination {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}

@media screen and (max-width:767px) {
  .p-archive__pagination {
    gap: 10px;
    margin-top: 2.5rem;
  }
}

.p-archive__pagination a,
.p-archive__pagination span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: #E9E9E9;
  color: #787878;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  text-decoration: none;
  transition: opacity .3s;
}

@media screen and (max-width:767px) {
  .p-archive__pagination a,
  .p-archive__pagination span {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.p-archive__pagination a:hover {
  opacity: .7;
}

/* 現在のページ */
.p-archive__pagination span.current {
  background: #787878;
  color: #fff;
}

/* ドット省略 */
.p-archive__pagination span.dots {
  background: none;
  color: #787878;
  font-size: 16px;
  letter-spacing: 0;
  width: auto;
  height: auto;
}

/* =========================
   パンくず
========================= */
.p-breadcrumb {
  max-width: 73.75rem;
  margin: 24px auto 1.5rem;
  padding-inline: 2.5rem;
}

.c-breadcrumb {
  color: #333333;
  font-size: .875rem;
  font-weight: 400;
  line-height: 2;
}

/* リンク */
.c-breadcrumb a {
  color: #333333;
  text-decoration: none;
  transition: .2s;
}

.c-breadcrumb a:hover {
  opacity: .7;
}

/* 区切り > */
.c-breadcrumb .separator {
  margin: 0 .5rem;
  color: #333333;
}

/* 現在ページ */
.c-breadcrumb .current-item {
  color: #787878;
  font-weight: 400;
  margin-left: 10px;
}

/* span構造用（NavXT対応） */
.c-breadcrumb>span {
  display: inline-block;
  margin-right: 10px;
}

/* 0315追加 */
.c-breadcrumb > span:nth-of-type(2) a {
  margin-left: 10px;
}

@media screen and (max-width:767px) {
  .p-breadcrumb {
    margin: 0.75rem auto 1.25rem;
    padding-inline: 1.25rem;
  }

  .c-breadcrumb {
    font-size: .75rem;
    line-height: 1.8;
  }

  .c-breadcrumb .separator {
    margin: 0 .375rem;
  }

  .c-breadcrumb .current-item {
    margin-left: 5px;
  }

  .c-breadcrumb>span {
    margin-right: 5px;
  }

  /* 0315追加 */
  .c-breadcrumb > span:nth-of-type(2) a {
    margin-left: 5px;
  }
}

/* -----------------------------------------------------------
-----------シングルページのCSS ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.p-single {
  margin-bottom: 6.25rem;
  margin-top: 3.75rem
}

@media screen and (max-width:767px) {
  .p-single {
    margin-bottom: 3.125rem;
    margin-top: 1.875rem
  }
}

.p-single__wrapper {
  border: .0625rem solid #d7d3c9;
  border-radius: 1.25rem;
  padding-block: 5rem;
  padding-inline: 3.75rem
}

@media screen and (max-width:767px) {
  .p-single__wrapper {
    padding-block: 2.5rem;
    padding-inline: 1.25rem
  }
}

.p-single__info {
  align-items: center;
  display: flex;
  gap: .3125rem
}

.p-single__time {
  color: #787878;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
}

.p-single__category, .p-single__time {
  color: #787878;
  line-height: normal;
}

.p-single__category {
  background: #00987D;
  color: #fff;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  min-height: 25px;
  padding: 2px 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  width: fit-content;
}

/* 活動報告（blog） */
.post-type-archive-blog .p-single__category,
.single-blog .p-single__category {
  background: #E10078;
  /* ピンク */
}

/* 症例（sample） */
.post-type-archive-sample .p-single__category,
.single-sample .p-single__category {
  background: #0050A2;
}

/* コラム */
.p-single__category--column {
  background: #ED7300;
}

@media screen and (max-width:767px) {
  .p-single__category {
    padding: 2px 8px;
    font-size: 12px;
    min-height: 20px;
  }

  .p-single__time {
    font-size: 12px;
  }
}


.p-single__contents {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width:767px) {
  .p-single__contents {
    margin-top: 1.875rem;
    gap: 12px;
  }
}

.p-single__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: normal;
  margin-top: 1.5rem
}

@media screen and (max-width:767px) {
  .p-single__title {
    font-size: 1.25rem;
    margin-top: .75rem
  }
}

.p-single__contents h2 {
  border-top: 1px solid #333;
  border-bottom: 1px solid #D7D7D7;
  padding-top: 1em;
  padding-bottom: 1em;
}

@media (max-width: 768px) {
  .p-single__contents h2 {
    font-size: 1.25rem;
  }
}


.p-single__contents h3 {
  background: #F5F5F5;
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: normal;
  margin: .8rem 0;
  overflow: hidden;
  padding-block: .5625rem;
  padding-left: 1.8rem;
  position: relative;
}

@media screen and (max-width:767px) {
  .p-single__contents h3 {
    font-size: 1.125rem;
    padding-block: .3125rem;
    padding-left: 1.5rem;
  }
}

.p-single__contents h3::before {
  content: "";
  position: absolute;
  left: 1%;
  width: .625rem;
  height: 80%;
  background: #787878;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width:767px) {
  .p-single__contents h3::before {
    width: .375rem
  }
}

.p-single__contents h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  color: #333;
  margin-top: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #D7D7D7;
  position: relative;
}

@media screen and (max-width:767px) {
  .p-single__contents h4 {
    font-size: 16px;
    margin-top: 8px;
  }
}

.p-single__contents h4::before {
  display: none;
}

.p-single__contents h5 {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
  color: #333;
  padding-left: 1.75rem;
  background: transparent;
  border-radius: 0;
}

/* 左の丸ドット */
.p-single__contents h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #787878;
}

/* お知らせ */
.single-news .p-single__contents h5::before {
  background: #00987D;
}

/* ブログ */
.single-blog .p-single__contents h5::before {
  background: #E10078;
}

/* 症例 */
.single-sample .p-single__contents h5::before {
  background: #0050A2;
}

/* コラム */
.single-column .p-single__contents h5::before {
  background: #ED7300;
}

@media screen and (max-width: 767px) {
  .p-single__contents h5 {
    font-size: 15px;
    padding-left: 1.5rem;
  }

  .p-single__contents h5::before {
    width: 16px;
    height: 16px;
  }
}

.p-single__contents h6 {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: normal;
}

@media screen and (max-width:767px) {
  .p-single__contents h6 {
    font-size: 15px;
  }
}

.p-single__contents img {
  margin-top: 2.5rem;
  width: 100%
}

@media screen and (max-width:767px) {
  .p-single__contents img {
    margin-top: 1.25rem
  }
}

.p-single__contents a {
  color: #0050A2;
}

.p-single__contents .clinic-cta-btn {
  color: #fff;
}

.p-single__contents p {
  font-size: 1rem;
  line-height: 30px;
  color: #333;
}

@media screen and (max-width:767px) {
  .p-single__contents p {
    font-size: .875rem;
    line-height: 28px;
  }
}

/* 記事内リスト */
.p-single__contents ul,
.p-single__contents ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-single__contents li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: #333;
}

.p-single__contents li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 15px;
  height: 15px;
  background: #787878;
  border-radius: 50%;
}

@media screen and (max-width:767px) {
  .p-single__contents ul,
  .p-single__contents ol {
    gap: 8px;
  }

  .p-single__contents li {
    font-size: .875rem;
    padding-left: 1.25rem;
  }

  .p-single__contents li::before {
    width: 12px;
    height: 12px;
    top: 0.5em;
  }
}

/* ---------------------------------------------------------
-------------前のページ・次のページ------------------------ */
.p-single__nav {
  margin-top: 4.8125rem
}

@media screen and (max-width:767px) {
  .p-single__nav {
    margin-top: 2.5625rem
  }
}

.p-single__nav-wrapper {
  display: flex;
}

.p-single__nav-item {
  border: 1px solid #787878;
  position: relative;
  width: 50%;
}

.p-single__nav-item.--prev {
  border-radius: 1.4rem 0 0 1.4rem;
  background: #FCFCFC;
}

.p-single__nav-item.--prev .p-single__nav-label {
  left: 1.25rem
}

@media screen and (max-width:767px) {
  .p-single__nav-item.--prev .p-single__nav-label {
    left: 50%;
    transform: translateX(-50%)
  }
}

.p-single__nav-item.--next {
  border-radius: 0 1.4rem 1.4rem 0;
  margin-left: auto;
  background: #FCFCFC;
}

.p-single__nav-item.--next .p-single__nav-label {
  right: 1.25rem
}

@media screen and (max-width:767px) {
  .p-single__nav-item.--next .p-single__nav-label {
    right: 50%;
    transform: translateX(50%)
  }
}

.p-single__nav-item.--next .p-single__nav-content {
  flex-direction: row-reverse
}

@media screen and (max-width:767px) {
  .p-single__nav-item.--next .p-single__nav-content {
    flex-direction: column
  }
}

.p-single__nav-item+.p-single__nav-item {
  border-left: none
}

.p-single__nav-label {
  background: #787878;
  color: #fff;
  display: grid;
  font-size: .875rem;
  font-weight: 700;
  height: 2.1875rem;
  line-height: 214.286%;
  place-items: center;
  position: absolute;
  top: -1.09375rem;
  width: 11.25rem;
  border-radius: 999px;
}

@media screen and (max-width:767px) {
  .p-single__nav-label {
    font-size: .75rem;
    height: 1.5625rem;
    line-height: normal;
    top: -.6875rem;
    width: 7.5rem
  }
}

.p-single__nav-content {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  padding: 1.625rem 1.125rem 1.125rem
}

@media screen and (max-width:767px) {
  .p-single__nav-content {
    flex-direction: column;
    gap: .625rem;
    padding: 1.6875rem .8125rem .8125rem
  }
}

.p-single__nav-thumb {
  background: #D7D7D7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 7.5rem;
  width: 11.25rem;
}

.p-single__nav-img {
  height: 6.875rem;
  overflow: hidden;
  width: 10.625rem;
  margin: auto;
}

.p-single__nav-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width:767px) {
  .p-single__nav-thumb {
    width: 100%;
    height: 90px;
    box-sizing: border-box;
    display: grid;
    place-items: center;
  }

  .p-single__nav-img {
    width: 95%;
    height: 80px;
    overflow: hidden;
  }

  .p-single__nav-img img {
    width: 100%;
    height: 80px;
    object-fit: cover;
  }
}

.p-single__nav-title {
  font-weight: 700;
  line-height: normal
}

@media screen and (max-width:767px) {
  .p-single__nav-title {
    font-size: .75rem
  }
}

.p-single__img-area {
  display: flex;
  gap: 2.5rem
}

@media screen and (max-width:767px) {
  .p-single__img-area {
    flex-direction: column;
    gap: 1.25rem
  }
}

.p-single__img-box {
  flex: 1;
  text-align: center
}

.p-single__img {
  border-radius: 1.25rem;
  height: 18.75rem;
  overflow: hidden;
  width: 100%
}

@media screen and (max-width:767px) {
  .p-single__img {
    border-radius: .9375rem;
    height: 12.5rem
  }
}

.p-single__img img {
  aspect-ratio: 470/300;
  margin-top: 0
}

@media screen and (max-width:767px) {
  .p-single__img img {
    aspect-ratio: 310/200
  }
}

.p-single__img-text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4375;
  margin-top: 1rem
}

@media screen and (max-width:767px) {
  .p-single__img-text {
    font-size: 1.5rem !important;
    line-height: 1.4166666667;
    margin-top: .625rem
  }
}

.p-single__back {
  display: none;
}



/* 症例の表 */
.case-detail {
  margin-top: 2.5rem;
  background: #f3f3f3;
}

.case-detail h3.case-detail__heading {
  margin: 0;
  padding: 1.5rem 1rem;
  background: #7f7f7f;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-single__contents h3.case-detail__heading::before {
  display: none;
}

.case-detail__body {
  padding: 3rem 2.75rem 3.5rem;
}

.case-detail__body > * + * {
  margin-top: 1rem;
}

.case-detail__list {
  margin: 0;
}

.case-detail__item+.case-detail__item {
  margin-top: 1.5rem;
}

.case-detail__term {
  margin: 0 0 0.6rem;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.case-detail__desc {
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.9;
}

.case-detail__risk-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-detail__risk-list li {
  position: relative;
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}

.case-detail__risk-list li:first-child {
  margin-top: 0;
}

.case-detail__risk-list li::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: #d9d9d9;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .case-detail {
    margin-top: 1.5rem;
  }

  .case-detail h3.case-detail__heading {
    padding: 1rem 0.75rem;
    font-size: 1.125rem;
  }

  .case-detail__body {
    padding: 2rem 1.25rem 2.5rem;
  }

  .case-detail__item+.case-detail__item {
    margin-top: 1rem;
  }

  .case-detail__term {
    margin-bottom: 0.31rem;
    font-size: 0.875rem;
  }

  .case-detail__desc {
    font-size: 0.875rem;
    line-height: 1.8;
  }

  .case-detail__risk-list li {
    padding-left: 1.25rem;
  }

  .case-detail__risk-list li::before {
    width: 0.75rem;
    height: 0.75rem;
    top: 0.9em;
  }
}












/* 表のCSS */
.case-flex {
  display: flex;
  justify-content: space-around;
  gap: 40px;
}

@media screen and (max-width:767px) {
  .case-flex {
    flex-direction: column;
  }
}

.case-width {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.case-table {
  width: 100%;
  border-collapse: collapse;
}

.case-table th,
.case-table td {
  padding: 16px 12px;
  border: 1px solid #D9D9D9;
  text-align: left;
}

.case-table th {
  background: #E9E9E9;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.case-table td {
  background-color: #fff;
  color: #333333;
}

/* リスト（ul）のデザイン */
.holiday-list {
  list-style: disc;
  padding-left: 1.2em;
  margin: 0;
}

/* リストの丸（li）の色をオレンジにする */
.holiday-list li {
  position: relative;
  margin-bottom: 4px;
}

.holiday-list li::marker {
  color: #787878;
}

.pc-none {
  display: none;
}

/* モバイル対応 */
@media (max-width: 768px) {

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

  .case-table tr {
    margin-bottom: 15px;
    border: none;
    background: #fff;
    padding: 0;
  }

  .case-table th {
    background: #E9E9E9;
    color: #333333;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 0;
  }

  .case-table td {
    padding: 10px;
    border: none;
    background: #fff;
    font-size: 14px;
  }

  .case-table th.pc-none {
    background: #fff;
    border-radius: 0;
  }

  .case-table thead {
    display: none;
  }
}

/* ========================================
   フッター - ACCESS セクション (Figma準拠)
======================================== */
.footer-access {
  background: #787878;
  width: 100%;
  padding: 100px 0;
}

.footer-access__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-access__left {
  width: 360px;
  flex-shrink: 0;
}

.footer-access__label {
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}

.footer-access__line {
  width: 360px;
  height: 0;
  border-top: 1px solid #FFFFFF;
  margin: 16px 0;
}

.footer-access__title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}

.footer-access__title {
  font-family: 'Helvetica Neue', 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 64px;
  line-height: 77px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}

.footer-access__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.footer-access__circle:hover {
  opacity: 0.8;
}

.footer-access__arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #787878;
  border-bottom: 2px solid #787878;
  transform: rotate(-45deg);
  margin-left: -2px;
}

.footer-access__right {
  display: flex;
  gap: 20px;
}

.footer-access__btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
  height: 157px;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  padding: 31px 50px;
  transition: opacity 0.3s;
}

.footer-access__btn:hover {
  opacity: 0.85;
}

.footer-access__btn-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.footer-access__btn-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.footer-access__btn-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-access__btn--line .footer-access__btn-icon img {
  filter: none;
}

.footer-access__btn-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
}

.footer-access__btn-line {
  width: 240px;
  border-top: 1px solid #FFFFFF;
  margin: 10px 0;
}

.footer-access__btn-main {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin: 0;
}

/* ========================================
   フッター - ホームページ運営について
======================================== */
.footer-info {
  background: #D7D7D7;
  padding: 100px 0 60px;
}

.footer-info__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-info__box {
  box-sizing: border-box;
  border: 3px solid #FFFFFF;
  border-radius: 10px;
  padding: 40px;
}

.footer-info__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #333333;
  margin: 0 0 25px;
}

.footer-info__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  color: #333333;
  margin: 0 0 20px;
}

.footer-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-info__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #787878;
  flex-shrink: 0;
}

.footer-info__list a {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  text-decoration-line: underline;
  color: #333333;
}

.footer-info__list a:hover {
  text-decoration: none;
}

/* ========================================
   フッター - バナーセクション
======================================== */
.footer-banners {
  background: #fff;
  padding: 60px 0;
}

.footer-banners__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.footer-banners__inner a {
  flex: 1;
  min-width: 0;
  transition: opacity 0.3s;
}

.footer-banners__inner a:hover {
  opacity: 0.85;
}

.footer-banners__inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   フッター - メインフッター（ナビ）
======================================== */
.main-footer {
  background: #fff;
  padding: 0;
}

.main-footer__border-top {
  width: 100%;
  border-top: 1px solid #DFDFDF;
}

.main-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding: 60px 0 50px;
}

.main-footer__logo {
  flex-shrink: 0;
  width: 151px;
  margin-right: 267px;
  align-self: center;
}

.main-footer__logo-img {
  width: 151px;
  height: 55px;
}

.main-footer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.main-footer__nav-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-footer__nav-row a {
  width: 150px;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-decoration-line: underline;
  color: #333333;
  transition: color 0.3s;
}

.main-footer__nav-row a:last-child {
  width: auto;
}

.main-footer__nav-row a:hover {
  color: #ED7300;
}

.main-footer__sns {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  margin-left: auto;
}

.main-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.main-footer__sns-link:hover {
  opacity: 0.7;
}

.main-footer__sns-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.main-footer__sns-link--insta {
  font-size: 0;
}

.main-footer__sns-link--insta .fa-instagram {
  font-size: 40px;
  color: #E4405F;
}

/* ========================================
   フッター - コピーライト
======================================== */
.main-footer__copy {
  border-top: 1px solid #DFDFDF;
  padding: 20px 0;
}

.main-footer__copy p {
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
  text-align: center;
  color: #333333;
  margin: 0;
}

/* ========================================
   フッター - SP対応 (Figma準拠)
======================================== */
@media screen and (max-width: 767px) {
  /* --- ACCESS セクション SP --- */
  .footer-access {
    padding: 50px 5.13% 40px;
  }

  .footer-access__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-access__left {
    width: 100%;
  }

  .footer-access__label {
    font-size: 16px;
    line-height: 19px;
  }

  .footer-access__line {
    width: 100%;
    margin: 12px 0;
  }

  .footer-access__title-wrap {
    justify-content: flex-start;
  }

  .footer-access__title {
    font-size: 48px;
    line-height: 58px;
  }

  .footer-access__circle {
    width: 40px;
    height: 40px;
  }

  .footer-access__right {
    flex-direction: row;
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }

  .footer-access__btn {
    width: calc(50% - 5px);
    height: auto;
    aspect-ratio: auto;
    padding: 20px 10px;
  }

  .footer-access__btn-icon {
    width: 20px;
    height: 20px;
  }

  .footer-access__btn-icon img {
    width: 20px;
    height: 20px;
  }

  .footer-access__btn-sub {
    font-size: 14px;
  }

  .footer-access__btn-line {
    width: 80%;
  }

  .footer-access__btn-main {
    font-size: 24px;
    letter-spacing: 0.05em;
  }

  /* --- ホームページ運営について SP (非表示) --- */
  .footer-info {
    display: none;
  }

  /* --- バナーセクション SP --- */
  .footer-banners {
    padding: 40px 5.13%;
  }

  .footer-banners__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-banners__inner a {
    width: 100%;
  }

  /* --- フッターナビ SP --- */
  .main-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 5.13% 30px;
    gap: 30px;
  }

  .main-footer__logo {
    width: 110px;
    margin-right: 0;
    align-self: flex-start;
  }

  .main-footer__logo-img {
    width: 110px;
    height: auto;
  }

  .main-footer__nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .main-footer__nav-row {
    display: contents;
  }

  .main-footer__nav-row a {
    width: auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    color: #333333;
  }

  .main-footer__sns {
    flex-direction: row;
    margin-left: 0;
    gap: 10px;
    align-items: flex-start;
  }

  .main-footer__sns-link {
    width: 40px;
    height: 40px;
  }

  .main-footer__sns-link img {
    width: 40px;
    height: 40px;
  }

  .main-footer__sns-link--insta .fa-instagram {
    font-size: 40px;
  }

  /* --- コピーライト SP --- */
  .main-footer__copy {
    padding: 15px 5.13%;
    border-top: 1px solid #DFDFDF;
  }

  .main-footer__copy p {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    color: #333333;
    text-align: left;
  }
}

.p-page-top-img {
  padding-top: 100px;
  /* margin-bottom: 60px; */
}

.p-page-top-img img {
  width: 100%;
  height: auto;
}

/* ========================================
   施設概要テーブル（SP時 2列→2行スタック）
======================================== */
.p-info-table--stack {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #D9D9D9;
  font-size: 1rem;
  margin-top: 16px;
}

.p-info-table--stack th,
.p-info-table--stack td {
  padding: 1.25rem 1.5rem;
  border: 1px solid #D9D9D9;
  text-align: left;
  vertical-align: top;
  color: #333;
  line-height: 1.8;
}

.p-info-table--stack th {
  background: #E9E9E9;
  font-weight: 700;
  width: 30%;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

.p-info-table--stack td {
  background: #fff;
}

.p-info-table--stack td a {
  color: #1a73e8;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .p-info-table--stack {
    font-size: .875rem;
  }

  .p-info-table--stack,
  .p-info-table--stack thead,
  .p-info-table--stack tbody,
  .p-info-table--stack tr,
  .p-info-table--stack th,
  .p-info-table--stack td {
    display: block;
    width: 100%;
  }

  .p-info-table--stack tr {
    margin-bottom: 0;
  }

  .p-info-table--stack,
  .p-info-table--stack tr,
  .p-info-table--stack th,
  .p-info-table--stack td {
    border: none;
  }

  .p-info-table--stack th {
    display: flex;
    width: 350px;
    padding: 10px;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    border-radius: 5px;
    background: #E9E9E9;
    white-space: normal;
    text-align: center;
    border-bottom: none;
  }

  .p-info-table--stack td {
    padding: 1rem;
    line-height: 1.8;
    border-top: none;
  }

  .p-info-table--stack tr + tr {
    margin-top: 20px;
  }
}

/* ========================================
   プライバシーポリシーテーブル調整
======================================== */
.p-privacypolicy .p-info-table--stack td a {
  color: #1a73e8;
  text-decoration: underline;
  word-break: break-all;
}

.p-privacypolicy .p-info-table--stack td a:hover {
  text-decoration: none;
}

.p-privacypolicy .p-info-table--stack td ul {
  margin-top: .5em;
  padding-left: 1.5em;
  list-style: disc;
}

.p-privacypolicy .p-info-table--stack td ul li {
  list-style: disc;
  margin-bottom: .25em;
}

@media screen and (max-width: 767px) {
  .p-privacypolicy .p-lower__h2_border {
    white-space: nowrap;
  }
}

/* Googleアナリティクス利用規約リンク */
.p-privacypolicy .p-info-table--stack td a.p-analytics-link {
  color: #ED7300;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.p-privacypolicy .p-info-table--stack td a.p-analytics-link:hover {
  text-decoration: none;
}

/* =============================================
   歯を失ってしまった：feature-number-card サイズ調整
   ============================================= */
.p-hawoushinatta .feature-number-card {
  max-width: 340px;
  min-height: auto;
  height: 100px;
}

@media screen and (max-width: 767px) {
  .p-hawoushinatta .feature-number-card {
    max-width: 100%;
    height: 100px;
  }
}

/* ------------------------------------------------------------------------
   クリニックCTA
   ------------------------------------------------------------------------ */
.clinic-cta-wrap {
  margin: 20px 0;
}

.clinic-cta {
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  border: 1px #787878 solid;
}

.clinic-cta p {
  margin-bottom: 15px;
  font-weight: bold;
}

.clinic-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: .3s;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  box-sizing: border-box;
}

.clinic-cta-btn:hover {
  opacity: 0.85;
}

/* ボタンカラー */
.clinic-east .clinic-cta-btn {
  background: #00987D;
}

.clinic-west .clinic-cta-btn {
  background: #ED7300;
}

.clinic-yashio .clinic-cta-btn {
  background: #DE0078;
}

@media screen and (max-width: 650px) {
  .clinic-cta-btn {
    padding: 15px;
  }
}

/* preタグの折り返し */
pre.sc-doOioq.fCbWpL {
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}