/* こしの動物病院 ── 動物病院＋トリミングサロン
   index.html / service.html / trimming.html / access.html で共有する1本のCSS。

   ■ アーキタイプ：信頼・LP型（明るい縦読み）
   ・ヒーローは暗幕をかけた全画面写真ではなく、明るい2分割。
   ・強みは3カラムのカードにせず、横並びの数字スタット（.stats）と
     縦リスト（.signs / .lineup / .people）で見せる。
   ・来院の流れは番号付きの縦タイムライン（.flow）。
   ・料金はすっきりした表（.fee-table / .hours-table）。

   ■ この業種でいちばん大事なこと（設計の前提）
   来訪者の多くは「今まさに具合が悪い」状態で来る。
   したがって **全ページの、スクロールせずに見える位置に電話番号と診療時間** を置く。
   ・.bar（固定ヘッダー）の電話ボタン ── 全ページ・全幅で常時表示
   ・.urgent（診療時間＋電話の帯）── 全ページ、ヒーローの直下
   ・.sticky（スマホ追従バー）── 全ページ、スクロール後に出現
   この3つは1つでも外さないこと。

   ■ 配色の考え方
   ・coral（あたたかい橙赤）＝電話・CTA・番号。**急ぎの導線と番号にだけ**使う。
   ・mint（やわらかい緑）＝見出しの補助・淡色地・リンク。清潔感の担当。
   ・cream（温かい生成り）＝地。純白は card と表にだけ許可する。
   coral を見出しの装飾に使い始めると電話ボタンが埋もれるので、増やさないこと。

   ■ コントラスト
   全テキスト 4.5:1 以上で組んでいる。半透明の文字色は使っていない
   （背景が写真に変わったときに実測値が落ちるため、すべて不透明の色指定）。

   ■ 命名規約
   料金表は .fee-table、診療時間表は .hours-table。両方 .tbl-scroll で包む。
   アウトラインボタンは .btn.line。.ghost / .inv という名前は使わない。 */

:root {
  --cream:      #FFF7F2;
  --cream-2:    #FDEDE6;
  --card:       #FFFFFF;

  --coral:      #C9483C;
  --coral-d:    #A93728;
  --coral-soft: #FCE6DF;
  --coral-line: #F1C9BE;
  --coral-pale: #F2A092;

  --mint:       #1F6E5C;
  --mint-d:     #165446;
  --mint-soft:  #E4F2EC;
  --mint-line:  #BFDED3;
  --mint-pale:  #8FD3BE;

  --forest:     #14453C;

  --ink:        #2E2523;
  --sub:        #5E5551;
  --on-dark:    #E8F0EC;
  --on-dark-sub:#ABC3BB;
  --line:       #EADFD8;

  --jp:    "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --round: "M PLUS Rounded 1c", "Zen Kaku Gothic New", "Hiragino Maru Gothic ProN", sans-serif;
  --num:   "Nunito", "M PLUS Rounded 1c", sans-serif;

  --pad: clamp(18px, 5vw, 44px);
  --r:    16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --bar-h: 106px;
  --shadow: 0 6px 20px rgba(60, 36, 28, .07);
}
@media (min-width: 1000px) { :root { --bar-h: 74px; } }

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 12px); }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--jp);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .02em;
  padding-top: var(--bar-h);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* 料金・体重・時刻は等幅数字にして桁を揃える */
.price, .hours-table, .fee-table, .info, .urgent, .stat-row, .label-no { font-variant-numeric: tabular-nums; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 var(--pad); }
.narrow { max-width: 760px; }

/* ---------- 共通ヘッダー（4ページ共有） ----------
   明るい白ヘッダー。スマホでは2段（ロゴ＋電話／ナビ）になる。
   ナビをスマホで丸ごと消さないこと。下層3ページへ行けなくなる。 */
