@charset "UTF-8";
/*
 * ======================================
 * 公園前クリニックまかび — サイト固有CSS（site.css）
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ======================================
 *
 * ▼レイアウト土台
 * .makabi-bg-mist        - 白→淡グリーンのソフトグラデ背景（参考デザインの section--mist 再現）
 * .js-reveal / .is-in    - スクロールに合わせたふんわりフェードイン
 *
 * ▼見出し
 * .makabi-heading            - セクション見出し（明朝・大きめ・字間広め）
 * .makabi-heading--center    - 中央寄せ＋リーフ装飾画像（leafy-divider.png）
 * .makabi-lead               - セクション導入のリード文（やや大きめ・落ち着いた色）
 *
 * ▼共通パーツ
 * .makabi-list / --magenta   - 緑（マゼンタ）の丸ポチ付き箇条書き（全ページ共通の本文リスト）
 * .makabi-no                 - マゼンタの番号ピル（特徴カード 01/02/03）
 * .makabi-alert              - マゼンタ枠の注意喚起ボックス（生活保護指定 等）
 * .makabi-note-magenta       - 注意テキスト（マゼンタ）
 * .makabi-softcard           - 白い角丸ソフトカード（キャンセルポリシー・自立支援 等）
 *
 * ▼ヘッダー / フッター
 * .makabi-page-hero          - 下層ヘッダーを白→淡グリーンのグラデにする
 * .makabi-footer__info/__tel/__map/__brand - フッターのクリニック情報・地図
 *
 * ▼TOP
 * .makabi-mv / __copy / __badge / __title / __sub  - メインビュー（静止画＋オーバーレイコピー）
 * .makabi-fvbar              - FV直下の診療受付・電話・休診日バー
 * .makabi-feat-card          - クリニックの特徴カード（写真＋番号＋本文）
 * .makabi-booking            - ご予約／診療時間の2カラム
 * .makabi-plink              - 各ページのご案内カード
 *
 * ▼下層共通
 * .makabi-tag                - 診療案内の疾患タグ（ピル・hoverで緑塗り）
 * .makabi-symgroup / __title / .makabi-symlist - 診療案内の症状グループカード
 * .makabi-flow / __item / __no - 診察の流れ（番号付きステップ）
 * .makabi-fee                - 費用テーブル
 * .makabi-support-grid / __item - 自立支援医療制度の2枚カード
 * .makabi-net-card           - ネット予約バナー（QR仮組み）
 * .makabi-tel-cta            - 電話予約の大きな番号ブロック
 * .makabi-access / __item    - アクセスの交通手段カード
 * .makabi-park               - 駐車場情報ボックス
 * .makabi-botanical          - セクション四隅の植物装飾画像
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * ・装飾パターン不足：リーフ装飾画像つき中央見出し（葉のディバイダー）→ .makabi-heading--center
 * ・装飾パターン不足：セクション四隅のボタニカル装飾 → .makabi-botanical
 * ・構造不足：メインコピー＋開院バッジを写真へ重ねるMVオーバーレイ → .makabi-mv__copy
 * ・構造不足：FV直下の3分割インフォメーションバー → .makabi-fvbar
 * ・値の粒度不足：白→淡グリーンのソフトグラデ背景（単色 bg-section では再現不可）→ .makabi-bg-mist
 */

/* =====================================================================
   0. パレット（参考デザインのトークンを再利用）
   ===================================================================== */
:root {
  --mk-green:        #8BC482;
  --mk-green-mid:    #6FB269;
  --mk-green-deep:   #3F7D44;
  --mk-green-ink:    #2E4A30;
  --mk-green-pale:   #EAF4E6;
  --mk-green-mist:   #F4FAF1;
  --mk-magenta:      #EE2B84;
  --mk-magenta-deep: #C81E6C;
  --mk-ink:          #2F3A31;
  --mk-ink-soft:     #5C6A5E;
  --mk-line:         #E4ECE0;
  --mk-shadow-card:  0 10px 30px -20px rgba(46, 74, 48, .35);
  --mk-shadow-soft:  0 14px 40px -22px rgba(63, 125, 68, .45);
  --mk-serif-en:     "Cormorant Garamond", "Times New Roman", serif;
  /* 数字用：日付・番号などはゴシックで */
  --mk-num:          "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  /* 電話番号用：明朝（Noto Serif JP） */
  --mk-mincho:       "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
}

/* =====================================================================
   1. 固定ヘッダー分のオフセット
   ===================================================================== */
body { padding-top: 80px; }
@media (max-width: 1100px) { body { padding-top: 60px; } }
body.is-nav-open { overflow: hidden; }

/* ロゴアイコンを少し大きく・角丸に（参考デザインの brand-mark 寄せ） */
.header-logo__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  box-shadow: var(--mk-shadow-card);
}
.header-logo__name { font-size: 1.9rem; font-weight: 700; letter-spacing: .04em; line-height: 1.25; white-space: nowrap; }
@media (max-width: 1100px) { .header-logo__name { white-space: normal; } }
/* 画像ロゴ */
.header-logo__img { height: 50px; width: auto; display: block; }
@media (max-width: 1100px) { .header-logo__img { height: 40px; } }
.makabi-footer__logo { height: auto; width: min(280px, 70vw); display: block; }

