/* ============================================
   御器所いのうえ接骨院 LP Stylesheet (rev.2)
   Color Palette:
     Primary  : #0a3d62 (深い紺) - 信頼・専門性
     Accent   : #c0392b (深紅) - 緊急・行動喚起
     Yellow   : #ffd633 (明るい黄) - 上質感・強調
     Yellow-D : #f5b800 (山吹) - アクセント
     Light    : #fbf7ee (柔らかい背景)
     Text     : #2c2c2c
   ============================================ */

/* === Reset & Base === */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #2c2c2c;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all .25s ease; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* === Color Vars === */
:root {
  --c-primary: #0a3d62;
  --c-primary-dark: #062c47;
  --c-accent: #c0392b;
  --c-accent-dark: #962d22;
  --c-yellow: #ffd633;
  --c-yellow-dark: #f5b800;
  --c-light: #fbf7ee;
  --c-bg: #fafaf7;
  --c-text: #2c2c2c;
  --c-muted: #6b6b6b;
}

/* === Placeholder（準備中枠） === */
.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background:
    repeating-linear-gradient(
      45deg,
      #f0ece2 0,
      #f0ece2 14px,
      #f5f1e6 14px,
      #f5f1e6 28px
    );
  border: 2px dashed #b8a978;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #8a7a4a;
  padding: 24px;
}
.placeholder__label {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .1em;
  background: var(--c-yellow);
  color: var(--c-primary-dark);
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.placeholder__sub {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #6b5d36;
}
.placeholder--portrait { aspect-ratio: 3 / 4; min-height: 280px; }
.placeholder--portrait-lg { aspect-ratio: 3 / 4; min-height: 380px; }
.placeholder--portrait-md { aspect-ratio: 3 / 4; min-height: 320px; }
.placeholder--cert { aspect-ratio: 4 / 3; min-height: 260px; }
.placeholder--reason { height: 100%; min-height: 320px; }

/* === 緊急対応バー === */
.emergency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--c-accent);
  color: #fff;
  z-index: 1000;
  font-size: 14px;
  transition: transform .3s;
}
.emergency-bar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.emergency-bar__badge {
  background: #fff;
  color: var(--c-accent);
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
}
.emergency-bar__text { font-weight: 500; }
.emergency-bar__tel {
  margin-left: auto;
  background: var(--c-yellow);
  color: var(--c-primary-dark);
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.emergency-bar__tel:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,.2); }
@media (max-width: 768px) {
  .emergency-bar { font-size: 12px; }
  .emergency-bar__inner { padding: 6px 12px; gap: 8px; }
  .emergency-bar__text { display: none; }
}

