/* ===== やすらぎ整体院 共通スタイル(SPファースト) =====
   参考: さくら鍼灸整骨院 / なかお整骨院
   クリーム地 + 深緑セクション + テラコッタCTA のアースカラー
*/
:root {
  --cream: #F3EDDC;
  --cream-dark: #EAE1C9;
  --green-deep: #4A5A48;
  --green: #6E8060;
  --green-light: #9FB08C;
  --terra: #D08048;
  --terra-dark: #B96A35;
  --brown: #4B4237;
  --dark: #35402F;
  --white: #FFFEFA;
  --line-green: #06C755;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --maru: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", var(--sans);
  --header-h: 60px;
  --notice-h: 34px; /* お知らせバーの実高さ。JSで折り返し時に自動更新されます */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--brown);
  background: var(--cream);
  line-height: 2;
  font-size: 15px;
  padding-top: calc(var(--header-h) + var(--notice-h)); /* ヘッダー+お知らせバー */
  padding-bottom: 66px; /* SP下部固定バー */
}
body.no-notice { padding-top: var(--header-h); }

img { max-width: 100%; display: block; }
.container { max-width: 1060px; margin: 0 auto; padding: 0 22px; }

/* ===== お知らせバー =====
   文字数が増えても折り返して表示します(以前はnowrap+ellipsisで文末が欠けていました)。
   実際の高さはscript.jsが計測し、--notice-h に反映してヘッダー位置とずれないようにしています。 */
.notice-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  min-height: 34px;
  background: var(--terra-dark);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px 14px;
  z-index: 210;
  letter-spacing: 0.04em;
}

/* ===== ヘッダー ===== */
.site-header {
  position: fixed;
  top: var(--notice-h); left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  z-index: 200;
  display: flex;
  align-items: center;
}
body.no-notice .site-header { top: 0; }
.header-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.logo {
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--green-deep);
  text-decoration: none;
  line-height: 1.3;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--terra-dark);
  letter-spacing: 0.1em;
}
.header-tel { display: none; }

/* ハンバーガー */
.menu-toggle {
  width: 46px; height: 46px;
  background: var(--green-deep);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 300;
  flex-shrink: 0;
}
.menu-toggle span {
  position: absolute;
  left: 13px; right: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }
body.nav-open .menu-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ドロワー */
body.nav-open { overflow: hidden; } /* メニュー表示中は背景のスクロールを止め、下のページと重なって見えるのを防ぎます */
.global-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 250;
  overflow-y: auto;
}
body.nav-open .global-nav { opacity: 1; visibility: visible; }
.global-nav ul { list-style: none; text-align: center; }
.global-nav li { margin: 4px 0; }
.global-nav a {
  display: inline-block;
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  padding: 9px 24px;
}
.global-nav a.current { color: var(--green-light); }
.nav-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* ===== 固定CTA(SP下部) ===== */
.sp-fixed-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  z-index: 190;
  box-shadow: 0 -3px 14px rgba(53, 64, 47, 0.2);
}
.sp-fixed-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.92rem;
  line-height: 1.35;
}
.sp-fixed-bar a small { display: block; font-size: 0.65rem; font-weight: normal; opacity: 0.9; }
.bar-tel { background: var(--green-deep); color: var(--white); }
.bar-web { background: var(--terra-dark); color: #fff; } /* コントラスト比改善のためterra→terra-darkに変更 */

/* 固定CTA(PC右端) */
.pc-side-cta { display: none; }

/* ===== ヒーロー ===== */
.hero { position: relative; }
.hero-photo {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* フォールバック: hero-slideの画像が読み込まれない場合もこのグラデーションが背面に表示されます */
  background: linear-gradient(120deg, var(--dark) 0%, var(--green-deep) 55%, var(--green) 100%);
}
/* 複数のFV画像を交互にクロスフェードで切り替え(script.jsが.activeクラスを一定間隔で切り替えます) */
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(30, 38, 26, 0.75) 0%, rgba(30, 38, 26, 0.15) 45%, transparent 70%),
    linear-gradient(90deg, rgba(53, 64, 47, 0.45) 0%, rgba(53, 64, 47, 0.1) 65%),
    radial-gradient(circle at 82% 22%, rgba(159, 176, 140, 0.25), transparent 55%);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy { width: 100%; max-width: 1060px; margin: 0 auto; padding: 56px 24px; }
