@charset "UTF-8";
/* =====================================================
   デジクリ歯科クリニック サンプルサイト
   style.css

   デザイン：クリニック系・誠実×やさしい（参考：kumada-ganka.com）
   - 白地にティールグリーン（#019f8b）。淡いミント面で柔らかく
   - 見出しは明朝（Noto Serif JP）、本文はゴシック（Noto Sans JP）
   - 角丸は4〜8pxの控えめ。影はごく淡く
   - 赤（#e75f5f）は休診・注意表示のみに使用
   - 診療時間表とアクセスを上部に置く「患者ファースト」構成

   【目次】
   1. 変数（デザイントークン）
   2. リセット・ベース
   3. 共通パーツ（ボタン・見出し・セクション）
   4. ヘッダー（電話・WEB予約付き）
   5. ヒーロー
   6. お知らせ
   7. 診療時間・アクセスバンド
   8. 院長あいさつ
   9. 診療案内カード
   10. 3つの特長（Point）
   11. 院内紹介ギャラリー
   12. CTAバンド
   13. フッター（診療時間表つき）
   14. 下層ページ共通
   15. 下層：各ページ固有
   16. フォーム
   17. レスポンシブ

   ※色・角丸・余白はすべて「1. 変数」で一元管理。
===================================================== */

/* -----------------------------------------------------
   1. 変数（デザイントークン）
----------------------------------------------------- */
:root {
  /* ブランド */
  --teal:       #019f8b;   /* メイン：ティールグリーン */
  --teal-dark:  #168274;
  --teal-pale:  #f3f9f7;   /* 淡いミント面 */
  --red:        #e75f5f;   /* 休診・注意のみ */

  /* サーフェス */
  --bg:    #ffffff;
  --line:  #e2e2e2;

  /* テキスト */
  --text:           #333333;
  --text-strong:    #262424;
  --text-secondary: #777e85;

  /* 角丸・影 */
  --r-sm: 4px;
  --r-md: 8px;
  --shadow-soft: 0 4px 16px rgba(38, 36, 36, 0.07);

  /* フォント */
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans:  "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;

  /* 余白 */
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 32px;
  --sp-xl: 48px;
  --sp-xxl: 64px;
  --sp-section: 88px;

  /* コンテンツ幅 */
  --w-content: 1120px;
}

/* -----------------------------------------------------
   2. リセット・ベース
----------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--teal-dark);
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

strong {
  font-weight: 700;
  color: var(--text-strong);
}

/* -----------------------------------------------------
   3. 共通パーツ
----------------------------------------------------- */

/* --- セクション共通 --- */
.section {
  padding: var(--sp-section) 0;
}

.section--pale {
  background: var(--teal-pale);
}

.section__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 24px;
}

/* 見出し（明朝＋ティールの英字添え） */
.section__title {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section__title-en {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.section__title-jp {
  display: block;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--text-strong);
}

/* 見出し下の短い飾り線 */
.section__title-jp::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section__sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin: -24px 0 var(--sp-xl);
}

/* --- ボタン --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  border-radius: var(--r-sm);
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--teal-pale);
  transform: translateY(-1px);
}

/* プライマリ（ティール塗り）：WEB予約用 */
.btn--solid {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(1, 159, 139, 0.3);
}

.btn--solid:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}

/* テキストリンク */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
}

.text-link::after {
  content: "\2192"; /* → */
  transition: transform 0.2s;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* -----------------------------------------------------
   4. ヘッダー
----------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 12px 24px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ロゴ：歯のマーク＋名称 */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  line-height: 1.2;
}

.logo__sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

/* ヘッダー右側：電話＋WEB予約 */
.header__contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__tel {
  text-align: center;
  line-height: 1.4;
}

.header__tel-number {
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: var(--text-strong);
}

.header__tel-number::before {
  content: "\260E ";
  color: var(--teal);
  font-size: 17px;
}

.header__tel-hours {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
}

.header__cta {
  min-height: 46px;
  padding: 10px 24px;
  font-size: 14px;
}

/* グローバルナビ */
.gnav {
  border-top: 1px solid var(--line);
}

.gnav__list {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.gnav__list a {
  display: block;
  white-space: nowrap;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.gnav__list a:hover {
  color: var(--teal-dark);
  border-bottom-color: #b9e2db;
}

.gnav__list a.is-current {
  color: var(--teal-dark);
  border-bottom-color: var(--teal);
}

/* スマホ用メニューボタン */
.header__menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  background: var(--teal);
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.header__menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.header__menu-btn.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.header__menu-btn.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* -----------------------------------------------------
   5. ヒーロー
----------------------------------------------------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  /* メイン写真：images/hero.jpg（横長 2400×1200px・明るい院内or笑顔） */
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-color: var(--teal-pale);
}

/* 文字可読性のための白グラデーション */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.75) 38%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0) 100%);
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 72px 24px;
}

