/*
Theme Name: 品川接骨院グループ
Theme URI: https://sinagawa-sekkotsu.com
Author: 品川接骨院グループ
Description: 品川接骨院グループ公式WordPressテーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: sinagawa
*/



/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --tiffany: #0EA9BE;
  --tiffany-light: #7ECFDC;
  --tiffany-pale: #DFF4F7;
  --tiffany-bg: #EFF9FB;
  --gold: #C4A35A;
  --gold-light: #D4B76A;
  --rose: #C4787A;
  --orange: #F07C1E;
  --orange-light: #FF9A3D;
  --orange-dark: #D96A10;
  --dark: #1a2332;
  --gray: #3a4754;
  --blue: #4A8DC4;
  --font-sans: 'Roboto', 'Noto Sans JP', sans-serif;
  --font-serif: 'Roboto', 'Noto Serif JP', serif;
  --font-en: 'Roboto', sans-serif;

  /* メガメニュー画像エリア背景 */
  --megamenu-thumb-bg: #e9fffd;

  /* 料金セクション専用カラー */
  --price-accident-bg:       #FFF8F0;
  --price-accident-border:   #F0DCC8;
  --price-insurance-bg:      #F0F8FF;
  --price-insurance-border:  #C8DEF0;
  --price-note-bg:           #FFF0E0;
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

p, ul, ol, li, table, dl, dt, dd {
  font-size: 1.6rem;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container,
  .container--narrow {
    padding: 0 16px;
  }
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 4px 16px rgba(14,169,190,0.18);
  transition: box-shadow 0.3s;
}

/* スクロール時の縮小スタイル */
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(14,169,190,0.24);
}
.site-header.is-scrolled .header-top {
  height: 56px;
}
.site-header.is-scrolled .header-logo img {
  height: 32px;
}
.site-header.is-scrolled .header-logo-text {
  font-size: 1.6rem;
}
/* スクロール時 — CTAボタン縮小 */
.site-header.is-scrolled .btn-accident,
.site-header.is-scrolled .btn-clinic-list,
.site-header.is-scrolled .btn-recruit {
  padding: 6px 16px;
  font-size: 1.2rem;
}
/* スクロール時 — ナビゲーション縮小 */
.site-header.is-scrolled .nav-list {
  padding: 6px 0;
}
.site-header.is-scrolled .nav-list a {
  font-size: 1.3rem;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s;
}

.header-logo-text {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  transition: font-size 0.3s;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-accident {
  padding: 10px 24px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-light));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(10,186,181,0.35);
  transition: padding 0.3s, font-size 0.3s, box-shadow 0.2s, transform 0.2s;
}
.btn-accident:hover {
  box-shadow: 0 6px 24px rgba(10,186,181,0.45);
  transform: translateY(-2px);
}

.btn-clinic-list {
  padding: 10px 24px;
  border-radius: 9999px;
  border: 2px solid var(--tiffany);
  color: var(--tiffany);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: padding 0.3s, font-size 0.3s, background 0.2s;
}
.btn-clinic-list:hover {
  background: var(--tiffany-pale);
}

.btn-recruit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 9999px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: padding 0.3s, font-size 0.3s, background 0.2s, color 0.2s;
}
.btn-recruit:hover {
  background: var(--gold);
  color: #fff;
}
.btn-recruit .icon-external {
  flex-shrink: 0;
  opacity: 0.9;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.header-nav {
  position: relative;
  border-top: 1px solid rgba(10,186,181,0.1);
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 0;
  transition: padding 0.3s;
}

.nav-list a {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--tiffany);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.nav-list a:hover {
  color: var(--tiffany);
}
.nav-list a:hover::after {
  transform: scaleX(1);
}

/* メガメニュー */
.nav-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 2px solid var(--tiffany);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
}
.nav-has-megamenu:hover .nav-megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.megamenu-inner {
  display: flex;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0 20px;
}
.megamenu-shop {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--tiffany-light);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.megamenu-shop::after {
  display: none;
}
.megamenu-shop:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(10,186,181,0.18);
  border-color: var(--tiffany);
  color: var(--tiffany);
}
.megamenu-shop__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 63px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background: var(--megamenu-thumb-bg);
}
.megamenu-shop__thumb img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.megamenu-shop:hover .megamenu-shop__thumb img {
  transform: scale(1.05);
}
.megamenu-shop__no-img {
  width: 100%;
  min-height: 63px;
  background: var(--megamenu-thumb-bg);
}
.megamenu-shop__name {
  display: block;
  padding: 8px 6px 4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
  transition: color 0.2s;
}
.megamenu-shop:hover .megamenu-shop__name {
  color: var(--tiffany);
}
.megamenu-shop__access,
.megamenu-shop__tel {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 2px 6px;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.5;
}
.megamenu-shop__access svg,
.megamenu-shop__tel svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--tiffany);
}
.megamenu-all {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tiffany);
  border-top: 1px solid var(--tiffany-pale);
  transition: background 0.15s;
}
.megamenu-all::after {
  display: none;
}
.megamenu-all:hover {
  background: var(--tiffany-pale);
  color: var(--tiffany);
}

/* 症状・お悩み別メガメニュー */
.megamenu-inner--symptom {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 12px 16px;
  align-items: start;
}
.megamenu-symptom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--tiffany-light);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 0;
}
.megamenu-symptom::after {
  display: none;
}
.megamenu-symptom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(10,186,181,0.18);
  border-color: var(--tiffany);
  color: var(--tiffany);
}
.megamenu-symptom__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 63px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background: var(--megamenu-thumb-bg);
  padding: .5rem;
}
.megamenu-symptom__thumb img {
  width: auto;
  height: 63px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}
.megamenu-symptom:hover .megamenu-symptom__thumb img {
  transform: scale(1.05);
}
.megamenu-symptom__no-img {
  width: 100%;
  min-height: 63px;
  background: var(--megamenu-thumb-bg);
}
.megamenu-symptom__name {
  display: block;
  padding: 8px 4px 4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.35;
  transition: color 0.2s;
}
.megamenu-symptom:hover .megamenu-symptom__name {
  color: var(--tiffany);
}

/* ============================================================
   HAMBURGER BUTTON
============================================================ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--tiffany);
}

/* ============================================================
   DRAWER OVERLAY
============================================================ */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* ============================================================
   DRAWER NAVIGATION
============================================================ */
.drawer-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 1001;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}
.drawer-nav.is-open {
  transform: translateX(0);
}

/* ドロワーヘッダー */
.drawer-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--tiffany);
  flex-shrink: 0;
}
.drawer-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}
.drawer-nav__logo img {
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
}
.drawer-nav__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ドロワーリスト */
.drawer-nav__list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  flex: 1;
}
.drawer-nav__item {
  border-bottom: 1px solid rgba(10, 186, 181, 0.1);
}

/* 通常リンク */
.drawer-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.drawer-nav__link:hover,
.drawer-nav__link:focus-visible {
  background: var(--tiffany-pale);
  color: var(--tiffany);
}

/* 親リンク（アコーディオン） */
.drawer-nav__link--parent {
  position: relative;
}
.drawer-nav__chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: var(--gray);
}
.drawer-nav__link--parent[aria-expanded="true"] .drawer-nav__chevron {
  transform: rotate(180deg);
}
.drawer-nav__link--parent[aria-expanded="true"] {
  color: var(--tiffany);
  background: var(--tiffany-pale);
}

/* 子リスト（アコーディオン） */
.drawer-nav__child {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8fffe;
}
.drawer-nav__child.is-open {
  max-height: 600px;
}
.drawer-nav__child-link {
  display: block;
  padding: 10px 20px 10px 36px;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  border-top: 1px solid rgba(10, 186, 181, 0.07);
  transition: background 0.15s, color 0.15s;
}
.drawer-nav__child-link:hover {
  background: var(--tiffany-pale);
  color: var(--tiffany);
}
.drawer-nav__child li:first-child .drawer-nav__child-link {
  border-top: none;
}

/* ドロワーCTAエリア */
.drawer-nav__cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid var(--tiffany-pale);
  flex-shrink: 0;
}
.drawer-nav__cta .btn-accident,
.drawer-nav__cta .btn-recruit {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}
.drawer-nav__cta .btn-accident {
  background: var(--tiffany);
  color: #fff;
}
.drawer-nav__cta .btn-recruit {
  background: var(--gold);
  color: #fff;
}

/* body がメニューオープン中はスクロール禁止 */
body.is-drawer-open {
  overflow: hidden;
}

/* ============================================================
   SECTION HEADER COMPONENT
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--tiffany);
  margin-bottom: 8px;
}

.section-header__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.section-header__line {
  width: 24px;
  height: 1px;
}
.section-header__line--left {
  background: linear-gradient(to right, transparent, var(--tiffany-light));
}
.section-header__line--right {
  background: linear-gradient(to left, transparent, var(--tiffany-light));
}

.section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--dark);
}

.section-header__subtitle {
  font-size: 1.5rem;
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   DIVIDER
============================================================ */
.elegant-divider {
  max-width: 1200px;
  margin: 0 auto;
}
.elegant-divider__line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--tiffany-light), transparent);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  overflow: hidden;  /* peek型の左右はみ出し制御 */
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}

/* スライダーコンテナ — peek型（左右はみ出し） */
.hero-slider {
  position: relative;
  height: 520px;
}

/* トラック：スライドを横並びにする */
.hero-track {
  display: flex;
  align-items: stretch;
  height: 520px;   /* .hero-sliderと同値で明示指定 */
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* 各スライド */
.hero-slide {
  flex: 0 0 84%;           /* 中央スライドの幅（左右に8%ずつ見切れる） */
  width: 84%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 5px;
  opacity: 0.3;
  transform: scale(0.82);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes hero-zoom {
  from { transform: translateZ(0) scale(1); }
  to   { transform: translateZ(0) scale(1.08); }
}

.hero-slide.is-active .hero-slide__img {
  animation: hero-zoom 7s ease-out forwards;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(213 255 254 / 70%) 0%, rgb(255 255 255 / 50%) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-slide.is-active .hero-slide__overlay {
  opacity: 1;
}
.hero-slide__overlay--blue {
  background: linear-gradient(135deg, rgba(74,141,196,0.75) 0%, rgba(26,35,50,0.5) 60%, transparent 100%);
}
.hero-slide__overlay--gold {
  background: linear-gradient(135deg, rgba(196,163,90,0.75) 0%, rgba(26,35,50,0.5) 60%, transparent 100%);
}

/* 地域密着スライド専用オーバーレイ（白） */
.hero-slide__overlay--shina {
  background: linear-gradient(135deg, rgb(255 255 255 / 75%) 0%, rgb(255 255 255 / 50%) 60%, transparent 100%);
}

/* 交通事故スライド専用オーバーレイ */
.hero-slide__overlay--accident {
  background: linear-gradient(105deg, rgba(200,240,238,0.55) 0%, rgba(10,186,181,0.25) 35%, transparent 65%);
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 64px;
  opacity: 0;
  transition: opacity 0.6s ease 0.1s;
}
.hero-slide.is-active .hero-slide__content {
  opacity: 1;
}

.hero-eyebrow {
  color: var(--gray);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 3.5vw, 4.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
  max-width: 500px;
  text-shadow: none;
}

.hero-subtitle {
  color: var(--gray);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 9999px;
  background: var(--tiffany);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(10,186,181,0.3);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.btn-hero-primary:hover {
  background: var(--tiffany-light);
  box-shadow: 0 6px 28px rgba(10,186,181,0.4);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 9999px;
  border: 2px solid var(--tiffany);
  background: #fff;
  color: var(--tiffany);
  font-size: 1.5rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.btn-hero-secondary:hover {
  background: var(--tiffany-pale);
}

/* --------------------------------------------------------
   交通事故スライド 専用スタイル
   -------------------------------------------------------- */
.hero-slide__content--accident {
  justify-content: center;
  padding: 32px 48px;
  align-items: flex-start;
  max-width: 60%;
}
.hero-title--accident {
  color: var(--dark);
  font-size: clamp(2.8rem, 3.5vw, 4.4rem);
  text-shadow: none;
}
.hero-title__accent {
  color: var(--tiffany);
}
.hero-subtitle--accident {
  color: var(--dark);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.85;
}
.hero-subtitle--accident strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tiffany);
}
.hero-accident-points-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  .hero-slide__content--accident {
    max-width: 100%;
    padding: 20px 20px 80px;
  }
  .hero-accident-points-img {
    max-width: 280px;
  }
}

/* スライド3（地域密着） */
.hero-slide__content--shina {
  justify-content: center;
  align-items: flex-start;
  padding: 32px 48px;
}
.hero-shina-txt-img {
  display: block;
  width: 560px;
  max-width: 100%;
  height: auto;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .hero-slide__content--shina {
    padding: 20px 20px 80px;
  }
  .hero-shina-txt-img {
    max-width: 280px;
  }
}

/* 前後ボタン（ティファニー実色で写真上でも判別しやすく） */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tiffany);
  border: none;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-prev:hover,
.hero-next:hover {
  background: var(--tiffany-light);
}
.hero-prev:focus-visible,
.hero-next:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.hero-prev { left: 16px; }
.hero-next { right: 16px; }

/* ドットナビ */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s, background 0.3s;
}
.hero-dot.is-active {
  width: 32px;
  background: var(--tiffany-light);
}

/* ============================================================
   NEWS SECTION
============================================================ */
.news-section {
  background: #fff;
  padding: 80px 0;
}

.news-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.news-heading {
  flex-shrink: 0;
}

.news-heading__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--tiffany);
  margin-bottom: 4px;
}

.news-heading__title {
  font-family: var(--font-sans);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--dark);
}

.news-list {
  flex: 1;
  border-top: 1px solid rgba(10,186,181,0.12);
}

.news-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px;
  margin: 0 -16px;
  border-bottom: 1px solid rgba(10,186,181,0.12);
  border-radius: 8px;
  transition: background 0.2s;
}
.news-item:hover {
  background: var(--tiffany-bg);
}

.news-item__date {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tiffany);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.news-item__text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.news-item:hover .news-item__text {
  color: var(--tiffany);
}

.news-divider {
  max-width: 1200px;
  margin: 64px auto 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--tiffany-light), transparent);
}

/* ============================================================
   CLINICS SECTION
============================================================ */
.clinics-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--tiffany-pale) 0%, #D0EFED 100%);
}

.clinics-tagline {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: -24px;
  margin-bottom: 48px;
}

.clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.clinic-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.08);
  box-shadow: 0 4px 20px rgba(10,186,181,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.clinic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10,186,181,0.15);
}

.clinic-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--tiffany-pale);
}
.clinic-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.clinic-card:hover .clinic-card__photo img {
  transform: scale(1.05);
}

.clinic-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.clinic-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.clinic-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tiffany-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clinic-card__icon svg {
  width: 18px;
  height: 18px;
  color: var(--tiffany);
  stroke: var(--tiffany);
}

.clinic-card__name {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark);
}

.clinic-card__address {
  font-size: 1.3rem;
  color: var(--dark);
  white-space: pre-line;
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}

.clinic-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tiffany);
  transition: gap 0.2s;
  margin-top: auto;
}
.clinic-card:hover .clinic-card__link {
  gap: 8px;
}

/* ============================================================
   SYMPTOMS SECTION
============================================================ */
.symptoms-section {
  background: #fff;
  padding: 96px 0;
}

.symptoms-box {
  background: #39b8c9;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(10,186,181,0.08);
  box-shadow: 0 4px 24px rgba(10,186,181,0.06);
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.symptom-item {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.symptom-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(10,186,181,0.12);
  border-color: rgba(10,186,181,0.15);
}

.symptom-item__img-wrap {
  width: 100%;
  max-width: 110px;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.symptom-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.symptom-item__label {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark);
  text-align: center;
}

@media (max-width: 1024px) {
  .symptoms-grid { gap: 16px; }
}

@media (max-width: 768px) {
  .symptoms-box { padding: 20px; border-radius: 12px; }
  .symptoms-grid { gap: 12px; }
  .symptom-item { padding: 10px; }
  .symptom-item__label { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .symptoms-box { padding: 14px; }
  .symptoms-grid { gap: 10px; }
  .symptom-item { padding: 8px; gap: 4px; }
  .symptom-item__label { font-size: 1.3rem; }
}

/* ============================================================
   FOR WOMEN SECTION
============================================================ */
.women-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.women-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.women-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(224,242,241,0.7));
}

.women-section__inner {
  position: relative;
}

.women-header {
  text-align: center;
  margin-bottom: 48px;
}

.women-header__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--rose);
  margin-bottom: 8px;
}

.women-header__title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.women-header__title span {
  font-size: clamp(2rem, 2.5vw, 3.2rem);
}

.women-header__desc {
  font-size: 1.4rem;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto;
}

.women-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.women-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196,120,122,0.1);
  box-shadow: 0 4px 20px rgba(196,120,122,0.06);
}

.women-card__img {
  height: 200px;
  overflow: hidden;
}
.women-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.women-card__body {
  padding: 24px;
}

.women-card__title {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.women-card__desc {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.8;
}

/* ============================================================
   OCCUPATION SECTION
============================================================ */
.occupation-section {
  padding: 96px 0;
  background: var(--tiffany-bg);
}

.occupation-header {
  text-align: center;
  margin-bottom: 48px;
}

.occupation-header__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--tiffany);
  margin-bottom: 8px;
}

.occupation-header__title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.occupation-header__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.occupation-header__desc {
  font-size: 1.4rem;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto;
}

.occupation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.occupation-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.08);
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.occupation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10,186,181,0.12);
}

.occupation-card__img {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.occupation-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.occupation-card__body {
  padding: 20px;
  text-align: center;
}

.occupation-card__title {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.btn-detail {
  display: inline-block;
  width: 100%;
  padding: 10px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-light));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  transition: box-shadow 0.2s;
}
.btn-detail:hover {
  box-shadow: 0 6px 20px rgba(10,186,181,0.35);
}

/* ============================================================
   MORPHO SECTION
============================================================ */
.morpho-section {
  background: #fff;
  padding: 96px 0;
}

.morpho-intro {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.morpho-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(10,186,181,0.12);
}

.morpho-intro__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 4px solid var(--tiffany);
}

.morpho-intro__text {
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 12px;
}

.morpho-intro__text strong {
  color: var(--tiffany);
  font-weight: 700;
}

.morpho-illust {
  margin-bottom: 48px;
  text-align: center;
}

.morpho-illust img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
}

.morpho-areas {
  background: var(--tiffany-pale);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}

.morpho-areas__intro {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

.morpho-areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.morpho-area-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(10,186,181,0.06);
}

.morpho-area-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  background: var(--tiffany);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.morpho-area-card__symptoms {
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.6;
}

.morpho-text {
  font-size: 1.4rem;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 16px;
}

.morpho-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-morpho {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-light));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(10,186,181,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-morpho:hover {
  box-shadow: 0 6px 28px rgba(10,186,181,0.4);
  transform: translateY(-2px);
}

/* ============================================================
   PRICE SECTION
============================================================ */
.price-section {
  background: #fff;
  padding: 96px 0;
}

/* --- TOPページ用 料金サマリーカード --- */
.price-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.price-insurance-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 18px 28px;
  background: var(--tiffany-bg);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-size: 1.4rem;
  color: var(--dark);
}

.price-insurance-note__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--blue);
  font-weight: 700;
}

.price-insurance-note a {
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price-insurance-note a:hover {
  opacity: 0.7;
}

.price-summary-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(10,186,181,0.12);
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(10,186,181,0.12);
}

