/* =======================================
   Base
======================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  color: #727272;
  line-height: 1.8;
  letter-spacing: 0.04em;
  background-color: #fff;
}

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

  html,
  body {
    font-size: 17px;
  }
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body.is-fixed {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

br.pc {
  display: block;
}

br.sp {
  display: none;
}

@media screen and (max-width: 600px) {
  br.pc {
    display: none;
  }

  br.sp {
    display: block;
  }
}

/* フォントクラス */
.outfit {
  font-family: "Outfit", sans-serif;
}

.tsukushi {
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

span.no-wrap {
  white-space: nowrap;
}

/* =======================================
   共通：セクション見出し（c-sec-ttl）
======================================= */
.c-sec-ttl {
  margin-bottom: 28px;
}

/* ルビ的サブラベル（p要素で使用） */
p.c-sec-ttl__ja {
  display: block;
  font-size: 26px;
  color: #727272;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

/* メイン見出し（h2要素で使用） */
h2.c-sec-ttl__en {
  display: block;
  font-size: 40px;
  color: #a2c6ad;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
  font-weight: 500;
}

/* 中央揃えモディファイア */
.c-sec-ttl--center {
  text-align: center;
}

@media screen and (max-width: 600px) {
  h2.c-sec-ttl__en {
    font-size: clamp(22px, 6vw, 32px);
  }

  p.c-sec-ttl__ja {
    font-size: 20px;
  }
}

/* グラデーション大見出し（MEDICAL / FEATURE / GREETING） */
h2.c-sec-ttl__gradient-en {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 60px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
  color: #e9d4c0;
  background: linear-gradient(90deg,
      #cee6d2 0%,
      #d7e7cf 34%,
      #e8d9c3 45%,
      #e2c5aa 50%,
      #e8d9c3 55%,
      #d7e7cf 66%,
      #cee6d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  h2.c-sec-ttl__gradient-en {
    font-size: clamp(32px, 8vw, 48px);
  }
}

/* =======================================
   l-header
======================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2001;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.l-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 15px;
  margin: 0 auto;
}

/* ロゴ */
.l-header__logo {
  flex-shrink: 0;
  padding-top: 5px;
  max-width: 290px;
}

.l-header__logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.l-header__address {
  margin-top: -5px;
  white-space: nowrap;
  letter-spacing: 0.03em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

/* =======================================
   PC ナビゲーション
======================================= */
.l-header__pc-nav {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 30px);
}

.l-header__nav-list>li>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 17px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  color: #727272;
}

.l-header__nav-list>li>a .nav-en {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #a2c6ad;
  letter-spacing: 0.06em;
}

/* hover: 下線スライドイン */
.l-header__nav-list>li>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #6caa60;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.l-header__nav-list>li>a:hover::after {
  width: 100%;
}

.l-header__nav-list>li>a:hover {
  color: #4e8f43;
}

.l-header__nav-list>li>a:hover .nav-en {
  color: #4e8f43;
}

/* 診療内容 テキストラッパー＋疑似要素で矢印 */
.nav-row {
  display: inline-flex;
  align-items: center;
}

.nav-row::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236caa60' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 6px;
  right: -10px;
}

/* =======================================
   PC ドロップダウン（診療内容）
======================================= */
.l-header__nav-list>li.has-dropdown {
  position: relative;
}

.l-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 520px;
  padding-top: 16px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform: translate(-50%, -4px);
  z-index: 100;
  white-space: nowrap;
}

/* ホバーギャップ対策: ドロップダウン上にブリッジ */
.l-header__dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
}

/* ドロップダウン本体 */
.l-header__dropdown::after {
  content: none;
}

.l-header__dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
  width: 100%;
  padding: 24px 30px 28px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ▼ホバーで表示 */
.l-header__nav-list>li.has-dropdown:hover .l-header__dropdown {
  opacity: 1;
  pointer-events: auto;
}

.l-header__dropdown-inner>li>a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0;
  color: #686767;
  border-bottom: 3px dotted rgba(104, 103, 103, 0.18);
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
}

.l-header__dropdown-inner>li:nth-last-child(-n+2)>a {
  border-bottom: none;
}

.l-header__dropdown-inner>li>a::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #a5d2a2;
  background-image: url("../img/icon-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.l-header__dropdown-inner>li>a:hover {
  background-color: rgba(255, 255, 255, 0.44);
  color: #4e8f43;
}

