:root {
  --color-bg: #fafaf8;
  --color-surface: #ffffff;
  --color-soft: #eef0e4;
  --color-cream: #ede8d5;
  --color-band-gray: #ececec;
  --color-band-blue: #b8dbe8;
  --color-accent-soft: #fdeceb;
  --color-primary: #195f55;
  --color-primary-dark: #0f3f38;
  --color-secondary: #ff4c4c;
  --color-gold: #c9a24b;
  --color-text: #333333;
  --color-muted: #5c6b66;
  --color-border: #d9ddd2;
  --shadow-soft: 0 18px 45px rgba(19, 73, 70, 0.11);
  --font-sans: "Noto Sans JP", "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --radius: 5px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  line-height: 1.8;
}

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

a {
  color: inherit;
}

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

.floating-cta {
  position: fixed;
  top: 38%;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-cta-item {
  display: grid;
  width: 74px;
  min-height: 74px;
  place-items: center;
  padding: 10px 8px;
  color: #fff;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: 0 14px 34px rgba(5, 34, 30, 0.22);
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.floating-cta-item:hover,
.floating-cta-item:focus-visible {
  transform: translateX(-4px);
}

.floating-cta-item:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.floating-cta-web {
  background: var(--color-gold);
}

.floating-cta-line {
  background: #06c755;
}

.mobile-reservation-bar {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100% - 32px, 1240px);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.site-logo {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  min-width: 238px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  font-weight: 700;
}

.logo-main,
.logo-sub {
  display: block;
  line-height: 1.35;
}

.logo-main {
  font-weight: 700;
  font-size: 14px;
}

.logo-sub {
  color: var(--color-muted);
  font-size: 12px;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

.global-nav a {
  padding: 8px 9px;
  border-radius: 6px;
  color: var(--color-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: var(--color-primary-dark);
  background: var(--color-soft);
}

.global-nav a.is-active,
.global-nav a[aria-current="page"] {
  color: var(--color-primary-dark);
  background: none;
  box-shadow: inset 0 -2px 0 var(--color-primary);
}

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

.cta-button,
.primary-button,
.secondary-button,
.outline-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.cta-button {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.cta-phone {
  color: var(--color-primary-dark);
  background: var(--color-soft);
}

.cta-line {
  color: #fff;
  background: #2ca66a;
}

.cta-web,
.primary-button {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 16px 36px rgba(25, 95, 85, 0.2);
}

.primary-button {
  min-height: 52px;
  padding: 14px 30px;
}

.secondary-button,
.outline-button {
  color: var(--color-primary-dark);
  background: #fff;
  border: 1px solid var(--color-border);
}

.outline-button {
  margin-top: 28px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-primary-dark);
}

.hero-section {
  background:
    linear-gradient(90deg, rgba(250, 250, 248, 0.96) 0%, rgba(250, 250, 248, 0.86) 54%, rgba(238, 240, 228, 0.72) 100%);
  padding: 62px 0 46px;
}

.page-hero {
  padding: 54px 0 58px;
  background:
    linear-gradient(90deg, rgba(250, 250, 248, 0.98) 0%, rgba(250, 250, 248, 0.9) 54%, rgba(238, 240, 228, 0.76) 100%);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--color-muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: var(--color-border);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.page-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 17px;
}

.hero-inner,
.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 38px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 17px;
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ===== 動き演出プレビュー：開始（不要なら下のブロックごと削除でOK） ===== */
.hero-slideshow {
  position: relative;
  aspect-ratio: 720 / 520;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hero-slideshow-fade 12s infinite;
}

.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 4s; }
.hero-slideshow img:nth-child(3) { animation-delay: 8s; }

@keyframes hero-slideshow-fade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  29% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow img {
    animation: none;
    opacity: 0;
  }

  .hero-slideshow img:first-child {
    opacity: 1;
  }
}
/* ===== 動き演出プレビュー：終了 ===== */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: 76px 0;
  background: var(--color-surface);
}

.section-soft {
  background: var(--color-soft);
}

.nav-dropdown { position: relative; }
.nav-dropdown summary { list-style: none; cursor: pointer; padding: 8px 9px; border-radius: 6px; color: var(--color-muted); font-size: 13px; font-weight: 700; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: "▾"; margin-left: 5px; font-size: 10px; }
.nav-dropdown[open] summary, .nav-dropdown summary:hover { color: var(--color-primary-dark); background: var(--color-soft); }
.nav-submenu { position: absolute; top: calc(100% + 8px); left: 0; z-index: 25; display: grid; min-width: 210px; padding: 8px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.nav-submenu a { display: block; padding: 9px 12px; border-radius: 4px; white-space: nowrap; }
.nav-submenu a:hover, .nav-submenu a:focus-visible { background: var(--color-soft); }
.mobile-nav-extra { display: none; }

.shokumou-hero {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(5, 24, 21, 0.42), rgba(5, 24, 21, 0.42)),
    url("../../public/real/sub-hero-worry.jpg") center / cover;
}

.shokumou-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

.shokumou-hero .container {
  position: relative;
  z-index: 1;
}

.shokumou-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.shokumou-breadcrumb-wrap {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.shokumou-breadcrumb-wrap .breadcrumb {
  min-height: 56px;
  margin-bottom: 0;
}

.shokumou-intro {
  padding: 58px 0 66px;
  background: var(--color-surface);
}

.shokumou-intro-inner {
  max-width: 920px;
  text-align: center;
}

.shokumou-intro-kicker {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.shokumou-intro h2 {
  margin: 0 0 18px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: 0;
}

.shokumou-intro-copy {
  max-width: 790px;
  margin: 8px auto 0;
  color: var(--color-primary);
  font-size: 19px;
  font-weight: 800;
  line-height: 2;
}

.shokumou-intro-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.shokumou-intro-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 54px;
  padding: 16px 13px;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.shokumou-intro-button:hover,
.shokumou-intro-button:focus-visible {
  color: #fff;
  background: var(--color-primary);
}

.shokumou-worry-section {
  padding: 68px 0 76px;
  color: #fff;
  background: linear-gradient(0deg, var(--color-primary) 0%, #0c3022 100%);
}

#mechanism-title,
#worry-title,
#fue-method,
#fut-method {
  scroll-margin-top: 170px;
}

.shokumou-worry-inner {
  text-align: center;
}

.shokumou-worry-section h2 {
  margin: 0 0 36px;
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.shokumou-worry-list {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.shokumou-worry-list li {
  margin: 0 0 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  font-size: clamp(34px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.shokumou-worry-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.shokumou-worry-photos {
  position: relative;
  width: min(100%, 800px);
  margin: 44px auto 0;
  aspect-ratio: 800 / 454;
  min-height: 0;
}

.shokumou-worry-photos img {
  position: absolute;
  width: 52%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.3));
}

.shokumou-worry-photo-man {
  top: 0;
  left: 9%;
}

.shokumou-worry-photo-woman {
  top: 14%;
  left: 56%;
  z-index: 1;
}

.shokumou-pitch {
  max-width: 860px;
  margin: 30px auto 0;
  font-family: var(--font-serif);
  font-weight: 600;
  text-align: center;
}

.shokumou-pitch-lead {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.45;
}

.shokumou-pitch-heading,
.shokumou-pitch-gold {
  margin: 0 0 16px;
  font-size: clamp(34px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.35;
}

.shokumou-pitch-heading {
  color: #fff;
}

.shokumou-pitch-gold {
  color: var(--color-gold);
}

.shokumou-answer-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 90px;
  background: #dedede;
}

.shokumou-answer-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 48px solid var(--color-primary);
  border-right: 190px solid transparent;
  border-left: 190px solid transparent;
  transform: translateX(-50%);
}

.shokumou-answer-section::after {
  content: "";
  position: absolute;
  right: 20%;
  bottom: 84px;
  width: 74px;
  height: 74px;
  background: rgba(160, 160, 160, 0.25);
  box-shadow: 48px -48px 0 rgba(160, 160, 160, 0.2);
}

.shokumou-answer-inner {
  position: relative;
  z-index: 1;
}

.shokumou-answer-inner::before {
  content: "";
  position: absolute;
  bottom: 256px;
  left: 7%;
  width: 72px;
  height: 72px;
  background: rgba(160, 160, 160, 0.22);
  box-shadow: 48px 48px 0 rgba(160, 160, 160, 0.18);
}

.shokumou-answer-copy {
  margin-bottom: 56px;
  font-family: var(--font-serif);
  text-align: center;
}

.shokumou-answer-copy h2 {
  margin: 0 0 30px;
  color: var(--color-primary);
  font-size: clamp(44px, 4.4vw, 68px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.shokumou-answer-copy p {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
}

.shokumou-answer-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}

.shokumou-answer-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.shokumou-answer-style-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.shokumou-answer-style-photos img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shokumou-answer-style p {
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.shokumou-answer-age {
  margin: 78px 0 0;
  color: #e60012;
  font-family: var(--font-serif);
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0;
}

.treatment-detail-section {
  scroll-margin-top: 170px;
  background: #fff;
}

.treatment-detail-section .section-heading {
  max-width: 980px;
}

.treatment-detail-section .section-heading .eyebrow,
.treatment-detail-section .section-heading > p {
  display: none;
}

.treatment-detail-section .section-heading h2 {
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.treatment-method-overview {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: start;
  max-width: 1160px;
  margin: 40px auto 66px;
}

.treatment-method-figure {
  margin: 0;
}

.treatment-method-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.treatment-method-copy {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.85;
}

.treatment-method-copy p {
  margin: 0 0 18px;
}

.treatment-method-copy p:last-child {
  margin-bottom: 0;
}

.treatment-balance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.treatment-panel {
  padding: 34px 32px;
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 0;
  box-shadow: none;
}

.treatment-panel-caution {
  background: #fff;
  border-color: var(--color-primary);
}

.treatment-panel h3,
.treatment-flow-heading {
  margin: 0 0 18px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.treatment-panel ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-panel li {
  padding: 20px 0;
  border-top: 1px dotted var(--color-primary);
  color: var(--color-text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.treatment-panel li:first-child {
  border-top: none;
}

.treatment-flow-heading {
  margin-top: 92px;
  margin-bottom: 26px;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(32px, 3vw, 42px);
  text-align: left;
}

.shokumou-ns-section {
  background: #fff;
  padding-top: 72px;
}

.shokumou-ns-grid,
.shokumou-ns-balance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.shokumou-ns-grid {
  margin-bottom: 68px;
}

.shokumou-ns-figure {
  margin: 0 0 24px;
}

.shokumou-ns-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.shokumou-ns-option p,
.shokumou-ns-panel p {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.shokumou-ns-panel {
  padding: 34px 32px;
  background: #fff;
  border: 1px solid var(--color-primary);
}

.shokumou-ns-panel h3 {
  margin: 0 0 22px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.shokumou-monitor-banner-section {
  padding: 72px 0 78px;
  background: #fff;
}

.shokumou-monitor-banner {
  display: block;
  width: min(100%, 1024px);
  height: auto;
  margin: 0 auto;
}

.treatment-step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-step-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.treatment-step-list span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  font-weight: 800;
}

.treatment-step-list h3 {
  margin: 0 0 6px;
  color: var(--color-primary-dark);
  font-size: 18px;
}

.treatment-step-list p {
  margin: 0;
  color: var(--color-muted);
}

.fue-operation-flow-section {
  padding: 62px 0 60px;
  background: #e5e5e5;
}

.fue-operation-flow-heading {
  margin: 0 0 34px;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: clamp(34px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.fue-operation-flow-list {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fue-operation-flow-list li {
  display: grid;
  grid-template-columns: minmax(230px, 256px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 25px;
  background: #fff;
}

.fue-operation-flow-list figure {
  margin: 0;
}

.fue-operation-flow-list img {
  display: block;
  width: 100%;
  aspect-ratio: 1221 / 701;
  object-fit: cover;
}

.fue-operation-flow-list h3 {
  margin: 0 0 14px;
  color: #333;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 1.45;
}

.fue-operation-flow-list p {
  margin: 0;
  color: #3d3d3d;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.85;
}

.fue-next-day-section {
  padding: 0 0 86px;
  background: #e5e5e5;
}

.fue-next-day-heading {
  margin: 0 0 34px;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.fue-next-day-card {
  display: grid;
  grid-template-columns: minmax(230px, 256px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 25px;
  background: #fff;
}

.fue-next-day-card figure {
  margin: 0;
}

.fue-next-day-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1221 / 701;
  object-fit: cover;
}

.fue-next-day-card h3 {
  margin: 0 0 14px;
  color: #333;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 800;
  line-height: 1.45;
}

.fue-next-day-card p {
  margin: 0;
  color: #3d3d3d;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.85;
}

.fue-treatment-program-section {
  padding: 80px 0 0;
  background: #fff;
}

.fue-treatment-program-heading {
  margin: 0 0 32px;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.fue-treatment-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fue-treatment-program-link {
  position: relative;
  display: grid;
  min-height: 150px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  text-decoration: none;
  isolation: isolate;
}

.fue-treatment-program-link::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(50, 50, 50, 0.3);
  transition: background 160ms ease;
}

.fue-treatment-program-link img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fue-treatment-program-link span {
  align-self: center;
  padding: 16px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 800;
  line-height: 1.45;
}

.fue-treatment-program-link:hover::after,
.fue-treatment-program-link:focus-visible::after {
  background: rgba(12, 48, 34, 0.52);
}

.fue-treatment-program-link:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
}

.fue-treatment-risk-section {
  padding: 40px 0 80px;
  background: #fff;
}

.fue-treatment-risk-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.fue-treatment-risk-heading {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.fue-treatment-risk-heading::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.fue-treatment-risk-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.35em;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.85;
}

.banner-section { padding-top: 34px; padding-bottom: 34px; }
.banner-grid { display: grid; gap: 18px; max-width: 980px; margin: 0 auto; }
.banner-grid a { display: block; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.banner-grid img { width: 100%; }
.video-caption-link { margin: 8px 16px 0; text-align: center; font-weight: 700; }
.video-caption-link .text-link { margin-top: 0; }
.two-banners, .three-banners { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-banners { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.banner-image { width: 100%; max-width: 760px; margin: 0 auto 26px; border-radius: var(--radius); }

.performance-stack-section {
  padding: 0;
  background: var(--color-surface);
}

.performance-stack {
  display: grid;
  gap: 0;
  width: min(100%, 750px);
  margin: 0 auto;
}

.performance-stack a {
  display: block;
  overflow: hidden;
}

.performance-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.performance-stack-monitor-link {
  position: relative;
  z-index: 1;
  transform-origin: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

@media (prefers-reduced-motion: no-preference) {
  .performance-stack-monitor-link {
    animation: monitor-price-float 5.4s cubic-bezier(0.35, 0.8, 0.35, 1) 1.6s infinite;
  }
}

@media (hover: hover) and (pointer: fine) {
  .performance-stack-monitor-link:hover {
    animation: none;
    transform: translateY(-5px);
    box-shadow: 0 16px 28px rgba(4, 45, 39, 0.26);
  }
}

.performance-stack-monitor-link:focus-visible {
  animation: none;
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(4, 45, 39, 0.26);
}

.performance-stack-monitor-link:active {
  animation: none;
  transform: translateY(-1px);
}

@keyframes monitor-price-float {
  0%, 64%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(4, 45, 39, 0);
  }

  12% {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(4, 45, 39, 0.22);
  }

  24% {
    transform: translateY(-2px);
    box-shadow: 0 9px 18px rgba(4, 45, 39, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .performance-stack-monitor-link {
    animation: none;
  }
}

/* Privacy policy page */
.policy-content .policy-list {
  margin: 0;
  padding-left: 1.5em;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.9;
}

.policy-content .policy-list li + li {
  margin-top: 8px;
}

@media (max-width: 600px) {
  .policy-content .policy-list {
    font-size: 16px;
  }
}

.section-cream {
  background: var(--color-cream);
}

.section-gray-band {
  background: var(--color-band-gray);
}

.section-gray-band { background-image: linear-gradient(rgba(236, 236, 236, 0.82), rgba(236, 236, 236, 0.82)), url("../../public/real/bg-reasons-texture.jpg"); background-size: cover; background-position: center; }
.shampoo-background { background-image: linear-gradient(rgba(238, 240, 228, 0.88), rgba(238, 240, 228, 0.88)), url("../../public/real/bg-shampoo-texture.jpg"); background-size: cover; background-position: center; }
.travel-background { background-image: linear-gradient(rgba(238, 240, 228, 0.8), rgba(238, 240, 228, 0.8)), url("../../public/real/bg-travel-photo.jpg"); background-size: cover; background-position: center; }
.section-accent#about { background-image: linear-gradient(rgba(25, 95, 85, 0.9), rgba(25, 95, 85, 0.9)), url("../../public/real/bg-menu-texture.svg"); background-size: cover; }

.section-accent#about .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.section-blue-band {
  background: var(--color-band-blue);
}

.section-blue-band .eyebrow,
.section-blue-band .section-heading p:not(.eyebrow) {
  color: var(--color-text);
}

.section-accent {
  color: var(--color-bg);
  background: var(--color-primary);
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading h2,
.two-column h2,
.access-panel h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.two-column p,
.access-panel p {
  color: var(--color-muted);
}

.home-page .section-heading .eyebrow {
  color: var(--color-primary);
  font-size: clamp(28px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.18;
}

.home-page .section-heading h2 {
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.home-page .section-heading h2 + p,
.home-page .section-heading p:not(.eyebrow) {
  margin-top: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-grid,
.price-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid.four-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.method-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price-card,
.case-card,
.access-panel,
.info-card {
  background: #fff;
  border: 1px solid rgba(217, 221, 210, 0.72);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 24px 60px rgba(19, 73, 70, 0.09);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 58px;
  padding-bottom: 9px;
  color: var(--color-primary);
  background: transparent;
  border-bottom: 1px solid var(--color-primary);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.method-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  object-fit: contain;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.feature-card h3,
.price-card h3,
.case-card h3,
.faq-item h3 {
  margin: 16px 0 8px;
  font-size: 19px;
  line-height: 1.45;
}

.feature-card p,
.price-card p,
.case-card p,
.faq-item p,
.info-card p {
  margin: 0;
  color: var(--color-muted);
}

.info-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.menu-image-grid .info-card {
  display: flex;
  flex-direction: column;
}

.menu-image-grid .info-card p {
  flex: 1;
}

.menu-card-link {
  display: block;
  margin-top: 12px;
  color: var(--color-primary);
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.menu-card-link span {
  margin-left: 4px;
  font-size: 11px;
}

.menu-card-link:hover,
.menu-card-link:focus-visible {
  text-decoration: underline;
}

.info-card ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--color-muted);
}

.info-card li + li {
  margin-top: 8px;
}

.fade-in-item {
  animation: fade-in-up 0.7s ease both;
}

.fade-in-item:nth-child(2) { animation-delay: 0.08s; }
.fade-in-item:nth-child(3) { animation-delay: 0.16s; }
.fade-in-item:nth-child(4) { animation-delay: 0.24s; }
.fade-in-item:nth-child(5) { animation-delay: 0.32s; }
.fade-in-item:nth-child(6) { animation-delay: 0.4s; }

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-item {
    animation: none;
  }
}

.caution-card {
  border-left: 3px solid var(--color-primary);
}

.medical-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius);
  font-size: 14px;
}

.timeline-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(217, 221, 210, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(19, 73, 70, 0.07);
}

.timeline-list span {
  padding-bottom: 8px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1;
}

.timeline-list strong {
  color: var(--color-text);
}

.timeline-list p {
  margin: 0;
  color: var(--color-muted);
}

.section-actions {
  justify-content: center;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(217, 221, 210, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(19, 73, 70, 0.08);
}

.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: var(--color-primary-dark);
  background: var(--color-soft);
  font-weight: 800;
}

.detail-table-wrap {
  margin-top: 26px;
}

.detail-table-wrap h3 {
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-size: 22px;
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.media-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.portrait {
  max-width: 420px;
  justify-self: end;
}

.section-accent h2,
.section-accent .doctor-name {
  color: #ffffff;
}

.timeline-list li > img { width: 100%; height: 100%; min-height: 170px; object-fit: cover; border-radius: var(--radius); }
.timeline-list li > div { display: grid; grid-template-columns: 58px 160px 1fr; gap: 18px; align-items: start; }

.section-accent .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.section-accent p {
  color: rgba(255, 255, 255, 0.82);
}

.section-accent .text-link {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.72);
}

.section-accent .media-panel.portrait {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 70px rgba(5, 34, 30, 0.28);
}

.section-accent .feature-card,
.section-accent .price-card,
.section-accent .case-card,
.section-accent .case-detail-card,
.section-accent .info-card {
  color: var(--color-text);
}

.section-accent .feature-card h3,
.section-accent .price-card h3,
.section-accent .case-card h3,
.section-accent .case-detail-card h3,
.section-accent .info-card h3 {
  color: var(--color-text);
}

.section-accent .feature-card p,
.section-accent .price-card p,
.section-accent .case-card p,
.section-accent .case-detail-card p,
.section-accent .case-detail-card dd,
.section-accent .info-card p,
.section-accent .info-card li {
  color: var(--color-muted);
}

.section-accent .medical-note {
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.9);
}

.profile-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.profile-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.profile-list dt {
  color: #ffffff;
  font-weight: 800;
}

.profile-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.doctor-original-section {
  padding: 0 0 60px;
  background: #fff;
}

.doctor-original-visual {
  display: block;
  width: min(100%, 800px);
  height: auto;
  margin: 0 auto;
}

.doctor-original-history {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 16px 0;
}

.doctor-history-table {
  width: 100%;
  border-collapse: collapse;
}

.doctor-history-table th,
.doctor-history-table td {
  padding: 8px 12px 8px 0;
  color: var(--color-text);
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  vertical-align: top;
}

.doctor-history-table th {
  width: 90px;
  font-weight: 700;
  white-space: nowrap;
}

.doctor-original-history .cta-row {
  justify-content: center;
  margin-top: 30px;
}

.teal-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 270px;
  min-height: 55px;
  padding: 16px 12px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.teal-cta-button::before {
  content: "▶";
  font-size: 10px;
}

.home-monitor-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

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

.facility-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(217, 221, 210, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(19, 73, 70, 0.09);
}

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

.facility-card h3 {
  margin: 0;
  padding: 18px 20px 20px;
  font-size: 18px;
}

.staff-photo img {
  width: 100%;
  aspect-ratio: 1024 / 586;
  object-fit: cover;
}

.stats-grid,
.case-detail-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(217, 221, 210, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(19, 73, 70, 0.08);
}

.stat-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--color-primary-dark);
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.stat-card h3 {
  margin: 0 0 10px;
}

.filter-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(217, 221, 210, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-group span {
  min-width: 84px;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.filter-group button {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
}

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

.original-case-section {
  padding: 34px 0 44px;
  background: #176b5c;
}

.original-case-heading {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.95);
  text-align: center;
}

.original-case-heading h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: 0;
}

.original-case-card {
  position: relative;
  width: min(100% - 32px, 750px);
  margin: 0 auto;
}

.original-case-card + .original-case-card {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.95);
}

.original-case-label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 5px 10px;
  color: #176b5c;
  background: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.original-case-name {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.original-case-media {
  position: relative;
}

.original-case-icon {
  position: absolute;
  bottom: 100%;
  right: -4px;
  z-index: 3;
  width: min(194px, 27vw);
  height: auto;
}

.original-case-photo {
  display: block;
  width: 100%;
  height: auto;
}

.original-case-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 43px;
  margin: 0;
  padding: 9px 16px;
  border: 1px solid #fff;
  border-radius: 4px;
  box-shadow: 0 0 0 2px rgba(5, 43, 36, 0.9);
  color: #fff;
  background: #ff3b2f;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  list-style: none;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.original-case-detail {
  margin-top: 13px;
}

.original-case-button::-webkit-details-marker {
  display: none;
}

.original-case-button::marker {
  content: "";
}

.original-case-button-close {
  display: none;
}

.original-case-detail[open] .original-case-button-label {
  display: none;
}

.original-case-detail[open] .original-case-button-close {
  display: inline;
}

.original-case-button:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .original-case-button:hover {
    background: #e9352a;
    box-shadow: 0 3px 0 rgba(5, 43, 36, 0.9);
    transform: translateY(-1px);
  }
}

.original-case-detail-content {
  margin-top: 10px;
}

.original-case-detail-content > img {
  display: block;
  width: 100%;
  height: auto;
}

.original-case-detail-table {
  width: 100%;
  border-collapse: collapse;
  color: #172322;
  background: #fff;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
}

.original-case-detail-table th,
.original-case-detail-table td {
  padding: 12px 14px;
  border: 1px solid #3f4947;
  vertical-align: top;
  text-align: left;
}

.original-case-detail-table th {
  width: 30%;
  color: #172322;
  background: #f1f1f1;
  font-weight: 800;
  vertical-align: middle;
}

.original-case-staff-note {
  padding: 22px 24px;
  color: #172322;
  background: #fff;
  border: 1px solid #3f4947;
  border-top: 0;
}

.original-case-staff-note h3 {
  margin: 0 0 10px;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.4;
}

.original-case-staff-note p {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
}

.original-case-staff-note .original-case-disclaimer {
  margin-top: 14px;
  font-size: 13px;
}

.case-extra-section {
  padding: 27px 0 48px;
  background: #fff;
}

.case-extra-heading {
  width: min(100% - 32px, 1140px);
  margin: 0 auto 24px;
  padding: 12px 16px;
  background: #0f5a4e;
  text-align: center;
}

.case-extra-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
}

.case-extra-stack {
  display: grid;
  gap: 28px;
  width: min(100% - 32px, 1025px);
  margin: 0 auto;
}

.case-extra-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.case-extra-stack a {
  display: block;
  text-decoration: none;
}

.patient-example-section {
  padding: 43px 0 64px;
  background: #fff;
}

.patient-example-heading {
  width: min(100% - 32px, 960px);
  margin: 0 auto 24px;
  padding: 10px 16px;
  background: #0f5a4e;
  text-align: center;
}

.patient-example-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: 0;
}

.patient-example-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  width: min(100% - 32px, 717px);
  margin: 0 auto;
}

.patient-example-list img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #bdbdbd;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
}

.reasons-original-section {
  padding: 64px 0 70px;
  background-image: linear-gradient(rgba(236, 236, 236, 0.72), rgba(236, 236, 236, 0.72)), url("../../public/real/bg-reasons-texture.jpg");
  background-size: cover;
  background-position: center;
}

.reasons-original-section .section-heading {
  margin-bottom: 42px;
}

.reasons-original-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 32px;
  align-items: start;
  width: min(100%, 846px);
  margin: 0 auto;
}

.reason-original-card {
  position: relative;
}

.reason-original-card:nth-child(even) {
  margin-top: 38px;
}

.reason-original-point {
  display: block;
  margin: 0 0 4px;
  color: #333;
  font-family: var(--font-sans);
  font-size: clamp(29px, 2.7vw, 34px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.005em;
}

.reason-original-card:nth-child(even) .reason-original-point {
  text-align: right;
}

.reason-original-number {
  font-size: 1.24em;
  line-height: 0;
  letter-spacing: -0.04em;
}

.reason-original-card img {
  display: block;
  width: 100%;
  aspect-ratio: 407 / 306;
  height: auto;
  object-fit: cover;
}

.reason-original-body {
  display: grid;
  gap: 15px;
  min-height: 218px;
  padding: 28px 21px 22px;
  color: #fff;
  background: #303030;
  text-align: center;
}

.reason-original-body h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0;
}

.reason-original-body p {
  margin: 0;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0;
  text-align: left;
}

.reason-original-body a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 277px);
  min-height: 57px;
  margin: 0 auto;
  color: #333;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.cta-banner-red { display: block; margin-top: 18px; padding: 12px 18px; color: #fff; background: #d64545; text-align: center; text-decoration: none; font-weight: 800; border-radius: var(--radius); }
.simple-consult-buttons { display: grid; gap: 12px; max-width: 460px; margin: 0 auto; }
.simple-consult-buttons .cta-line { background: #06c755; }
.voice-comments { display: flex; flex-direction: column; gap: 14px; }
.voice-comments .info-card { display: flex; align-items: center; gap: 16px; padding: 18px 22px; }
.voice-comments .info-card::before { content: "声"; display: grid; flex: 0 0 48px; width: 48px; height: 48px; place-items: center; color: #fff; background: var(--color-primary); border-radius: 50%; font-weight: 800; }
.voice-comments .info-card h3 { margin: 0 0 4px; }
.voice-comments .info-card p { margin: 0; }

.patient-voices-original {
  padding: 40px 0 64px;
  background: #9ec7ec;
}

.patient-voices-inner {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
}

.patient-voices-heading {
  margin-bottom: 34px;
  text-align: center;
}

.patient-voices-heading h2 {
  margin: 0 0 10px;
  color: #075e57;
  font-family: var(--font-sans);
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.patient-voices-heading p {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 800;
}

.patient-voices-people {
  display: block;
  width: min(100%, 727px);
  height: auto;
  margin: 0 auto 26px;
}

.patient-voices-lead {
  position: relative;
  min-height: 126px;
  width: min(100% - 96px, 650px);
  margin: 0 auto 18px;
  padding: 24px 36px 22px 24px;
  background: #fff;
  border-radius: 8px;
}

.patient-voices-lead::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 22px;
  height: 18px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.patient-voices-lead p {
  margin: 0;
  color: #00584f;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 800;
}

.patient-voices-logo-mark {
  position: absolute;
  top: 50%;
  right: -88px;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding: 9px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  transform: translateY(-50%);
}

.patient-voices-logo-mark img {
  display: block;
  width: 34px;
  height: auto;
}

.patient-voices-logo-mark span {
  display: block;
  margin-top: 1px;
  color: #111;
  font-size: 6px;
  line-height: 1.05;
  font-weight: 800;
  white-space: nowrap;
}

.patient-voices-list {
  display: grid;
  gap: 16px;
}

.patient-voice-balloon {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.patient-voice-avatar {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.patient-voice-balloon p {
  position: relative;
  min-height: 64px;
  margin: 0;
  padding: 20px 24px;
  color: #222;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.75;
}

.patient-voice-balloon p::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 14px;
  height: 14px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.patient-voices-note {
  margin: 22px 0 0;
  color: rgba(0, 44, 40, 0.86);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
}

.patient-voices-note {
  font-size: 0;
}

.patient-voices-note::before {
  content: "※2020年〜2022年にかけて「院長の印象」についてアンケート回答によるもの\A※プライバシー保護の観点から、患者様はイラスト置き換えにて掲載しております。";
  white-space: pre-line;
  font-size: 11px;
  line-height: 1.7;
}

.method-original-section {
  padding: 44px 0 48px;
  color: #fff;
  background: #176b5c;
}

.method-original-inner {
  width: min(100% - 32px, 1000px);
  margin: 0 auto;
}

.method-original-row {
  display: grid;
  grid-template-columns: 560px 320px;
  gap: 70px;
  align-items: center;
}

.method-original-row + .method-original-row {
  margin-top: 74px;
}

.method-original-row-fut {
  grid-template-columns: 320px 560px;
  gap: 70px;
  padding-left: 42px;
}

.method-original-image {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 8px solid #fff;
  outline: 1px solid #d5c17e;
  object-fit: contain;
}

.method-original-text h3 {
  margin: 0 0 26px;
  color: #fff;
  font-size: 29px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.method-original-text h3 span {
  display: inline-block;
  margin-right: 8px;
  padding: 0 2px;
  border: 1px solid #fff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  vertical-align: 0.08em;
}

.method-original-text p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.method-original-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  min-height: 59px;
  margin-top: 18px;
  color: #333;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
}

.shampoo-media { display: grid; gap: 14px; }
.shampoo-media img { width: 100%; max-height: 360px; object-fit: contain; }
.shampoo-emphasis { display: inline-block; padding: 8px 14px; color: #b23838 !important; border: 2px solid #d64545; font-weight: 800; }

.shampoo-original-section {
  background: #fff;
}

.shampoo-original-photo-block {
  background-image: url("../../public/real/bg-shampoo-texture.jpg");
  background-size: min(100%, 1501px) auto;
  background-position: center 190px;
  background-repeat: no-repeat;
}

.shampoo-original-visual {
  position: relative;
  isolation: isolate;
  padding: 36px 16px clamp(640px, 55vw, 840px);
}

.shampoo-original-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    #fff 0%,
    #fff 30%,
    rgba(255, 255, 255, 0.82) 40%,
    rgba(255, 255, 255, 0.28) 54%,
    rgba(255, 255, 255, 0) 66%
  );
  pointer-events: none;
}

.shampoo-original-title {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 1036px);
  height: auto;
  margin: 0 auto;
}

.shampoo-original-detail {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 800px);
  height: auto;
  margin: 0 auto;
}

.shampoo-original-reasons {
  position: relative;
  margin-top: 0;
  padding: 24px 16px 72px;
}

.shampoo-original-reasons h2 {
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 10px 16px;
  color: #ffd400;
  background: #287f83;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.shampoo-reason-list {
  width: min(100%, 800px);
  margin: 0 auto;
}

.shampoo-reason-list div {
  display: grid;
  grid-template-columns: 80px 1fr;
  min-height: 88px;
  color: #fff;
  background: #287f83;
  border-top: 3px solid #fff;
}

.shampoo-reason-list span {
  display: grid;
  place-items: center;
  border-right: 1px solid #fff;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1;
}

.shampoo-reason-list p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 24px;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.shampoo-maintenance-flow {
  padding: 0 16px 70px;
  background: #fff;
}

.shampoo-maintenance-flow h2 {
  margin: 0 auto 10px;
  color: #176b5c;
  text-align: center;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 800;
}

.shampoo-step-list {
  display: grid;
  gap: 28px;
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.shampoo-step-list h3 {
  margin: 0 0 18px;
  padding: 13px 16px;
  color: #fff;
  background: #176b5c;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.shampoo-step-list div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
}

.shampoo-step-list img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.shampoo-step-list p {
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.9;
}

.dark-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 270px;
  min-height: 55px;
  margin: 40px auto 48px;
  padding: 16px 12px;
  color: #fff;
  background: #323232;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.dark-cta-button::before {
  content: "▶";
  font-size: 10px;
}

.case-detail-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(217, 221, 210, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(19, 73, 70, 0.09);
}

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

.case-detail-card img.case-photo-real {
  aspect-ratio: 979 / 558;
  object-fit: contain;
  background: #ffffff;
}

.case-detail-body {
  padding: 22px;
}

.case-consent-note {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 9px;
  color: var(--color-muted);
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.case-detail-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.case-meta-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.case-meta-list div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.case-meta-list dt {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.case-meta-list dd {
  margin: 0;
  color: var(--color-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding-bottom: 2px;
  color: var(--color-primary-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--color-gold);
  transition: border-color 180ms ease, opacity 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--color-primary-dark);
  opacity: 0.85;
}

.price-card .price {
  display: block;
  margin: 16px 0 8px;
  color: var(--color-primary-dark);
  font-size: 24px;
  font-weight: 800;
}

.price-card .note {
  font-size: 13px;
}

.case-card {
  padding: 0;
  overflow: hidden;
}

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

/* ===== 動き演出プレビュー：開始（不要なら下のブロックごと削除でOK） ===== */
.case-card img {
  transition: transform 0.4s ease;
}

.case-card:hover img {
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .case-card img {
    transition: none;
  }

  .case-card:hover img {
    transform: none;
  }
}
/* ===== 動き演出プレビュー：終了 ===== */

.case-card img.case-photo-real {
  aspect-ratio: 979 / 558;
  object-fit: contain;
  background: #ffffff;
}

.case-card h3,
.case-card p {
  padding-inline: 20px;
}

.case-card p {
  padding-bottom: 22px;
}

.doctor-name {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-gold);
  font-size: 22px;
  font-weight: 800;
}

.doctor-role,
.doctor-roman {
  margin: 0;
}

.doctor-role {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.doctor-roman {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.5;
}

.doctor-career-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  color: #fff;
  font-size: 14px;
  line-height: 1.75;
}

.doctor-career-table caption {
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
}

.doctor-career-table th,
.doctor-career-table td {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  vertical-align: top;
  text-align: left;
}

.doctor-career-table th {
  width: 92px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  white-space: nowrap;
}

.doctor-greeting-copy {
  max-width: 840px;
}

.doctor-achievements-section .container {
  max-width: 900px;
}

.achievement-group {
  margin-top: 32px;
}

.achievement-group > h3,
.achievement-group > summary {
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-size: 17px;
  font-weight: 800;
}

.achievement-group > summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.achievement-group > summary::-webkit-details-marker {
  display: none;
}

.achievement-group > summary::after {
  content: "▾ 開く";
  float: right;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.achievement-group[open] > summary::after {
  content: "▴ 閉じる";
}

.achievement-group[open] > summary {
  margin-bottom: 14px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.achievement-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.achievement-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--color-surface);
  font-size: 13px;
  line-height: 1.7;
}

.achievement-table th,
.achievement-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  text-align: left;
}

.achievement-table th {
  background: var(--color-soft);
  color: var(--color-primary-dark);
  font-weight: 800;
  white-space: nowrap;
}

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

.doctor-greeting-copy h2 {
  margin-bottom: 30px;
}

.doctor-greeting-copy > p:not(.eyebrow):not(.doctor-greeting-signature) {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.doctor-greeting-copy > p + p:not(.eyebrow) {
  margin-top: 24px;
}

.doctor-greeting-copy .doctor-greeting-signature {
  margin: 38px 0 0;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 700;
  text-align: right;
}

.doctor-philosophy-panel {
  padding: 42px 46px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.doctor-philosophy-panel h2 {
  margin: 0 0 24px;
  color: var(--color-primary-dark);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.35;
}

.doctor-philosophy-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.doctor-philosophy-panel p + p {
  margin-top: 18px;
}

.doctor-external-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 28px;
  padding: 12px 22px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.doctor-external-link::before {
  content: "▶";
  margin-right: 8px;
  font-size: 0.75em;
}

@media (hover: hover) and (pointer: fine) {
  .doctor-external-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 14px 24px rgba(12, 48, 34, 0.18);
  }
}

.doctor-external-link:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.news-list {
  display: grid;
  gap: 10px;
}

.news-list article,
.news-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.news-row {
  color: inherit;
  text-decoration: none;
}

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

.news-list span {
  display: inline-flex;
  justify-content: center;
  padding: 4px 10px;
  color: var(--color-primary-dark);
  background: var(--color-soft);
  border-radius: 4px;
}

.news-list h3 {
  margin: 0;
  font-size: 16px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.pagination span {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 8px 12px;
  color: var(--color-primary-dark);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-weight: 800;
}

.pagination .is-current {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.blog-tools {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.popular-box {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.popular-box h3 {
  margin-top: 0;
}

.popular-box ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.popular-box a {
  color: var(--color-primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.blog-card-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(217, 221, 210, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(19, 73, 70, 0.09);
  text-decoration: none;
}

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

.blog-card span,
.blog-card h3,
.blog-card time {
  margin-inline: 20px;
}

.blog-card span {
  display: inline-flex;
  margin-top: 18px;
  padding: 4px 10px;
  color: var(--color-primary-dark);
  background: var(--color-soft);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.blog-card h3 {
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 19px;
}

.blog-card time {
  display: block;
  margin-bottom: 22px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.article-header {
  padding: 54px 0 44px;
  background: var(--color-soft);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 24px 0 14px;
}

.article-meta span,
.article-meta time {
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.article-header h1 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.22;
}

.article-eyecatch,
.article-figure img {
  width: 100%;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-eyecatch {
  margin-top: 24px;
}

.article-body {
  padding-top: 58px;
  padding-bottom: 58px;
}

.article-body section + section {
  margin-top: 44px;
}

.article-body h2 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 30px;
}

.article-body h3 {
  margin: 28px 0 10px;
  color: var(--color-primary-dark);
  font-size: 20px;
}

.article-content {
  display: grid;
  gap: 48px;
}

.article-content .article-content-section + .article-content-section {
  margin-top: 0;
}

.article-content-section > :last-child {
  margin-bottom: 0;
}

.article-content-section p {
  margin: 0;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.9;
}

.article-content-section p + p {
  margin-top: 14px;
}

.article-case-facts {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.article-case-facts > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.3fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--color-border);
}

.article-case-facts dt,
.article-case-facts dd {
  margin: 0;
  padding: 14px 18px;
  line-height: 1.7;
}

.article-case-facts dt {
  color: var(--color-primary-dark);
  font-weight: 700;
  background: var(--color-soft);
}

.article-case-facts dd {
  background: #fff;
}

.article-content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 18px;
}

.article-content-links .text-link {
  font-weight: 700;
}

.article-figure {
  margin: 30px 0 0;
}

@media (max-width: 600px) {
  .article-content {
    gap: 36px;
  }

  .article-content-section p {
    font-size: 16px;
  }

  .article-case-facts > div {
    grid-template-columns: 1fr;
  }

  .article-case-facts dt,
  .article-case-facts dd {
    padding: 11px 14px;
  }

  .article-case-facts dd {
    padding-top: 12px;
  }
}

.article-figure figcaption {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
}

.narrow {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.faq-category-nav span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 14px;
  color: var(--color-primary-dark);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-weight: 800;
}

.faq-full-list {
  gap: 18px;
}

.faq-item {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.faq-number {
  margin: 0 0 8px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.faq-item h3 {
  margin-top: 0;
}

.faq-contact-section,
.consultation-cta-section {
  background: var(--color-primary);
}

.faq-contact-panel,
.consultation-cta-panel {
  width: min(100% - 32px, 640px);
  margin: 0 auto;
  padding: 34px 0 38px;
  color: #fff;
}

.faq-contact-heading,
.consultation-cta-heading {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.consultation-cta-copy {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-contact-phone,
.consultation-cta-phone {
  display: inline-block;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-decoration: none;
}

.faq-contact-phone:hover,
.faq-contact-phone:focus-visible,
.consultation-cta-phone:hover,
.consultation-cta-phone:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.faq-contact-hours,
.consultation-cta-hours {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.faq-contact-actions,
.consultation-cta-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.faq-contact-action,
.consultation-cta-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.faq-contact-action--web,
.consultation-cta-action--web {
  background: var(--color-gold);
}

.faq-contact-action--line,
.consultation-cta-action--line {
  background: #06c755;
}

.faq-contact-action--phone,
.consultation-cta-action--phone {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--color-primary-dark);
  background: #fff;
}

.faq-contact-action:hover,
.faq-contact-action:focus-visible,
.consultation-cta-action:hover,
.consultation-cta-action:focus-visible {
  filter: brightness(0.94);
}

.faq-contact-action:focus-visible,
.consultation-cta-action:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .faq-contact-section,
  .consultation-cta-section {
    padding: 0;
  }

  .faq-contact-panel,
  .consultation-cta-panel {
    padding: 30px 0 32px;
  }

  .faq-contact-heading,
  .consultation-cta-heading {
    font-size: 17px;
  }

  .faq-contact-phone,
  .consultation-cta-phone {
    font-size: 46px;
  }

  .faq-contact-hours,
  .consultation-cta-hours,
  .consultation-cta-copy {
    font-size: 14px;
  }

  .faq-contact-actions,
  .consultation-cta-actions {
    margin-top: 24px;
  }

  .faq-contact-action,
  .consultation-cta-action {
    min-height: 52px;
    padding-inline: 8px;
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .faq-contact-heading,
  .consultation-cta-heading {
    font-size: 16px;
  }

  .faq-contact-phone,
  .consultation-cta-phone {
    font-size: 40px;
  }

  .faq-contact-hours,
  .faq-contact-action,
  .consultation-cta-hours,
  .consultation-cta-copy,
  .consultation-cta-action {
    font-size: 13px;
  }
}

.final-cta {
  color: var(--color-bg);
  background: var(--color-primary);
}

.home-map,
.access-map {
  display: block;
  width: 100%;
  min-height: 360px;
  background: var(--color-surface);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.final-cta .access-panel {
  color: var(--color-bg);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 70px rgba(5, 34, 30, 0.24);
}

.final-cta .eyebrow,
.final-cta h2 {
  color: var(--color-bg);
}

.final-cta .access-panel p,
.final-cta .clinic-info dd {
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .clinic-info div {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.final-cta .clinic-info dt,
.final-cta .clinic-info a {
  color: #ffffff;
}

.final-cta .primary-button {
  color: var(--color-primary-dark);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(5, 34, 30, 0.3);
}

.final-cta .secondary-button {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.clinic-info {
  margin: 20px 0 0;
}

.clinic-info div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.clinic-info dt {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.clinic-info dd {
  margin: 0;
  color: var(--color-muted);
}

.case-icon { position: absolute; top: 10px; right: 12px; z-index: 2; width: 80px; height: 80px; object-fit: contain; }

.clinic-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-bottom: 34px; }
.clinic-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.access-phone { margin: 24px 0 0; font-size: clamp(30px, 5vw, 52px); font-weight: 800; line-height: 1.1; }
.access-phone a { color: #fff; text-decoration: none; }
.access-content { align-items: stretch; }

.access-main-section .two-column {
  align-items: stretch;
}

.access-main-section .access-map {
  height: 100%;
  min-height: 100%;
}

.access-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.access-route-grid,
.reservation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reservation-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(217, 221, 210, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(19, 73, 70, 0.09);
}

.reservation-number {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.reservation-card h3 {
  margin: 0;
  font-size: 22px;
}

.reservation-card p {
  margin-block: 0;
}

.reservation-card .note {
  color: var(--color-muted);
  font-size: 13px;
}

.reservation-card .primary-button,
.reservation-card .secondary-button {
  width: 100%;
}

.reservation-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.reservation-form label {
  display: grid;
  gap: 8px;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.reservation-form input,
.reservation-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font: inherit;
}

.reservation-form textarea {
  resize: vertical;
}

.privacy-check {
  display: flex;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--color-text);
  font-weight: 700;
}

.privacy-check input {
  width: 18px;
  height: 18px;
}

.privacy-check a {
  color: var(--color-primary-dark);
}

.center {
  text-align: center;
}

.site-footer {
  color: #dce9e7;
  background: #163735;
  padding: 42px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  margin-top: 0;
  color: #fff;
  font-weight: 800;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #dce9e7;
  text-decoration: none;
}

.copyright {
  margin: 26px 0 0;
  color: #a9bfbc;
  text-align: center;
  font-size: 12px;
}

.page-updated {
  margin: 22px 0 0;
  color: #a9bfbc;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .feature-grid.four-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .global-nav,
  .header-cta {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .floating-cta {
    display: none;
  }

  body {
    padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-reservation-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    box-shadow: 0 -5px 16px rgba(5, 34, 30, 0.18);
  }

  .mobile-reservation-bar__item {
    display: flex;
    flex-direction: column;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    transition: filter 180ms ease, transform 180ms ease;
  }

  .mobile-reservation-bar__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.3;
  }

  .mobile-reservation-bar__item--phone {
    background: #f0644b;
  }

  .mobile-reservation-bar__item--web {
    background: var(--color-primary);
  }

  .mobile-reservation-bar__item--line {
    background: #06c755;
  }

  .mobile-reservation-bar__item:focus-visible {
    position: relative;
    z-index: 1;
    outline: 3px solid var(--color-gold);
    outline-offset: -3px;
  }

  .mobile-reservation-bar__item:active {
    filter: brightness(0.9);
    transform: scale(0.98);
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .global-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .global-nav,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .global-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-dropdown { width: 100%; }
  .nav-dropdown summary { padding: 12px; background: var(--color-bg); }
  .nav-submenu { position: static; min-width: 0; margin: 0 12px 8px; padding: 4px; box-shadow: none; }

  .global-nav a {
    padding: 12px;
    background: var(--color-bg);
  }

  .header-cta,
  .cta-row,
  .stacked-mobile {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-section {
    padding-top: 38px;
  }

  .hero-inner,
  .two-column,
  .two-column.reverse,
  .reasons-original-grid,
  .feature-grid,
  .feature-grid.four-columns,
  .price-grid,
  .case-grid,
  .method-grid,
  .compare-grid,
  .stats-grid,
  .case-detail-grid,
  .voice-grid,
  .blog-tools,
  .blog-card-grid,
  .related-grid,
  .access-route-grid,
  .reservation-grid,
  .facility-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading h2,
  .two-column h2,
  .access-panel h2 {
    font-size: 27px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .shokumou-hero {
    min-height: 220px;
  }

  .doctor-career-table {
    font-size: 13px;
  }

  .doctor-career-table th,
  .doctor-career-table td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }

  .doctor-career-table td {
    border-top: 0;
  }

  .doctor-philosophy-panel {
    padding: 28px 20px;
  }

  .doctor-philosophy-panel p {
    font-size: 14px;
    line-height: 1.9;
  }

  .shokumou-hero h1 {
    font-size: 34px;
  }

  .shokumou-breadcrumb-wrap .breadcrumb {
    min-height: 48px;
  }

  .shokumou-intro {
    padding: 42px 0 48px;
  }

  .shokumou-intro h2 {
    font-size: 17px;
  }

  .shokumou-intro-copy {
    font-size: 16px;
    line-height: 1.9;
  }

  .shokumou-intro-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .shokumou-intro-button {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .shokumou-worry-section {
    padding: 50px 0 56px;
  }

  .shokumou-worry-section h2 {
    margin-bottom: 26px;
    font-size: 36px;
  }

  .shokumou-worry-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-size: 24px;
    line-height: 1.45;
  }

  .shokumou-worry-photos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 330px);
    aspect-ratio: auto;
    min-height: 0;
    margin-top: 28px;
  }

  .shokumou-worry-photos img {
    position: static;
    width: 100%;
    height: auto;
  }

  .shokumou-worry-photo-woman {
    margin-left: -18%;
  }

  .shokumou-pitch {
    margin-top: 26px;
  }

  .shokumou-pitch-lead {
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 1.45;
  }

  .shokumou-pitch-heading,
  .shokumou-pitch-gold {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.35;
  }

  .shokumou-answer-section {
    padding: 76px 0 64px;
  }

  .shokumou-answer-section::before {
    border-top-width: 32px;
    border-right-width: 90px;
    border-left-width: 90px;
  }

  .shokumou-answer-section::after,
  .shokumou-answer-inner::before {
    display: none;
  }

  .shokumou-answer-copy {
    margin-bottom: 34px;
  }

  .shokumou-answer-copy h2 {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .shokumou-answer-copy p {
    font-size: 25px;
    line-height: 1.5;
  }

  .shokumou-answer-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .shokumou-answer-style-photos {
    gap: 10px;
  }

  .shokumou-answer-style p {
    font-size: 14px;
    line-height: 1.7;
  }

  .shokumou-answer-age {
    margin-top: 48px;
    font-size: 40px;
  }

  .treatment-balance-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .treatment-panel {
    padding: 24px 22px;
  }

  .treatment-detail-section .section-heading h2 {
    font-size: 40px;
  }

  .treatment-method-overview {
    grid-template-columns: 1fr;
    gap: 26px;
    margin: 30px auto 46px;
  }

  .treatment-method-copy {
    font-size: 15px;
    line-height: 1.8;
  }

  .treatment-panel h3,
  .treatment-flow-heading {
    font-size: 26px;
  }

  .treatment-panel li {
    padding: 16px 0;
    font-size: 15px;
  }

  .treatment-flow-heading {
    margin-top: 56px;
    text-align: center;
  }

  .shokumou-ns-section {
    padding-top: 54px;
  }

  .shokumou-ns-grid,
  .shokumou-ns-balance-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shokumou-ns-grid {
    margin-bottom: 48px;
  }

  .shokumou-ns-figure {
    margin-bottom: 18px;
  }

  .shokumou-ns-option p,
  .shokumou-ns-panel p {
    font-size: 15px;
    line-height: 1.8;
  }

  .shokumou-ns-panel {
    padding: 24px 22px;
  }

  .shokumou-ns-panel h3 {
    font-size: 26px;
  }

  .shokumou-monitor-banner-section {
    padding: 44px 0 50px;
  }

  .treatment-step-list li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .treatment-step-list span {
    width: 50px;
    height: 50px;
  }

  .fue-operation-flow-section {
    padding: 48px 0 60px;
  }

  .fue-operation-flow-heading {
    margin-bottom: 26px;
    font-size: 32px;
  }

  .fue-operation-flow-list {
    gap: 18px;
  }

  .fue-operation-flow-list li {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .fue-operation-flow-list h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .fue-operation-flow-list p {
    font-size: 15px;
    line-height: 1.8;
  }

  .fue-next-day-section {
    padding: 0 0 58px;
  }

  .fue-next-day-heading {
    margin-bottom: 26px;
    font-size: 30px;
  }

  .fue-next-day-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .fue-next-day-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .fue-next-day-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .fue-treatment-program-section {
    padding: 58px 0 0;
  }

  .fue-treatment-program-heading {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .fue-treatment-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fue-treatment-program-link {
    min-height: 150px;
  }

  .fue-treatment-program-link span {
    padding: 12px;
    font-size: 15px;
  }

  .fue-treatment-risk-section {
    padding: 30px 0 58px;
  }

  .fue-treatment-risk-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fue-treatment-risk-heading {
    font-size: 21px;
  }

  .fue-treatment-risk-list {
    gap: 10px;
    font-size: 15px;
    line-height: 1.8;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-list li > div { grid-template-columns: 1fr; gap: 8px; }
  .clinic-gallery { grid-template-columns: 1fr; }

  .portrait {
    max-width: none;
    justify-self: stretch;
  }

  .doctor-profile-section .portrait {
    order: -1;
  }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .clinic-info div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .filter-group,
  .case-meta-list div {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .reason-original-card:nth-child(even) {
    margin-top: 0;
  }

  .reason-original-card:nth-child(even) .reason-original-point {
    text-align: left;
  }

  .reason-original-body h3 {
    white-space: normal;
  }

  .patient-voices-original {
    padding: 36px 0 54px;
  }

  .patient-voices-heading {
    margin-bottom: 24px;
  }

  .patient-voices-lead {
    padding: 20px;
  }

  .patient-voices-logo-mark {
    position: static;
    display: grid;
    margin: 14px auto 0;
  }

  .patient-voices-lead::after {
    display: none;
  }

  .patient-voice-balloon {
    grid-template-columns: 52px 1fr;
    gap: 8px;
  }

  .patient-voice-avatar {
    width: 52px;
    height: 52px;
  }

  .patient-voice-balloon p {
    padding: 16px 18px;
    font-size: 13px;
  }

  .method-original-section {
    padding: 36px 0 48px;
  }

  .method-original-row,
  .method-original-row-fut {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-left: 0;
  }

  .method-original-row + .method-original-row {
    margin-top: 52px;
  }

  .method-original-row-fut .method-original-image {
    order: -1;
  }

  .method-original-text h3 {
    margin-bottom: 16px;
    font-size: 27px;
  }

  .method-original-button {
    width: min(100%, 220px);
  }

  .shampoo-original-visual {
    min-height: auto;
  }

  .shampoo-original-title {
    height: auto;
  }

  .shampoo-original-detail {
    width: 100%;
  }

  .shampoo-original-reasons {
    padding: 20px 16px 52px;
  }

  .shampoo-original-reasons h2 {
    font-size: 22px;
  }

  .shampoo-reason-list div {
    grid-template-columns: 58px 1fr;
    min-height: 76px;
  }

  .shampoo-reason-list span {
    font-size: 34px;
  }

  .shampoo-reason-list p {
    padding: 14px 16px;
    font-size: 14px;
  }

  .shampoo-maintenance-flow h2 {
    font-size: 26px;
  }

  .shampoo-step-list div {
    grid-template-columns: 1fr;
  }
}

/* STEP27: 全幅背景のヒーロー */
.hero-section { position: relative; aspect-ratio: 1265 / 678; min-height: 0; display: flex; align-items: center; overflow: hidden; padding: 72px 0; background: var(--color-soft); }
.hero-inner { position: static; display: block; z-index: 1; }
.hero-copy { position: relative; z-index: 2; max-width: none; padding: 0; background: transparent; border-radius: 0; box-shadow: none; }
.hero-visual { position: absolute; inset: 0 auto 0 50%; z-index: 0; width: 100vw; max-width: none; height: 100%; margin: 0; transform: translateX(-50%); border-radius: 0; box-shadow: none; }
.hero-visual.hero-slideshow { aspect-ratio: auto; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: transparent; pointer-events: none; }
.hero-slideshow img { object-fit: cover; }
@media (max-width: 760px) {
  .hero-section { aspect-ratio: 28 / 15; min-height: 0; padding: 0; }
  .hero-copy { padding: 0; background: transparent; }
  .hero-visual::after { background: rgba(250, 250, 248, 0.45); }
}

/* STEP25: 元サイトに合わせた2段ヘッダー */
.site-header { background: var(--color-surface); }
.header-top { color: #fff; background: var(--color-primary); }
.header-top-inner, .header-nav-inner { width: min(100% - 32px, 1240px); margin: 0 auto; }
.header-top-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo { min-width: 0; }
.site-logo img { display: block; width: 254px; height: auto; }
.header-contact { display: flex; align-items: center; gap: 12px; }
.header-contact-label { font-size: 12px; font-weight: 700; }
.header-phone { display: inline-flex; color: #fff; font-size: 23px; font-weight: 800; text-decoration: none; white-space: nowrap; transition: transform 180ms ease, text-shadow 180ms ease; }
.header-phone:hover,
.header-phone:focus-visible { color: #fff; transform: translateY(-1px); text-shadow: 0 5px 16px rgba(0, 0, 0, 0.26); }
.header-top-actions { display: flex; gap: 8px; }
.header-top-actions a { display: inline-flex; align-items: center; gap: 6px; min-height: 42px; padding: 9px 15px; border-radius: 6px; font-size: 13px; font-weight: 800; text-decoration: none; white-space: nowrap; background-image: linear-gradient(116deg, transparent 24%, var(--reservation-action-sheen) 47%, transparent 70%); background-size: 220% 100%; background-position: 112% 0; transition: transform 180ms ease, box-shadow 180ms ease, background-position 560ms ease; }
.header-top-actions svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.header-top-actions a:hover,
.header-top-actions a:focus-visible { transform: translateY(-2px); background-position: -112% 0; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
.header-top-actions a:focus-visible { outline: 3px solid rgba(255, 255, 255, 0.86); outline-offset: 3px; }
.header-top-actions a:active { transform: translateY(0) scale(0.97); }
.header-reserve-web { --reservation-action-sheen: rgba(22, 101, 91, 0.18); color: var(--color-primary-dark); background-color: #fff; }
.header-reserve-line { --reservation-action-sheen: rgba(255, 255, 255, 0.46); color: #fff; background-color: #06c755; }
.header-nav-row { background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.header-nav-inner { min-height: 58px; display: flex; align-items: center; justify-content: center; }
.header-nav-inner .global-nav { display: flex; justify-content: center; align-items: center; width: 100%; gap: 2px; }
.header-nav-inner .global-nav a, .header-nav-inner .nav-dropdown summary { color: var(--color-text); }
.header-nav-inner .global-nav a:hover, .header-nav-inner .nav-dropdown summary:hover, .header-nav-inner .nav-dropdown[open] summary { color: var(--color-primary-dark); }
.header-nav-inner .nav-toggle { display: none; }

@media (max-width: 760px) {
  .header-top-inner { min-height: 68px; }
  .header-top-inner .site-logo img { width: 190px; }
  .header-contact { display: none; }
  .header-nav-inner { min-height: 0; display: block; width: 100%; }
  .header-nav-inner .nav-toggle { display: block; margin: 8px 16px 8px auto; }
  .header-nav-inner .global-nav { display: none; width: 100%; padding: 0 16px 14px; }
  .site-header.is-open .header-nav-inner .global-nav { display: flex; }
  .header-nav-inner .global-nav a { padding: 12px; background: var(--color-bg); }
  .header-nav-inner .nav-dropdown { width: 100%; }
  .header-nav-inner .nav-dropdown summary { padding: 12px; background: var(--color-bg); }
  .header-nav-inner .nav-submenu { margin: 0 12px 8px; }
}

/* Density comparison section */
.density-feature {
  position: relative;
  overflow: hidden;
  padding: 50px 0 44px;
  color: #fff;
  background: #176b5c;
  box-shadow: inset 18px 0 30px rgba(0, 0, 0, 0.18);
}

.density-feature-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.density-feature-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.7vw, 58px);
  width: 100%;
}

.density-feature-copy {
  width: min(760px, 100%);
  margin: 52px auto 0;
  text-align: center;
}

.density-feature-head h2 {
  flex: 0 0 430px;
  margin: 0;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(36px, 3vw, 54px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
  text-align: center;
}

.density-feature-head h2 span {
  display: block;
  white-space: nowrap;
}

.density-feature-copy p {
  margin: 0;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 1.8vw, 34px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.density-feature-copy p + p {
  margin-top: 24px;
}

.density-feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 58px;
  margin-top: 34px;
  padding: 13px 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 4px;
}

.density-feature-button::before {
  content: "▶";
  margin-right: 10px;
  font-size: 12px;
}

.density-feature-visual {
  flex: 0 1 520px;
  display: block;
  width: min(520px, 40vw);
  overflow: hidden;
}

.density-feature-visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 720px) {
  .density-feature {
    padding: 52px 0 58px;
  }

  .density-feature-head {
    gap: 16px;
    justify-content: space-between;
  }

  .density-feature-head h2 {
    flex: 0 0 46%;
    font-size: 26px;
    line-height: 1.35;
  }

  .density-feature-visual {
    flex-basis: 50%;
    width: 50%;
    margin: 0;
  }

  .density-feature-copy {
    width: min(440px, 100%);
    margin-top: 40px;
  }

  .density-feature-copy p + p {
    margin-top: 24px;
  }

  .density-feature-copy p {
    font-size: clamp(20px, 4vw, 24px);
    line-height: 1.65;
  }

  .density-feature-button {
    min-width: 278px;
    min-height: 58px;
    margin-top: 30px;
  }
}

@media (max-width: 420px) {
  .density-feature-head {
    align-items: center;
    gap: 12px;
  }

  .density-feature-head h2 {
    flex-basis: 49%;
    font-size: 21px;
  }

  .density-feature-copy p {
    font-size: 18px;
  }

  .density-feature-button {
    width: 100%;
    min-width: 0;
  }
}

/* AGA medication treatment page */
.aga-content-narrow {
  max-width: 980px;
}

.aga-intro,
.aga-medication-section {
  padding: 82px 0;
  background: #fff;
}

.aga-intro h2,
.aga-progression h2,
.aga-medication-section h2,
.aga-price-section h2,
.aga-regulatory-section h2,
.aga-program-section h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.aga-intro h2,
.aga-progression h2,
.aga-medication-section h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(25, 95, 85, 0.32);
}

.aga-intro p,
.aga-progression > .container > p,
.aga-progression-layout p,
.aga-medication-section > .container > p {
  margin: 22px 0 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 2;
}

.aga-intro p + p {
  margin-top: 16px;
}

.aga-progression {
  padding: 90px 0 96px;
  background: var(--color-soft);
}

.aga-source-note {
  color: var(--color-muted) !important;
  font-size: 13px !important;
  line-height: 1.75 !important;
}

.aga-progression h3,
.aga-medication-section h3 {
  margin: 54px 0 0;
  color: var(--color-primary-dark);
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
}

.aga-progression-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin-top: 30px;
}

.aga-progression-layout p {
  margin: 0;
}

.aga-progression-figure {
  margin: 0;
}

.aga-progression-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.aga-total-care {
  margin-top: 42px !important;
  padding-top: 30px;
  border-top: 1px solid rgba(25, 95, 85, 0.28);
  color: var(--color-primary-dark) !important;
  font-weight: 700;
}

.aga-medication-section {
  padding-bottom: 94px;
}

.aga-medication-section h3 {
  margin-top: 46px;
  font-size: clamp(23px, 2vw, 30px);
}

.aga-drug-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.aga-drug-links a {
  display: grid;
  gap: 7px;
  min-height: 108px;
  padding: 22px 22px 18px;
  color: var(--color-primary-dark);
  text-decoration: none;
  border-top: 2px solid var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-soft);
  transition: color 160ms ease, background 160ms ease;
}

.aga-drug-links a::before {
  content: "▶";
  color: var(--color-gold);
  font-size: 12px;
}

.aga-drug-links a:hover,
.aga-drug-links a:focus-visible {
  color: #fff;
  background: var(--color-primary);
}

.aga-drug-links span {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.aga-drug-links small {
  color: inherit;
  font-size: 13px;
  line-height: 1.5;
}

.aga-price-section {
  padding: 86px 0 0;
  background: #fff;
}

.aga-price-section-topical {
  padding: 58px 0 88px;
}

.aga-price-section h2 {
  margin-bottom: 32px;
  text-align: center;
}

.aga-price-table-wrap {
  overflow-x: auto;
  border-top: 2px solid var(--color-primary);
  border-bottom: 1px solid var(--color-border);
}

.aga-price-table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
  background: #fff;
}

.aga-price-table th,
.aga-price-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.aga-price-table thead th {
  color: #fff;
  background: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
}

.aga-price-table tbody th {
  width: 56%;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.aga-price-table td {
  width: 22%;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.65;
}

.aga-price-table td strong {
  color: var(--color-primary-dark);
  font-size: 18px;
}

.aga-price-table tbody tr:last-child th,
.aga-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.aga-product {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.aga-product img {
  display: block;
  width: 108px;
  height: 78px;
  object-fit: cover;
  background: #fff;
}

.aga-product span {
  font-size: 16px;
  line-height: 1.55;
}

.aga-table-divider {
  display: inline-block;
  width: 100%;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dotted rgba(25, 95, 85, 0.45);
}

.aga-regulatory-section {
  padding: 88px 0 94px;
  background: var(--color-soft);
}

.aga-regulatory-section h2 {
  margin-bottom: 32px;
  text-align: center;
}

.aga-regulatory-list {
  margin: 0;
  border-top: 1px solid rgba(25, 95, 85, 0.4);
}

.aga-regulatory-list > div {
  display: grid;
  grid-template-columns: minmax(205px, 0.44fr) minmax(0, 1fr);
  border-bottom: 1px solid rgba(25, 95, 85, 0.4);
}

.aga-regulatory-list dt,
.aga-regulatory-list dd {
  margin: 0;
  padding: 24px;
}

.aga-regulatory-list dt {
  color: var(--color-primary-dark);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.55);
}

.aga-regulatory-list dd {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.85;
}

.aga-regulatory-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aga-regulatory-list li + li {
  margin-top: 4px;
}

.aga-regulatory-list p {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(25, 95, 85, 0.24);
}

.aga-program-section {
  padding: 82px 0 90px;
  background: #fff;
}

.aga-program-section h2 {
  margin-bottom: 30px;
  text-align: center;
}

.aga-program-links,
.led-program-links,
.meso-program-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  gap: 16px;
}

.aga-program-links a,
.led-program-links a,
.meso-program-links a {
  position: relative;
  display: grid;
  min-height: 150px;
  overflow: hidden;
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  isolation: isolate;
}

.aga-program-links a::after,
.led-program-links a::after,
.meso-program-links a::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(50, 50, 50, 0.3);
  transition: background 160ms ease;
}

.aga-program-links a img,
.led-program-links a img,
.meso-program-links a img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aga-program-links a span,
.led-program-links a span,
.meso-program-links a span {
  align-self: center;
  padding: 16px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.45;
}

.aga-program-links a:hover,
.aga-program-links a:focus-visible,
.led-program-links a:hover,
.led-program-links a:focus-visible,
.meso-program-links a:hover,
.meso-program-links a:focus-visible {
  color: #fff;
}

.aga-program-links a:hover::after,
.aga-program-links a:focus-visible::after,
.led-program-links a:hover::after,
.led-program-links a:focus-visible::after,
.meso-program-links a:hover::after,
.meso-program-links a:focus-visible::after {
  background: rgba(12, 48, 34, 0.52);
}

.aga-program-links a:focus-visible,
.led-program-links a:focus-visible,
.meso-program-links a:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
}

@media (max-width: 920px) {
  .fue-treatment-program-grid,
  .aga-program-links,
  .led-program-links,
  .meso-program-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .aga-intro,
  .aga-medication-section {
    padding: 52px 0;
  }

  .aga-progression,
  .aga-regulatory-section,
  .aga-program-section {
    padding: 58px 0;
  }

  .aga-price-section {
    padding-top: 58px;
  }

  .aga-price-section-topical {
    padding-bottom: 58px;
  }

  .aga-intro h2,
  .aga-progression h2,
  .aga-medication-section h2,
  .aga-price-section h2,
  .aga-regulatory-section h2,
  .aga-program-section h2 {
    font-size: 28px;
  }

  .aga-intro h2,
  .aga-progression h2,
  .aga-medication-section h2 {
    padding-bottom: 14px;
  }

  .aga-intro p,
  .aga-progression > .container > p,
  .aga-progression-layout p,
  .aga-medication-section > .container > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.9;
  }

  .aga-source-note {
    font-size: 12px !important;
  }

  .aga-progression h3,
  .aga-medication-section h3 {
    margin-top: 38px;
    font-size: 23px;
  }

  .aga-progression-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .aga-total-care {
    margin-top: 30px !important;
    padding-top: 24px;
  }

  .aga-drug-links {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .aga-drug-links a {
    min-height: 0;
    padding: 17px 18px;
  }

  .aga-price-table-wrap {
    overflow: visible;
    border-bottom: 0;
  }

  .aga-price-table,
  .aga-price-table tbody,
  .aga-price-table tr,
  .aga-price-table th,
  .aga-price-table td {
    display: block;
    width: 100%;
  }

  .aga-price-table {
    min-width: 0;
  }

  .aga-price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .aga-price-table tbody tr {
    margin-top: 14px;
    border: 1px solid var(--color-border);
  }

  .aga-price-table tbody tr:first-child {
    margin-top: 0;
  }

  .aga-price-table th,
  .aga-price-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .aga-price-table tbody th {
    width: 100%;
    background: rgba(25, 95, 85, 0.05);
  }

  .aga-price-table td {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(105px, 0.7fr) 1fr;
    gap: 12px;
    align-items: center;
    font-size: 14px;
  }

  .aga-price-table td::before {
    content: attr(data-label);
    color: var(--color-primary-dark);
    font-weight: 800;
  }

  .aga-price-table td strong {
    font-size: 17px;
  }

  .aga-product {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .aga-product img {
    width: 88px;
    height: 66px;
  }

  .aga-product span {
    font-size: 15px;
  }

  .aga-regulatory-section h2,
  .aga-program-section h2 {
    margin-bottom: 24px;
  }

  .aga-regulatory-list > div {
    grid-template-columns: 1fr;
  }

  .aga-regulatory-list dt,
  .aga-regulatory-list dd {
    padding: 18px;
  }

  .aga-regulatory-list dd {
    font-size: 14px;
    line-height: 1.8;
  }

}

/* LED light therapy page */
.led-content-narrow,
.meso-content-narrow {
  max-width: 1180px;
}

.led-hero,
.meso-hero {
  min-height: 220px;
  color: var(--color-text);
  background: url("../../public/real/sub-hero-worry.jpg") center / cover;
}

.led-hero::after,
.meso-hero::after {
  display: none;
}

.led-hero h1,
.meso-hero h1 {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  text-shadow: none;
}

.led-hero p,
.meso-hero p {
  margin: 8px 0 0;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.45;
}

.led-overview {
  padding: 84px 0 94px;
  background: #fff;
}

.led-overview h2,
.led-recommend-section h2,
.led-flow-section h2,
.led-program-section h2,
.led-regulatory-section h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.led-overview h2 {
  margin-bottom: 38px;
}

.led-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 5.5vw, 84px);
  align-items: center;
}

.led-overview-copy p,
.led-feature-list p,
.led-recommend-grid p,
.led-flow-lead,
.led-flow-grid p,
.led-risk-copy,
.led-regulatory-note {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
}

.led-overview-copy p + p,
.led-regulatory-note {
  margin-top: 18px;
}

.led-set-price {
  margin-top: 30px !important;
  color: var(--color-primary-dark) !important;
  font-size: clamp(20px, 2.1vw, 29px) !important;
  font-weight: 800;
  line-height: 1.5 !important;
}

.led-set-price strong {
  color: var(--color-primary);
  font-size: 1.15em;
}

.treatment-set-price-line {
  white-space: nowrap;
}

.led-text-link,
.meso-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 260px);
  min-height: 48px;
  margin-top: 18px;
  padding: 12px 18px;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.led-text-link:hover,
.led-text-link:focus-visible,
.meso-text-link:hover,
.meso-text-link:focus-visible {
  color: #fff;
  background: var(--color-primary);
}

.led-overview-figure,
.meso-overview figure {
  margin: 0;
}

.led-overview-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
}

.led-feature-section {
  background: var(--color-soft);
}

.led-section-band,
.meso-title-band {
  padding: 28px 0;
  background: var(--color-primary);
}

.led-section-band h2,
.meso-title-band h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.led-feature-list {
  padding: 58px 0 70px;
}

.led-feature-list article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(25, 95, 85, 0.3);
}

.led-feature-list article:last-child {
  border-bottom: 1px solid rgba(25, 95, 85, 0.3);
}

.led-feature-list > article > span {
  color: var(--color-gold);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}

.led-feature-list h3,
.led-flow-grid h3 {
  margin: 0 0 10px;
  color: var(--color-primary-dark);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.5;
}

.led-recommend-section {
  padding: 82px 0 92px;
  background: #fff;
}

.led-recommend-section h2,
.led-flow-section h2,
.led-program-section h2,
.led-regulatory-section h2 {
  margin-bottom: 34px;
  text-align: center;
}

.led-recommend-section h2 {
  margin-bottom: 0;
  color: #333;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.led-recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding-top: 32px;
}

.led-recommend-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.led-recommend-grid p {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.led-recommend-figure {
  width: 100%;
  margin: 0;
  text-align: center;
}

.led-recommend-grid img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

.led-flow-section {
  padding: 86px 0 94px;
  background: var(--color-soft);
}

.led-flow-lead {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}

.led-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.led-flow-grid li {
  border-top: 2px solid var(--color-primary);
}

.led-flow-grid figure {
  margin: 0;
}

.led-flow-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.led-flow-grid li > div {
  position: relative;
  padding: 24px 0 0 54px;
}

.led-flow-grid li > div > span {
  position: absolute;
  top: 26px;
  left: 0;
  color: var(--color-gold);
  font-size: 15px;
  font-weight: 800;
}

.led-program-section {
  padding: 80px 0 86px;
  background: #fff;
}

.led-regulatory-section,
.meso-regulatory-section {
  padding: 86px 0 94px;
  background: var(--color-soft);
}

.led-regulatory-section h3,
.meso-regulatory-section h3 {
  margin: 38px 0 18px;
  color: var(--color-primary-dark);
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1.45;
}

.led-regulatory-list,
.meso-regulatory-list {
  margin: 0;
  border-top: 1px solid rgba(25, 95, 85, 0.35);
}

.led-regulatory-list > div,
.meso-regulatory-list > div {
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.1fr);
  border-bottom: 1px solid rgba(25, 95, 85, 0.35);
}

.led-regulatory-list dt,
.led-regulatory-list dd,
.meso-regulatory-list dt,
.meso-regulatory-list dd {
  margin: 0;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.75;
}

.led-regulatory-list dt,
.meso-regulatory-list dt {
  color: var(--color-primary-dark);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.52);
}

.led-regulatory-list dd,
.meso-regulatory-list dd {
  color: var(--color-text);
}

.led-regulatory-note a {
  color: var(--color-primary);
  font-weight: 800;
  text-underline-offset: 3px;
}

/* PRP and mesotherapy page */
.meso-jump-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  gap: 30px;
  margin-top: 42px;
  margin-bottom: 78px;
}

.meso-jump-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 12px 18px;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  transition: color 160ms ease, background 160ms ease;
}

.meso-jump-links a:hover,
.meso-jump-links a:focus-visible {
  color: #fff;
  background: var(--color-primary);
}

.meso-jump-links span {
  font-size: 12px;
}

.meso-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.94fr);
  gap: clamp(36px, 5.5vw, 84px);
  align-items: center;
  padding-top: 82px;
  padding-bottom: 90px;
}

.meso-overview-reverse {
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
}

.meso-overview h3,
.meso-flow-section h3,
.meso-prp-notes h3,
.meso-prp-caution h3,
.meso-price-section h3,
.meso-detail-section h3,
.meso-recommend-section h3,
.meso-program-section h2,
.meso-regulatory-section h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
}

.meso-overview-copy p,
.meso-flow-lead,
.meso-step-grid p,
.meso-prp-caution p,
.meso-detail-copy p,
.meso-risk-copy,
.meso-regulatory-note {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
}

.meso-overview-copy h3 {
  margin-bottom: 22px;
  font-size: clamp(26px, 2.7vw, 36px);
}

.meso-overview-copy p + p,
.meso-detail-copy p + p {
  margin-top: 16px;
}

.meso-overview figure img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.meso-set-price {
  margin-top: 28px !important;
  color: var(--color-primary-dark) !important;
  font-size: clamp(20px, 2.1vw, 29px) !important;
  font-weight: 800;
  line-height: 1.5 !important;
}

.meso-set-price strong {
  color: var(--color-primary);
  font-size: 1.15em;
}

.meso-flow-section {
  padding: 78px 0 88px;
  background: var(--color-soft);
}

.meso-flow-section h3,
.meso-prp-notes h3,
.meso-prp-caution h3,
.meso-price-section h3,
.meso-detail-section h3,
.meso-recommend-section h3 {
  margin-bottom: 22px;
}

.meso-flow-lead {
  max-width: 980px;
  margin-bottom: 36px;
}

.meso-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meso-step-grid li {
  min-width: 0;
  background: #fff;
  border-top: 2px solid var(--color-primary);
}

.meso-step-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.meso-step-grid li > div {
  position: relative;
  min-height: 230px;
  padding: 50px 20px 22px;
}

.meso-step-grid li > div > span {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 800;
}

.meso-step-grid h4 {
  margin: 0 0 12px;
  color: var(--color-primary-dark);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}

.meso-step-grid p {
  font-size: 14px;
  line-height: 1.8;
}

.meso-prp-notes,
.meso-prp-caution,
.meso-price-section,
.meso-detail-section,
.meso-recommend-section {
  padding: 76px 0;
  background: #fff;
}

.meso-prp-notes {
  border-top: 1px solid rgba(25, 95, 85, 0.2);
}

.meso-note-list,
.meso-caution-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(25, 95, 85, 0.32);
}

.meso-note-list li,
.meso-caution-list li {
  position: relative;
  padding: 17px 16px 17px 32px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  border-bottom: 1px solid rgba(25, 95, 85, 0.32);
}

.meso-note-list li::before,
.meso-caution-list li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 8px;
  width: 7px;
  height: 7px;
  background: var(--color-gold);
}

.meso-prp-caution {
  padding-top: 0;
  background: var(--color-soft);
}

.meso-prp-caution .container {
  padding-top: 70px;
}

.meso-prp-caution p {
  margin-bottom: 18px;
}

.meso-price-section {
  padding-top: 80px;
  padding-bottom: 90px;
}

.meso-price-table-wrap {
  overflow-x: auto;
  border-top: 2px solid var(--color-primary);
  border-bottom: 1px solid var(--color-border);
}

.meso-price-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  background: #fff;
}

.meso-price-table th,
.meso-price-table td {
  padding: 22px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border);
}

.meso-price-table thead th {
  color: #fff;
  font-weight: 800;
  background: var(--color-primary);
}

.meso-price-table tbody th {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.meso-price-table td strong {
  color: var(--color-primary-dark);
  font-size: 19px;
}

.meso-price-table td small {
  color: var(--color-muted);
  font-size: 13px;
}

.meso-treatment-secondary {
  border-top: 1px solid rgba(25, 95, 85, 0.15);
}

.meso-detail-section {
  padding-top: 0;
  background: var(--color-soft);
}

.meso-detail-section .container {
  padding-top: 76px;
}

.meso-detail-copy {
  max-width: 960px;
}

.meso-recommend-section {
  padding-top: 0;
}

.meso-recommend-section .container {
  padding-top: 76px;
}

.meso-recommend-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(25, 95, 85, 0.32);
}

.meso-recommend-list li {
  position: relative;
  padding: 20px 16px 20px 32px;
  color: var(--color-primary-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  border-bottom: 1px solid rgba(25, 95, 85, 0.32);
}

.meso-recommend-list li::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
}

.meso-flow-secondary {
  padding-top: 82px;
}

.meso-program-section {
  padding: 80px 0 86px;
  background: #fff;
}

.meso-program-section h2,
.meso-regulatory-section h2 {
  margin-bottom: 32px;
  text-align: center;
}

.meso-risk-copy {
  text-align: center;
}

.meso-regulatory-note {
  margin-top: 22px;
}

/* After maintenance page */
.aftercare-content-narrow {
  max-width: 980px;
}

.aftercare-guarantee-section,
.aftercare-reason-section,
.aftercare-message-section,
.aftercare-support-section,
.aftercare-follow-section {
  padding: 78px 0;
  background: #fff;
}

.aftercare-reason-section,
.aftercare-support-section {
  background: var(--color-soft);
}

.aftercare-kicker {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.aftercare-guarantee-section h2,
.aftercare-reason-section h2,
.aftercare-support-section h2,
.aftercare-follow-section h2,
.aftercare-message-grid h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.42;
  text-align: center;
  letter-spacing: 0;
}

.aftercare-lead-copy,
.aftercare-copy {
  margin-top: 28px;
}

.aftercare-lead-copy p,
.aftercare-copy p,
.aftercare-message-grid p,
.aftercare-support-grid p,
.aftercare-follow-list p,
.aftercare-support-note {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.95;
}

.aftercare-lead-copy p + p,
.aftercare-copy p + p {
  margin-top: 16px;
}

.aftercare-note,
.aftercare-support-note {
  color: var(--color-muted) !important;
  font-size: 13px !important;
}

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

.aftercare-message-grid article,
.aftercare-support-grid article,
.aftercare-follow-list li {
  padding: 28px 24px;
  background: #fff;
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 12px 28px rgba(12, 48, 34, 0.08);
}

.aftercare-message-grid h2 {
  font-size: clamp(25px, 2.4vw, 34px);
  text-align: left;
}

.aftercare-message-grid h3,
.aftercare-support-grid h3,
.aftercare-follow-list h3 {
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.45;
}

.aftercare-message-grid h2 + p {
  margin-top: 18px;
}

.aftercare-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.aftercare-support-note {
  margin-top: 22px;
  text-align: center;
}

.aftercare-follow-list figure {
  margin: 18px 0 0;
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(12, 48, 34, 0.08);
}

.aftercare-follow-list figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
}

.aftercare-follow-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.aftercare-follow-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.aftercare-follow-list span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  font-weight: 800;
}

/* Reason page */
.reason-hero {
  min-height: 160px;
  color: var(--color-text);
  background:
    linear-gradient(rgba(247, 249, 251, 0.7), rgba(247, 249, 251, 0.7)),
    url("../../public/real/sub-hero-worry.jpg") center / cover;
}

.reason-hero::after {
  display: none;
}

.reason-hero h1 {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  text-shadow: none;
}

.reason-hero p {
  margin: 8px 0 0;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.45;
}

.reason-page {
  padding: 50px 0 104px;
  background: #fff;
}

.reason-page-container {
  max-width: 1060px;
}

.reason-theme + .reason-theme {
  margin-top: 76px;
}

.reason-theme-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  background: #2f2f2f;
}

.reason-theme-intro figure {
  min-height: 0;
  margin: 0;
}

.reason-theme-intro img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.reason-theme-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 58px);
}

.reason-theme-intro-copy > p:first-child {
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.5;
}

.reason-theme-intro-copy h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(29px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.reason-theme-intro-copy h2 + p {
  margin: 30px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.85;
}

.reason-detail-list {
  display: grid;
  gap: 44px;
  margin-top: 44px;
}

.reason-detail {
  display: grid;
  grid-template-areas: "image copy";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.reason-detail--reverse {
  grid-template-areas: "copy image";
}

.reason-detail figure {
  grid-area: image;
  margin: 0;
}

.reason-detail figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1.67;
  object-fit: cover;
}

.reason-detail-copy {
  grid-area: copy;
}

.reason-detail-copy h3 {
  display: flex;
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(21px, 2.1vw, 29px);
  font-weight: 600;
  line-height: 1.45;
}

.reason-detail-copy h3 span {
  display: grid;
  flex: 0 0 76px;
  place-items: center;
  align-self: stretch;
  padding: 10px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  background: #2a2a2a;
}

.reason-detail-copy h3 strong {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 14px 22px;
  background: var(--color-primary);
}

.reason-detail-copy p {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.95;
}

@media (max-width: 900px) {
  .led-overview-grid,
  .meso-overview,
  .meso-overview-reverse {
    grid-template-columns: 1fr;
  }

  .led-overview-figure,
  .meso-overview figure {
    max-width: 720px;
  }

  .meso-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meso-step-grid li > div {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .led-recommend-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .led-hero,
  .meso-hero {
    min-height: 172px;
  }

  .led-overview,
  .led-recommend-section,
  .led-flow-section,
  .led-program-section,
  .led-regulatory-section,
  .meso-flow-section,
  .meso-prp-notes,
  .meso-prp-caution,
  .meso-price-section,
  .meso-detail-section,
  .meso-recommend-section,
  .meso-regulatory-section,
  .meso-program-section {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  .meso-overview {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .led-overview h2,
  .led-recommend-section h2,
  .led-flow-section h2,
  .led-program-section h2,
  .led-regulatory-section h2,
  .meso-overview h3,
  .meso-flow-section h3,
  .meso-prp-notes h3,
  .meso-prp-caution h3,
  .meso-price-section h3,
  .meso-detail-section h3,
  .meso-recommend-section h3,
  .meso-program-section h2,
  .meso-regulatory-section h2 {
    font-size: 27px;
  }

  .led-overview h2,
  .led-recommend-section h2,
  .led-flow-section h2,
  .led-program-section h2,
  .led-regulatory-section h2 {
    margin-bottom: 26px;
  }

  .led-recommend-section h2 {
    margin-bottom: 0;
  }

  .led-overview-copy p,
  .led-feature-list p,
  .led-recommend-grid p,
  .led-flow-lead,
  .led-flow-grid p,
  .led-risk-copy,
  .led-regulatory-note,
  .meso-overview-copy p,
  .meso-flow-lead,
  .meso-step-grid p,
  .meso-prp-caution p,
  .meso-detail-copy p,
  .meso-risk-copy,
  .meso-regulatory-note {
    font-size: 15px;
    line-height: 1.85;
  }

  .led-feature-list {
    padding: 34px 0 44px;
  }

  .led-feature-list article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .led-flow-grid {
    grid-template-columns: 1fr;
  }

  .led-regulatory-list > div,
  .meso-regulatory-list > div {
    grid-template-columns: 1fr;
  }

  .led-regulatory-list dt,
  .led-regulatory-list dd,
  .meso-regulatory-list dt,
  .meso-regulatory-list dd {
    padding: 15px 16px;
    font-size: 14px;
  }

  .meso-jump-links {
    gap: 12px;
    margin-top: 28px;
    margin-bottom: 54px;
  }

  .meso-jump-links a {
    min-height: 56px;
    padding: 10px;
    font-size: 14px;
  }

  .meso-step-grid {
    gap: 16px;
  }

  .meso-step-grid li > div {
    padding: 46px 16px 18px;
  }

  .meso-step-grid li > div > span {
    top: 17px;
    left: 16px;
  }

  .meso-step-grid h4 {
    font-size: 18px;
  }

  .meso-prp-caution .container,
  .meso-detail-section .container,
  .meso-recommend-section .container {
    padding-top: 0;
  }

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

  .meso-note-list li,
  .meso-caution-list li,
  .meso-recommend-list li {
    font-size: 15px;
  }

  .aftercare-guarantee-section,
  .aftercare-reason-section,
  .aftercare-message-section,
  .aftercare-support-section,
  .aftercare-follow-section {
    padding: 54px 0;
  }

  .aftercare-guarantee-section h2,
  .aftercare-reason-section h2,
  .aftercare-support-section h2,
  .aftercare-follow-section h2,
  .aftercare-message-grid h2 {
    font-size: 27px;
  }

  .aftercare-message-grid,
  .aftercare-support-grid {
    grid-template-columns: 1fr;
  }

  .aftercare-follow-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 24px 18px;
  }

  .aftercare-follow-list span {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 767px) {
  .led-recommend-section h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .led-recommend-grid p {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }
}

@media (max-width: 440px) {
  .treatment-set-price-line {
    display: block;
  }

  .meso-step-grid {
    grid-template-columns: 1fr;
  }

  .meso-jump-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

@media (max-width: 900px) {
  .reason-theme-intro {
    grid-template-columns: 1fr;
  }

  .reason-theme-intro img {
    min-height: 0;
    aspect-ratio: 1.28;
  }

  .reason-detail {
    gap: 36px;
  }
}

@media (max-width: 700px) {
  .reason-hero {
    min-height: 172px;
  }

  .reason-page {
    padding: 48px 0 62px;
  }

  .reason-theme + .reason-theme {
    margin-top: 72px;
  }

  .reason-theme-intro-copy {
    padding: 32px 24px 36px;
  }

  .reason-theme-intro-copy > p:first-child {
    font-size: 17px;
  }

  .reason-theme-intro-copy h2 {
    font-size: 31px;
  }

  .reason-theme-intro-copy h2 + p,
  .reason-detail-copy p {
    font-size: 15px;
    line-height: 1.85;
  }

  .reason-detail-list {
    gap: 44px;
    margin-top: 44px;
  }

  .reason-detail,
  .reason-detail--reverse {
    grid-template-areas: "image" "copy";
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reason-detail-copy h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .reason-detail-copy h3 span {
    flex-basis: 58px;
    font-size: 19px;
  }

  .reason-detail-copy h3 strong {
    padding: 12px 16px;
  }
}

/* ===== 料金一覧 ===== */
.pricing-hero {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 42px 0;
  color: var(--color-text);
  text-align: center;
  background:
    linear-gradient(rgba(248, 251, 253, 0.12), rgba(248, 251, 253, 0.12)),
    url("../../public/real/price-hero.jpg") center / cover;
}

.pricing-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.pricing-hero p {
  margin: 8px 0 0;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.pricing-breadcrumb-wrap {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.pricing-breadcrumb-wrap .breadcrumb {
  min-height: 56px;
  margin-bottom: 0;
}

.pricing-page {
  background: var(--color-surface);
}

.pricing-content {
  max-width: 1120px;
}

.pricing-content-narrow {
  max-width: 750px;
}

.pricing-intro {
  padding: 64px 0 38px;
}

.pricing-intro-lead {
  margin: 0;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
}

.pricing-intro-lead mark {
  padding: 0;
  color: #000064;
  background: transparent;
}

.pricing-shampoo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 14px 26px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.pricing-shampoo-link:hover,
.pricing-shampoo-link:focus-visible {
  color: #fff;
  background: var(--color-primary);
}

.pricing-monitor-overview {
  padding: 24px 0 72px;
}

.pricing-visual-container {
  max-width: 750px;
}

.pricing-main-visual,
.pricing-standard-visual {
  margin: 0 auto;
}

.pricing-main-visual {
  max-width: 750px;
}

.pricing-monitor-visuals {
  max-width: 600px;
  margin: 34px auto 0;
  padding: 24px 20px 26px;
  background: #d1dfdf;
}

.pricing-monitor-visuals figure + figure {
  margin-top: 24px;
}

.pricing-monitor-note {
  margin: 24px 0 0;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.8;
}

.pricing-section {
  padding: 72px 0;
}

.pricing-monitor-section {
  background: #fffafa;
}

.pricing-standard-section {
  padding-top: 12px;
}

.pricing-standard-visual {
  width: min(100%, 680px);
  margin-bottom: 58px;
}

.pricing-section-title,
.pricing-treatment-title {
  margin: 0;
  padding: 12px 18px;
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
}

.pricing-section-title--monitor {
  background: #e70c0c;
}

.pricing-tax-note {
  margin: 12px 0 8px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.pricing-table-scroll {
  overflow-x: auto;
  outline: none;
  scrollbar-color: var(--color-primary) transparent;
}

.pricing-table-scroll:focus-visible {
  box-shadow: 0 0 0 3px rgba(25, 95, 85, 0.26);
}

.pricing-table {
  width: 100%;
  min-width: 670px;
  border-collapse: collapse;
  color: var(--color-text);
  background: var(--color-surface);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-table th,
.pricing-table td {
  padding: 20px 10px;
  border-bottom: 1px solid var(--color-primary);
  vertical-align: middle;
  text-align: center;
}

.pricing-table thead th {
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}

.pricing-table tbody th {
  font-weight: 600;
}

.pricing-table tbody th:first-child {
  width: 42%;
}

.pricing-table--three tbody th:first-child {
  width: 55%;
}

.pricing-table--single {
  min-width: 0;
}

.pricing-notes {
  display: grid;
  gap: 4px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.8;
  list-style: none;
}

.pricing-notes li::before {
  content: "※";
}

.pricing-overseas {
  padding: 10px 0 74px;
}

.pricing-overseas p {
  margin: 0;
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.pricing-overseas a {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.pricing-other {
  padding: 0 0 10px;
  background: #fff;
}

.pricing-other-title {
  margin: 0;
  padding: 10px;
  color: #fff;
  background: #acabab;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.pricing-other-lead {
  margin: 46px 0 16px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
}

.contact-access.pricing-access {
  padding: 30px 0 38px;
  background: var(--color-primary);
}

.pricing-access .pricing-content {
  max-width: 1120px;
}

.pricing-access .contact-access-heading {
  margin-bottom: 30px;
}

.pricing-access .contact-access-heading p {
  font-size: 38.4px;
}

.pricing-access .contact-access-heading h2 {
  margin-top: 10px;
  font-size: 14.4px;
}

.pricing-access .contact-access-gallery {
  gap: 9px;
}

.pricing-access .contact-access-gallery img {
  aspect-ratio: 3 / 2;
}

.pricing-access .contact-access-panel {
  margin-top: 30px;
  padding: 40px;
  border-left-width: 40px;
}

.pricing-access .contact-access-list > div + div {
  margin-top: 10px;
}

.pricing-access .contact-access-list dt {
  padding-bottom: 7px;
  font-size: 20px;
  line-height: 1.4;
}

.pricing-access .contact-access-list dd {
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.8;
}

.pricing-access .contact-map {
  margin-top: 40px;
}

.contact-phone-section.pricing-phone-section {
  padding: 30px 0;
}

.pricing-phone-section h2 {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.pricing-phone-section a {
  margin-top: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.8;
}

.pricing-phone-section a span {
  color: var(--color-primary);
  font-size: 0.86em;
}

.pricing-phone-section p {
  margin-top: -5px;
  color: var(--color-text);
  font-size: 9px;
  line-height: 1.8;
}

.pricing-treatment {
  margin-top: 64px;
}

.pricing-treatment-title {
  font-size: 20px;
}

.pricing-definition,
.pricing-risk-note {
  margin: 20px 0 0;
  color: var(--color-text);
}

.pricing-definition {
  font-size: 15px;
  line-height: 1.85;
}

.pricing-risk-note {
  font-size: 12px;
  line-height: 1.85;
}

.pricing-definition + .pricing-risk-note,
.pricing-risk-note + .pricing-definition {
  margin-top: 14px;
}

@media (max-width: 700px) {
  .pricing-hero {
    min-height: 164px;
    padding: 32px 0;
    background-position: 62% center;
  }

  .pricing-hero h1 {
    font-size: 34px;
  }

  .pricing-hero p {
    margin-top: 6px;
    font-size: 13px;
  }

  .pricing-intro {
    padding: 46px 0 28px;
  }

  .pricing-intro-lead {
    font-size: 17px;
  }

  .pricing-shampoo-link {
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .pricing-monitor-overview {
    padding: 18px 0 52px;
  }

  .pricing-monitor-visuals {
    margin-top: 22px;
    padding: 16px 14px 18px;
  }

  .pricing-monitor-visuals figure + figure {
    margin-top: 16px;
  }

  .pricing-monitor-note {
    margin-top: 16px;
    font-size: 12px;
  }

  .pricing-section {
    padding: 52px 0;
  }

  .pricing-standard-section {
    padding-top: 4px;
  }

  .pricing-standard-visual {
    margin-bottom: 38px;
  }

  .pricing-section-title,
  .pricing-treatment-title {
    padding: 11px 12px;
    font-size: 17px;
    line-height: 1.55;
  }

  .pricing-tax-note {
    margin-top: 10px;
    font-size: 11px;
  }

  .pricing-table {
    min-width: 620px;
    font-size: 13px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 16px 8px;
  }

  .pricing-table thead th {
    font-size: 12px;
  }

  .pricing-notes {
    margin-top: 16px;
    font-size: 11px;
    line-height: 1.75;
  }

  .pricing-overseas {
    padding: 0 0 52px;
  }

  .pricing-overseas p {
    font-size: 17px;
  }

  .pricing-overseas a {
    font-size: 14px;
  }

  .pricing-other {
    padding: 0 0 16px;
  }

  .pricing-other-title {
    font-size: 16px;
  }

  .pricing-other-lead {
    margin: 32px 0 16px;
    font-size: 15px;
  }

  .contact-access.pricing-access {
    padding: 32px 0 38px;
  }

  .pricing-access .contact-access-heading {
    margin-bottom: 24px;
  }

  .pricing-access .contact-access-heading p {
    font-size: 32px;
  }

  .pricing-access .contact-access-heading h2 {
    margin-top: 6px;
    font-size: 13px;
  }

  .pricing-access .contact-access-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .pricing-access .contact-access-panel {
    margin-top: 20px;
    padding: 24px 20px;
    border-left-width: 14px;
  }

  .pricing-access .contact-access-list > div + div {
    margin-top: 20px;
  }

  .pricing-access .contact-access-list dt {
    padding-bottom: 8px;
    font-size: 16px;
  }

  .pricing-access .contact-access-list dd {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.75;
  }

  .pricing-access .contact-map {
    min-height: 300px;
    margin-top: 24px;
  }

  .contact-phone-section.pricing-phone-section {
    padding: 30px 0;
  }

  .pricing-phone-section a {
    font-size: 24px;
  }

  .pricing-treatment {
    margin-top: 48px;
  }

  .pricing-definition {
    margin-top: 16px;
    font-size: 14px;
  }

  .pricing-risk-note {
    font-size: 11px;
  }
}

/* ===== クリニック紹介 ===== */
.clinic-page {
  color: var(--color-text);
  background: var(--color-surface);
}

.clinic-page img {
  display: block;
  max-width: 100%;
}

.clinic-container {
  max-width: 1100px;
}

.clinic-hero {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 34px 0;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    url("../../public/real/clinic-hero.jpg") center / cover;
}

.clinic-hero h1 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.clinic-hero p {
  margin: 4px 0 0;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.clinic-breadcrumb-wrap {
  background: var(--color-surface);
}

.clinic-breadcrumb-wrap .breadcrumb {
  min-height: 58px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}

.clinic-intro {
  padding: 62px 0 82px;
}

.clinic-section-title {
  margin: 0 0 50px;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.clinic-intro-grid,
.clinic-privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.clinic-intro-photo,
.clinic-privacy-photo,
.clinic-access-gallery figure {
  margin: 0;
}

.clinic-intro-photo img {
  width: 100%;
  aspect-ratio: 711 / 381;
  object-fit: cover;
}

.clinic-intro-copy {
  max-width: 590px;
}

.clinic-intro-copy > p:not(.clinic-intro-lead),
.clinic-privacy-copy p,
.clinic-payment p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.clinic-intro-lead,
.clinic-privacy-copy h2,
.clinic-payment h2 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: 0;
}

.clinic-intro-copy > p:not(.clinic-intro-lead) {
  margin-top: 22px;
}

.clinic-doctor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 274px;
  min-height: 56px;
  margin-top: 28px;
  padding: 13px 22px;
  color: #fff;
  background: #2f2f2f;
  border: 1px solid #2f2f2f;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.clinic-doctor-link:hover,
.clinic-doctor-link:focus-visible {
  color: var(--color-text);
  background: #fff;
}

.clinic-doctor-link span {
  margin-right: 8px;
  font-size: 12px;
}

.clinic-privacy {
  padding: 0 0 84px;
}

.clinic-privacy-copy {
  max-width: 590px;
}

.clinic-privacy-copy p {
  margin-top: 22px;
}

.clinic-privacy-photo img {
  width: 100%;
  aspect-ratio: 1200 / 578;
  object-fit: cover;
}

.clinic-payment {
  padding: 0 0 70px;
}

.clinic-payment h2 {
  margin-bottom: 20px;
}

.clinic-banner-section {
  padding: 0 0 76px;
}

.clinic-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.clinic-banner-grid a {
  display: block;
  transition: opacity 0.2s ease;
}

.clinic-banner-grid a:hover,
.clinic-banner-grid a:focus-visible {
  opacity: 0.78;
}

.clinic-banner-grid img {
  width: 100%;
  height: auto;
}

.clinic-access {
  padding: 70px 0 76px;
  color: #fff;
  background: var(--color-primary);
}

.clinic-access-heading {
  margin-bottom: 34px;
  text-align: center;
}

.clinic-access-heading p,
.clinic-access-heading h2 {
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.clinic-access-heading p {
  font-size: 40px;
  font-weight: 800;
}

.clinic-access-heading h2 {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 800;
}

.clinic-access-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.clinic-access-gallery img {
  width: 100%;
  aspect-ratio: 32 / 19;
  object-fit: cover;
}

.clinic-access-panel {
  margin-top: 30px;
  padding: 36px clamp(24px, 5vw, 52px);
  color: var(--color-text);
  background: #fff;
  border-left: 38px solid var(--color-gold);
}

.clinic-access-list {
  margin: 0;
}

.clinic-access-list > div + div {
  margin-top: 24px;
}

.clinic-access-list dt {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gold);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.clinic-access-list dd {
  margin: 11px 0 0;
  font-size: 16px;
  line-height: 1.85;
}

.clinic-map {
  display: block;
  width: 100%;
  min-height: 380px;
  margin-top: 36px;
  border: 0;
}

.clinic-contact {
  padding: 72px 0 76px;
  text-align: center;
}

.clinic-contact h2,
.clinic-contact p {
  margin: 0;
}

.clinic-contact h2 {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.clinic-contact a {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.clinic-contact p {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .clinic-hero {
    min-height: 144px;
    padding: 28px 0;
    background-position: 58% center;
  }

  .clinic-hero h1 {
    font-size: 34px;
  }

  .clinic-hero p {
    font-size: 13px;
  }

  .clinic-intro {
    padding: 48px 0 62px;
  }

  .clinic-section-title {
    margin-bottom: 30px;
  }

  .clinic-intro-grid,
  .clinic-privacy-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .clinic-intro-copy,
  .clinic-privacy-copy {
    max-width: none;
  }

  .clinic-intro-copy > p:not(.clinic-intro-lead),
  .clinic-privacy-copy p,
  .clinic-payment p {
    font-size: 14px;
    line-height: 1.9;
  }

  .clinic-intro-lead,
  .clinic-privacy-copy h2,
  .clinic-payment h2 {
    font-size: 20px;
    line-height: 1.55;
  }

  .clinic-intro-copy > p:not(.clinic-intro-lead),
  .clinic-privacy-copy p {
    margin-top: 16px;
  }

  .clinic-doctor-link {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    margin-top: 22px;
    font-size: 13px;
  }

  .clinic-privacy {
    padding-bottom: 62px;
  }

  .clinic-payment {
    padding-bottom: 52px;
  }

  .clinic-payment h2 {
    margin-bottom: 15px;
  }

  .clinic-banner-section {
    padding-bottom: 54px;
  }

  .clinic-banner-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .clinic-access {
    padding: 52px 0 58px;
  }

  .clinic-access-heading {
    margin-bottom: 24px;
  }

  .clinic-access-heading p {
    font-size: 32px;
  }

  .clinic-access-heading h2 {
    font-size: 13px;
  }

  .clinic-access-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .clinic-access-panel {
    margin-top: 20px;
    padding: 24px 20px;
    border-left-width: 14px;
  }

  .clinic-access-list > div + div {
    margin-top: 20px;
  }

  .clinic-access-list dt {
    padding-bottom: 8px;
    font-size: 16px;
  }

  .clinic-access-list dd {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.75;
  }

  .clinic-map {
    min-height: 300px;
    margin-top: 24px;
  }

  .clinic-contact {
    padding: 52px 0 58px;
  }

  .clinic-contact h2 {
    font-size: 16px;
  }

  .clinic-contact a {
    font-size: 30px;
  }

  .clinic-contact p {
    font-size: 11px;
  }
}

/* Contact page */
.contact-container {
  max-width: 1140px;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  margin: 10px 0 5px;
  padding: 50px 0;
  overflow: hidden;
  background: #eef3f8 url("../../public/real/sub-hero-worry.jpg") center center / cover no-repeat;
  text-align: center;
}

.contact-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgb(255 255 255 / 30%);
  content: "";
}

.contact-hero h1,
.contact-hero p {
  margin: 0;
}

.contact-hero h1 {
  color: var(--color-text);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-hero p {
  margin-top: 5px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-breadcrumb-wrap {
  padding: 0 0 12px;
  background: #fff;
}

.contact-breadcrumb-wrap .breadcrumb {
  justify-content: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px dotted #d7d7d7;
}

.contact-quick {
  padding: 54px 0 62px;
  color: #fff;
  background: var(--color-primary);
}

.contact-quick-heading {
  margin-bottom: 32px;
  text-align: center;
}

.contact-quick-heading h2,
.contact-quick-heading p {
  margin: 0;
}

.contact-quick-heading h2 {
  color: #fff;
  font-size: 38.4px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-quick-heading p {
  margin-top: 16px;
  color: #fff;
  font-size: 25.6px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-reservation-banners {
  display: grid;
  grid-template-columns: minmax(0, 370px) minmax(0, 260px);
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.contact-reservation-banners a {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-reservation-banners a::after {
  position: absolute;
  inset: -18% -44%;
  z-index: 1;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(108deg, transparent 41%, rgba(255, 255, 255, 0.58) 50%, transparent 59%);
  transform: translateX(-128%) skewX(-18deg);
}

.contact-reservation-banners img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 360ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .contact-reservation-banners a:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.24);
  }

  .contact-reservation-banners a:hover img {
    filter: brightness(1.045) saturate(1.04);
    transform: scale(1.025);
  }

  .contact-reservation-banners a:hover::after {
    animation: reservation-banner-sheen 700ms ease-out;
  }
}

.contact-reservation-banners a:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
  transform: translateY(-3px);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.24);
}

.contact-reservation-banners a:focus-visible img {
  filter: brightness(1.045) saturate(1.04);
  transform: scale(1.025);
}

.contact-reservation-banners a:focus-visible::after {
  animation: reservation-banner-sheen 700ms ease-out;
}

.contact-reservation-banners a:active {
  transform: translateY(0) scale(0.985);
}

@keyframes reservation-banner-sheen {
  0% { opacity: 0; transform: translateX(-128%) skewX(-18deg); }
  18% { opacity: 0.9; }
  100% { opacity: 0; transform: translateX(128%) skewX(-18deg); }
}

@media (prefers-reduced-motion: reduce) {
  .header-phone,
  .header-top-actions a,
  .contact-reservation-banners a,
  .contact-reservation-banners img {
    transition: none;
  }

  .contact-reservation-banners a::after {
    animation: none;
  }
}

.contact-email-section {
  padding: 82px 0 90px;
  background: #fff;
}

.contact-form-container {
  max-width: 720px;
}

.contact-email-heading {
  margin-bottom: 38px;
}

.contact-email-heading h2,
.contact-email-heading p {
  margin: 0;
}

.contact-email-heading h2 {
  color: var(--color-primary);
  font-size: 38.4px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-email-heading p {
  margin-top: 22px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.9;
}

.contact-email-heading p + p {
  margin-top: 13px;
  font-size: 14px;
}

.contact-required-mark,
.contact-field label span,
.contact-choice-group legend span {
  display: inline-block;
  margin-left: 9px;
  padding: 1px 8px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  vertical-align: 1px;
}

.contact-email-heading .contact-required-mark {
  margin-left: 0;
  color: var(--color-primary);
}

.contact-form {
  margin: 0;
}

.contact-field,
.contact-choice-group {
  margin: 0;
}

.contact-field + .contact-field,
.contact-field + .contact-choice-group,
.contact-choice-group + .contact-choice-group {
  margin-top: 31px;
}

.contact-field label,
.contact-choice-group legend {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  color: #fff;
  background: var(--color-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.contact-field label span,
.contact-choice-group legend span {
  color: #fff;
}

.contact-field input {
  display: block;
  width: 100%;
  min-height: 52px;
  margin-top: 9px;
  box-sizing: border-box;
  border: 1px solid #333;
  border-radius: 5px;
  color: var(--color-text);
  background: #fffcec;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
}

.contact-field input:focus,
.contact-choice-list input:focus,
.contact-policy input:focus {
  outline: 3px solid rgba(25, 95, 85, 0.25);
  outline-offset: 2px;
}

.contact-field p {
  margin: 6px 0 0;
  color: #777;
  font-size: 13px;
  line-height: 1.6;
}

.contact-choice-group {
  min-width: 0;
  padding: 0;
  border: 0;
}

.contact-choice-group legend {
  float: left;
}

.contact-choice-list {
  display: flex;
  clear: both;
  flex-wrap: wrap;
  gap: 13px 22px;
  padding: 18px 4px 0;
}

.contact-choice-list label,
.contact-policy {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.55;
}

.contact-choice-list input,
.contact-policy input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 3px 0 0;
  accent-color: var(--color-primary);
}

.contact-policy {
  display: flex;
  margin-top: 40px;
  padding: 20px;
  background: #f1f1f1;
  font-size: 13px;
  line-height: 1.75;
}

.contact-form-status {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: #f4faf8;
  font-size: 14px;
  line-height: 1.65;
}

.contact-form-submit {
  margin: 40px auto 0;
  text-align: center;
}

.contact-form-submit button {
  min-width: 168px;
  padding: 14px 22px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #333;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form-submit button:hover,
.contact-form-submit button:focus-visible {
  background: #555;
}

.contact-access {
  padding: 70px 0 76px;
  color: #fff;
  background: linear-gradient(180deg, #195f55 0%, #0c3022 100%);
}

.contact-access-heading {
  margin-bottom: 34px;
  text-align: center;
}

.contact-access-heading p,
.contact-access-heading h2 {
  margin: 0;
  color: #fff;
}

.contact-access-heading p {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-access-heading h2 {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.contact-access-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-access-gallery figure {
  margin: 0;
}

.contact-access-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 32 / 19;
  object-fit: cover;
}

.contact-access-panel {
  margin-top: 30px;
  padding: 36px 52px;
  border-left: 38px solid var(--color-gold);
  color: var(--color-text);
  background: #fff;
}

.contact-access-list {
  margin: 0;
}

.contact-access-list > div + div {
  margin-top: 24px;
}

.contact-access-list dt {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-gold);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-access-list dd {
  margin: 11px 0 0;
  font-size: 16px;
  line-height: 1.85;
}

.contact-map {
  display: block;
  width: 100%;
  min-height: 380px;
  margin-top: 36px;
  border: 0;
}

.contact-phone-section {
  padding: 72px 0 76px;
  background: #fff;
  text-align: center;
}

.contact-phone-section h2,
.contact-phone-section p {
  margin: 0;
}

.contact-phone-section h2 {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-phone-section a {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.contact-phone-section p {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .contact-hero {
    padding: 50px 0;
  }

  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-hero p {
    font-size: 13px;
  }

  .contact-quick {
    padding: 44px 0 50px;
  }

  .contact-quick-heading {
    margin-bottom: 24px;
  }

  .contact-quick-heading h2,
  .contact-email-heading h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .contact-quick-heading p {
    margin-top: 10px;
    font-size: 20px;
  }

  .contact-reservation-banners {
    grid-template-columns: minmax(0, 1fr);
    max-width: 370px;
    margin: 0 auto;
    gap: 12px;
  }

  .contact-reservation-banners a + a {
    width: min(100%, 260px);
    justify-self: center;
  }

  .contact-email-section {
    padding: 54px 0 62px;
  }

  .contact-email-heading {
    margin-bottom: 28px;
  }

  .contact-email-heading p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-email-heading p + p {
    margin-top: 11px;
    font-size: 13px;
  }

  .contact-field + .contact-field,
  .contact-field + .contact-choice-group,
  .contact-choice-group + .contact-choice-group {
    margin-top: 24px;
  }

  .contact-field label,
  .contact-choice-group legend {
    padding: 10px 12px;
    font-size: 15px;
  }

  .contact-field input {
    min-height: 50px;
    padding: 11px 12px;
    font-size: 16px;
  }

  .contact-choice-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 11px;
    padding-top: 15px;
  }

  .contact-choice-list label {
    font-size: 15px;
  }

  .contact-policy {
    margin-top: 30px;
    padding: 16px;
    font-size: 12px;
  }

  .contact-form-submit {
    margin-top: 32px;
  }

  .contact-access {
    padding: 52px 0 58px;
  }

  .contact-access-heading {
    margin-bottom: 24px;
  }

  .contact-access-heading p {
    font-size: 32px;
  }

  .contact-access-heading h2 {
    font-size: 13px;
  }

  .contact-access-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .contact-access-panel {
    margin-top: 20px;
    padding: 24px 20px;
    border-left-width: 14px;
  }

  .contact-access-list > div + div {
    margin-top: 20px;
  }

  .contact-access-list dt {
    padding-bottom: 8px;
    font-size: 16px;
  }

  .contact-access-list dd {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.75;
  }

  .contact-map {
    min-height: 300px;
    margin-top: 24px;
  }

  .contact-phone-section {
    padding: 52px 0 58px;
  }

  .contact-phone-section h2 {
    font-size: 16px;
  }

  .contact-phone-section a {
    font-size: 30px;
  }

  .contact-phone-section p {
    font-size: 11px;
  }
}

/* Column archive */
.column-page {
  background: #fff;
}

.column-container {
  max-width: 1120px;
}

.column-hero {
  padding: 50px 0;
  background: #fff;
  text-align: center;
}

.column-hero h1,
.column-hero p {
  margin: 0;
}

.column-hero h1 {
  color: var(--color-text);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.column-hero p {
  color: var(--color-primary);
  font-size: 14.4px;
  font-weight: 700;
  line-height: 1.2;
}

.column-breadcrumb-wrap {
  padding: 19px 0 31px;
  background: #fff;
}

.column-breadcrumb-wrap .breadcrumb {
  justify-content: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px dotted #d7d7d7;
}

.column-content {
  padding: 0 0 100px;
  background: #fff;
}

.column-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 768px) minmax(280px, 320px);
  align-items: start;
  gap: 32px;
}

.column-primary {
  min-width: 0;
}

.column-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.column-card {
  display: flex;
  min-width: 0;
  min-height: 385px;
  flex-direction: column;
}

.column-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f2f2f2;
}

.column-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.column-card-content {
  display: flex;
  min-height: 136px;
  flex: 1 0 auto;
  flex-direction: column;
  padding: 13px 16px 16px;
  box-sizing: border-box;
}

.column-card-content p,
.column-card-content h3,
.column-card-content time {
  margin: 0;
}

.column-card-content p,
.column-card-content time {
  color: var(--color-muted);
  font-size: 12.8px;
  font-weight: 400;
  line-height: 1.8;
}

.column-card-content h3 {
  margin-top: 7px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.column-card-content h3 a {
  color: inherit;
  text-decoration: none;
}

.column-card-content time {
  margin-top: auto;
  text-align: right;
}

.column-card:hover .column-card-media img {
  transform: scale(1.025);
}

.column-card:hover .column-card-content h3 a,
.column-card-content h3 a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.column-card-media:focus-visible,
.column-sidebar-list a:focus-visible {
  outline: 3px solid rgba(25, 95, 85, 0.3);
  outline-offset: 3px;
}

.column-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 46px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
}

.column-pagination span,
.column-pagination a {
  display: inline-grid;
  min-width: 30px;
  min-height: 30px;
  place-items: center;
}

.column-pagination a {
  color: inherit;
  text-decoration: none;
}

.column-pagination a:hover,
.column-pagination a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.column-pagination .is-current {
  color: #fff;
  background: var(--color-primary);
}

.column-pagination .column-pagination-next {
  min-width: auto;
  color: var(--color-muted);
}

.column-sidebar {
  min-width: 0;
}

.column-sidebar-section + .column-sidebar-section {
  margin-top: 42px;
}

.column-sidebar-section h2 {
  margin: 0 0 8px;
  padding: 0 16px;
  color: #fff;
  background: #323232;
  font-size: 14.4px;
  font-weight: 400;
  line-height: 1.8;
}

.column-sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.column-sidebar-list li {
  border-bottom: 1px solid #e0e0e0;
}

.column-sidebar-list a {
  display: block;
  padding: 9px 16px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}

.column-sidebar-list a:hover {
  color: var(--color-primary);
  background: #f7faf8;
}

.column-category-list a,
.column-archive-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.column-category-list span,
.column-archive-list span {
  flex: 0 0 auto;
}

@media (max-width: 1000px) {
  .column-content-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 54px;
  }

  .column-sidebar {
    max-width: none;
  }

  .column-sidebar-section h2 {
    max-width: 420px;
  }

  .column-sidebar-list {
    max-width: 420px;
  }
}

@media (max-width: 800px) {
  .column-hero {
    padding: 38px 0;
  }

  .column-hero h1 {
    font-size: 30px;
  }

  .column-hero p {
    font-size: 13px;
  }

  .column-breadcrumb-wrap {
    padding: 15px 0 25px;
  }

  .column-content {
    padding-bottom: 64px;
  }

  .column-card-grid {
    gap: 18px 14px;
  }

  .column-card {
    min-height: 0;
  }

  .column-card-content {
    min-height: 118px;
    padding: 11px 12px 14px;
  }

  .column-card-content h3 {
    font-size: 15px;
  }

  .column-pagination {
    margin-top: 34px;
  }
}

@media (max-width: 620px) {
  .column-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .column-content-grid {
    gap: 44px;
  }

  .column-sidebar-section + .column-sidebar-section {
    margin-top: 34px;
  }
}

@media (max-width: 400px) {
  .column-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .column-card-content {
    min-height: 105px;
  }

  .column-sidebar-list a {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .home-map,
  .access-map,
  .access-main-section .access-map {
    height: 300px;
    min-height: 300px;
  }
}

/* News archive */
.news-archive-page {
  background: #fff;
}

.news-archive-hero {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 34px 0;
  background-color: #f2f5f7;
  background-image: url("../../public/real/sub-hero-worry.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.news-archive-hero-inner {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.news-archive-hero h1 {
  margin: 0;
  color: #252525;
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.news-archive-hero p {
  margin: 0;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.news-archive-breadcrumb-wrap {
  background: #fff;
}

.news-archive-breadcrumb {
  min-height: 42px;
  margin: 0;
  padding: 13px 0 12px;
  border-bottom: 1px dotted #d5d5d5;
}

.news-archive-breadcrumb span::before {
  content: ">";
  margin-right: 10px;
  color: #777;
}

.news-archive-content {
  padding: 40px 0 96px;
  background: #fff;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.news-archive-list,
.news-archive-sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-archive-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 30px;
  gap: 0;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid #e3e3e3;
}

.news-archive-item time {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.news-archive-item h3 {
  margin: 0;
  color: #383838;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.news-archive-item h3 a {
  color: inherit;
  text-decoration: none;
}

.news-archive-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #aaa;
  text-decoration: none;
}

.news-archive-arrow span {
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.news-archive-item:hover h3 a,
.news-archive-item:focus-within h3 a,
.news-archive-sidebar-list a:hover,
.news-archive-sidebar-list a:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-archive-sidebar {
  display: grid;
  gap: 38px;
}

.news-archive-sidebar-section h2 {
  margin: 0;
  padding: 5px 14px 6px;
  color: #fff;
  background: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.news-archive-sidebar-list li {
  border-bottom: 1px dotted #d5d5d5;
}

.news-archive-sidebar-list a {
  display: block;
  padding: 10px 15px;
  color: var(--color-primary-dark);
  font-size: 14px;
  line-height: 1.55;
}

.news-archive-month-list a {
  display: flex;
  gap: 5px;
  align-items: baseline;
}

.news-archive-month-list span {
  color: var(--color-text);
}

.news-detail {
  max-width: 800px;
  padding: 12px 0 28px;
}

.news-detail-date {
  display: block;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
}

.news-detail h1 {
  margin: 0;
  color: var(--color-primary-dark);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.55;
}

.news-detail-lead {
  margin: 26px 0 0;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.9;
}

.news-detail-body {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding: 26px 30px;
  border-left: 3px solid var(--color-primary);
  background: #f5f8f7;
}

.news-detail-body p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.8;
}

.news-detail-body .text-link {
  justify-self: start;
}

.news-detail-back {
  margin-top: 34px;
}

@media (max-width: 860px) {
  .news-archive-content {
    padding-bottom: 68px;
  }

  .news-archive-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .news-archive-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .news-archive-hero {
    min-height: 132px;
    padding: 28px 0;
    background-position: 58% center;
  }

  .news-archive-hero h1 {
    font-size: 32px;
  }

  .news-archive-content {
    padding-top: 24px;
  }

  .news-archive-item {
    grid-template-columns: minmax(0, 1fr) 26px;
    gap: 5px 10px;
    min-height: 0;
    padding: 17px 0;
  }

  .news-archive-item time {
    grid-column: 1;
    font-size: 14px;
  }

  .news-archive-item h3 {
    grid-column: 1;
    font-size: 15px;
    line-height: 1.6;
  }

  .news-archive-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .news-archive-sidebar {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .news-archive-sidebar-list a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .news-detail {
    padding-top: 4px;
  }

  .news-detail h1 {
    font-size: 25px;
  }

  .news-detail-body {
    padding: 20px;
  }
}

/* Monitor plan */
.monitor-page {
  background: #fff;
}

.monitor-page-hero {
  display: grid;
  min-height: 160px;
  place-items: center;
  padding: 34px 0;
  background-color: #f2f5f7;
  background-image: url("../../public/real/sub-hero-worry.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.monitor-page-hero-inner {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.monitor-page-hero h1 {
  margin: 0;
  color: #252525;
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.monitor-page-hero p {
  margin: 0;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.monitor-breadcrumb-wrap {
  background: #fff;
}

.monitor-breadcrumb {
  min-height: 42px;
  margin: 0;
  padding: 13px 0 12px;
  border-bottom: 1px dotted #d5d5d5;
}

.monitor-breadcrumb span::before {
  content: ">";
  margin-right: 10px;
  color: #777;
}

.monitor-main-visual-section {
  background: var(--color-primary);
}

.monitor-main-visual {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.monitor-main-visual img {
  width: 100%;
}

.monitor-plan-section {
  padding: 58px 0 64px;
  background: #fff;
}

.monitor-content-container {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.monitor-section-heading {
  text-align: center;
}

.monitor-section-heading h2 {
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
  margin: 0;
  color: #292929;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
}

.monitor-section-heading h2 span {
  display: inline-block;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(58px, 7.2vw, 86px);
  font-weight: 600;
  line-height: 0.72;
}

.monitor-intro-copy {
  max-width: 1080px;
  margin: 33px auto 0;
  color: #333;
  font-size: 15px;
  line-height: 1.85;
}

.monitor-intro-copy p {
  margin: 0;
}

.monitor-intro-copy p + p {
  margin-top: 2px;
}

.monitor-intro-copy strong {
  color: #c63333;
  font-weight: 700;
}

.monitor-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.monitor-option {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #f4f4f4;
}

.monitor-option h3 {
  display: flex;
  min-height: 73px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 13px 10px;
  color: #fff;
  background: var(--color-primary);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.monitor-option h3 span {
  display: inline-block;
  padding: 2px 5px;
  color: #cf2121;
  border: 1px solid #cf2121;
  background: #fff;
  font-size: 0.78em;
  line-height: 1.25;
  white-space: nowrap;
}

.monitor-option-image {
  position: relative;
  margin: 0;
  padding: 20px 28px 16px;
}

.monitor-option-image img {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
}

.monitor-option-image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 11px solid #111;
  content: "";
  transform: translate(-50%, -37%);
}

.monitor-option dl {
  margin: 0 28px;
  padding: 17px 0 16px;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}

.monitor-option dl div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 8px;
}

.monitor-option dt,
.monitor-option dd {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.65;
}

.monitor-option dd {
  text-align: right;
}

.monitor-option:nth-child(3) dd {
  color: #c63333;
}

.monitor-option-price {
  display: flex;
  min-height: 101px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 18px 14px 20px;
  color: #222;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.monitor-option-price span {
  font-size: clamp(15px, 1.7vw, 20px);
}

.monitor-option-price strong {
  margin-left: 5px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.6vw, 58px);
  font-weight: 600;
}

.monitor-option-price small {
  align-self: flex-end;
  margin: 0 0 4px 2px;
  font-size: clamp(14px, 1.55vw, 22px);
  font-weight: 700;
}

.monitor-option-price--regular strong {
  font-size: clamp(18px, 2vw, 25px);
}

.monitor-option-price--fifteen strong,
.monitor-option-price--fifteen small {
  color: #aa881b;
}

.monitor-option-price--thirty strong,
.monitor-option-price--thirty small {
  color: #d71f1f;
}

.monitor-price-link,
.monitor-contact-link,
.monitor-clinic-link {
  margin: 30px 0 0;
  text-align: center;
}

.monitor-price-link a,
.monitor-contact-link a,
.monitor-clinic-link a {
  display: inline-flex;
  min-width: 270px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #fff;
  border-radius: 4px;
  background: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.monitor-price-link a:hover,
.monitor-price-link a:focus-visible,
.monitor-contact-link a:hover,
.monitor-contact-link a:focus-visible {
  background: var(--color-primary-dark);
}

.monitor-conditions-section {
  padding: 0 0 62px;
  background: #fff;
}

.monitor-conditions-box {
  padding: 44px 30px 30px;
  border: 1px solid #555;
  color: #444;
}

.monitor-conditions-box h2 {
  display: table;
  margin: 0 auto 26px;
  padding: 0 36px 8px;
  border-bottom: 2px solid #555;
  color: #333;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.monitor-conditions-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
}

.monitor-conditions-box li {
  position: relative;
  padding-left: 1.2em;
}

.monitor-conditions-box li::before {
  position: absolute;
  left: 0;
  content: "※";
}

.monitor-conditions-box > p {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #555;
  font-size: 14px;
  text-align: center;
}

.monitor-contact-link {
  margin-top: 30px;
}

.monitor-access-section {
  padding: 58px 0 66px;
  color: #fff;
  background: var(--color-primary);
}

.monitor-access-heading {
  text-align: center;
}

.monitor-access-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.3vw, 44px);
  font-weight: 800;
  line-height: 1.15;
}

.monitor-access-heading p {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.monitor-access-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.monitor-access-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.monitor-access-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0 0;
}

.monitor-access-details div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}

.monitor-access-details dt {
  font-size: 15px;
  font-weight: 800;
}

.monitor-access-details dd {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.monitor-clinic-link a {
  color: var(--color-primary-dark);
  background: #fff;
}

.monitor-clinic-link a:hover,
.monitor-clinic-link a:focus-visible {
  color: #fff;
  background: var(--color-primary-dark);
  box-shadow: inset 0 0 0 1px #fff;
}

@media (max-width: 900px) {
  .monitor-option-grid {
    gap: 16px;
  }

  .monitor-option-image,
  .monitor-option dl {
    margin-right: 18px;
    margin-left: 18px;
  }

  .monitor-option-image {
    padding-right: 0;
    padding-left: 0;
  }

  .monitor-option dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .monitor-option dd {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .monitor-page-hero {
    min-height: 132px;
    padding: 28px 0;
    background-position: 58% center;
  }

  .monitor-page-hero h1 {
    font-size: 32px;
  }

  .monitor-plan-section {
    padding-top: 42px;
  }

  .monitor-intro-copy {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.8;
  }

  .monitor-intro-copy br {
    display: none;
  }

  .monitor-option-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    max-width: 460px;
    margin-right: auto;
    margin-left: auto;
  }

  .monitor-option h3 {
    min-height: 58px;
  }

  .monitor-option-image {
    padding: 20px 32px 16px;
  }

  .monitor-option dl {
    margin-right: 32px;
    margin-left: 32px;
  }

  .monitor-option dl div {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .monitor-option dd {
    text-align: right;
  }

  .monitor-conditions-section {
    padding-bottom: 48px;
  }

  .monitor-conditions-box {
    padding: 30px 18px 22px;
  }

  .monitor-conditions-box h2 {
    margin-bottom: 20px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 18px;
  }

  .monitor-conditions-box ul,
  .monitor-conditions-box > p {
    font-size: 13px;
  }

  .monitor-access-section {
    padding: 46px 0 54px;
  }

  .monitor-access-gallery,
  .monitor-access-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .monitor-access-gallery {
    gap: 10px;
  }

  .monitor-access-details {
    gap: 16px;
    margin-top: 26px;
  }
}

@media (max-width: 420px) {
  .monitor-section-heading h2 {
    gap: 3px;
    font-size: 22px;
  }

  .monitor-section-heading h2 span {
    font-size: 52px;
  }

  .monitor-option-image,
  .monitor-option dl {
    margin-right: 18px;
    margin-left: 18px;
  }

  .monitor-option-image {
    padding-right: 0;
    padding-left: 0;
  }

  .monitor-option dl div {
    grid-template-columns: 1fr;
  }

  .monitor-option dd {
    text-align: left;
  }

  .monitor-price-link a,
  .monitor-contact-link a,
  .monitor-clinic-link a {
    width: 100%;
    min-width: 0;
  }
}

/* Homepage monitor and access updates */
.home-monitor-notice {
  padding: 16px 0 24px;
  background: #fff;
}

.home-monitor-notice-inner {
  width: min(100% - 32px, 1024px);
  margin: 0 auto;
}

.home-monitor-notice p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.8;
}

.reason-theme[id] {
  scroll-margin-top: 128px;
}

.home-support-section {
  padding: 0 0 76px;
  background: #fff;
}

.home-support-container {
  width: min(100% - 32px, 1024px);
  margin: 0 auto;
}

.home-support-container img {
  display: block;
  width: 100%;
  height: auto;
}

.home-access-section .clinic-info div {
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

.home-access-section .clinic-info dt {
  color: #fff;
  font-size: 15px;
}

.home-access-section .clinic-info dd {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.75;
}

.home-access-section .home-map {
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.home-access-contact {
  margin-top: 28px;
}

.home-access-section .home-access-contact-heading {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.home-access-section .access-phone {
  margin: 0;
}

.home-access-section .home-access-contact-hours {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.home-reservation-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-reservation-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.home-reservation-button--web {
  background: var(--color-gold);
}

.home-reservation-button--line {
  background: #06c755;
}

.home-reservation-button--phone {
  border-color: rgba(255, 255, 255, 0.72);
  background: #fff;
  color: var(--color-primary-dark);
}

.home-reservation-button:hover,
.home-reservation-button:focus-visible {
  filter: brightness(0.94);
}

.home-reservation-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

#about.section-accent {
  color: var(--color-text);
  background: #fff;
}

#about.section-accent .section-heading .eyebrow,
#about.section-accent .section-heading h2 {
  color: var(--color-primary);
}

#about.section-accent .section-heading h2::after {
  display: block;
  margin-top: 4px;
  color: #333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  content: "施術メニュー";
}

#about.section-accent .section-heading h2 {
  font-size: 0;
  line-height: 1;
}

#about.section-accent .section-heading p:not(.eyebrow) {
  display: none;
}

.reasons-original-section .section-heading > p:not(.eyebrow) {
  display: none;
}

.doctor-original-heading {
  padding-top: 42px;
  margin-bottom: 20px;
}

.home-access-section .section-heading .eyebrow {
  color: #fff;
}

.home-access-section .section-heading h2 {
  color: #fff;
}

.home-access-section .section-heading {
  margin-bottom: 30px;
}

@media (max-width: 760px) {
  .home-monitor-notice {
    padding: 14px 0 20px;
  }

  .home-monitor-notice p {
    font-size: 13px;
    line-height: 1.75;
  }

  .reason-theme[id] {
    scroll-margin-top: 92px;
  }

  .home-support-section {
    padding-bottom: 52px;
  }

  .home-access-section .home-access-contact-heading {
    font-size: 15px;
  }

  .home-reservation-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Homepage footer modeled after the original clinic site. */
.home-site-footer {
  padding: 0;
  color: #4a4a4a;
  background: #e9e9e9;
}

.home-footer-main {
  padding: 48px 0 52px;
}

.home-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.86fr) minmax(210px, 1fr) minmax(290px, 1.18fr);
  gap: 50px;
  align-items: start;
}

.home-footer-logo {
  display: block;
  width: 108px;
  height: auto;
}

.home-footer-medical,
.home-footer-clinic-name,
.home-footer-address {
  margin: 0;
}

.home-footer-medical {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.home-footer-clinic-name {
  margin-top: 3px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.home-footer-address {
  margin-top: 6px;
  color: #505050;
  font-size: 13px;
  font-style: normal;
  line-height: 1.72;
}

.home-footer-address a {
  color: inherit;
  text-decoration: none;
}

.home-footer-heading {
  margin: 8px 0 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-primary);
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.home-site-footer .home-footer-nav {
  display: block;
}

.home-footer-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-site-footer .home-footer-list a {
  color: var(--color-primary);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.home-site-footer .home-footer-list a::before {
  display: inline-block;
  margin-right: 6px;
  color: var(--color-primary);
  font-size: 0.7em;
  content: "▶";
  vertical-align: 0.08em;
}

.home-site-footer .home-footer-list a:hover,
.home-site-footer .home-footer-list a:focus-visible {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-footer-treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.home-footer-copyright {
  margin: 0;
  padding: 25px 16px;
  color: #fff;
  background: #303030;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 870px) {
  .home-footer-grid {
    grid-template-columns: minmax(210px, 0.9fr) minmax(210px, 1fr);
    gap: 40px;
  }

  .home-footer-nav--treatment {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .home-footer-main {
    padding: 38px 0 42px;
  }

  .home-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .home-footer-nav--treatment {
    grid-column: auto;
  }

  .home-footer-heading {
    margin-top: 0;
  }

  .home-footer-treatment-grid {
    gap: 16px;
  }
}

@media (max-width: 800px) {
  .contact-phone-section a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: auto;
    max-width: 100%;
    min-height: 44px;
    margin-top: 12px;
    padding: 4px 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color-primary);
    font-family: var(--font-sans);
    font-size: clamp(22px, 7.1vw, 30px);
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: color 180ms ease, opacity 180ms ease;
  }

  .contact-phone-section a[href^="tel:"]::before {
    padding: 3px 6px;
    border: 1px solid currentColor;
    border-radius: 3px;
    content: "電話する";
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
  }

  .contact-phone-section a[href^="tel:"] > [aria-hidden="true"] {
    display: none;
  }

  .contact-phone-section a[href^="tel:"]:active {
    color: var(--color-primary-dark);
    opacity: 0.74;
  }

  .contact-phone-section a[href^="tel:"]:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
  }
}

/* Source-column article layout */
.article-source-site-header .header-top-inner,
.article-source-site-header .header-nav-inner {
  width: min(100% - 32px, 1140px);
}

.article-source-site-header .header-top-inner {
  min-height: 68px;
}

.article-source-site-header .header-nav-row {
  border-bottom: 0;
  background: #d0d0d0;
}

.article-source-site-header .header-nav-inner {
  min-height: 44px;
}

.article-source-site-header .header-nav-inner .global-nav {
  gap: clamp(16px, 2.3vw, 42px);
}

.article-source-site-header .header-nav-inner .global-nav a,
.article-source-site-header .header-nav-inner .nav-dropdown summary {
  padding: 7px 0;
}

@media (max-width: 760px) {
  .article-source-site-header .header-nav-inner {
    width: 100%;
    min-height: 0;
  }

  .article-source-site-header .header-nav-inner .global-nav {
    gap: 2px;
  }
}

.article-layout .container.narrow {
  max-width: 783px;
}

.article-layout .article-header {
  padding: 18px 0;
  background: #fff;
}

.article-layout .article-header .breadcrumb,
.article-layout .article-header .article-meta,
.article-layout .article-header .page-lead,
.article-layout .article-header .article-eyecatch {
  display: none;
}

.article-layout .article-header h1 {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 17px 18px 18px;
  color: #fff;
  background: #1f655c;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.article-layout .article-body {
  padding-top: 0;
  padding-bottom: 76px;
}

.article-layout .article-content {
  display: block;
}

.article-layout .article-content-section,
.article-layout .article-content .article-content-section + .article-content-section {
  margin-top: 0;
}

.article-layout .article-content-section p {
  margin: 0;
  color: #252525;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.article-source-facts {
  margin: 0 0 34px;
  padding: 22px 26px 24px;
  border: 1px solid #bfddd4;
  border-left: 6px solid var(--color-primary);
  background: #e9f4f0;
}

.article-layout .article-source-facts p {
  color: #1f312f;
  line-height: 1.75;
}

.article-source-facts-heading {
  margin: 0 0 12px !important;
  color: var(--color-primary-dark) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0;
}

.article-source-facts p + p {
  margin-top: 7px;
}

.article-source-facts-heading + p {
  margin-top: 0 !important;
}

.article-source-fact-label {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.article-source-divider {
  width: 100%;
  height: 1px;
  margin: 31px 0;
  border: 0;
  background: #d7d7d7;
}

.article-source-figure {
  margin: 16px 0 0;
}

.article-source-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-source-figure + .article-source-figure {
  margin-top: 0;
}

.article-source-section > .article-source-figure:first-child {
  margin-top: 0;
}

.article-source-section > .article-source-figure + p {
  margin-top: 26px;
}

.article-source-treatment .article-source-figure {
  margin-bottom: 31px;
}

.article-source-question-block {
  margin-top: 30px;
  padding-left: 18px;
  border-left: 3px solid #79aa9f;
}

.article-source-question-block p + p {
  margin-top: 10px;
}

.article-layout .article-source-question-title {
  color: var(--color-primary-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
}

.article-source-progress {
  margin-top: 32px;
}

.article-source-progress > p:first-child {
  margin-bottom: 16px;
}

.article-layout .article-source-progress-title {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.article-source-progress .article-source-figure {
  margin-top: 0;
  margin-bottom: 26px;
}

.article-source-note {
  margin-top: 36px;
}

.article-source-note .article-source-divider {
  margin: 0 0 18px;
  background: #c9ddd7;
}

.article-source-note > .article-source-divider:first-child {
  display: none;
}

.article-layout .article-source-note-title {
  margin: 0;
  padding: 11px 15px;
  color: var(--color-primary-dark);
  border-left: 4px solid var(--color-primary);
  background: #edf7f3;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
}

.article-source-note > p + p {
  margin-top: 10px;
}

.article-source-links {
  margin-top: 18px !important;
}

.article-source-links .text-link {
  font-weight: 400;
}

@media (max-width: 600px) {
  .article-layout .article-header {
    padding: 14px 0;
  }

  .article-layout .article-header h1 {
    padding: 14px;
  }

  .article-layout .article-content-section p {
    font-size: 16px;
  }

  .article-source-divider {
    margin: 25px 0;
  }

  .article-source-question-block,
  .article-source-progress,
  .article-source-note {
    margin-top: 30px;
  }

  .article-source-facts {
    padding: 18px 18px 20px;
  }

  .article-layout .article-source-question-title,
  .article-layout .article-source-note-title {
    font-size: 16px;
  }
}

/* Align navigation page hero typography with the pricing page. */
.reason-hero h1,
.clinic-hero h1,
.contact-hero h1,
.column-hero h1,
.faq-page-hero h1,
.treatment-page-hero h1 {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(34px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: none;
}

.reason-hero p,
.clinic-hero p,
.contact-hero p,
.column-hero p,
.faq-page-hero p,
.treatment-page-hero p {
  margin: 8px 0 0;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

@media (max-width: 700px) {
  .reason-hero h1,
  .clinic-hero h1,
  .contact-hero h1,
  .column-hero h1,
  .faq-page-hero h1,
  .treatment-page-hero h1 {
    font-size: 34px;
  }

  .reason-hero p,
  .clinic-hero p,
  .contact-hero p,
  .column-hero p,
  .faq-page-hero p,
  .treatment-page-hero p {
    margin-top: 6px;
    font-size: 13px;
  }
}

/* Normalize the media frame behind navigation page titles. */
.reason-hero,
.pricing-hero,
.clinic-hero,
.contact-hero,
.column-hero,
.faq-page-hero,
.treatment-page-hero {
  box-sizing: border-box;
  width: 100%;
  min-height: 190px;
  margin: 0;
  padding: 42px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.reason-hero,
.pricing-hero,
.clinic-hero,
.contact-hero,
.column-hero,
.faq-page-hero,
.treatment-page-hero {
  display: grid;
  place-items: center;
  text-align: center;
}

.faq-breadcrumb-wrap {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.faq-breadcrumb-wrap .breadcrumb {
  min-height: 56px;
  margin-bottom: 0;
}

.column-hero,
.faq-page-hero,
.treatment-page-hero {
  background:
    linear-gradient(rgba(248, 251, 253, 0.34), rgba(248, 251, 253, 0.34)),
    url("../../public/real/sub-hero-worry.jpg") center / cover no-repeat;
}

.treatment-page-hero {
  color: var(--color-text);
}

.treatment-page-hero::after {
  display: none;
}

@media (max-width: 700px) {
  .reason-hero,
  .pricing-hero,
  .clinic-hero,
  .contact-hero,
  .column-hero,
  .faq-page-hero,
  .treatment-page-hero {
    min-height: 164px;
    padding: 32px 0;
    background-position: 62% center;
  }
}

/* Give button-like actions a consistent, restrained response across the site. */
:where(
  .cta-button,
  .primary-button,
  .secondary-button,
  .outline-button,
  .method-original-button,
  .teal-cta-button,
  .dark-cta-button,
  .density-feature-button,
  .cta-banner-red,
  .monitor-price-link > a,
  .monitor-contact-link > a,
  .monitor-clinic-link > a,
  .clinic-contact > a,
  .contact-phone-section > a,
  .access-phone,
  .filter-group > button,
  .contact-form-submit > button,
  .nav-toggle
) {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

:where(
  .filter-group > button,
  .contact-form-submit > button,
  .nav-toggle
) {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  :where(
    .cta-button,
    .primary-button,
    .secondary-button,
    .outline-button,
    .method-original-button,
    .teal-cta-button,
    .dark-cta-button,
    .density-feature-button,
    .cta-banner-red,
    .monitor-price-link > a,
    .monitor-contact-link > a,
    .monitor-clinic-link > a,
    .clinic-contact > a,
    .contact-phone-section > a,
    .access-phone,
    .filter-group > button,
    .contact-form-submit > button,
    .nav-toggle
  ):hover {
    transform: translateY(-2px);
    filter: brightness(1.04) saturate(1.025);
    box-shadow: 0 14px 24px rgba(12, 48, 34, 0.2);
  }
}

:where(
  .cta-button,
  .primary-button,
  .secondary-button,
  .outline-button,
  .method-original-button,
  .teal-cta-button,
  .dark-cta-button,
  .density-feature-button,
  .cta-banner-red,
  .monitor-price-link > a,
  .monitor-contact-link > a,
  .monitor-clinic-link > a,
  .clinic-contact > a,
  .contact-phone-section > a,
  .access-phone,
  .filter-group > button,
  .contact-form-submit > button,
  .nav-toggle
):focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(12, 48, 34, 0.2);
}

:where(
  .cta-button,
  .primary-button,
  .secondary-button,
  .outline-button,
  .method-original-button,
  .teal-cta-button,
  .dark-cta-button,
  .density-feature-button,
  .cta-banner-red,
  .monitor-price-link > a,
  .monitor-contact-link > a,
  .monitor-clinic-link > a,
  .clinic-contact > a,
  .contact-phone-section > a,
  .access-phone,
  .filter-group > button,
  .contact-form-submit > button,
  .nav-toggle
):active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 5px 12px rgba(12, 48, 34, 0.16);
}

/* Textual calls to action move sideways so their surrounding layout stays still. */
:where(
  .text-link,
  .led-text-link,
  .meso-text-link,
  .news-archive-arrow
) {
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  :where(
    .text-link,
    .led-text-link,
    .meso-text-link
  ):hover {
    transform: translateX(3px);
  }

  .news-archive-arrow:hover {
    transform: translateX(3px) scale(1.04);
    box-shadow: 0 7px 14px rgba(12, 48, 34, 0.16);
  }
}

:where(
  .text-link,
  .led-text-link,
  .meso-text-link,
  .news-archive-arrow
):focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.news-row {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .news-row:hover {
    transform: translateX(4px);
    border-color: rgba(25, 95, 85, 0.42);
    box-shadow: 0 12px 22px rgba(12, 48, 34, 0.1);
  }
}

.news-row:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.news-list-cta {
  display: inline-flex;
  min-width: min(100%, 260px);
  min-height: 54px;
  margin-top: 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--color-primary);
  color: #fff;
  background: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.news-list-cta::before {
  content: "▶";
  display: inline-block;
  font-size: 0.8em;
}

@media (hover: hover) and (pointer: fine) {
  .news-list-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 12px 22px rgba(12, 48, 34, 0.16);
  }
}

.news-list-cta:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.banner-grid > a,
.clinic-banner-grid > a,
.shokumou-monitor-banner > a {
  transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .banner-grid > a:hover,
  .clinic-banner-grid > a:hover,
  .shokumou-monitor-banner > a:hover {
    transform: translateY(-3px);
    filter: brightness(1.035) saturate(1.025);
    box-shadow: 0 16px 28px rgba(12, 48, 34, 0.18);
  }
}

.banner-grid > a:focus-visible,
.clinic-banner-grid > a:focus-visible,
.shokumou-monitor-banner > a:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

.banner-grid > a:active,
.clinic-banner-grid > a:active,
.shokumou-monitor-banner > a:active,
.floating-cta-item:active,
.original-case-button:active {
  transform: translateY(0) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  :where(
    .cta-button,
    .primary-button,
    .secondary-button,
    .outline-button,
    .method-original-button,
    .teal-cta-button,
    .dark-cta-button,
    .density-feature-button,
    .cta-banner-red,
    .monitor-price-link > a,
    .monitor-contact-link > a,
    .monitor-clinic-link > a,
    .clinic-contact > a,
    .contact-phone-section > a,
    .access-phone,
    .filter-group > button,
    .contact-form-submit > button,
    .nav-toggle,
    .text-link,
    .led-text-link,
    .meso-text-link,
    .news-archive-arrow,
    .news-row,
    .banner-grid > a,
    .clinic-banner-grid > a,
    .shokumou-monitor-banner > a
  ) {
    transition: none;
  }

  :where(
    .cta-button,
    .primary-button,
    .secondary-button,
    .outline-button,
    .method-original-button,
    .teal-cta-button,
    .dark-cta-button,
    .density-feature-button,
    .cta-banner-red,
    .monitor-price-link > a,
    .monitor-contact-link > a,
    .monitor-clinic-link > a,
    .clinic-contact > a,
    .contact-phone-section > a,
    .access-phone,
    .filter-group > button,
    .contact-form-submit > button,
    .nav-toggle,
    .text-link,
    .led-text-link,
    .meso-text-link,
    .news-archive-arrow,
    .news-row,
    .banner-grid > a,
    .clinic-banner-grid > a,
    .shokumou-monitor-banner > a
  ):hover,
  :where(
    .cta-button,
    .primary-button,
    .secondary-button,
    .outline-button,
    .method-original-button,
    .teal-cta-button,
    .dark-cta-button,
    .density-feature-button,
    .cta-banner-red,
    .monitor-price-link > a,
    .monitor-contact-link > a,
    .monitor-clinic-link > a,
    .clinic-contact > a,
    .contact-phone-section > a,
    .access-phone,
    .filter-group > button,
    .contact-form-submit > button,
    .nav-toggle,
    .text-link,
    .led-text-link,
    .meso-text-link,
    .news-archive-arrow,
    .news-row,
    .banner-grid > a,
    .clinic-banner-grid > a,
    .shokumou-monitor-banner > a
  ):focus-visible,
  :where(
    .cta-button,
    .primary-button,
    .secondary-button,
    .outline-button,
    .method-original-button,
    .teal-cta-button,
    .dark-cta-button,
    .density-feature-button,
    .cta-banner-red,
    .monitor-price-link > a,
    .monitor-contact-link > a,
    .monitor-clinic-link > a,
    .clinic-contact > a,
    .contact-phone-section > a,
    .access-phone,
    .filter-group > button,
    .contact-form-submit > button,
    .nav-toggle,
    .text-link,
    .led-text-link,
    .meso-text-link,
    .news-archive-arrow,
    .news-row,
    .banner-grid > a,
    .clinic-banner-grid > a,
    .shokumou-monitor-banner > a
  ):active {
    transform: none;
  }
}

/* Mobile fidelity pass based on the current wellness-hair.com layout. */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 90;
  }

  .header-top {
    position: relative;
  }

  .header-top-inner {
    width: min(100% - 24px, 1240px);
    min-height: 64px;
    padding-right: 56px;
  }

  .header-top-inner .site-logo img {
    width: min(178px, 54vw);
  }

  .header-nav-row {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    border: 0;
    background: transparent;
    pointer-events: none;
  }

  .header-nav-inner {
    width: 100%;
    pointer-events: none;
  }

  .header-nav-inner .nav-toggle {
    position: absolute;
    top: 10px;
    right: 12px;
    display: grid;
    width: 44px;
    height: 44px;
    margin: 0;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 0;
    background: transparent;
    pointer-events: auto;
  }

  .site-header.is-open .header-nav-inner .nav-toggle {
    top: 12px;
    right: 10px;
    z-index: 35;
    border-color: transparent;
  }

  .header-nav-inner .nav-toggle span:not(.sr-only) {
    width: 24px;
    height: 2px;
    margin: 3px auto;
    background: #fff;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .header-nav-inner .nav-toggle span:not(.sr-only) {
    background: #222;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-nav-inner .global-nav {
    position: absolute;
    top: 4px;
    right: 7px;
    left: auto;
    display: grid;
    width: min(300px, calc(100vw - 14px));
    max-height: calc(100vh - 4px);
    padding: 48px 24px calc(28px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    background: #fff;
    box-shadow: none;
    transform: translateX(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.is-open .header-nav-inner .global-nav {
    display: grid;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-nav-inner .global-nav::before {
    content: "コンテンツ";
    display: block;
    order: 0;
    margin-bottom: 4px;
    padding: 5px 8px;
    background: var(--color-primary-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
  }

  .header-nav-inner .global-nav a,
  .header-nav-inner .nav-dropdown summary {
    padding: 10px 6px;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    color: var(--color-primary-dark);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.35;
    text-decoration: underline;
  }

  .header-nav-inner .global-nav a.is-active,
  .header-nav-inner .global-nav a[aria-current="page"] {
    color: var(--color-primary-dark);
  }

  .header-nav-inner .global-nav > a[href="index.html"] { order: 1; }
  .header-nav-inner .global-nav > a[href="reason.html"] { order: 2; }
  .header-nav-inner .global-nav > a[href="doctor.html"] { order: 3; }
  .header-nav-inner .global-nav > a[href="news-list.html"] { order: 4; }
  .header-nav-inner .global-nav > a[href="clinic.html"] { order: 5; }
  .header-nav-inner .global-nav > a[href="menu-price.html"] { order: 6; }
  .header-nav-inner .global-nav > a[href="monitor.html"] { order: 7; }
  .header-nav-inner .global-nav > a[href="contact.html"] { order: 8; }
  .header-nav-inner .global-nav > a[href="blog-list.html"] { order: 9; }
  .header-nav-inner .global-nav > a[href="privacy-policy.html"] { order: 10; }
  .header-nav-inner .global-nav > a[href="faq.html"] { order: 11; }
  .header-nav-inner .global-nav > .nav-dropdown {
    order: 20;
    width: 100%;
    margin-top: 16px;
  }

  .header-nav-inner .mobile-nav-extra {
    display: block;
  }

  .header-nav-inner .nav-dropdown summary {
    margin-bottom: 4px;
    padding: 5px 8px;
    border-bottom: 0;
    background: var(--color-primary-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
  }

  .header-nav-inner .nav-dropdown summary:hover,
  .header-nav-inner .nav-dropdown[open] summary {
    color: #fff;
    background: var(--color-primary-dark);
  }

  .header-nav-inner .nav-dropdown summary::after {
    content: none;
  }

  .header-nav-inner .nav-submenu {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
  }

  .header-nav-inner .nav-submenu a {
    padding: 10px 6px;
    background: #fff;
    white-space: normal;
  }

  .hero-section {
    aspect-ratio: 1265 / 678;
    background: #eef3ef;
  }

  .hero-slideshow img {
    object-fit: contain;
    object-position: center;
    background: #eef3ef;
  }

  .hero-visual::after {
    background: transparent;
  }

  .original-case-icon {
    width: min(220px, 43vw);
    right: -4px;
  }

  .patient-voices-inner {
    width: min(100% - 20px, 700px);
  }

  .patient-voices-lead {
    display: block;
    min-height: 0;
    width: calc(100% - 76px);
    margin: 0 76px 18px 0;
    padding: 18px 16px;
    border-radius: 8px;
  }

  .patient-voices-lead p {
    order: 2;
    font-size: 13px;
    line-height: 1.75;
  }

  .patient-voices-logo-mark {
    position: absolute;
    top: 18px;
    right: -70px;
    width: 62px;
    height: 62px;
    margin: 0;
    padding: 7px;
    transform: none;
  }

  .patient-voices-logo-mark img {
    width: 28px;
  }

  .patient-voices-logo-mark span {
    font-size: 5px;
  }

  .patient-voices-note {
    font-size: 11px;
  }

  .method-original-text {
    display: grid;
  }

  .method-original-button {
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .shampoo-maintenance-flow {
    margin-top: 0;
  }

  .shampoo-original-photo-block {
    background-size: 100% auto;
    background-position: center 154px;
  }

  .shampoo-original-visual {
    padding-top: 22px;
    padding-bottom: clamp(470px, 136vw, 580px);
  }

  .shampoo-original-visual::before {
    background: linear-gradient(
      to bottom,
      #fff 0%,
      #fff 30%,
      rgba(255, 255, 255, 0.82) 39%,
      rgba(255, 255, 255, 0.3) 49%,
      rgba(255, 255, 255, 0) 58%
    );
  }

  .shampoo-original-reasons {
    margin-top: -104px;
  }

  .shampoo-maintenance-flow {
    padding-top: 0;
    padding-bottom: 18px;
  }

  .shampoo-original-section > .center {
    padding-bottom: 28px;
  }

  .shampoo-original-section > .center .dark-cta-button {
    margin-top: 16px;
    margin-bottom: 14px;
  }

  .doctor-original-section {
    padding-bottom: 34px;
  }

  .doctor-original-heading {
    padding-top: 16px;
    margin-bottom: 12px;
  }

  #faq.section {
    padding-top: 42px;
  }

  #faq .section-heading {
    margin-bottom: 22px;
  }

  #faq .section-heading > p:not(.eyebrow) {
    display: none;
  }

  #about .section-heading {
    margin-bottom: 22px;
  }

  #about .section-heading .eyebrow,
  #about .section-heading h2 {
    color: var(--color-primary);
  }

  .menu-image-grid.method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .menu-image-grid .info-card {
    min-height: 100%;
    padding: 0 0 12px;
    border-radius: 0;
  }

  .menu-image-grid .method-image {
    aspect-ratio: 680 / 401;
    height: auto;
    object-fit: cover;
  }

  .menu-image-grid .info-card h3 {
    margin: 9px 8px 4px;
    font-size: 13px;
    line-height: 1.35;
  }

  .menu-image-grid .info-card p {
    display: none;
  }

  .menu-image-grid .menu-card-link {
    min-height: 32px;
    margin: 8px 8px 0;
    padding: 7px 6px;
    font-size: 11px;
  }

  .doctor-original-history .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .doctor-original-history .teal-cta-button {
    min-width: 0;
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
  }

  .home-access-section .clinic-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 22px;
  }

  .home-access-section .clinic-gallery img {
    border-radius: 0;
  }

  .home-access-section .access-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .home-access-section .home-map {
    width: 100%;
    min-height: 320px;
    order: 2;
  }

  .home-access-section .home-reservation-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .home-access-section .home-reservation-button {
    min-height: 44px;
    padding: 8px 4px;
    font-size: 12px;
  }

  .home-footer-main {
    padding: 34px 0 38px;
  }

  .home-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    gap: 28px;
    text-align: center;
  }

  .home-footer-clinic {
    grid-column: 1 / -1;
  }

  .home-footer-logo {
    margin: 0 auto;
  }

  .home-footer-heading {
    text-align: center;
  }

  .home-footer-list {
    justify-items: start;
    text-align: left;
  }

  .home-footer-treatment-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }

  .mobile-reservation-bar {
    min-height: 54px;
  }

  .mobile-reservation-bar__item {
    min-height: 54px;
  }
}

@media (max-width: 380px) {
  .menu-image-grid.method-grid {
    gap: 8px;
  }

  .menu-image-grid .info-card h3 {
    font-size: 12px;
  }

  .menu-image-grid .menu-card-link {
    font-size: 10px;
  }
}

/* PC向けに調整した本文・見出しの改行位置は、スマホ幅では無効化してブラウザの自然な折り返しに任せる */
@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

/* スマホ幅専用の改行（PC幅では無効化） */
.br-mobile {
  display: none;
}

@media (max-width: 767px) {
  .br-mobile {
    display: inline;
  }
}