.bar {
  position: fixed; inset: 0 0 auto; z-index: 60;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.bar-in {
  max-width: 1120px; margin: 0 auto; padding: 9px var(--pad) 8px;
  display: grid; gap: 8px 14px; align-items: center;
  grid-template-columns: 1fr auto;
  grid-template-areas: "logo tel" "nav nav";
}
.bar .logo { grid-area: logo; text-decoration: none; line-height: 1.25; }
.bar .logo b { display: block; font-family: var(--round); font-weight: 800; font-size: 17px; letter-spacing: .06em; color: var(--ink); }
.bar .logo small { display: block; font-family: var(--num); font-size: 9.5px; font-weight: 700; letter-spacing: .2em; color: var(--mint); }

.bar-nav {
  grid-area: nav; display: flex; gap: 6px;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.bar-nav::-webkit-scrollbar { display: none; }
.bar-nav a {
  flex: none; text-decoration: none; color: var(--sub);
  font-size: 12.5px; font-weight: 700; letter-spacing: .03em; line-height: 1.4;
  padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--cream-2); transition: background .2s, color .2s;
}
.bar-nav a:hover { background: var(--mint-soft); color: var(--mint-d); }
.bar-nav a[aria-current="page"] { background: var(--mint); color: #fff; }

/* ヘッダーの電話ボタン。**全幅で常に出す。** スマホで隠す設計にしないこと */
.bar-tel {
  grid-area: tel; flex: none; text-decoration: none;
  display: grid; justify-items: center; gap: 1px;
  background: var(--coral); color: #fff;
  padding: 8px 18px; border-radius: var(--r-pill);
  box-shadow: 0 3px 0 var(--coral-d);
}
.bar-tel:hover { background: var(--coral-d); box-shadow: 0 3px 0 var(--coral-d); }
.bar-tel-num { font-family: var(--num); font-weight: 800; font-size: 16px; letter-spacing: .02em; line-height: 1.2; }
.bar-tel-cap { font-size: 10px; font-weight: 500; letter-spacing: .08em; line-height: 1.2; }
@media (min-width: 1000px) {
  .bar-in { grid-template-columns: auto 1fr auto; grid-template-areas: "logo nav tel"; padding: 10px var(--pad); }
  .bar-nav { justify-content: flex-end; overflow: visible; }
  .bar-nav a { font-size: 13px; padding: 7px 16px; }
  .bar-tel { padding: 8px 22px; }
  .bar-tel-num { font-size: 19px; }
}

/* ---------- ヒーロー（index）：明るい2分割。暗幕は使わない ---------- */
.hero { padding: 26px 0 40px; }
.hero-in { max-width: 1120px; margin: 0 auto; padding: 0 var(--pad); display: grid; gap: 30px; }
.hero-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: var(--mint-d); background: var(--mint-soft);
  padding: 6px 16px; border-radius: var(--r-pill); line-height: 1.7;
}
.hero-title {
  margin-top: 18px;
  font-family: var(--round); font-weight: 800;
  font-size: clamp(28px, 7.2vw, 48px); line-height: 1.5; letter-spacing: .01em;
  text-wrap: balance;
}
.hero-lede { margin-top: 18px; font-size: 15px; line-height: 2.05; max-width: 34em; }
.hero-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-hours {
  margin-top: 26px; list-style: none; display: grid; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 16px 18px; font-size: 13.5px; box-shadow: var(--shadow);
}
.hero-hours li { display: flex; gap: 12px; align-items: baseline; line-height: 1.7; }
.hero-hours span {
  flex: none; width: 44px; text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  color: var(--mint-d); background: var(--mint-soft); border-radius: var(--r-pill); padding: 2px 0;
}
/* サンプルである旨の明示。ファーストビュー内に必ず残すこと */
.hero-sample { margin-top: 18px; font-size: 11.5px; line-height: 1.85; color: var(--sub); }

.hero-media { position: relative; padding: 0 12px 24px; }
.hero-media::before {
  content: ""; position: absolute; z-index: 0;
  inset: 40px 0 12px 40px; background: var(--mint-soft); border-radius: var(--r-lg);
}
.hero-photo { position: relative; z-index: 1; }
.hero-photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%;
  border-radius: var(--r-lg);
}
.hero-badge {
  position: absolute; z-index: 2;
  background: var(--card); border-radius: var(--r); padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(60, 36, 28, .14);
  display: grid; gap: 2px; max-width: 175px;
}
.hero-badge strong { font-family: var(--num); font-weight: 800; font-size: 27px; line-height: 1.1; color: var(--coral-d); }
.hero-badge strong em { font-style: normal; font-family: var(--round); font-size: 13px; margin-left: 3px; color: var(--ink); }
.hero-badge span { font-size: 11.5px; line-height: 1.65; color: var(--sub); }
.badge-a { left: 0; bottom: 0; }
.badge-b { right: 0; top: 18px; }
@media (min-width: 920px) {
  .hero { padding: 40px 0 56px; }
  .hero-in { grid-template-columns: 1.02fr .98fr; gap: 50px; align-items: center; }
  .hero-photo img { aspect-ratio: 3 / 4; }
  .hero-media { padding: 0 18px 30px 0; }
  .hero-media::before { inset: 46px 0 15px 46px; }
  .hero-badge { max-width: 200px; padding: 14px 18px; }
  .badge-a { left: -22px; }
  .badge-b { right: -14px; }
}