/* グローバルナビ（参考デザインに合わせて日本語のみ・落ち着いた色） */
.header__nav-item a { padding: 8px 15px; }
.header__nav-ja { font-size: 1.45rem; font-weight: 500; color: var(--mk-ink); margin-top: 0; letter-spacing: .02em; }
.header__nav-item a:hover .header__nav-ja { color: var(--mk-green-deep); }
.header__nav-item--current .header__nav-ja { color: var(--mk-green-deep); }

/* ヘッダー右：ご予約・お問い合わせ＋電話番号（アイコン付き・端から余白） */
.header__inner--spread .header__right { margin-right: 8px; }
.makabi-header-tel { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.makabi-header-tel__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mk-green-pale);
  color: var(--mk-green-deep);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  transition: background .3s, color .3s;
}
.makabi-header-tel:hover .makabi-header-tel__icon { background: var(--mk-green); color: #fff; }
.makabi-header-tel__body { display: flex; flex-direction: column; line-height: 1.2; }
.makabi-header-tel__label { font-size: 1.05rem; letter-spacing: .14em; color: var(--mk-ink-soft); white-space: nowrap; }
.makabi-header-tel__num { font-family: var(--mk-mincho); font-size: 2.2rem; font-weight: 600; color: var(--mk-green-deep); letter-spacing: .02em; }

/* 日付・年号などはゴシック */
.dl-timeline__year,
.news-list__date,
.blog-list__date { font-family: var(--mk-num); }

/* 電話番号はすべて明朝（Noto Serif JP）に統一 */
.makabi-header-tel__num,
.makabi-footer__tel,
.makabi-fvbar__v.is-tel,
.makabi-tel-cta__num,
.btn-cta-tel,
.makabi-addr-meta a { font-family: var(--mk-mincho); }

/* お知らせ：日付を緑の丸角バッジ（白文字）に */
.news-list__date {
  display: inline-block;
  background: var(--mk-green);
  color: #fff;
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
}

/* お知らせ一覧（CMS出力）の横幅を最大1000pxに（中央寄せ） */
#cms-blog-entry-list-1-area,
#ok-blog-list { display: block; max-width: 1000px; margin-left: auto; margin-right: auto; }
/* CMSが span を置き換えて .news-list を出力するケースのフォールバック */
.section .container > .news-list { max-width: 1000px; margin-left: auto; margin-right: auto; }

/* パンくずリストの文字サイズを標準的な大きさに（極小だったため） */
.breadcrumb { font-size: 1.3rem; }

/* お知らせ一覧 ページナビ（CMS出力）：中央寄せ・前/次を横並び・余白調整
   ※CMSのクラス名に合わせて主要な候補を対象にしています */
.main-side__main .pages,
.main-side__main .pager,
.main-side__main .paging,
.main-side__main .pagenavi,
.main-side__main .page-navi,
.main-side__main .page_navi,
.main-side__main .pagination,
#cms-blog-entry-list-1-area .pages,
#cms-blog-entry-list-1-area .pager,
#cms-blog-entry-list-1-area .pagenavi,
#cms-blog-entry-list-1-area .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px auto 0;
  padding: 0;
  list-style: none;
}
.main-side__main .pages a, .main-side__main .pages span,
.main-side__main .pager a, .main-side__main .pager span,
.main-side__main .paging a, .main-side__main .paging span,
.main-side__main .pagenavi a, .main-side__main .pagenavi span,
.main-side__main .page-navi a, .main-side__main .page-navi span,
.main-side__main .page_navi a, .main-side__main .page_navi span,
.main-side__main .pagination a, .main-side__main .pagination span,
#cms-blog-entry-list-1-area .pages a, #cms-blog-entry-list-1-area .pages span,
#cms-blog-entry-list-1-area .pager a, #cms-blog-entry-list-1-area .pager span,
#cms-blog-entry-list-1-area .pagenavi a, #cms-blog-entry-list-1-area .pagenavi span,
#cms-blog-entry-list-1-area .pagination a, #cms-blog-entry-list-1-area .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  color: var(--mk-ink);
  font-family: var(--mk-num);
  font-size: 1.4rem;
  text-decoration: none;
  background: #fff;
  transition: all .3s;
}
.main-side__main .pages a:hover,
.main-side__main .pager a:hover,
.main-side__main .pagenavi a:hover,
.main-side__main .pagination a:hover,
#cms-blog-entry-list-1-area .pages a:hover,
#cms-blog-entry-list-1-area .pagination a:hover {
  border-color: var(--mk-green);
  color: var(--mk-green-deep);
  background: var(--mk-green-mist);
}
.main-side__main .current,
.main-side__main .active,
.main-side__main [aria-current="page"],
#cms-blog-entry-list-1-area .current,
#cms-blog-entry-list-1-area .active,
#cms-blog-entry-list-1-area [aria-current="page"] {
  background: var(--mk-green);
  border-color: var(--mk-green);
  color: #fff;
}

/* =====================================================================
   2. スクロールフェードイン（控えめ・上品）
   ===================================================================== */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2, .7, .3, 1), transform .9s cubic-bezier(.2, .7, .3, 1);
}
.js-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   3. 背景・セクション
   ===================================================================== */
