/*
Theme Name: Yoshizawa Seikotsuin One Page
Theme URI: https://example.com/
Author: ChatGPT
Description: 吉澤整骨院向けのペライチWordPressテーマ。ガリレオ動物病院のような白・薄グレー・青緑アクセントの清潔感あるデザインで、スライダー、施術内容、歩行療法資料、店舗情報、Google Map、お問い合わせを1ページで表示します。
Version: 1.1.7
Requires at least: 6.0
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yoshizawa-seikotsuin
*/

:root {
  --color-ink: #123034;
  --color-text: #26383b;
  --color-muted: #6f8082;
  --color-line: rgba(18, 48, 52, 0.12);
  --color-bg: #f5f8f8;
  --color-paper: #ffffff;
  --color-pale: #edf5f5;
  --color-teal: #147a7f;
  --color-teal-dark: #0d5559;
  --color-teal-light: #d9eeee;
  --color-mint: #8fcfd0;
  --color-sand: #eef3f2;
  --shadow-soft: 0 28px 70px rgba(18, 48, 52, 0.08);
  --shadow-card: 0 18px 42px rgba(18, 48, 52, 0.06);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --content: 1120px;
  --wide: 1280px;
  --header-height: 88px;
  --font-jp: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.045em;
  overflow-x: hidden;
  cursor: pointer;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1.25em;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.055em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
[role="button"],
.slider-dot,
.nav-toggle {
  cursor: pointer;
}

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

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 8px 14px;
  clip: auto;
  background: #fff;
  border: 2px solid var(--color-teal);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(18, 48, 52, 0.08);
  backdrop-filter: blur(18px);
}

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

.site-header__logo {
  flex: 0 0 auto;
}

.custom-logo-link img {
  display: block;
  max-height: 60px;
  width: auto;
}

.site-logo-text {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.15;
}