/* === ヘッダー === */
.site-header {
  position: fixed;
  top: 38px; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: all .3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.site-header.is-scrolled { top: 0; }
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo { display: flex; flex-direction: column; line-height: 1.2; }
.site-logo__main {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: .04em;
}
.site-logo__sub {
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: .15em;
  margin-top: 2px;
}
.global-nav ul { display: flex; gap: 22px; align-items: center; }
.global-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
}
.global-nav a:not(.global-nav__cta):hover { color: var(--c-primary); }
.global-nav a:not(.global-nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--c-primary);
  transition: width .3s;
}
.global-nav a:not(.global-nav__cta):hover::after { width: 100%; }
.global-nav__cta {
  background: var(--c-accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.global-nav__cta:hover { background: var(--c-accent-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(192,57,43,.3); }

.hamburger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 2px;
  background: var(--c-primary);
  transition: all .3s;
}
.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.is-open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .global-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 80px 32px 32px;
    box-shadow: -10px 0 30px rgba(0,0,0,.1);
    transition: right .35s ease;
    overflow-y: auto;
  }
  .global-nav.is-open { right: 0; }
  .global-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .global-nav li { border-bottom: 1px solid #eee; }
  .global-nav a { display: block; padding: 16px 0; font-size: 15px; }
  .global-nav__cta { margin-top: 16px; text-align: center; justify-content: center; }
  .hamburger { display: block; z-index: 1001; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s;
  border: 2px solid transparent;
  line-height: 1.3;
}
.btn i { font-size: 20px; }
.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,61,98,.35); }
.btn--emergency {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(192,57,43,.35);
}
.btn--emergency:hover { background: var(--c-accent-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(192,57,43,.5); }
.btn--emergency-light {
  background: #fff;
  color: var(--c-accent);
}
.btn--emergency-light:hover { background: var(--c-yellow); color: var(--c-primary-dark); transform: translateY(-2px); }
.btn span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.btn small { font-size: 11px; opacity: .9; font-weight: 500; }
.btn strong { font-size: 24px; letter-spacing: .04em; }
.btn--large { padding: 22px 38px; font-size: 16px; }
.btn--large strong { font-size: 32px; }
.btn--block { width: 100%; justify-content: center; }

/* === Section Head === */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head__en {
  display: block;
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--c-yellow-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head__ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.4;
}
.section-head__copy {
  margin-top: 12px;
  font-size: 15px;
  color: var(--c-muted);
  font-weight: 500;
}
.section-head--light .section-head__en { color: var(--c-yellow); }
.section-head--light .section-head__ja { color: #fff; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 24px 60px;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a3d62 0%, #062c47 50%, #051f33 100%);
  z-index: -2;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255,214,51,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(192,57,43,.18) 0%, transparent 60%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.hero__main { min-width: 0; }
.hero__lead {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .22em;
  border: 1px solid rgba(255,214,51,.5);
  color: var(--c-yellow);
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 500;
}
.hero__title {
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 900;
}
.hero__title-line1 {
  display: block;
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 10px;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
  line-height: 1.25;
  white-space: nowrap;
}
.hero__title-line1 strong {
  color: var(--c-yellow);
  font-weight: 900;
}
.hero__title-line2 {
  display: block;
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 900;
  color: var(--c-yellow);
  letter-spacing: .02em;
  line-height: 1.05;
  margin-bottom: 4px;
  text-shadow: 0 4px 24px rgba(255,214,51,.3);
}
.hero__title-line2 em {
  font-style: normal;
  display: inline-block;
  position: relative;
}
.hero__title-line2 em:first-child::after {
  content: '×';
  margin: 0 .15em;
  color: rgba(255,255,255,.5);
  font-size: .7em;
  font-weight: 400;
  vertical-align: 0.15em;
}
.hero__title-line3 {
  display: inline-block;
  font-size: clamp(30px, 5.2vw, 60px);
  font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, transparent 55%, var(--c-accent) 55%);
  padding: 0 .15em;
  letter-spacing: .04em;
}
.hero__desc {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.7;
  margin-bottom: 18px;
  color: rgba(255,255,255,.95);
}
.hero__desc strong { color: var(--c-yellow); }

.hero__cta-block { margin-bottom: 18px; }
.hero__cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  background: var(--c-yellow);
  color: var(--c-primary-dark);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
  box-shadow: 0 4px 14px rgba(255,214,51,.4);
}
.hero__cta-call i { font-size: 18px; color: var(--c-accent); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 620px;
}
.hero__features li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 4px;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}
.hero__features i {
  display: block;
  font-size: 18px;
  color: var(--c-yellow);
  margin-bottom: 4px;
}

/* 顔写真スペース（右下） */
.hero__portrait {
  position: relative;
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 340px;
}
.hero__portrait .placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,214,51,.18) 0,
      rgba(255,214,51,.18) 14px,
      rgba(255,255,255,.08) 14px,
      rgba(255,255,255,.08) 28px
    );
  border-color: var(--c-yellow);
  color: var(--c-yellow);
}
.hero__portrait .placeholder__label {
  background: var(--c-yellow);
  color: var(--c-primary-dark);
}
.hero__portrait .placeholder__sub { color: rgba(255,255,255,.85); }
.hero__portrait-caption {
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-yellow);
  color: var(--c-primary-dark);
  padding: 6px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.hero__portrait-caption span { font-size: 11px; margin-right: 6px; }
