/*
 * lifebase.css  — LifeBase 整体＆運動ケア 統合スタイルシート
 *
 * 読み込み方（functions.php）:
 *   wp_enqueue_style( 'lifebase', get_stylesheet_directory_uri() . '/assets/css/lifebase.css', ['lightning-design-style'], filemtime(...) );
 *
 * セクション構成:
 *   [BASE]          CSS変数 / フォント / 共通ユーティリティ
 *   [HEADER]        独自ヘッダー（site-header.php）
 *   [FOOTER]        独自フッター（site-footer.php）+ スマホスティッキーCTA
 *   [BREADCRUMB]    パンくず（全ページ共通）
 *   [CTA]           オファーカード（template-parts/cta-section.php）
 *   [WHY]           なぜ改善するのか（template-parts/why-section.php）
 *   [FIT]           こんな方におすすめ（template-parts/fit-section.php）
 *   [FLOW]          初回の流れ（template-parts/flow-section.php）
 *   [TOP]           トップページ（page-top.php）
 *   [FIRSTVISIT]    はじめての方へ（page-firstvisit.php）
 *   [DIRECTOR]      院長紹介（page-director.php）
 *   [SYMPTOM]       症状ページ共通（neck/lowback/knee）
 *   [PRICE]         料金について（page-price.php）
 *   [FAQ]           よくある質問（page-faq.php）
 *   [ACCESS]        アクセス（page-access.php）
 *   [BLOG]          ブログ一覧（page-blog.php）
 * ============================================================ */


/* ============================================================
   [BASE] CSS変数 / 共通ユーティリティ
============================================================ */
:root {
  /* --- カラーパレット --- */
  --navy:       #1B3A6B;
  --navy-dark:  #162d56;
  --navy-light: #3a5fa0;
  --red:        #c9263a;
  --gold:       #C9A84C;
  --green:      #06C755;

  /* --- UI カラー --- */
  --bg:         #f4f6fa;
  --white:      #ffffff;
  --text:       #1f2a37;
  --muted:      #5f6b7a;
  --line:       #d7dfeb;
}

/* box-sizing グローバル（Lightningに干渉しないよう範囲を絞る） */
.lb-header, .lb-header *,
.lb-footer, .lb-footer *,
.top-page, .top-page *,
.fv-page, .fv-page *,
.director-page, .director-page *,
.sy-page, .sy-page *,
.price-page, .price-page *,
.faq-page, .faq-page *,
.ac-page, .ac-page *,
.blog-page, .blog-page *,
.lb-cta-offer, .lb-cta-offer *,
.ws-section, .ws-section *,
.sy-fit, .sy-fit *,
.sy-flow, .sy-flow * {
  box-sizing: border-box;
}

/* --- Full-bleed ユーティリティ（テーマコンテナを突破） --- */
.director-bleed,
.fv-bleed,
.sy-bleed,
.price-bleed,
.ac-bleed,
.blog-bleed,
.faq-bleed,
.top-bleed {
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 0;
}

/* --- 共通ラベル（POINT / REASON 等の英語小見出し） --- */
.fv-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

/* --- highlight マーカー --- */
mark.sy-highlight {
  background: linear-gradient(transparent 55%, rgba(255,220,50,.5) 55%);
  color: inherit;
  padding: 0 2px;
  font-weight: 700;
}

/* --- PC / SP 専用改行 --- */
.fv-pc-br { display: inline; }
.sp-br    { display: none; }
@media (max-width: 768px) {
  .fv-pc-br { display: none; }
  .sp-br    { display: inline; }
}

/* --- 共通セクション見出し（fv-title） --- */
.fv-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.4;
  margin: 0 0 24px;
}


/* ============================================================
   [HEADER] 独自ヘッダー（site-header.php）
============================================================ */
.lb-header {
  position: relative;
  z-index: 1000;
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","Noto Sans JP",sans-serif;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

/* ── 上段：院内情報バー ── */
.lb-header-topbar {
  background: #f4f6fa;
  border-bottom: 1px solid #e2e8f0;
  padding: 7px 24px;
}
.lb-header-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lb-header-topbar-info {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lb-header-topbar-info li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5f6b7a;
}
.lb-header-topbar-info li i { color: var(--navy); font-size: 11px; }

.lb-header-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lb-header-topbar-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.lb-header-topbar-tel:hover { opacity: .75; }

.lb-header-topbar-line {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}
.lb-header-topbar-line:hover { opacity: .85; color: #fff; }

/* ── 下段：ロゴ＋ナビ ── */
.lb-header-main {
  background: #fff;
  padding: 0 24px;
}
.lb-header-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

/* ロゴ */
.lb-header-logo { flex-shrink: 0; display: block; line-height: 1; }
.lb-header-logo img { height: 72px; width: auto; display: block; }

/* PCナビ */
.lb-header-nav { flex: 1; min-width: 0; overflow: visible; }
.lb-header-nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
}
.lb-header-nav-item { position: relative; }

.lb-header-nav-link {
  display: block;
  padding: 0 12px;
  height: 72px;
  line-height: 72px;
  font-size: 13px;
  font-weight: 700;
  color: #2d3748;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.lb-header-nav-link:hover,
.lb-header-nav-link.is-active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* 「症状メニュー」リンクなし親項目 */
.lb-header-nav-link--nolink {
  display: block;
  padding: 0 12px;
  height: 72px;
  line-height: 72px;
  font-size: 13px;
  font-weight: 700;
  color: #2d3748;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  cursor: default;
  user-select: none;
}

/* ドロップダウン矢印 */
.lb-header-nav-arrow {
  display: inline-block;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform .25s ease;
  color: var(--navy);
}
.lb-header-nav-item.has-children:hover .lb-header-nav-arrow {
  transform: rotate(180deg);
}

/* ドロップダウンメニュー */
.lb-header-dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--navy);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 40px rgba(27,58,107,.15);
  list-style: none;
  margin: 0; padding: 8px 0;
  min-width: 200px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.lb-header-nav-item.has-children:hover .lb-header-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.lb-header-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #2d3748;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.lb-header-dropdown li a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #c5d0e0;
  flex-shrink: 0;
  transition: background .15s;
}
.lb-header-dropdown li a:hover {
  background: #f4f6fa;
  color: var(--navy);
}
.lb-header-dropdown li a:hover::before { background: var(--navy); }

/* ハンバーガーボタン */
.lb-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.lb-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.lb-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lb-hamburger.is-open span:nth-child(2) { opacity: 0; }
.lb-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* スクロール後：上段非表示・固定ナビ */
.lb-header.is-scrolled {
  position: fixed;
  top: 0; left: 0; right: 0;
}
.lb-header.is-scrolled .lb-header-topbar { display: none; }
.lb-header.is-scrolled .lb-header-logo img { height: 44px; }
.lb-header.is-scrolled .lb-header-main-inner { height: 56px; }
.lb-header.is-scrolled .lb-header-nav-link { height: 56px; line-height: 56px; }
.lb-header.is-scrolled .lb-header-nav-link--nolink { height: 56px; line-height: 56px; }

/* WPログイン時のadmin-bar補正 */
.admin-bar .lb-header.is-scrolled { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .lb-header.is-scrolled { top: 46px; }
}

