/* =============================================================
   single-clinic.css
   院詳細ページ専用スタイル
   スコープ: .clinic-single および .cs-* プレフィックス
   style.css の CSS 変数・ユーティリティクラスを前提とします
============================================================= */

/* -------------------------------------------------------------
   共通リセット・ベース
------------------------------------------------------------- */
.clinic-single *,
.cs-sticky *,
.cs-quick-bar * {
  box-sizing: border-box;
}

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


/* =============================================================
   1. HERO
============================================================= */
.cs-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

/* ---- Row 1: 地域 + バッジ（flex横並び） ---- */
.cs-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: min(100% - 40px, var(--inner));
  margin: 0 auto;
  padding: 16px 0 10px;
}

.cs-hero__region {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.cs-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(15, 155, 114, 0.12);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---- Row 2: 院名（左）+ バッジ・電話（右） ---- */
.cs-hero__titlebar {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100% - 40px, var(--inner));
  margin: 0 auto;
  padding: 4px 0 16px;
}

.cs-hero__name {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.cs-hero__titlebar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ---- Row 3: メインビジュアル ---- */
.cs-hero__visual {
  line-height: 0;
}

.cs-hero__visual img {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ---- Row 4: CTA ボタン（flex横並び） ---- */
.cs-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100% - 40px, var(--inner));
  margin: 0 auto;
  padding: 16px 0 20px;
}

/* LINE ボタン（他セクションでも使用） */
.cs-btn-line {
  background: #06C755;
  color: #fff !important;
  border-color: #06C755;
}
.cs-btn-line:hover {
  background: #059a42;
  border-color: #059a42;
  color: #fff !important;
}

/* ---- タブレット（〜900px） ---- */
@media (max-width: 900px) {
  .cs-hero__titlebar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cs-hero__name {
    flex: 1 1 100%;
  }

  .cs-hero__titlebar-right {
    width: 100%;
  }

  .cs-hero__visual img {
    max-width: 100%;
  }
}

/* ---- スマホ（〜560px） ---- */
@media (max-width: 560px) {
  .cs-hero__name {
    font-size: 26px;
  }

  .cs-hero__titlebar-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cs-hero__cta {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }

  .cs-hero__cta .btn {
    text-align: center;
  }
}


/* =============================================================
   2. QUICK BAR
============================================================= */
.cs-quick-bar {
  background: var(--green-dark);
  color: #fff;
}

.cs-quick-bar__inner {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 20px;
}

.cs-quick-item {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.cs-quick-item:last-child {
  border-right: none;
}

.cs-quick-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.cs-quick-item__value {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.cs-quick-item__value a {
  color: #fff;
  text-decoration: none;
}
.cs-quick-item__value a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cs-quick-bar__inner {
    flex-wrap: wrap;
  }
  .cs-quick-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 14px 16px;
  }
  .cs-quick-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }
}

@media (max-width: 560px) {
  .cs-quick-item {
    flex: 1 1 100%;
    border-right: none !important;
  }
}


/* =============================================================
   3. パンくず
============================================================= */
.cs-breadcrumb-wrap {
  padding-top: 20px;
  padding-bottom: 4px;
}


/* =============================================================
   3.5. EMPATHY — こんなお悩みありませんか？
============================================================= */
.cs-empathy {
  background: var(--bg);
}

.cs-empathy__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* 院長写真エリア */
.cs-empathy__director {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 160px;
}

.cs-empathy__director-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--green);
  box-shadow: 0 8px 28px rgba(15, 155, 114, 0.22);
}

.cs-empathy__director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cs-empathy__director-name {
  text-align: center;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
}

.cs-empathy__director-role {
  display: block;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

/* 吹き出し本体 */
.cs-empathy__bubble {
  position: relative;
  flex: 1;
  background: #fff;
  border: 2px solid #eaf8f3;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

/* 左向き吹き出し矢印（外枠） */
.cs-empathy__bubble::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 48px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 20px solid #eaf8f3;
}

/* 左向き吹き出し矢印（白塗り） */
.cs-empathy__bubble::after {
  content: '';
  position: absolute;
  left: -15px;
  top: 50px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 15px solid #fff;
}

.cs-empathy__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.4;
  padding-bottom: 16px;
  border-bottom: 2px solid #eaf8f3;
}