.hero__portrait-caption strong { font-family: 'Noto Serif JP', serif; font-size: 18px; }
.hero__portrait-caption small { font-size: 10px; margin-left: 6px; letter-spacing: .05em; opacity: .8; }

@media (max-width: 900px) {
  .hero { height: auto; min-height: 100vh; padding: 100px 20px 50px; }
  .hero__inner { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .hero__lead, .hero__cta-block, .hero__title { text-align: center; }
  .hero__features { margin: 0 auto; }
  .hero__portrait { max-width: 200px; margin: 0 auto; }
  .hero__cta-call { display: inline-flex; }
  .hero__title-line1 { white-space: normal; }
}
@media (max-width: 640px) {
  .hero__features { grid-template-columns: repeat(2, 1fr); }
  .hero__title-line1 { font-size: clamp(22px, 6vw, 32px); }
  .hero__title-line2 { font-size: clamp(36px, 11vw, 56px); }
  .hero__title-line3 { font-size: clamp(26px, 8vw, 42px); }
}

.hero__open { margin-top: 24px; text-align: center; grid-column: 1/-1; }
.hero__open-badge {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-primary-dark);
  padding: 8px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
}

.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px;
}
.hero__scroll span {
  display: block;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* === Strengths === */
.strengths { padding: 100px 0; background: var(--c-bg); }
.strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.strength-card {
  background: #fff;
  padding: 48px 28px 36px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(10,61,98,.06);
  position: relative;
  text-align: center;
  border-top: 4px solid var(--c-primary);
  transition: transform .3s, box-shadow .3s;
}
.strength-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,61,98,.12); }
.strength-card--scoliosis { border-top-color: var(--c-yellow-dark); }
.strength-card__num {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 16px;
}
.strength-card--scoliosis .strength-card__num { background: var(--c-yellow-dark); }
.strength-card__icon {
  font-size: 44px;
  color: var(--c-yellow-dark);
  margin-bottom: 18px;
}
.strength-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 18px;
  line-height: 1.5;
}
.strength-card__text { font-size: 14.5px; line-height: 1.85; text-align: left; }
.strength-card__text strong { color: var(--c-accent); font-weight: 700; }

@media (max-width: 768px) {
  .strengths { padding: 70px 0; }
  .strengths__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* === CTA Mini（中間電話バナー） === */
.cta-mini {
  background: var(--c-yellow);
  padding: 40px 0;
}
.cta-mini__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}
.cta-mini__text {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--c-primary-dark);
  background: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.cta-mini__text i { color: var(--c-accent); margin-right: 8px; font-size: 1.1em; }
.cta-mini__call {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 900;
  color: var(--c-accent);
  letter-spacing: .04em;
  text-shadow: 0 2px 0 rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-mini__call::before {
  content: '\f0a4'; /* 右指差し */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--c-accent);
  font-size: 1.1em;
  animation: handRight 1.4s ease-in-out infinite;
}
@keyframes handRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
@media (max-width: 768px) {
  .cta-mini__inner { gap: 14px; }
  .cta-mini__call { font-size: 24px; }
}

/* === Scoliosis === */
.scoliosis {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, #08344f 100%);
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(255,214,51,.18);
}
.scoliosis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.04'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}
.scoliosis .container { position: relative; }
.scoliosis__intro {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 15.5px;
  line-height: 2;
  color: rgba(255,255,255,.95);
}
.scoliosis__intro strong { color: var(--c-yellow); }