/* ---------- 診療時間＋電話の帯（全ページ共通・ヒーロー直下） ----------
   「急に具合が悪くなった飼い主が、最短で時間と番号にたどり着く」ための部品。
   ページを増やしたときも、必ずこの帯を入れること。 */
.urgent { background: var(--mint-soft); border-top: 1px solid var(--mint-line); border-bottom: 1px solid var(--mint-line); }
.urgent-in { max-width: 1120px; margin: 0 auto; padding: 20px var(--pad) 22px; display: grid; gap: 16px; }
.urgent-hours { display: grid; gap: 6px; }
.urgent-ttl { font-family: var(--round); font-weight: 700; font-size: 12px; letter-spacing: .12em; color: var(--mint-d); }
.urgent-row { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 14px; }
.urgent-row b { font-weight: 700; }
.urgent-note { font-size: 12px; color: var(--sub); line-height: 1.8; }
.urgent-tel {
  display: block; text-decoration: none; text-align: center;
  background: var(--coral); color: #fff; border-radius: var(--r); padding: 13px 18px;
  box-shadow: 0 4px 0 var(--coral-d); transition: background .2s;
}
.urgent-tel:hover { background: var(--coral-d); }
.urgent-tel .num { display: block; font-family: var(--num); font-weight: 800; font-size: 27px; letter-spacing: .02em; line-height: 1.3; }
.urgent-tel .cap { display: block; font-size: 11.5px; letter-spacing: .04em; }
@media (min-width: 820px) {
  .urgent-in { grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
  .urgent-tel { padding: 13px 34px; }
  .urgent-tel .num { font-size: 31px; }
}

/* ---------- 横並びの数字スタット（3カラムの理由カードの代わり） ---------- */
.stats { padding: 34px var(--pad) 6px; }
.stat-row {
  max-width: 1120px; margin: 0 auto; list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.stat-row li { padding: 20px 16px; text-align: center; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat-row li:nth-child(-n+2) { border-top: 0; }
.stat-row li:nth-child(odd) { border-left: 0; }
.stat-row strong { display: block; font-family: var(--num); font-weight: 800; font-size: 34px; line-height: 1.15; color: var(--coral-d); }
.stat-row strong em { font-style: normal; font-family: var(--round); font-size: 14px; margin-left: 3px; color: var(--ink); }
.stat-row span { display: block; margin-top: 6px; font-size: 12.5px; line-height: 1.7; color: var(--sub); }
@media (min-width: 780px) {
  .stats { padding: 44px var(--pad) 8px; }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .stat-row li { border-top: 0; }
  .stat-row li:nth-child(odd) { border-left: 1px solid var(--line); }
  .stat-row li:first-child { border-left: 0; }
  .stat-row strong { font-size: 38px; }
}

/* ---------- 下層ページの見出し帯（service / trimming / access） ----------
   トップだけ作り込んで下層が素っ気ない、という落差を作らないための共通部品。
   ヒーローと同じく、明るい2分割の軽量版。 */
.phead { background: var(--mint-soft); border-bottom: 1px solid var(--mint-line); padding: 22px 0 28px; }
.phead-in { max-width: 1120px; margin: 0 auto; padding: 0 var(--pad); display: grid; gap: 22px; }
.crumbs { font-size: 11.5px; color: var(--sub); }
.crumbs a { color: var(--mint-d); }
.crumbs span { margin: 0 6px; }
.phead h1 {
  margin-top: 12px; font-family: var(--round); font-weight: 800;
  font-size: clamp(25px, 6vw, 38px); line-height: 1.5; letter-spacing: .01em; text-wrap: balance;
}
.phead-lede { margin-top: 16px; font-size: 14px; line-height: 2.05; }
.phead-sample { margin-top: 14px; font-size: 11.5px; line-height: 1.85; color: var(--sub); }
.phead-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 30%; border-radius: var(--r-lg); }
@media (min-width: 900px) {
  .phead { padding: 30px 0 38px; }
  .phead-in { grid-template-columns: 1.12fr .88fr; gap: 44px; align-items: center; }
  .phead-photo img { aspect-ratio: 4 / 3; }
}

/* ---------- セクションの地 ---------- */
.sec { padding: 58px 0; }
.sec.tint { background: var(--mint-soft); }
.sec.warm { background: var(--coral-soft); }
@media (min-width: 900px) { .sec { padding: 84px 0; } }

.label { display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
         font-family: var(--round); font-weight: 700; font-size: 13px; letter-spacing: .08em; color: var(--mint-d); }
.label-no {
  flex: none; font-family: var(--num); font-weight: 800; font-size: 12px; color: #fff;
  background: var(--mint); border-radius: var(--r-pill); padding: 3px 11px; letter-spacing: .04em;
}

h2 { font-family: var(--round); font-weight: 800; font-size: clamp(22px, 5vw, 33px);
     line-height: 1.55; letter-spacing: .01em; text-wrap: balance; }
h3 { font-family: var(--round); font-weight: 700; font-size: 17px; line-height: 1.65; }
.sec p + p { margin-top: 15px; }
h2 + p, h2 + .lead { margin-top: 18px; }
.lead { font-size: 16.5px; font-weight: 700; line-height: 1.9; color: var(--mint-d); }
.mute { color: var(--sub); font-size: 13.5px; }
strong { font-weight: 700; }

/* 注意書き。法令・条件まわりはすべてこの見た目に統一する */
.fine-note {
  margin-top: 26px; padding: 15px 18px; background: var(--card);
  border: 1px solid var(--line); border-left: 5px solid var(--coral);
  border-radius: var(--r); font-size: 12.5px; line-height: 1.9; color: var(--sub);
}

.notes { margin-top: 22px; list-style: none; display: grid; gap: 10px; font-size: 13px; line-height: 1.9; color: var(--sub); }
.notes li { padding-left: 18px; position: relative; }
.notes li::before { content: "・"; position: absolute; left: 0; }
.notes a { color: var(--mint-d); }
.notes li.alert {
  color: var(--ink); background: var(--card); border: 1px solid var(--coral-line);
  border-radius: var(--r); padding: 13px 16px 13px 30px;
}
.notes li.alert::before { content: "！"; left: 13px; color: var(--coral-d); font-weight: 700; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  text-decoration: none; background: var(--coral); color: #fff;
  font-family: var(--round); font-weight: 700; font-size: 15.5px; letter-spacing: .03em; line-height: 1.45;
  padding: 13px 30px; border-radius: var(--r-pill);
  box-shadow: 0 4px 0 var(--coral-d);
  transition: background .2s, transform .12s, box-shadow .12s;
}
.btn:hover { background: var(--coral-d); }
.btn:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--coral-d); }
.btn-main { display: block; }
.btn-sub { display: block; font-size: 11.5px; font-weight: 500; letter-spacing: .04em; }
.btn.line { background: var(--card); color: var(--mint-d); box-shadow: 0 4px 0 var(--mint-line); }
.btn.line:hover { background: var(--mint-soft); }
.btn.line:active { box-shadow: 0 1px 0 var(--mint-line); }
.btn.line .btn-sub { color: var(--sub); }
.btn.sm { flex-direction: row; gap: 8px; padding: 11px 26px; font-size: 14.5px; }