.makabi-bg-mist {
  background: linear-gradient(180deg, #fff 0%, var(--mk-green-mist) 100%);
}
.makabi-bg-pale { background: var(--mk-green-mist); }

/* =====================================================================
   4. セクション見出し（明朝・大きめ）＋リーフ装飾
   ===================================================================== */
.makabi-heading .heading__ja {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.45;
  color: var(--mk-ink);
}
.makabi-heading .heading__en {
  font-family: var(--mk-serif-en);
  font-weight: 600;
  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  letter-spacing: .04em;
  color: var(--mk-green);
  line-height: 1;
}
.makabi-heading--center { text-align: center; }
.makabi-heading--center::after {
  content: "";
  display: block;
  width: 230px;
  max-width: 70%;
  height: 24px;
  margin: 18px auto 0;
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28196/leafy-divider.png") center / contain no-repeat;
  opacity: .9;
}

.makabi-lead {
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  line-height: 2;
  color: var(--mk-green-ink);
  font-weight: 500;
  letter-spacing: .03em;
}

/* 本文（明朝・読みやすい行間） */
.makabi-prose p { line-height: 2; }
.makabi-prose p + p { margin-top: 1.4em; }

/* =====================================================================
   5. 共通パーツ
   ===================================================================== */
/* 丸ポチ付きリスト */
.makabi-list { margin: 0; padding: 0; list-style: none; }
.makabi-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.9;
}
.makabi-list li:last-child { margin-bottom: 0; }
.makabi-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mk-green);
}
.makabi-list--magenta li::before { background: var(--mk-magenta); }

/* 番号ピル（特徴 01/02/03） */
.makabi-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 12px;
  border: 1.5px solid var(--mk-magenta);
  border-radius: 999px;
  font-family: var(--mk-num);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--mk-magenta);
}

/* 注意喚起テキスト・ボックス（マゼンタアクセント限定） */
.makabi-note-magenta { color: var(--mk-magenta-deep); font-weight: 600; }
.makabi-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1.5px solid var(--mk-magenta);
  background: linear-gradient(180deg, #fff 0%, #fff5f9 100%);
  border-radius: 16px;
  padding: 20px 26px;
  color: var(--mk-magenta-deep);
  font-weight: 600;
  line-height: 1.8;
}
.makabi-alert .makabi-alert__ico { flex: none; color: var(--mk-magenta); font-size: 2rem; line-height: 1.6; }

/* 白いソフトカード */
.makabi-softcard {
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 24px;
  box-shadow: var(--mk-shadow-card);
  padding: clamp(28px, 4vw, 48px);
}

/* ボタン：参考デザイン寄せ（pill・緑→マゼンタhover・ふわっと浮く） */
.btn.makabi-btn {
  border-radius: 999px;
  max-width: none;
  width: auto;
  padding: 14px 32px;
  gap: .5em;
}
.btn.makabi-btn .makabi-arrow { font-family: var(--mk-serif-en); }
.btn--solid.makabi-btn:hover { transform: translateY(-2px); box-shadow: var(--mk-shadow-soft); }
.btn--white.makabi-btn:hover  { background: var(--mk-green-pale); color: var(--mk-green-deep); border-color: var(--mk-green); transform: translateY(-2px); }