.cs-empathy__intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 20px;
}

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

.cs-empathy__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
}

.cs-empathy__list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cs-empathy__outro {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.75;
  margin: 0;
  padding-top: 20px;
  border-top: 2px solid #eaf8f3;
}

/* タブレット */
@media (max-width: 1024px) {
  .cs-empathy__list {
    grid-template-columns: 1fr;
  }
}

/* スマホ */
@media (max-width: 900px) {
  .cs-empathy__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .cs-empathy__director {
    flex-direction: row;
    width: auto;
    gap: 14px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 4px 0 8px;
    margin-bottom: -1px;
  }

  .cs-empathy__director-photo {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
  }

  .cs-empathy__director-name {
    text-align: left;
  }

  .cs-empathy__director-role {
    display: inline;
    margin-right: 4px;
  }

  /* 矢印：スマホでは上向きに変更 */
  .cs-empathy__bubble::before {
    left: 36px;
    top: -20px;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 20px solid #eaf8f3;
    border-top: none;
  }

  .cs-empathy__bubble::after {
    left: 38px;
    top: -15px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 15px solid #fff;
    border-top: none;
  }

  .cs-empathy__bubble {
    padding: 28px 24px;
    border-radius: 16px;
  }
}

@media (max-width: 560px) {
  .cs-empathy__title {
    font-size: 18px;
  }

  .cs-empathy__list li {
    font-size: 13px;
  }
}


/* =============================================================
   4. SYMPTOMS
============================================================= */
.cs-symptoms {
  background: #fff;
}

.cs-symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cs-symptom-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.cs-symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(28, 82, 68, 0.14);
}

.cs-symptom-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.cs-symptom-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cs-symptom-card:hover .cs-symptom-card__image img {
  transform: scale(1.04);
}

.cs-symptom-card__label {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .cs-symptom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .cs-symptom-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}


/* =============================================================
   5. INFO — 基本情報
============================================================= */
.cs-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.cs-info__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cs-info__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 共通テーブル */
.cs-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.7;
}

.cs-info-table th,
.cs-info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.cs-info-table th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  width: 120px;
  white-space: nowrap;
}

.cs-info-table td a {
  color: var(--green-dark);
  text-decoration: none;
}
.cs-info-table td a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cs-info__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* =============================================================
   6. CONCEPT
============================================================= */
.cs-concept {
  background: #fff;
}

.cs-concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}

.cs-concept__body .section-kicker {
  margin-bottom: 8px;
}

.cs-concept__body .section-title {
  margin-bottom: 24px;
}

.cs-concept__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.cs-concept__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cs-concept__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 900px) {
  .cs-concept__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cs-concept__image {
    order: -1;
  }
}


/* =============================================================
   7. REASONS
============================================================= */
.cs-reasons {
  background: var(--bg);
}

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

.cs-reason-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(28, 82, 68, 0.14);
}

.cs-reason-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.cs-reason-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cs-reason-card:hover .cs-reason-card__image img {
  transform: scale(1.04);
}

.cs-reason-card__body {
  padding: 20px 20px 24px;
}

.cs-reason-card__num {
  font-size: 12px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.1em;
  margin: 0 0 6px;
}

.cs-reason-card__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.4;
}

.cs-reason-card__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .cs-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .cs-reasons-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================================
   8. TREATMENTS
============================================================= */
.cs-treatments {
  background: #fff;
}

.cs-treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.cs-treatment-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cs-treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(28, 82, 68, 0.14);
}

.cs-treatment-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.cs-treatment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cs-treatment-card:hover .cs-treatment-card__image img {
  transform: scale(1.04);
}

.cs-treatment-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

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