.cta-inline { margin-top: 30px; padding-top: 24px; border-top: 1px dashed var(--line);
              display: grid; gap: 14px; justify-items: start; }
.warm .cta-inline, .tint .cta-inline { border-top-color: rgba(46, 37, 35, .14); }
.cta-inline p { font-size: 13.5px; }

/* ---------- 受診の目安：縦リスト（カードを3つ並べない） ---------- */
.signs { margin-top: 24px; list-style: none; display: grid; gap: 10px; }
.signs li {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 13px 18px 13px 48px; font-size: 14px; line-height: 1.7;
}
.signs li::before {
  content: "✓"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--mint-soft); color: var(--mint-d);
  font-size: 12px; font-weight: 700; display: grid; place-items: center;
}
@media (min-width: 680px) { .signs { grid-template-columns: 1fr 1fr; gap: 10px 12px; } }

/* ---------- 項目の縦リスト（診療内容・サイズ区分・追加料金など） ---------- */
.lineup { margin-top: 26px; list-style: none; display: grid; gap: 12px; }
.lineup > li {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px 22px; display: flex; flex-wrap: wrap; gap: 14px 18px; align-items: flex-start;
}
.lineup-no {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--mint-soft); color: var(--mint-d);
  font-family: var(--num); font-weight: 800; font-size: 15px;
  display: grid; place-items: center; line-height: 1;
}
.lineup-body { flex: 1 1 180px; }
.lineup-body h3 { margin-bottom: 6px; }
.lineup-body p { font-size: 13.5px; line-height: 1.95; }
.lineup-body p + p { margin-top: 10px; }
.lineup-price {
  display: inline-block; margin-top: 10px; font-family: var(--num); font-weight: 800; font-size: 15px;
  color: var(--coral-d); background: var(--coral-soft); border-radius: var(--r-pill); padding: 4px 14px;
}
.lineup-link {
  flex: none; align-self: center; text-decoration: none;
  font-size: 12.5px; font-weight: 700; color: var(--mint-d);
  background: var(--mint-soft); border-radius: var(--r-pill); padding: 7px 18px;
  transition: background .2s, color .2s;
}
.lineup-link:hover { background: var(--mint); color: #fff; }

/* ---------- 2つ並べる説明パネル（3カラムにはしない） ---------- */
.panels { margin-top: 26px; display: grid; gap: 14px; }
@media (min-width: 760px) { .panels { grid-template-columns: 1fr 1fr; gap: 16px; } }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 22px; }
.panel h3 { margin-bottom: 10px; }
.panel p { font-size: 13.5px; line-height: 1.95; }
.panel p + p { margin-top: 11px; }
.panel-mark {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--coral-soft); color: var(--coral-d);
  font-family: var(--round); font-weight: 800; font-size: 17px; margin-bottom: 12px;
}