.scoliosis__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.scoliosis__cert .placeholder { box-shadow: 0 16px 40px rgba(10,61,98,.12); }
.scoliosis__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 2px solid var(--c-yellow);
  padding: 10px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(245,184,0,.18);
}
.scoliosis__badge i { font-size: 32px; color: var(--c-yellow-dark); }
.scoliosis__badge small {
  display: block;
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: .15em;
  font-weight: 600;
}
.scoliosis__badge strong {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: var(--c-primary);
}
.scoliosis__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  color: var(--c-yellow);
  margin-bottom: 18px;
  line-height: 1.5;
}
.scoliosis__text { font-size: 15px; line-height: 1.95; margin-bottom: 14px; color: rgba(255,255,255,.95); }
.scoliosis__text strong { color: var(--c-yellow); font-weight: 700; }
.scoliosis__features {
  margin-top: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 20px 24px;
  border-radius: 6px;
  border-left: 4px solid var(--c-yellow);
}
.scoliosis__features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 0;
  color: rgba(255,255,255,.95);
}
.scoliosis__features i { color: var(--c-yellow); margin-top: 6px; }

.scoliosis__partner {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 36px 40px;
  color: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}
.scoliosis__partner-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: center;
}
.scoliosis__partner-icon {
  width: 80px; height: 80px;
  background: var(--c-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--c-primary-dark);
}
.scoliosis__partner h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  color: var(--c-yellow);
  margin-bottom: 10px;
}
.scoliosis__partner p { font-size: 14.5px; line-height: 1.9; color: rgba(255,255,255,.95); }
.scoliosis__partner strong { color: var(--c-yellow); }

@media (max-width: 900px) {
  .scoliosis { padding: 70px 0; }
  .scoliosis__grid { grid-template-columns: 1fr; gap: 28px; }
  .scoliosis__partner { padding: 28px 22px; }
  .scoliosis__partner-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .scoliosis__partner-icon { margin: 0 auto; }
}

/* === Worries === */
.worries {
  padding: 100px 0;
  background: linear-gradient(135deg, #08344f 0%, #051c2d 100%);
  color: #fff;
  position: relative;
}
.worries::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.04'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
}
.worries .container { position: relative; }
.worries__list {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.worries__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 16px;
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--c-yellow);
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.worries__list li strong { color: var(--c-yellow); font-weight: 700; }
.worries__list i { color: var(--c-yellow); font-size: 16px; flex-shrink: 0; }
.worries__msg { text-align: center; }
.worries__msg p {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.6;
}
.worries__msg strong { color: var(--c-yellow); }
.worries__msg-sub {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  margin-top: 12px;
  color: rgba(255,255,255,.8);
}
@media (max-width: 900px) {
  .worries__list li { font-size: 13.5px; padding: 9px 14px; }
}
@media (max-width: 768px) {
  .worries { padding: 70px 0; }
  .worries__list { grid-template-columns: 1fr; gap: 8px; }
  .worries__list li {
    white-space: normal;
    font-size: 13.5px;
    padding: 10px 14px;
    line-height: 1.5;
  }
}

/* === Reasons === */
.reasons {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(255,214,51,.18);
}
.reasons::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.04'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}
.reasons .container { position: relative; }
.reasons .section-head__en { color: var(--c-yellow); }
.reasons .section-head__ja { color: #fff; }
.reason-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}
.reason-block:last-child { margin-bottom: 0; }
.reason-block--reverse .reason-block__img { order: 2; }
.reason-block--reverse .reason-block__body { order: 1; }

.reason-block__img .placeholder {
  height: 380px;
  box-shadow: 0 20px 50px rgba(10,61,98,.18);
}
.reason-block__num {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .25em;
  background: var(--c-accent);
  padding: 5px 12px;
  border-radius: 4px;
}

.reason-block__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 22px;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.reason-block__title span {
  display: inline-block;
  background: var(--c-yellow);
  padding: 2px .25em;
  color: var(--c-primary-dark);
  border-radius: 3px;
  font-weight: 900;
  margin-bottom: 4px;
}
.reason-block__text {
  font-size: 15px;
  line-height: 1.95;
  margin-bottom: 14px;
  color: rgba(255,255,255,.95);
}
.reason-block__text strong { color: var(--c-yellow); font-weight: 700; }
.reason-block__list {
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
}
.reason-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  padding: 6px 0;
  color: rgba(255,255,255,.95);
}
.reason-block__list i { color: var(--c-yellow); margin-top: 6px; }
.addr-nowrap { white-space: nowrap; display: inline-block; }
.access__map-note { margin-top: 10px; font-size: 13px; text-align: right; }
.access__map-note a { color: var(--c-primary-dark); text-decoration: underline; }
.access__map-note a:hover { color: var(--c-accent); }