.hero__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal-dark);
  margin-bottom: var(--sp-sm);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: var(--text-strong);
  margin-bottom: var(--sp-md);
}

.hero__sub {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text);
  margin-bottom: var(--sp-xl);
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* -----------------------------------------------------
   6. お知らせ
----------------------------------------------------- */
.news-band {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: var(--sp-xl) 24px 0;
}

.news-band__box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 28px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.news-band__head {
  flex-shrink: 0;
  padding-top: 6px;
}

.news-band__head-en {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.news-band__head-jp {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-strong);
}

.news-band__list {
  flex: 1;
}

.news-band__list li + li {
  border-top: 1px dotted var(--line);
}

.news-band__list a {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 8px 4px;
  color: var(--text);
}

.news-band__list a:hover {
  color: var(--teal-dark);
}

.news-band__date {
  font-size: 12px;
  color: var(--text-secondary);
  flex-shrink: 0;
  width: 88px;
}

.news-band__title {
  font-size: 13.5px;
}

/* -----------------------------------------------------
   7. 診療時間・アクセスバンド（上部配置が肝）
----------------------------------------------------- */
.info-band__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

.info-card {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: var(--sp-lg);
}

.info-card__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: var(--sp-sm);
  padding-left: 14px;
  border-left: 3px solid var(--teal);
}

/* 診療時間表 */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: center;
}

.hours-table th,
.hours-table td {
  border: 1px solid var(--line);
  padding: 10px 6px;
}

.hours-table thead th {
  background: var(--teal);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
}

.hours-table tbody th {
  background: var(--teal-pale);
  font-weight: 500;
  white-space: nowrap;
}

.hours-table .ok {
  color: var(--teal);
  font-weight: 700;
}

.hours-table .ng {
  color: var(--red);
}

.hours-note {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-top: 10px;
}

.hours-note .closed {
  color: var(--red);
  font-weight: 700;
}

/* アクセス概要 */
.access-list dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: 14px;
}

.access-list dt:first-child {
  margin-top: 0;
}

.access-list dd {
  font-size: 14px;
}

/* -----------------------------------------------------
   8. 院長あいさつ
----------------------------------------------------- */
.greeting {
  display: flex;
  gap: var(--sp-xl);
  align-items: flex-start;
}

.greeting__media {
  width: 320px;
  flex-shrink: 0;
}

.greeting__photo {
  width: 100%;
  display: block;
  border-radius: var(--r-md);
  background: var(--teal-pale);
}

.greeting__name {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  color: var(--text-secondary);
}

.greeting__name strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-strong);
}

.greeting__text .lead {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  margin-bottom: 18px;
}

.greeting__text p {
  font-size: 14.5px;
  margin-bottom: 14px;
}

/* -----------------------------------------------------
   9. 診療案内カード
----------------------------------------------------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.menu-card {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(38, 36, 36, 0.12);
}

.menu-card__photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--teal-pale);
}

.menu-card__body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.menu-card__text {
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: var(--sp-sm);
  flex: 1;
}

/* -----------------------------------------------------
   10. 3つの特長（Point）
----------------------------------------------------- */
.point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.point-card {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
}

.point-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  margin-bottom: 14px;
}

.point-card__num small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.point-card__num span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.point-card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--text-strong);
  margin-bottom: 10px;
}

.point-card__text {
  font-size: 13.5px;
  text-align: left;
  color: var(--text);
}

/* -----------------------------------------------------
   11. 院内紹介ギャラリー
----------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--r-md);
  background: var(--teal-pale);
}

.gallery-grid figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* -----------------------------------------------------
   12. CTAバンド
----------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 72px 24px;
  text-align: center;
}

.cta-band__inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-band__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: var(--sp-sm);
}

.cta-band__text {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--sp-lg);
}

.cta-band__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-band .btn {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.cta-band .btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cta-band .btn--solid {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: none;
}

.cta-band .btn--solid:hover {
  background: var(--teal-pale);
  color: var(--teal-dark);
}

/* CTA内の電話ボックス */
.cta-band__tel {
  background: #fff;
  border-radius: var(--r-sm);
  padding: 8px 28px;
  line-height: 1.5;
  text-align: center;
}

.cta-band__tel-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-strong);
}

.cta-band__tel-number::before {
  content: "\260E ";
  color: var(--teal);
  font-size: 17px;
}