/* セクション四隅の植物装飾 */
.makabi-deco-sec { position: relative; overflow: hidden; }
.makabi-botanical {
  position: absolute;
  width: clamp(120px, 18vw, 220px);
  height: auto;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.makabi-botanical--tl { top: -10px; left: -14px; transform: rotate(-8deg); }
.makabi-botanical--br { bottom: -14px; right: -10px; transform: rotate(6deg); }
@media (max-width: 640px) { .makabi-botanical { width: 100px; opacity: .4; } }

/* =====================================================================
   6. 下層ヘッダー（page-hero）
   ===================================================================== */
.makabi-page-hero.page-hero--solid {
  --hero-color: var(--mk-ink);
  padding: clamp(56px, 8vw, 104px) 5%;
  background: linear-gradient(rgba(255, 255, 255, .55), rgba(255, 255, 255, .55)), url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28196/p01.png") center / cover no-repeat;
}
.makabi-page-hero .heading__ja {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: .12em;
}

/* =====================================================================
   7. フッター
   ===================================================================== */
.makabi-footer .footer-body__inner { align-items: stretch; gap: clamp(30px, 5vw, 72px); }
.makabi-footer__brand {
  display: inline-block;
  margin-bottom: 24px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}
.makabi-footer__brand .header-logo__icon { background: var(--mk-green); }
.makabi-footer__info { font-size: 1.4rem; line-height: 1.9; color: #e6f0e1; }
.makabi-footer__info dt {
  font-size: 1.1rem;
  letter-spacing: .12em;
  color: #a9d89f;
  margin-top: 16px;
  font-family: var(--mk-serif-en);
  font-weight: 600;
}
.makabi-footer__info dt:first-child { margin-top: 0; }
.makabi-footer__info dd { margin: 2px 0 0; }
.makabi-footer__hours { display: flex; flex-direction: column; gap: 15px; margin-bottom: 6px; }
.makabi-footer__hours-col { min-width: 0; }
.makabi-footer__hours-col + .makabi-footer__hours-col { margin-left: 0; padding-left: 0; border-left: none; }
.makabi-footer__note-sm { font-size: 1.3rem; opacity: .9; display: block; margin-top: 4px; }
/* グループ（所在地 / 診療時間・休診日）：PC・スマホは縦積み、タブレット範囲のみ2カラム */
.makabi-footer__info-group + .makabi-footer__info-group { margin-top: 16px; }
@media (min-width: 641px) and (max-width: 896px) {
  .makabi-footer__info { display: flex; gap: 32px; }
  .makabi-footer__info-group { flex: 1; min-width: 0; }
  .makabi-footer__info-group + .makabi-footer__info-group { margin-top: 0; }
}
.makabi-footer__tel {
  font-family: var(--mk-mincho);
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}
.makabi-footer__tel-inline { font-family: var(--mk-mincho); color: #fff; font-weight: 500; }
.makabi-footer__tel-inline:hover { opacity: .8; }
.makabi-footer__map-label { font-size: 1.1rem; letter-spacing: .12em; color: #a9d89f; font-family: var(--mk-serif-en); font-weight: 600; margin-bottom: 8px; }
.makabi-footer__map { min-height: 300px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 16px; }
.makabi-footer__map iframe { min-height: 300px; height: 100%; filter: saturate(.9); }
.footer-bottom--dark .footer-bottom__copyright { font-family: var(--mk-num); letter-spacing: .08em; }

/* =====================================================================
   8. TOP：メインビュー
   ===================================================================== */
.makabi-mv { position: relative; }
#slideshow {
  position: relative;
  z-index: 0; /* スライダー内部のz-indexを隔離（暗幕より下に） */
  overflow: hidden;
  /* 高さはCMS（--swiper-wrapper-height）に任せる */
  /* CMSスライダー読み込み中のプレースホルダ（メイン写真）。読み込み後はスライドが上に重なる */
  background: var(--mk-green-pale) url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28196/hero-doctor-consultation.png") center 30% / cover no-repeat;
}
/* CMSスライダー（Swiper）が高さいっぱいに追従するように（フェード式のためflex指定はしない） */
#slideshow .swiper,
#slideshow .swiper-container,
#slideshow .swiper-wrapper,
#slideshow .swiper-slide { height: 100%; }
#slideshow .main_slider__inner { width: 100%; height: 100%; }
#slideshow img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
/* MV暗幕グラデ：スライダーの上・キャッチコピーの下 */
.makabi-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(95deg, rgba(32, 58, 36, .42) 0%, rgba(32, 58, 36, .22) 45%, rgba(32, 58, 36, .05) 72%, rgba(255, 255, 255, 0) 100%);
}
.makabi-mv__copy {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(24px, 8vw, 120px);
  color: #fff;
  text-shadow: 1px 1px 3px rgba(26, 46, 30, .45);
}
.makabi-mv__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, .92);
  color: var(--mk-green-deep);
  padding: 9px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .08em;
  box-shadow: var(--mk-shadow-card);
  text-shadow: none;
}
.makabi-mv__badge b { color: var(--mk-magenta); font-family: var(--mk-num); font-size: 1.7rem; letter-spacing: .02em; }
.makabi-mv__badge .makabi-mv__bdiv { width: 1px; height: 15px; background: var(--mk-green); opacity: .5; }
.makabi-mv__title {
  font-size: clamp(3rem, 5.4vw, 6.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .06em;
}
.makabi-mv__sub {
  margin-top: 24px;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .05em;
  max-width: 34em;
}

/* FV直下バー */
.makabi-fvbar { background: var(--mk-green-deep); color: #fff; }
.makabi-fvbar__row { display: grid; grid-template-columns: repeat(3, 1fr); }
.makabi-fvbar__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}
.makabi-fvbar__cell:last-child { border-right: none; }
.makabi-fvbar__cell i { font-size: 2.2rem; opacity: .85; flex: none; }
.makabi-fvbar__k { font-size: 1.6rem; letter-spacing: .12em; opacity: .82; }
.makabi-fvbar__v { font-size: 1.6rem; font-weight: 600; letter-spacing: .04em; display: block; }
.makabi-fvbar__v.is-tel { font-family: var(--mk-mincho); font-size: 2.5rem; color: #fff; }
@media (max-width: 920px) {
  .makabi-fvbar__row { grid-template-columns: 1fr; }
  .makabi-fvbar__cell { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .14); justify-content: flex-start; padding-left: 8%; }
}

/* =====================================================================
   9. TOP：クリニックの特徴カード
   ===================================================================== */
.makabi-feat-card {
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  box-shadow: var(--mk-shadow-card);
  overflow: hidden;
  transition: transform .4s, box-shadow .4s;
}
.makabi-feat-card:hover { transform: translateY(-6px); box-shadow: var(--mk-shadow-soft); }
.makabi-feat-card__img { height: 210px; overflow: hidden; }
.makabi-feat-card__img img { width: 100%; height: 100%; object-fit: cover; }
.makabi-feat-card__body { padding: 30px; }
.makabi-feat-card__title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--mk-green-ink);
  margin: 12px 0 14px;
}
.makabi-feat-card__text { font-size: 1.5rem; color: var(--mk-ink-soft); line-height: 2; }

/* =====================================================================
   10. TOP：ご予約・診療時間
   ===================================================================== */