@media (max-width: 900px) {
  .reasons { padding: 70px 0; }
  .reason-block { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .reason-block--reverse .reason-block__img,
  .reason-block--reverse .reason-block__body { order: initial; }
  .reason-block__img .placeholder { height: 240px; min-height: 240px; }
}

/* === CTA Emergency === */
.cta-emergency {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}
.cta-emergency__lead {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: .05em;
}
.cta-emergency__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
}
.cta-emergency__text {
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.85;
}
.cta-emergency__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-emergency__call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-yellow);
  color: var(--c-primary-dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 18px);
  margin-bottom: 0;
  white-space: nowrap;
}
.cta-emergency__call i {
  font-size: 1.4em;
  color: var(--c-accent);
  animation: pointRight 1.2s ease-in-out infinite;
}
@keyframes pointRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
@media (max-width: 768px) {
  .cta-emergency__row { flex-direction: column; gap: 14px; }
  .cta-emergency__call i { animation: pointDown 1.2s ease-in-out infinite; }
  @keyframes pointDown {
    0%, 100% { transform: translateY(0) rotate(90deg); }
    50% { transform: translateY(8px) rotate(90deg); }
  }
}

/* === Flow === */
.flow { padding: 110px 0; background: var(--c-light); }
.flow__list { max-width: 880px; margin: 0 auto; }
.flow__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  background: #fff;
  padding: 28px 32px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(10,61,98,.06);
  position: relative;
  align-items: center;
}
.flow__item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -16px; left: 60px;
  width: 0; height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid #fff;
  filter: drop-shadow(0 4px 4px rgba(10,61,98,.06));
  z-index: 1;
}
.flow__step {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--c-yellow-dark);
  font-weight: 700;
  border-right: 1px solid #ece5cf;
  padding-right: 28px;
}
.flow__step strong {
  display: block;
  font-size: 38px;
  color: var(--c-primary);
  letter-spacing: 0;
  margin-top: 4px;
}
.flow__body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.flow__body p { font-size: 14.5px; line-height: 1.85; }
.flow__body strong { color: var(--c-accent); font-weight: 700; }

@media (max-width: 640px) {
  .flow { padding: 70px 0; }
  .flow__item { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
  .flow__step {
    border-right: none;
    border-bottom: 1px solid #ece5cf;
    padding: 0 0 12px;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .flow__step strong { display: inline; font-size: 28px; margin: 0; }
  .flow__item:not(:last-child)::after { left: 50%; transform: translateX(-50%); }
}

/* === Price === */
.price { padding: 110px 0; }
.price__note {
  max-width: 880px;
  margin: 0 auto 40px;
  background: var(--c-light);
  padding: 16px 22px;
  border-radius: 6px;
  border-left: 4px solid var(--c-yellow-dark);
  font-size: 14.5px;
}
.price__note i { color: var(--c-yellow-dark); margin-right: 8px; }
.price__note strong { color: var(--c-primary); }
.price__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.price__grid--two { max-width: 800px; margin: 0 auto; }
.price-card {
  background: #fff;
  border: 2px solid #ece5cf;
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--c-primary); }
.price-card--insurance { border-color: var(--c-primary); background: linear-gradient(135deg, #fff 0%, #f5faff 100%); }
.price-card--featured { border-color: var(--c-accent); background: linear-gradient(135deg, #fff 0%, #fdf5f3 100%); }
.price-card__badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--c-accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.price-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 4px;
}
.price-card__sub { font-size: 13px; color: var(--c-muted); margin-bottom: 18px; }
.price-card__amount {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1.3;
  margin-bottom: 4px;
}
.price-card__amount span {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  background: var(--c-light);
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 10px;
  vertical-align: middle;
  font-family: 'Noto Sans JP', sans-serif;
}
.price-card__amount small { font-size: 15px; font-weight: 500; }
.price-card__amount--small { font-size: 22px; }
.price-card__amount--small small { font-size: 13px; }
.price-card__note { font-size: 12px; color: var(--c-muted); margin-top: 10px; }

@media (max-width: 768px) {
  .price { padding: 70px 0; }
  .price__grid { grid-template-columns: 1fr; }
}

/* === Doctor === */
.doctor {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(255,214,51,.18);
}
.doctor::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.04'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}
.doctor .container { position: relative; }
.doctor .section-head__en { color: var(--c-yellow); }
.doctor .section-head__ja { color: #fff; }
.doctor__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.doctor__photo {
  position: sticky;
  top: 120px;
}
.doctor__role {
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--c-yellow);
  font-weight: 700;
  margin-bottom: 4px;
}
.doctor__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}
.doctor__name span { font-size: 16px; color: rgba(255,255,255,.7); margin-left: 12px; font-weight: 500; }
.doctor__greeting-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-yellow);
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 4px solid var(--c-yellow);
}
.doctor__text { font-size: 15px; line-height: 1.95; margin-bottom: 14px; color: rgba(255,255,255,.95); }
.doctor__text strong { color: var(--c-yellow); font-weight: 700; }
.doctor__info {
  margin-top: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  padding: 22px 26px;
  border-radius: 6px;
}
.doctor__info > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.15);
}
.doctor__info > div:last-child { border-bottom: none; }
.doctor__info dt { font-weight: 700; color: var(--c-yellow); font-size: 14px; }
.doctor__info dd { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.95); }

