@charset "UTF-8";

:root {
  --green: #0f9b72;
  --green-dark: #057b5b;
  --green-light: #eaf8f3;
  --orange: #ff7a1a;
  --text: #1e2f2b;
  --muted: #6e7f7b;
  --line: #dfe9e6;
  --bg: #f7faf9;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(28, 82, 68, 0.08);
  --radius: 20px;
  --inner: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  background: var(--white);
  line-height: 1.75;
  letter-spacing: 0.03em;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 155, 114, 0.12);
}

.site-header__inner {
  width: min(100% - 40px, var(--inner));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}

.site-logo__text {
  display: grid;
  line-height: 1.2;
}

.site-logo__text strong {
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.site-logo__text small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.global-nav {
  flex: 1;
}

.global-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.global-nav a {
  font-size: 13px;
  font-weight: 700;
  color: #31413e;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.global-nav a:hover {
  color: var(--green);
}

.global-nav .is-accent {
  color: var(--orange);
}

.global-nav .is-recruit {
  color: var(--green);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 155, 114, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--green);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.drawer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.drawer-nav {
  width: min(100% - 40px, var(--inner));
  margin: 0 auto;
  padding: 18px 0 24px;
  display: grid;
  gap: 8px;
}

.drawer-nav a {
  padding: 13px 14px;
  border-radius: 12px;
  background: var(--bg);
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section-inner {
  width: min(100% - 40px, var(--inner));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-title {
  margin: 0 0 24px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
  font-weight: 900;
}

.section-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 40px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  background: #f7fbfa;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transition: background-image 0.45s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(15, 155, 114, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(247, 250, 249, 0.24));
  pointer-events: none;
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 42%,
    rgba(15, 155, 114, 0.15) 42%,
    rgba(15, 155, 114, 0.15) 45%,
    transparent 45%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--inner));
  margin: 0 auto;
}

.hero__content {
  max-width: 680px;
  padding: 96px 0 92px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--green);
}

.hero__lead {
  max-width: 610px;
  margin: 24px 0 32px;
  color: #4d5d59;
  font-size: 16px;
  font-weight: 600;
}

.hero__buttons,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__content.is-changing {
  animation: heroTextFade 0.45s ease;
}

@keyframes heroTextFade {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 155, 114, 0.28);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(15, 155, 114, 0.22);
}

.btn-outline {
  color: var(--green-dark);
  background: var(--white);
  border-color: rgba(15, 155, 114, 0.35);
}

.btn-orange {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 122, 26, 0.22);
}

.btn-white {
  color: var(--green-dark);
  background: #fff;
}