.makabi-booking {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.makabi-booking__notes {
  background: var(--mk-green-mist);
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  padding: 30px 32px;
}
.makabi-booking__notes h3 { font-size: 1.8rem; color: var(--mk-green-deep); margin-bottom: 16px; font-weight: 600; }
.makabi-booking__cta { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.makabi-hours-note { margin-top: 16px; font-size: 1.35rem; color: var(--mk-ink-soft); }
@media (max-width: 920px) { .makabi-booking { grid-template-columns: 1fr; } }

/* 診療時間テーブルの○/×を参考デザイン寄せ */
.table-hours.makabi-hours { box-shadow: var(--mk-shadow-card); border-radius: 16px; overflow: hidden; }
.table-hours.makabi-hours th,
.table-hours.makabi-hours td { padding: 16px 8px; font-size: 1.5rem; }
.table-hours.makabi-hours tbody th { background: var(--mk-green-mist); text-align: center; padding-left: 8px; padding-right: 8px; white-space: nowrap; }
.table-hours.makabi-hours .is-open { color: var(--mk-green-deep); font-weight: 700; font-size: 1.7rem; }
.table-hours.makabi-hours .makabi-hours-time { display: inline-block; font-size: 1.3rem; line-height: 1.25; }

/* =====================================================================
   11. TOP：各ページのご案内
   ===================================================================== */
.makabi-plink {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--mk-line);
  background: #fff;
  box-shadow: var(--mk-shadow-card);
  color: var(--mk-ink);
  text-decoration: none;
  transition: transform .4s, box-shadow .4s;
}
.makabi-plink:hover { transform: translateY(-6px); box-shadow: var(--mk-shadow-soft); opacity: 1; }
.makabi-plink__img { height: 170px; overflow: hidden; }
/* タブレット・スマホはカード幅が広く見切れやすいので高さを上げる（PCは170pxのまま） */
@media (max-width: 896px) { .makabi-plink__img { height: 220px; } }
.makabi-plink__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; transition: transform .5s; }
.makabi-plink:hover .makabi-plink__img img { transform: scale(1.05); }
.makabi-plink__body { padding: 22px 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.makabi-plink__en { font-family: var(--mk-serif-en); font-size: 1.3rem; letter-spacing: .16em; color: var(--mk-green); text-transform: uppercase; }
.makabi-plink__ttl { font-size: 1.8rem; font-weight: 600; margin: 0; letter-spacing: .04em; }
.makabi-plink__arrow {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mk-green-pale);
  color: var(--mk-green-deep);
  font-size: 1.3rem;
  transition: background .3s, color .3s, transform .3s;
}
.makabi-plink:hover .makabi-plink__arrow { background: var(--mk-magenta); color: #fff; transform: translateX(3px); }
.makabi-plink__go { margin-top: 14px; font-size: 1.4rem; color: var(--mk-magenta); letter-spacing: .05em; }
@media (max-width: 920px) { .makabi-plinks.grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .makabi-plinks.grid-4 { grid-template-columns: 1fr; } }

/* =====================================================================
   12. クリニックについて
   ===================================================================== */
/* position:sticky が body の overflow-x:hidden で無効化されるのを回避（clip はスクロールコンテナを作らない） */
body { overflow-x: clip; }
.makabi-message { display: grid; grid-template-columns: 300px 1fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
.makabi-message__img { border-radius: 16px; overflow: hidden; box-shadow: var(--mk-shadow-card); position: sticky; top: 100px; align-self: start; }
.makabi-message__img img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.makabi-message__sign { margin-top: 24px; font-size: 1.5rem; color: var(--mk-ink-soft); }
.makabi-message__sign b { font-size: 2rem; color: var(--mk-green-ink); font-weight: 600; margin-left: 8px; }

/* 経歴（縦線＋リング型マーカーのタイムライン：参考デザイン準拠） */
.makabi-career-block { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--mk-line); }
.makabi-career-head { font-size: 1.7rem; font-weight: 600; color: var(--mk-green-deep); letter-spacing: .08em; margin-bottom: 20px; }
.makabi-career { position: relative; margin: 0; padding-left: 30px; list-style: none; }
.makabi-career::before { content: ""; position: absolute; left: 7px; top: .6em; bottom: .9em; width: 2px; background: var(--mk-green-pale); }
.makabi-career li { position: relative; padding: 0 0 26px; }
.makabi-career li:last-child { padding-bottom: 0; }
.makabi-career li::before {
  content: "";
  position: absolute;
  left: -30px;
  top: .25em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--mk-green);
  box-sizing: border-box;
}
.makabi-career__yr { display: block; font-family: var(--mk-num); color: var(--mk-green-deep); font-size: 1.5rem; letter-spacing: .04em; }
.makabi-career__ev { font-size: 1.6rem; font-weight: 500; line-height: 1.7; }
.makabi-message__origin { margin-top: 6px; font-size: 1.4rem; color: var(--mk-ink-soft); letter-spacing: .04em; }
.makabi-qual { margin: 0; padding-left: 0; list-style: none; }
.makabi-qual li { position: relative; padding-left: 18px; font-size: 1.55rem; font-weight: 500; line-height: 1.9; }
.makabi-qual li::before { content: ""; position: absolute; left: 2px; top: .85em; width: 6px; height: 6px; border-radius: 50%; background: var(--mk-green); }
@media (max-width: 920px) { .makabi-message { grid-template-columns: 1fr; } .makabi-message__img { position: static; } }

.makabi-overview-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
.makabi-overview-cols .makabi-overview-img { border-radius: 16px; overflow: hidden; box-shadow: var(--mk-shadow-card); min-height: 280px; }
.makabi-overview-cols .makabi-overview-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.makabi-overview-sub {
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--mk-green-ink);
  letter-spacing: .06em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--mk-green-pale);
}
@media (max-width: 896px) { .makabi-overview-cols { grid-template-columns: 1fr; } }

/* 院内ギャラリー */
.makabi-gallery .makabi-gallery__item { border-radius: 16px; overflow: hidden; height: 220px; }
.makabi-gallery .makabi-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, filter .4s; }
.makabi-gallery .makabi-gallery__item:hover img { transform: scale(1.04); filter: brightness(.97); }