@media (max-width: 900px) {
  .doctor { padding: 70px 0; }
  .doctor__inner { grid-template-columns: 1fr; gap: 32px; }
  .doctor__photo { position: static; max-width: 320px; margin: 0 auto; }
}

/* === Staff === */
.staff {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(255,214,51,.18);
}
.staff::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.04'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}
.staff .container { position: relative; }
.staff .section-head__en { color: var(--c-yellow); }
.staff .section-head__ja { color: #fff; }
.staff__inner { max-width: 980px; margin: 0 auto; }
.staff-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
}
.staff-card__photo .placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  border-right: 2px dashed rgba(255,214,51,.5);
}
.staff-card__body { padding: 36px 38px; }
.staff-card__role {
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--c-yellow);
  font-weight: 700;
  margin-bottom: 4px;
}
.staff-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}
.staff-card__name span { font-size: 14px; color: rgba(255,255,255,.7); margin-left: 10px; font-weight: 500; }
.staff-card__info { margin-bottom: 24px; }
.staff-card__info > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,.15);
}
.staff-card__info dt { font-weight: 700; color: var(--c-yellow); font-size: 13px; }
.staff-card__info dd { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.95); }
.placeholder-text {
  display: inline-block;
  background: rgba(255,214,51,.12);
  border: 1px dashed rgba(255,214,51,.5);
  color: var(--c-yellow);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}
.staff-card__message {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--c-yellow);
  padding: 18px 22px;
  border-radius: 4px;
  color: rgba(255,255,255,.95);
}
.staff-card__message-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-yellow);
  margin-bottom: 8px;
}
.staff-card__message-body { line-height: 1.85; }

@media (max-width: 768px) {
  .staff { padding: 70px 0; }
  .staff-card { grid-template-columns: 1fr; }
  .staff-card__photo .placeholder { min-height: 320px; border-right: none; border-bottom: 2px dashed rgba(255,214,51,.5); }
  .staff-card__body { padding: 28px 22px; }
  .staff-card__info > div { grid-template-columns: 88px 1fr; gap: 10px; }
}