.price-summary-card--tiffany { border-top: 4px solid var(--tiffany); }
.price-summary-card--gold    { border-top: 4px solid var(--gold); }
.price-summary-card--blue    { border-top: 4px solid var(--blue); }

.price-summary-card__header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(10,186,181,0.2);
}

.price-summary-card__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 8px;
}

.price-summary-card--tiffany .price-summary-card__label { color: var(--tiffany); }
.price-summary-card--gold    .price-summary-card__label { color: var(--gold); }
.price-summary-card--blue    .price-summary-card__label { color: var(--blue); }

.price-summary-card__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 6px;
}

.price-summary-card__sub {
  font-size: 1.3rem;
  color: var(--gray);
  line-height: 1.5;
}

.price-summary-card__highlight {
  background: var(--tiffany-bg);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.price-summary-card--gold .price-summary-card__highlight,
.price-summary-card__highlight--gold {
  background: rgba(196,163,90,0.08);
  text-align: center;
}

.price-summary-card--blue .price-summary-card__highlight {
  background: rgba(74,141,196,0.08);
}

.price-summary-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.price-summary-card__row-label {
  font-weight: 600;
  color: var(--gray);
}

.price-summary-card__row-amount strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-left: 6px;
}

.price-summary-card__row-amount s {
  font-size: 1.3rem;
  color: var(--gray);
  opacity: 0.7;
}

.price-summary-card__row-note {
  font-size: 1.1rem;
  color: var(--gray);
  text-align: right;
  margin-bottom: 12px;
}

.price-summary-card__zero-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.price-summary-card__zero-amount {
  font-family: var(--font-sans);
  font-size: 5.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.price-summary-card__zero-amount span {
  font-size: 2.4rem;
  font-weight: 700;
  margin-left: 4px;
}

.price-summary-card__zero-note {
  font-size: 1.1rem;
  color: var(--gray);
}

.price-summary-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.price-summary-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 8px;
}

.price-summary-card__list li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tiffany);
  transform: translateY(-50%);
}

.price-summary-card--gold .price-summary-card__list li::before { background: var(--gold); }
.price-summary-card--blue .price-summary-card__list li::before { background: var(--blue); }

.price-summary-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  border-radius: 9999px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.price-summary-card__btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.price-summary-card__btn--tiffany {
  background: var(--tiffany);
  box-shadow: 0 4px 16px rgba(10,186,181,0.3);
}

.price-summary-card__btn--gold {
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(196,163,90,0.3);
}

.price-summary-card__btn--blue {
  background: var(--blue);
  box-shadow: 0 4px 16px rgba(74,141,196,0.3);
}

.price-summary-cta {
  text-align: center;
}

.price-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}


.btn-gold {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 9999px;
  background: var(--gold);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  transition: box-shadow 0.2s;
}
.btn-gold:hover { box-shadow: 0 6px 20px rgba(196,163,90,0.4); }

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  border-radius: 9999px;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  transition: box-shadow 0.2s;
}
.btn-blue:hover { box-shadow: 0 6px 20px rgba(74,141,196,0.4); }

/* ============================================================
   PRICE PAGE（page-price.php）
============================================================ */

/* ---- ページ内ナビ ---- */
.price-page-nav {
  background: #fff;
  border-bottom: 1px solid var(--tiffany-pale);
  position: sticky;
  top: 64px; /* site-header の高さに合わせる */
  z-index: 10;
}

.price-page-nav__list {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-page-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.price-page-nav__link:hover {
  color: var(--tiffany);
  border-bottom-color: var(--tiffany);
}

.price-page-nav__icon {
  display: flex;
  align-items: center;
  color: var(--tiffany-light);
}

/* ---- セクション共通 ---- */
.price-section {
  background: #fff;
  padding: 80px 0;
}

.price-section--alt {
  background: var(--tiffany-bg);
}

/* ---- リード文 ---- */
.price-lead-text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 48px;
  max-width: 800px;
}

/* ---- サブタイトル ---- */
.price-subtitle {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  padding: 0 0 8px 12px;
  border-left: 4px solid var(--tiffany);
  margin: 40px 0 16px;
}

.price-subtitle:first-of-type {
  margin-top: 0;
}

/* ---- テーブル ---- */
.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 8px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(10,186,181,0.08);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.price-table thead tr {
  background: var(--tiffany);
  color: #fff;
}

.price-table th {
  padding: 12px 16px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-align: left;
  white-space: nowrap;
}

.price-table td {
  padding: 16px;
  border-bottom: 1px solid var(--tiffany-pale);
  vertical-align: top;
  line-height: 1.7;
  color: var(--dark);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:nth-child(even) td {
  background: var(--tiffany-bg);
}

.price-table__col--label {
  width: 120px;
}

.price-table__label {
  font-weight: 700;
  color: var(--tiffany);
  white-space: nowrap;
}

.price-table__label--recommend {
  color: var(--gold);
}

.price-table__label--caution {
  color: var(--rose);
}

.price-table__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.price-table__list li {
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 4px;
  color: var(--dark);
}

.price-table__list li::before {
  content: '─';
  position: absolute;
  left: 0;
  color: var(--tiffany-light);
  font-size: 1.1rem;
  top: 3px;
}

.price-table__note {
  font-size: 1.2rem;
  color: var(--tiffany);
  margin-top: 6px;
}

.price-table__recommend-title {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.price-table__zero {
  font-size: 1.8rem;
  color: var(--gold);
}

.price-table__original {
  font-size: 1.3rem;
  color: var(--dark);
  text-decoration: line-through;
  margin-right: 8px;
}

.price-table__special {
  font-size: 1.8rem;
  color: var(--rose);
}

.price-table__special-note {
  display: block;
  font-size: 1.2rem;
  color: var(--dark);
  margin-top: 4px;
}

/* ---- 交通事故 0円バナー ---- */
.price-zero-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 32px;
  color: #fff;
}

.price-zero-banner__label {
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-zero-banner__amount {
  font-family: var(--font-sans);
  font-size: clamp(5.6rem, 12vw, 9.6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.price-zero-banner__amount span {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.price-zero-banner__note {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* ---- 定期コース特典ボックス ---- */
.price-course-note {
  background: var(--tiffany-pale);
  border: 1px solid var(--tiffany-light);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0 0;
}

.price-course-note__heading {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--tiffany);
  margin-bottom: 12px;
}

.price-course-note__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
}

.price-course-note__list li {
  color: var(--dark);
  padding-left: 1.4em;
  position: relative;
}

.price-course-note__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tiffany);
  font-weight: 700;
}

.price-course-note__small {
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.6;
}

/* ---- セクション内CTAボタン ---- */
.price-cta-inline {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.price-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: box-shadow 0.2s, transform 0.2s;
}

.price-cta-btn:hover {
  transform: translateY(-2px);
}

.price-cta-btn--tiffany {
  background: var(--tiffany);
  color: #fff;
  box-shadow: 0 4px 16px rgba(10,186,181,0.25);
}

.price-cta-btn--tiffany:hover {
  box-shadow: 0 8px 24px rgba(10,186,181,0.35);
}

.price-cta-btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,163,90,0.25);
}

.price-cta-btn--gold:hover {
  box-shadow: 0 8px 24px rgba(196,163,90,0.35);
}

.price-cta-btn--outline {
  background: #fff;
  color: var(--tiffany);
  border: 2px solid var(--tiffany);
}

.price-cta-btn--outline:hover {
  background: var(--tiffany-pale);
}

/* ---- 最終CTAバナー ---- */
.price-final-cta {
  background: linear-gradient(135deg, var(--tiffany) 0%, #0B90A3 100%);
  padding: 72px 0;
}

.price-final-cta__inner {
  text-align: center;
  color: #fff;
}

.price-final-cta__heading {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.price-final-cta__sub {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.price-final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 9999px;
  background: #fff;
  color: var(--tiffany);
  font-size: 1.6rem;
  font-weight: 700;
  transition: box-shadow 0.2s, transform 0.2s;
}

.price-final-cta__btn:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* ---- レスポンシブ ---- */
@media (max-width: 767px) {
  .price-page-nav__link {
    padding: 12px 14px;
    font-size: 1.2rem;
    gap: 4px;
  }

  .price-page-nav__icon {
    display: none;
  }

  .price-section {
    padding: 56px 0;
  }

  .price-table__col--label {
    width: 80px;
  }

  .price-course-note__list {
    grid-template-columns: 1fr;
  }

  .price-cta-inline {
    flex-direction: column;
    align-items: center;
  }

  .price-cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .price-zero-banner {
    padding: 24px 16px;
  }
}

/* ============================================================
   ACCIDENT SECTION (front-page用)
============================================================ */
.accident-section {
  background: #fff;
  padding: 96px 0;
}

.accident-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.08);
  box-shadow: 0 4px 24px rgba(10,186,181,0.08);
  min-height: 420px;
}

.accident-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accident-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 55%, rgba(255,255,255,0.2) 100%);
}

.accident-banner__content {
  position: relative;
  z-index: 1;
  padding: 48px 56px;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 420px;
}

.accident-banner__title {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.accident-banner__subtitle {
  color: var(--dark);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.85;
}

.accident-banner__subtitle strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tiffany);
}

.accident-banner__points {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  .accident-banner {
    min-height: 0;
  }
  .accident-banner__overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.95) 40%, rgba(255,255,255,0.95) 100%);
  }
  .accident-banner__content {
    max-width: 100%;
    padding: 24px 20px 28px;
    min-height: 0;
  }
  .accident-banner__points {
    max-width: 280px;
    margin-bottom: 20px;
  }
}

/* ============================================================
   PAGE-ACCIDENT: 交通事故診療ページ
============================================================ */

/* LAYOUT: 2カラム（コンテンツ + サイドナビ） */
.accident-layout {
  background: #fff;
}

.accident-layout__inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 80px;
}

.accident-content {
  min-width: 0; /* グリッド内でのはみ出し防止 */
}

/* SIDE NAV */
.accident-sidenav {
  position: sticky;
  top: 96px; /* ヘッダー高さ分オフセット */
  background: #fff;
  border: 1px solid rgba(10,186,181,0.2);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.accident-sidenav__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.accident-sidenav__item {
  border-bottom: 1px solid rgba(10,186,181,0.12);
}

.accident-sidenav__item:last-child {
  border-bottom: none;
}

.accident-sidenav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.accident-sidenav__link::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--tiffany);
  border-right: 2px solid var(--tiffany);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.accident-sidenav__link:hover {
  color: var(--tiffany);
  padding-left: 12px;
}

.accident-sidenav__link.is-active {
  color: var(--tiffany);
  font-weight: 700;
}

.accident-sidenav__cta {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  padding: 14px 16px;
}

/* SP: サイドナビを非表示、1カラム */
@media (max-width: 1024px) {
  .accident-layout__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .accident-sidenav {
    display: none;
  }
}

/* HERO */
.accident-hero {
  display: block;
  min-height: 320px;
  background: url('assets/images/hiro-accident.png') right center / contain no-repeat;
  overflow: hidden;
}

.accident-hero__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px 48px max(24px, calc((100vw - 1200px) / 2 + 24px));
  max-width: 60%;
}

.accident-hero__label {
  display: block;
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--tiffany);
  margin-bottom: 8px;
}

.accident-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}

.accident-hero__sub {
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  color: var(--dark);
  line-height: 1.9;
  margin: 0 0 24px;
}

.accident-hero__sub strong {
  color: var(--rose);
  font-weight: 700;
  font-size: 120%;
}

.accident-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .accident-hero {
    min-height: 0;
    padding-bottom: 78px;
    background: url('assets/images/hiro-accident.png') center bottom / contain no-repeat;
  }
  .accident-hero__text {
    max-width: none;
    padding: 36px 24px 24px 36px;
  }
}

/* PAGE NAV（SP専用: PC では非表示） */
.accident-pagenav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (min-width: 1025px) {
  .accident-pagenav {
    display: none;
  }
}

.accident-pagenav__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.accident-pagenav__list li a {
  display: block;
  padding: 14px 20px;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.accident-pagenav__list li a:hover {
  color: #fff;
  background: rgba(10,186,181,0.2);
}

@media (max-width: 768px) {
  .accident-pagenav__list {
    overflow-x: auto;
    flex-wrap: nowrap;
    overscroll-behavior-x: contain;
  }
  .accident-pagenav__list li a {
    padding: 12px 14px;
    font-size: 1.2rem;
  }
}

/* SECTION BASE */
.accident-page-section {
  padding: 80px 32px;
}

/* accident-content 内は container のmax-widthをリセット（グリッドカラム幅に従わせる） */
.accident-content .accident-page-section > .container {
  max-width: none;
  padding: 0;
}

@media (max-width: 1024px) {
  .accident-page-section {
    padding: 64px 20px;
  }
}

.accident-page-section--bg {
  background: var(--tiffany-bg);
}

/* ABOUT */
.accident-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.accident-about__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10,186,181,0.12);
}

.accident-about__image img {
  width: 100%;
  height: auto;
  display: block;
}

.accident-about__content p {
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 16px;
}

.accident-about__points {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(10,186,181,0.15);
}

.accident-about__point {
  flex: 1;
  text-align: center;
}

.accident-about__point-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--tiffany);
  line-height: 1;
  margin-bottom: 6px;
}

.accident-about__point-num small {
  font-size: 1.6rem;
}

.accident-about__point-label {
  font-size: 1.2rem;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .accident-about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .accident-about__points {
    gap: 16px;
  }
  .accident-about__point-num {
    font-size: 2.8rem;
  }
}

/* STEPS（事故後の対処法） */
.accident-steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: none;
}

.accident-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px;
}

.accident-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--tiffany), rgba(10,186,181,0.1));
}

.accident-step__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tiffany);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.accident-step__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.accident-step__text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 12px;
}

.accident-step__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accident-step__list li {
  color: var(--gray);
  padding-left: 16px;
  position: relative;
}

.accident-step__list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--tiffany);
}

.accident-step__note {
  list-style: none;
  padding: 16px 20px;
  margin: 12px 0 0;
  background: rgba(10,186,181,0.06);
  border-left: 3px solid var(--tiffany);
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accident-step__note li {
  color: var(--gray);
  line-height: 1.7;
  padding-left: 12px;
  position: relative;
}

.accident-step__note li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--tiffany);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .accident-step {
    gap: 20px;
  }
  .accident-step__num {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .accident-step:not(:last-child)::after {
    left: 21px;
    top: 44px;
  }
  .accident-step__title {
    font-size: 1.6rem;
  }
}

/* MERITS */
.accident-merits {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.accident-merit {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(10,186,181,0.1);
  box-shadow: 0 4px 16px rgba(10,186,181,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.accident-merit:hover {
  box-shadow: 0 8px 32px rgba(10,186,181,0.15);
  transform: translateY(-2px);
}

.accident-merit__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tiffany-pale);
  color: var(--tiffany);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accident-merit__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.accident-merit__body p {
  line-height: 1.8;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .accident-merits {
    grid-template-columns: 1fr;
  }
}

/* DIRECTOR */
.accident-director {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 64px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(10,186,181,0.08);
}

.accident-director__image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--tiffany-light);
}

.accident-director__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accident-director__message {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 12px;
}

.accident-director__message strong {
  color: var(--dark);
}

.accident-director__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tiffany);
  text-align: right;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .accident-director {
    flex-direction: column;
    gap: 24px;
    padding: 28px 20px;
  }
  .accident-director__image {
    width: 80px;
    height: 80px;
  }
}

/* COST */
.accident-cost-highlight {
  background: linear-gradient(135deg, #0ABAB5, #4A8DC4);
  color: #fff;
  border-radius: 16px;
  padding: 40px 48px;
  margin: 48px 0 40px;
  text-align: center;
}

.accident-cost-highlight__text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

.accent-red {
  color: #FFD6D6;
  font-size: 140%;
}

.accident-cost-highlight__note {
  font-size: 1.4rem;
  opacity: 0.9;
  line-height: 1.8;
}

.accident-cost-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.accident-insurance-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.accident-insurance-card {
  background: #fff;
  border: 1px solid rgba(10,186,181,0.12);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(10,186,181,0.06);
}

.accident-insurance-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tiffany);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tiffany-pale);
}

.accident-insurance-card p {
  line-height: 1.8;
  color: var(--gray);
}

.accident-caution {
  background: #fff8f0;
  border: 1px solid #f0dcc8;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 32px 36px;
}

.accident-caution__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.accident-caution p {
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 12px;
}

.accident-caution p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .accident-cost-highlight {
    padding: 28px 20px;
  }
  .accident-insurance-cards {
    grid-template-columns: 1fr;
  }
  .accident-caution {
    padding: 24px 20px;
  }
}

/* TREATMENT FLOW */
.accident-treatment-steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: none;
  position: relative;
}

.accident-treatment-steps::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--tiffany), rgba(10,186,181,0.1));
}

.accident-treatment-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 32px;
  position: relative;
}

.accident-treatment-step__num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--tiffany);
  color: var(--tiffany);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.accident-treatment-step__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  padding-top: 16px;
}

.accident-treatment-step p {
  line-height: 1.8;
  color: var(--gray);
}

@media (max-width: 768px) {
  .accident-treatment-steps::before {
    left: 21px;
  }
  .accident-treatment-step {
    gap: 20px;
  }
  .accident-treatment-step__num {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
  .accident-treatment-step__title {
    font-size: 1.6rem;
    padding-top: 8px;
  }
}

/* FAQ */
.accident-faq-list {
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accident-faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.1);
}

.accident-faq-item__q {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--tiffany-pale);
  padding: 20px 24px 20px 52px;
  position: relative;
  line-height: 1.6;
}

.accident-faq-item__q::before {
  content: 'Q';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tiffany);
}

.accident-faq-item__a {
  padding: 20px 24px 20px 52px;
  background: #fff;
  position: relative;
}

.accident-faq-item__a::before {
  content: 'A';
  position: absolute;
  left: 20px;
  top: 20px;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.accident-faq-item__a p {
  line-height: 1.9;
  color: var(--gray);
  margin: 0;
}

.accident-faq-item__a p strong {
  color: var(--dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .accident-faq-item__q,
  .accident-faq-item__a {
    padding: 16px 16px 16px 44px;
  }
  .accident-faq-item__q::before,
  .accident-faq-item__a::before {
    left: 14px;
    font-size: 1.7rem;
  }
  .accident-faq-item__q {
    font-size: 1.4rem;
  }
}

/* CTA */
.accident-cta-section {
  background: linear-gradient(135deg, #0d2b3e 0%, #0ABAB5 100%);
  padding: 80px 0;
}

.accident-cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.accident-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
}

.accident-cta__text {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 40px;
}

.accident-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .accident-cta-section {
    padding: 56px 0;
  }
}

/* ============================================================
   PROMISES SECTION
============================================================ */
.promises-section {
  background: #fff;
  padding: 96px 0;
}

.promises-header {
  text-align: center;
  margin-bottom: 48px;
}

.promises-header__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--tiffany);
  margin-bottom: 8px;
}

.promises-header__title {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.promises-header__desc {
  font-size: 1.4rem;
  color: var(--dark);
  max-width: 680px;
  margin: 0 auto;
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promise-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 28px;
  padding-top: 40px;
  border: 1px solid rgba(10,186,181,0.12);
  box-shadow: 0 4px 16px rgba(10,186,181,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10,186,181,0.1);
}

.promise-card__num {
  position: absolute;
  top: -20px;
  left: -8px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-light));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10,186,181,0.3);
}