/* ---------- 番号付きの縦タイムライン（来院・予約の流れ） ---------- */
.flow { margin-top: 28px; list-style: none; counter-reset: flow; }
.flow > li { position: relative; counter-increment: flow; padding: 0 0 26px 58px; }
.flow > li::before {
  content: counter(flow, decimal-leading-zero); position: absolute; left: 0; top: 0; z-index: 1;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--coral); color: #fff;
  font-family: var(--num); font-weight: 800; font-size: 14px;
  display: grid; place-items: center; line-height: 1;
}
.flow > li::after { content: ""; position: absolute; left: 20px; top: 46px; bottom: 4px; width: 2px; background: var(--coral-line); }
.flow > li:last-child { padding-bottom: 0; }
.flow > li:last-child::after { display: none; }
.flow h3 { padding-top: 8px; margin-bottom: 6px; }
.flow p { font-size: 13.5px; line-height: 1.95; }
.flow p + p { margin-top: 10px; }

/* ---------- スタッフの縦リスト ---------- */
.people { margin-top: 26px; list-style: none; display: grid; gap: 12px; }
.people > li {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: flex-start;
}
.face {
  flex: none; width: 54px; height: 54px; border-radius: 50%;
  background: var(--coral-soft); color: var(--coral-d);
  font-family: var(--round); font-weight: 800; font-size: 20px;
  display: grid; place-items: center; line-height: 1;
}
.person-body { flex: 1 1 200px; }
.person-body h3 { margin-bottom: 8px; }
.person-body p { font-size: 13.5px; line-height: 1.95; }
.person-body p + p { margin-top: 10px; }