.cta-band__tel-hours {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
}

/* -----------------------------------------------------
   13. フッター
----------------------------------------------------- */
.footer {
  background: var(--teal-pale);
  border-top: 1px solid #d8ece7;
  padding: var(--sp-xxl) 0 0;
}

.footer__inner {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 24px var(--sp-xl);
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.8fr;
  gap: var(--sp-xl);
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.footer__address {
  font-size: 13px;
  line-height: 2.0;
  color: var(--text);
}

.footer__hours-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.footer .hours-table {
  font-size: 12.5px;
  background: #fff;
}

.footer .hours-table th,
.footer .hours-table td {
  padding: 7px 4px;
}

.footer__nav ul li {
  margin-bottom: 6px;
}

.footer__nav a {
  font-size: 13.5px;
  color: var(--text);
}

.footer__nav a:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.footer__bottom {
  background: var(--teal-dark);
  padding: 14px 24px;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

/* -----------------------------------------------------
   14. 下層ページ共通
----------------------------------------------------- */
.page-header {
  background: var(--teal-pale);
  padding: 52px 0;
  text-align: center;
}

.page-header__en {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.page-header__title {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-strong);
}

/* パンくず */
.breadcrumb {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.breadcrumb ol {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li + li::before {
  content: "\203A";
  margin: 0 10px;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.breadcrumb li {
  color: var(--text);
}

/* 下層用の中見出し */
.heading-2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-strong);
  border-left: 4px solid var(--teal);
  padding-left: 16px;
  margin-bottom: var(--sp-md);
}

/* -----------------------------------------------------
   15. 下層：各ページ固有
----------------------------------------------------- */

/* --- 診療案内詳細（写真＋本文の交互） --- */
.menu-detail {
  display: flex;
  gap: var(--sp-xl);
  align-items: center;
  padding: var(--sp-xl) 0;
}

.menu-detail + .menu-detail {
  border-top: 1px solid var(--line);
}

.menu-detail:nth-child(even) {
  flex-direction: row-reverse;
}

.menu-detail__photo {
  width: 42%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--teal-pale);
}

.menu-detail__title {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.menu-detail__text {
  font-size: 14px;
  margin-bottom: 16px;
}

.check-list li {
  position: relative;
  font-size: 13.5px;
  padding-left: 24px;
  margin-bottom: 6px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* --- 初めての方へ：流れ --- */
.flow-list {
  counter-reset: flow;
}

.flow-item {
  position: relative;
  display: flex;
  gap: var(--sp-md);
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: var(--sp-md) var(--sp-lg);
  margin-bottom: 36px;
}

/* 工程間の下向き矢印 */
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: var(--teal);
}

.flow-item__num {
  counter-increment: flow;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.flow-item__num::before {
  content: counter(flow);
}

.flow-item__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 4px;
}

.flow-item__text {
  font-size: 13.5px;
}

/* 持ち物などの案内ボックス */
.notice-box {
  background: var(--teal-pale);
  border-radius: var(--r-md);
  padding: 22px 26px;
  font-size: 13.5px;
}

.notice-box__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

/* --- 料金表 --- */
.price-section {
  margin-bottom: var(--sp-xxl);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.price-table th,
.price-table td {
  border: 1px solid var(--line);
  padding: 13px 18px;
  text-align: center;
}

.price-table thead th {
  background: var(--teal);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.price-table tbody tr:nth-child(even) td {
  background: var(--teal-pale);
}

.price-table__fee {
  font-weight: 700;
  color: var(--teal-dark);
}

.price-note {
  background: var(--teal-pale);
  border-radius: var(--r-md);
  padding: 20px 26px;
  font-size: 13px;
}

.price-note__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

/* --- 医院概要テーブル --- */
.clinic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}

.clinic-table th,
.clinic-table td {
  border: 1px solid var(--line);
  padding: 14px 20px;
  text-align: left;
  vertical-align: top;
}

.clinic-table th {
  background: var(--teal-pale);
  color: var(--teal-dark);
  width: 25%;
  font-weight: 700;
}

/* 地図枠 */
.map-frame {
  margin-top: var(--sp-md);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--teal-pale);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 13px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* --- FAQ --- */
.faq-group {
  margin-bottom: var(--sp-xxl);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item__q {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 17px 56px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::before {
  content: "Q";
  position: absolute;
  left: 20px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--teal);
}

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  font-weight: 300;
  color: var(--teal);
}

.faq-item[open] .faq-item__q::after {
  content: "\2212";
}

.faq-item__a {
  padding: 0 24px 16px 56px;
  font-size: 13.5px;
}

/* --- お知らせ一覧 --- */
.news-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.news-list li + li {
  border-top: 1px solid var(--line);
}

.news-list a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 18px 24px;
  transition: background 0.2s;
}

.news-list a:hover {
  background: var(--teal-pale);
}

.news-list__date {
  font-size: 13px;
  color: var(--text-secondary);
  flex-shrink: 0;
  width: 96px;
}

.news-list__cat {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border: 1px solid #cdebe5;
  border-radius: 999px;
  padding: 2px 14px;
  text-align: center;
}

.news-list__cat--important {
  color: var(--red);
  background: #fdf1f1;
  border-color: #f5c9c9;
}

.news-list__title {
  font-size: 14px;
  color: var(--text);
}

/* -----------------------------------------------------
   16. フォーム
----------------------------------------------------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xxl);
}

.contact-method {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.contact-method__text {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 16px;
  flex: 1;
}

.contact-method__tel {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-strong);
}

.contact-method__tel::before {
  content: "\260E ";
  color: var(--teal);
  font-size: 18px;
}

.contact-form {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 40px 44px;
}

.form-row {
  padding: 18px 0;
}

.form-row + .form-row {
  border-top: 1px solid var(--line);
}

.form-row__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 8px;
}

.form-required,
.form-optional {
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  padding: 1px 10px;
}

.form-required {
  color: #fff;
  background: var(--red);
}

.form-optional {
  color: var(--text-secondary);
  background: #f0f0f0;
}

.form-row__field input[type="text"],
.form-row__field input[type="email"],
.form-row__field input[type="tel"],
.form-row__field select,
.form-row__field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  padding: 12px 16px;
  min-height: 48px;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-row__field input::placeholder,
.form-row__field textarea::placeholder {
  color: #b0b6bb;
}

.form-row__field input:focus,
.form-row__field select:focus,
.form-row__field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 159, 139, 0.15);
}

.form-row__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23019f8b' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-row__field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row__note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-checks label {
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.form-checks label:hover {
  border-color: var(--teal);
}

.form-checks label:has(input:checked) {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 700;
}

.form-checks input[type="checkbox"] {
  accent-color: #fff;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.form-agree {
  text-align: center;
  font-size: 13px;
  margin: 28px 0 20px;
}

.form-agree a {
  text-decoration: underline;
}

.form-agree input[type="checkbox"] {
  accent-color: var(--teal);
  margin-right: 8px;
}

.form-submit {
  text-align: center;
}

.form-submit .btn {
  min-width: 320px;
  font-size: 16px;
}

/* -----------------------------------------------------
   17. レスポンシブ
----------------------------------------------------- */

/* === ナビ折りたたみ（〜1024px） === */
@media (max-width: 1024px) {
  .header__contact {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .gnav {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: #fff;
    z-index: 99;
    border-top: 2px solid var(--teal);
    overflow-y: auto;
  }

  .gnav.is-open {
    display: block;
  }

  .gnav__list {
    flex-direction: column;
    padding: 8px 24px 24px;
  }

  .gnav__list a {
    padding: 16px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }

  /* グリッド調整 */
  .menu-grid,
  .point-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .info-band__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero__title {
    font-size: 36px;
  }
}

/* === スマホ（〜768px） === */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  .header__inner {
    padding: 10px 16px;
  }

  .logo__name {
    font-size: 19px;
  }

  /* --- ヒーロー --- */
  .hero {
    min-height: 480px;
  }

  .hero::before {
    background: rgba(255, 255, 255, 0.82);
  }

  .hero__inner {
    padding: 56px 20px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  /* --- セクション --- */
  .section {
    padding: 56px 0;
  }

  .section__inner {
    padding: 0 20px;
  }

  .section__title-jp {
    font-size: 24px;
  }

  .news-band__box {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
  }

  .greeting {
    flex-direction: column;
    align-items: center;
  }

  .greeting__media {
    width: 100%;
    max-width: 300px;
  }

  .menu-grid,
  .point-grid {
    grid-template-columns: 1fr;
  }

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

  /* --- 下層 --- */
  .page-header {
    padding: 36px 0;
  }

  .page-header__title {
    font-size: 24px;
  }

  .menu-detail,
  .menu-detail:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-detail__photo {
    width: 100%;
  }

  .flow-item {
    flex-direction: column;
    gap: 10px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px 32px;
  }

  .news-list a {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 14px 18px;
  }

  .news-list__title {
    width: 100%;
  }

  .form-submit .btn {
    min-width: 0;
    width: 100%;
  }

  .cta-band {
    padding: 56px 20px;
  }

  .cta-band__title {
    font-size: 22px;
  }

  .cta-band__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }
}