.promise-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.promise-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--tiffany-pale);
  color: var(--tiffany);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promise-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--tiffany);
}

.promise-card__title {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  white-space: pre-line;
}

.promise-card__desc {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.7;
}

/* ============================================================
   BLOG SECTION
============================================================ */
.blog-section {
  padding: 96px 0;
  background: var(--tiffany-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.06);
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10,186,181,0.12);
}

.blog-card__img {
  height: 200px;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 20px;
}

.blog-card__date {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--tiffany);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

.blog-cta {
  text-align: center;
}

.btn-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-light));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(10,186,181,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-blog:hover {
  box-shadow: 0 6px 28px rgba(10,186,181,0.4);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 64px 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 56px;
  width: auto;
}

.footer-logo__text {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 600;
}

.footer-nav {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.footer-nav__list a {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer-nav__list a:hover { color: #fff; }

.footer-sub {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.footer-sub__section {
}

.footer-sub__heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tiffany);
  margin-bottom: 12px;
}

.footer-sub__heading a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-sub__heading a:hover {
  opacity: 0.7;
}

.footer-sub__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-sub__links a {
  font-size: 1.4rem;
  color: #fff;
  transition: opacity 0.2s;
}
.footer-sub__links a:hover { opacity: 0.7; }

/* 法的情報リンク（個人情報・サイトマップ） */
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}

.footer-legal__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal__list a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.footer-legal__list a:hover { color: #fff; }

.footer-copyright {
  padding-top: 20px;
  text-align: center;
}

.footer-copyright p {
  font-size: 1.4rem;
  color: #fff;
}

/* ============================================================
   SINGLE POST
============================================================ */
.post-wrap {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
}

.post-header {
  margin-bottom: 40px;
}

.post-header__date {
  font-size: 1.3rem;
  color: var(--tiffany);
  margin-bottom: 12px;
}

.post-header__title {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
}

.post-thumbnail {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.post-content {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
}

.post-content h2 {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--tiffany);
}

.post-content h3 {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 600;
  margin: 32px 0 12px;
  padding: 8px 12px;
  background: var(--tiffany-pale);
  border-left: 3px solid var(--tiffany);
  border-radius: 0 4px 4px 0;
}

.post-content p { margin-bottom: 16px; }
.post-content ul, .post-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}
.post-content img { border-radius: 8px; margin: 24px 0; }

.post-back {
  margin-top: 60px;
  text-align: center;
}

/* 症例（側弯症）個別ページ
   本文は casetxt（プレーンテキスト）由来のため、
   「年齢／性別／在住」などの定型行が読みやすくなるよう余白を調整する。 */
.case-single__image {
  text-align: center;
  background: var(--tiffany-bg);
}

.case-single__image img {
  max-width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
}

.case-single__body {
  background: var(--tiffany-bg);
  border-radius: 12px;
  padding: 28px 24px;
}

.case-single__body p {
  margin-bottom: 20px;
}

.case-single__body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .case-single__body {
    padding: 36px 32px;
  }
}

/* ============================================================
   SITEMAP（page-sitemap.php）
============================================================ */
.sitemap {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
}

.sitemap__intro { margin-bottom: 40px; }

.sitemap__group { margin-bottom: 48px; }

.sitemap__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  padding-left: 14px;
  border-left: 4px solid var(--tiffany);
  margin-bottom: 20px;
}

.sitemap__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.sitemap__list a {
  display: block;
  padding: 14px 18px;
  background: var(--tiffany-bg);
  border-radius: 8px;
  color: var(--dark);
  font-size: 1.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.sitemap__list a::before {
  content: "›";
  color: var(--tiffany);
  font-weight: 700;
  margin-right: 10px;
}

.sitemap__list a:hover,
.sitemap__list a:focus-visible {
  background: var(--tiffany);
  color: #fff;
}

.sitemap__list a:hover::before,
.sitemap__list a:focus-visible::before { color: #fff; }

/* 子メニューは一段下げる */
.sitemap__list .sub-menu {
  list-style: none;
  margin: 2px 0 2px 24px;
  padding: 0;
  display: grid;
  gap: 2px;
}

@media (min-width: 768px) {
  .sitemap__list { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   各店舗 ご予約・お問い合わせ（page-contact-shop.php）
============================================================ */
.shop-contact-grid {
  list-style: none;
  margin: 60px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.shop-contact-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.06);
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
}

.shop-contact-card__thumb {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--tiffany-bg);
}

.shop-contact-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-contact-card:hover .shop-contact-card__thumb img { transform: scale(1.05); }

.shop-contact-card__noimg {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--tiffany-pale);
}

.shop-contact-card__body { padding: 20px; }

.shop-contact-card__name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.shop-contact-card__name a {
  color: var(--dark);
  text-decoration: none;
}

.shop-contact-card__name a:hover { color: var(--tiffany); }

.shop-contact-card__actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.shop-contact-card__tel {
  display: block;
  padding: 12px;
  background: var(--tiffany-bg);
  border: 1px solid var(--tiffany-light);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.shop-contact-card__tel:hover { background: var(--tiffany-pale); }

.shop-contact-card__tel-label {
  display: block;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 2px;
}

.shop-contact-card__tel-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--tiffany);
  line-height: 1.2;
}

.shop-contact-card__line {
  display: block;
  padding: 13px;
  background: #06C755;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.shop-contact-card__line:hover { opacity: 0.85; }

.shop-contact-empty {
  margin: 60px 0;
  text-align: center;
  color: var(--gray);
}

@media (min-width: 768px) {
  .shop-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .shop-contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   新型コロナウイルス感染症対策（page-corona_measures.php）
============================================================ */
.corona {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.corona__lead {
  text-align: center;
  margin-bottom: 40px;
}

.corona__lead img {
  max-width: 100%;
  height: auto;
}

.corona__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.corona__item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.06);
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
}

.corona__photo { margin: 0; }

.corona__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.corona__body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.corona__icon { flex-shrink: 0; }

.corona__icon img {
  width: 80px;
  height: auto;
}

.corona__text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}

.corona__text strong { color: var(--tiffany); }

.corona__text small {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  color: var(--gray);
}

.corona__note { margin-top: 48px; }

@media (min-width: 768px) {
  .corona__list { grid-template-columns: repeat(2, 1fr); }
  .corona__icon img { width: 100px; }
}

@media (min-width: 1024px) {
  .corona__list { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   ARCHIVE
============================================================ */
.archive-wrap {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.archive-title {
  font-family: var(--font-sans);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 48px;
  text-align: center;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.archive-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.06);
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10,186,181,0.12);
}

.archive-card__img {
  height: 200px;
  overflow: hidden;
}
.archive-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card__body { padding: 20px; }

.archive-card__date {
  font-size: 1.2rem;
  color: var(--tiffany);
  margin-bottom: 8px;
}

.archive-card__title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination .page-numbers li {
  display: block;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  border: 2px solid var(--tiffany);
  color: var(--tiffany);
  transition: background 0.2s, color 0.2s;
}
.pagination a:hover, .pagination span.current {
  background: var(--tiffany);
  color: #fff;
}

/* ============================================================
   PAGE HERO（固定ページ共通）
============================================================ */
/* ============================================================
   PHILOSOPHY HERO（流儀ページ専用）
============================================================ */
.philosophy-hero {
  display: block;
  min-height: 320px;
  background:
    url('assets/images/philosophy/hiro-philosophy.png') right center / contain no-repeat,
    url('assets/images/philosophy/hero-bg.png') center center / cover no-repeat;
  overflow: hidden;
}

.philosophy-hero__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px 48px max(24px, calc((100vw - 1200px) / 2 + 24px));
  max-width: 60%;
  overflow: hidden;
}

/* 葉っぱ装飾（疑似要素で左端に配置） */
.philosophy-hero__leaf {
  position: absolute;
  inset: 0 auto 0 -32px;
  width: 120px;
  background:
    radial-gradient(ellipse 28px 80px at 30% 25%, #b8e0c8 0%, transparent 100%),
    radial-gradient(ellipse 24px 70px at 50% 60%, #a8d8b8 0%, transparent 100%),
    radial-gradient(ellipse 20px 56px at 20% 75%, #c8e8d0 0%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}

.philosophy-hero__small {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  color: var(--dark);
  margin: 0 0 4px;
  letter-spacing: 0.05em;
}

.philosophy-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 6vw, 6.4rem);
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 8px;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.philosophy-hero__en {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  color: var(--tiffany);
  letter-spacing: 0.12em;
  margin: 0 0 20px;
}

.philosophy-hero__sub {
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  color: var(--gray);
  line-height: 1.9;
  margin: 0;
}

.philosophy-hero__image {
  position: relative;
  overflow: hidden;
}

.philosophy-hero__image img {
  width: 500px;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: auto;
}

@media (max-width: 768px) {
  .philosophy-hero {
    min-height: 0;
    padding-bottom: 78px;
    background:
      url('assets/images/philosophy/hiro-philosophy.png') center bottom / contain no-repeat,
      url('assets/images/philosophy/hero-bg.png') center center / cover no-repeat;
  }

  .philosophy-hero__text {
    max-width: none;
    padding: 36px 24px 24px 36px;
  }
}

/* ============================================================
   ABOUT HERO（はじめての方へページ専用）
============================================================ */
.about-hero {
  display: block;
  min-height: 320px;
  background:
    url('assets/images/about/hero.png') right center / contain no-repeat,
    url('assets/images/philosophy/hero-bg.png') center center / cover no-repeat;
  overflow: hidden;
}

.about-hero__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px 48px max(24px, calc((100vw - 1200px) / 2 + 24px));
  overflow: hidden;
}

.about-hero__leaf {
  position: absolute;
  inset: 0 auto 0 -32px;
  width: 120px;
  background:
    radial-gradient(ellipse 28px 80px at 30% 25%, #b8e0c8 0%, transparent 100%),
    radial-gradient(ellipse 24px 70px at 50% 60%, #a8d8b8 0%, transparent 100%),
    radial-gradient(ellipse 20px 56px at 20% 75%, #c8e8d0 0%, transparent 100%);
  opacity: 0.55;
  pointer-events: none;
}

.about-hero__small {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  color: var(--dark);
  margin: 0 0 4px;
  letter-spacing: 0.05em;
}

.about-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 5.5vw, 5.8rem);
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 8px;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.about-hero__en {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  color: var(--tiffany);
  letter-spacing: 0.12em;
  margin: 0 0 20px;
}

.about-hero__sub {
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  color: var(--gray);
  line-height: 1.9;
  margin: 0;
}

.about-hero__image {
  position: relative;
  overflow: hidden;
}

.about-hero__image img {
  width: 500px;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: auto;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 0;
    padding-bottom: 78px;
    background:
      url('assets/images/about/hero.png') center bottom / contain no-repeat,
      url('assets/images/philosophy/hero-bg.png') center center / cover no-repeat;
  }

  .about-hero__text {
    padding: 36px 24px 24px 36px;
  }
}

.page-hero {
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--tiffany-light) 100%);
  color: #fff;
  text-align: center;
  padding: 16px 16px 0;
}

.page-hero__inner {
  padding-bottom: 16px;
}

.page-hero__label {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.2em;
  opacity: 0.85;
  margin-bottom: 4px;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin: 0 0 4px;
}

.page-hero__subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 28px 16px 0;
  }
  .page-hero__inner {
    padding-bottom: 28px;
  }
  .page-hero__label {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .page-hero__title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin: 0 0 8px;
  }
  .page-hero__subtitle {
    font-size: 1.3rem;
  }
}

/* パンくずリスト */
.breadcrumb {
  background: var(--tiffany-pale);
  padding: 10px 0;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .breadcrumb {
    margin-bottom: 32px;
  }
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .breadcrumb__list {
    gap: 4px;
  }

  .breadcrumb__item {
    font-size: 1rem;
  }

  .breadcrumb__item + .breadcrumb__item::before {
    margin-right: 4px;
  }
}

.breadcrumb__item {
  color: var(--dark);
  font-size: 1.2rem;
}

.breadcrumb__item a {
  color: var(--tiffany);
  text-decoration: none;
  font-size: inherit;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '›';
  margin-right: 8px;
}

.breadcrumb .breadcrumb__item--current {
  color: var(--dark);
}

/* ============================================================
   CLINICS LIST PAGE
============================================================ */
.clinics-list-section {
  padding: 80px 0 96px;
  background: #fff;
}

.clinics-list-intro {
  text-align: center;
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.9;
  margin: 0 0 64px;
}

.clinics-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.clinic-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.12);
}

.clinic-detail-card__num {
  background: linear-gradient(180deg, var(--tiffany) 0%, var(--tiffany-light) 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  min-height: 100%;
}

.clinic-detail-card__body {
  padding: 36px 40px 36px 32px;
}

.clinic-detail-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--tiffany-pale);
}

.clinic-detail-card__icon {
  width: 48px;
  height: 48px;
  background: var(--tiffany-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clinic-detail-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--tiffany);
}

.clinic-detail-card__label {
  display: block;
  font-size: 1.2rem;
  color: var(--tiffany);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}

.clinic-detail-card__name {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* 店舗情報行 */
.clinic-detail-card__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.clinic-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.clinic-info-row__icon {
  width: 32px;
  height: 32px;
  background: var(--tiffany-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.clinic-info-row__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--tiffany);
}

.clinic-info-row__text {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.7;
}

.clinic-info-row__text--access {
  color: var(--dark);
  font-size: 1.3rem;
}

.clinic-info-row__tel {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.clinic-info-row__tel:hover {
  color: var(--tiffany);
}

/* 営業時間 */
.clinic-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clinic-hours__row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
}

.clinic-hours__day {
  width: 80px;
  color: var(--dark);
  flex-shrink: 0;
}

.clinic-hours__time {
  color: var(--dark);
}

.clinic-hours__time--closed {
  color: var(--rose);
  font-weight: 600;
}

/* 対応メニュータグ */
.clinic-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.clinic-feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--tiffany-pale);
  color: var(--tiffany);
  font-size: 1.3rem;
  font-weight: 600;
  border: 1px solid rgba(10,186,181,0.2);
}

/* 店舗詳細ボタン */
.btn-clinic-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--tiffany-light) 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(10,186,181,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-clinic-detail:hover {
  box-shadow: 0 6px 28px rgba(10,186,181,0.4);
  transform: translateY(-2px);
}

/* ============================================================
   OTHER SHOPS（他店舗カード）
============================================================ */
.other-shops-section {
  padding: 80px 0;
  background: var(--tiffany-bg);
}

.other-shops-section__title {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin: 0 0 40px;
}

.other-shops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .other-shops-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.other-shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.other-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(10,186,181,0.2);
}

.other-shop-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tiffany-pale);
}

.other-shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.other-shop-card:hover .other-shop-card__img {
  transform: scale(1.04);
}

.other-shop-card__no-img {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--tiffany-pale);
}

.other-shop-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.other-shop-card__name {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

.other-shop-card__access {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.2rem;
  color: var(--dark);
  margin: 0;
}

.other-shop-card__access svg {
  flex-shrink: 0;
  color: var(--tiffany);
}

.other-shop-card__link {
  margin-top: auto;
  font-size: 1.2rem;
  color: var(--tiffany);
  font-weight: 500;
}

/* CTAセクション */
.clinics-cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--tiffany-pale) 0%, #D0EFED 100%);
  text-align: center;
}

.clinics-cta-section__text {
  font-size: 1.6rem;
  color: var(--dark);
  margin: 0 0 32px;
}

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

.btn-accident-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: #fff;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(196,163,90,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-accident-cta:hover {
  box-shadow: 0 6px 28px rgba(196,163,90,0.45);
  transform: translateY(-2px);
}

/* ============================================================
   SHOP ARCHIVE
============================================================ */
.shop-archive-section {
  padding: 80px 0 96px;
  background: #fff;
}

.shop-archive-empty {
  text-align: center;
  color: var(--dark);
  padding: 64px 0;
}

/* ============================================================
   SHOP GRID（一覧ページ）
============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.shop-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(10,186,181,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10,186,181,0.15);
}

.shop-card__img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.shop-card__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.shop-card:hover .shop-card__img-link img {
  transform: scale(1.04);
}

.shop-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card__name {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px;
}
.shop-card__name a {
  color: inherit;
  text-decoration: none;
}
.shop-card__name a:hover {
  color: var(--tiffany);
}

.shop-card__access,
.shop-card__tel {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 1.3rem;
  color: var(--dark);
  margin: 0 0 8px;
  line-height: 1.6;
}
.shop-card__access svg,
.shop-card__tel svg {
  width: 14px;
  height: 14px;
  stroke: var(--tiffany);
  flex-shrink: 0;
  margin-top: 2px;
}
.shop-card__tel a {
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
}
.shop-card__tel a:hover {
  color: var(--tiffany);
}

.shop-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--tiffany-pale);
}

.shop-card__link {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tiffany);
  text-decoration: none;
  transition: gap 0.2s;
}
.shop-card__link:hover {
  color: var(--tiffany-light);
}

/* 一覧カード：紹介文 */
.shop-card__desc {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.7;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

/* 一覧カード：LINEボタン */
.shop-card__line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: #06C755;
  color: #fff;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.shop-card__line svg {
  width: 14px;
  height: 14px;
}
.shop-card__line:hover {
  opacity: 0.85;
}
.shop-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--tiffany-pale);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   SHOP DETAIL（単体ページ）
============================================================ */
.shop-detail-section {
  padding: 64px 0 96px;
  background: #fff;
}

.shop-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* サイドバー：追尾 */
.shop-detail-side {
  position: sticky;
  top: 100px;
}

/* アイキャッチ */
.shop-detail-thumbnail {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.shop-detail-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* 対応メニュー（詳細ページ用余白） */
.shop-detail-features {
  margin-bottom: 32px;
}

/* 本文 */
.shop-detail-content {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
}

.shop-detail-content h2 {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  color: var(--dark);
  border-left: 4px solid var(--tiffany);
  padding-left: 16px;
  margin: 40px 0 16px;
}

.shop-detail-content h3 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  color: var(--dark);
  margin: 32px 0 12px;
}

.shop-detail-content p {
  margin: 0 0 20px;
}

.shop-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* サイドバー：店舗情報カード */
.shop-info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid rgba(10,186,181,0.15);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.shop-info-card__title {
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--tiffany-light) 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 20px 24px;
  margin: 0;
}

/* 店舗情報リスト */
.shop-info-list {
  padding: 0 24px;
  margin: 0;
}

.shop-info-list__row {
  padding: 18px 0;
  border-bottom: 1px solid var(--tiffany-pale);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-info-list__row:last-child {
  border-bottom: none;
}

.shop-info-list__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tiffany);
  letter-spacing: 0.05em;
}

.shop-info-list__label svg {
  width: 18px;
  height: 18px;
  stroke: var(--tiffany);
  flex-shrink: 0;
}

.shop-info-list__value {
  font-size: 1.4rem;
  color: var(--dark);
  line-height: 1.7;
  margin: 0;
}