.site-logo-main {
  color: var(--color-ink);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.site-logo-sub {
  color: var(--color-teal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-teal);
  transition: width 0.25s ease;
}

.site-nav a:hover {
  color: var(--color-teal-dark);
}

.site-nav a:hover::after {
  width: 100%;
}

.header-tel {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 166px;
  min-height: 52px;
  padding: 9px 18px;
  color: #fff;
  background: var(--color-teal);
  border-radius: 999px;
  line-height: 1.15;
  box-shadow: 0 14px 34px rgba(20, 122, 127, 0.22);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.header-tel:hover {
  transform: translateY(-2px);
  background: var(--color-teal-dark);
  box-shadow: 0 18px 42px rgba(20, 122, 127, 0.26);
}

.header-tel span {
  font-size: 10px;
  opacity: 0.82;
  letter-spacing: 0.12em;
}

.header-tel strong {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--color-pale);
  border: 0;
  border-radius: 50%;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-teal-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

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

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f2f8f8 52%, #e5f2f2 100%);
}

.hero::before,
.hero::after {
  content: none;
  display: none;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__image {
  position: absolute;
  top: calc(var(--header-height) + 10px);
  right: 48px;
  bottom: 56px;
  width: min(68vw, 980px);
  height: calc(100% - var(--header-height) - 66px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
  transform: scale(1.01);
}

.hero-slide--fallback {
  background: linear-gradient(135deg, #ffffff 0%, #f4f8f8 50%, #e9f3f3 100%);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 34%, rgba(255, 255, 255, 0.34) 52%, rgba(255, 255, 255, 0) 76%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) * 0.55);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  font-family: var(--font-jp);
  font-size: xxx-large;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.34;
}

.hero-lead {
  max-width: 620px;
  margin-top: 28px;
  color: var(--color-text);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button--primary {
  color: #fff;
  background: var(--color-teal);
  box-shadow: 0 18px 42px rgba(20, 122, 127, 0.23);
}

.button--primary:hover {
  background: var(--color-teal-dark);
}

.button--ghost {
  color: var(--color-teal-dark);
  border-color: rgba(20, 122, 127, 0.22);
  background: rgba(255, 255, 255, 0.74);
}

.button--ghost:hover,
.button--outline:hover {
  color: #fff;
  background: var(--color-teal);
  border-color: var(--color-teal);
}

.button--outline {
  color: var(--color-teal);
  border-color: rgba(20, 122, 127, 0.35);
  background: #fff;
}

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

.slider-dot {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 122, 127, 0.2);
}

.slider-dot.is-active {
  background: var(--color-teal);
}

.intro-strip {
  position: relative;
  z-index: 8;
  margin-top: 56px;
}

.intro-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(18, 48, 52, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(18, 48, 52, 0.08);
  box-shadow: var(--shadow-soft);
}

.intro-strip__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intro-strip__grid > div {
  min-height: 156px;
  padding: 30px 32px;
  background: rgba(255, 255, 255, 0.96);
}

.intro-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.intro-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.intro-strip p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.85;
}

.section {
  padding: 124px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 102px);
  align-items: start;
}

.section-heading h2 {
  color: var(--color-ink);
  font-family: var(--font-jp);
  font-size: clamp(31px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.45;
}

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

.body-copy {
  color: var(--color-text);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.large-copy {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 2.08;
}

.small-copy {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.9;
}

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

.section--treatment,
.section--clinic,
.section--contact {
  background: var(--color-paper);
}

.cards {
  display: grid;
  gap: 22px;
}

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

.two-cards {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.treatment-card {
  min-height: 390px;
  padding: 36px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 122, 127, 0.26);
  box-shadow: 0 26px 56px rgba(18, 48, 52, 0.1);
}

.treatment-card--accent {
  color: #fff;
  background: linear-gradient(160deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  border-color: transparent;
}

.treatment-card--accent h3,
.treatment-card--accent .small-copy,
.treatment-card--accent .card-number {
  color: rgba(255, 255, 255, 0.88);
}

.card-number {
  margin: 0 0 20px;
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.treatment-card h3 {
  margin-bottom: 24px;
  font-size: clamp(21px, 2.4vw, 28px);
}

.section--walking {
  color: var(--color-text);
  background:
    radial-gradient(circle at 86% 12%, rgba(143, 207, 208, 0.26), transparent 30%),
    linear-gradient(180deg, #eef7f7 0%, #ffffff 100%);
}

.walking-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 102px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.walking-content .body-copy {
  color: var(--color-text);
}

.walking-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
}

.walking-detail-card {
  padding: 30px 32px;
  border: 1px solid rgba(20, 122, 127, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.walking-detail-card h3 {
  margin-bottom: 14px;
  color: var(--color-ink);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.48;
}

.walking-detail-card .small-copy {
  color: var(--color-text);
}

.walking-detail-card strong {
  color: var(--color-teal-dark);
  font-weight: 600;
  background: linear-gradient(transparent 62%, rgba(143, 207, 208, 0.32) 62%);
}

.walking-detail-card--accent {
  border-color: transparent;
  background: linear-gradient(160deg, rgba(20, 122, 127, 0.96) 0%, rgba(15, 84, 88, 0.98) 100%);
}

.walking-detail-card--accent h3,
.walking-detail-card--accent .small-copy,
.walking-detail-card--accent .card-number {
  color: rgba(255, 255, 255, 0.9);
}

.walking-detail-card--accent strong {
  color: #fff;
  background: linear-gradient(transparent 62%, rgba(255, 255, 255, 0.22) 62%);
}

.duration-card,
.pdf-card,
.boxed-copy {
  border: 1px solid rgba(20, 122, 127, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.duration-card {
  margin-top: 34px;
  padding: 30px 32px;
  position: relative;
  overflow: hidden;
}

.duration-card::after {
  content: "1 MONTH";
  position: absolute;
  right: 22px;
  bottom: -12px;
  color: rgba(20, 122, 127, 0.08);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.duration-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.duration-card p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-weight: 600;
}

.pdf-card {
  margin-top: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.pdf-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.pdf-card p {
  color: var(--color-muted);
}

.note {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
}

.section--insurance {
  background: #f6f8f8;
}

.boxed-copy {
  padding: 36px;
}

.info-list {
  margin: 0;
  border-top: 1px solid var(--color-line);
}

.info-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
}

.info-list dt {
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.info-list dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 600;
}

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

.access-box {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

.map-wrap {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: #dfeaea;
  box-shadow: var(--shadow-card);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.access-info {
  padding: 36px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.access-info h3 {
  margin-bottom: 16px;
  font-size: 28px;
}

.access-info p {
  color: var(--color-muted);
}

.section--contact {
  padding-bottom: 146px;
}

.contact-panel {
  padding: clamp(46px, 7vw, 82px);
  text-align: center;
  color: #fff;
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 16%, rgba(143, 207, 208, 0.42), transparent 26%),
    linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  box-shadow: 0 32px 84px rgba(20, 122, 127, 0.22);
}

.contact-panel .eyebrow,
.contact-panel h2,
.contact-panel p,
.contact-phone {
  color: #fff;
}

.contact-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.4vw, 62px);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-phone {
  display: block;
  margin: 20px 0 28px;
  font-size: clamp(34px, 5.2vw, 66px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.contact-panel .button--primary {
  color: var(--color-teal-dark);
  background: #fff;
  box-shadow: none;
}

.contact-panel .button--primary:hover {
  color: #fff;
  background: var(--color-ink);
}

.contact-panel .note {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 60px 0 36px;
  background: #0f2e32;
  color: #fff;
}

.site-footer__inner {
  width: min(100% - 48px, var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.site-footer .site-logo-main {
  color: #fff;
}

.site-footer .site-logo-sub,
.site-footer__brand p,
.footer-nav a,
.copyright {
  color: rgba(255, 255, 255, 0.68);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
  align-content: start;
  font-size: 14px;
  font-weight: 600;
}

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

.copyright {
  width: min(100% - 48px, var(--content));
  margin: 40px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.fixed-call {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 64px;
  padding: 10px 18px;
  color: #fff;
  background: var(--color-teal);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(20, 122, 127, 0.28);
  line-height: 1.25;
}

.fixed-call span {
  font-size: 11px;
  opacity: 0.82;
  letter-spacing: 0.1em;
}

.fixed-call strong {
  font-size: 18px;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 12px;
    font-size: 11px;
  }

  .header-tel {
    min-width: 150px;
    padding-inline: 14px;
  }

  .three-cards,
  .two-cards {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    min-height: auto;
  }

  .hero-slide__image {
    opacity: 1;
    top: calc(var(--header-height) + 10px);
    right: 28px;
    bottom: 54px;
    width: min(72vw, 880px);
    height: calc(100% - var(--header-height) - 64px);
  }

  .hero-slide__overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.76) 36%, rgba(255, 255, 255, 0.28) 56%, rgba(255, 255, 255, 0) 78%);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  body {
    line-height: 1.9;
  }

  .site-header__inner {
    width: min(100% - 30px, var(--wide));
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 26px 30px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 15px;
  }

  .header-tel {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .section-inner {
    width: min(100% - 32px, var(--content));
  }

  .hero {
    min-height: 780px;
    height: auto;
  }

  .hero-slide__image {
    inset: calc(var(--header-height) + 8px) 16px auto 16px;
    width: calc(100% - 32px);
    height: clamp(260px, 58vw, 390px);
    aspect-ratio: 16 / 9;
    border-radius: 26px;
    opacity: 1;
    z-index: 1;
  }

  .hero-slide__overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(245, 248, 248, 0) 0%, rgba(245, 248, 248, 0) 42%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 255, 255, 0.98) 100%);
  }

  .hero-slide__content {
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + clamp(260px, 58vw, 390px) + 38px);
  }

  .intro-strip {
    margin-top: 42px;
  }

  .intro-strip__grid {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .intro-strip__grid > div {
    min-height: auto;
  }

  .section {
    padding: 82px 0;
  }

  .two-column,
  .walking-layout,
  .access-box,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

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

  .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fixed-call {
    display: inline-flex;
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
    letter-spacing: 0.025em;
  }

  h1,
  h2,
  h3 {
    letter-spacing: 0.035em;
  }

  .site-logo-main {
    font-size: 21px;
  }

  .site-logo-sub {
    font-size: 10px;
  }

  .hero {
    min-height: 780px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .slider-dots {
    bottom: 24px;
  }

  .slider-dot {
    width: 30px;
  }

  .section-heading--center {
    text-align: left;
  }

  .treatment-card,
  .boxed-copy,
  .pdf-card,
  .duration-card,
  .access-info {
    padding: 25px;
    border-radius: 24px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 330px;
  }

  .contact-phone {
    word-break: keep-all;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* v1.1.4: SP hero CTA overlap fix */
@media (max-width: 860px) {
  .hero {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero-slider {
    position: relative;
    inset: auto;
    min-height: 0;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    min-height: 0;
    transition: none;
  }

  .hero-slide.is-active {
    display: block;
  }

  .hero-slide__image {
    position: relative;
    inset: auto;
    display: block;
    width: calc(100% - 32px);
    height: clamp(260px, 58vw, 390px);
    margin: calc(var(--header-height) + 8px) auto 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
  }

  .hero-slide--fallback {
    padding-top: calc(var(--header-height) + 8px);
  }

  .hero-slide__overlay {
    display: none;
  }

  .hero-slide__content {
    position: relative;
    z-index: 2;
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding-top: 38px;
    padding-bottom: 52px;
  }

  .hero-actions {
    position: relative;
    z-index: 3;
    margin-top: 34px;
    margin-bottom: 8px;
  }

  .slider-dots {
    position: static;
    left: auto;
    bottom: auto;
    justify-content: center;
    padding-bottom: 34px;
    transform: none;
  }

  .intro-strip {
    margin-top: 54px;
  }
}

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

  .hero-slide__content {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .hero-actions {
    margin-top: 30px;
    margin-bottom: 12px;
  }

  .slider-dots {
    padding-bottom: 38px;
  }

  .intro-strip {
    margin-top: 60px;
  }
}