/* =======================================
   CTAエリア（電話 + 予約ボタン）
======================================= */
.l-header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.l-header__contact {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-shrink: 0;
}

.l-header__contact-label {
  background: #a5d2a2;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  padding: 1px 14px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

.l-header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #fff;
  line-height: 1;
}

.l-header__tel::before {
  content: "";
  display: block;
  width: 24px;
  height: 22px;
  flex-shrink: 0;
  background-image: url("../img/icon-tel.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.l-header__tel .tel-num {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  color: #a2c6ad;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.tel-hyphen {
  display: inline-block;
  transform: translateY(-0.05em);
}

.l-header__tel .tel-num.tel-fax-num {
  color: #aeaeae;
}

.c-btn-reserve {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(32deg, #deb58e 41%, #dca876 41%);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  width: 150px;
  max-width: 150px;
  height: 70px;
  text-align: center;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: opacity 0.3s ease;
  outline: 1px #faf8e99c solid;
  outline-offset: -5px;
  gap: 3px;
}

.c-btn-reserve:hover {
  opacity: 0.85;
}

/* 右下の白三角アクセント */
.c-btn-reserve::before {
  content: "";
  position: absolute;
  bottom: 7px;
  right: 7px;
  width: 0;
  height: 0;
  background: #fff;
  border-style: solid;
  border-width: 0 0 18px 18px;
  border-color: transparent transparent rgba(255, 255, 255, 0.65) transparent;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.c-btn-reserve__icon {
  width: 28px;
  height: auto;
  display: block;
}

.c-btn-reserve__text {
  display: block;
  font-size: 18px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

@media screen and (max-width: 600px) {
  .c-btn-reserve__icon {
    width: 24px;
  }
}

/* =======================================
   c-hamburger
======================================= */
.c-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: #a5d2a2;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2001;
  flex-shrink: 0;
  border-radius: 10px;
}

.c-hamburger__line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.38s ease, opacity 0.38s ease;
}

.c-hamburger__text {
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  color: #6caa60;
  letter-spacing: 0.08em;
  line-height: 1;
}

.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =======================================
   l-nav-overlay
======================================= */
.l-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.l-nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* =======================================
   l-sp-nav（右からスライドイン）
======================================= */
.l-sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-color: #f4f7f2;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 100px 20px 50px;
}

.l-sp-nav.is-active {
  transform: translateX(0);
}

/* SP nav ロゴ */
.l-sp-nav__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.l-sp-nav__logo img {
  height: 40px;
  width: auto;
}

/* SP nav リスト */
.l-sp-nav__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.l-sp-nav__list>li {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.l-sp-nav__list>li>a,
.l-sp-nav__list>li>button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  color: #727272;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

/* 左側ラベルブロック */
.l-sp-nav__list>li>a>span:not(.sp-nav-en),
.l-sp-nav__list>li>button>span:not(.sp-nav-en) {
  font-size: 17px;
}

.l-sp-nav__list>li>a .sp-nav-en,
.l-sp-nav__list>li>button .sp-nav-en {
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  color: #6caa60;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1px;
}

/* ラベル部分を縦並びにするためのラッパー的扱い */
.l-sp-nav__list>li>a,
.l-sp-nav__list>li>button {
  flex-direction: row;
  gap: 0;
}

/* リンク内テキスト群を左側にまとめる */
.l-sp-nav__list>li>a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.l-sp-nav__list>li>button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

/* テキスト列（英語+日本語）を縦積みに */
.l-sp-nav__list>li>a>span,
.l-sp-nav__list>li>button>span {
  display: block;
}

.l-sp-nav__list>li>a>span.sp-nav-en {
  order: -1;
}

/* 矢印アイコン（円形バッジ） */
.l-sp-nav__list>li>a::after,
.l-sp-nav__list>li.has-dropdown>button::after {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: block;
  position: relative;
}

/* 右矢印（通常リンク） */
.l-sp-nav__list>li>a::after {
  background-image: url("../img/icon-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

/* 右矢印（診療内容サブリスト展開ボタン） */
.l-sp-nav__list>li.has-dropdown>button::after {
  background-image: url("../img/icon-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

.l-sp-nav__list>li.has-dropdown.is-open>button::after {
  transform: rotate(90deg);
}

/* サブリスト */
.l-sp-nav__sub-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
  background: #f9fcf8;
  border-top: 1px solid #e5f0e2;
}

.l-sp-nav__sub-list.is-open {
  max-height: 600px;
}

.l-sp-nav__sub-list>li>a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 12px 20px;
  font-size: 17px;
  color: #727272;
  border-bottom: 1px solid #eef5ec;
}

.l-sp-nav__sub-list>li:last-child>a {
  border-bottom: none;
}

.l-sp-nav__sub-list>li>a::before {
  content: "—";
  color: #6caa60;
  font-size: 13px;
  flex-shrink: 0;
}

/* SP CTAエリア */
.l-sp-nav__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.l-sp-nav__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #4e8f43;
  background: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.l-sp-nav__tel img {
  width: 20px;
  height: auto;
}

.l-sp-nav__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #deb58e 50%, #dca876 50%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  transition: opacity 0.3s ease;
}

.l-sp-nav__reserve img {
  width: 28px;
  height: auto;
}

.l-sp-nav__reserve:hover {
  opacity: 0.85;
}

/* =======================================
   ブレイクポイント：ハンバーガー切替
======================================= */
@media screen and (max-width: 1400px) {
  .l-header__pc-nav {
    display: none;
  }

  .c-hamburger {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  .l-header__inner {
    height: 68px;
    padding: 0 14px 0 18px;
  }

  .l-header__logo img {
    height: 42px;
  }

  .l-header__logo {
    max-width: 260px;
  }
}

/* =======================================
   pc / sp 切り替えユーティリティ
======================================= */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}


/* =======================================
   フローティングバナー
======================================= */
.l-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 1500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.l-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* 電話カード：ヘッダーと同デザイン */
.l-float__tel {
  display: flex;
  flex-direction: column;
  width: 280px;
  height: 86px;
  background: #fff;
  border: none;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: opacity 0.2s;
}

.l-float__tel:hover {
  opacity: 0.85;
}

.l-float__tel .l-header__tel {
  flex: 1;
  justify-content: center;
  padding: 8px 20px 12px;
  background: #fff;
}

.l-float__tel .tel-num {
  font-size: 28px;
  color: #a2c6ad;
}

/* WEB予約：c-btn-reserve のサイズ上書き */
.l-float__reserve.c-btn-reserve {
  width: 170px;
  max-width: 170px;
  height: 90px;
  border-radius: 2px;
  align-self: auto;
  outline-offset: -4px;
}

.l-float__reserve .c-btn-reserve__text {
  font-size: 20px;
}

.l-float__reserve .c-btn-reserve__icon {
  width: 38px;
}

/* ページトップ */
.l-float__top {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #a5d2a2;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: opacity 0.2s, transform 0.2s;
}

.l-float__top svg {
  width: 44px;
  height: 44px;
}

.l-float__top svg path {
  stroke-width: 2;
}

.l-float__top:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* SP */
@media screen and (max-width: 600px) {
  .l-float {
    bottom: 0;
    left: 0;
    right: 0;
    gap: 0;
    align-items: stretch;
    transform: translateY(0);
  }

  .l-float.is-visible {
    transform: translateY(0);
  }

  .l-float__tel {
    flex: 0 0 50%;
    width: auto;
    height: auto;
    border-radius: 0;
    border: none;
    border-right: 1px solid #d4e6d4;
    box-shadow: none;
  }

  .l-float__tel .l-header__contact-label {
    font-size: 16px;
    padding: 0px 8px;
  }

  .l-float__tel .l-header__tel {
    padding: 1px 8px 4px;
  }

  .l-float__tel .tel-num {
    font-size: 17px;
  }

  .l-float__reserve.c-btn-reserve {
    flex: 0 0 50%;
    width: 50%;
    max-width: unset;
    height: unset;
    border-radius: 0;
    align-self: auto;
  }

  .l-float__reserve .c-btn-reserve__text {
    font-size: 15px;
  }

  .l-float__reserve .c-btn-reserve__icon {
    width: 24px;
  }

  .l-float__top {
    position: fixed;
    bottom: 75px;
    right: 10px;
    width: 44px;
    height: 44px;
    align-self: auto;
  }

  .l-float__top svg {
    width: 26px;
    height: 26px;
  }

}

/* =======================================
   l-footer
======================================= */
.l-footer {
  background: #fff;
}

/* ---- 情報エリア（薄緑背景） ---- */
.l-footer__info-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4vw;
  max-width: 1410px;
  margin: 0 auto;
  padding: 120px 40px 112px;
}

/* 左：クリニック情報 */
.l-footer__clinic {
  flex: 0 0 445px;
}

.l-footer__logo {
  width: 350px;
  margin: 0 0 20px;
}

.l-footer__logo img {
  width: 100%;
  height: auto;
}

.l-footer__address {
  color: #727272;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-bottom: 34px;
}

/* CTA（電話・FAX + WEB予約） */
.l-footer__cta {
  display: flex;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap;
}

.l-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.l-footer__cta .l-header__contact {
  width: 220px;
}

.l-footer__cta .l-header__contact-label {
  padding: 4px 14px;
  letter-spacing: 0.08em;
}

.l-footer__cta .contact-fax {
  background: #aeaeae;
}

.l-footer__cta .l-header__tel {
  justify-content: center;
  padding: 7px 8px 10px;
}

.l-footer__cta .l-header__contact-fax .l-header__tel::before {
  content: none;
}

.l-footer__cta .c-btn-reserve {
  width: 150px;
  height: 80px;
  align-self: center;
  flex: 0 0 150px;
  margin-bottom: 30px;
}

.l-footer__cta .c-btn-reserve {
  gap: 0;
}

footer .c-btn-reserve__text {
  display: block;
  font-size: 18px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  padding-bottom: 8px;
}

/* 右：診療時間 */
.l-footer__hours {
  flex: 1 1;
  max-width: 700px;
}

.l-footer__table-wrap {
  margin-bottom: 28px;
}

.l-footer__table th {
  padding: 14px 8px;
}

.l-footer__table td {
  padding: 15px 8px;
  border-left: none;
  border-right: none;
}

.l-footer__table td.time-label {
  padding-left: 30px;
  background: #fff;
}

/* 診療時間補足 */
.l-footer__hours-note {
  color: #727272;
  line-height: 1.65;
}

.l-footer__hours-note>div {
  display: flex;
  gap: 20px;
  padding: 0;
}

.l-footer__hours-note dt {
  width: 4em;
  flex-shrink: 0;
  white-space: nowrap;
  color: #686767;
}

.l-footer__hours-note dd {
  color: #686767;
}

.l-footer__hours-note-accent {
  color: #76af93;
  margin-left: 4px;
}
.time_ttl{
    border-bottom: solid 2px #e5e7ef;
    display: block;
    padding-bottom: 5px;
    margin-bottom: 5px;
    margin-top: 20px;
    background-color: #e9f3ec;
    padding-top: 5px;
	    padding-left: 3px;
}
.close_ttl {
    color: #ffffff !important;
    background-color: #e89393;
    padding: 2px 4px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: fit-content;	
}
.top-info__hours-note>div {
    display: flex;
    gap: 12px;
    padding: 5px 0;
    align-items: baseline;
}
/* ---- マップ ---- */
.l-footer__map {
  line-height: 0;
}

.l-footer__map iframe {
  display: block;
  width: 100%;
  height: 299px;
}

/* ---- コピーライト ---- */
.l-footer__copyright {
  background: #99d0ad;
  padding: 6px 0px;
  text-align: center;
}

.l-footer__copyright p {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  font-size: 12px;
}

/* =======================================
   l-footer SP
======================================= */
@media screen and (max-width: 1000px) and (min-width: 601px) {
  .l-footer__info-inner {
    flex-direction: column;
    gap: 72px;
    max-width: 760px;
    padding: 90px 40px 82px;
  }

  .l-footer__clinic,
  .l-footer__hours {
    width: 100%;
    max-width: none;
    flex: none;
  }

  .l-footer__clinic {
    max-width: 465px;
    margin: 0 auto;
    text-align: center;
  }

  .l-footer__logo img {
    margin: 0 auto;
  }

  .l-footer__cta {
    justify-content: center;
  }

  .l-footer__logo {
    width: 350px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 600px) {
  .l-footer {
    overflow: hidden;
  }

  .l-footer__info-inner {
    flex-direction: column;
    gap: 56px;
padding: 65px 20px 56px;
  }

  .l-footer__clinic {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .l-footer__logo {
    margin: 0 auto 15px;
  }

  .l-footer__logo img {
    width: min(100%, 300px);
    margin: 0 auto;
  }

  .l-footer__address {
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .l-footer__cta {
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .l-footer__contacts {
    flex: 0 0 220px;
  }

  .l-footer__cta .l-header__contact {
    width: 220px;
  }

  .l-footer__cta .l-header__contact-label {
    padding: 4px 10px;
  }

  .l-footer__cta .l-header__tel {
    padding: 7px 6px 8px;
  }

  .l-footer__cta .l-header__tel::before {
    width: 17px;
    height: 16px;
  }

  .l-footer__cta .c-btn-reserve {
    flex: 0 0 108px;
    width: 108px;
    height: 68px;
    min-height: 68px;
  }

  .l-footer__cta .c-btn-reserve__icon {
    width: 26px;
  }

  .l-footer__hours {
    width: 100%;
    max-width: none;
    flex: 1 1;
  }

  .l-footer__table-wrap {
    margin-bottom: 28px;
  }

  .l-footer__table th {
    padding: 11px 4px;
  }

  .l-footer__table td {
    padding: 14px 4px;
  }

  .l-footer__table td.time-label {
    padding-left: 0;
    padding-right: 20px;
    width: 150px;
  }

  .l-footer__hours-note {
    line-height: 1.65;
  }

  .l-footer__hours-note>div {
    gap: 14px;
  }

  .l-footer__hours-note-row--visit {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .l-footer__hours-note-row--visit dd {
    min-width: 0;
  }

  .l-footer__hours-note-accent {
    display: inline;
    white-space: normal;
  }

  .l-footer__map iframe {
    height: 230px;
  }
}

@media screen and (max-width: 390px) {
  .l-footer__info-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .l-footer__contacts {
    flex-basis: 210px;
  }

  .l-footer__cta .l-header__contact {
    width: 210px;
  }

  .l-footer__cta .c-btn-reserve {
    flex-basis: 100px;
    width: 100px;
  }
}

/* ---- 診療時間 ---- */
.top-info__hours {
  max-width: 700px;
}

.top-info__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 18px;
}

.top-info__table {
  width: 100%;
  border-collapse: collapse;
}

.top-info__table th {
  background: #bae1b8;
  color: #686767;
  font-weight: 700;
  padding: 10px 6px;
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}

.top-info__table td {
  padding: 10px 6px;
  text-align: center;
  border-bottom: 1px solid #b6b6b6;
}

.top-info__table td.time-label {
  text-align: right;
  white-space: nowrap;
  font-size: 22px;
  color: #727272;
  padding-left: 14px;
  background: #f8f8f8;
  width: 200px;
  padding-right: 15px;
}

.top-info__table .is-open {
  color: #bae1b8;
  font-weight: 700;
}

.top-info__table .is-closed {
  color: #bbb;
}

@media screen and (max-width: 600px) {
.top-info__table td.time-label {
    font-size: 16px;
}	
}
/* 診療時間 補足テキスト */
.top-info__hours-note {
  color: #727272;
  margin-bottom: 20px;
}

.top-info__hours-note>div {
  display: flex;
  gap: 12px;
  padding: 5px 0;
}

.top-info__hours-note dt {
  width: 4em;
  flex-shrink: 0;
  white-space: nowrap;
  color: #686767;
}

.top-info__hours-note dd {
  color: #686767;
}

.top-info__hours-heading-wrapper {
  background: #f4faf8;
  padding: 25px 20px;
  border-radius: 30px;
}

/* 診療時間 見出し */
.top-info__hours-heading {
  display: block;
  width: 60%;
  min-width: 250px;
  margin: 0 auto 20px;
  background: linear-gradient(-90deg, #87d09f, #b4cd8c);
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  border-radius: 30px;
  letter-spacing: 0.15em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 22px;
}

/* アラート注意書き */
.top-info__hours-alert {
  color: #727272;
  line-height: 1.8;
  padding: 2px 4px;
}

.top-info__hours-alert.orange {
  color: #d6ae69;
}

.top-info__hours-alert.gray {
  color: #686767;
}