.hero-copy h1 {
  font-family: var(--maru);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(1.6rem, 6vw, 2.7rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(30, 40, 25, 0.55);
}
.hero-copy .badge {
  display: inline-block;
  background: var(--terra-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

/* 診療時間ボックス(ヒーロー直下) */
.hours-box {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(53, 64, 47, 0.14);
  max-width: 720px;
  margin: -44px auto 0;
  position: relative;
  z-index: 5;
  padding: 22px 20px 20px;
}
.hours-box h2 {
  font-family: var(--maru);
  font-size: 1rem;
  color: var(--green-deep);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  border: 1px solid var(--cream-dark);
  text-align: center;
  padding: 7px 4px;
  font-size: 0.82rem;
}
.hours-table thead th { background: var(--green-deep); color: var(--white); font-weight: 500; }
.hours-table tbody th { background: var(--cream); font-weight: 500; white-space: nowrap; padding: 7px 8px; }
.hours-table .open { color: var(--green); font-weight: bold; }
.hours-table .closed { color: var(--brown); } /* 薄すぎてコントラスト不足だったため本文色に変更 */
.hours-note { font-size: 0.76rem; margin-top: 10px; line-height: 1.7; color: #7d7263; }
.hours-note strong { color: var(--terra-dark); }

/* ===== ページタイトル(下層) ===== */
.page-title {
  background: var(--green-deep);
  padding: 40px 22px;
  text-align: center;
}
.page-title h1 {
  font-family: var(--maru);
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.page-title .en-label { color: var(--green-light); }

/* ===== セクション共通 ===== */
section { padding: 60px 0; }

.en-label {
  display: block;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  color: var(--terra);
  font-weight: bold;
}
.en-label::before { content: "- "; }
.en-label::after { content: " -"; }

.section-heading { text-align: center; margin-bottom: 36px; }
.section-heading h2 {
  font-family: var(--maru);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.section-heading h2 .hl { color: var(--terra-dark); }
.section-lead { max-width: 680px; margin: -16px auto 36px; font-size: 0.94rem; text-align: center; }

/* 深緑セクション */
.section-green { background: var(--green-deep); }
.section-green .section-heading h2 { color: var(--white); }
.section-green .section-heading h2 .hl { color: var(--green-light); }
.section-green .section-lead { color: var(--cream); }

/* ===== フェードイン ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== コンセプト(2トーン見出し+文) ===== */
.concept { display: flex; flex-direction: column; gap: 22px; }
.concept h2 {
  font-family: var(--maru);
  font-weight: 700;
  font-size: clamp(1.15rem, 5.6vw, 1.55rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  text-align: center;
}
.concept h2 .hl { color: var(--green-light); }
.concept-row { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.concept-text p { font-size: 0.95rem; margin-bottom: 12px; }
.concept-photo {
  width: 100%;
  max-width: 420px;
  height: 320px;
  border-radius: 14px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(30, 40, 25, 0.18);
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}

/* ===== 特徴カード(丸写真+大ナンバー) ===== */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 54px 30px; margin-top: 56px; }
.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 0 24px 26px;
  position: relative;
  box-shadow: 0 4px 16px rgba(30, 40, 25, 0.18);
}
.feature-card .photo {
  width: 168px; height: 168px;
  border-radius: 50%;
  object-fit: cover;
  margin: -34px 0 6px auto;
  border: 5px solid var(--white);
  box-shadow: 0 4px 14px rgba(30, 40, 25, 0.25);
}
/* 実写差し替え待ちのプレースホルダー(他ページと写真が重複していた箇所用) */
.feature-card .photo-placeholder {
  width: 168px; height: 168px;
  border-radius: 50%;
  margin: -34px 0 6px auto;
  border: 5px solid var(--white);
  box-shadow: 0 4px 14px rgba(30, 40, 25, 0.25);
  background: linear-gradient(135deg, var(--green-light), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-family: var(--maru);
  font-size: 0.68rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  padding: 10px;
}
.feature-card .num {
  position: absolute;
  top: -30px; left: 18px;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--green-light);
  font-family: var(--maru);
  line-height: 1;
  letter-spacing: 0.02em;
}
.feature-card h3 {
  font-family: var(--maru);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 1.14rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.feature-card .sub { font-size: 0.88rem; font-weight: bold; color: var(--terra-dark); margin-bottom: 8px; line-height: 1.7; }
.feature-card p { font-size: 0.9rem; }

/* ===== 院長紹介 ===== */
.staff-profile {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(30, 40, 25, 0.12);
  padding: 28px;
  max-width: 780px;
  margin: 0 auto;
}
.staff-photo {
  width: 190px;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.staff-text { text-align: center; }
.staff-name {
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.staff-cred {
  background: var(--terra-dark);
  color: #fff;
  font-size: 0.66rem;
  font-weight: bold;
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.staff-text p:not(.staff-name) { font-size: 0.92rem; text-align: left; }

/* ===== 症状メニュー ===== */
.symptom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.symptom-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 18px 14px;
  text-decoration: none;
  color: var(--brown);
  text-align: center;
  box-shadow: 0 2px 8px rgba(53, 64, 47, 0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}
.symptom-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(53, 64, 47, 0.12); }
.symptom-card h3 {
  font-family: var(--maru);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.symptom-card p { font-size: 0.78rem; line-height: 1.7; }

/* ===== 汎用ボタン ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-align: center;
  transition: transform 0.15s, opacity 0.2s;
}
.btn::after { content: " ›"; }
.btn:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-web { background: var(--terra-dark); color: #fff; } /* WCAG AA対応: terra(約3.0:1)からterra-darkに変更 */
.btn-tel { background: var(--white); color: var(--green-deep); border: 2px solid var(--green-deep); }
.btn-line { background: var(--line-green); color: #fff; }
.btn-ghost { background: var(--cream); color: var(--green-deep); border: 1px solid var(--green); }
.btn small { display: block; font-size: 0.7rem; font-weight: normal; }
.btn-center { text-align: center; margin-top: 34px; }

/* ===== チェックリスト ===== */
.check-list { list-style: none; max-width: 660px; margin: 0 auto; }
.check-list li {
  background: var(--white);
  border-radius: 8px;
  padding: 13px 18px 13px 44px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  box-shadow: 0 2px 8px rgba(53, 64, 47, 0.07);
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px; top: 12px;
  color: var(--terra);
  font-weight: bold;
}
.list-followup { margin-top: 26px; font-size: 0.98rem; text-align: center; }
.list-followup strong { color: var(--terra-dark); }

/* ===== フロー ===== */
.flow { max-width: 680px; margin: 0 auto; counter-reset: step; }
.flow-step {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 22px 20px 72px;
  margin-bottom: 18px;
  position: relative;
  box-shadow: 0 2px 10px rgba(53, 64, 47, 0.08);
}
.flow-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 18px; top: 18px;
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-light);
}
.flow-step h3 {
  font-family: var(--maru);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.flow-step p { font-size: 0.9rem; }

/* ===== 患者様の声 ===== */
.voice-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.voice {
  background: var(--white);
  padding: 24px 22px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(53, 64, 47, 0.08);
  border-top: 4px solid var(--green-light);
}
.voice p { font-size: 0.92rem; margin-bottom: 12px; }
.voice .who {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: bold;
  border-top: 1px dashed var(--cream-dark);
  padding-top: 10px;
}
.voice-note { font-size: 0.74rem; color: #9b917e; margin-top: 16px; text-align: center; }

/* ===== お知らせ ===== */
.news-list { max-width: 680px; margin: 0 auto; list-style: none; }
.news-list li { border-bottom: 1px solid var(--cream-dark); }
.news-list .news-row {
  display: flex;
  gap: 18px;
  padding: 14px 6px;
  text-decoration: none;
  color: var(--brown);
  font-size: 0.9rem;
  align-items: baseline;
}
.news-list .news-row { flex-wrap: wrap; row-gap: 2px; }
.news-list time { color: var(--green); font-size: 0.8rem; white-space: nowrap; font-weight: bold; flex-shrink: 0; margin-right: 6px; }

/* ===== 料金表 ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(53, 64, 47, 0.08);
}
.price-table th, .price-table td {
  padding: 14px 14px;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.92rem;
}
.price-table thead th { background: var(--green-deep); color: var(--white); font-weight: 500; }
.price-table td.price { color: var(--terra-dark); font-weight: bold; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.price-note { font-size: 0.82rem; margin-top: 14px; }

/* ===== CTA(3連) ===== */
.cta {
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  padding: 64px 22px;
}
.cta h2 {
  font-family: var(--maru);
  font-weight: 700;
  margin: 8px 0 10px;
  font-size: 1.45rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.cta > .container > p { margin-bottom: 30px; opacity: 0.9; font-size: 0.93rem; }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 860px; margin: 0 auto; }
.cta-item { display: flex; flex-direction: column; align-items: center; }
.cta-item .btn { width: min(320px, 100%); }
.cta-item p { font-size: 0.8rem; margin-top: 10px; opacity: 0.85; line-height: 1.7; }
.cta .note { display: block; margin-top: 24px; opacity: 0.7; font-size: 0.8rem; }

/* ===== 院情報テーブル ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(53, 64, 47, 0.08);
}
.info-table th, .info-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--cream-dark);
  text-align: left;
  font-size: 0.92rem;
}
.info-table th {
  background: var(--cream);
  color: var(--green-deep);
  width: 30%;
  font-family: var(--maru);
  font-weight: 700;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

/* 地図の実装イメージが伝わるよう、道路グリッド風の柄+ピンアイコンで表現したプレースホルダー(住所確定後にGoogleマップへ差し替え) */
.map-placeholder {
  position: relative;
  background-color: var(--cream-dark);
  background-image:
    repeating-linear-gradient(0deg, rgba(110, 128, 96, 0.16) 0, rgba(110, 128, 96, 0.16) 1px, transparent 1px, transparent 34px),
    repeating-linear-gradient(90deg, rgba(110, 128, 96, 0.16) 0, rgba(110, 128, 96, 0.16) 1px, transparent 1px, transparent 34px);
  border-radius: 10px;
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--green-deep);
  margin-top: 24px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(110, 128, 96, 0.25);
}
.map-placeholder .pin {
  width: 88px;
  height: 88px;
  color: var(--terra-dark);
  filter: drop-shadow(0 5px 8px rgba(30, 40, 25, 0.3));
}
.map-placeholder span {
  font-size: 0.98rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  background: rgba(255, 254, 250, 0.75);
  padding: 6px 16px;
  border-radius: 999px;
}

/* ===== アクセス概要(トップ) ===== */
.access-summary { display: flex; flex-direction: column; gap: 26px; }
.access-summary .addr { font-size: 0.95rem; }
.access-summary .addr strong { font-family: var(--maru); color: var(--green-deep); font-size: 1.1rem; display: block; margin-bottom: 6px; }
.access-summary .tel-big {
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--green-deep);
  text-decoration: none;
  display: inline-block;
  margin: 6px 0;
}

/* ===== フッター ===== */
.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 48px 22px 88px;
}
.footer-inner { max-width: 1060px; margin: 0 auto; }
.footer-logo {
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-logo small { display: block; font-size: 0.62rem; letter-spacing: 0.2em; color: var(--green-light); }
.footer-info { margin: 18px 0; font-size: 0.85rem; }
.footer-info dt { color: var(--green-light); font-size: 0.72rem; letter-spacing: 0.1em; margin-top: 8px; }
.footer-info a { color: var(--cream); }
.footer-nav ul {
  display: flex;
  gap: 6px 22px;
  list-style: none;
  flex-wrap: wrap;
  margin: 22px 0;
  padding-top: 22px;
  border-top: 1px solid rgba(243, 237, 220, 0.18);
}
.footer-nav a { color: var(--cream); text-decoration: none; font-size: 0.85rem; }
.footer-nav a:hover { color: var(--white); text-decoration: underline; }
.copyright { font-size: 0.72rem; opacity: 0.6; letter-spacing: 0.06em; }

/* ===== PC(900px〜) ===== */
@media (min-width: 900px) {
  body { padding-bottom: 0; font-size: 16px; }
  .sp-fixed-bar { display: none; }
  .site-footer { padding-bottom: 40px; }

  .notice-bar { font-size: 0.8rem; }

  .menu-toggle { display: none; }
  .header-tel {
    display: block;
    text-align: right;
    line-height: 1.4;
    margin-left: auto;
  }
  .header-tel .num {
    font-family: var(--maru);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--green-deep);
    text-decoration: none;
  }
  .header-tel small { display: block; font-size: 0.66rem; color: var(--brown); }
  .global-nav {
    position: static;
    inset: auto;
    background: none;
    opacity: 1;
    visibility: visible;
    flex-direction: row;
  }
  .global-nav ul { display: flex; align-items: center; gap: 0; }
  .global-nav li { margin: 0; }
  .global-nav a {
    font-size: 0.9rem;
    color: var(--brown);
    padding: 8px 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .global-nav a:hover { color: var(--terra-dark); }
  .global-nav a.current { color: var(--terra-dark); }
  .nav-cta { display: none; }

  /* PC右端固定CTA */
  .pc-side-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: 0;
    bottom: 90px;
    z-index: 190;
  }
  .pc-side-cta a {
    display: block;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 0.86rem;
    padding: 16px 14px;
    border-radius: 10px 0 0 10px;
    line-height: 1.4;
    box-shadow: 0 4px 14px rgba(30, 40, 25, 0.25);
  }
  .pc-side-cta a small { display: block; font-size: 0.64rem; font-weight: normal; }
  .pc-side-cta .side-web { background: var(--terra-dark); color: #fff; }
  .pc-side-cta .side-tel { background: var(--green-deep); color: var(--white); }

  .hero-photo { min-height: 68vh; }
  .hero-copy { padding: 80px 24px; }
  .hours-box { margin-top: -64px; padding: 28px 32px 24px; }
  .hours-table th, .hours-table td { font-size: 0.9rem; padding: 9px 6px; }

  section { padding: 88px 0; }
  .section-heading h2 { font-size: 1.8rem; }
  .concept { flex-direction: column; gap: 32px; }
  .concept h2 { font-size: 1.9rem; text-align: center; }
  .concept h2 .sp-break { display: none; }
  .concept-row { flex-direction: row; align-items: center; gap: 48px; }
  .concept-photo { flex: 0 0 42%; max-width: 100%; height: 380px; }
  .concept-text { flex: 1; }

  .staff-profile { flex-direction: row; align-items: flex-start; padding: 40px; }
  .staff-text { text-align: left; }
  .staff-name { justify-content: flex-start; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 66px 40px; max-width: 920px; margin-left: auto; margin-right: auto; }
  .symptom-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .voice-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .cta-item .btn { width: 100%; }

  .access-summary { flex-direction: row; align-items: flex-start; gap: 50px; }
  .access-summary > * { flex: 1; }

  .page-title { padding: 56px 22px; }
  .page-title h1 { font-size: 1.8rem; }
  .price-table th, .price-table td { padding: 16px 20px; font-size: 0.95rem; }
  .footer-cols { display: flex; justify-content: space-between; gap: 40px; }
}