/* =====================================================================
   13. 初めての方へ
   ===================================================================== */
.makabi-intake-cols { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.makabi-intake-cols .makabi-intake-img { overflow: hidden; display: flex; justify-content: center; }
.makabi-intake-cols .makabi-intake-img img { width: 80%; height: auto; object-fit: contain; }
@media (max-width: 760px) { .makabi-intake-cols { grid-template-columns: 1fr; } }

.makabi-reject {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 16px;
  box-shadow: var(--mk-shadow-card);
  padding: 22px 26px;
}
.makabi-reject li { position: relative; padding-left: 26px; margin-bottom: 8px; line-height: 1.7; }
.makabi-reject li:last-child { margin-bottom: 0; }
.makabi-reject li::before { content: ""; position: absolute; left: 6px; top: .85em; width: 9px; height: 2px; background: var(--mk-ink-soft); }

/* ご予約方法（電話／ネット） */
.makabi-booking-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 30px); align-items: stretch; }
.makabi-book-col { display: flex; flex-direction: column; }
@media (min-width: 761px) {
  /* 見出し・枠・注記を3行のsubgridに揃え、枠（行2）の高さを左右で一致させる */
  .makabi-booking-cols { grid-template-rows: auto 1fr auto; row-gap: 0; }
  .makabi-book-col { display: grid; grid-template-rows: subgrid; grid-row: span 3; }
  .makabi-book-col__note { text-align: center; }
}
.makabi-book-col__head { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 2rem; font-weight: 600; color: var(--mk-green-ink); letter-spacing: .06em; margin-bottom: 16px; }
.makabi-book-col__head::before,
.makabi-book-col__head::after { content: ""; flex: none; width: 30px; height: 1px; background: var(--mk-green); }
.makabi-tel-cta {
  height: 100%;
  text-align: center;
  background: linear-gradient(160deg, var(--mk-green-mist), var(--mk-green-pale));
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.makabi-tel-cta__k { letter-spacing: .12em; color: var(--mk-green-deep); font-size: 1.4rem; font-weight: 600; }
.makabi-tel-cta__num { font-family: var(--mk-mincho); font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 600; color: var(--mk-green-deep); line-height: 1.1; margin: 8px 0; letter-spacing: .02em; display: inline-block; }
.makabi-tel-cta__hours { color: var(--mk-ink-soft); font-size: 1.5rem; line-height: 1.8; }
.makabi-net-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  box-shadow: var(--mk-shadow-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.makabi-net-card p { font-size: 1.5rem; color: var(--mk-ink-soft); line-height: 1.95; }
.makabi-qr {
  width: 148px;
  height: 148px;
  border-radius: 16px;
  border: 1px dashed var(--mk-green);
  background: var(--mk-green-mist);
  display: grid;
  place-items: center;
  place-content: center;
  gap: 6px;
  text-align: center;
  color: var(--mk-green-deep);
}
.makabi-qr i { font-size: 4rem; opacity: .6; }
.makabi-qr small { font-size: 1.1rem; color: var(--mk-ink-soft); }
@media (max-width: 760px) { .makabi-booking-cols { grid-template-columns: 1fr; } }

/* 診察の流れ */
.makabi-flow { display: flex; flex-direction: column; gap: 20px; }
.makabi-flow__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  box-shadow: var(--mk-shadow-card);
  padding: 30px 34px;
}
.makabi-flow__no { font-family: var(--mk-num); font-size: 4.8rem; font-weight: 600; color: var(--mk-green); line-height: 1; }
.makabi-flow__item h3 { font-size: 2rem; font-weight: 600; color: var(--mk-green-ink); margin-bottom: 10px; letter-spacing: .04em; }
.makabi-flow__item p { font-size: 1.55rem; color: var(--mk-ink-soft); line-height: 1.95; }
.makabi-flow__bring-ttl { margin-top: 12px; font-weight: 600; color: var(--mk-ink); }
@media (max-width: 760px) {
  .makabi-flow__item { grid-template-columns: 1fr; gap: 8px; padding: 24px 22px; }
  .makabi-flow__no { font-size: 3.6rem; }
}

/* 費用テーブル */
.makabi-fee th { background: var(--mk-green-mist); color: var(--mk-green-deep); font-weight: 600; width: 40%; }
.makabi-fee th, .makabi-fee td { padding: 18px 24px; font-size: 1.7rem; }
.makabi-fee td { font-size: 1.9rem; color: var(--mk-green-ink); font-weight: 500; background: #fff; }

/* 自立支援医療制度 */
.makabi-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.makabi-support__item { background: var(--mk-green-mist); border: 1px solid var(--mk-line); border-radius: 16px; padding: 28px; }
.makabi-support__item .makabi-support__ico {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--mk-line);
  display: grid; place-items: center; color: var(--mk-green);
  margin-bottom: 14px; font-size: 1.8rem;
}
.makabi-support__item h4 { font-size: 1.7rem; color: var(--mk-green-deep); font-weight: 600; margin-bottom: 8px; letter-spacing: .04em; }
.makabi-support__item p { font-size: 1.5rem; color: var(--mk-ink-soft); line-height: 1.9; }
.makabi-support__note { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; margin-top: 26px; }
@media (max-width: 680px) { .makabi-support-grid { grid-template-columns: 1fr; } }

/* 補足テキスト */
.makabi-kome { color: var(--mk-ink-soft); font-size: 1.4rem; line-height: 2; }

/* =====================================================================
   14. 診療案内
   ===================================================================== */
.makabi-intro-copy { max-width: 760px; margin: 0 auto; text-align: center; color: var(--mk-ink-soft); font-size: 1.65rem; line-height: 2; }
.makabi-tagcloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.makabi-tag {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--mk-green-deep);
  background: #fff;
  border: 1.5px solid var(--mk-green);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  transition: all .3s;
  letter-spacing: .03em;
  text-decoration: none;
  display: inline-block;
}
.makabi-tag:hover { background: var(--mk-green); color: #fff; transform: translateY(-2px); box-shadow: var(--mk-shadow-soft); opacity: 1; }

.makabi-symgroups { display: flex; flex-direction: column; gap: 18px; max-width: 920px; margin: 0 auto; }
.makabi-symgroup {
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  box-shadow: var(--mk-shadow-card);
  padding: 30px 34px 34px;
  scroll-margin-top: 100px;
}
.makabi-symgroup__title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--mk-green-ink);
  letter-spacing: .04em;
  padding-bottom: 18px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--mk-green-pale);
}
.makabi-symgroup__desc { color: var(--mk-ink-soft); margin-bottom: 14px; font-size: 1.55rem; line-height: 1.95; }
.makabi-symgroup__sublabel { margin: 20px 0 8px; font-weight: 600; color: var(--mk-magenta-deep); letter-spacing: .04em; }
.makabi-symlist { margin: 0; padding: 0; list-style: none; }
.makabi-symlist li { position: relative; padding: 8px 0 8px 26px; border-bottom: 1px dashed var(--mk-line); font-size: 1.55rem; line-height: 1.7; }
.makabi-symlist li:last-child { border-bottom: none; }
.makabi-symlist li::before { content: ""; position: absolute; left: 4px; top: 1.05em; width: 9px; height: 9px; border-radius: 50%; background: var(--mk-green); }
@media (max-width: 520px) { .makabi-symgroup { padding: 24px 22px 26px; } }