/* ドロワー（スマホ用） */
.lb-drawer {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 1100;
  overflow-y: auto;
  transition: right .3s ease;
  padding: 80px 0 40px;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.lb-drawer.is-open { right: 0; }

.lb-drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: #f4f6fa;
  border: none; border-radius: 50%;
  color: var(--navy); cursor: pointer;
  transition: background .2s;
}
.lb-drawer-close:hover { background: #e2e8f0; }

.lb-drawer-nav ul { list-style: none; margin: 0; padding: 0; }
.lb-drawer-nav > ul > li > a {
  display: block;
  padding: 16px 28px;
  font-size: 16px; font-weight: 700; color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid #f0f4fb;
}
.lb-drawer-nav > ul > li > a:hover { background: #f4f6fa; }

.lb-drawer-nav-nolink {
  display: block;
  padding: 16px 28px;
  font-size: 16px; font-weight: 700; color: var(--navy);
  border-bottom: 1px solid #f0f4fb;
  cursor: default;
}

.lb-drawer-sub { list-style: none; padding: 0; margin: 0; background: #f8fafd; }
.lb-drawer-sub li a {
  display: block;
  padding: 12px 28px 12px 44px;
  font-size: 14px; color: #4a5568; text-decoration: none;
  border-bottom: 1px solid #edf0f5;
}
.lb-drawer-sub li a:hover { color: var(--navy); background: #edf2fb; }

/* ドロワー：セクション見出しバー */
.lb-drawer-section-title {
  display: block;
  background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .15em;
  padding: 10px 28px;
  margin: 0; width: 100%;
}

/* ドロワー：お知らせ */
.lb-drawer-news { border-bottom: 1px solid #f0f4fb; padding-bottom: 4px; }
.lb-drawer-news-item {
  display: flex;
  flex-direction: row; align-items: center; gap: 10px;
  padding: 10px 28px;
  text-decoration: none;
  border-bottom: 1px solid #f8fafd;
  transition: background .15s;
}
.lb-drawer-news-item:hover { background: #f4f6fa; }
.lb-drawer-news-thumb {
  width: 48px; height: 48px;
  flex-shrink: 0; border-radius: 5px;
  overflow: hidden; background: #e8edf5;
}
.lb-drawer-news-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lb-drawer-news-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #aab4c4; font-size: 16px;
}
.lb-drawer-news-body {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-width: 0;
}
.lb-drawer-news-date { font-size: 11px; color: #8896a8; }
.lb-drawer-news-title {
  font-size: 13px; color: var(--navy); font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.lb-drawer-news-more {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin: 12px 28px;
  padding: 10px;
  border: 1px solid var(--navy); border-radius: 6px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  text-decoration: none; transition: background .15s;
}
.lb-drawer-news-more:hover { background: #f0f4fb; }

/* ドロワー：店舗情報 */
.lb-drawer-clinic-name {
  display: block;
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 10px 28px;
  margin: 0; width: 100%;
}
.lb-drawer-clinic-photo {
  margin: 14px 28px;
  width: calc(100% - 56px);
  border-radius: 8px; overflow: hidden;
}
.lb-drawer-clinic-photo img { width: 100%; height: auto; display: block; }
.lb-drawer-clinic-brand { font-size: 14px; font-weight: 700; color: var(--navy); margin: 0 28px 8px; }
.lb-drawer-clinic-address { font-size: 12px; color: #5f6b7a; margin: 0 28px 5px; line-height: 1.6; }
.lb-drawer-clinic-tel {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; margin: 0 28px 5px;
}
.lb-drawer-clinic-tel i { color: var(--navy); font-size: 13px; flex-shrink: 0; }
.lb-drawer-clinic-tel a { color: var(--navy); text-decoration: none; }
.lb-drawer-clinic-hours,
.lb-drawer-clinic-station {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #5f6b7a; margin: 0 28px 5px; line-height: 1.6;
}
.lb-drawer-clinic-hours i,
.lb-drawer-clinic-station i { color: var(--navy); font-size: 11px; flex-shrink: 0; }
.lb-drawer-line-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 11px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  margin: 14px 28px 10px; transition: opacity .2s;
}
.lb-drawer-line-btn:hover { opacity: .85; color: #fff; }
.lb-drawer-ig-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: 11px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  margin: 0 28px 16px; transition: opacity .2s;
}
.lb-drawer-ig-btn:hover { opacity: .85; color: #fff; }
.lb-drawer-map { margin: 0 28px 24px; border-radius: 8px; overflow: hidden; }

/* オーバーレイ */
.lb-drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1050;
  opacity: 0; transition: opacity .3s;
}
.lb-drawer-overlay.is-show { display: block; opacity: 1; }

/* Lightningデフォルトのスマホナビを非表示 */
.gn-toggle, .gn-toggle-btn, #gn-toggle,
.lightning-mobile-nav, .vk-mobile-nav-menu-btn,
.vk_mobile_nav_menu_btn { display: none !important; }

/* ── レスポンシブ（ヘッダー） ── */
@media (max-width: 1100px) and (min-width: 769px) {
  .lb-header-nav-link,
  .lb-header-nav-link--nolink { padding: 0 8px; font-size: 12px; }
  .lb-header-logo img { height: 56px; }
  .lb-header-topbar-info li:nth-child(3) { display: none; }
}
@media (max-width: 960px) and (min-width: 769px) {
  .lb-header-nav-link,
  .lb-header-nav-link--nolink { padding: 0 6px; font-size: 11px; }
  .lb-header-topbar-info li:nth-child(2) { display: none; }
}
@media (max-width: 768px) {
  .lb-header-topbar { display: none; }
  .lb-header-main-inner { height: 60px; }
  .lb-header-logo img { height: 44px; }
  .lb-header-nav,
  .lb-header-topbar-actions { display: none; }
  .lb-hamburger { display: flex; margin-left: auto; }
  .lb-drawer { display: block; }
}


/* ============================================================
   [FOOTER] 独自フッター（site-footer.php）
============================================================ */
.lb-footer {
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","Noto Sans JP",sans-serif;
}
.lb-footer-main {
  background: #fff;
  border-top: 2px solid var(--navy);
  padding: 64px 24px 56px;
}
.lb-footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: start;
}
.lb-footer-brand {
  padding-right: 56px;
  border-right: 1px solid #e2e8f0;
}
.lb-footer-logo-img { height: 72px; width: auto; display: block; margin-bottom: 14px; }
.lb-footer-tagline { font-size: 13px; color: #8896a8; margin: 0 0 28px; letter-spacing: .05em; line-height: 1.7; }
.lb-footer-info { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lb-footer-info li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: #4a5568; line-height: 1.6; }
.lb-footer-info li i { color: var(--navy); font-size: 14px; margin-top: 3px; flex-shrink: 0; width: 16px; text-align: center; }
.lb-footer-info a { color: #4a5568; text-decoration: none; }
.lb-footer-info a:hover { color: var(--navy); }

.lb-footer-sns { display: flex; gap: 10px; flex-wrap: wrap; }
.lb-footer-sns-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: opacity .2s;
}
.lb-footer-sns-btn:hover { opacity: .85; }
.lb-footer-sns-line { background: var(--green); color: #fff; }
.lb-footer-sns-ig { background: #fff; color: var(--navy); border: 1px solid #c5d0e0; }

.lb-footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding-left: 56px; }
.lb-footer-nav-heading { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--navy); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 1px solid #e2e8f0; }
.lb-footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lb-footer-nav a { font-size: 15px; color: #5f6b7a; text-decoration: none; transition: color .15s; display: flex; align-items: center; gap: 8px; }
.lb-footer-nav a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: #c5d0e0; flex-shrink: 0; }
.lb-footer-nav a:hover { color: var(--navy); }
.lb-footer-nav a:hover::before { background: var(--navy); }

.lb-footer-copy { background: var(--navy); padding: 16px 24px; text-align: center; }
.lb-footer-copy-inner { max-width: 1080px; margin: 0 auto; }
.lb-footer-copy p { font-size: 13px; color: rgba(255,255,255,.4); margin: 0; letter-spacing: .05em; }

/* ── スマホ用スティッキーCTAバー ── */
.lb-sticky-cta { display: none; }
@media (max-width: 768px) {
  .lb-sticky-cta {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  }
  .lb-sticky-cta-line,
  .lb-sticky-cta-tel {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 16px 10px;
    text-decoration: none; font-weight: 800;
    transition: opacity .2s;
  }
  .lb-sticky-cta-line { background: var(--green); color: #fff; }
  .lb-sticky-cta-tel  { background: var(--navy);  color: #fff; }
  .lb-sticky-cta-line span,
  .lb-sticky-cta-tel span {
    display: flex; flex-direction: column;
    font-size: 18px; line-height: 1.2; white-space: nowrap;
  }
  .lb-sticky-cta-line small,
  .lb-sticky-cta-tel small { font-size: 13px; font-weight: 500; opacity: .85; }
  .lb-sticky-cta-line:hover,
  .lb-sticky-cta-tel:hover { opacity: .9; color: #fff; text-decoration: none; }
  body { padding-bottom: 64px; }
}

/* ── レスポンシブ（フッター） ── */
@media (max-width: 768px) {
  .lb-footer-inner { grid-template-columns: 1fr; }
  .lb-footer-brand { padding-right: 0; border-right: none; padding-bottom: 36px; border-bottom: 1px solid #e2e8f0; }
  .lb-footer-nav { padding-left: 0; padding-top: 36px; }
}
@media (max-width: 480px) {
  .lb-footer-nav { grid-template-columns: 1fr; gap: 28px; }
}


/* ============================================================
   [BREADCRUMB] パンくず（全ページ共通）
============================================================ */
.lb-breadcrumb {
  background: #f4f6fa;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--muted);
}
.lb-breadcrumb-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
}
.lb-breadcrumb a { color: var(--navy); text-decoration: none; }
.lb-breadcrumb a:hover { text-decoration: underline; }
.lb-breadcrumb-sep { color: #bbb; font-size: 11px; }
.lb-breadcrumb-current { color: var(--muted); }


/* ============================================================
   [CTA] オファーカード（template-parts/cta-section.php）
============================================================ */
.lb-cta-offer {
  background: #dde6f4;
  padding: 56px 20px;
}

.lb-cta-offer-inner {
  max-width: 820px; margin: 0 auto;
  background: #fff;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(39,74,134,.10);
  display: grid; grid-template-columns: 1fr 1fr;
}

/* 左パネル（価格） */
.lb-cta-offer-left {
  background: var(--navy-dark);
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.lb-cta-offer-badge {
  display: inline-block;
  background: #e07820; color: #fff;
  font-size: 14px; font-weight: 800; letter-spacing: .06em;
  padding: 7px 20px; border-radius: 999px;
  margin-bottom: 20px; align-self: flex-start;
}
.lb-cta-offer-title {
  font-size: clamp(18px, 2.8vw, 22px); font-weight: 700;
  color: #fff; line-height: 1.5; margin: 0 0 24px;
}
.lb-cta-offer-price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px; flex-wrap: wrap;
}
.lb-cta-offer-original {
  font-size: 15px; color: rgba(255,255,255,.45); text-decoration: line-through;
}
.lb-cta-offer-arrow { font-size: 15px; color: rgba(255,255,255,.4); }
.lb-cta-offer-price {
  font-size: clamp(44px, 7vw, 60px); font-weight: 700;
  color: #fff; letter-spacing: -.02em; line-height: 1;
  padding-bottom: 12px; margin-bottom: 4px;
}
.lb-cta-offer-price span { font-size: 24px; font-weight: 600; }
.lb-cta-offer-price span small {
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,.5); margin-left: 4px;
}
.lb-cta-offer-note {
  font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 16px; margin-bottom: 16px;
}
.lb-cta-offer-includes { list-style: none; margin: 0; padding: 0; }
.lb-cta-offer-includes li {
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,.85);
  padding: 7px 0;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.lb-cta-offer-includes li:last-child { border-bottom: none; }
.lb-cta-offer-includes li .fa-check { color: #4ade80; font-size: 13px; flex-shrink: 0; }

/* 右パネル（予約ボタン） */
.lb-cta-offer-right {
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.lb-cta-offer-right-title {
  font-size: 18px; font-weight: 700; color: var(--navy-dark);
  margin: 0; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.lb-cta-offer-right-lead {
  font-size: 15px; line-height: 1.85; color: var(--muted); margin: 0;
}

/* ── LINEボタン / 電話ボタン（CTA共通） ── */
.lb-cta-btn-line {
  display: flex; align-items: center; gap: 12px;
  background: var(--green); color: #fff;
  border-radius: 10px; padding: 15px 20px;
  text-decoration: none; font-size: 17px; font-weight: 700; line-height: 1.3;
  transition: opacity .2s;
}
.lb-cta-btn-line:hover { opacity: .88; color: #fff; background: var(--green); }
.lb-cta-btn-line svg { flex-shrink: 0; }
.lb-cta-btn-line small {
  display: block; font-size: 13px; font-weight: 400; opacity: .85; margin-top: 2px;
}

.lb-cta-btn-tel {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy); color: #fff;
  border-radius: 10px; padding: 15px 20px;
  text-decoration: none; font-size: 17px; font-weight: 700; line-height: 1.3;
  transition: opacity .2s;
}
.lb-cta-btn-tel:hover { opacity: .88; color: #fff; background: var(--navy); }
.lb-cta-btn-tel small {
  display: block; font-size: 13px; font-weight: 400; opacity: .8; margin-top: 2px;
}

/* ── レスポンシブ（CTA） ── */
@media (max-width: 640px) {
  .lb-cta-offer-inner { grid-template-columns: 1fr; }
  .lb-cta-offer-left  { padding: 32px 28px; }
  .lb-cta-offer-right { padding: 28px 28px 36px; }
}


/* ============================================================
   [WHY] なぜ改善するのか（template-parts/why-section.php）
============================================================ */
.ws-section { background: #fff; }

/* パララックス見出し */
.ws-parallax {
  background:
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg')
    center center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 80px 20px 56px;
  text-align: center;
}
.ws-parallax::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(240,244,250,.88); pointer-events: none;
}
.ws-parallax-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
@media (max-width: 768px) { .ws-parallax { background-attachment: scroll; } }
.ws-title {
  font-size: clamp(24px, 4vw, 36px); font-weight: 800;
  color: var(--navy-dark); line-height: 1.4; margin: 10px 0 0;
}

/* リスト全体のラッパー */
.ws-list-wrap {
  background-image:
    linear-gradient(rgba(240,244,250,.88), rgba(240,244,250,.88)),
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg');
  background-size: auto, cover;
  background-position: center, center center;
  background-attachment: scroll, fixed;
  background-repeat: repeat, no-repeat;
  position: relative; z-index: 1;
  padding: 0 20px 64px;
}
@media (max-width: 768px) {
  .ws-list-wrap { background-attachment: scroll, scroll; }
}

.ws-list {
  max-width: 960px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 48px;
  padding-top: 48px;
}

/* 各行カード */
.ws-row {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(39,74,134,.10);
}
.ws-row--alt { direction: rtl; }
.ws-row--alt > * { direction: ltr; }

.ws-row-photo { overflow: hidden; min-height: 260px; }
.ws-row-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%; display: block;
  transition: transform .4s;
}
.ws-row:hover .ws-row-photo img { transform: scale(1.03); }

.ws-row-body {
  padding: 36px 44px 36px 50px;
  display: flex; flex-direction: column; justify-content: center; position: relative;
}
.ws-row-num {
  position: absolute; bottom: 8px; right: 16px;
  font-size: 80px; font-weight: 900; letter-spacing: -.04em;
  color: rgba(39,74,134,.07); line-height: 1;
  font-family: 'Lato', sans-serif; pointer-events: none;
}
.ws-row-label { font-size: 11px; font-weight: 800; letter-spacing: .25em; color: var(--red); margin: 0 0 8px; display: block; }
.ws-row-benefit {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, #1e4a8c 100%);
  padding: 7px 14px; border-radius: 4px; margin: 0 0 14px;
}
.ws-row-title {
  font-size: clamp(17px, 2.4vw, 21px); font-weight: 800;
  color: var(--navy-dark); line-height: 1.5; margin: 0 0 16px;
  padding-bottom: 14px; border-bottom: 2px solid var(--line);
}
.ws-row-text { font-size: 15px; line-height: 2.05; color: var(--text); margin: 0 0 12px; }
.ws-row-text:last-child { margin: 0; }

/* 推薦の声 */
.ws-voice { max-width: 960px; margin: 48px auto 0; }
.ws-voice-heading { text-align: center; margin-bottom: 36px; }

/* 岡本先生カード */
.fv-voice-card {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 48px; align-items: start;
  background: #fff; border-radius: 20px; padding: 44px 48px;
  box-shadow: 0 6px 28px rgba(39,74,134,.09);
}
.fv-voice-photo img {
  width: 100%; border-radius: 12px;
  object-fit: cover; object-position: top center;
  aspect-ratio: 3/4; display: block;
  box-shadow: 0 6px 20px rgba(39,74,134,.14);
}
.fv-voice-photo-caption { font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.8; text-align: center; }
.fv-voice-photo-caption strong { display: block; font-size: 17px; font-weight: 800; color: var(--navy-dark); margin-top: 4px; }
.fv-voice-body { position: relative; padding-left: 24px; }
.fv-voice-body::before {
  content: "\201C";
  position: absolute; left: 0; top: -10px;
  font-size: 60px; line-height: 1; color: var(--navy);
  opacity: .15; font-family: Georgia, serif;
}
.fv-voice-quote p { font-size: 16px; line-height: 2.1; color: var(--text); margin: 0 0 18px; }
.fv-voice-quote p:last-child { margin: 0; }

/* ── レスポンシブ（WHY） ── */
@media (max-width: 720px) {
  .ws-row,
  .ws-row.ws-row--alt {
    display: flex; flex-direction: column; direction: ltr;
  }
  .ws-row .ws-row-body,
  .ws-row.ws-row--alt .ws-row-body { order: 1; }
  .ws-row .ws-row-photo,
  .ws-row.ws-row--alt .ws-row-photo { order: 2; }
  .ws-row-body { padding: 28px 28px 28px 32px; }
  .fv-voice-card { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
}
@media (max-width: 768px) {
  .ws-row-benefit { font-size: clamp(10px, 3vw, 13px); }
}


/* ============================================================
   [FIT] こんな方におすすめ（template-parts/fit-section.php）
============================================================ */
.sy-fit { background: var(--navy-dark); padding: 80px 20px; }
.sy-fit-inner { max-width: 860px; margin: 0 auto; }
.sy-fit-lead-title {
  font-size: clamp(20px, 3vw, 26px); font-weight: 800;
  color: #fff; text-align: center; line-height: 1.6; margin: 0 0 48px;
}
.sy-fit-lead-title span {
  display: block; font-size: clamp(16px, 2.4vw, 20px);
  color: rgba(255,255,255,.7); font-weight: 600; margin-top: 8px;
}

/* 写真3枚 */
.sy-fit-hero-photos {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 40px;
}
.sy-fit-hero-photo {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.sy-fit-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
  transition: transform .35s;
}
.sy-fit-hero-photo:hover img { transform: scale(1.04); }

/* Yes/No グリッド */
.sy-fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.sy-fit-yes,
.sy-fit-no { border-radius: 16px; padding: 28px; }
.sy-fit-yes {
  background: #fff;
  border: none;
}
.sy-fit-no {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.sy-fit-yes-title,
.sy-fit-no-title {
  font-size: 16px; font-weight: 800; margin: 0 0 16px;
  display: flex; align-items: flex-start; gap: 8px;
}
.sy-fit-yes-title { color: var(--navy-dark); }
.sy-fit-yes-title .fa-circle-check { color: #16a34a; font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.sy-fit-no-title { color: rgba(255,255,255,.85); }
.sy-fit-no-title .fa-circle-xmark { color: rgba(255,100,100,.8); font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.sy-fit-yes ul,
.sy-fit-no ul { list-style: none; margin: 0; padding: 0; }
.sy-fit-yes li {
  font-size: 15px; color: var(--text);
  padding: 8px 0; border-bottom: 1px solid var(--line); line-height: 1.7;
}
.sy-fit-no li {
  font-size: 15px; color: rgba(255,255,255,.75);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); line-height: 1.7;
}
.sy-fit-yes li:last-child,
.sy-fit-no li:last-child { border-bottom: none; }

/* 締めCTA */
.sy-fit-closing { text-align: center; }
.sy-fit-closing-main { font-size: clamp(20px, 3vw, 26px); font-weight: 800; color: #fff; line-height: 1.7; margin: 0 0 16px; }
.sy-fit-closing-sub { font-size: 16px; color: rgba(255,255,255,.75); line-height: 2; margin: 0 0 36px; }
.sy-fit-closing-btns {
  display: flex; flex-direction: row; gap: 12px;
  max-width: 640px; margin: 0 auto;
}
.sy-fit-closing-btns .lb-cta-btn-line,
.sy-fit-closing-btns .lb-cta-btn-tel { flex: 1; justify-content: center; }

/* ── レスポンシブ（FIT） ── */
@media (max-width: 640px) {
  .sy-fit-grid { grid-template-columns: 1fr; }
  .sy-fit-hero-photos { gap: 8px; }
}
@media (max-width: 480px) {
  .sy-fit-closing-btns { flex-direction: column; max-width: 360px; }
}
@media (max-width: 768px) {
  .sy-fit-closing { text-align: left; }
  .sy-fit-closing-main { font-size: clamp(18px, 5vw, 26px); }
  .sy-fit-closing-sub { font-size: 15px; }
  .sy-fit-no-title { flex-wrap: nowrap; font-size: clamp(13px, 3.8vw, 16px); }
  .sy-fit-lead-title { font-size: clamp(17px, 4.5vw, 26px); }
}


/* ============================================================
   [FLOW] 初回の流れ（template-parts/flow-section.php）
============================================================ */
.sy-flow { background: var(--bg); padding: 72px 20px; }
.sy-flow-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.sy-flow-title { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; color: var(--navy-dark); margin: 10px 0 12px; }
.sy-flow-lead { font-size: 16px; color: var(--muted); margin: 0 0 40px; }

/* 4列グリッド＋矢印 */
.sy-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.sy-flow-arrow {
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 60px;
  color: var(--navy); font-size: 20px; width: 32px;
}

.sy-flow-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 3px 16px rgba(39,74,134,.08); }
.sy-flow-card-photo { aspect-ratio: 4/3; overflow: hidden; }
.sy-flow-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block; transition: transform .3s;
}
.sy-flow-card:hover .sy-flow-card-photo img { transform: scale(1.04); }
.sy-flow-card-body { padding: 14px 16px 18px; text-align: left; }
.sy-flow-step { font-size: 10px; font-weight: 800; letter-spacing: .18em; color: var(--red); display: block; margin-bottom: 4px; }
.sy-flow-card-body h3 { font-size: 14px; font-weight: 800; color: var(--navy-dark); margin: 0 0 6px; line-height: 1.4; }
.sy-flow-time { font-size: 13px; font-weight: 700; color: var(--muted); }

@media (max-width: 640px) {
  .sy-flow-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sy-flow-arrow { display: none; }
}


/* ============================================================
   [TOP] トップページ（page-top.php）
============================================================ */
.top-page {
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Noto Sans JP","Meiryo",sans-serif;
  color: var(--text);
}

/* 共通見出し */
.top-section-heading { text-align: center; margin-bottom: 48px; }
.top-section-heading h2 { font-size: clamp(22px, 3.5vw, 32px); font-weight: 800; color: var(--navy-dark); line-height: 1.4; margin: 10px 0 0; }
.top-section-heading h2 em { font-style: normal; color: var(--red); }
.top-section-sub { font-size: 15px; color: var(--muted); margin: 10px 0 0; }

/* ── ① ヒーロー ── */
.top-hero-wrap { background: #54617b; }
.top-hero {
  position: relative;
  width: 100%; max-width: 1600px;
  margin-left: auto; margin-right: auto;
  height: 100svh; min-height: 600px; max-height: 860px;
  overflow: hidden;
}
.top-hero-bg {
  position: absolute; inset: 0;
  background:
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/mv.jpg')
    center 20% / cover no-repeat;
}
.top-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,46,86,.72) 0%, rgba(27,58,107,.55) 50%, rgba(22,46,86,.30) 100%);
}
.top-hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 7vw;
  max-width: 1100px;
}
.top-hero-label {
  font-size: 11px; font-weight: 700; letter-spacing: .3em;
  color: rgba(255,255,255,.6); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.top-hero-label::after { content: ''; display: block; width: 48px; height: 1px; background: rgba(255,255,255,.4); }

.top-hero-title {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: .04em;
  margin: 0 0 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
  font-family: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Yu Gothic', sans-serif;
}
.top-hero-title em {
  font-style: normal; position: relative; display: inline-block;
}
.top-hero-title em::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 3px; background: var(--red);
}
.top-hero-sub {
  font-size: clamp(17px, 2.5vw, 24px);
  color: rgba(255,255,255,.85); line-height: 1.7;
  margin: 0 0 40px; font-weight: 500;
  letter-spacing: .06em;
  font-family: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Yu Gothic', sans-serif;
}

/* ヒーロー：CTAカード */
.top-hero-cta {
  display: inline-flex; flex-direction: column;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px; padding: 24px 32px; gap: 12px;
  max-width: 480px;
}
.top-hero-cta-lead {
  font-size: clamp(10px, 3.2vw, 13px);
  color: rgba(255,255,255,.7); font-weight: 600;
  margin-bottom: 4px; text-align: center; white-space: nowrap;
}
.top-hero-cta-btns { display: flex; gap: 12px; }

.top-hero-btn-line {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: #fff;
  border-radius: 12px; padding: 14px 20px;
  text-decoration: none; font-size: 15px; font-weight: 800;
  flex: 1; line-height: 1.3;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(6,199,85,.4);
}
.top-hero-btn-line:hover { opacity: .9; transform: translateY(-1px); color: #fff; }
.top-hero-btn-line svg { width: 24px; height: 24px; flex-shrink: 0; }
.top-hero-btn-line small { font-size: 11px; font-weight: 500; opacity: .85; display: block; }

.top-hero-btn-tel {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4); color: #fff;
  border-radius: 12px; padding: 14px 20px;
  text-decoration: none; font-size: 15px; font-weight: 800;
  flex: 1; line-height: 1.3;
  transition: background .2s;
  white-space: nowrap;
}
.top-hero-btn-tel:hover { background: rgba(255,255,255,.32); color: #fff; }
.top-hero-btn-tel svg { width: 20px; height: 20px; flex-shrink: 0; }
.top-hero-btn-tel small { font-size: 11px; font-weight: 500; opacity: .8; display: block; white-space: nowrap; }

/* スクロールインジケーター */
.top-hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.top-hero-scroll span { font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.top-hero-scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.top-hero-scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,.8);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* バッジ（右側） */
.top-hero-badge {
  position: absolute; right: 6vw; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.top-hero-badge-item {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  width: 130px; height: 130px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  padding: 8px 10px;
}
.top-hero-badge-item .top-hero-badge-sp-main {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
  margin: 0;
}
.top-hero-badge-item .top-hero-badge-sp-main strong {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  display: inline;
  line-height: 1.1;
}
.top-hero-badge-item .top-hero-badge-sp-main small {
  font-size: 11px;
  font-weight: 700;
}
.top-hero-badge-item .top-hero-badge-sp-main--lg {
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}
.top-hero-badge-line {
  width: 32px; height: 1px; background: var(--navy); opacity: .35;
  flex-shrink: 0;
}
.top-hero-badge-item-label {
  font-size: 10px; color: #4a5568; font-weight: 600;
  letter-spacing: .03em; line-height: 1.4; margin: 0; white-space: nowrap;
}

/* ── ② お知らせ・ブログ ── */
.top-news { background: var(--bg); padding: 72px 20px; }
.top-news-inner { max-width: 960px; margin: 0 auto; }
.top-news-heading {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px; border-bottom: 2px solid var(--navy); padding-bottom: 16px;
}
.top-news-heading h2 { font-size: clamp(20px, 3vw, 26px); font-weight: 800; color: var(--navy-dark); margin: 6px 0 0; }
.top-news-all { font-size: 14px; font-weight: 700; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.top-news-all:hover { opacity: .75; }

.top-news-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.top-news-item {
  display: flex; gap: 16px;
  background: #fff; border-radius: 12px; overflow: hidden;
  text-decoration: none; padding: 16px;
  box-shadow: 0 2px 12px rgba(39,74,134,.07);
  transition: box-shadow .2s, transform .2s; align-items: flex-start;
}
.top-news-item:hover { box-shadow: 0 6px 20px rgba(39,74,134,.13); transform: translateY(-2px); }
.top-news-item-thumb { width: 80px; height: 80px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: var(--bg); }
.top-news-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.top-news-item-no-thumb { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--navy); opacity: .3; font-size: 28px; }
.top-news-item-body { flex: 1; min-width: 0; }
.top-news-item-date { font-size: 12px; color: var(--muted); display: inline-block; margin-right: 8px; }
.top-news-item-cat { font-size: 11px; font-weight: 700; color: var(--navy); background: rgba(39,74,134,.1); padding: 2px 8px; border-radius: 4px; }
.top-news-item-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.6; margin: 6px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.top-news-empty { color: var(--muted); font-size: 15px; text-align: center; padding: 32px 0; }
.top-news-btn-wrap { text-align: center; }
.top-news-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 2px solid var(--navy); color: var(--navy); font-size: 15px; font-weight: 700; padding: 12px 32px; border-radius: 8px; text-decoration: none; transition: background .2s, color .2s; }
.top-news-btn:hover { background: var(--navy); color: #fff; }

/* ── ③ 症状メニュー ── */
.top-menu { background: #fff; padding: 72px 20px; }
.top-menu-inner { max-width: 960px; margin: 0 auto; }
.top-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.top-menu-card {
  background: var(--bg); border-radius: 16px; overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(39,74,134,.08);
  transition: transform .25s, box-shadow .25s;
}
.top-menu-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(39,74,134,.15); }
.top-menu-card-photo { aspect-ratio: 4/3; overflow: hidden; }
.top-menu-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .35s; }
.top-menu-card:hover .top-menu-card-photo img { transform: scale(1.05); }
.top-menu-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.top-menu-card-en { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--red); display: block; margin-bottom: 6px; }
.top-menu-card-body h3 { font-size: 20px; font-weight: 800; color: var(--navy-dark); margin: 0 0 12px; }
.top-menu-card-body p { font-size: 14px; line-height: 1.85; color: var(--muted); margin: 0 0 16px; flex: 1; }
.top-menu-card-link { font-size: 14px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 6px; }

/* ── ④ 当院の考え方 ── */
.top-concept { background: var(--bg); padding: 80px 20px; }
.top-concept-inner { max-width: 960px; margin: 0 auto; }
.top-concept-lead { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.top-concept-lead p { font-size: 16px; line-height: 2.1; color: var(--text); margin: 0 0 18px; }
.top-concept-lead p:last-child { margin: 0; }
.top-concept-points { display: flex; flex-direction: column; gap: 40px; margin-bottom: 64px; }
.top-concept-point {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(39,74,134,.09);
}
.top-concept-point--rev { direction: rtl; }
.top-concept-point--rev > * { direction: ltr; }
.top-concept-point-photo { overflow: hidden; aspect-ratio: 4/3; }
.top-concept-point-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .4s; }
.top-concept-point:hover .top-concept-point-photo img { transform: scale(1.04); }
.top-concept-point-body { padding: 36px 44px 36px 8px; }
.top-concept-point--rev .top-concept-point-body { padding: 36px 8px 36px 44px; }
.top-concept-point-label { font-size: 12px; font-weight: 800; letter-spacing: .15em; color: var(--red); display: block; margin-bottom: 12px; }
.top-concept-point-body h3 { font-size: clamp(18px, 2.8vw, 22px); font-weight: 800; color: var(--navy-dark); line-height: 1.5; margin: 0 0 16px; border-bottom: 2px solid var(--line); padding-bottom: 14px; }
.top-concept-point-body p { font-size: 15px; line-height: 2; color: var(--text); margin: 0 0 14px; }
.top-concept-point-body p:last-child { margin: 0; }
.top-concept-profile {
  display: flex; align-items: center; gap: 40px;
  background: #fff; border-radius: 16px; padding: 36px 40px;
  box-shadow: 0 4px 20px rgba(39,74,134,.07);
  max-width: 640px; margin: 0 auto;
}
.top-concept-profile-photo { width: 120px; height: 120px; flex-shrink: 0; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 16px rgba(39,74,134,.15); }
.top-concept-profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 28% top; display: block; }
.top-concept-profile-name-sub { font-size: 12px; color: var(--muted); margin: 0 0 4px; }
.top-concept-profile-name { font-size: 22px; font-weight: 900; color: var(--navy-dark); letter-spacing: .08em; margin: 0 0 4px; }
.top-concept-profile-cred { font-size: 12px; color: var(--muted); line-height: 1.7; margin: 0 0 16px; }
.top-concept-profile-link { font-size: 14px; font-weight: 700; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.top-concept-profile-link:hover { opacity: .75; }

/* ── ⑤ 4つのメリット ── */
.top-merits { background: #fff; padding: 80px 20px; }
.top-merits-inner { max-width: 960px; margin: 0 auto; }
.top-merits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.top-merit {
  background: var(--bg); border-radius: 16px;
  position: relative; overflow: hidden;
  border-top: 4px solid var(--navy);
}
.top-merit-photo { width: calc(100% + 0px); height: 220px; overflow: hidden; }
.top-merit-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; transition: transform .4s; }
.top-merit:hover .top-merit-photo img { transform: scale(1.04); }
.top-merit-num { position: absolute; bottom: 8px; right: 14px; font-size: 80px; font-weight: 900; color: rgba(39,74,134,.06); line-height: 1; font-family: 'Lato', sans-serif; pointer-events: none; }
.top-merit-body { padding: 28px 32px 36px; }
.top-merit-heading { display: flex; align-items: center; gap: 12px; margin: 20px 28px 0; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.top-merit-icon { font-size: 22px; color: var(--navy); flex-shrink: 0; line-height: 1; width: 40px; height: 40px; background: rgba(39,74,134,.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.top-merit h3 { font-size: clamp(15px, 2.2vw, 18px); font-weight: 800; color: var(--navy-dark); line-height: 1.45; margin: 0; }
.top-merit p { font-size: 14px; line-height: 1.9; color: var(--text); margin: 16px 28px 28px; }

/* ── レスポンシブ（TOP） ── */
@media (max-width: 768px) {
  .top-hero { height: auto; min-height: 0; max-height: none; }
  .top-hero-content { height: auto; min-height: 0; padding-top: 80px; padding-bottom: 28px; padding-right: 20px; justify-content: flex-start; flex-direction: column; gap: 20px; }
  .top-hero-scroll { display: none; }
  .top-hero-badge { display: none; }
  .top-hero-cta-wrap { display: flex; align-items: center; }
  .top-hero-cta { flex: 1; max-width: 100%; padding: 0; background: none; box-shadow: none; border: none; }
  .top-hero-cta-btns { display: none; }
  .top-hero-cta-lead { display: none; }
  .top-hero-bg { background-position: 40% 20%; }
  .top-hero-scroll-sp { display: none; }
  .top-hero-badge-sp-wrap { display: flex; width: 100%; }
  .top-hero-badge-sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    gap: 6px;
  }
  .top-hero-badge-sp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.93);
    border-radius: 50%;
    flex: 1;
    aspect-ratio: 1 / 1;
    text-align: center;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    gap: 3px;
    min-width: 0;
  }
  .top-news-list { grid-template-columns: 1fr; }
  .top-merits-grid { grid-template-columns: 1fr; }
  .top-concept-point, .top-concept-point--rev { grid-template-columns: 1fr; direction: ltr; }
  .top-concept-point-body, .top-concept-point--rev .top-concept-point-body { padding: 28px 28px 32px; }
  .top-concept-lead { text-align: left; }
  .top-concept-profile { flex-direction: column; text-align: center; padding: 28px; gap: 20px; }
}
@media (min-width: 769px) {
  .top-hero-scroll-sp { display: none; }
  .top-hero-cta-wrap { display: contents; }
}
@media (max-width: 640px) {
  .top-menu-grid { gap: 10px; }
  .top-menu-card-body { padding: 10px 10px 14px; }
  .top-menu-card-en { font-size: 9px; letter-spacing: .1em; margin-bottom: 4px; }
  .top-menu-card-body h3 { font-size: clamp(10px, 3.2vw, 13px); margin: 0 0 6px; white-space: nowrap; }
  .top-menu-card-body p { display: none; }
  .top-menu-card-link { font-size: 11px; }
}
@media (max-width: 560px) {
  .top-news-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .top-merits-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   [FIRSTVISIT] はじめての方へ（page-firstvisit.php）
============================================================ */
.fv-page {
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Noto Sans JP","Meiryo",sans-serif;
  color: var(--text);
  line-height: 1.8;
}

/* ── ヒーロー ── */
.fv-hero {
  background:
    linear-gradient(135deg, rgba(27,58,107,.72) 0%, rgba(22,46,86,.78) 100%),
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg')
    center 60% / cover no-repeat;
  color: #fff; padding: 64px 20px 72px;
  text-align: center; position: relative; overflow: hidden;
}
.fv-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 60%, rgba(255,255,255,.05) 0%, transparent 55%),
              radial-gradient(circle at 85% 20%, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events: none;
}
.fv-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; margin-bottom: 14px; }
.fv-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: .04em; line-height: 1.2; margin: 0 0 20px; }
.fv-hero-lead { font-size: 17px; line-height: 2; color: rgba(255,255,255,.85); max-width: 620px; margin: 0 auto; }

/* ── ① 院長メッセージ ── */
.fv-message { background: #fff; padding: 80px 20px; }
.fv-message-inner {
  max-width: 920px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 56px; align-items: start;
}
.fv-message-photo-frame { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(39,74,134,.16); aspect-ratio: 3/4; }
.fv-message-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 28% top; display: block; }
.fv-message-caption { margin-top: 14px; text-align: center; font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .08em; }
.fv-message-caption strong { display: block; font-size: 20px; font-weight: 900; color: var(--navy-dark); margin-top: 4px; letter-spacing: .05em; }
.fv-page p.fv-message-catch { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: var(--navy-dark); line-height: 1.55; border-left: 4px solid var(--red); padding-left: 18px; margin: 0 0 28px; }
.fv-page p.fv-message-catch em { font-style: normal; color: var(--red); }
.fv-message-body p { font-size: 16px; line-height: 2.1; color: var(--text); margin: 0 0 18px; }
.fv-message-body p:last-child { margin-bottom: 0; }
.fv-message-body strong { color: var(--navy-dark); }

/* ── ② 院紹介動画 ── */
.fv-video { background: var(--bg); padding: 72px 20px; text-align: center; }
.fv-video-inner { max-width: 800px; margin: 0 auto; }
.fv-video-wrap { position: relative; padding-top: 56.25%; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(39,74,134,.18); margin-top: 36px; }
.fv-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── ③ 施術のこだわり ── */
.fv-commitment { background: #fff; padding: 80px 20px; }
.fv-commitment-inner { max-width: 920px; margin: 0 auto; }
.fv-commitment-heading { text-align: center; margin-bottom: 64px; }
.fv-commit-item { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; margin-bottom: 72px; }
.fv-commit-item:last-child { margin-bottom: 0; }
.fv-commit-item.reverse { direction: rtl; }
.fv-commit-item.reverse > * { direction: ltr; }
.fv-commit-photo { border-radius: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(39,74,134,.12); aspect-ratio: 4/3; }
.fv-commit-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .35s; }
.fv-commit-photo:hover img { transform: scale(1.04); }
.fv-commit-num { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--red); background: rgba(201,38,58,.07); padding: 4px 14px; border-radius: 999px; margin-bottom: 14px; }
.fv-commit-title { font-size: clamp(20px, 3vw, 26px); font-weight: 800; color: var(--navy-dark); line-height: 1.5; margin: 0 0 16px; }
.fv-commit-benefit { display: block; font-size: 15px; font-weight: 700; color: var(--red); margin-top: 6px; }
.fv-commit-text p { font-size: 15px; line-height: 2.1; color: var(--text); margin: 0 0 14px; }
.fv-commit-points { margin: 18px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.fv-commit-points li { font-size: 16px; font-weight: 700; color: var(--navy); padding: 11px 0 11px 32px; border-bottom: 1px solid var(--line); position: relative; }
.fv-commit-points li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; background: var(--navy); border-radius: 50%; }
.fv-commit-points li::after { content: ""; position: absolute; left: 5px; top: 50%; width: 6px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: translateY(-70%) rotate(-45deg); }

/* ── ④ 施術の流れ（STEPカード） ── */
.fv-flow { background: var(--bg); padding: 80px 20px; }
.fv-flow-inner { max-width: 920px; margin: 0 auto; }
.fv-flow-heading { text-align: center; margin-bottom: 12px; }
.fv-flow-total { display: inline-block; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 20px; border-radius: 999px; margin: 0 0 48px; }
.fv-flow-steps { display: flex; flex-direction: column; gap: 24px; }
.fv-step { display: grid; grid-template-columns: 88px 1fr; gap: 20px; position: relative; }
.fv-step:not(:last-child)::after {
  content: ""; position: absolute;
  left: calc(44px - 1px); top: 90px; height: calc(100% - 66px + 24px);
  width: 2px; background: linear-gradient(to bottom, var(--navy), rgba(39,74,134,.1));
}
.fv-step-badge {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: #fff;
  justify-self: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1.2; flex-shrink: 0; margin-top: 4px;
  box-shadow: 0 4px 14px rgba(39,74,134,.25);
}
.fv-step-badge .s-label { font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.fv-step-badge .s-num  { font-size: 22px; font-weight: 900; }
.fv-step-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 3px 14px rgba(39,74,134,.07); display: grid; grid-template-columns: 1fr 200px; }
.fv-step-body { padding: 24px 28px; }
.fv-step-time { display: inline-block; font-size: 11px; font-weight: 800; color: var(--red); background: rgba(201,38,58,.08); padding: 3px 12px; border-radius: 999px; margin-bottom: 10px; }
.fv-step-title { font-size: clamp(18px, 3vw, 24px); font-weight: 800; color: var(--navy-dark); margin: 0 0 10px; }
.fv-step-desc { font-size: 15px; line-height: 2; color: var(--text); margin: 0; }
.fv-step-img { overflow: hidden; }
.fv-step-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* ── レスポンシブ（FIRSTVISIT） ── */
@media (max-width: 760px) {
  .fv-message-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .fv-commit-item,
  .fv-commit-item.reverse { display: flex; flex-direction: column; direction: ltr; gap: 20px; }
  .fv-commit-item .fv-commit-text,
  .fv-commit-item.reverse .fv-commit-text { order: 1; }
  .fv-commit-item .fv-commit-photo,
  .fv-commit-item.reverse .fv-commit-photo { order: 2; }
}
@media (max-width: 640px) {
  .fv-step { grid-template-columns: 64px 1fr; }
  .fv-step:not(:last-child)::after { left: calc(32px - 1px); }
  .fv-step-card { grid-template-columns: 1fr; }
  .fv-step-img { display: none; }
}
@media (max-width: 768px) {
  .fv-message { padding: 40px 20px; }
  .fv-video { padding: 40px 20px; }
  .fv-commitment { padding: 40px 20px; }
  .fv-flow { padding: 40px 20px; }
  .fv-hero-lead { font-size: clamp(13px, 3.8vw, 17px); line-height: 1.8; text-align: center; }
}


/* ============================================================
   [DIRECTOR] 院長紹介（page-director.php）
============================================================ */
.director-page {
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Noto Sans JP","Meiryo",sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
}

/* ── ① ヒーロー ── */
.director-hero {
  background:
    linear-gradient(135deg, rgba(27,58,107,.72) 0%, rgba(22,46,86,.78) 100%),
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg')
    center 60% / cover no-repeat;
  color: #fff; padding: 64px 20px 72px; text-align: center; overflow: hidden;
}
.director-hero .hero-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.director-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: .05em; line-height: 1.2; margin: 0 0 12px; }
.director-hero .hero-sub { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; }

/* ── ② プロフィールカード ── */
.director-profile-section { background: #fff; padding: 64px 20px; }
.director-profile-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.director-photo-frame { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(39,74,134,.18); aspect-ratio: 3/4; }
.director-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.director-badges { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.director-badge { background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; font-size: 11px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.director-info-block { padding-top: 8px; }
.director-name-en { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--red); text-transform: uppercase; margin-bottom: 6px; }
.director-name-ja { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: .05em; line-height: 1.2; color: var(--navy-dark); margin: 0 0 6px; }
.director-name-kana { font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.director-title-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.director-title-tag { background: var(--navy); color: #fff; border-radius: 6px; padding: 5px 14px; font-size: 12px; font-weight: 700; }
.director-title-tag.red { background: var(--red); }
.director-label { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.director-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.director-catch { font-size: clamp(20px, 3vw, 26px); font-weight: 800; color: var(--navy-dark); line-height: 1.55; border-left: 4px solid var(--red); padding-left: 16px; margin: 0 0 24px; }
.director-profile-desc { font-size: 15px; color: var(--muted); font-weight: 600; line-height: 1.9; margin: 0; }

/* ── ③ 院長メッセージ ── */
.director-message-section { background: var(--bg); padding: 72px 20px; }
.director-message-inner { max-width: 800px; margin: 0 auto; }
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading .en { display: block; font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.section-heading h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; color: var(--navy-dark); line-height: 1.4; margin: 0; }
.director-message-quote { background: #fff; border-radius: 16px; padding: 36px 40px; box-shadow: 0 4px 20px rgba(39,74,134,.07); position: relative; margin-bottom: 32px; }
.director-message-quote::before { content: "\201C"; position: absolute; top: -10px; left: 28px; font-size: 72px; color: var(--navy); opacity: .12; line-height: 1; font-family: Georgia, serif; }
.director-message-quote p { font-size: 16px; line-height: 2.1; color: var(--text); margin: 0 0 18px; }
.director-message-quote p:last-child { margin-bottom: 0; }

/* ── ④ 経歴タイムライン ── */
.director-career-section { background: #fff; padding: 72px 20px; }
.director-career-inner { max-width: 800px; margin: 0 auto; }
.career-timeline { position: relative; padding-left: 28px; }
.career-timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--navy), var(--red)); border-radius: 2px; }
.career-item { position: relative; margin-bottom: 32px; display: grid; grid-template-columns: 180px 1fr; gap: 20px; }
.career-item::before { content: ""; position: absolute; left: -28px; top: 9px; width: 14px; height: 14px; border-radius: 50%; background: var(--navy); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--navy); }
.career-item:last-child::before { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.career-period { font-size: 12px; font-weight: 800; color: var(--navy); letter-spacing: .05em; padding-top: 2px; }
.career-content strong { display: block; font-size: 15px; font-weight: 800; color: var(--navy-dark); margin-bottom: 4px; }
.career-content p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.7; }

/* ── ⑤ 資格リスト ── */
.director-license-section { background: var(--bg); padding: 72px 20px; }
.director-license-inner { max-width: 800px; margin: 0 auto; }
.license-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 32px; }
.license-card { background: #fff; border-radius: 12px; padding: 20px 24px; border-left: 4px solid var(--navy); box-shadow: 0 2px 12px rgba(39,74,134,.06); display: flex; align-items: flex-start; gap: 14px; }
.license-icon { width: 36px; height: 36px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.license-icon svg { width: 18px; height: 18px; fill: #fff; }
.license-info strong { display: block; font-size: 17px; font-weight: 800; color: var(--navy-dark); margin-bottom: 5px; }
.license-info span { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.6; }

/* ── ⑦ 締めメッセージ ── */
.director-closing-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 72px 20px; color: #fff; text-align: center; }
.director-closing-inner { max-width: 700px; margin: 0 auto; }
.director-closing-section .closing-label { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.director-closing-section blockquote { font-size: clamp(17px, 3vw, 22px); font-weight: 800; line-height: 1.7; margin: 0 0 32px; padding: 0; border: none; color: #fff; }
.director-closing-section .closing-text { font-size: 14px; line-height: 2; color: rgba(255,255,255,.85); margin-bottom: 40px; }

/* ── レスポンシブ（DIRECTOR） ── */
@media (max-width: 760px) {
  .director-profile-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .career-item { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 768px) {
  .director-profile-section { padding: 40px 20px; }
  .director-message-section { padding: 40px 20px; }
  .director-career-section { padding: 40px 20px; }
  .director-license-section { padding: 40px 20px; }
  .director-hero .hero-sub { font-size: clamp(12px, 3.5vw, 16px); text-align: center; }
}


/* ============================================================
   [SYMPTOM] 症状ページ共通（neck / lowback / knee）
============================================================ */
.sy-page {
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Noto Sans JP","Meiryo",sans-serif;
  color: var(--text);
}

/* ── ① ヒーロー ── */
.sy-hero {
  background:
    linear-gradient(135deg, rgba(27,58,107,.72) 0%, rgba(22,46,86,.78) 100%),
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg')
    center 60% / cover no-repeat;
  padding: 64px 20px 72px; text-align: center; overflow: hidden;
}
.sy-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .25em; color: rgba(255,255,255,.6); display: block; margin-bottom: 14px; }
.sy-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 16px; }
.sy-hero-lead { font-size: 17px; line-height: 2; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; }

/* ── ② お悩みセクション ── */
.sy-problems { background: #fff; padding: 0; }
.sy-problems2-inner { max-width: 920px; margin: 0 auto; padding: 80px 20px; }

.sy-problems2-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 32px; }
.sy-problems2-top-text .fv-label { color: var(--red); }
.sy-problems-title { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; color: var(--navy-dark); line-height: 1.4; margin: 12px 0 24px; }
.sy-problems-sub { font-size: 16px; line-height: 2; color: var(--muted); margin: 16px 0 0; border-left: 3px solid var(--red); padding-left: 14px; }
.sy-problems2-top-photo { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 28px rgba(39,74,134,.12); }
.sy-problems2-top-photo img { width: 100%; display: block; object-fit: cover; }

/* 2列チェックリスト（白背景ラッパー） */
.sy-checklist2-wrap { background: #fff; border-radius: 16px; padding: 8px 28px 0; box-shadow: 0 4px 20px rgba(39,74,134,.07); }
.sy-checklist2 { list-style: none; margin: 0 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.sy-checklist2 li { font-size: 17px; font-weight: 600; color: var(--text); padding: 10px 0 10px 32px; border-bottom: 1px solid var(--line); position: relative; line-height: 1.5; white-space: nowrap; }
.sy-checklist2 li:last-child,
.sy-checklist2 li:nth-last-child(2) { border-bottom: none; }
.sy-checklist2 li::before { font-family: "Font Awesome 7 Free"; font-weight: 900; content: "\f00c"; position: absolute; left: 0; top: 14px; color: var(--navy); font-size: 14px; }
.sy-checklist2 li mark { background: linear-gradient(transparent 55%, rgba(255,220,50,.45) 55%); color: inherit; padding: 0 2px; }

/* 矢印＋締め */
.sy-problems2-cta { text-align: center; margin-top: 32px; }
.sy-problems2-arrow { font-size: 32px; color: var(--navy); animation: bounceDown .8s ease-in-out infinite alternate; margin-bottom: 20px; }
@keyframes bounceDown {
  from { transform: translateY(0); }
  to   { transform: translateY(10px); }
}
.sy-problems2-cta-text { font-size: clamp(18px, 3vw, 26px); font-weight: 700; color: var(--navy-dark); line-height: 1.6; margin: 0; }
.sy-problems2-cta-text span { font-size: clamp(22px, 4vw, 34px); font-weight: 800; color: var(--navy); display: block; margin-top: 6px; }

/* 写真3枚（真ん中は動画） */
.sy-problems2-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.sy-problems2-photo { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 4px 16px rgba(39,74,134,.10); }
.sy-problems2-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .35s; }
.sy-problems2-photo video { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; min-height: 0; }
.sy-problems2-photo:hover img { transform: scale(1.04); }
.sy-problems2-photo:nth-child(1) img { object-position: 30% top; }
.sy-problems2-photo:nth-child(3) img { object-position: 60% top; }

/* ── ③ 当院ならこう解決できる ── */
.sy-solution { background: #fff; padding: 72px 20px; }
.sy-solution-inner { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; direction: rtl; }
.sy-solution-inner > * { direction: ltr; }
.sy-solution-photo { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(39,74,134,.12); }
.sy-solution-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.sy-solution-title { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; color: var(--navy-dark); line-height: 1.4; margin: 12px 0 20px; }
.sy-solution-title span { color: var(--red); }
.sy-solution-body p { font-size: 16px; line-height: 2.1; margin: 0 0 14px; }
.sy-solution-body strong { color: var(--navy-dark); }
.sy-solution-points { list-style: none; margin: 24px 0 0; padding: 0; border-top: 1px solid var(--line); padding-top: 20px; }
.sy-solution-points li { font-size: 18px; font-weight: 800; color: var(--navy-dark); padding: 12px 0; display: flex; align-items: center; gap: 10px; }
.sy-solution-points li .fa-check-circle { font-size: 22px; color: var(--navy); flex-shrink: 0; }

/* ── ⑥ 良くならない理由 ── */
.sy-reason { background: var(--bg); padding: 40px 20px; }
.sy-reason-inner2 { max-width: 960px; margin: 0 auto; padding: 72px 20px; }
.sy-reason-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }
.sy-reason-title { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; color: var(--navy-dark); line-height: 1.4; margin: 10px 0 32px; }
.sy-reason-top-photo { border-radius: 16px; overflow: hidden; box-shadow: 0 6px 24px rgba(39,74,134,.12); }
.sy-reason-top-photo img { width: 100%; display: block; object-fit: cover; }
.sy-reason-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sy-reason-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px; display: flex; gap: 20px; align-items: flex-start; }
.sy-reason-card-num { font-size: 32px; font-weight: 900; color: rgba(39,74,134,.1); line-height: 1; flex-shrink: 0; width: 40px; font-family: 'Lato', sans-serif; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sy-reason-card-num .fa-triangle-exclamation { font-size: 16px; color: #e07820; opacity: 1; }
.sy-reason-card h3 { font-size: 16px; font-weight: 800; color: var(--navy-dark); margin: 0 0 8px; }
.sy-reason-card p { font-size: 14px; line-height: 1.9; color: var(--text); margin: 0; }

/* ── ⑦ Life Base が行う施術 ── */
.sy-treat { background: #fff; padding: 72px 20px; }
.sy-treat-inner { max-width: 960px; margin: 0 auto; }
.sy-treat-title { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; color: var(--navy-dark); line-height: 1.4; margin: 10px 0 12px; }
.sy-treat-lead { font-size: 16px; color: var(--muted); margin: 0 0 40px; }
.sy-treat-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sy-treat-block { background: var(--bg); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.sy-treat-block-photo { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.sy-treat-block-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .35s; }
.sy-treat-block:hover .sy-treat-block-photo img { transform: scale(1.04); }
.sy-treat-block-content { padding: 24px 24px 28px; position: relative; flex: 1; }
.sy-treat-block-num { position: absolute; bottom: 8px; right: 12px; font-size: 56px; font-weight: 900; color: rgba(39,74,134,.07); line-height: 1; font-family: 'Lato', sans-serif; pointer-events: none; }
.sy-treat-block-title { font-size: 18px; font-weight: 800; color: var(--navy-dark); line-height: 1.5; margin: 0 0 12px; }
.sy-treat-block-benefit { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--navy) 0%, #1e4a8c 100%); padding: 7px 14px; border-radius: 4px; margin: 0 0 16px; }
.sy-treat-block-desc { font-size: 15px; line-height: 2; color: var(--text); margin: 0; }

/* ── レスポンシブ（SYMPTOM） ── */
@media (max-width: 720px) {
  .sy-solution-inner { display: flex; flex-direction: column; direction: ltr; gap: 24px; }
  .sy-solution-body { order: 1; }
  .sy-solution-photo { order: 2; }
  .sy-reason-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  .sy-problems2-top { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .sy-treat-blocks { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sy-reason-grid2 { grid-template-columns: 1fr; }
  .sy-problems2-photos { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .sy-problems2-photo:nth-child(2) { grid-column: 1 / -1; grid-row: 1; aspect-ratio: 16/9; }
  .sy-problems2-photo:nth-child(1),
  .sy-problems2-photo:nth-child(3) { grid-row: 2; }
}
@media (max-width: 560px) {
  .sy-checklist2 { grid-template-columns: 1fr; }
  .sy-checklist2 li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 768px) {
  .sy-problems2-inner { padding: 40px 20px; }
  .sy-solution { padding: 40px 20px; }
  .sy-reason { padding: 0; }
  .sy-reason-inner2 { padding: 40px 20px; }
  .sy-treat { padding: 40px 20px; }
  .sy-hero-lead { font-size: clamp(13px, 3.8vw, 17px); line-height: 1.8; text-align: center; }
  .sy-checklist2-wrap { padding: 4px 16px 0; border-radius: 12px; }
  .sy-checklist2 li { font-size: clamp(12px, 3.6vw, 16px); padding: 8px 0 8px 22px; line-height: 1.35; white-space: normal; }
  .sy-checklist2 li::before { top: 10px; font-size: 12px; left: 0; }
}
@media (max-width: 390px) {
  .sy-solution-title,
  .sy-treat-title,
  .lb-cta-offer-title { font-size: clamp(18px, 5vw, 24px); }
}


/* ============================================================
   [PRICE] 料金について（page-price.php）
============================================================ */
.price-page {
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Noto Sans JP","Meiryo",sans-serif;
  color: var(--text);
}

/* ヒーロー */
.price-hero {
  background:
    linear-gradient(135deg, rgba(27,58,107,.72) 0%, rgba(22,46,86,.78) 100%),
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg')
    center 60% / cover no-repeat;
  padding: 64px 20px 72px; text-align: center; overflow: hidden;
}
.price-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .25em; color: rgba(255,255,255,.6); display: block; margin-bottom: 14px; }
.price-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 16px; }
.price-hero-lead { font-size: 17px; line-height: 2; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; }

/* 共通見出し */
.price-section-heading { text-align: center; margin-bottom: 48px; }
.price-section-heading h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; color: var(--navy-dark); margin: 10px 0 8px; }
.price-section-heading h2 span { font-size: .65em; font-weight: 600; color: var(--muted); }
.price-section-sub { font-size: 14px; color: var(--muted); margin: 0; }

/* 通常料金 */
.price-regular { background: var(--bg); padding: 72px 20px; }
.price-regular-inner { max-width: 760px; margin: 0 auto; }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.price-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(39,74,134,.08); }
.price-card-head { background: var(--navy); padding: 18px 24px; display: flex; align-items: baseline; gap: 10px; }
.price-card-label { font-size: 17px; font-weight: 800; color: #fff; }
.price-card-sub { font-size: 12px; color: rgba(255,255,255,.6); }
.price-card-body { padding: 8px 0; }
.price-card-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid var(--line); }
.price-card-row:last-child { border-bottom: none; }
.price-card-name { font-size: 15px; font-weight: 600; color: var(--text); }
.price-card-amount { font-size: 22px; font-weight: 800; color: var(--navy-dark); }
.price-card-amount small { font-size: 13px; font-weight: 600; }
.price-card-row--block { flex-direction: column; align-items: flex-start; gap: 4px; }
.price-card-row-top { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.price-card-note { font-size: 12px; color: var(--muted); margin: 0; }

/* 集中改善プログラム */
.price-package { background: #fff; padding: 72px 20px; }
.price-package-inner { max-width: 760px; margin: 0 auto; }
.price-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.price-plan { border-radius: 16px; overflow: hidden; border: 2px solid var(--line); box-shadow: 0 4px 16px rgba(39,74,134,.06); }
.price-plan--featured { border-color: var(--navy); box-shadow: 0 8px 28px rgba(39,74,134,.15); }
.price-plan-head { background: var(--bg); padding: 20px 24px; border-bottom: 1px solid var(--line); }
.price-plan--featured .price-plan-head { background: var(--navy); }
.price-plan-discount { display: inline-block; background: #e07820; color: #fff; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px; margin-bottom: 8px; }
.price-plan-head h3 { font-size: 18px; font-weight: 800; color: var(--navy-dark); margin: 0 0 8px; }
.price-plan--featured .price-plan-head h3 { color: #fff; }
.price-plan-benefit { font-size: 13px; color: var(--muted); margin: 0; display: flex; align-items: center; gap: 6px; }
.price-plan--featured .price-plan-benefit { color: rgba(255,255,255,.7); }
.price-plan-benefit .fa-circle-check { color: var(--red); }
.price-plan--featured .price-plan-benefit .fa-circle-check { color: #4ade80; }
.price-plan-body { padding: 8px 0; }
.price-plan-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid var(--line); }
.price-plan-row:last-child { border-bottom: none; }
.price-plan-dur { font-size: 14px; font-weight: 600; color: var(--muted); }
.price-plan-prices { display: flex; align-items: baseline; gap: 10px; }
.price-plan-from { font-size: 13px; color: rgba(0,0,0,.3); text-decoration: line-through; }
.price-plan-to { font-size: 22px; font-weight: 800; color: var(--navy-dark); }
.price-plan-to small { font-size: 13px; font-weight: 600; }
.price-footnote { font-size: 13px; color: var(--muted); line-height: 2; text-align: center; }

/* ギャラリー */
.price-gallery { background: #fff; padding: 28px 20px 56px; }
.price-gallery-inner { max-width: 960px; margin: 0 auto; }
.price-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-gallery-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.price-gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .35s; }
.price-gallery-item:hover img { transform: scale(1.04); }
.price-gallery-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(22,46,86,.75)); color: #fff; font-size: 13px; font-weight: 700; padding: 24px 14px 12px; text-align: center; }

/* FAQリンク */
.price-faq-link { background: var(--bg); padding: 32px 20px; }
.price-faq-link-inner { max-width: 760px; margin: 0 auto; background: #fff; border-radius: 12px; padding: 20px 28px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); }
.price-faq-link-inner .fa-circle-question { font-size: 24px; color: var(--navy); flex-shrink: 0; }
.price-faq-link-inner p { font-size: 15px; color: var(--text); margin: 0; }
.price-faq-link-inner a { color: var(--navy); font-weight: 700; text-decoration: underline; }

/* レスポンシブ */
@media (max-width: 560px) {
  .price-cards { grid-template-columns: 1fr; }
  .price-plans { grid-template-columns: 1fr; }
  .price-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .price-gallery-item:first-child { grid-column: 1 / -1; }
  .price-gallery-label { font-size: 12px; padding: 6px 10px; }
}
@media (max-width: 768px) {
  .price-regular { padding: 40px 20px; }
  .price-package { padding: 40px 20px; }
  .price-hero-lead { font-size: clamp(13px, 3.8vw, 17px); line-height: 1.8; text-align: center; }
}


/* ============================================================
   [FAQ] よくある質問（page-faq.php）
============================================================ */
.faq-page {
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Noto Sans JP","Meiryo",sans-serif;
  color: var(--text);
}

/* ヒーロー */
.faq-hero {
  background:
    linear-gradient(135deg, rgba(27,58,107,.72) 0%, rgba(22,46,86,.78) 100%),
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg')
    center center / cover no-repeat;
  padding: 64px 20px 72px;
  text-align: center; overflow: hidden;
}
.faq-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; margin-bottom: 14px; }
.faq-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 16px; }
.faq-hero-lead { font-size: 17px; line-height: 2; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; }

/* メイン */
.faq-main { background: var(--bg); padding: 72px 20px 80px; }
.faq-inner { max-width: 800px; margin: 0 auto; }

/* カテゴリ見出し */
.faq-category { display: flex; align-items: center; gap: 14px; margin: 56px 0 28px; }
.faq-category:first-child { margin-top: 0; }
.faq-category-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.faq-category-icon svg { width: 20px; height: 20px; fill: #fff; }
.faq-category h2 { font-size: clamp(18px, 2.8vw, 22px); font-weight: 800; color: var(--navy-dark); margin: 0; border-bottom: 2px solid var(--navy); padding-bottom: 6px; flex: 1; }

/* FAQアイテム */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 12px; border: 1px solid var(--line); overflow: hidden; box-shadow: 0 2px 8px rgba(39,74,134,.05); }

/* アコーディオン */
.faq-question { display: flex; align-items: flex-start; gap: 16px; padding: 22px 24px; cursor: pointer; list-style: none; user-select: none; transition: background .15s; }
.faq-question:hover { background: #f8fafd; }
.faq-item[open] .faq-question { background: #f0f4fb; }
.faq-q-icon { width: 28px; height: 28px; flex-shrink: 0; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: #fff; margin-top: 1px; }
.faq-q-text { font-size: 17px; font-weight: 700; color: var(--navy-dark); line-height: 1.55; flex: 1; }
.faq-q-arrow { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; transition: transform .25s; color: var(--navy); }
.faq-item[open] .faq-q-arrow { transform: rotate(180deg); }

/* 回答 */
.faq-answer { padding: 0 24px 24px; font-size: 16px; line-height: 2; color: var(--text); border-top: 1px solid var(--line); }
.faq-answer p { margin: 16px 0 0; display: flex; align-items: flex-start; gap: 10px; }
.faq-a-icon { display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; flex-shrink: 0; background: #e8eef7; border-radius: 50%; font-size: 13px; font-weight: 900; color: var(--navy); margin-top: 3px; }

/* summaryデフォルトマーカー削除 */
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ""; }

/* レスポンシブ */
@media (max-width: 560px) {
  .faq-question { padding: 18px; gap: 12px; }
  .faq-answer { padding: 0 18px 20px; }
  .faq-q-text { font-size: 16px; }
}


/* ============================================================
   [ACCESS] アクセス（page-access.php）
============================================================ */
.ac-page {
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Noto Sans JP","Meiryo",sans-serif;
  color: var(--text);
}

/* ヒーロー */
.ac-hero {
  background:
    linear-gradient(135deg, rgba(27,58,107,.72) 0%, rgba(22,46,86,.78) 100%),
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg')
    center 60% / cover no-repeat;
  padding: 64px 20px 72px; text-align: center;
}
.ac-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .25em; color: rgba(255,255,255,.6); display: block; margin-bottom: 14px; }
.ac-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 16px; }
.ac-hero-lead { font-size: 16px; line-height: 2; color: rgba(255,255,255,.85); margin: 0; }

/* 共通 */
.ac-section-inner { max-width: 960px; margin: 0 auto; padding: 72px 20px; }
.ac-section-heading { text-align: center; margin-bottom: 48px; }
.ac-section-heading h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 800; color: var(--navy-dark); margin: 10px 0 0; }

/* 院情報 */
.ac-info { background: var(--bg); }
.ac-info-inner { max-width: 960px; margin: 0 auto; padding: 72px 20px; }
.ac-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.ac-info-table-wrap { overflow: hidden; }
.ac-info-table { width: 100%; border-collapse: collapse; }
.ac-info-table th,
.ac-info-table td { padding: 16px 20px; font-size: 15px; line-height: 1.7; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
.ac-info-table tr:last-child th,
.ac-info-table tr:last-child td { border-bottom: none; }
.ac-info-table th { width: 100px; font-weight: 700; color: var(--navy); white-space: nowrap; background: rgba(39,74,134,.04); }
.ac-info-table td a { color: var(--navy); font-weight: 700; }

/* 診療時間 */
.ac-hours-wrap { display: flex; flex-direction: column; gap: 20px; }
.ac-hours-title { font-size: 18px; font-weight: 800; color: var(--navy-dark); margin: 0 0 4px; }
.ac-hours-img { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(39,74,134,.1); }
.ac-hours-img img { width: 100%; display: block; }
.ac-hours-note { display: flex; gap: 12px; align-items: flex-start; background: rgba(39,74,134,.06); border-radius: 12px; padding: 16px 20px; border-left: 4px solid var(--navy); }
.ac-hours-note .fa-circle-info { color: var(--navy); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.ac-hours-note p { font-size: 14px; line-height: 1.9; color: var(--text); margin: 0; }

/* QRカード */
.ac-qr-wrap { margin-top: 48px; background: var(--navy-dark); border-radius: 20px; padding: 32px 28px; }
.ac-qr-note { text-align: center; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.75); margin: 0 0 20px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.ac-qr-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ac-qr-card { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 20px 20px 20px 24px; text-decoration: none; gap: 16px; transition: background .2s; }
.ac-qr-card:hover { background: rgba(255,255,255,.17); }
.ac-qr-card-title { font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 4px; line-height: 1.4; }
.ac-qr-card-sub { font-size: 13px; color: rgba(255,255,255,.6); margin: 0 0 14px; }
.ac-qr-card-btn { display: inline-flex; align-items: center; gap: 6px; background: #e07820; color: #fff; font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: 999px; }
.ac-qr-card-img { width: 90px; height: 90px; flex-shrink: 0; background: #fff; border-radius: 10px; overflow: hidden; padding: 6px; }
.ac-qr-card-img img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* パノラマビュー */
.ac-panorama { background: #fff; }
.ac-panorama-copy { text-align: center; margin-bottom: 36px; }
.ac-panorama-360icon { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--navy); letter-spacing: .05em; margin: 0 0 8px; line-height: 1; font-family: 'Lato', sans-serif; }
.ac-panorama-copy h2 { font-size: clamp(18px, 2.8vw, 26px); font-weight: 700; color: var(--navy-dark); line-height: 1.6; margin: 0; }
.ac-panorama-embed { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(39,74,134,.1); }
.ac-panorama-embed iframe { display: block; }
.ac-panorama-link { text-align: center; margin-top: 16px; }
.ac-panorama-link a { font-size: 15px; font-weight: 700; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.ac-panorama-link a:hover { opacity: .75; }

/* 地図 */
.ac-map { background: var(--bg); }
.ac-map-embed { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(39,74,134,.1); margin-bottom: 20px; }
.ac-map-embed iframe { display: block; }
.ac-map-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; padding: 12px 28px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; transition: opacity .2s; }
.ac-map-btn:hover { opacity: .85; color: #fff; }
.ac-section-inner:has(.ac-map-btn) { display: flex; flex-direction: column; align-items: center; }
.ac-section-inner:has(.ac-map-btn) .ac-section-heading,
.ac-section-inner:has(.ac-map-btn) .ac-map-embed { width: 100%; }

/* 道順ガイド */
.ac-guide { background: #fff; }
.ac-guide-sub { font-size: 15px; color: var(--muted); margin: 8px 0 0; }
.ac-guide-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ac-guide-step { background: var(--bg); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(39,74,134,.07); }
.ac-guide-step--last { grid-column: 1 / -1; max-width: 460px; margin: 0 auto; }
.ac-guide-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ac-guide-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.ac-guide-step:hover .ac-guide-photo img { transform: scale(1.04); }
.ac-guide-num { position: absolute; top: 0; left: 0; background: var(--navy); color: #fff; font-size: 18px; font-weight: 900; font-family: 'Lato', sans-serif; letter-spacing: .05em; padding: 8px 16px 10px 14px; clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); min-width: 64px; text-align: left; line-height: 1; }
.ac-guide-num--arrived { background: var(--red); font-size: 14px; clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); min-width: 72px; }
.ac-guide-body { padding: 18px 20px; }
.ac-guide-body p { font-size: 15px; line-height: 1.9; color: var(--text); margin: 0; }

/* ギャラリー3枚 */
.ac-gallery { background: var(--bg); padding: 0; }
.ac-gallery-inner { max-width: 960px; margin: 0 auto; padding: 0 20px 48px; }
.ac-gallery-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ac-gallery-3-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 4px 14px rgba(39,74,134,.1); }
.ac-gallery-3-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .35s; }
.ac-gallery-3-item:hover img { transform: scale(1.04); }

/* レスポンシブ */
@media (max-width: 720px) { .ac-info-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .ac-qr-cards { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .ac-guide-steps { grid-template-columns: 1fr; }
  .ac-guide-step--last { max-width: 100%; }
}
@media (max-width: 768px) {
  .ac-hero-lead { font-size: clamp(13px, 3.8vw, 17px); line-height: 1.8; text-align: center; }
}


/* ============================================================
   [BLOG] ブログ一覧（page-blog.php）
============================================================ */
.blog-page {
  font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","YuGothic","Noto Sans JP","Meiryo",sans-serif;
  color: var(--text);
}

/* ヒーロー */
.blog-hero {
  background:
    linear-gradient(135deg, rgba(27,58,107,.72) 0%, rgba(22,46,86,.78) 100%),
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg')
    center 60% / cover no-repeat;
  padding: 64px 20px 72px; text-align: center; overflow: hidden;
}
.blog-hero-inner { max-width: 700px; margin: 0 auto; }
.blog-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; margin-bottom: 14px; }
.blog-hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; color: #fff; line-height: 1.2; margin: 0 0 16px; }
.blog-hero-lead { font-size: 17px; line-height: 2; color: rgba(255,255,255,.85); margin: 0; }

/* カテゴリータブ */
.blog-tabs-wrap { background: var(--bg); border-bottom: 1px solid var(--line); }
.blog-tabs-inner { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.blog-tabs { display: flex; gap: 0; overflow-x: auto; }
.blog-tab { display: block; padding: 16px 24px; font-size: 14px; font-weight: 700; color: var(--muted); text-decoration: none; border-bottom: 3px solid transparent; white-space: nowrap; transition: color .2s, border-color .2s; }
.blog-tab:hover { color: var(--navy); }
.blog-tab--active { color: var(--navy); border-bottom-color: var(--navy); }

/* メイン */
.blog-main { background: #fff; padding: 64px 20px 80px; }
.blog-main-inner { max-width: 960px; margin: 0 auto; }

/* グリッド */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 56px; }
@media (max-width: 760px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .blog-grid { grid-template-columns: 1fr; } }

/* カード */
.blog-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 3px 16px rgba(39,74,134,.08); transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(39,74,134,.14); }
.blog-card-link { text-decoration: none; display: block; }
.blog-card-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg); }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }
.blog-card-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-card-thumb-placeholder svg { width: 48px; height: 48px; opacity: .4; }
.blog-card-cat { position: absolute; top: 10px; left: 10px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.blog-card-body { padding: 18px 20px 22px; }
.blog-card-date { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.blog-card-title { font-size: 15px; font-weight: 800; color: var(--navy-dark); line-height: 1.5; margin: 0 0 10px; }
.blog-card-excerpt { font-size: 13px; line-height: 1.8; color: var(--muted); margin: 0 0 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-more { font-size: 13px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 6px; }

/* ページネーション */
.blog-pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: var(--bg); color: var(--text); text-decoration: none; font-size: 14px; font-weight: 700; transition: background .2s, color .2s; }
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current { background: var(--navy); color: #fff; }

/* 空状態 */
.blog-empty { text-align: center; padding: 64px 0; color: var(--muted); }
.blog-empty i { font-size: 48px; opacity: .3; display: block; margin-bottom: 16px; }
.blog-empty p { font-size: 16px; }


/* ============================================================
   [SINGLE] 記事詳細ページ — functions.phpフック用
============================================================ */

/* ヒーロー（wp_head フックで出力） */
.single-hero {
  background:
    linear-gradient(135deg, rgba(27,58,107,.72) 0%, rgba(22,46,86,.78) 100%),
    url('https://lifebase-shinkoiwa.com/wp-content/uploads/2026/03/DSC00084-scaled.jpg')
    center 60% / cover no-repeat;
  padding: 56px 20px 64px;
  text-align: center;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
.single-hero-inner { max-width: 700px; margin: 0 auto; }
.single-hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  display: block; margin-bottom: 14px;
}
.single-hero h1 {
  font-size: clamp(24px, 4vw, 36px); font-weight: 800;
  color: #fff; line-height: 1.2; margin: 0;
}

/* 監修者ボックス（the_content フィルタで出力） */
.post-supervisor {
  margin: 48px 0 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 32px;
}
.post-supervisor-label {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  color: var(--red); margin: 0 0 16px; text-transform: uppercase;
}
.post-supervisor-profile { display: flex; gap: 20px; align-items: flex-start; }
.post-supervisor-photo {
  width: 120px; height: 120px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 4px 12px rgba(39,74,134,.15);
}
.post-supervisor-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}
.post-supervisor-name-en {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  color: var(--muted); margin: 0 0 4px;
}
.post-supervisor-name {
  font-size: 20px; font-weight: 900; color: var(--navy-dark);
  letter-spacing: .05em; margin: 0 0 10px;
}
.post-supervisor-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.post-supervisor-tags span {
  font-size: 11px; font-weight: 700; color: var(--navy);
  background: rgba(39,74,134,.1); padding: 3px 10px; border-radius: 4px;
}
.post-supervisor-bio {
  font-size: 14px; line-height: 1.9; color: var(--text); margin: 16px 0 0;
}

/* 記事詳細ページ：Lightningデフォルトの下層ティーザーを非表示 */
.single-post .page-header,
.single .page-header {
  display: none !important;
}

/* 記事詳細：前後記事ナビの黒帯をサイトカラーに変更 */
.entry-nav .vk-post-list-item__title-container,
.entry-nav .card-img-overlay,
.entry-nav .vk_post_title_container {
  background: rgba(27, 58, 107, 0.75) !important;
}

/* 記事詳細：前後記事ナビの黒帯をネイビーに */
.vk_posts.next-prev .vk_post_body.card-body {
  background-color: rgba(27, 58, 107, 0.75) !important;
}

/* サイドバー最近の投稿：写真に重なるカテゴリーラベルを非表示 */
.vk_post_imgOuter_singleTermLabel {
  display: none !important;
}


/* ============================================================
   CTA オファーブロック — 価格表示リニューアル
============================================================ */

/* 通常料金の内訳ブロック */
.lb-cta-offer-original-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.lb-cta-offer-original-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.lb-cta-offer-original-breakdown {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.lb-cta-offer-original-item {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 3px 9px;
  white-space: nowrap;
}
.lb-cta-offer-original-plus,
.lb-cta-offer-original-eq {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.lb-cta-offer-original-total s {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-decoration: line-through;
  text-decoration-color: #f87171;
  text-decoration-thickness: 2px;
}
.lb-cta-offer-arrow {
  font-size: 20px;
  color: rgba(255,255,255,.6);
  line-height: 1;
}
/* 2回目以降バッジ */
.lb-cta-offer-repeat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.lb-cta-offer-repeat .fa-rotate-right {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  flex-shrink: 0;
}
.lb-cta-offer-repeat strong {
  color: #fff;
  font-weight: 700;
}
/* 旧 .lb-cta-offer-price-row は使わなくなるので非表示 */
.lb-cta-offer-price-row { display: none; }

/* ============================================================
   料金ページ — お支払い方法セクション
============================================================ */
.price-payment {
  background: var(--bg);
  padding: 56px 20px;
}
.price-payment-inner {
  max-width: 760px;
  margin: 0 auto;
}
.price-payment-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.price-payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  min-width: 160px;
  box-shadow: 0 2px 10px rgba(39,74,134,.06);
  transition: transform .2s, box-shadow .2s;
}
.price-payment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39,74,134,.1);
}
.price-payment-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--navy);
  height: 48px;
  text-align: center;
}
.price-payment-icon .fa-money-bill-wave,
.price-payment-icon .fa-credit-card {
  display: block;
  margin: 0 auto;
  width: 1em;
  text-align: center;
  position: relative;
  left: 1px;
}
.price-payment-icon .fa-credit-card {
  top: 8px;
}
.price-payment-icon--paypay {
  font-size: unset;
}
.price-payment-icon--paypay img {
  width: 80px;
  height: auto;
  display: block;
}
.price-payment-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
}
.price-payment-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: -4px;
}
@media (max-width: 560px) {
  .price-payment-methods { gap: 12px; }
  .price-payment-card {
    min-width: calc(50% - 6px);
    flex: 1 1 calc(50% - 6px);
    padding: 22px 16px;
  }
}


/* ============================================================
   料金ページ — 回数券 1回あたり単価
============================================================ */
.price-plan-prices-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.price-plan-per {
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  margin: 0;
  padding-right: 2px;
}

/* ============================================================
   アクセスページ — 駐車場・駐輪場ブロック
============================================================ */


/* ============================================================
   アクセスページ — 駐車場・駐輪場ブロック
============================================================ */
.ac-transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.ac-transport-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafd;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.ac-transport-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  padding-left: 1px; /* Font Awesome光学補正 */
}
.ac-transport-icon .fa-square-parking,
.ac-transport-icon .fa-bicycle {
  padding-left: 6px;
}
.ac-transport-icon .fa-bicycle {
  padding-left: 2px;
}
.ac-transport-body { flex: 1; min-width: 0; }
.ac-transport-title { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin: 0 0 4px; }
.ac-transport-desc { font-size: 12px; color: var(--muted); margin: 0 0 8px; }
.ac-parking-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.ac-parking-list li a { display: inline-flex; align-items: center; gap: 5px; color: var(--navy); font-weight: 600; font-size: 12px; text-decoration: none; }
.ac-parking-list li a span { text-decoration: underline; text-underline-offset: 2px; }
.ac-parking-list li a:hover { opacity: .75; }
.ac-parking-list .fa-location-dot { font-size: 12px; color: var(--red); flex-shrink: 0; text-decoration: none; }
@media (max-width: 600px) {
  .ac-transport-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   院長紹介 — 認定理学療法士の希少性ブロック
============================================================ */
.license-rarity {
  margin-top: 32px;
  background: linear-gradient(135deg, #f0f4fb 0%, #e8eef7 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
}
.license-rarity-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.license-rarity-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.license-rarity-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}
.license-rarity-num small {
  font-size: 24px;
}
.license-rarity-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
  letter-spacing: .05em;
}
.license-rarity-divider {
  width: 1px;
  height: 60px;
  background: var(--line);
  flex-shrink: 0;
}
.license-rarity-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 6px;
}
.license-rarity-text p:last-child { margin: 0; }
@media (max-width: 560px) {
  .license-rarity { padding: 20px; }
  .license-rarity-divider { width: 100%; height: 1px; }
  .license-rarity-inner { gap: 16px; }
}

/* ============================================================
   why-section — 整形外科勤務バッジ
============================================================ */
.ws-row-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  padding: 6px 14px;
  margin: 4px 0 12px;
}
.ws-row-badge .fa-hospital {
  font-size: 13px;
  opacity: .85;
}

/* ============================================================
   CTA — 現役整形外科勤務バッジ
============================================================ */
.lb-cta-offer-trust {
  margin: 8px 0 4px;
}
.lb-cta-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f0f4fb;
  border: 1px solid var(--line);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  padding: 6px 12px;
}
.lb-cta-trust-badge .fa-hospital {
  color: var(--navy);
  font-size: 13px;
}

/* ============================================================
   TOPページ — スマホ用3つの○バッジ テキストスタイル
============================================================ */
@media (min-width: 769px) {
  .top-hero-badge-sp { display: none; }
}
@media (max-width: 768px) {
  .top-hero-badge-sp-main {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.3;
    margin: 0;
  }
  .top-hero-badge-sp-main strong {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
  }
  .top-hero-badge-sp-main small {
    font-size: 11px;
    font-weight: 700;
  }
  .top-hero-badge-sp-main--lg {
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
  }
  .top-hero-badge-sp-line {
    width: 24px;
    height: 1px;
    background: var(--navy);
    opacity: .3;
    flex-shrink: 0;
  }
  .top-hero-badge-sp-sub {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
  }
}