.shop-info-list__tel {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.shop-info-list__tel:hover {
  color: var(--tiffany);
}

/* サイドバーCTA */
.shop-info-card__cta {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-clinic-tel {
  justify-content: center;
}

.btn-clinic-tel svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

/* LINEボタン */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #06C755;
  color: #fff;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(6,199,85,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-line svg {
  width: 20px;
  height: 20px;
}
.btn-line:hover {
  box-shadow: 0 6px 24px rgba(6,199,85,0.4);
  transform: translateY(-2px);
}

/* オフィシャルサイトボタン */
.btn-official {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #fff;
  color: var(--tiffany);
  border: 2px solid var(--tiffany);
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(10,186,181,0.15);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-official svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn-official__external {
  width: 14px !important;
  height: 14px !important;
  opacity: 0.7;
}
.btn-official:hover {
  background: var(--tiffany);
  color: #fff;
  box-shadow: 0 6px 24px rgba(10,186,181,0.3);
  transform: translateY(-2px);
}

/* 一覧に戻るリンク */
.shop-detail-back {
  margin-top: 16px;
  text-align: center;
}

.shop-back-link {
  font-size: 1.4rem;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.shop-back-link:hover {
  color: var(--tiffany);
}

/* 店舗紹介文 */
.shop-intro {
  margin-bottom: 48px;
}

.shop-intro__title {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  border-left: 4px solid var(--tiffany);
  padding-left: 16px;
  margin: 0 0 20px;
  line-height: 1.5;
}

.shop-detail-main__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--tiffany);
}

@media (max-width: 768px) {
  .shop-detail-main__title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
}

.shop-intro__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
}

/* セクション共通見出し */
.shop-section-title {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tiffany-pale);
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--tiffany);
  border-radius: 2px;
  flex-shrink: 0;
}

/* 院内写真ギャラリー */
.shop-gallery {
  margin-bottom: 48px;
}

.shop-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shop-gallery__item {
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
}

.shop-gallery__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.shop-gallery__item:hover img {
  transform: scale(1.04);
}

.shop-gallery__item figcaption {
  padding: 8px 12px;
  font-size: 1.2rem;
  color: var(--dark);
  background: #f8f9fa;
  line-height: 1.5;
}

/* メニュー・料金 */
.shop-menus {
  margin-bottom: 48px;
}

.shop-menu-item {
  border: 1px solid rgba(10,186,181,0.2);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.shop-menu-item:hover {
  box-shadow: 0 6px 24px rgba(10,186,181,0.18);
  transform: translateY(-2px);
}

.shop-menu-item__name {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--tiffany-light) 100%);
  padding: 12px 20px;
  margin: 0;
}

.shop-menu-item__price {
  padding: 16px 20px;
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--dark);
  background: #fff;
}

.shop-menu-item__price strong,
.shop-menu-item__price b {
  color: var(--tiffany);
  font-size: 1.7rem;
  font-weight: 700;
}

.shop-menu-item__price ul,
.shop-menu-item__price ol {
  margin: 0;
  padding-left: 20px;
}

.shop-menu-item__price li {
  margin-bottom: 4px;
}

.shop-menu-item__price li::marker {
  color: var(--tiffany);
}

.shop-menu-item__price table {
  width: 100%;
  border-collapse: collapse;
}

.shop-menu-item__price table thead,
.shop-menu-item__price table tbody,
.shop-menu-item__price table tr {
  display: block;
  width: 100%;
}

.shop-menu-item__price table th,
.shop-menu-item__price table td {
  display: block;
  width: 100%;
  padding: 6px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: none;
}

.shop-menu-item__price table th {
  color: var(--dark);
  font-weight: 600;
  padding-bottom: 2px;
}

.shop-menu-item__price table td {
  padding-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--tiffany-pale);
  margin-bottom: 6px;
  color: var(--gray);
}

.shop-menu-item__price table tr:last-child td {
  border-bottom: none;
  margin-bottom: 0;
}

/* Googleマップ */
.shop-map {
  margin-top: 48px;
  margin-bottom: 0;
}

.shop-map__title {
  font-family: var(--font-sans);
  font-size: 2rem;
  color: var(--dark);
  margin: 0 0 24px;
}

.shop-map__wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 100%;
}

.shop-map__wrap iframe,
.shop-map__wrap video,
.shop-map__wrap object,
.shop-map__wrap embed {
  max-width: 100%;
  width: 100%;
  display: block;
}

.shop-map__wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* [playlist]ショートコード出力のメディアプレイヤーを幅内に収める */
.shop-map__wrap .wp-playlist,
.shop-map__wrap .wp-playlist-light,
.shop-map__wrap .wp-playlist-dark,
.shop-map__wrap .mejs-container {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box;
}

/* ============================================================
   SHOP STAFF（店舗詳細ページ：在籍スタッフ）
============================================================ */
.shop-staff {
  margin-bottom: 48px;
}

.shop-staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.shop-staff__card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-staff__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.shop-staff__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.shop-staff__card-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--tiffany-pale);
}

.shop-staff__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}

.shop-staff__card:hover .shop-staff__card-img {
  transform: scale(1.04);
}

.shop-staff__card-no-img {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--tiffany-pale);
}

/* 写真下部に名前・役職を重ねる */
.shop-staff__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.55) 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shop-staff__card-position {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tiffany-light);
  letter-spacing: 0.05em;
  margin: 0;
}

.shop-staff__card-name {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* ============================================================
   STAFF ARCHIVE（スタッフ一覧）
============================================================ */
.staff-archive-section {
  padding: 48px 0 72px;
  background: #fff;
}

.staff-archive-intro {
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.9;
  text-align: center;
  margin-bottom: 32px;
}

.staff-archive-empty {
  text-align: center;
  color: var(--dark);
  padding: 48px 0;
}

/* 店舗グループ */
.staff-shop-group {
  margin-bottom: 40px;
}

.staff-shop-group:last-child {
  margin-bottom: 0;
}

.staff-shop-group__title {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  padding: 10px 16px;
  margin-bottom: 20px;
  border-left: 4px solid var(--tiffany);
  background: var(--tiffany-pale);
  border-radius: 0 8px 8px 0;
}

/* スタッフグリッド */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* スタッフカード */
.staff-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(10,186,181,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.staff-card__img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  margin: 24px auto 0;
}

.staff-card__img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.35s;
}

.staff-card:hover .staff-card__img-link img {
  transform: scale(1.04);
}

.staff-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.staff-card__belongs {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: var(--tiffany);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  margin: 0 0 8px;
}

.staff-card__position {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tiffany);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.staff-card__name {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}

.staff-card__name a {
  color: inherit;
  text-decoration: none;
}

.staff-card__name a:hover {
  color: var(--tiffany);
}

.staff-card__desc {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.7;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  flex: 1;
}

.staff-card__link {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tiffany);
  text-decoration: none;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--tiffany-pale);
  display: block;
}

.staff-card__link:hover {
  color: var(--tiffany-light);
}

/* ============================================================
   STAFF DETAIL（スタッフ個別ページ）
============================================================ */
.staff-profile-section {
  padding: 64px 0 80px;
  background: #fff;
}

.staff-profile-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: start;
}

/* メインビジュアル */
.staff-profile-visual {
  position: sticky;
  top: 100px;
}

.staff-profile-visual__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}

.staff-profile-visual__caption {
  margin-top: 16px;
  text-align: center;
}

.staff-profile-visual__shop {
  font-size: 1.2rem;
  color: var(--dark);
  margin: 0 0 4px;
}

.staff-profile-visual__name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-sans);
  margin: 0;
}

/* PC=visual内に表示、SP=スタッフ一覧に戻るの上に表示 */
.staff-profile-visual__extras--sp { display: none; }
@media (max-width: 768px) {
  .staff-profile-visual__extras--pc { display: none; }
  .staff-profile-visual__extras--sp {
    display: block;
    margin-bottom: 24px;
  }
}

.staff-profile-visual__shop-links {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff-profile-visual__shop-btn {
  display: block;
  padding: 8px 16px;
  background-color: var(--tiffany-pale);
  color: var(--tiffany);
  border: 1px solid var(--tiffany-light);
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
}

.staff-profile-visual__shop-btn:hover {
  background-color: var(--tiffany);
  color: #fff;
}

.staff-profile-visual__colleagues {
  margin-top: 20px;
}

.staff-profile-visual__colleagues-label {
  font-size: 1.2rem;
  color: var(--dark);
  margin: 0 0 10px;
  text-align: center;
}

.staff-profile-visual__colleagues-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.staff-profile-visual__colleague {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.staff-profile-visual__colleague-img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--tiffany-light);
  flex-shrink: 0;
}

.staff-profile-visual__colleague-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}

.staff-profile-visual__colleague:hover .staff-profile-visual__colleague-img {
  transform: scale(1.08);
}

.staff-profile-visual__colleague-no-img {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--tiffany-pale);
}

.staff-profile-visual__colleague-name {
  font-size: 1.2rem;
  color: var(--dark);
  text-align: center;
  line-height: 1.3;
}

/* プロフィール情報 */
.staff-profile-info {
  position: sticky;
  top: 100px;
}

.staff-profile-header {
  border-bottom: 2px solid var(--tiffany-pale);
  padding-bottom: 24px;
  margin-bottom: 28px;
}

.staff-profile-header__position {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tiffany);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.staff-profile-header__name {
  font-family: var(--font-sans);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.staff-profile-info__catch {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.8;
  background: var(--tiffany-bg);
  border-left: 4px solid var(--tiffany);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 28px;
}

.staff-profile-info__detail {
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.95;
  margin-bottom: 28px;
}

.staff-profile-info__content {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
}

/* ブロックエディタで挿入される「スタッフQ&A」見出しを非表示 */
.staff-profile-info__content .staff-qa__heading {
  display: none;
}

/* グループブロック内の導入テキスト（キャッチコピー） */
.staff-profile-info__content .wp-block-group__inner-container p {
  font-weight: 500;
  line-height: 1.7;
  color: var(--dark);
}

/* インタビューセクション */
.staff-qa-section {
  padding: 40px 0 56px;
  background: var(--tiffany-bg);
}

.staff-qa-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.staff-qa-item {
  border-left: 3px solid var(--tiffany);
  padding: 12px 16px;
  background: #fff;
}

.staff-qa-item__q-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.6;
  margin: 0 0 8px;
}

.staff-qa-item__img {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 6px;
}

.staff-qa-item__img img {
  width: 100%;
  height: auto;
  display: block;
}

.staff-qa-item__a-text {
  font-size: 1.4rem;
  color: var(--dark);
  line-height: 1.8;
}

/* 一覧へ戻るリンク */
.staff-back {
  padding: 40px 0 64px;
  text-align: center;
}

.staff-back-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tiffany);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.staff-back-link:hover {
  color: var(--tiffany-light);
}

/* ============================================================
   NEWS ARCHIVE / SINGLE
============================================================ */

/* 一覧ラッパー */
.news-archive {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

/* カテゴリフィルターナビ */
.news-archive__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}

.news-archive__filter-btn {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 500;
  border: 2px solid var(--tiffany);
  color: var(--tiffany);
  transition: background 0.2s, color 0.2s;
}

.news-archive__filter-btn:hover,
.news-archive__filter-btn.is-active {
  background: var(--tiffany);
  color: #fff;
}

/* カードグリッド */
.news-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* カード */
.news-archive__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.08);
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-archive__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10,186,181,0.14);
}

.news-archive__card-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-archive__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-archive__card:hover .news-archive__card-img img {
  transform: scale(1.04);
}

.news-archive__card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* カテゴリラベル群 */
.news-archive__card-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.news-archive__card-cat {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--tiffany);
  background: var(--tiffany-pale);
  padding: 2px 10px;
  border-radius: 999px;
}

.news-archive__card-date {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.news-archive__card-title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 10px;
}

.news-archive__card-excerpt {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.7;
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 空メッセージ */
.news-archive__empty {
  text-align: center;
  color: var(--dark);
  padding: 60px 0;
}

/* ============================================================
   FAQ ARCHIVE (sinagawa_faq)
============================================================ */

.faq-archive {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
}

.faq-archive__lead {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--dark);
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .faq-archive__lead {
    margin-bottom: 48px;
  }
}

/* カテゴリフィルターナビ（お知らせ一覧と同系） */
.faq-archive__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}

.faq-archive__filter-btn {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 500;
  border: 2px solid var(--tiffany);
  color: var(--tiffany);
  transition: background 0.2s, color 0.2s;
}

.faq-archive__filter-btn:hover,
.faq-archive__filter-btn.is-active {
  background: var(--tiffany);
  color: #fff;
}

/* ============================================================
   NEWS SINGLE
============================================================ */

.news-single {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
}

/* ヘッダー */
.news-single__header {
  margin-bottom: 36px;
}

.news-single__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.news-single__cat {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--tiffany);
  background: var(--tiffany-pale);
  padding: 2px 10px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.news-single__cat:hover {
  background: var(--tiffany);
  color: #fff;
}

.news-single__date {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.news-single__title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  border-bottom: 2px solid var(--tiffany-pale);
  padding-bottom: 20px;
}

/* サムネイル */
.news-single__thumbnail {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.news-single__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* 本文 */
.news-single__content {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 60px;
}

.news-single__content h2 {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--tiffany);
}

.news-single__content h3 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 32px 0 12px;
  padding: 8px 12px;
  background: var(--tiffany-pale);
  border-left: 3px solid var(--tiffany);
  border-radius: 0 4px 4px 0;
}

.news-single__content p { margin-bottom: 16px; }
.news-single__content ul,
.news-single__content ol {
  margin-left: 24px;
  margin-bottom: 16px;
  list-style: disc;
}
.news-single__content ol { list-style: decimal; }
.news-single__content img {
  border-radius: 8px;
  margin: 24px 0;
  max-width: 100%;
  height: auto;
}

/* 前後ナビ */
.news-single__post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--tiffany-pale);
  border-bottom: 1px solid var(--tiffany-pale);
}

.news-single__post-nav-next {
  text-align: right;
}

.news-single__post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-single__post-nav-next .news-single__post-nav-link {
  align-items: flex-end;
}

.news-single__post-nav-label {
  font-size: 1.2rem;
  color: var(--tiffany);
  font-weight: 700;
}

.news-single__post-nav-title {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 一覧戻るボタン */
.news-single__back {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .header-cta { display: none; }
  .header-nav { display: none; }
  .menu-toggle { display: block; }
  .drawer-nav { display: flex; }
  .drawer-overlay { display: block; opacity: 0; pointer-events: none; }
  .drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
  .clinics-grid { grid-template-columns: repeat(2, 1fr); }
  .symptoms-grid { grid-template-columns: repeat(3, 1fr); }
  .occupation-grid { grid-template-columns: repeat(2, 1fr); }
  .morpho-areas__grid { grid-template-columns: repeat(2, 1fr); }
  .morpho-intro { grid-template-columns: 1fr; gap: 24px; }
  .morpho-intro__media { max-width: 480px; margin: 0 auto; }
  .promises-grid { grid-template-columns: repeat(2, 1fr); }
  .price-summary-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .news-archive__grid { grid-template-columns: repeat(2, 1fr); }
  .clinic-detail-card__body { padding: 28px 24px 28px 24px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  /* スタッフ */
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .staff-profile-layout { grid-template-columns: 300px 1fr; gap: 40px; }
  /* 店舗詳細 */
  .shop-detail-layout { grid-template-columns: 1fr 300px; gap: 32px; }
  .shop-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .shop-staff__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* SP: ヒーローを画面いっぱい（全幅・縦長）にする */
  .hero-section { overflow: hidden; }
  .hero-inner { padding: 0; max-width: none; }
  .hero-slider { height: 70vh; min-height: 480px; max-height: 640px; }
  .hero-track { height: 70vh; min-height: 480px; max-height: 640px; }
  .hero-slide {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    border-radius: 0;
    opacity: 1;
    transform: none;
  }
  .hero-slide__content { padding: 24px 24px 80px; }
  .hero-slide__content--accident,
  .hero-slide__content--shina { padding: 24px 24px 80px; }
  .hero-title { font-size: 2.6rem; max-width: 100%; }
  .hero-title--accident { font-size: 2.6rem; }
  .hero-subtitle { font-size: 1.4rem; margin-bottom: 20px; }
  .hero-buttons { gap: 10px; }
  .btn-hero-primary,
  .btn-hero-secondary { padding: 12px 20px; font-size: 1.4rem; }
  .hero-prev,
  .hero-next { width: 36px; height: 36px; font-size: 2.2rem; }
  .news-layout { flex-direction: column; gap: 24px; }
  .clinics-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .clinic-card__body { padding: 14px; }
  .clinic-card__header { gap: 8px; margin-bottom: 10px; }
  .clinic-card__icon { width: 32px; height: 32px; }
  .clinic-card__icon svg { width: 14px; height: 14px; }
  .clinic-card__name { font-size: 1.5rem; line-height: 1.3; }
  .clinic-card__address { font-size: 1.2rem; margin-bottom: 10px; }
  .clinic-card__link { font-size: 1.2rem; }
  .symptoms-grid { grid-template-columns: repeat(3, 1fr); }
  .women-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .women-card__img { height: 120px; }
  .women-card__body { padding: 14px; }
  .women-card__title { font-size: 1.5rem; line-height: 1.3; margin-bottom: 6px; }
  .women-card__desc { font-size: 1.2rem; line-height: 1.6; }
  .occupation-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .occupation-card__img { height: 110px; }
  .occupation-card__body { padding: 12px; }
  .occupation-card__title { font-size: 1.4rem; margin-bottom: 10px; line-height: 1.3; }
  .btn-detail { padding: 8px; font-size: 1.2rem; }
  .price-summary-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-summary-card { padding: 28px 24px; }
  .price-summary-card__zero-amount { font-size: 4.8rem; }
  .price-insurance-note { padding: 16px 20px; gap: 8px; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .promises-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .news-archive__grid { grid-template-columns: 1fr; }
  .news-single__post-nav { grid-template-columns: 1fr; gap: 12px; }
  .header-logo-text { font-size: 1.6rem; }
  .header-logo { gap: 8px; }
  .header-logo img { height: 36px; }
  .site-header.is-scrolled .header-logo-text { font-size: 1.3rem; }
  .site-header.is-scrolled .header-logo img { height: 28px; }
  /* スタッフ */
  .staff-shop-group__title { font-size: 1.7rem; padding: 12px 16px; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-profile-layout { grid-template-columns: 1fr; }
  .staff-profile-visual { position: static; }
  .staff-profile-info { position: static; }
  .staff-profile-visual__img { max-width: 360px; margin: 0 auto; }
  /* 店舗一覧ページ */
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shop-card__body { padding: 12px; }
  .shop-card__name { font-size: 1.4rem; margin: 0 0 8px; line-height: 1.3; }
  .shop-card__access,
  .shop-card__tel { font-size: 1.2rem; margin: 0 0 6px; }
  .clinic-detail-card { grid-template-columns: 56px 1fr; }
  .clinic-detail-card__num { font-size: 2rem; }
  .clinic-detail-card__body { padding: 24px 20px; }
  .clinic-detail-card__name { font-size: 1.8rem; }
  .clinic-info-row__tel { font-size: 1.7rem; }
  .clinic-hours__row { flex-wrap: wrap; gap: 4px; }
  .clinics-cta-section__buttons { flex-direction: column; }
  /* 店舗詳細 */
  .shop-detail-layout {
    grid-template-columns: 1fr;
  }
  .shop-detail-side {
    position: static;
  }
  .shop-info-card {
    position: static;
  }
  .shop-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .shop-gallery__item img { height: 160px; }
  .shop-staff__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .morpho-areas__grid { grid-template-columns: 1fr; }
  .shop-gallery__grid { grid-template-columns: 1fr; }
  .shop-gallery__item img { height: 220px; }
  .shop-staff__grid { grid-template-columns: repeat(2, 1fr); }
  /* スタッフ */
  .staff-shop-group { margin-bottom: 48px; }
  .staff-shop-group__title { font-size: 1.6rem; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .staff-card__img-link { width: 100px; height: 100px; margin-top: 16px; }
  .staff-card__body { padding: 12px; }
  .staff-card__belongs,
  .staff-card__position { font-size: 1rem; margin-bottom: 4px; }
  .staff-card__name { font-size: 1.4rem; margin: 0 0 6px; line-height: 1.3; }
  .staff-qa-item { padding: 20px; }
}

/* ============================================================
   FAQ アーカイブ — 共通 .about-faq-* を流用
   ============================================================ */

.question-archive {
  padding: 72px 0;
}

.question-archive__lead {
  text-align: center;
  color: var(--gray);
  font-size: 1.5rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 48px;
}

.about-faq-empty {
  text-align: center;
  color: var(--gray);
  padding: 40px 0;
}

.about-faq-item__a-body {
  flex: 1;
  padding-top: 6px;
}

.about-faq-item__a-body p {
  color: var(--gray);
  line-height: 1.8;
  margin: 0 0 0.8em;
}

.about-faq-item__a-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .question-archive {
    padding: 48px 0;
  }
}

/* ============================================================
   各症例一覧（page-case_list.php）
============================================================ */
.case-list-section {
  padding: 80px 0;
  background: #fff;
}

.case-list__intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
}

.case-list__group {
  margin-bottom: 56px;
}

.case-list__group-heading {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  border-left: 4px solid var(--tiffany);
  padding-left: 12px;
  margin-bottom: 24px;
}

.case-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.case-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--tiffany-bg);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 20px 12px 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.case-list__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(10,186,181,0.14);
  border-color: var(--tiffany-light);
}

.case-list__item-img-wrap {
  width: 64px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-list__item-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.case-list__item-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

.case-list__item-arrow {
  font-size: 1.2rem;
  color: var(--tiffany);
  margin-top: 2px;
}

.case-list__cta {
  margin-top: 72px;
  text-align: center;
  background: var(--tiffany-pale);
  border-radius: 16px;
  padding: 48px 24px;
}

.case-list__cta-text {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.case-list__cta-btn {
  display: inline-block;
  background: var(--tiffany);
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 16px 40px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.case-list__cta-btn:hover {
  background: var(--tiffany-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .case-list-section { padding: 56px 0; }
  .case-list__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .case-list__intro { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .case-list__grid { grid-template-columns: repeat(2, 1fr); }
}

/* モルフォセラピー・治療方針バナー */
.case-list-banner-section {
  padding: 0 0 80px;
  background: #fff;
}

.case-list-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-list-banner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 24px;
  background: var(--tiffany-pale);
  border: 2px solid var(--tiffany-light);
  border-radius: 12px;
  text-align: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.case-list-banner__item:hover {
  background: var(--tiffany-bg);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10,186,181,0.15);
}

.case-list-banner__label {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--tiffany);
  font-weight: 600;
}

.case-list-banner__title {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
}

.case-list-banner__arrow {
  font-size: 1.3rem;
  color: var(--tiffany);
  margin-top: 4px;
}

.case-list-section--cta {
  padding-top: 0;
}

@media (max-width: 768px) {
  .case-list-banner__grid { grid-template-columns: 1fr; gap: 16px; }
  .case-list-banner__item { padding: 36px 20px; }
  .case-list-banner__title { font-size: 2rem; }
}

/* ============================================================
   症状・お悩み個別ページ（page-symptom.php）
============================================================ */

/* フォールバック（カスタムフィールド未設定時） */
.symptom-content-wrap {
  padding: 64px 24px;
}

/* ① リード・チェックリスト */
.symptom-lead-section {
  padding: 64px 0 48px;
  background: #fff;
}

.symptom-lead__text {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--dark);
  text-align: center;
  margin-bottom: 40px;
}

.symptom-check-box {
  background: var(--tiffany-bg);
  border: 1px solid rgba(10,186,181,0.15);
  border-radius: 16px;
  padding: 32px 40px;
}

.symptom-check-box__heading {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.symptom-check-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tiffany);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.symptom-check-box__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.symptom-check-box__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.6;
}

.symptom-check-box__check {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--tiffany);
  background: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.symptom-check-box__check::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--tiffany);
  border-bottom: 2px solid var(--tiffany);
  transform: rotate(45deg);
}