.cs-treatment-card__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 12px;
}

.cs-treatment-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 20px;
  flex: 1;
}

.cs-treatment-card__btn {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .cs-treatment-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* =============================================================
   9. DIRECTOR
============================================================= */
.cs-director {
  background: var(--bg);
}

/* 院長ブロック */
.cs-director__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-top: 48px;
  margin-bottom: 48px;
}

.cs-director__photo {
  flex-shrink: 0;
  width: 240px;
}

.cs-director__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.cs-director__role {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.cs-director__name {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 16px;
}

.cs-director__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cs-cert-badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(15, 155, 114, 0.3);
}

.cs-director__message {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

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

.cs-staff-card {
  text-align: center;
}

.cs-staff-card__photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(28, 82, 68, 0.08);
}

.cs-staff-card__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.cs-staff-card__role {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  margin: 0 0 4px;
}

.cs-staff-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

@media (max-width: 900px) {
  .cs-director__inner {
    flex-direction: column;
    padding: 28px;
    gap: 24px;
  }
  .cs-director__photo {
    width: 160px;
    margin: 0 auto;
  }
  .cs-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cs-director__inner {
    padding: 20px;
  }
}


/* =============================================================
   10. FLOW
============================================================= */
.cs-flow {
  background: #fff;
}

.cs-flow-list {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs-flow-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.cs-flow-item:last-child {
  border-bottom: none;
}

/* 奇数（画像左） */
.cs-flow-item--odd {
  grid-template-areas: "image body";
}
.cs-flow-item--odd .cs-flow-item__image {
  grid-area: image;
}
.cs-flow-item--odd .cs-flow-item__body {
  grid-area: body;
}

/* 偶数（画像右） */
.cs-flow-item--even {
  grid-template-areas: "body image";
}
.cs-flow-item--even .cs-flow-item__image {
  grid-area: image;
}
.cs-flow-item--even .cs-flow-item__body {
  grid-area: body;
}

.cs-flow-item__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cs-flow-item__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cs-flow-item__step-badge {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.cs-flow-item__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 12px;
}

.cs-flow-item__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 900px) {
  .cs-flow-item {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "body" !important;
    gap: 24px;
    padding: 36px 0;
  }
  .cs-flow-item__title {
    font-size: 18px;
  }
}


/* =============================================================
   11. VOICES
============================================================= */
.cs-voices {
  background: var(--bg);
}

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

.cs-voice-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs-voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(28, 82, 68, 0.14);
}

.cs-voice-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid var(--green-light);
}

.cs-voice-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-voice-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 10px;
}

.cs-voice-card__gender {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.cs-voice-card__symptom-badge {
  display: inline-flex;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
}

.cs-voice-card__stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0 0 12px;
}

.cs-voice-card__comment {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 900px) {
  .cs-voice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* =============================================================
   12. RESULTS — Before/After
============================================================= */
.cs-results {
  background: #fff;
}

.cs-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.cs-result-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(28, 82, 68, 0.14);
}

.cs-result-card__head {
  padding: 20px 20px 16px;
  background: var(--green-light);
  border-bottom: 1px solid var(--line);
}

.cs-result-card__symptom {
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 8px;
}

.cs-result-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cs-result-card__meta span {
  font-size: 12px;
  color: var(--muted);
  background: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.cs-result-card__images {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px;
}

.cs-result-card__before,
.cs-result-card__after {
  flex: 1;
  position: relative;
}

.cs-result-card__before img,
.cs-result-card__after img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* Before: グレー枠 */
.cs-result-card__before img {
  border: 3px solid #b0bec5;
}

/* After: 緑枠 */
.cs-result-card__after img {
  border: 3px solid var(--green);
}

.cs-result-label {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  z-index: 1;
}

.cs-result-label--before {
  background: #b0bec5;
  color: #fff;
}

.cs-result-label--after {
  background: var(--green);
  color: #fff;
}

.cs-result-card__arrow {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--green);
  font-weight: 900;
  padding: 0 8px;
  margin-top: -4px;
}