.btn-outline-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-stats {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats div {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-stats strong {
  color: var(--green);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-stats span {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.hero__image {
  display: none;
}

.hero-slide__img {
  display: none;
}

@media (max-width: 900px) {
  .hero,
  .hero-slide {
    min-height: 0;
  }

  .hero-slide {
    display: block;
    background-image: none !important;
  }

  .hero-slide::before,
  .hero-slide::after {
    display: none;
  }

  .hero-slide__img {
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .hero__content {
    max-width: 100%;
    padding: 32px 0 56px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero-slide {
    min-height: 0;
  }

  .hero__content {
    padding: 24px 0 48px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__buttons {
    display: grid;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .hero-dots {
    bottom: 20px;
  }
}

.clinic-search {
  background: var(--bg);
}

.clinic-search .grid-2 {
  align-items: stretch;
}

.clinic-search .grid-2 > div:first-child {
  display: flex;
  flex-direction: column;
}

.clinic-search .map-card {
  flex: 1;
}

.clinic-search .search-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 155, 114, 0.22) 1px, transparent 1.8px),
    #fbfdfc;
  background-size: 11px 11px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-card__image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.34;
  pointer-events: none;
  z-index: 1;
}

.map-card__main {
  position: relative;
  z-index: 2;
  min-height: 300px;
}

.map-pin {
  position: absolute;
  display: grid;
  place-items: center;
  align-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--green-dark);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 10px 24px rgba(28, 82, 68, 0.08);
  transition: 0.2s ease;
}

.map-pin:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 155, 114, 0.42);
  box-shadow: 0 16px 34px rgba(28, 82, 68, 0.12);
}

.map-pin strong {
  font-size: 1.25em;
  line-height: 1.2;
}

/* 地図画像に合わせたピン配置 */
.map-pin--hokkaido {
  right: 8%;
  top: 7%;
}

.map-pin--gunma {
  right: 20%;
  top: 42%;
}

.map-pin--tokyo {
  right: 24%;
  bottom: 12%;
}

.map-pin--yamanashi {
  right: 36%;
  bottom: 8%;
  background: #ff7a1a;
  color: #fff;
}

.map-pin--okinawa {
  left: 7%;
  bottom: -6%;
}

@media (max-width: 900px) {
  .map-card {
    min-height: 340px;
  }

  .map-card__image {
    width: 94%;
    opacity: 0.3;
  }

  .map-card__main {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .map-card {
    min-height: 320px;
    padding: 22px;
  }

  .map-card__image {
    width: 115%;
    left: 52%;
    top: 50%;
    opacity: 0.24;
  }

  .map-card__main {
    min-height: 276px;
  }

  .map-pin {
    min-width: 86px;
    min-height: 76px;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 13px;
  }

  .map-pin strong {
    font-size: 1.15em;
  }

  .map-pin--hokkaido {
    right: 4%;
    top: 8%;
  }

  .map-pin--gunma {
    right: 5%;
    top: 39%;
  }

  .map-pin--yamanashi {
    right: 21%;
    bottom: 13%;
  }

  .map-pin--okinawa {
    left: 3%;
    bottom: 20%;
  }
}

.search-panel,
.simple-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.search-panel h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.search-form {
  display: flex;
  margin-bottom: 28px;
}

.search-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  padding: 0 16px;
}

.search-form button {
  width: 64px;
  border: 0;
  border-radius: 0 10px 10px 0;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.area-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.area-buttons a {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
}

.text-link {
  color: var(--green);
  font-weight: 900;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
}

.icon-card {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 22px rgba(28, 82, 68, 0.04);
  transition: 0.2s ease;
}

.icon-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 155, 114, 0.45);
  box-shadow: var(--shadow);
}

.icon-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.icon-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-card__text {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.icon-card,
.menu-card,
.flow-card {
  min-height: 90px;
  display: grid;
  place-items: center;
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 22px rgba(28, 82, 68, 0.04);
  transition: 0.2s ease;
}

.icon-card:hover,
.menu-card:hover,
.flow-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 155, 114, 0.45);
  box-shadow: var(--shadow);
}

.featured {
  padding-top: 36px;
  padding: 72px 0 0;
}