/* ② アプローチ */
.symptom-approach-section {
  padding: 80px 0;
  background: var(--tiffany-bg);
}

.symptom-approach__body {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--dark);
  margin-top: 40px;
}

.symptom-approach__body p {
  margin-bottom: 1em;
}

/* ===========================================================
   症状の説明（ABOUT）構造化デザイン .symptom-about
   =========================================================== */
.symptom-about {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
}

/* 定義リード＋画像の2カラム */
.symptom-about__intro {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.symptom-about__intro-text {
  flex: 1 1 320px;
  min-width: 0;
}

.symptom-about__figure {
  flex: 0 0 auto;
  margin: 0;
  max-width: 280px;
}

.symptom-about__figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.symptom-about__lead {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--dark);
  padding-left: 16px;
  border-left: 4px solid var(--tiffany);
  margin: 0 0 24px;
}

/* 変形リスト（チェックアイコン付き） */
.symptom-about__signs {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.symptom-about__signs li {
  position: relative;
  padding: 6px 0 6px 32px;
  border-bottom: 1px dashed var(--tiffany-light);
}

.symptom-about__signs li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: var(--tiffany);
  border-radius: 50%;
}

.symptom-about__signs li::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 50%;
  width: 4px;
  height: 8px;
  margin-top: -1px;
  transform: translateY(-60%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.symptom-about__note {
  color: var(--gray);
  font-size: 1.4rem;
  margin: 0;
}

/* 小見出し */
.symptom-about__subtitle {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tiffany);
  margin: 48px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--tiffany-pale);
}

/* 症状タグ */
.symptom-about__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.symptom-about__tags li {
  background: #fff;
  border: 1px solid var(--tiffany-light);
  color: var(--dark);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 10px 20px;
  border-radius: 999px;
}

/* 原因カード（2×2グリッド） */
.symptom-about__cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 32px;
  padding: 0;
}

.symptom-about__card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--tiffany);
}

.symptom-about__card-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--tiffany);
  margin-bottom: 8px;
}

.symptom-about__card-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--dark);
  margin: 0;
}

/* 年代別リスト */
.symptom-about__ages {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.symptom-about__ages li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--tiffany-pale);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1.4rem;
}

.symptom-about__age-label {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--tiffany);
  min-width: 5em;
}

@media (min-width: 768px) {
  .symptom-about__cards {
    grid-template-columns: 1fr 1fr;
  }
  .symptom-about__card--wide {
    grid-column: 1 / -1;
  }
}

/* ③ 施術の流れ */
.symptom-steps-section {
  padding: 80px 0;
  background: #fff;
}

/* 初回来院からお会計まで（全症状ページ共通）
   template-parts/first-visit-flow.php が対応。 */
.first-visit-flow {
  padding: 80px 0;
  background: var(--tiffany-bg);
}

.first-visit-flow__list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.first-visit-flow__item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
}

.first-visit-flow__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.first-visit-flow__no {
  flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--tiffany);
  line-height: 1;
}

.first-visit-flow__img {
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
}

.first-visit-flow__img img {
  width: 100%;
  height: auto;
  display: block;
}

.first-visit-flow__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--gray);
  margin: 0;
}

@media (min-width: 768px) {
  .first-visit-flow__list {
    grid-template-columns: repeat(2, 1fr);
  }
  /* 最後の1件は中央に置いて座りをよくする */
  .first-visit-flow__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 16px);
    margin: 0 auto;
  }
}

.symptom-steps {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.symptom-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--tiffany), var(--tiffany-light));
  z-index: 0;
}

.symptom-steps__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 36px;
  position: relative;
  z-index: 1;
}

.symptom-steps__item:last-child {
  padding-bottom: 0;
}

.symptom-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-light));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(10,186,181,0.25);
}

.symptom-steps__body {
  background: #FAFCFC;
  border: 1px solid rgba(10,186,181,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1;
}

.symptom-steps__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.symptom-steps__desc {
  font-size: 1.4rem;
  color: var(--dark);
  line-height: 1.8;
}

/* ⑦ 初回来院からお会計までの流れ */
.menu-flow-section {
  padding: 80px 0;
  background: var(--tiffany-bg);
}

.menu-flow {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* 番号をつなぐ縦ライン（症状ステップと同トーン） */
.menu-flow::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--tiffany), var(--tiffany-light));
  z-index: 0;
}

.menu-flow__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 36px;
  position: relative;
  z-index: 1;
}

.menu-flow__item:last-child {
  padding-bottom: 0;
}

.menu-flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-light));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(10,186,181,0.25);
}

.menu-flow__body {
  background: #fff;
  border: 1px solid rgba(10,186,181,0.1);
  border-radius: 12px;
  padding: 24px;
  flex: 1;
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
}

.menu-flow__title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--tiffany-pale);
}

.menu-flow__img {
  margin-bottom: 16px;
}

.menu-flow__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.menu-flow__text {
  font-size: 1.4rem;
  color: var(--dark);
  line-height: 1.9;
}

@media (min-width: 768px) {
  .menu-flow__img {
    float: left;
    width: 320px;
    margin: 0 24px 8px 0;
  }

  .menu-flow__body::after {
    content: '';
    display: block;
    clear: both;
  }
}

/* ===========================================================
   menu3（/menu3/scoliosis/ 等）：患者様の声テキスト型
   通常 menu と同じ menu-single__voices グリッドを流用。
   インタビュー／テキスト主体の声カード用バリエーション。
   =========================================================== */

/* テキスト主体の声は1カラムで読みやすく */
.menu-single__voices--text {
  grid-template-columns: 1fr;
}

/* 声カードのキャプション（白背景カード内のテキスト） */
.menu-single__voice-caption {
  padding: 24px 28px;
}

.menu-single__voice-item--interview .menu-single__voice-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* 声の見出し */
.menu-single__voice-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tiffany);
  margin: 0 0 12px;
}

/* 声の本文 */
.menu-single__voice-text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
  margin: 0;
}

/* 声の投稿者メタ（匿名さん／院名 等） */
.menu-single__voice-meta {
  font-size: 1.3rem;
  color: var(--gray);
  text-align: right;
  margin: 16px 0 0;
}

/* ===========================================================
   症例 repeater：施術方法などの画像ギャラリーグリッド .cat-gallery
   =========================================================== */
.cat-gallery {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cat-gallery__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* 画像はトリミングせず本来の比率で全体を見せる（手技の内容が大事なため） */
.cat-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .cat-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cat-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ===========================================================
   症例 repeater：施術前後の比較カード .cat-result
   =========================================================== */
.cat-result {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 28px;
}

.cat-result__item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* 施術前 → 施術後 ラベル帯（画像が左=前・右=後なのでラベルも左右に対応配置） */
.cat-result__labels {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--tiffany-bg);
  border-bottom: 1px solid var(--tiffany-pale);
}

.cat-result__label {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 4px 24px;
  border-radius: 999px;
  flex: 1 1 0;
  text-align: center;
}

.cat-result__label--before {
  background: #fff;
  color: var(--gray);
  border: 1px solid var(--gray);
}

.cat-result__label--after {
  background: var(--tiffany);
  color: #fff;
}

.cat-result__arrow {
  color: var(--tiffany);
  font-size: 2rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.cat-result__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================================================
   症例 repeater：推薦・インタビューカード .cat-interview
   =========================================================== */
.cat-interview {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--gold);
}

.cat-interview__img {
  flex: 0 0 auto;
  width: 280px;
  max-width: 100%;
}

.cat-interview__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.cat-interview__body {
  flex: 1 1 320px;
  min-width: 0;
}

.cat-interview__heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 16px;
  line-height: 1.5;
}

.cat-interview__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
  margin: 0 0 16px;
}

.cat-interview__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray);
  text-align: right;
  margin: 0;
}

/* ===========================================================
   症状ページ repeater：料金表（簡易2列）／店舗紹介カード
   =========================================================== */

/* 料金表（項目＋金額の2列・thead無し） */
.price-table--simple {
  margin-top: 32px;
}

.price-table--simple .price-table__item {
  width: 60%;
  background: var(--tiffany-bg);
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid #fff;
  white-space: normal;
}

.price-table--simple .price-table__price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tiffany);
  text-align: right;
  white-space: nowrap;
  padding: 16px 20px;
}

.price-table--simple tr:nth-child(even) td {
  background: #fff;
}

/* 店舗紹介カード */
.clinic-cards {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.clinic-cards__item {
  background: #fff;
  border: 1px solid var(--tiffany-pale);
  border-radius: 10px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(10, 186, 181, 0.06);
}

.clinic-cards__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 14px;
}

.clinic-cards__name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.clinic-cards__name-link {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.clinic-cards__name-link:hover {
  color: var(--tiffany);
}

.clinic-cards__note {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  background: var(--gold);
  border-radius: 4px;
  padding: 2px 10px;
}

.clinic-cards__tel {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
  text-decoration: none;
  background: var(--tiffany-bg);
  border-radius: 8px;
  padding: 14px 18px;
  transition: background 0.2s;
}

.clinic-cards__tel:hover {
  background: var(--tiffany-pale);
}

.clinic-cards__tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--tiffany);
  color: #fff;
}

.clinic-cards__tel-icon svg {
  width: 18px;
  height: 18px;
}

.clinic-cards__tel-label {
  font-size: 1.3rem;
  color: var(--gray);
}

.clinic-cards__tel-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--tiffany);
  letter-spacing: 0.02em;
  margin-left: auto;
}

@media (min-width: 768px) {
  .clinic-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .clinic-cards__tel-num {
    font-size: 2rem;
  }
}

/* ④ 患者さまの声 */
.symptom-voice-section {
  padding: 80px 0;
  background: var(--tiffany-pale);
}

.symptom-voices {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.symptom-voice-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 4px 20px rgba(10,186,181,0.08);
  position: relative;
}

.symptom-voice-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 4.8rem;
  line-height: 1;
  color: var(--tiffany-light);
  font-family: Georgia, serif;
}

.symptom-voice-card__comment {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
  padding-top: 24px;
  margin-bottom: 20px;
}

.symptom-voice-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--tiffany-pale);
}

.symptom-voice-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.symptom-voice-card__profile {
  font-size: 1.2rem;
  color: var(--dark);
}

/* ⑤ よくあるご質問 */
.symptom-faq-section {
  padding: 80px 0;
  background: #fff;
}

.symptom-faq {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.symptom-faq__item {
  border: 1px solid rgba(10,186,181,0.12);
  border-radius: 12px;
  overflow: hidden;
}

.symptom-faq__q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--tiffany-bg);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.6;
}

.symptom-faq__q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--tiffany);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.symptom-faq__a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  font-size: 1.5rem;
  color: var(--dark);
  line-height: 1.8;
}

.symptom-faq__a-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.symptom-faq__a-text {
  flex: 1;
}

/* ⑥ 戻るリンク + CTA */
.symptom-cta-section {
  padding: 64px 0 80px;
  background: #fff;
}

.symptom-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  color: var(--tiffany);
  font-weight: 600;
  margin-bottom: 48px;
  transition: gap 0.2s;
}

.symptom-back-link:hover {
  gap: 10px;
}

.symptom-cta-box {
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--tiffany-light) 100%);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}

.symptom-cta-box__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 32px;
  opacity: 0.95;
}

.symptom-cta-box__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .symptom-lead-section { padding: 48px 0 36px; }
  .symptom-check-box { padding: 24px 20px; }
  .symptom-check-box__list { grid-template-columns: 1fr; }
  .symptom-approach-section,
  .symptom-steps-section,
  .symptom-voice-section,
  .symptom-faq-section { padding: 56px 0; }
  .symptom-voices { grid-template-columns: 1fr; }
  .symptom-cta-box { padding: 40px 24px; }
  .symptom-cta-box__buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .symptom-steps::before { left: 22px; }
  .symptom-steps__num { width: 44px; height: 44px; font-size: 1.4rem; }
  .symptom-faq__q,
  .symptom-faq__a { padding: 16px; gap: 12px; }
}

/* ============================================================
   症例一覧個別ページ（single-menu / single-menu2 / single-menu3）
============================================================ */

/* メインビジュアル */
.menu-single__mainvisual {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}

.menu-single__mainvisual-img {
  width: 100%;
  height: auto;
  display: block;
}

/* キャッチコピー */
.menu-single__catch {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  padding: 0 8px;
}

/* チェックリスト（旧サイトHTMLをそのまま出力） */
.menu-single__check-body {
  margin-top: 32px;
}

.menu-single__check-body ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.menu-single__check-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(10,186,181,0.15);
}

.menu-single__check-body ul li::before {
  content: '✓';
  color: var(--tiffany);
  font-weight: 700;
  flex-shrink: 0;
}

/* チェックボックス・空label（旧サイトのマークアップは非表示） */
.menu-single__check-body input[type="checkbox"],
.menu-single__check-body ul li label {
  display: none;
}

/* 施術内容 */
.menu-single__flow-contents {
  margin-top: 32px;
}

.menu-single__flow-contents img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 施術内容内の見出し（シュロス法・モルフォ等の中見出し） */
.menu-single__flow-contents > h3 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin: 56px 0 24px;
  padding-bottom: 16px;
  position: relative;
}

.menu-single__flow-contents > h3:first-child {
  margin-top: 0;
}

.menu-single__flow-contents > h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--tiffany), var(--tiffany-light));
}

.menu-single__flow-contents > p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--dark);
  margin-bottom: 1.2em;
}

.menu-single__flow-contents > p > strong {
  display: inline-block;
  font-size: 1.7rem;
  color: var(--tiffany);
  margin-top: 0.4em;
}

/* 施術の流れ（番号付きタイムライン・画像付き） */
.symptom-flow-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  position: relative;
  counter-reset: flow;
}

.symptom-flow-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--tiffany), var(--tiffany-light));
  z-index: 0;
}

.symptom-flow-list > li {
  position: relative;
  z-index: 1;
  padding: 0 0 28px 76px;
}

.symptom-flow-list > li:last-child {
  padding-bottom: 0;
}

.symptom-flow-list > li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-light));
  color: #fff;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(14,169,190,0.25);
}

.symptom-flow-list > li > h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 6px 0 12px;
  line-height: 1.5;
}

.symptom-flow-list > li > p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--gray);
  margin: 0;
}

.symptom-flow-list > li > p > img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  margin: 0 0 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* 選ばれる5つの理由（番号バッジ付きカード） */
.symptom-reason-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: reason;
}

.symptom-reason-list > li {
  position: relative;
  background: var(--tiffany-bg);
  border: 1px solid rgba(14,169,190,0.15);
  border-radius: 16px;
  padding: 28px 32px 28px 96px;
}

.symptom-reason-list > li::before {
  counter-increment: reason;
  content: counter(reason);
  position: absolute;
  left: 28px;
  top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(196,163,90,0.3);
}

.symptom-reason-list > li > h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.5;
}

.symptom-reason-list > li > p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--gray);
  margin: 0;
}

/* 推薦コメント（aboutshojo内のblockquote） */
.symptom-approach__body blockquote {
  margin: 24px 0 0;
  padding: 24px 28px;
  background: var(--tiffany-pale);
  border-left: 4px solid var(--tiffany);
  border-radius: 0 12px 12px 0;
}

.symptom-approach__body blockquote p {
  margin-bottom: 0.8em;
}

.symptom-approach__body blockquote p:last-child {
  margin-bottom: 0;
  text-align: right;
  font-weight: 700;
  color: var(--tiffany);
}