.cs-result-card__caption {
  padding: 0 16px 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .cs-result-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* =============================================================
   13. RECOMMENDATIONS
============================================================= */
.cs-recommendations {
  background: var(--bg);
}

.cs-rec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.cs-rec-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs-rec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(28, 82, 68, 0.14);
}

.cs-rec-card__photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--green-light);
}

.cs-rec-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-rec-card__comment {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 12px;
}

.cs-rec-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
}

.cs-rec-card__org {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .cs-rec-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .cs-rec-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
}


/* =============================================================
   14. PARTNERS
============================================================= */
.cs-partners {
  background: #fff;
}

.cs-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cs-partner-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(28, 82, 68, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28, 82, 68, 0.12);
}

.cs-partner-card__logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

.cs-partner-card__logo img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.cs-partner-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.cs-partner-card__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .cs-partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .cs-partner-grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================================
   15. ACCESS
============================================================= */
.cs-access {
  background: var(--bg);
}

.cs-access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.cs-access__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.cs-access__map-placeholder {
  height: 380px;
  background: #d0e8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  border-radius: var(--radius);
}

.cs-access__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.cs-access__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cs-access__photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(28, 82, 68, 0.08);
}

.cs-access__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cs-access__photo-caption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding: 6px 4px;
  margin: 0;
}

.cs-access__directions {
  margin-top: 20px;
  margin-bottom: 24px;
}

.cs-access__directions-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.cs-access__directions p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 900px) {
  .cs-access__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cs-access__map-placeholder,
  .cs-access__map iframe {
    height: 280px;
  }
}


/* =============================================================
   16. HOURS CTA
============================================================= */
.cs-hours-cta {
  background: var(--green-light);
}

.cs-hours-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

/* 診療時間テーブル */
.cs-hours-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 15px;
}

.cs-hours-table thead tr {
  background: var(--green);
  color: #fff;
}

.cs-hours-table thead th {
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.cs-hours-table tbody tr {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.cs-hours-table tbody tr:last-child {
  border-bottom: none;
}

.cs-hours-table tbody th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 16px;
  text-align: center;
  width: 80px;
}

.cs-hours-table tbody td {
  padding: 14px 16px;
  text-align: center;
  color: var(--text);
}

/* 定休日行 */
.cs-hours-table__closed th,
.cs-hours-table__closed td {
  color: var(--muted);
  background: #f0f4f3 !important;
}

.cs-hours-cta__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* CTA側 */
.cs-hours-cta__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cs-hours-cta__lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.cs-cta-tel {
  font-size: 20px;
  font-weight: 900;
  padding: 16px 24px;
  text-align: center;
  letter-spacing: 0.04em;
}

.cs-cta-line {
  text-align: center;
  font-size: 16px;
  padding: 14px 24px;
}

.cs-cta-reserve {
  text-align: center;
  font-size: 15px;
}

@media (max-width: 900px) {
  .cs-hours-cta__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* =============================================================
   17. STICKY CTA（スマホ固定）
============================================================= */
.cs-sticky {
  display: none; /* PCでは非表示 */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-sticky.is-visible {
  transform: translateY(0);
}

.cs-sticky__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 12px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.2s;
}

.cs-sticky__btn:hover {
  opacity: 0.9;
  color: #fff;
}

.cs-sticky__btn--tel {
  background: var(--green);
}

.cs-sticky__btn--line {
  background: #06C755;
}

.cs-sticky__btn--reserve {
  background: var(--orange);
}

.cs-sticky__icon {
  font-size: 22px;
  line-height: 1;
}

.cs-sticky__label {
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* スマホのみ表示 */
@media (max-width: 768px) {
  .cs-sticky {
    display: flex;
  }
}


/* =============================================================
   共通: ボタン行の center 補助
============================================================= */
.button-row.center {
  justify-content: center;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-kicker,
.section-head.center .section-title,
.section-head.center .section-lead {
  text-align: center;
}