.feature-card {
  position: relative;
  margin-bottom: 40px;
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card__body {
  position: relative;
  z-index: 1;
  padding: 36px;
}

.feature-card h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accident {
  background: #fff6ef;
}

.accident h2 {
  color: var(--orange);
}

.injury {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #087356);
}

.injury .section-kicker {
  color: #dff9ef;
}

.check-list {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 800;
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
}

.injury .check-list li::before {
  color: #fff;
}

.check-list.orange li::before {
  color: var(--orange);
}

.reason {
  background: #fff;
}

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

.reason-card {
  min-height: 150px;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(28, 82, 68, 0.04);
}

.reason-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.beginner {
  background: var(--bg);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.flow-card {
  min-height: 124px;
}

.flow-card span {
  display: block;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.case {
  background: #fff;
}

.voice {
  background: var(--bg);
}

/* =========================
   Section head
========================= */
.section-head {
  margin-bottom: 25px;
}

.section-head .section-title {
  margin-bottom: 0;
}

.section-head .section-lead {
  margin: 0;
}

/* =========================
   Case study
========================= */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.case-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(28, 82, 68, 0.1);
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 2.5;
  object-fit: cover;
}

.case-card__body {
  padding: 20px;
}

.case-card__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.case-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.case-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.case-card__clinic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.case-card__clinic::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.case-card__meta time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

/* =========================
   Voice common
========================= */
.voice-block {
  margin-top: 34px;
}

.voice-block:first-of-type {
  margin-top: 0;
}

.voice-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.voice-block__head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.voice-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.voice-photo-grid {
  grid-template-columns: repeat(2, 1fr);
}

.voice-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.voice-card::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: 8px;
  color: rgba(15, 155, 114, 0.12);
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
  z-index: 1;
}

.voice-card__image img {
  width: 100%;
  aspect-ratio: 4 / 2.25;
  object-fit: cover;
}

.voice-card__body {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.voice-card__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.voice-card__tag,
.voice-card__area {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.voice-card__tag {
  color: #fff;
  background: var(--green);
}

.voice-card__area {
  color: var(--green-dark);
  background: var(--green-light);
}

.voice-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.55;
}

.voice-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.voice-card__person {
  position: relative;
  z-index: 1;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

/* =========================
   Google reviews
========================= */
.google-review-block {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.google-review-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.google-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(28, 82, 68, 0.1);
}

.google-review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.google-review-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #4285f4;
  font-size: 12px;
  font-weight: 900;
}

.google-review-card__stars {
  margin-top: 10px;
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.google-review-card__score {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 900;
}

.google-review-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.google-review-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.google-review-card__clinic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.google-review-card__clinic::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.google-review-card__source {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-grid,
  .voice-photo-grid,
  .google-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .voice-block__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .case-grid,
  .voice-photo-grid,
  .google-review-grid {
    grid-template-columns: 1fr;
  }

  .voice-card__body,
  .google-review-card {
    padding: 24px 20px;
  }
}

.trainer {
  padding: 0 0 40px;
}

.care {
  padding: 0 0 72px;
}

.trainer-box {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--green-light));
  box-shadow: var(--shadow);
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 26px 0;
}

.trainer-grid span {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  font-size: 13px;
}

.trainer-box__image {
  overflow: hidden;
  border-radius: 18px;
}

.trainer-box__image img {
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
}

.recommend {
  background: #fff;
}

.partner {
  background: var(--bg);
}

.partner .section-head {
  display: block;
}

/* =========================
   Recommendation
========================= */
.recommend-card-grid {
  display: grid;
  gap: 22px;
  margin-bottom: 30px;
}

.recommend-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.recommend-card__image {
  overflow: hidden;
  border-radius: 18px;
  background: var(--green-light);
}

.recommend-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.recommend-card__body {
  min-width: 0;
}

.recommend-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.recommend-card__company,
.recommend-card__position {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.recommend-card__company {
  color: var(--green-dark);
  background: var(--green-light);
}

.recommend-card__position {
  color: #fff;
  background: var(--green);
}

.recommend-card h3 {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.recommend-card h3 span {
  font-size: 28px;
}

.recommend-card p {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.recommend-card p::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -12px;
  color: rgba(15, 155, 114, 0.28);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

/* =========================
   Partner logos
========================= */
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.partner-logo-card {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(28, 82, 68, 0.04);
  transition: 0.2s ease;
  text-decoration: none;
}

.partner-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 155, 114, 0.42);
  box-shadow: var(--shadow);
}

.partner-logo-card__img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-card__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
}

.partner-logo-card__placeholder {
  color: #b2bfbc;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .recommend-card {
    grid-template-columns: 180px 1fr;
    gap: 22px;
    padding: 24px;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recommend-card h3 span {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .recommend-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .recommend-card__image img {
    aspect-ratio: 4 / 2.7;
  }

  .partner-logo-grid {
    grid-template-columns: 1fr;
  }
}

.recruit-box {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 155, 114, 0.96), rgba(4, 112, 82, 0.96));
  color: #fff;
  box-shadow: var(--shadow);
}

.recruit-box__content {
  padding: 46px;
}

.recruit-box h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
}

.recruit-box p {
  margin: 0 0 24px;
}

.recruit-box .section-kicker {
  color: #d6fff0;
}

.recruit-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.job-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
  font-size: 13px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.business-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.business-card h3 {
  margin: 20px 20px 8px;
  color: var(--green-dark);
  font-size: 19px;
}

.business-card p {
  margin: 0 20px 22px;
  color: var(--muted);
  font-size: 14px;
}