/* ---------- 定義リスト（住所・時間・FAQなど） ---------- */
.info { margin-top: 24px; background: var(--card); border: 1px solid var(--line);
        border-radius: var(--r-lg); overflow: hidden; }
.info > div { display: grid; gap: 3px; padding: 16px 20px; border-top: 1px solid var(--line); }
.info > div:first-child { border-top: 0; }
.info dt { font-family: var(--round); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--mint-d); }
.info dd { font-size: 14.5px; line-height: 1.85; }
.info dd a { color: var(--mint-d); }
@media (min-width: 700px) {
  .info > div { grid-template-columns: 190px 1fr; gap: 20px; align-items: baseline; }
}

/* ---------- 表（診療時間・料金） ----------
   スマホでの横あふれを防ぐため、必ず .tbl-scroll で包む。 */
.scroll-hint { margin-top: 22px; font-size: 11.5px; color: var(--sub); }
@media (min-width: 760px) { .scroll-hint { display: none; } }
.tbl-scroll {
  margin-top: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
}
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: 13.5px; }
caption { text-align: left; font-family: var(--round); font-size: 12px; font-weight: 700;
          letter-spacing: .06em; color: var(--mint-d); padding: 16px 18px 4px; }
th, td { border-top: 1px solid var(--line); padding: 13px 16px; text-align: left; vertical-align: top; line-height: 1.75; }
tbody tr > * + * { border-left: 1px solid var(--line); }
thead th { background: var(--mint); color: #fff; font-family: var(--round); font-weight: 700;
           font-size: 12.5px; letter-spacing: .04em; white-space: nowrap; border-top: 0; }
thead th + th { border-left: 1px solid rgba(255, 255, 255, .3); }
tbody th { background: var(--cream-2); font-weight: 700; white-space: nowrap; }
.price { white-space: nowrap; font-family: var(--num); font-weight: 800; font-size: 14.5px; color: var(--coral-d); }
.nm { display: block; font-weight: 700; }
.ds { display: block; font-size: 12px; color: var(--sub); line-height: 1.7; }
.hours-table td { text-align: center; }
.hours-table th[scope="row"] { text-align: left; }
.mark-o { color: var(--mint); font-weight: 800; font-size: 15px; }
.mark-x { color: var(--coral-d); font-weight: 700; }

/* ---------- 写真の帯 ---------- */
/* キャプションは写真に重ねず、直下の帯に置いている。
   写真の上に半透明の帯で文字を乗せると、明るい被写体が来たときにコントラストが
   落ちる。**動物の写真は明度が読めない**ので、重ねない方針。 */
.band { position: relative; }
.band img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 38%; }
@media (min-width: 760px) { .band img { aspect-ratio: 16 / 7; } }
.band-cap { padding: 14px var(--pad) 16px; background: var(--forest); color: var(--on-dark); font-size: 13px; line-height: 1.8; }
.band-cap span { display: block; max-width: 1120px; margin: 0 auto; }

/* 写真2枚並び */
.duo { max-width: 1120px; margin: 0 auto; padding: 34px var(--pad) 6px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.duo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 32%; border-radius: var(--r-lg); }
.duo figcaption { padding: 10px 4px 0; font-size: 12px; color: var(--sub); line-height: 1.7; }
@media (min-width: 900px) { .duo { padding-top: 48px; gap: 20px; } .duo img { aspect-ratio: 4 / 3; } }