/* =====================================================================
   15. アクセス
   ===================================================================== */
.makabi-access-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 2.5vw, 32px); align-items: stretch; }
.makabi-map-frame { border-radius: 20px; overflow: hidden; box-shadow: var(--mk-shadow-card); border: 1px solid var(--mk-line); }
.makabi-map-frame iframe { width: 100%; height: 100%; min-height: clamp(340px, 46vh, 460px); border: 0; display: block; }
.makabi-addr-panel {
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  box-shadow: var(--mk-shadow-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
.makabi-addr-panel__label { letter-spacing: .12em; color: var(--mk-green); font-size: 1.3rem; font-weight: 600; }
.makabi-addr-panel__addr { font-size: 1.8rem; font-weight: 600; line-height: 1.7; margin: 8px 0 22px; padding-bottom: 22px; border-bottom: 1px solid var(--mk-line); }
.makabi-addr-meta { display: grid; grid-template-columns: auto 1fr; gap: 12px 20px; font-size: 1.5rem; margin-bottom: 26px; }
.makabi-addr-meta dt { color: var(--mk-green-deep); font-weight: 600; white-space: nowrap; }
.makabi-addr-meta dd { color: var(--mk-ink-soft); line-height: 1.7; }
.makabi-addr-meta a { color: var(--mk-green-deep); font-weight: 600; }
.makabi-addr-meta__note { display: inline-block; font-size: 1.3rem; opacity: .9; }
.makabi-addr-panel .makabi-btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 900px) { .makabi-access-top { grid-template-columns: 1fr; } .makabi-map-frame iframe { min-height: 300px; } }

.makabi-access-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.makabi-access__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 20px;
  box-shadow: var(--mk-shadow-card);
  overflow: hidden;
  padding: clamp(26px, 2.4vw, 34px);
}
.makabi-access__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 2px solid var(--mk-green-pale); }
.makabi-access__ico { width: 58px; height: 58px; border-radius: 50%; background: var(--mk-green-mist); display: grid; place-items: center; color: var(--mk-green-deep); font-size: 2.4rem; }
.makabi-access__item h3 { font-size: 1.9rem; font-weight: 600; color: var(--mk-green-ink); letter-spacing: .04em; }
.makabi-access__note { color: var(--mk-ink-soft); font-size: 1.5rem; margin-top: 10px; line-height: 1.8; }
.makabi-park { margin-top: 14px; background: var(--mk-green-mist); border-radius: 16px; padding: 18px 22px; }
.makabi-park__total { font-weight: 600; color: var(--mk-green-deep); margin-bottom: 8px; }
.makabi-park__grid { display: flex; gap: 30px; flex-wrap: wrap; font-size: 1.5rem; }
.makabi-park__grid b { color: var(--mk-green-deep); }
.makabi-bus-routes { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.makabi-bus-routes span { font-size: 1.45rem; color: var(--mk-ink-soft); }
@media (max-width: 900px) { .makabi-access-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* =====================================================================
   16. レスポンシブ微調整（SPの崩れ対策・読みやすさ）
   ===================================================================== */
@media (max-width: 640px) {
  /* スマホ時の標準文字サイズ（共通CSSの1.2remを引き上げ） */
  body { font-size: 1.3rem; }

  /* 本文pをほんの少し大きく（読みやすさ向上） */
  .makabi-prose p { font-size: 1.4rem; }

  /* 診察の流れの本文をSPで少し小さく */
  .makabi-flow__item p { font-size: 1.3rem; }

  /* 特徴カードのタイトルをSPで少し小さく */
  .makabi-feat-card__title { font-size: 1.7rem; }

  /* ご予約・受付のボタンをSPで中央揃え */
  .makabi-booking__cta { justify-content: center; }

  /* 診療案内の導入文：SPはフォント調整＋左揃え＋強制改行解除 */
  .makabi-intro-copy { font-size: 1.4rem; text-align: left; }
  .makabi-intro-copy br { display: none; }

  /* 疾患タグ：SPはコンパクトに（文字小さめ・余白詰め） */
  .makabi-tagcloud { gap: 8px; margin-top: 28px; }
  .makabi-tag { font-size: 1.25rem; padding: 7px 14px; }

  /* 症状リストの本文をSPで小さく */
  .makabi-symlist li { font-size: 1.3rem; }

  /* お知らせの日付バッジをSPで少し小さく */
  .news-list__date { font-size: 1.2rem; padding: 4px 12px; }

  /* お知らせ：SPは日付とタイトルを縦並び（改行） */
  .news-list__link { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* メインスライダー：スマホでは画像の右側が見えるよう右寄せトリミング */
  #slideshow { background-position: 80% center; }
  #slideshow img,
  #main_slider .main_slider__inner img { object-position: 80% center; }

  /* 「安心して通えるクリニックへ」下の文章はSPで左揃え */
  .makabi-deco-sec .makabi-prose { text-align: left; }
  .makabi-deco-sec .makabi-prose br { display: none; }

  /* ヘッダーロゴ名（小さめにして折り返し回避） */
  .header-logo__name { font-size: 1.6rem; }

  /* メインビュー：キャッチコピーがはみ出さないよう調整（高さはCMSに任せる） */
  /* スマホはキャッチを画像の下方へ配置 */
  .makabi-mv__copy { padding-inline: 22px; justify-content: flex-end; padding-bottom: 10%; }
  .makabi-mv__title { font-size: 2.5rem; line-height: 1.5; }
  .makabi-mv__sub { font-size: 1.4rem; margin-top: 16px; line-height: 1.9; }
  .makabi-mv__badge { font-size: 1.15rem; padding: 7px 15px; gap: 10px; margin-bottom: 18px; }
  .makabi-mv__badge b { font-size: 1.4rem; }

  /* 診療時間テーブル：8列で窮屈なため詰める＋左ラベルを折り返し可に */
  .table-hours.makabi-hours th,
  .table-hours.makabi-hours td { padding: 8px 3px; font-size: 1.1rem; }
  .table-hours.makabi-hours tbody th { padding-left: 6px; min-width: 0; white-space: normal; line-height: 1.35; }
  .table-hours.makabi-hours .is-open { font-size: 1.3rem; }
}

/* =========================================================
 * 追従予約ボタン：PC=画面右端の縦書きボタン（やや大きめ）／SP=画面下部の固定バー
 * 初診=マゼンタ・再来=グリーン
 * ========================================================= */
.makabi-fixcta {
  position: fixed;
  z-index: 80;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.makabi-fixcta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 20px;
  border-radius: 16px 0 0 16px;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--mk-shadow-soft);
  transition: transform .2s ease, filter .2s ease;
}
.makabi-fixcta__btn:hover { transform: translateX(-4px); filter: brightness(1.05); opacity: 1; }
.makabi-fixcta__btn i { font-size: 2.6rem; flex: none; }
.makabi-fixcta__txt { writing-mode: vertical-rl; text-orientation: upright; display: flex; flex-direction: column; align-items: center; gap: 8px; line-height: 1.2; }
.makabi-fixcta__txt b { font-size: 2.1rem; font-weight: 700; letter-spacing: .12em; }
.makabi-fixcta__txt small { font-size: 1.25rem; opacity: .9; letter-spacing: .1em; }
.makabi-fixcta__btn--first  { background: var(--mk-magenta); }
.makabi-fixcta__btn--first:hover  { background: var(--mk-magenta-deep); }
.makabi-fixcta__btn--repeat { background: var(--mk-green-deep); }
.makabi-fixcta__btn--repeat:hover { background: var(--mk-green-ink); }

/* SP：画面下部に固定バー（2ボタンを横並び・横書きに戻す） */
@media (max-width: 896px) {
  .makabi-fixcta {
    top: auto; bottom: 0; right: 0; left: 0;
    transform: none;
    flex-direction: row;
    gap: 0;
    box-shadow: 0 -6px 20px -10px rgba(46, 74, 48, .5);
  }
  .makabi-fixcta__btn {
    flex: 1 1 0;
    flex-direction: row;
    justify-content: center;
    border-radius: 0;
    padding: 12px 8px;
    gap: 10px;
  }
  .makabi-fixcta__btn:hover { transform: none; }
  .makabi-fixcta__btn i { font-size: 1.9rem; }
  .makabi-fixcta__txt { writing-mode: horizontal-tb; text-orientation: mixed; flex-direction: column; gap: 2px; }
  .makabi-fixcta__txt b { font-size: 1.5rem; }
  .makabi-fixcta__txt small { font-size: 1.1rem; }
  /* 下部固定バーがフッターを隠さないよう余白を確保（全ページ共通） */
  body { padding-bottom: 80px; }
  /* ページトップボタンを固定バーの上へ逃がす */
  .page-top { bottom: 92px; }
}