/* === Access === */
.access { padding: 110px 0; background: var(--c-bg); }
.access__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.access__map iframe { display: block; border-radius: 8px; box-shadow: 0 8px 24px rgba(10,61,98,.1); height: 100%; min-height: 420px; }
.access__info {
  background: #fff;
  padding: 32px 32px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(10,61,98,.06);
}
.access__info dl > div {
  padding: 14px 0;
  border-bottom: 1px dashed #ece5cf;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
}
.access__info dl > div:last-child { border-bottom: none; }
.access__info dt {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: var(--c-primary);
  font-size: 14px;
}
.access__info dd { font-size: 14px; line-height: 1.75; }
.access__info dd a { color: var(--c-accent); font-weight: 700; font-size: 18px; }
.access__info small { color: var(--c-muted); font-size: 12px; }

@media (max-width: 900px) {
  .access { padding: 70px 0; }
  .access__inner { grid-template-columns: 1fr; }
  .access__info dl > div { grid-template-columns: 90px 1fr; gap: 10px; }
}

/* === FAQ === */
.faq { padding: 110px 0; }
.faq__list { max-width: 880px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border: 1px solid #ece5cf;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq__item.is-open { box-shadow: 0 8px 24px rgba(10,61,98,.1); border-color: var(--c-primary); }
.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--c-primary);
  font-family: inherit;
}
.faq__q span {
  width: 36px; height: 36px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
.faq__q i { color: var(--c-primary); transition: transform .3s; }
.faq__item.is-open .faq__q i { transform: rotate(180deg); }
.faq__a {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq__item.is-open .faq__a { padding: 4px 24px 24px; max-height: 500px; }
.faq__a span {
  width: 36px; height: 36px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}
.faq__a p { font-size: 14.5px; line-height: 1.85; padding-top: 6px; }
@media (max-width: 768px) {
  .faq { padding: 70px 0; }
  .faq__q { padding: 16px 18px; font-size: 14.5px; grid-template-columns: 32px 1fr 20px; gap: 12px; }
  .faq__q span, .faq__a span { width: 30px; height: 30px; font-size: 13px; }
  .faq__a { grid-template-columns: 32px 1fr; gap: 12px; padding: 0 18px; }
  .faq__item.is-open .faq__a { padding: 4px 18px 20px; }
}

/* === Contact === */
.contact {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
}
.contact__intro { text-align: center; margin-bottom: 36px; font-size: 15px; line-height: 1.85; }
.contact__intro strong { color: var(--c-yellow); }

.contact__tel-block {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
}
.contact__tel-call {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-primary-dark);
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 24px;
  animation: bounce 2s infinite;
}
.contact__tel-call i { margin-right: 6px; }
.contact__tel-lead { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: rgba(255,255,255,.9); }
.contact__tel-lead i { color: var(--c-yellow); margin-right: 8px; }
.contact__tel-num {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.contact__tel-num:hover { color: var(--c-yellow); }
.contact__tel-note { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.85); }

@media (max-width: 768px) {
  .contact { padding: 70px 0; }
  .contact__tel-block { padding: 32px 22px; }
}

/* === Footer === */
.site-footer {
  background: #0a2236;
  color: #c8d4e0;
  padding: 60px 0 24px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.site-footer__sub { font-size: 13px; color: var(--c-yellow); margin: 4px 0 16px; letter-spacing: .08em; }
.site-footer__addr { font-size: 13px; line-height: 1.85; }
.site-footer__tel { margin-top: 12px; font-size: 18px; font-weight: 700; }
.site-footer__tel a { color: var(--c-yellow); }
.site-footer__tel i { margin-right: 6px; }
.site-footer__nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.site-footer__nav a { font-size: 13px; color: #c8d4e0; }
.site-footer__nav a:hover { color: var(--c-yellow); }
.site-footer__copy { text-align: center; font-size: 12px; color: #6c8095; margin-top: 24px; }
@media (max-width: 768px) {
  .site-footer__top { grid-template-columns: 1fr; }
}

/* === Floating CTA (Mobile) === */
.float-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 998;
  box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
.float-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-align: left;
}
.float-cta a i { font-size: 22px; }
.float-cta__tel { background: var(--c-accent); }
@media (max-width: 768px) {
  .float-cta { display: flex; }
  body { padding-bottom: 60px; }
}