@media (max-width: 768px) {
  .symptom-flow-list::before { left: 22px; }
  .symptom-flow-list > li { padding-left: 60px; }
  .symptom-flow-list > li::before { width: 44px; height: 44px; font-size: 1.6rem; }
  .symptom-flow-list > li > p > img { max-width: 100%; }

  .symptom-reason-list > li { padding: 24px 20px 24px 20px; }
  .symptom-reason-list > li::before {
    position: static;
    margin-bottom: 12px;
  }
}

.menu-single__flow-kaisetsu {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 2;
  color: var(--dark);
  background: var(--tiffany-pale);
  border-left: 4px solid var(--tiffany);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
}

/* 患者様の声（画像グリッド） */
.menu-single__voices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.menu-single__voice-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.menu-single__voice-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .menu-single__check-body ul { grid-template-columns: 1fr; }
  .menu-single__voices { grid-template-columns: 1fr; }
}

/* アイキャッチ（フォールバック用） */
.menu-single__thumbnail {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.menu-single__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* 前後記事ナビ */
.menu-single-post-nav {
  padding: 48px 0;
  border-top: 1px solid rgba(90,107,122,0.12);
}

.menu-single-post-nav__inner {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.menu-single-post-nav__prev,
.menu-single-post-nav__next {
  flex: 1;
  min-width: 0;
}

.menu-single-post-nav__next {
  text-align: right;
}

.menu-single-post-nav__link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(10,186,181,0.2);
  transition: background 0.2s, border-color 0.2s;
  max-width: 280px;
}
.menu-single-post-nav__link:hover {
  background: var(--tiffany-pale);
  border-color: var(--tiffany-light);
}

.menu-single-post-nav__direction {
  font-size: 1.2rem;
  color: var(--tiffany);
  font-weight: 700;
}

.menu-single-post-nav__title {
  font-size: 1.4rem;
  color: var(--dark);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .menu-single-post-nav__inner { flex-direction: column; }
  .menu-single-post-nav__link { max-width: 100%; }
  .menu-single-post-nav__next { text-align: left; }
}

/* ============================================================
   症例個別ページ（single-sinagawa_case）
============================================================ */

/* 患者情報バッジ */
.case-meta-section {
  padding: 40px 0 0;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--tiffany-pale);
  border-radius: 12px;
  padding: 24px 28px;
  border-left: 4px solid var(--tiffany);
}

.case-meta__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.case-meta__label {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tiffany);
  background: #fff;
  border: 1px solid var(--tiffany-light);
  border-radius: 4px;
  padding: 2px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.case-meta__value {
  font-size: 1.4rem;
  color: var(--dark);
  font-weight: 500;
}

.case-meta__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-meta__cat {
  font-size: 1.3rem;
  color: var(--tiffany);
  background: #fff;
  border: 1px solid var(--tiffany-light);
  border-radius: 20px;
  padding: 2px 12px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.case-meta__cat:hover {
  background: var(--tiffany);
  color: #fff;
  border-color: var(--tiffany);
}

/* アイキャッチ */
.case-thumbnail-section {
  padding: 32px 0 0;
}

.case-thumbnail {
  border-radius: 16px;
  overflow: hidden;
}

.case-thumbnail__img {
  width: 100%;
  height: auto;
  display: block;
}

/* 症例セクション共通 */
.case-section {
  padding: 72px 0;
}

.case-section + .case-section {
  padding-top: 0;
}

.case-section--approach {
  background: var(--tiffany-bg);
}

.case-section--result {
  background: #fff;
}

.case-section__body {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--dark);
  margin-top: 40px;
}

.case-section__body--result {
  background: linear-gradient(135deg, var(--tiffany-pale) 0%, #fff 100%);
  border-radius: 16px;
  padding: 32px 36px;
  border-left: 4px solid var(--tiffany);
}

/* 患者様の声 */
.case-voice-section {
  padding: 72px 0;
  background: var(--tiffany-bg);
}

.case-voice-card {
  margin: 40px 0 0;
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  position: relative;
  box-shadow: 0 4px 20px rgba(10,186,181,0.08);
  border: 1px solid rgba(10,186,181,0.12);
}

.case-voice-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 7.2rem;
  font-family: var(--font-sans);
  color: var(--tiffany-light);
  line-height: 1;
}

.case-voice-card__comment {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--dark);
  padding-left: 8px;
  margin-bottom: 20px;
}

.case-voice-card__footer {
  text-align: right;
}

.case-voice-card__profile {
  font-size: 1.4rem;
  color: var(--dark);
  font-weight: 500;
}

/* 前後記事ナビ */
.case-post-nav {
  padding: 48px 0;
  border-top: 1px solid rgba(90,107,122,0.12);
}

.case-post-nav__inner {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.case-post-nav__prev,
.case-post-nav__next {
  flex: 1;
  min-width: 0;
}

.case-post-nav__next {
  text-align: right;
}

.case-post-nav__link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(10,186,181,0.2);
  transition: background 0.2s, border-color 0.2s;
  max-width: 280px;
}
.case-post-nav__link:hover {
  background: var(--tiffany-pale);
  border-color: var(--tiffany-light);
}

.case-post-nav__direction {
  font-size: 1.2rem;
  color: var(--tiffany);
  font-weight: 700;
}

.case-post-nav__title {
  font-size: 1.4rem;
  color: var(--dark);
  line-height: 1.6;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .case-meta { flex-direction: column; gap: 12px; padding: 20px; }
  .case-section { padding: 56px 0; }
  .case-section__body--result { padding: 24px 20px; }
  .case-voice-card { padding: 28px 24px; }
  .case-voice-card::before { font-size: 5.6rem; top: 12px; left: 16px; }
  .case-post-nav__inner { flex-direction: column; }
  .case-post-nav__link { max-width: 100%; }
  .case-post-nav__next { text-align: left; }
}

/* ==========================================================================
   サイドナビ（症例一覧個別ページ）
   ========================================================================== */

/* 2カラムレイアウト */
.menu-single-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* 1カラム（archive-menu.php 用） */
.menu-single-layout--full {
  grid-template-columns: 1fr;
}

.menu-single-layout__main {
  min-width: 0;
}

/* ==========================================================================
   症例カテゴリ ヒーローブロック（symptom-hero）
   ========================================================================== */

.symptom-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  margin-bottom: 40px;
  overflow: hidden;
}

/* 左カラム：テキストエリア */
.symptom-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 大見出し */
.symptom-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.12em;
  line-height: 1.1;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 20px;
}

.symptom-hero__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--dark);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* キャッチコピー */
.symptom-hero__catch {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--tiffany);
  margin: 20px 0 12px;
  line-height: 1.5;
}

/* リード文 */
.symptom-hero__lead {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--dark);
  margin: 0 0 28px;
}

/* 特徴バッジ一覧 */
.symptom-hero__badges {
  display: none;
  list-style: none;
  gap: 16px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.symptom-hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 88px;
  text-align: center;
}

.symptom-hero__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--tiffany);
  color: var(--tiffany);
  flex-shrink: 0;
}

.symptom-hero__badge-icon svg {
  width: 26px;
  height: 26px;
}

.symptom-hero__badge-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
}

/* 右カラム：ビジュアル */
.symptom-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.symptom-hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* タブレット以下 */
@media (max-width: 1024px) {
  .symptom-hero {
    grid-template-columns: 1fr;
  }

  .symptom-hero__text {
    padding: 36px 24px 28px;
  }

  .symptom-hero__visual {
    min-height: 280px;
  }

  .symptom-hero__visual-wave {
    display: none;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .symptom-hero__text {
    padding: 28px 20px 24px;
  }

  .symptom-hero__badges {
    gap: 12px;
  }

  .symptom-hero__badge {
    width: 76px;
  }

  .symptom-hero__badge-icon {
    width: 48px;
    height: 48px;
  }

  .symptom-hero__badge-icon svg {
    width: 22px;
    height: 22px;
  }

  .symptom-hero__visual {
    min-height: 140px;
  }
}

/* カテゴリアーカイブ：メイン先頭のカテゴリ名 */
.menu-single-layout__category-head {
  padding: 0 0 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(10, 186, 181, 0.12);
}

.menu-single-layout__category-title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

/* サイドバー全体 */
.menu-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ナビブロック */
.menu-sidebar__nav {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,186,181,0.08);
}

/* ナビヘッダー */
.menu-sidebar__nav-header {
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--tiffany-light) 100%);
  padding: 18px 20px 16px;
}

.menu-sidebar__nav-label {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.menu-sidebar__nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-sans);
  margin: 0;
  letter-spacing: 0.05em;
}

/* リスト */
.menu-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0 0;
}

.menu-sidebar__item {
  margin: 0;
  border-bottom: 1px solid #f0f8f7;
}

.menu-sidebar__item:last-child {
  border-bottom: none;
}

.menu-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  position: relative;
}

.menu-sidebar__link::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-top: 1.5px solid var(--tiffany-light);
  border-right: 1.5px solid var(--tiffany-light);
  rotate: 45deg;
  transition: border-color 0.15s, right 0.15s;
}

.menu-sidebar__link-icon {
  display: none;
}

.menu-sidebar__link-icon img {
  width: 36px;
  height: 27px;
  object-fit: cover;
  display: block;
}

.menu-sidebar__link-label {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.45;
  flex: 1;
  padding-right: 14px;
  transition: color 0.15s;
}

.menu-sidebar__link:hover {
  background: var(--tiffany-pale);
}

.menu-sidebar__link:hover .menu-sidebar__link-label {
  color: var(--tiffany);
}

.menu-sidebar__link:hover::after {
  border-color: var(--tiffany);
  right: 11px;
}

.menu-sidebar__item--current .menu-sidebar__link {
  background: var(--tiffany-pale);
  pointer-events: none;
}

.menu-sidebar__item--current .menu-sidebar__link-label {
  color: var(--tiffany);
  font-weight: 700;
}

.menu-sidebar__item--current .menu-sidebar__link::after {
  border-color: var(--tiffany);
}

/* 一覧リンク */
.menu-sidebar__all-link-wrap {
  padding: 12px 16px 16px;
  background: var(--tiffany-pale);
}

.menu-sidebar__all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tiffany);
  text-decoration: none;
  padding: 9px 12px;
  border: 1.5px solid var(--tiffany);
  border-radius: 6px;
  background: #fff;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.03em;
}

.menu-sidebar__all-link::before {
  content: '≡';
  font-size: 1.4rem;
  line-height: 1;
}

.menu-sidebar__all-link:hover {
  background: var(--tiffany);
  color: #fff;
}

/* CTAバナー */
.menu-sidebar__cta {
  background: linear-gradient(160deg, var(--tiffany-pale) 0%, #fff 100%);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(10,186,181,0.08);
  border: 1px solid #e0f2f1;
}

.menu-sidebar__cta-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.7;
  margin: 0;
}

.menu-sidebar__cta-btn {
  display: block;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: var(--tiffany);
  color: #fff;
  transition: opacity 0.15s, transform 0.15s;
  letter-spacing: 0.04em;
}

.menu-sidebar__cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.menu-sidebar__cta-btn--accident {
  background: var(--gold);
}

/* レスポンシブ：タブレット以下は1カラム */
@media (max-width: 1024px) {
  .menu-single-layout {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .menu-sidebar__nav {
    flex: 1 1 300px;
  }

  .menu-sidebar__cta {
    flex: 1 1 200px;
  }
}

@media (max-width: 768px) {
  .menu-single-layout {
    padding: 0 0 60px;
  }

  .menu-sidebar {
    flex-direction: column;
  }
}

/* ==========================================================================
   WordPress ギャラリー（施術の流れ）
   ========================================================================== */

.gallery {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f8fafa;
  border: 1px solid #e0eeee;
  display: flex;
  flex-direction: column;
}

.gallery-icon {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-icon a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-icon a:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--dark);
  padding: 10px 12px;
  margin: 0;
  background: #fff;
  flex: 1;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .gallery-columns-3,
  .gallery-columns-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-columns-2  { grid-template-columns: 1fr; }
  .gallery { gap: 12px; }
  .gallery-caption { font-size: 1.2rem; }
}

/* ============================================================
   症状ページ：関連するお悩み記事セクション
   ============================================================ */
.symptom-related-section {
  padding: 60px 0;
  background: var(--tiffany-bg);
}

.symptom-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .symptom-related__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.symptom-related__item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.symptom-related__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.symptom-related__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  text-decoration: none;
  color: var(--dark);
}

.symptom-related__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
}

.symptom-related__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.symptom-related__title {
  flex: 1;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
}

.symptom-related__arrow {
  flex-shrink: 0;
  color: var(--tiffany);
  font-size: 1.6rem;
}

/* ==========================================================================
   MENU ARCHIVE（症例一覧アーカイブ / カテゴリ別）
   ========================================================================== */

/* セクション全体 */
.menu-archive-section {
  padding: 56px 0 80px;
}

/* カテゴリアイコン一覧 */
.menu-category-list {
  margin-bottom: 56px;
}

.menu-category-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-category-list__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  border-radius: 12px;
  border: 1px solid rgba(10,186,181,0.12);
  background: #fff;
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.menu-category-list__link:hover {
  background: var(--tiffany-pale);
  box-shadow: 0 4px 16px rgba(10,186,181,0.14);
  transform: translateY(-3px);
}

.menu-category-list__icon {
  margin: 0;
  line-height: 0;
}

.menu-category-list__icon img {
  width: 80px;
  height: auto;
}

.menu-category-list__name {
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .menu-category-list__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .menu-category-list__link { font-size: 1.2rem; padding: 12px 6px; }
  .menu-category-list__icon img { width: 60px; }
}

/* カテゴリフィルターナビ */
.menu-archive__filter {
  display: none; /* 一旦非表示 */
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}

.menu-archive__filter-btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 500;
  border: 2px solid var(--tiffany);
  color: var(--tiffany);
  background: #fff;
  transition: background 0.2s, color 0.2s;
}

.menu-archive__filter-btn:hover,
.menu-archive__filter-btn.is-active {
  background: var(--tiffany);
  color: #fff;
}

/* 見出し */
.menu-archive__heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dark);
  border-left: 4px solid var(--tiffany);
  padding-left: 12px;
  margin: 0 0 24px;
  line-height: 1.4;
}

/* カードグリッド */
.menu-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* 「もっと見る」ボタン */
.menu-archive__more-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0 0;
}

.menu-archive__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: var(--tiffany);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(10,186,181,0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.menu-archive__more-btn:hover {
  background: var(--tiffany-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10,186,181,0.3);
}

.menu-archive__more-btn:disabled,
.menu-archive__more-btn.is-loading {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  box-shadow: 0 4px 10px rgba(10,186,181,0.18);
}

/* カード */
.menu-archive__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(10,186,181,0.08);
  box-shadow: 0 4px 20px rgba(10,186,181,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.menu-archive__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10,186,181,0.14);
}

.menu-archive__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

/* サムネイル */
.menu-archive__card-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-archive__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.menu-archive__card:hover .menu-archive__card-img img {
  transform: scale(1.04);
}

/* カード本文 */
.menu-archive__card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* カテゴリラベル */
.menu-archive__card-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.menu-archive__card-cat {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--tiffany);
  background: var(--tiffany-pale);
  padding: 2px 10px;
  border-radius: 999px;
}

/* タイトル */
.menu-archive__card-title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 8px;
}

/* キャッチコピー */
.menu-archive__card-catch {
  font-size: 1.3rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 詳しく見るリンク */
.menu-archive__card-more {
  display: inline-block;
  margin-top: auto;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--tiffany);
}

/* 空メッセージ */
.menu-archive__empty {
  text-align: center;
  color: var(--dark);
  padding: 60px 0;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .menu-archive__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-archive__grid { grid-template-columns: 1fr; }
  .menu-archive__filter { gap: 8px; }
  .menu-archive__filter-btn { font-size: 1.2rem; padding: 6px 16px; }
}

/* ============================================================
   スタッフモーダル（shop-staff__card クリック時）
============================================================ */

body.is-modal-open {
  overflow: hidden;
}

/* 全画面ラッパー */
.staff-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.staff-modal[hidden] {
  display: none;
}

/* オーバーレイ */
.staff-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 30, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

/* モーダル本体 */
.staff-modal__content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: staffModalIn 0.2s ease;
}

@keyframes staffModalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 閉じるボタン */
.staff-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
}

.staff-modal__close:hover {
  background: var(--tiffany);
  color: #fff;
}

.staff-modal__close svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
}

/* ── 内部レイアウト：写真上 / テキスト下 ── */
.staff-modal__inner {
  display: flex;
  flex-direction: column;
}

/* 写真エリア */
.staff-modal__img-wrap {
  width: 70%;
  margin: 30px auto 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.staff-modal__img-wrap[hidden] {
  display: none;
}

/* 写真なしのとき上も角丸 */
.staff-modal__img-wrap[hidden] + .staff-modal__info {
  border-radius: 20px;
}

.staff-modal__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* テキストエリア */
.staff-modal__info {
  padding: 32px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 役職 — staff-profile-header__position に準拠 */
.staff-modal__position {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tiffany);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.staff-modal__position[hidden] {
  display: none;
}

/* 氏名 — staff-profile-header__name に準拠 */
.staff-modal__name {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--tiffany-pale);
  margin-bottom: 24px;
}

/* 紹介文 — staff-profile-info__content に準拠 */
.staff-modal__text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
  margin: 0;
  flex: 1;
}

.staff-modal__text[hidden] {
  display: none;
}

/* ブロックエディタ出力 */
.staff-modal__text p {
  margin: 0 0 1em;
}

.staff-modal__text p:last-child {
  margin-bottom: 0;
}

.staff-modal__text ul,
.staff-modal__text ol {
  margin: 0 0 1em 1.4em;
  padding: 0;
}

/* 見出し — staff-profile-info__catch の左ボーダースタイルに準拠 */
.staff-modal__text h2,
.staff-modal__text h3,
.staff-modal__text h4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.8;
  background: var(--tiffany-bg);
  border-left: 4px solid var(--tiffany);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin: 1.4em 0 0.8em;
}

.staff-modal__text img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.staff-modal__link {
  display: none;
}

.staff-modal__footer {
  margin-top: 28px;
  text-align: center;
}

.staff-modal__close-bottom {
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  border: 2px solid var(--tiffany);
  background: #fff;
  color: var(--tiffany);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.staff-modal__close-bottom:hover {
  background: var(--tiffany);
  color: #fff;
}

/* ── タブレット：写真を上に ── */
@media (max-width: 640px) {
  .staff-modal {
    padding: 16px 12px;
    align-items: flex-end;
  }

  .staff-modal__content {
    max-width: 100%;
    max-height: 90svh;
    border-radius: 20px 20px 0 0;
  }

  .staff-modal__info {
    padding: 24px 24px 32px;
  }
}

/* ============================================================
   店舗個別ページ（single-sinagawa_shop）追加スタイル
============================================================ */

/* ── ショップヒーロー ── */
.shop-hero {
  position: relative;
  background: var(--tiffany);
  color: #fff;
  padding: 80px 0 64px;
  overflow: hidden;
}

.shop-hero--has-image {
  padding: 120px 0 80px;
}

.shop-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shop-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,186,181,0.75) 0%, rgba(26,35,50,0.65) 100%);
  z-index: 1;
}

.shop-hero__inner {
  position: relative;
  z-index: 2;
}

.shop-hero__label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.shop-hero__catch {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin: 0 0 8px;
}

.shop-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
}

.shop-hero__address {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 20px;
  line-height: 1.7;
}