.numbers {
  background: var(--bg);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.number-grid div {
  min-height: 126px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 18px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 24px rgba(28, 82, 68, 0.04);
}

.number-grid strong {
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.number-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.facility {
  background: #fff;
}

.facility-category {
  margin-top: 42px;
}

.facility-category:first-of-type {
  margin-top: 0;
}

.facility-category__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.facility-category__head h3 {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 900;
}

.facility-category__head h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 24px;
  border-radius: 999px;
  background: var(--green);
}

.facility-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.facility-shop-card {
  overflow: hidden;
  border: 2px solid var(--green);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(28, 82, 68, 0.04);
  transition: 0.2s ease;
}

.facility-shop-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.facility-shop-card__image {
  overflow: hidden;
  background: var(--bg);
}

.facility-shop-card__image img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.facility-shop-card:hover .facility-shop-card__image img {
  transform: scale(1.05);
}

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

.facility-shop-card__area {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.facility-shop-card h4 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 900;
}

.facility-shop-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* 鍼灸接骨院：緑 */
.facility-category--clinic .facility-category__head h3::before {
  background: var(--green);
}

.facility-category--clinic .facility-shop-card {
  border-color: var(--green);
}

.facility-category--clinic .facility-shop-card__area {
  color: var(--green-dark);
  background: var(--green-light);
}

.facility-category--clinic .facility-shop-card h4 {
  color: var(--green-dark);
}

/* リラクゼーション：癒し系カラー */
.facility-category--relaxation .facility-category__head h3::before {
  background: #82b9ad;
}

.facility-category--relaxation .facility-shop-card {
  border-color: #82b9ad;
}

.facility-category--relaxation .facility-shop-card__area {
  color: #3e7c70;
  background: #eaf6f3;
}

.facility-category--relaxation .facility-shop-card h4 {
  color: #3e7c70;
}

/* 整体・パーソナルジム：紫 */
.facility-category--gym .facility-category__head h3::before {
  background: #8468c8;
}

.facility-category--gym .facility-shop-card {
  border-color: #8468c8;
}

.facility-category--gym .facility-shop-card__area {
  color: #5d46a0;
  background: #f0ecfb;
}

.facility-category--gym .facility-shop-card h4 {
  color: #5d46a0;
}

/* 在宅事業：オレンジ */
.facility-category--homecare .facility-category__head h3::before {
  background: var(--orange);
}

.facility-category--homecare .facility-shop-card {
  border-color: var(--orange);
}

.facility-category--homecare .facility-shop-card__area {
  color: #b35309;
  background: #fff1e5;
}

.facility-category--homecare .facility-shop-card h4 {
  color: #b35309;
}

/* 介護福祉施設：紫 */
.facility-category--welfare .facility-category__head h3::before {
  background: #8468c8;
}

.facility-category--welfare .facility-shop-card {
  border-color: #8468c8;
}

.facility-category--welfare .facility-shop-card__area {
  color: #5d46a0;
  background: #f0ecfb;
}

.facility-category--welfare .facility-shop-card h4 {
  color: #5d46a0;
}

@media (max-width: 900px) {
  .facility-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-category__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  .facility-category {
    margin-top: 36px;
  }

  .facility-category__head h3 {
    font-size: 22px;
  }

  .facility-shop-card__body {
    padding: 18px;
  }
}

.news {
  padding-top: 24px;
}

.news-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
}

.news-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 120px 140px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--muted);
  font-size: 13px;
}