/* 写真と文章の2分割（明るいまま。濃色ベタで塗りつぶさない） */
.duet { display: grid; gap: 26px; }
.duet-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 32%; border-radius: var(--r-lg); }
@media (min-width: 900px) {
  .duet { grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
  .duet.rev .duet-media { order: 2; }
  .duet-media img { aspect-ratio: 5 / 6; }
}

/* ---------- 帯CTA ---------- */
.cta-band { background: var(--coral-soft); padding: 52px 0 56px; text-align: center; }
.cta-band p { margin-top: 16px; font-size: 14.5px; line-height: 2; }
.cta-btns { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-fine { margin-top: 22px; font-size: 12px; color: var(--sub); line-height: 1.85; }

/* ---------- ページ間の相互リンク ----------
   ページを増やすときは、ヘッダーの nav・フッターのサイトマップ・この .nextnav の
   **3か所すべて** に追加すること。1か所忘れるとリンク切れになる。 */
.nextnav { padding: 50px 0 56px; }
.nextnav h2 { font-size: 21px; }
.nn-grid { margin-top: 22px; display: grid; gap: 10px; }
.nn-grid a {
  display: grid; gap: 4px; text-decoration: none; position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px 54px 20px 22px; transition: border-color .2s, background .2s;
}
.nn-grid a::after {
  content: "→"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--mint-soft); color: var(--mint-d);
  display: grid; place-items: center; font-size: 14px;
}
.nn-grid a:hover { border-color: var(--mint-line); background: var(--mint-soft); }
.nn-ttl { font-family: var(--round); font-weight: 800; font-size: 17px; }
.nn-txt { font-size: 12.5px; line-height: 1.85; color: var(--sub); }

/* ---------- フッター ---------- */
footer { background: var(--forest); color: var(--on-dark); padding: 48px 0 100px; }
@media (min-width: 1000px) { footer { padding-bottom: 52px; } }
.f-inner { max-width: 1120px; margin: 0 auto; padding: 0 var(--pad); }
.f-top { display: grid; gap: 30px; }
@media (min-width: 760px) { .f-top { grid-template-columns: 1.2fr 1fr; gap: 40px; } }
.f-logo { font-family: var(--round); font-weight: 800; font-size: 20px; color: #fff; letter-spacing: .04em; }
.f-en { font-family: var(--num); font-weight: 700; font-size: 10.5px; letter-spacing: .2em; color: var(--mint-pale); margin-bottom: 12px; }
.f-top p { font-size: 13.5px; line-height: 2; }
.f-top a { color: var(--on-dark); }
.f-map { list-style: none; display: grid; gap: 9px; font-size: 13.5px; }
.f-map a { color: var(--on-dark); text-decoration: none; }
.f-map a:hover { color: var(--mint-pale); }
.f-note { margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(232, 240, 236, .22);
          font-size: 12px; line-height: 1.9; color: var(--on-dark-sub); }
.credit { margin-top: 16px; font-size: 12px; line-height: 1.9; color: var(--on-dark-sub); }
.credit strong { color: var(--coral-pale); }
.credit a { color: var(--mint-pale); }

/* ---------- スマホ追従バー ----------
   電話が主役。2つ目のボタンは「診療時間」に固定する（時間外に電話させないため） */
.sticky { position: fixed; inset: auto 0 0; z-index: 70; display: grid; grid-template-columns: 1.4fr 1fr;
          transform: translateY(110%); transition: transform .3s; }
.sticky.on { transform: none; }
.sticky a { display: block; text-align: center; text-decoration: none; padding: 15px 8px;
            font-family: var(--round); font-size: 14.5px; font-weight: 700; letter-spacing: .03em; }
.sticky .s1 { background: var(--coral); color: #fff; }
.sticky .s2 { background: var(--forest); color: #fff; }
@media (min-width: 1000px) { .sticky { display: none; } }

/* ---------- スクロールで浮かび上がる ---------- */
.rise { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { opacity: 1; transform: none; transition: none; }
  .btn:active { transform: none; }
}

:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }
footer :focus-visible, .band-cap :focus-visible { outline-color: var(--mint-pale); }