.shop-hero__access {
  display: block;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.shop-hero__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 40px;
  padding: 10px 24px;
  transition: background 0.2s;
}

.shop-hero__tel:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

/* ── ページ内ナビ ── */
.shop-page-nav {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.shop-page-nav__list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}

.shop-page-nav__list li a {
  display: block;
  padding: 14px 24px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.shop-page-nav__list li a:hover {
  color: var(--tiffany);
  border-bottom-color: var(--tiffany);
}

/* ── 保険証セクション ── */
.shop-hokensho-section {
  background: var(--tiffany-pale);
  border-left: 4px solid var(--tiffany);
  padding: 20px 0;
}

.shop-hokensho-section__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--dark);
  margin: 0;
}

/* ── 店舗情報セクション ── */
.shop-info-section {
  padding: 72px 0 64px;
}

.shop-info-section__intro {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 40px;
}

/* 店舗情報画像＋テキストギャラリー */
.shop-info-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.shop-info-gallery__figure {
  margin: 0 0 12px;
  border-radius: 12px;
  overflow: hidden;
}

.shop-info-gallery__figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.shop-info-gallery__item:hover .shop-info-gallery__figure img {
  transform: scale(1.04);
}

.shop-info-gallery__text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}

/* ── 写真館セクション ── */
.shop-pictures-section {
  padding: 72px 0;
  background: var(--tiffany-bg);
}

.shop-pictures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-pictures-grid__item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.shop-pictures-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.shop-pictures-grid__item:hover img {
  transform: scale(1.05);
}

/* ── 施術メニュー＆料金セクション ── */
.shop-menu-section {
  padding: 72px 0;
}

.shop-menu-list {
  display: grid;
  gap: 32px;
}

.shop-menu-item {
  border: 1px solid rgba(10,186,181,0.2);
  border-radius: 16px;
  overflow: hidden;
}

.shop-menu-item__name {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--tiffany-light) 100%);
  padding: 14px 24px;
  margin: 0;
}

.shop-menu-item__price {
  padding: 20px 24px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--dark);
}

.shop-menu-item__price ul,
.shop-menu-item__price ol {
  margin: 0;
  padding-left: 20px;
}

.shop-menu-item__price li {
  margin-bottom: 6px;
}

/* ── アクセスセクション ── */
.shop-access-section {
  padding: 72px 0;
  background: var(--tiffany-bg);
}

.shop-access-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.shop-access-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  display: block;
  border: none;
}

.shop-access-info__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 16px;
}

.shop-access-info__title svg {
  color: var(--tiffany);
  flex-shrink: 0;
}

.shop-access-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-access-info__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--dark);
  padding-left: 16px;
  position: relative;
}

.shop-access-info__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--tiffany);
  border-radius: 50%;
}

/* ストリートビュー＆アクセス動画 */
.shop-access-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.shop-access-media__title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tiffany-pale);
}

.shop-access-media__embed {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.shop-access-media__embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ── ページ下部 CTA ── */
.shop-cta-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--tiffany-pale) 0%, #fff 100%);
}

.shop-cta-section__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.btn-clinic-tel--large,
.btn-line--large,
.btn-official--large {
  font-size: 1.6rem;
  padding: 16px 32px;
  min-width: 260px;
}

.btn-clinic-tel--large .btn-clinic-tel__number {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}

.shop-cta-section__back {
  text-align: center;
  margin: 0;
}

/* ── レスポンシブ ── */
@media (min-width: 768px) {
  .shop-access-layout {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }

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

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

@media (min-width: 1024px) {
  .shop-hero--has-image {
    padding: 160px 0 100px;
  }

  .shop-pictures-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 767px) {
  .shop-hero {
    padding: 60px 0 48px;
  }

  .shop-hero--has-image {
    padding: 80px 0 56px;
  }

  .shop-page-nav__list li a {
    padding: 12px 16px;
    font-size: 1.2rem;
  }

  .shop-access-map iframe {
    height: 280px;
  }

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

  .btn-clinic-tel--large,
  .btn-line--large,
  .btn-official--large {
    min-width: unset;
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   ABOUT PAGE — はじめての方へ
============================================================ */

/* セクション共通 */
.about-section {
  padding: 72px 0;
}

.about-section--bg {
  background: var(--tiffany-bg);
}

/* ---- こんな方にぴったりです ---- */
.about-target-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.about-target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--tiffany-pale);
  border-radius: 12px;
  padding: 20px 20px 20px 20px;
}

.about-target-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tiffany-pale);
  color: var(--tiffany);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-target-item__text {
  font-size: 1.5rem;
  line-height: 1.65;
  padding-top: 6px;
}

/* ---- 選ばれる理由 ---- */
.about-reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.about-reason-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid #e8f0f2;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.about-reason-item__num {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--tiffany-light);
  line-height: 1;
  letter-spacing: .02em;
}

.about-reason-item__body {
  flex: 1;
}

.about-reason-item__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.about-reason-item__icon {
  flex-shrink: 0;
  color: var(--tiffany);
}

.about-reason-item__desc {
  font-size: 1.6rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ---- 来院の流れ ---- */
.about-flow-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: none;
  position: relative;
}

.about-flow-list::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--tiffany-pale);
}

.about-flow-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}

.about-flow-item:last-child {
  padding-bottom: 0;
}

.about-flow-item__step {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--tiffany);
  color: #fff;
  border-radius: 8px;
  padding: 12px 8px 10px;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.about-flow-item__step span {
  font-size: 3.2rem;
  line-height: 1;
}

.about-flow-item__body {
  flex: 1;
  background: #fff;
  border: 1px solid #e8f0f2;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,.03);
}

.about-flow-item__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.about-flow-item__desc {
  font-size: 1.6rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ---- FAQ ---- */
.about-faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-faq-item {
  border: 1px solid #e0ecef;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.about-faq-item__q {
  border-bottom: none;
}

.about-faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: background .15s;
}

.about-faq-item__btn:hover {
  background: var(--tiffany-bg);
}

.about-faq-item__arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--tiffany);
  transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-faq-item__btn[aria-expanded="true"] .about-faq-item__arrow {
  transform: rotate(180deg);
}

.about-faq-item__label {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tiffany);
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-faq-item__label--a {
  background: var(--gold);
}

/* 開閉アニメーション用ラッパー（height + opacity、実高はJSで設定） */
.about-faq-item__answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height .35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity .25s ease;
  will-change: height, opacity;
}

.about-faq-item__answer[data-open="true"] {
  opacity: 1;
}

.about-faq-item__a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px 20px;
  border-top: 1px solid #eef3f5;
}

.about-faq-item__a p {
  color: var(--gray);
  line-height: 1.8;
  padding-top: 6px;
}

.about-faq-item__a a {
  color: var(--tiffany);
  text-decoration: underline;
}

.about-faq-more {
  margin-top: 32px;
  text-align: center;
}

.about-faq-more__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tiffany);
  font-weight: 700;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--tiffany);
  padding-bottom: 2px;
  transition: opacity .2s;
}

.about-faq-more__link:hover {
  opacity: .7;
}

/* ---- CTA バナー ---- */
.about-final-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--tiffany) 0%, #0880a0 100%);
}

.about-final-cta__inner {
  text-align: center;
  color: #fff;
}

.about-final-cta__heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-final-cta__sub {
  font-size: 1.5rem;
  opacity: .9;
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all .2s;
  text-decoration: none;
}

.about-final-cta__btn--primary {
  background: #fff;
  color: var(--tiffany);
}

.about-final-cta__btn--primary:hover {
  background: var(--tiffany-pale);
}

.about-final-cta__btn--outline {
  border: 2px solid rgba(255,255,255,.8);
  color: #fff;
}

.about-final-cta__btn--outline:hover {
  background: rgba(255,255,255,.15);
}

/* ============================================================
   ABOUT PAGE — レスポンシブ
============================================================ */
@media (max-width: 767px) {
  .about-section {
    padding: 48px 0;
  }

  .about-target-list {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .about-reason-list {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .about-flow-list::before {
    left: 36px;
  }

  .about-flow-item__step {
    width: 72px;
  }

  .about-flow-item__body {
    padding: 16px;
  }

  .about-faq-item__btn {
    padding: 16px;
    font-size: 1.4rem;
  }

  .about-faq-item__a {
    padding: 0 16px 16px;
  }

  .about-final-cta {
    padding: 48px 0;
  }

  .about-final-cta__heading {
    font-size: 2rem;
  }

  .about-final-cta__btns {
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
  }

  .about-final-cta__btn {
    justify-content: center;
  }
}

/* ============================================================
   PHILOSOPHY PAGE — 品川接骨院の流儀
============================================================ */

/* セクション共通 */
.philosophy-section {
  padding-block: 80px;
}

.philosophy-section--bg {
  background: var(--tiffany-bg);
}

/* ステップリスト */
.philosophy-step-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}

.philosophy-step {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0 0 0 / 0.06);
}

.philosophy-step__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.philosophy-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tiffany);
  color: #fff;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.philosophy-step__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
}

/* STEP 1: 画像 + テキスト（縦積み） */
.philosophy-step__body--media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philosophy-step__img img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.philosophy-step__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.5rem;
}

/* STEP 2〜4: 画像 + キャプション */
.philosophy-step__figure {
  margin: 0;
}

.philosophy-step__figure img {
  width: 100%;
  border-radius: 8px;
}

.philosophy-step__caption {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--tiffany-pale);
  border-left: 4px solid var(--tiffany);
  border-radius: 0 6px 6px 0;
  color: var(--gray);
  font-size: 1.4rem;
  line-height: 1.8;
}

/* 偶数ステップは背景白 */
.philosophy-step--alt {
  background: #fff;
}

/* 比較バナー */
.philosophy-comparison {
  background: var(--tiffany);
  padding-block: 64px;
  color: #fff;
}

.philosophy-comparison__title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 36px;
  color: #fff;
}

.philosophy-comparison__title span {
  color: var(--gold-light);
}

.philosophy-comparison__table-wrap {
  overflow-x: auto;
}

.philosophy-comparison__table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255 255 255 / 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.philosophy-comparison__table th,
.philosophy-comparison__table td {
  padding: 14px 16px;
  border: 1px solid rgba(255 255 255 / 0.2);
  text-align: left;
  vertical-align: middle;
}

.philosophy-comparison__table thead th {
  background: rgba(255 255 255 / 0.15);
  font-weight: 700;
  font-family: var(--font-serif);
}

.philosophy-comparison__th--us {
  background: rgba(196 163 90 / 0.3) !important;
  color: #fff;
}

.philosophy-comparison__table tbody td:first-child {
  font-weight: 600;
  background: rgba(255 255 255 / 0.06);
}

/* モルフォセラピー説明 */
.philosophy-morpho {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.philosophy-morpho__media img {
  width: 100%;
  border-radius: 8px;
}

.philosophy-morpho__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--tiffany);
  margin-bottom: 20px;
}

.philosophy-morpho__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--gray);
  line-height: 1.8;
}

.philosophy-morpho-illust {
  margin-top: 48px;
  text-align: center;
}

.philosophy-morpho-illust img {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-inline: auto;
  border-radius: 8px;
}

.philosophy-note {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--tiffany-pale);
  border-left: 4px solid var(--tiffany-light);
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--gray);
  line-height: 1.8;
}

/* 花山先生の背景テキスト */
.philosophy-founder {
  margin-top: 40px;
  color: var(--gray);
  line-height: 1.9;
}

/* 規則性の発見ボックス */
.philosophy-principle {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--tiffany-pale);
  border-left: 4px solid var(--tiffany);
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--dark);
  line-height: 1.9;
}

.philosophy-principle strong {
  color: var(--tiffany);
}

/* 関連症状テキストブロック */
.philosophy-symptom-text {
  margin-top: 40px;
  padding: 32px;
  background: #fff;
  border: 1px solid #e0e8ea;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philosophy-symptom-text__lead {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.7rem;
}

.philosophy-symptom-text__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.philosophy-symptom-text__list li {
  padding: 12px 16px;
  background: var(--tiffany-bg);
  border-radius: 6px;
  color: var(--gray);
  line-height: 1.8;
}

.philosophy-symptom-text__list li strong {
  color: var(--tiffany);
  font-weight: 700;
  margin-right: 4px;
}

.philosophy-symptom-text > p:last-child {
  color: var(--gray);
  line-height: 1.9;
}

/* 普及・家庭での活用 */
.philosophy-spread {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--tiffany-pale);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--gray);
  line-height: 1.9;
}

/* 症状グリッド */
.philosophy-symptoms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.philosophy-symptoms__group {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0 0 0 / 0.06);
}

.philosophy-symptoms__area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--tiffany);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tiffany-pale);
}

.philosophy-symptoms__area-icon {
  color: var(--tiffany-light);
}

.philosophy-symptoms__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.philosophy-symptoms__list li {
  color: var(--gray);
  padding-left: 14px;
  position: relative;
}

.philosophy-symptoms__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tiffany-light);
}

/* 代表メッセージ */
.philosophy-director {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.philosophy-director__photo img {
  width: 100%;
  border-radius: 8px;
}

.philosophy-director__name {
  margin-top: 12px;
  font-size: 1.4rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}

.philosophy-director__message {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--gray);
  line-height: 1.9;
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}

/* 動画グリッド */
.philosophy-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.philosophy-video__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
}

.philosophy-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.philosophy-video__caption {
  margin-top: 12px;
  font-size: 1.5rem;
  color: var(--gray);
  text-align: center;
}

/* 公認講師 */
.philosophy-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.philosophy-cert__badge {
  text-align: center;
}

.philosophy-cert__badge img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(10 186 181 / 0.15);
}

.philosophy-cert__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.philosophy-cert__text {
  color: var(--gray);
  line-height: 1.8;
  text-align: center;
}

.philosophy-cert__staff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.philosophy-cert__staff img {
  width: 100%;
  border-radius: 6px;
}

/* 体験者の声 */
.philosophy-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.philosophy-testimonial img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0 0 0 / 0.08);
}

/* ============================================================
   PHILOSOPHY — Responsive (tablet 768px)
============================================================ */
@media (max-width: 768px) {

  .philosophy-section {
    padding-block: 60px;
  }

  .philosophy-step-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .philosophy-step {
    padding: 24px;
  }

  .philosophy-morpho {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .philosophy-symptoms {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .philosophy-director {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .philosophy-director__photo img {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .philosophy-director__message {
    padding-left: 20px;
  }

  .philosophy-videos {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .philosophy-cert__staff {
    grid-template-columns: repeat(3, 1fr);
  }

  .philosophy-testimonials {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .philosophy-comparison__title {
    font-size: 1.4rem;
  }
}

/* ============================================================
   PHILOSOPHY — Responsive (mobile 480px)
============================================================ */
@media (max-width: 480px) {

  .philosophy-step__title {
    font-size: 1.8rem;
  }

  .philosophy-symptom-text {
    padding: 16px;
  }

  .philosophy-principle {
    padding: 16px 18px;
  }

  .philosophy-symptoms {
    grid-template-columns: 1fr;
  }

  .philosophy-cert__staff {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .philosophy-testimonials {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   店舗一覧セクション（全ページ共通）
============================================================ */
.clinics-section {
  padding: 72px 0 80px;
  background: var(--tiffany-bg);
  border-top: 1px solid rgba(10, 186, 181, 0.2);
}

.clinics-tagline {
  text-align: center;
  color: var(--gray);
  font-size: 1.5rem;
  margin: -8px 0 40px;
}

.clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.clinic-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0eeee;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.clinic-card:hover {
  box-shadow: 0 6px 24px rgba(10 186 181 / 0.15);
  transform: translateY(-3px);
}

.clinic-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--tiffany-pale);
}

.clinic-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.clinic-card:hover .clinic-card__photo img {
  transform: scale(1.05);
}

.clinic-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  flex: 1;
}

.clinic-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clinic-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--tiffany-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tiffany);
}

.clinic-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.clinic-card__name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.clinic-card__address {
  font-size: 1.3rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.clinic-card__link {
  margin-top: auto;
  font-size: 1.3rem;
  color: var(--tiffany);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .clinics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .clinics-section {
    padding: 48px 0 56px;
  }

  .clinics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .clinic-card__body { padding: 14px; gap: 8px; }
  .clinic-card__header { gap: 8px; }
  .clinic-card__icon { width: 32px; height: 32px; }
  .clinic-card__icon svg { width: 14px; height: 14px; }
  .clinic-card__name { font-size: 1.5rem; line-height: 1.3; }
  .clinic-card__address { font-size: 1.2rem; line-height: 1.6; }
  .clinic-card__link { font-size: 1.2rem; }
}

/* ============================================================
   ページトップボタン
============================================================ */
.pagetop {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--tiffany);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10 186 181 / 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pagetop:hover {
  background: var(--tiffany-light);
}

@media (max-width: 768px) {
  .pagetop {
    right: 16px;
    bottom: 24px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================================
   SECTION HEAD（共通見出しブロック）
============================================================ */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head__en {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  color: var(--tiffany);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-head__ja {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
}

.section-head__note {
  font-size: 1.4rem;
  color: var(--gray);
  margin: 0;
}

/* ============================================================
   CONTACT HERO
============================================================ */
.contact-hero {
  background: linear-gradient(135deg, #0a8f8c 0%, var(--tiffany) 45%, var(--tiffany-light) 100%);
  color: #fff;
  padding: 72px 16px 80px;
  text-align: center;
}

.contact-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-hero__label {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  opacity: 0.85;
  margin-bottom: 12px;
}

.contact-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.3;
}

.contact-hero__sub {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  opacity: 0.92;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 56px 16px 64px;
  }
}

/* ============================================================
   CONTACT GUIDE（ガイドパネル）
============================================================ */
.contact-guide {
  padding: 80px 0 72px;
  background: var(--tiffany-bg);
}

.contact-guide__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-guide-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 28px;
  background: #fff;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(10,186,181,0.08);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-guide-card:hover {
  border-color: var(--tiffany);
  box-shadow: 0 6px 24px rgba(10,186,181,0.18);
  transform: translateY(-4px);
}

.contact-guide-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--tiffany-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tiffany);
  flex-shrink: 0;
}

.contact-guide-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.contact-guide-card__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

.contact-guide-card__desc {
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.contact-guide-card__link {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tiffany);
  margin-top: auto;
}

@media (max-width: 1024px) {
  .contact-guide__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
  }

  .contact-guide-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 24px 24px;
    gap: 20px;
  }

  .contact-guide-card__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }
}

@media (max-width: 600px) {
  .contact-guide {
    padding: 56px 0 48px;
  }

  .contact-guide__cards {
    max-width: 100%;
  }

  .contact-guide-card {
    flex-direction: row;
    padding: 20px;
  }

  .contact-guide-card__icon {
    width: 48px;
    height: 48px;
  }

  .contact-guide-card__title {
    font-size: 1.6rem;
  }
}

/* ============================================================
   CONTACT SHOPS（店舗一覧カード）
============================================================ */
.contact-shops {
  padding: 80px 0 88px;
  background: #fff;
}

.contact-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e4eef0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10,186,181,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.contact-shop-card:hover {
  box-shadow: 0 6px 20px rgba(10,186,181,0.14);
  transform: translateY(-3px);
}

/* カード上部のサムネイル（店舗ページへのリンク） */
.contact-shop-card__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 400 / 260;
  overflow: hidden;
  background: var(--tiffany-pale);
}

.contact-shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.contact-shop-card:hover .contact-shop-card__img {
  transform: scale(1.05);
}

.contact-shop-card__no-img {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--tiffany-pale), var(--tiffany-bg));
}