.news-list span {
  display: inline-flex;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.news-list p {
  margin: 0;
  font-weight: 700;
}

.site-footer {
  color: #fff;
  background: var(--green-dark);
}

.site-footer__inner {
  width: min(100% - 40px, var(--inner));
  margin: 0 auto;
  padding: 42px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-logo .site-logo__mark,
.footer-logo .site-logo__text small {
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
}

.footer-nav a {
  font-size: 13px;
  font-weight: 700;
}

.copyright {
  margin: 0;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  font-size: 12px;
}

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.25s ease;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .global-nav,
  .header-cta {
    display: none;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .icon-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .number-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 54px 0 44px;
  }

  .hero__inner,
  .grid-2,
  .trainer-box,
  .recruit-box {
    grid-template-columns: 1fr;
  }

  .hero__image {
    border-radius: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    aspect-ratio: 4 / 2.4;
  }

  .icon-grid,
  .menu-grid,
  .flow-grid,
  .case-grid,
  .business-grid,
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trainer-grid,
  .recommend-grid,
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer__inner {
    display: grid;
    justify-items: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header__inner,
  .section-inner,
  .hero__inner {
    width: min(100% - 28px, var(--inner));
  }

  .site-logo__text strong {
    font-size: 15px;
  }

  .site-logo__text small {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero__lead {
    font-size: 14px;
  }

  .hero__buttons,
  .button-row {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .search-panel,
  .simple-panel,
  .trainer-box,
  .recruit-box__content {
    padding: 26px 20px;
  }

  .icon-grid,
  .menu-grid,
  .flow-grid,
  .case-grid,
  .business-grid,
  .facility-grid,
  .reason-grid,
  .number-grid {
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 280px;
    padding: 22px;
  }

  .map-card__main {
    min-height: 230px;
  }

  .trainer-grid,
  .recommend-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .pagetop {
    right: 14px;
    bottom: 14px;
  }
}

/* =========================
   Case list (shortcode / archive grid)
========================= */
.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

/* case-card 自体は既存スタイルを流用 */

.case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.case-card__change {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.case-card__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
}

/* =========================
   Case single
========================= */
.case-single__header {
  margin-bottom: 28px;
}

.case-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.case-single__meta span {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.case-single__section {
  margin: 36px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.case-single__section-title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

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

.case-before-after__item {
  text-align: center;
}

.case-before-after__item img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.case-before-after__label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 20px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.case-before-after__pain,
.case-before-after__rom {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.case-single__extra-image {
  margin-top: 20px;
}

.case-single__extra-image img {
  max-width: 100%;
  border-radius: 12px;
}

.case-single__comment {
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.case-single__comment--staff {
  background: var(--green-light);
}

.case-single__comment--customer {
  background: #f8f8f8;
}

.case-single__comment h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: var(--green-dark);
}

.case-single__comment p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.case-single__comment-author {
  margin-top: 10px !important;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
}

/* =========================
   Recommendation list
========================= */
.recommendation-list {
  display: grid;
  gap: 22px;
  margin-bottom: 30px;
}

.recommendation-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.recommendation-card__image {
  overflow: hidden;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  background: var(--green-light);
}

.recommendation-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommendation-card__body {
  min-width: 0;
}

.recommendation-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.recommendation-card__company,
.recommendation-card__position {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.recommendation-card__company {
  color: var(--green-dark);
  background: var(--green-light);
}

.recommendation-card__position {
  color: #fff;
  background: var(--green);
}

.recommendation-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
  color: var(--green-dark);
}

.recommendation-card__heading {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.recommendation-card__comment {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.recommendation-card__comment::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -10px;
  color: rgba(15, 155, 114, 0.28);
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.recommendation-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
}

/* =========================
   Recommendation single
========================= */
.recommendation-single__profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--green-light);
  margin-bottom: 32px;
}

.recommendation-single__photo {
  overflow: hidden;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.recommendation-single__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommendation-single__name {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.4;
}

.recommendation-single__title {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.recommendation-single__kana {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--muted);
}

.recommendation-single__license {
  margin: 6px 0;
  font-size: 14px;
  color: var(--muted);
}

.recommendation-single__logo {
  margin: 12px 0;
}

.recommendation-single__logo img {
  max-height: 50px;
  max-width: 160px;
  object-fit: contain;
}

.recommendation-single__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.recommendation-single__bio {
  margin-bottom: 28px;
  padding: 20px 24px;
  border-left: 4px solid var(--green);
  background: #f9f9f9;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.recommendation-single__content {
  margin-bottom: 28px;
}

.recommendation-single__heading {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.45;
}

.recommendation-single__comment {
  position: relative;
  margin: 0;
  padding: 24px 24px 24px 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}

.recommendation-single__comment::before {
  content: "\201C";
  position: absolute;
  left: 14px;
  top: 4px;
  color: rgba(15, 155, 114, 0.28);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

.recommendation-single__letter {
  margin: 24px 0;
  text-align: center;
}

.recommendation-single__letter img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* =========================
   Responsive — 改善実績 / 推薦
========================= */
@media (max-width: 900px) {
  .case-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .recommendation-card {
    grid-template-columns: 140px 1fr;
    gap: 20px;
  }

  .recommendation-card__image {
    width: 110px;
    height: 110px;
  }

  .recommendation-single__profile {
    grid-template-columns: 160px 1fr;
    gap: 22px;
  }

  .recommendation-single__photo {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 600px) {
  .case-list {
    grid-template-columns: 1fr;
  }

  .case-before-after {
    grid-template-columns: 1fr;
  }

  .recommendation-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .recommendation-card__meta {
    justify-content: center;
  }

  .recommendation-card__comment {
    text-align: left;
  }

  .recommendation-single__profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .recommendation-single__photo {
    width: 120px;
    height: 120px;
  }

  .recommendation-single__links {
    justify-content: center;
  }
}

/* =========================
   Patient Voice list / archive
========================= */
.patient-voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

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

.patient-voice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 155, 114, 0.14);
}

.patient-voice-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-light);
}

.patient-voice-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.patient-voice-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
}

.patient-voice-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.patient-voice-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.patient-voice-card__name {
  font-weight: 900;
  color: var(--green-dark);
}

.patient-voice-card__symptom {
  color: var(--muted);
  font-size: 13px;
}

.patient-voice-card__anxiety,
.patient-voice-card__change {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.patient-voice-card__impression {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  color: var(--green-dark);
}

.patient-voice-card__clinic {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.patient-voice-card__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
}

/* =========================
   Patient Voice single
========================= */
.patient-voice-single__header {
  margin-bottom: 32px;
}

.patient-voice-single__profile {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--green-light);
  margin-top: 20px;
}

.patient-voice-single__image {
  overflow: hidden;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.patient-voice-single__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.patient-voice-single__profile-body {
  min-width: 0;
}

.patient-voice-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 8px;
  font-weight: 700;
}

.patient-voice-single__symptom {
  font-weight: 700;
  color: var(--green-dark);
}

.patient-voice-single__section {
  margin: 32px 0;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.patient-voice-single__section-title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.patient-voice-single__impression {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--green-light);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}

.patient-voice-single__impression::before {
  content: "\201C";
  position: absolute;
  left: 10px;
  top: 0;
  color: rgba(15, 155, 114, 0.35);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.patient-voice-questionnaire {
  text-align: center;
  margin: 20px 0;
}

.patient-voice-questionnaire img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* =========================
   Google Review list
========================= */
.google-review-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.google-review-card {
  display: flex;
  flex-direction: column;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.google-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.google-review-card__stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.google-review-card__clinic {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.google-review-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.5;
}

.google-review-card__body {
  flex: 1;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}

.google-review-card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.google-review-card__source {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* =========================
   Staff License Tags
========================= */
.staff-license-list {
  margin: 10px 0;
}

.staff-license-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.staff-license-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.staff-license-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(15, 155, 114, 0.25);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 13px;
  font-weight: 600;
}

/* =========================
   Credential Proof
========================= */
.credential-proof-section {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
}

.credential-proof-image img {
  max-width: 480px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

/* =========================
   Admin token help
========================= */
.cmg-token-help {
  color: #555;
  font-size: 12px;
  margin-top: 4px;
}

/* =========================
   Clinic Director Message
========================= */
.clinic-director-message {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
}

.clinic-director-message__inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.clinic-director-message__photo {
  flex-shrink: 0;
  width: 120px;
}

.clinic-director-message__photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--green-light);
}

.clinic-director-message__name {
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.clinic-director-message__text {
  line-height: 1.8;
  color: var(--text);
}

/* =========================
   Traffic Accident Hero
========================= */
.traffic-accident-hero {
  position: relative;
  background: var(--green-dark);
  color: var(--white);
  overflow: hidden;
}

.traffic-accident-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.traffic-accident-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.traffic-accident-hero__body {
  position: relative;
  z-index: 1;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 80px 40px;
}

.traffic-accident-hero__area {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-bottom: 8px;
}

.traffic-accident-hero__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.traffic-accident-hero__clinic {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 24px;
}

.traffic-accident-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   Traffic Accident Stats
========================= */
.traffic-accident-stats {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.traffic-accident-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.traffic-accident-stats__number {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.traffic-accident-stats__count {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.traffic-accident-stats__unit {
  font-size: 24px;
  font-weight: 700;
}

.traffic-accident-stats__meta p {
  margin: 4px 0;
  font-size: 16px;
}

.traffic-accident-stats__period,
.traffic-accident-stats__note {
  font-size: 13px;
  opacity: 0.75;
}

/* =========================
   Traffic Accident Tags / Conditions
========================= */
.traffic-accident-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.traffic-accident-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid rgba(15, 155, 114, 0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
}

/* =========================
   Traffic Director Message
========================= */
.traffic-director-message {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px;
}

.traffic-director-message__inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.traffic-director-message__photo {
  flex-shrink: 0;
  width: 120px;
}

.traffic-director-message__photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.5);
}

.traffic-director-message__name {
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.traffic-director-message__text {
  line-height: 1.8;
}

/* =========================
   Traffic Accident FAQ
========================= */
.traffic-accident-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.traffic-accident-faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.traffic-accident-faq__q {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  padding: 16px 20px;
  margin: 0;
  position: relative;
}

.traffic-accident-faq__q::before {
  content: 'Q';
  font-size: 18px;
  font-weight: 800;
  margin-right: 10px;
}

.traffic-accident-faq__a {
  padding: 16px 20px;
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.traffic-accident-faq__a::before {
  content: 'A.  ';
  font-weight: 700;
  color: var(--green);
}

/* =========================
   Traffic Accident Cards (archive/shortcode)
========================= */
.traffic-accident-archive-list,
.traffic-accident-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.traffic-accident-archive-card,
.traffic-accident-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.traffic-accident-archive-card:hover,
.traffic-accident-card:hover {
  box-shadow: var(--shadow);
}

.traffic-accident-archive-card__image img,
.traffic-accident-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.traffic-accident-archive-card__body,
.traffic-accident-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.traffic-accident-archive-card__area,
.traffic-accident-card__area {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.traffic-accident-archive-card__title,
.traffic-accident-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.traffic-accident-archive-card__conditions,
.traffic-accident-card__conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* =========================
   Traffic Case Cards
========================= */
.traffic-case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.traffic-case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.traffic-case-card:hover {
  box-shadow: var(--shadow);
}

.traffic-case-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.traffic-case-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.traffic-case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.traffic-case-card__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.traffic-case-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.traffic-case-card__meta span {
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
}

.traffic-case-card__change {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* =========================
   Traffic Case Single
========================= */
.traffic-case-single__article {
  max-width: 800px;
  margin: 0 auto;
}

.traffic-case-single__header {
  margin-bottom: 40px;
}

.traffic-case-single__profile {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.traffic-case-single__meta {
  font-size: 14px;
  color: var(--muted);
}

.traffic-case-single__symptom {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}

.traffic-case-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.traffic-case-before-after__item p {
  text-align: center;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.traffic-case-before-after__item img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

/* =========================
   Responsive — Traffic
========================= */
@media (max-width: 900px) {
  .traffic-accident-archive-list,
  .traffic-accident-list,
  .traffic-case-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .clinic-director-message__inner,
  .traffic-director-message__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .traffic-accident-hero__body {
    padding: 60px 24px;
  }
}

@media (max-width: 600px) {
  .traffic-accident-archive-list,
  .traffic-accident-list,
  .traffic-case-list {
    grid-template-columns: 1fr;
  }

  .traffic-case-before-after {
    grid-template-columns: 1fr;
  }

  .traffic-accident-stats__inner {
    flex-direction: column;
  }
}

/* =========================
   Responsive — Patient Voice / Google Review
========================= */
@media (max-width: 900px) {
  .patient-voice-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .patient-voice-single__profile {
    grid-template-columns: 120px 1fr;
    gap: 20px;
  }

  .patient-voice-single__image {
    width: 100px;
    height: 100px;
  }

  .google-review-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .patient-voice-list {
    grid-template-columns: 1fr;
  }

  .patient-voice-single__profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .patient-voice-single__image {
    width: 100px;
    height: 100px;
  }
}
/* ------------------------------------------------------------------
 * スタッフ プロフィール画像（氏名下）
 * ------------------------------------------------------------------ */
.cmg-staff-detail__profile-image {
  margin: 8px 0 12px;
}

.cmg-staff-detail__profile-image img {
  max-width: 200px;
  border-radius: 6px;
  display: block;
}

/* ------------------------------------------------------------------
 * スタッフ 趣味リスト
 * ------------------------------------------------------------------ */
.cmg-staff-hobby-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cmg-staff-hobby-list li {
  background: #f0f6ff;
  border: 1px solid #c6d9f5;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.9rem;
  color: #2c5282;
}

/* =========================
   Clinic Archive
========================= */
.clinic-archive {
  padding: 56px 0 88px;
}

/* --- Breadcrumb --- */
.cmg-breadcrumb {
  margin-bottom: 32px;
}

.cmg-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.cmg-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
}

.cmg-breadcrumb li + li::before {
  content: "›";
  color: var(--line);
  font-size: 16px;
  line-height: 1;
}

.cmg-breadcrumb a {
  color: var(--green);
  font-weight: 700;
}

.cmg-breadcrumb a:hover {
  text-decoration: underline;
}

/* --- Grid --- */
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

/* --- Card --- */
.clinic-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.clinic-card-image {
  display: block;
  overflow: hidden;
}

.clinic-card-image img {
  width: 100%;
  aspect-ratio: 4 / 2.5;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.clinic-card:hover .clinic-card-image img {
  transform: scale(1.04);
}

.clinic-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
  gap: 6px;
}

.clinic-card-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.clinic-card-title a {
  color: var(--text);
}

.clinic-card-title a:hover {
  color: var(--green);
}

.clinic-card-address,
.clinic-card-station,
.clinic-card-tel {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.clinic-card-tel a {
  color: var(--green-dark);
  font-weight: 700;
}

.clinic-card-link {
  margin-top: auto;
  padding-top: 16px;
  width: 100%;
  justify-content: center;
}

/* --- Pagination --- */
.cmg-pagination {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.cmg-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cmg-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.cmg-pagination .page-numbers:hover {
  border-color: var(--green);
  color: var(--green);
}

.cmg-pagination .page-numbers.current {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.cmg-pagination .page-numbers.dots {
  border: 0;
  background: transparent;
  pointer-events: none;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .clinic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .clinic-archive {
    padding: 40px 0 64px;
  }

  .clinic-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .clinic-card-title {
    font-size: 16px;
  }

  .cmg-pagination {
    margin-top: 40px;
  }
}

/* =========================
   Clinic Single
========================= */
.cmg-clinic-single {
  padding-bottom: 80px;
}

/* --- Hero --- */
.cmg-clinic-hero {
  display: flex;
  align-items: stretch;
  min-height: 320px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* body の左端を .section-inner と揃える */
.cmg-clinic-hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 52px 48px 52px max(20px, calc((100vw - var(--inner)) / 2));
}

.cmg-clinic-hero__image {
  flex: 0 0 440px;
  overflow: hidden;
}

.cmg-clinic-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cmg-clinic-hero__area {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.cmg-clinic-hero__name {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.3;
  font-weight: 900;
}

.cmg-clinic-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Section inner top spacing --- */
.cmg-clinic-single .section-inner {
  padding-top: 52px;
}

/* --- Sections --- */
.cmg-clinic-section {
  margin-bottom: 56px;
}

.cmg-clinic-section:last-child {
  margin-bottom: 0;
}

.cmg-clinic-section__title {
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
}

/* --- Info Table --- */
.cmg-clinic-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.cmg-clinic-info-table th,
.cmg-clinic-info-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.7;
  text-align: left;
}

.cmg-clinic-info-table th {
  width: 140px;
  font-weight: 900;
  color: var(--green-dark);
  background: var(--green-light);
  white-space: nowrap;
}

.cmg-clinic-info-table td a {
  color: var(--green);
  font-weight: 700;
}

/* --- Director Message --- */
.clinic-director-message__inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.clinic-director-message__photo {
  flex: 0 0 140px;
}

.clinic-director-message__photo img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.clinic-director-message__name {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 900;
  color: var(--green-dark);
}

.clinic-director-message__text {
  font-size: 15px;
  line-height: 1.9;
}

/* --- Map --- */
.cmg-clinic-map {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cmg-clinic-map iframe {
  display: block;
  border-radius: 12px;
}

/* --- CTA section --- */
.cmg-clinic-cta {
  padding: 40px;
  background: var(--green-light);
  border-radius: 18px;
  text-align: center;
}

.cmg-clinic-cta .cmg-clinic-section__title {
  border-bottom: none;
  padding-bottom: 0;
}

.cmg-clinic-cta .button-row {
  justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .cmg-clinic-hero {
    flex-direction: column;
    min-height: 0;
  }

  .cmg-clinic-hero__image {
    flex: none;
    height: 260px;
  }

  .cmg-clinic-hero__body {
    padding: 32px 20px 36px;
  }

  .clinic-director-message__inner {
    flex-direction: column;
    gap: 20px;
  }

  .clinic-director-message__photo {
    flex: none;
    width: 120px;
  }
}

@media (max-width: 560px) {
  .cmg-clinic-single {
    padding-bottom: 56px;
  }

  .cmg-clinic-section {
    margin-bottom: 40px;
  }

  .cmg-clinic-info-table th,
  .cmg-clinic-info-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  .cmg-clinic-info-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }

  .cmg-clinic-cta {
    padding: 28px 20px;
  }
}