.contact-shop-card__head {
  padding: 20px 20px 16px;
  flex: 1;
  border-bottom: 1px solid #e4eef0;
}

.contact-shop-card__name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}

.contact-shop-card__address {
  font-size: 1.2rem;
  color: var(--gray);
  margin: 0 0 4px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.6;
}

.contact-shop-card__address svg {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--tiffany);
}

.contact-shop-card__access {
  font-size: 1.2rem;
  color: var(--tiffany);
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
}

.contact-shop-card__actions {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-shop-card__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.contact-shop-card__tel:hover {
  color: var(--tiffany);
}

.contact-shop-card__tel svg {
  stroke: var(--tiffany);
  flex-shrink: 0;
}

.contact-shop-card__links {
  display: flex;
  gap: 8px;
}

.contact-shop-card__line-btn,
.contact-shop-card__detail-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.contact-shop-card__line-btn {
  background: #06c755;
  color: #fff;
}

.contact-shop-card__line-btn:hover {
  background: #05b34c;
}

.contact-shop-card__detail-btn {
  background: var(--tiffany-pale);
  color: var(--tiffany);
  border: 1px solid var(--tiffany-light);
}

.contact-shop-card__detail-btn:hover {
  background: var(--tiffany);
  color: #fff;
}

@media (max-width: 1024px) {
  .contact-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-shops {
    padding: 56px 0 64px;
  }

  .contact-shop-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-shop-card__tel {
    font-size: 1.8rem;
  }
}

/* ============================================================
   CONTACT FORM SECTION（総合フォーム）
============================================================ */
.contact-form-section {
  padding: 80px 0 100px;
  background: var(--tiffany-bg);
}

.contact-form-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-left: 4px solid var(--tiffany);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(10,186,181,0.07);
}

.contact-form-notice__icon {
  color: var(--tiffany);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-notice__text {
  font-size: 1.4rem;
  color: var(--gray);
  line-height: 1.85;
  margin: 0;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(10,186,181,0.08);
}

/* CF7のスタイル上書き */
.contact-form-wrap .wpcf7-form p {
  margin-bottom: 20px;
}

.contact-form-wrap .wpcf7-form label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form input[type="tel"],
.contact-form-wrap .wpcf7-form textarea,
.contact-form-wrap .wpcf7-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0e6e5;
  border-radius: 8px;
  font-size: 1.5rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.contact-form-wrap .wpcf7-form input:focus,
.contact-form-wrap .wpcf7-form textarea:focus {
  border-color: var(--tiffany);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10,186,181,0.12);
}

.contact-form-wrap .wpcf7-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-wrap .wpcf7-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 56px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-light));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(10,186,181,0.3);
  transition: box-shadow 0.2s, transform 0.2s;
}

.contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  box-shadow: 0 6px 28px rgba(10,186,181,0.4);
  transform: translateY(-2px);
}

/* フォールバックフォーム */
.contact-fallback-form__row {
  margin-bottom: 20px;
}

.contact-fallback-form__label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-fallback-form__req {
  display: inline-block;
  font-size: 1.1rem;
  background: var(--tiffany);
  color: #fff;
  padding: 1px 7px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 500;
}

.contact-fallback-form__input,
.contact-fallback-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0e6e5;
  border-radius: 8px;
  font-size: 1.5rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.contact-fallback-form__input:focus,
.contact-fallback-form__textarea:focus {
  border-color: var(--tiffany);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10,186,181,0.12);
}

.contact-fallback-form__textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-fallback-form__submit {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 56px 0 72px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .contact-form-notice {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   店舗ページ SP固定フッター CTA
============================================================ */
.shop-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .shop-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid rgba(10, 186, 181, 0.2);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }

  .shop-sticky-cta__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }

  .shop-sticky-cta__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--tiffany);
    background: var(--tiffany-pale);
  }

  .shop-sticky-cta__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .shop-sticky-cta__info {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .shop-sticky-cta__shop {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
  }

  .shop-sticky-cta__access {
    margin: 3px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.4;
  }

  .shop-sticky-cta__access svg {
    width: 12px;
    height: 12px;
    margin-top: 2px;
    stroke: var(--tiffany);
    flex-shrink: 0;
  }

  .shop-sticky-cta__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }


  .shop-sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 48px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .shop-sticky-cta__btn:active {
    opacity: 0.85;
  }

  .shop-sticky-cta__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .shop-sticky-cta__btn--tel {
    background: var(--tiffany);
  }

  .shop-sticky-cta__btn--line {
    background: #06C755;
  }

}

/* ============================================================
   全ページ共通 固定フッター 店舗一覧CTA（SP/PC両対応）
   ※ 店舗詳細ページでは shop-sticky-cta（電話・LINE）の上に
     サイズダウン版（.sp-shop-cta-wrap--with-sticky）を重ねて表示
   ※ 旧称 sp-shop-cta だが PC でも表示するため全画面幅に適用
============================================================ */

  /* ラッパ（ボタン＋パネルをまとめて画面下に固定） */
  .sp-shop-cta-wrap {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
  }

  /* ドロワーオープン時はSP CTAを隠してスクロール領域を確保 */
  body.is-drawer-open .sp-shop-cta-wrap,
  body.is-drawer-open .sp-shop-cta-overlay,
  body.is-drawer-open .shop-sticky-cta {
    display: none !important;
  }
  body.is-drawer-open {
    overflow: hidden;
  }
  html:has(body.is-drawer-open) {
    overflow: hidden;
  }

  /* オーバーレイ */
  .sp-shop-cta-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 940;
    background: rgba(26, 35, 50, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .sp-shop-cta-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* 帯ボタン本体（凸型FAB接合デザイン）
     ・帯が下部を埋め、中央に大きな丸帯（バブル）が上に飛び出す
     ・<button> 全体がタップ領域（凸部分も含めて反応） */
  .sp-shop-cta {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* 底面の帯（フッターと馴染ませる下地） */
  .sp-shop-cta__bar {
    display: block;
    width: 100%;
    height: calc(56px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: linear-gradient(180deg, rgba(10, 186, 181, 0.92) 0%, var(--tiffany) 100%);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  }

  /* 中央の凸ピル（メインの押下対象） */
  .sp-shop-cta__bubble {
    position: absolute;
    left: 50%;
    bottom: calc(8px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 240px;
    height: 49px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 100%);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow:
      0 8px 24px rgba(240, 124, 30, 0.45),
      0 2px 6px rgba(0, 0, 0, 0.12),
      0 0 0 4px rgba(255, 255, 255, 0.95);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  }

  /* タップ時のフィードバック（押し込み） */
  .sp-shop-cta:active .sp-shop-cta__bubble {
    transform: translateX(-50%) translateY(2px) scale(0.97);
    background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
    box-shadow:
      0 4px 12px rgba(240, 124, 30, 0.5),
      0 1px 3px rgba(0, 0, 0, 0.12),
      0 0 0 4px rgba(255, 255, 255, 0.95);
  }

  /* 注意喚起の弱い脈動（閉じている時のみ） */
  @keyframes sp-shop-cta-pulse {
    0%, 100% {
      box-shadow:
        0 8px 24px rgba(240, 124, 30, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.12),
        0 0 0 4px rgba(255, 255, 255, 0.95),
        0 0 0 0 rgba(240, 124, 30, 0.5);
    }
    50% {
      box-shadow:
        0 8px 24px rgba(240, 124, 30, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.12),
        0 0 0 4px rgba(255, 255, 255, 0.95),
        0 0 0 10px rgba(240, 124, 30, 0);
    }
  }

  .sp-shop-cta[aria-expanded="false"] .sp-shop-cta__bubble {
    animation: sp-shop-cta-pulse 2.4s ease-out infinite;
  }

  @media (prefers-reduced-motion: reduce) {
    .sp-shop-cta[aria-expanded="false"] .sp-shop-cta__bubble {
      animation: none;
    }
    .sp-shop-cta__bubble,
    .sp-shop-cta__chevron {
      transition: none;
    }
  }

  /* 開いている時はバブルを濃いオレンジに沈める（状態が一目でわかる） */
  .sp-shop-cta[aria-expanded="true"] .sp-shop-cta__bubble {
    background: var(--orange-dark);
    color: #fff;
    box-shadow:
      0 8px 24px rgba(217, 106, 16, 0.45),
      0 2px 6px rgba(0, 0, 0, 0.12),
      0 0 0 4px #fff;
    animation: none;
  }

  .sp-shop-cta__icon,
  .sp-shop-cta__chevron {
    flex-shrink: 0;
  }

  .sp-shop-cta__label {
    line-height: 1;
  }

  /* 開閉状態に応じてラベルを切り替える */
  .sp-shop-cta__label--close {
    display: none;
  }

  .sp-shop-cta[aria-expanded="true"] .sp-shop-cta__label--open {
    display: none;
  }

  .sp-shop-cta[aria-expanded="true"] .sp-shop-cta__label--close {
    display: inline;
  }

  /* シェブロン回転（閉じ＝上向き／開き＝下向き） */
  .sp-shop-cta__chevron {
    transition: transform 0.25s ease;
  }

  .sp-shop-cta[aria-expanded="true"] .sp-shop-cta__chevron {
    transform: rotate(180deg);
  }

  /* 店舗リストパネル
     ・帯（56px）の上に重なる
     ・バブル（凸ピル）より上層に置き、パネル展開中はバブルがリストを覆わないようにする */
  .sp-shop-cta-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(56px + env(safe-area-inset-bottom));
    z-index: 2;
    max-height: calc(100vh - 56px - env(safe-area-inset-bottom) - 16px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-top: 1px solid rgba(10, 186, 181, 0.2);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .sp-shop-cta-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sp-shop-cta-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(10, 186, 181, 0.12);
    background: var(--tiffany-bg);
  }

  .sp-shop-cta-panel__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.08em;
  }

  .sp-shop-cta-panel__close {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid rgba(10, 186, 181, 0.4);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--tiffany);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }

  .sp-shop-cta-panel__close:active {
    background: var(--tiffany);
    color: #fff;
  }

  .sp-shop-cta-panel__close svg {
    flex-shrink: 0;
  }

  .sp-shop-cta-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sp-shop-cta-list > li + li {
    border-top: 1px solid rgba(10, 186, 181, 0.1);
  }

  /* 1行アイテム：写真／本文／矢印 */
  .sp-shop-cta-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--dark);
    text-decoration: none;
    transition: background 0.15s;
  }

  .sp-shop-cta-item:active {
    background: var(--tiffany-bg);
  }

  .sp-shop-cta-item__thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--tiffany-pale);
  }

  .sp-shop-cta-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .sp-shop-cta-item__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .sp-shop-cta-item__name {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
  }

  .sp-shop-cta-item__access {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--gray);
  }

  .sp-shop-cta-item__access svg {
    width: 12px;
    height: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    stroke: var(--tiffany);
  }

  .sp-shop-cta-item__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tiffany);
  }

  /* 固定フッターが画面下を占めるので、本文の下に余白を確保
     ・帯 56px ＋ バブルの凸ぶん（24px 程度）＝ 約 96px */
  body main {
    padding-bottom: 96px;
  }

  /* pagetop ボタンを固定フッター（バブル）上に押し上げる */
  .pagetop {
    bottom: 96px;
  }

  /* 店舗詳細ページ（shop-sticky-cta 表示時）の専用ルール
     ・最下段：電話・LINEバー（約120px）
     ・その上：店舗一覧バブル（小さめ）
     ※ shop-sticky-cta はSPでしか出ないため、サイズダウン上書きはSP限定 */

  @media (max-width: 768px) {
  /* 店舗一覧ラッパは電話・LINEバーの上に重ねる */
  .sp-shop-cta-wrap--with-sticky {
    bottom: 120px;
  }

  /* 帯（背景グラデ）は不要、バブルだけ浮かせる */
  .sp-shop-cta-wrap--with-sticky .sp-shop-cta__bar {
    display: none;
  }

  /* バブルをサイズダウン */
  .sp-shop-cta-wrap--with-sticky .sp-shop-cta__bubble {
    position: static;
    transform: none;
    min-width: 0;
    height: 36px;
    padding: 0 16px;
    margin: 0 auto 6px;
    font-size: 1.3rem;
    gap: 6px;
  }

  .sp-shop-cta-wrap--with-sticky .sp-shop-cta:active .sp-shop-cta__bubble {
    transform: translateY(1px) scale(0.97);
  }

  .sp-shop-cta-wrap--with-sticky .sp-shop-cta__icon {
    width: 16px;
    height: 16px;
  }

  .sp-shop-cta-wrap--with-sticky .sp-shop-cta__chevron {
    width: 12px;
    height: 12px;
  }

  /* 開いている時のバブル位置補正（FAB接合の transform を上書き） */
  .sp-shop-cta-wrap--with-sticky .sp-shop-cta[aria-expanded="true"] .sp-shop-cta__bubble {
    transform: none;
  }

  /* パネルは店舗一覧ラッパの直上に出す（wrapがbottom 120pxに上がっているのでそのままでOK） */
  .sp-shop-cta-wrap--with-sticky .sp-shop-cta-panel {
    bottom: calc(36px + 12px + env(safe-area-inset-bottom));
    max-height: calc(100vh - 120px - 36px - env(safe-area-inset-bottom) - 16px);
  }

  /* 本文の下余白：電話・LINEバー（120px）＋ バブル（36px+6px）＋ 余裕 */
  body.single-shop main,
  body.single-sinagawa_shop main {
    padding-bottom: 172px;
  }

  body.single-shop .pagetop,
  body.single-sinagawa_shop .pagetop {
    bottom: 180px;
  }
  }
  /* end of @media (max-width: 768px) for --with-sticky */

/* PC：店舗リストパネルは中央寄せで横幅700px程度に絞る */
@media (min-width: 769px) {
  .sp-shop-cta-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(100%);
    width: min(700px, calc(100% - 32px));
    border-radius: 16px 16px 0 0;
  }

  .sp-shop-cta-panel.is-open {
    transform: translateX(-50%) translateY(0);
  }

  /* PC：バーは画面下端に着床、バブルだけ浮かせて目立たせる */
  .sp-shop-cta__bar {
    height: 24px;
  }

  /* バブルをバー上端からさらに上に浮かす */
  .sp-shop-cta__bubble {
    bottom: 16px;
  }

  /* タップ／開いた状態の transform も bottom 16px 起点に合わせて再宣言 */
  .sp-shop-cta:active .sp-shop-cta__bubble {
    transform: translateX(-50%) translateY(2px) scale(0.97);
  }

  /* パネルの下端基準も浮かせたバブルに合わせる */
  .sp-shop-cta-panel {
    bottom: calc(24px + 49px + 16px + 12px);
    max-height: calc(100vh - 24px - 49px - 16px - 32px);
  }

  /* 本文padding：バー24px ＋ バブル49px ＋ 浮き16px ＋ 余裕 */
  body main {
    padding-bottom: 112px;
  }
  .pagetop {
    bottom: 112px;
  }

  /* PC: ホバー時のアニメーション
     ・バブルがふわっと持ち上がり、シャドウが強調
     ・アイコンが軽く揺れる
     ・シェブロンが小さく上にバウンス */
  .sp-shop-cta:hover .sp-shop-cta__bubble {
    transform: translateX(-50%) translateY(-4px);
    box-shadow:
      0 14px 32px rgba(10, 186, 181, 0.5),
      0 4px 10px rgba(0, 0, 0, 0.12),
      0 0 0 4px #fff;
    animation: none;
  }

  .sp-shop-cta[aria-expanded="true"]:hover .sp-shop-cta__bubble {
    transform: translateX(-50%) translateY(-4px);
  }

  .sp-shop-cta:hover .sp-shop-cta__icon {
    animation: sp-shop-cta-icon-wiggle 0.6s ease-in-out infinite;
  }

  .sp-shop-cta:hover .sp-shop-cta__chevron {
    animation: sp-shop-cta-chevron-bounce 0.8s ease-in-out infinite;
  }

  /* 開いている時はシェブロン回転状態を維持しつつ縦バウンス */
  .sp-shop-cta[aria-expanded="true"]:hover .sp-shop-cta__chevron {
    animation: sp-shop-cta-chevron-bounce-down 0.8s ease-in-out infinite;
  }

  @keyframes sp-shop-cta-icon-wiggle {
    0%, 100% { transform: rotate(0); }
    25%      { transform: rotate(-8deg); }
    75%      { transform: rotate(8deg); }
  }

  @keyframes sp-shop-cta-chevron-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
  }

  @keyframes sp-shop-cta-chevron-bounce-down {
    0%, 100% { transform: rotate(180deg) translateY(0); }
    50%      { transform: rotate(180deg) translateY(-3px); }
  }

  /* reduce-motion 配慮 */
  @media (prefers-reduced-motion: reduce) {
    .sp-shop-cta:hover .sp-shop-cta__icon,
    .sp-shop-cta:hover .sp-shop-cta__chevron,
    .sp-shop-cta[aria-expanded="true"]:hover .sp-shop-cta__chevron {
      animation: none;
    }
  }
}

@media (max-width: 768px) {

  /* SP: 各セクションの上下余白を一括で圧縮（左右paddingは個別ルールを尊重） */
  .news-section,
  .clinics-section,
  .symptoms-section,
  .women-section,
  .occupation-section,
  .morpho-section,
  .price-section,
  .accident-section,
  .accident-page-section,
  .accident-cta-section,
  .promises-section,
  .blog-section,
  .clinics-list-section,
  .other-shops-section,
  .clinics-cta-section,
  .shop-archive-section,
  .shop-detail-section,
  .shop-hokensho-section,
  .shop-info-section,
  .shop-pictures-section,
  .shop-menu-section,
  .shop-access-section,
  .shop-cta-section,
  .about-section,
  .philosophy-section,
  .case-list-section,
  .symptom-approach-section,
  .symptom-steps-section,
  .symptom-voice-section,
  .symptom-faq-section,
  .symptom-cta-section,
  .case-section,
  .case-voice-section,
  .menu-archive-section,
  .contact-form-section,
  .symptom-related-section,
  .case-meta-section,
  .case-thumbnail-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  /* SP: 各セクションヘッダー見出しを縮小 */
  .women-header__title,
  .occupation-header__title,
  .promises-header__title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  .women-header__title span,
  .occupation-header__title span,
  .promises-header__title span {
    font-size: 1.8rem;
  }
  .women-header__label,
  .occupation-header__label,
  .promises-header__label {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  .women-header,
  .occupation-header,
  .promises-header {
    margin-bottom: 28px;
  }

  /* SP: NEWSセクション見出しを縮小 */
  .news-heading__label { font-size: 1.1rem; letter-spacing: 2px; }
  .news-heading__title { font-size: 2rem; }
}

/* ==========================================================================
   患者様の声 個別ページ（single-voice.php）
   ========================================================================== */

/* 店舗タグ */
.voice-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
}

.voice-tags__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tiffany-bg);
  border: 1px solid var(--tiffany-light);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tiffany);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.voice-tags__link:hover,
.voice-tags__link:focus-visible {
  background: var(--tiffany);
  border-color: var(--tiffany);
  color: #fff;
}

.voice-tags__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* 投稿者名 */
.voice-single__name {
  margin: 14px 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray);
}

@media (min-width: 768px) {
  .voice-tags {
    gap: 10px;
  }

  .voice-tags__link {
    font-size: 1.4rem;
    padding: 8px 18px;
  }

  .voice-tags__icon {
    width: 15px;
    height: 15px;
  }

  .voice-single__name {
    font-size: 1.5rem;
  }
}
