/* =====================================================================
   いろどり整形外科リハビリクリニック — Theme Stylesheet (.ortho-*)
   Active-Clinical: ディープスチール × アクティブターコイズ × サンセット
   medical カテゴリ 6 件目 / 既存 31 件と完全別軸
   ===================================================================== */

/* 1. RESET / BASE
   ===================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
}

/* 2. CSS VARIABLES
   ===================================================================== */
:root {
  /* Brand colors — Active-Clinical */
  --ortho-steel: #16365D;
  --ortho-steel-deep: #0F2645;
  --ortho-steel-pale: #E5EBF3;
  --ortho-steel-soft: #2E4A73;
  --ortho-teal: #14B8A6;
  --ortho-teal-deep: #0F8F87;
  --ortho-teal-pale: #E0F5F2;
  --ortho-teal-soft: #5BCBC2;
  --ortho-orange: #FB923C;
  --ortho-orange-deep: #EA7821;
  --ortho-orange-pale: #FFF1E5;
  --ortho-red: #EF4444;
  --ortho-red-deep: #C13F2E;
  --ortho-red-pale: #FEE7E5;
  --ortho-warning: #F59E0B;

  /* Neutrals */
  --ortho-bg: #F5F7FA;
  --ortho-cream: #FAF9F5;
  --ortho-white: #FFFFFF;
  --ortho-ink: #1F2A33;
  --ortho-ink-deep: #0E1620;
  --ortho-stone: #5A6470;
  --ortho-stone-l: #8C95A0;
  --ortho-line: #DDE2E8;
  --ortho-line-soft: #ECEFF3;

  /* Typography */
  --ortho-font-jp: "Noto Sans JP", sans-serif;
  --ortho-font-en: "Inter", system-ui, sans-serif;
  --ortho-font-display: "Inter", "Noto Sans JP", sans-serif;

  /* Sizes */
  --ortho-size-1: 0.78rem;
  --ortho-size-2: 0.88rem;
  --ortho-size-3: 1rem;
  --ortho-size-4: 1.125rem;
  --ortho-size-5: 1.32rem;
  --ortho-size-6: 1.6rem;
  --ortho-size-7: 2rem;
  --ortho-size-8: clamp(1.85rem, 4vw, 2.6rem);
  --ortho-size-hero: clamp(2.4rem, 6vw, 4.4rem);

  /* Spacing */
  --ortho-space-1: 4px;
  --ortho-space-2: 8px;
  --ortho-space-3: 16px;
  --ortho-space-4: 24px;
  --ortho-space-5: 32px;
  --ortho-space-6: 48px;
  --ortho-space-7: 64px;
  --ortho-space-8: 96px;

  /* Layout */
  --ortho-container: 1240px;
  --ortho-header-h: 80px;

  /* Radius */
  --ortho-radius-sm: 6px;
  --ortho-radius-md: 10px;
  --ortho-radius-lg: 16px;
  --ortho-radius-xl: 24px;
  --ortho-radius-pill: 999px;

  /* Shadows */
  --ortho-shadow-sm: 0 1px 3px rgba(22, 54, 93, 0.06), 0 1px 2px rgba(22, 54, 93, 0.04);
  --ortho-shadow-md: 0 4px 14px rgba(22, 54, 93, 0.08), 0 2px 4px rgba(22, 54, 93, 0.04);
  --ortho-shadow-lg: 0 14px 40px rgba(22, 54, 93, 0.12), 0 4px 8px rgba(22, 54, 93, 0.05);

  /* Transitions */
  --ortho-trans-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --ortho-trans: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --ortho-trans-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. BODY
   ===================================================================== */
.ortho-body {
  margin: 0;
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-3);
  line-height: 1.85;
  color: var(--ortho-ink);
  background: var(--ortho-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--ortho-ink);
}

p { margin: 0; }

/* word-break safety net */
.ortho-hero__title,
.ortho-greet__title,
.ortho-services__title,
.ortho-pain__title,
.ortho-bodymap__title,
.ortho-equip__title,
.ortho-doctors__title,
.ortho-process__title,
.ortho-sports__title,
.ortho-voice__title,
.ortho-news__title,
.ortho-facility__title,
.ortho-access__title,
.ortho-faq__title,
.ortho-cta__title,
.ortho-page-hero__title,
.ortho-page-cta__title,
.ortho-section-head__title {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.ortho-eyebrow {
  font-family: var(--ortho-font-en);
  font-weight: 600;
  font-size: var(--ortho-size-2);
  letter-spacing: 0.18em;
  color: var(--ortho-teal-deep);
  text-transform: uppercase;
  margin-bottom: var(--ortho-space-3);
  display: inline-block;
}

.ortho-eyebrow::before {
  content: "—";
  margin-right: var(--ortho-space-2);
  color: var(--ortho-teal);
}

/* 4. UTILITIES
   ===================================================================== */
.ortho-container {
  max-width: var(--ortho-container);
  margin: 0 auto;
  padding: 0 var(--ortho-space-5);
}

@media (max-width: 768px) {
  .ortho-container { padding: 0 var(--ortho-space-4); }
}

.ortho-section {
  padding: var(--ortho-space-8) 0;
}

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

.ortho-section--steel {
  background: var(--ortho-steel);
  color: var(--ortho-white);
}

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

.ortho-section-head {
  text-align: center;
  margin-bottom: var(--ortho-space-7);
}

.ortho-section-head__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-8);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: var(--ortho-space-3);
  letter-spacing: 0.005em;
}

.ortho-section-head__title em {
  font-style: normal;
  color: var(--ortho-teal-deep);
}

.ortho-section-head__lead {
  font-size: var(--ortho-size-4);
  line-height: 1.95;
  color: var(--ortho-stone);
  max-width: 720px;
  margin: 0 auto;
}

/* 5. BUTTONS
   ===================================================================== */
.ortho-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--ortho-radius-pill);
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-3);
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--ortho-trans);
  white-space: nowrap;
  min-width: 200px;
  border: 2px solid transparent;
}

.ortho-btn--primary {
  background: var(--ortho-orange);
  color: var(--ortho-white);
  box-shadow: 0 6px 18px rgba(251, 146, 60, 0.32);
}

.ortho-btn--primary:hover {
  background: var(--ortho-orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(251, 146, 60, 0.42);
}

.ortho-btn--steel {
  background: var(--ortho-steel);
  color: var(--ortho-white);
}

.ortho-btn--steel:hover {
  background: var(--ortho-steel-deep);
  transform: translateY(-2px);
}

.ortho-btn--teal {
  background: var(--ortho-teal);
  color: var(--ortho-white);
  box-shadow: 0 6px 18px rgba(20, 184, 166, 0.32);
}

.ortho-btn--teal:hover {
  background: var(--ortho-teal-deep);
  transform: translateY(-2px);
}

.ortho-btn--ghost {
  background: transparent;
  color: var(--ortho-steel);
  border-color: var(--ortho-steel);
}

.ortho-btn--ghost:hover {
  background: var(--ortho-steel);
  color: var(--ortho-white);
}

.ortho-btn--red {
  background: var(--ortho-red);
  color: var(--ortho-white);
}

.ortho-btn--red:hover {
  background: var(--ortho-red-deep);
}

.ortho-btn__arrow {
  transition: transform var(--ortho-trans-fast);
}

.ortho-btn:hover .ortho-btn__arrow {
  transform: translateX(4px);
}

/* 6. LOADER L29 — 骨格 SVG ライン + ジョイントピボット (新)
   ===================================================================== */
.ortho-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ortho-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--ortho-space-4);
  animation: orthoLoaderFade 0.5s 2.4s ease forwards;
}

.ortho-loader__skeleton {
  width: 80px;
  height: 130px;
  position: relative;
}

.ortho-loader__skeleton svg {
  width: 100%;
  height: 100%;
  stroke: var(--ortho-steel);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ortho-loader__skeleton svg path {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: orthoSkeletonDraw 1.4s ease forwards;
}

.ortho-loader__joint {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--ortho-teal);
  border-radius: 50%;
  opacity: 0;
  animation: orthoJointAppear 0.4s 1.4s ease forwards, orthoJointPulse 1.6s 1.8s ease-in-out infinite;
}

.ortho-loader__joint--neck    { top: 12%;  left: 50%; transform: translate(-50%, -50%); }
.ortho-loader__joint--shoulder { top: 24%;  left: 50%; transform: translate(-50%, -50%); }
.ortho-loader__joint--elbow   { top: 42%;  left: 30%; transform: translate(-50%, -50%); }
.ortho-loader__joint--hip     { top: 56%;  left: 50%; transform: translate(-50%, -50%); }
.ortho-loader__joint--knee    { top: 78%;  left: 40%; transform: translate(-50%, -50%); }

.ortho-loader__brand {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-5);
  font-weight: 700;
  color: var(--ortho-steel);
  opacity: 0;
  animation: orthoFadeUp 0.5s 2.0s ease forwards;
  letter-spacing: 0.04em;
  margin: 0;
}

.ortho-loader__sub {
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-size: var(--ortho-size-2);
  color: var(--ortho-teal-deep);
  letter-spacing: 0.18em;
  opacity: 0;
  animation: orthoFadeUp 0.5s 2.1s ease forwards;
  text-transform: uppercase;
  margin: 0;
}

@keyframes orthoSkeletonDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes orthoJointAppear {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes orthoJointPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(20, 184, 166, 0); }
}

@keyframes orthoFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes orthoLoaderFade {
  to { opacity: 0; visibility: hidden; }
}

@keyframes orthoSheen {
  0%   { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}

@keyframes orthoBadgePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* 7. HEADER (hamburger only per matrix)
   ===================================================================== */
.ortho-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ortho-header-h);
  background: var(--ortho-white);
  border-bottom: 1px solid var(--ortho-line-soft);
  z-index: 100;
  transition: box-shadow var(--ortho-trans);
}

.ortho-header.is-scrolled {
  box-shadow: 0 4px 14px rgba(22, 54, 93, 0.08);
}

.ortho-header__inner {
  max-width: 1480px;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--ortho-space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ortho-space-4);
}

.ortho-header__logo {
  display: flex;
  align-items: center;
  gap: var(--ortho-space-3);
  flex-shrink: 0;
}

.ortho-header__logo-mark {
  width: 44px;
  height: 44px;
  background: var(--ortho-steel);
  border-radius: var(--ortho-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ortho-white);
  font-weight: 800;
  position: relative;
}

.ortho-header__logo-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ortho-teal);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.ortho-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  white-space: nowrap;
}

.ortho-header__logo-jp {
  font-family: var(--ortho-font-jp);
  font-weight: 700;
  font-size: var(--ortho-size-3);
  color: var(--ortho-steel);
}

.ortho-header__logo-en {
  font-family: var(--ortho-font-en);
  font-weight: 500;
  font-size: var(--ortho-size-1);
  color: var(--ortho-stone-l);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ortho-header__actions {
  display: flex;
  align-items: center;
  gap: var(--ortho-space-3);
}

.ortho-header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
  white-space: nowrap;
  flex-shrink: 0;
}

.ortho-header__tel-label {
  font-family: var(--ortho-font-en);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--ortho-stone-l);
  text-transform: uppercase;
  white-space: nowrap;
}

.ortho-header__tel-num {
  font-family: var(--ortho-font-en);
  font-weight: 700;
  font-size: var(--ortho-size-4);
  color: var(--ortho-steel);
  font-feature-settings: "tnum";
  white-space: nowrap;
}

.ortho-header__cta {
  padding: 12px 22px;
  background: var(--ortho-orange);
  color: var(--ortho-white);
  border-radius: var(--ortho-radius-md);
  font-weight: 700;
  font-size: var(--ortho-size-2);
  transition: background var(--ortho-trans-fast), transform var(--ortho-trans-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.ortho-header__cta:hover {
  background: var(--ortho-orange-deep);
  transform: translateY(-1px);
}

.ortho-header__menu-btn {
  display: flex;
  flex-direction: column;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.ortho-header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ortho-steel);
  border-radius: 2px;
  transition: transform var(--ortho-trans), opacity var(--ortho-trans);
}

.ortho-header__menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ortho-header__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.ortho-header__menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 8. DRAWER
   ===================================================================== */
.ortho-drawer {
  position: fixed;
  top: var(--ortho-header-h);
  right: 0;
  width: 100%;
  max-width: 380px;
  height: calc(100vh - var(--ortho-header-h));
  background: var(--ortho-white);
  z-index: 99;
  padding: var(--ortho-space-6) var(--ortho-space-5);
  transform: translateX(100%);
  transition: transform var(--ortho-trans);
  border-left: 1px solid var(--ortho-line-soft);
  box-shadow: -10px 0 32px rgba(22, 54, 93, 0.08);
  overflow-y: auto;
}

.ortho-drawer.is-open {
  transform: translateX(0);
}

.ortho-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--ortho-space-2);
}

.ortho-drawer__nav a {
  padding: 14px var(--ortho-space-3);
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-4);
  font-weight: 600;
  color: var(--ortho-ink);
  border-radius: var(--ortho-radius-md);
  border-bottom: 1px solid var(--ortho-line-soft);
  transition: background var(--ortho-trans-fast), color var(--ortho-trans-fast);
}

.ortho-drawer__nav a:hover {
  background: var(--ortho-teal-pale);
  color: var(--ortho-teal-deep);
}

.ortho-drawer__nav a[aria-current="page"] {
  background: var(--ortho-steel-pale);
  color: var(--ortho-steel);
}

/* 9. ALERT BAR
   ===================================================================== */
.ortho-alert {
  background: linear-gradient(90deg, var(--ortho-steel) 0%, var(--ortho-steel-soft) 100%);
  color: var(--ortho-white);
  margin-top: var(--ortho-header-h);
  padding: 12px 0;
  border-bottom: 2px solid var(--ortho-orange);
}

.ortho-alert__inner {
  max-width: var(--ortho-container);
  margin: 0 auto;
  padding: 0 var(--ortho-space-5);
  display: flex;
  align-items: center;
  gap: var(--ortho-space-3);
  flex-wrap: wrap;
}

.ortho-alert__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ortho-orange);
}

.ortho-alert__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ortho-alert__label {
  font-family: var(--ortho-font-en);
  font-size: var(--ortho-size-1);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ortho-orange);
  background: rgba(251, 146, 60, 0.12);
  padding: 3px 10px;
  border-radius: var(--ortho-radius-sm);
}

.ortho-alert__text {
  font-size: var(--ortho-size-2);
  flex: 1;
  min-width: 240px;
}

.ortho-alert__link {
  font-size: var(--ortho-size-2);
  color: var(--ortho-orange);
  font-weight: 700;
  white-space: nowrap;
  transition: color var(--ortho-trans-fast);
}

.ortho-alert__link:hover {
  color: var(--ortho-white);
}

/* 10. HERO A:fullscreen
   ===================================================================== */
.ortho-hero {
  position: relative;
  min-height: calc(100vh - var(--ortho-header-h) - 50px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ortho-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ortho-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.95);
}

.ortho-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15, 38, 69, 0.85) 0%, rgba(22, 54, 93, 0.62) 55%, rgba(20, 184, 166, 0.18) 100%);
}

.ortho-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--ortho-container);
  margin: 0 auto;
  padding: var(--ortho-space-8) var(--ortho-space-5);
  width: 100%;
  color: var(--ortho-white);
}

.ortho-hero__copy {
  max-width: 760px;
}

.ortho-hero__eyebrow {
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-size: var(--ortho-size-3);
  letter-spacing: 0.22em;
  color: var(--ortho-teal);
  text-transform: uppercase;
  margin-bottom: var(--ortho-space-4);
  display: inline-block;
}

.ortho-hero__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-hero);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.01em;
  margin-bottom: var(--ortho-space-4);
  color: var(--ortho-white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.ortho-hero__title em {
  font-style: normal;
  color: var(--ortho-teal);
  text-decoration: underline wavy var(--ortho-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.ortho-hero__sub {
  font-size: var(--ortho-size-4);
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--ortho-space-6);
  max-width: 640px;
}

.ortho-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ortho-radius-lg);
  padding: var(--ortho-space-4);
  margin-bottom: var(--ortho-space-6);
  max-width: 880px;
}

.ortho-hero__stat {
  text-align: center;
  padding: var(--ortho-space-2);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.ortho-hero__stat:last-child { border-right: 0; }

.ortho-hero__stat-num {
  display: block;
  font-family: var(--ortho-font-en);
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  font-weight: 800;
  color: var(--ortho-teal);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.ortho-hero__stat-num small {
  font-size: 0.62em;
  font-weight: 600;
  margin-left: 3px;
}

.ortho-hero__stat-label {
  display: block;
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-1);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

.ortho-hero__btns {
  display: flex;
  gap: var(--ortho-space-3);
  flex-wrap: wrap;
}

.ortho-hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ortho-font-en);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  z-index: 2;
}

.ortho-hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--ortho-teal));
  animation: orthoScrollLine 2s ease-in-out infinite;
}

@keyframes orthoScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 11. PAIN SECTION (患者のお悩み 5)
   ===================================================================== */
.ortho-pain {
  background: var(--ortho-bg);
}

.ortho-pain__lead {
  text-align: center;
  font-size: var(--ortho-size-4);
  color: var(--ortho-stone);
  max-width: 720px;
  margin: 0 auto var(--ortho-space-6);
}

.ortho-pain__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--ortho-space-3);
}

.ortho-pain__card {
  background: var(--ortho-white);
  padding: var(--ortho-space-5) var(--ortho-space-4);
  border-radius: var(--ortho-radius-lg);
  border: 1px solid var(--ortho-line-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--ortho-trans), box-shadow var(--ortho-trans);
}

.ortho-pain__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ortho-teal), var(--ortho-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ortho-trans);
}

.ortho-pain__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ortho-shadow-md);
}

.ortho-pain__card:hover::before {
  transform: scaleX(1);
}

.ortho-pain__icon {
  width: 56px;
  height: 56px;
  background: var(--ortho-orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--ortho-space-3);
  color: var(--ortho-orange-deep);
}

.ortho-pain__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ortho-pain__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-4);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: var(--ortho-space-2);
}

.ortho-pain__text {
  font-size: var(--ortho-size-2);
  line-height: 1.85;
  color: var(--ortho-stone);
}

/* 12. GREETING (院長挨拶)
   ===================================================================== */
.ortho-greet {
  position: relative;
}

.ortho-greet__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--ortho-space-7);
  align-items: center;
}

.ortho-greet__copy {
  display: flex;
  flex-direction: column;
  gap: var(--ortho-space-3);
}

.ortho-greet__media {
  position: relative;
  border-radius: var(--ortho-radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.ortho-greet__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ortho-greet__name-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--ortho-white);
  padding: 12px 20px;
  border-radius: var(--ortho-radius-md);
  box-shadow: var(--ortho-shadow-md);
}

.ortho-greet__name {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-3);
  font-weight: 700;
  color: var(--ortho-steel);
  margin: 0;
}

.ortho-greet__role {
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-size: var(--ortho-size-1);
  color: var(--ortho-teal-deep);
  letter-spacing: 0.08em;
  margin: 0;
}

.ortho-greet__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-7);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: var(--ortho-space-4);
  line-height: 1.5;
}

.ortho-greet__title em {
  font-style: normal;
  color: var(--ortho-teal-deep);
}

.ortho-greet__text {
  font-size: var(--ortho-size-3);
  line-height: 2.05;
  color: var(--ortho-stone);
  margin: var(--ortho-space-3) 0;
}

.ortho-greet__sign {
  margin-top: var(--ortho-space-5);
  padding-top: var(--ortho-space-4);
  border-top: 1px solid var(--ortho-line-soft);
}

.ortho-greet__sign-name {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-5);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: 4px;
}

.ortho-greet__sign-license {
  font-family: var(--ortho-font-en);
  font-size: var(--ortho-size-1);
  color: var(--ortho-stone-l);
  letter-spacing: 0.04em;
}

/* 13. SERVICES 6
   ===================================================================== */
.ortho-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ortho-space-4);
}

.ortho-services__card {
  background: var(--ortho-white);
  padding: var(--ortho-space-5);
  border-radius: var(--ortho-radius-lg);
  border: 1px solid var(--ortho-line-soft);
  transition: all var(--ortho-trans);
  position: relative;
  overflow: hidden;
}

.ortho-services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ortho-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ortho-trans);
}

.ortho-services__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ortho-shadow-md);
  border-color: var(--ortho-teal-soft);
}

.ortho-services__card:hover::before {
  transform: scaleX(1);
}

.ortho-services__photo {
  position: relative;
  height: 200px;
  margin: calc(-1 * var(--ortho-space-5)) calc(-1 * var(--ortho-space-5)) var(--ortho-space-4);
  overflow: hidden;
  border-radius: var(--ortho-radius-lg) var(--ortho-radius-lg) 0 0;
  background: var(--ortho-bg);
}

.ortho-services__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ortho-services__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 38, 69, 0.18));
  pointer-events: none;
}

.ortho-services__card:hover .ortho-services__photo img {
  transform: scale(1.06);
}

/* generic inline SVG icon — replaces OS emoji per S1 rule */
.ortho-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.18em;
  flex-shrink: 0;
}

.ortho-icon svg {
  width: 100%;
  height: 100%;
}

.ortho-services__num {
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-weight: 600;
  font-size: var(--ortho-size-1);
  letter-spacing: 0.18em;
  color: var(--ortho-teal-deep);
  text-transform: uppercase;
  margin-bottom: var(--ortho-space-2);
  display: block;
}

.ortho-services__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-5);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: var(--ortho-space-3);
}

.ortho-services__text {
  font-size: var(--ortho-size-2);
  line-height: 1.95;
  color: var(--ortho-stone);
}

.ortho-services__list {
  margin-top: var(--ortho-space-3);
  padding-top: var(--ortho-space-3);
  border-top: 1px dashed var(--ortho-line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ortho-services__list li {
  font-size: 0.78rem;
  padding: 4px 10px;
  background: var(--ortho-teal-pale);
  color: var(--ortho-teal-deep);
  border-radius: var(--ortho-radius-pill);
  font-weight: 500;
}

/* 14. BODY MAP 12 (部位別マップ)
   ===================================================================== */
.ortho-bodymap__lead {
  text-align: center;
  font-size: var(--ortho-size-4);
  color: var(--ortho-stone);
  max-width: 720px;
  margin: 0 auto var(--ortho-space-6);
  line-height: 1.95;
}

.ortho-bodymap__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--ortho-space-6);
  align-items: center;
}

.ortho-bodymap__svg-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--ortho-steel-pale) 0%, var(--ortho-bg) 100%);
  border-radius: var(--ortho-radius-xl);
  padding: var(--ortho-space-6);
  aspect-ratio: 1 / 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ortho-bodymap__svg {
  width: 100%;
  height: 100%;
  max-width: 280px;
}

.ortho-bodymap__svg path {
  fill: none;
  stroke: var(--ortho-steel);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ortho-bodymap__pin {
  fill: var(--ortho-orange);
  stroke: var(--ortho-white);
  stroke-width: 2.4;
  cursor: pointer;
  transition: transform var(--ortho-trans-fast);
  transform-origin: center;
  transform-box: fill-box;
}

.ortho-bodymap__pin:hover {
  transform: scale(1.32);
  fill: var(--ortho-red);
}

.ortho-bodymap__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ortho-space-2);
}

.ortho-bodymap__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px var(--ortho-space-3);
  background: var(--ortho-white);
  border: 1px solid var(--ortho-line);
  border-radius: var(--ortho-radius-md);
  text-align: left;
  transition: all var(--ortho-trans-fast);
}

.ortho-bodymap__btn:hover {
  border-color: var(--ortho-teal);
  background: var(--ortho-teal-pale);
  transform: translateY(-2px);
  box-shadow: var(--ortho-shadow-sm);
}

.ortho-bodymap__btn-name {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-3);
  font-weight: 700;
  color: var(--ortho-steel);
}

.ortho-bodymap__btn-meta {
  font-family: var(--ortho-font-en);
  font-size: 0.7rem;
  color: var(--ortho-stone-l);
  letter-spacing: 0.04em;
}

/* 15. PAIN SCALE (VAS 0-10)
   ===================================================================== */
.ortho-vas {
  background: var(--ortho-steel);
  color: var(--ortho-white);
  border-radius: var(--ortho-radius-xl);
  padding: var(--ortho-space-7) var(--ortho-space-6);
  position: relative;
  overflow: hidden;
}

.ortho-vas::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 70%);
  top: -120px;
  right: -120px;
}

.ortho-vas__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.ortho-vas__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-7);
  font-weight: 700;
  color: var(--ortho-white);
  margin-bottom: var(--ortho-space-3);
  text-align: center;
}

.ortho-vas__lead {
  text-align: center;
  font-size: var(--ortho-size-3);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--ortho-space-5);
  line-height: 1.95;
}

.ortho-vas__scale {
  position: relative;
  height: 12px;
  background: linear-gradient(90deg, var(--ortho-teal) 0%, var(--ortho-warning) 50%, var(--ortho-red) 100%);
  border-radius: var(--ortho-radius-pill);
  margin: var(--ortho-space-7) 0 var(--ortho-space-5);
}

.ortho-vas__scale-marks {
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--ortho-font-en);
  font-size: var(--ortho-size-2);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.ortho-vas__scale-labels {
  position: absolute;
  bottom: -36px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.ortho-vas__guide {
  margin-top: var(--ortho-space-7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ortho-space-3);
}

.ortho-vas__guide-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ortho-radius-md);
  padding: var(--ortho-space-3);
}

.ortho-vas__guide-range {
  font-family: var(--ortho-font-en);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ortho-teal);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.ortho-vas__guide-title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-3);
  font-weight: 700;
  margin-bottom: 4px;
}

.ortho-vas__guide-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* 16. EQUIPMENT 6
   ===================================================================== */
.ortho-equip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ortho-space-4);
}

.ortho-equip__card {
  background: var(--ortho-white);
  border: 1px solid var(--ortho-line-soft);
  border-radius: var(--ortho-radius-lg);
  overflow: hidden;
  transition: all var(--ortho-trans);
}

.ortho-equip__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ortho-shadow-md);
  border-color: var(--ortho-teal-soft);
}

.ortho-equip__photo {
  height: 180px;
  overflow: hidden;
  background: var(--ortho-bg);
}

.ortho-equip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ortho-equip__card:hover .ortho-equip__photo img {
  transform: scale(1.05);
}

.ortho-equip__body {
  padding: var(--ortho-space-4);
}

.ortho-equip__num {
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-size: var(--ortho-size-1);
  letter-spacing: 0.18em;
  color: var(--ortho-orange-deep);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.ortho-equip__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-4);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: 6px;
}

.ortho-equip__text {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--ortho-stone);
}

/* 17. DOCTORS 4
   ===================================================================== */
.ortho-doctors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ortho-space-4);
}

.ortho-doctor {
  background: var(--ortho-white);
  border-radius: var(--ortho-radius-lg);
  overflow: hidden;
  border: 1px solid var(--ortho-line-soft);
  transition: all var(--ortho-trans);
}

.ortho-doctor:hover {
  transform: translateY(-4px);
  box-shadow: var(--ortho-shadow-md);
}

.ortho-doctor__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ortho-doctor__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ortho-doctor:hover .ortho-doctor__media img {
  transform: scale(1.04);
}

.ortho-doctor__role {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ortho-steel);
  color: var(--ortho-white);
  font-family: var(--ortho-font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: var(--ortho-radius-sm);
  text-transform: uppercase;
}

.ortho-doctor__role--teal { background: var(--ortho-teal); }
.ortho-doctor__role--orange { background: var(--ortho-orange); }

.ortho-doctor__body {
  padding: var(--ortho-space-4);
}

.ortho-doctor__name {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-5);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: 4px;
}

.ortho-doctor__name-en {
  font-family: var(--ortho-font-en);
  font-size: 0.8rem;
  color: var(--ortho-stone-l);
  letter-spacing: 0.06em;
  margin-bottom: var(--ortho-space-3);
}

.ortho-doctor__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: var(--ortho-space-3);
}

.ortho-doctor__spec li {
  font-size: 0.72rem;
  padding: 2px 8px;
  background: var(--ortho-teal-pale);
  color: var(--ortho-teal-deep);
  border-radius: var(--ortho-radius-pill);
  font-weight: 500;
}

.ortho-doctor__cred {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--ortho-stone);
}

/* 18. CALENDAR (診療担当表)
   ===================================================================== */
.ortho-cal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--ortho-space-4);
  flex-wrap: wrap;
  gap: var(--ortho-space-3);
}

.ortho-cal__head-title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-5);
  font-weight: 700;
  color: var(--ortho-steel);
}

.ortho-cal__legend {
  display: flex;
  gap: var(--ortho-space-3);
  flex-wrap: wrap;
}

.ortho-cal__legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--ortho-stone);
}

.ortho-cal__legend-mark {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ortho-radius-sm);
  font-family: var(--ortho-font-en);
  font-weight: 700;
  font-size: 0.78rem;
}

.ortho-cal__legend-mark--ok      { background: var(--ortho-teal-pale); color: var(--ortho-teal-deep); }
.ortho-cal__legend-mark--am      { background: var(--ortho-steel-pale); color: var(--ortho-steel); }
.ortho-cal__legend-mark--closed  { background: var(--ortho-red-pale); color: var(--ortho-red-deep); }

.ortho-cal__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ortho-white);
  border-radius: var(--ortho-radius-md);
  overflow: hidden;
  border: 1px solid var(--ortho-line);
}

.ortho-cal__table th,
.ortho-cal__table td {
  padding: 14px 8px;
  text-align: center;
  border-bottom: 1px solid var(--ortho-line-soft);
  border-right: 1px solid var(--ortho-line-soft);
  font-size: 0.85rem;
}

.ortho-cal__table th:last-child,
.ortho-cal__table td:last-child { border-right: 0; }

.ortho-cal__table thead th {
  background: var(--ortho-steel);
  color: var(--ortho-white);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ortho-cal__table tbody th {
  background: var(--ortho-bg);
  color: var(--ortho-steel);
  font-weight: 700;
  text-align: left;
  padding-left: var(--ortho-space-3);
}

.ortho-cal__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--ortho-radius-sm);
  font-family: var(--ortho-font-en);
  font-weight: 700;
  font-size: 0.85rem;
}

.ortho-cal__mark--ok      { background: var(--ortho-teal-pale); color: var(--ortho-teal-deep); }
.ortho-cal__mark--am      { background: var(--ortho-steel-pale); color: var(--ortho-steel); }
.ortho-cal__mark--closed  { background: var(--ortho-red-pale); color: var(--ortho-red-deep); }

.ortho-cal__note {
  margin-top: var(--ortho-space-4);
  padding: var(--ortho-space-3);
  background: var(--ortho-cream);
  border-left: 3px solid var(--ortho-orange);
  border-radius: var(--ortho-radius-sm);
  font-size: 0.85rem;
  color: var(--ortho-stone);
  line-height: 1.85;
}

/* 19. PROCESS 4 step
   ===================================================================== */
.ortho-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ortho-space-4);
  position: relative;
}

.ortho-process__grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--ortho-teal) 0%, var(--ortho-orange) 100%);
  z-index: 0;
}

.ortho-process__card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ortho-process__step {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--ortho-space-3);
  background: var(--ortho-white);
  border: 3px solid var(--ortho-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ortho-font-en);
  font-size: var(--ortho-size-5);
  font-weight: 800;
  color: var(--ortho-teal-deep);
  position: relative;
}

.ortho-process__step-label {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ortho-teal);
  color: var(--ortho-white);
  font-family: var(--ortho-font-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 2px 8px;
  border-radius: var(--ortho-radius-sm);
  text-transform: uppercase;
  white-space: nowrap;
}

.ortho-process__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-4);
  font-weight: 700;
  color: var(--ortho-steel);
  margin: var(--ortho-space-3) 0 var(--ortho-space-2);
}

.ortho-process__text {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--ortho-stone);
}

/* 20. SPORTS SPECIALTY
   ===================================================================== */
.ortho-sports {
  background: linear-gradient(135deg, var(--ortho-steel) 0%, var(--ortho-steel-deep) 100%);
  color: var(--ortho-white);
  position: relative;
  overflow: hidden;
}

.ortho-sports::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.18), transparent 70%);
  top: -160px;
  left: -160px;
}

.ortho-sports::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.18), transparent 70%);
  bottom: -160px;
  right: -160px;
}

.ortho-sports .ortho-section-head__title {
  color: var(--ortho-white);
}

.ortho-sports .ortho-section-head__title em {
  color: var(--ortho-teal);
}

.ortho-sports .ortho-section-head__lead {
  color: rgba(255, 255, 255, 0.85);
}

.ortho-sports__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ortho-space-3);
  position: relative;
  z-index: 1;
}

.ortho-sports__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ortho-radius-lg);
  padding: var(--ortho-space-5);
  backdrop-filter: blur(8px);
  transition: all var(--ortho-trans);
}

.ortho-sports__card:hover {
  background: rgba(20, 184, 166, 0.12);
  border-color: var(--ortho-teal);
  transform: translateY(-3px);
}

.ortho-sports__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ortho-teal);
  margin-bottom: var(--ortho-space-3);
}

.ortho-sports__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ortho-sports__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-5);
  font-weight: 700;
  color: var(--ortho-white);
  margin-bottom: var(--ortho-space-2);
}

.ortho-sports__text {
  font-size: 0.85rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.85);
}

.ortho-sports__list {
  margin-top: var(--ortho-space-3);
  padding-top: var(--ortho-space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ortho-sports__list li {
  font-size: 0.72rem;
  padding: 2px 8px;
  background: rgba(20, 184, 166, 0.18);
  color: var(--ortho-teal);
  border-radius: var(--ortho-radius-pill);
}

/* 21. VOICE 4 (患者の声)
   ===================================================================== */
.ortho-voice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ortho-space-4);
}

.ortho-voice__card {
  background: var(--ortho-white);
  border: 1px solid var(--ortho-line-soft);
  border-radius: var(--ortho-radius-lg);
  padding: var(--ortho-space-5);
  position: relative;
  transition: box-shadow var(--ortho-trans);
}

.ortho-voice__card:hover {
  box-shadow: var(--ortho-shadow-md);
}

.ortho-voice__quote {
  font-size: 5rem;
  line-height: 1;
  font-family: var(--ortho-font-en);
  color: var(--ortho-teal-pale);
  font-weight: 800;
  position: absolute;
  top: 16px;
  right: 22px;
}

.ortho-voice__meta {
  display: flex;
  align-items: center;
  gap: var(--ortho-space-3);
  margin-bottom: var(--ortho-space-3);
}

.ortho-voice__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ortho-steel-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ortho-font-en);
  font-weight: 700;
  color: var(--ortho-steel);
}

.ortho-voice__profile {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-3);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: 2px;
}

.ortho-voice__symptom {
  font-size: 0.78rem;
  color: var(--ortho-stone-l);
}

.ortho-voice__vas {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ortho-teal-pale);
  padding: 4px 12px;
  border-radius: var(--ortho-radius-pill);
  font-family: var(--ortho-font-en);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ortho-teal-deep);
  margin-bottom: var(--ortho-space-3);
}

.ortho-voice__vas-arrow {
  color: var(--ortho-orange);
}

.ortho-voice__text {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--ortho-stone);
}

.ortho-voice__disclaimer {
  margin-top: var(--ortho-space-4);
  text-align: center;
  font-size: 0.72rem;
  color: var(--ortho-stone-l);
}

/* 22. NEWS 3
   ===================================================================== */
.ortho-news__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--ortho-space-5);
  flex-wrap: wrap;
  gap: var(--ortho-space-3);
}

.ortho-news__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-7);
  font-weight: 700;
  color: var(--ortho-steel);
}

.ortho-news__title em {
  font-style: normal;
  color: var(--ortho-teal-deep);
}

.ortho-news__more {
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-size: var(--ortho-size-2);
  color: var(--ortho-teal-deep);
  border-bottom: 1px solid var(--ortho-teal);
  padding-bottom: 2px;
  letter-spacing: 0.06em;
}

.ortho-news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ortho-news__item {
  display: grid;
  grid-template-columns: 200px 1fr 32px;
  gap: var(--ortho-space-4);
  padding: var(--ortho-space-4) 0;
  border-bottom: 1px solid var(--ortho-line-soft);
  align-items: center;
  transition: background var(--ortho-trans-fast);
}

.ortho-news__item:hover {
  background: var(--ortho-cream);
}

.ortho-news__item-meta {
  display: flex;
  align-items: center;
  gap: var(--ortho-space-3);
}

.ortho-news__item-cat {
  font-family: var(--ortho-font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--ortho-radius-sm);
}

.ortho-news__item-cat--column { background: var(--ortho-teal-pale); color: var(--ortho-teal-deep); }
.ortho-news__item-cat--info   { background: var(--ortho-steel-pale); color: var(--ortho-steel); }
.ortho-news__item-cat--alert  { background: var(--ortho-orange-pale); color: var(--ortho-orange-deep); }

.ortho-news__item-meta time {
  font-family: var(--ortho-font-en);
  font-size: 0.85rem;
  color: var(--ortho-stone-l);
  letter-spacing: 0.04em;
}

.ortho-news__item-title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-3);
  font-weight: 600;
  color: var(--ortho-ink);
  line-height: 1.65;
  margin: 0;
}

.ortho-news__item-arrow {
  font-family: var(--ortho-font-en);
  color: var(--ortho-teal);
  font-size: 1.2rem;
  transition: transform var(--ortho-trans-fast);
}

.ortho-news__item:hover .ortho-news__item-arrow {
  transform: translateX(4px);
}

/* 23. FACILITY 4 photos
   ===================================================================== */
.ortho-facility__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--ortho-space-3);
}

.ortho-facility__item {
  margin: 0;
  border-radius: var(--ortho-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
}

.ortho-facility__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ortho-facility__item:hover img {
  transform: scale(1.06);
}

.ortho-facility__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: linear-gradient(0deg, rgba(15, 38, 69, 0.85), transparent);
  color: var(--ortho-white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* 24. ACCESS
   ===================================================================== */
.ortho-access__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--ortho-space-5);
  align-items: stretch;
}

.ortho-access__map {
  background: var(--ortho-bg);
  border-radius: var(--ortho-radius-xl);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ortho-font-en);
  font-style: italic;
  color: var(--ortho-stone);
  font-size: var(--ortho-size-4);
}

.ortho-access__panel {
  background: var(--ortho-steel);
  color: var(--ortho-white);
  border-radius: var(--ortho-radius-xl);
  padding: var(--ortho-space-6);
}

.ortho-access__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-6);
  font-weight: 700;
  color: var(--ortho-white);
  margin-bottom: var(--ortho-space-4);
  padding-bottom: var(--ortho-space-3);
  border-bottom: 2px solid var(--ortho-teal);
}

.ortho-access__title em {
  font-style: normal;
  color: var(--ortho-teal);
}

.ortho-access__list {
  display: flex;
  flex-direction: column;
  gap: var(--ortho-space-3);
}

.ortho-access__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--ortho-space-3);
  padding-bottom: var(--ortho-space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ortho-access__row:last-child { border-bottom: 0; padding-bottom: 0; }

.ortho-access__row-label {
  font-family: var(--ortho-font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ortho-teal);
}

.ortho-access__row-val {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.ortho-access__row-val small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* 25. FAQ
   ===================================================================== */
.ortho-faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--ortho-space-2);
}

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

.ortho-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--ortho-space-4);
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-3);
  font-weight: 700;
  color: var(--ortho-steel);
  text-align: left;
  transition: background var(--ortho-trans-fast);
}

.ortho-faq__q:hover {
  background: var(--ortho-bg);
}

.ortho-faq__icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
  margin-left: var(--ortho-space-3);
}

.ortho-faq__icon::before,
.ortho-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ortho-teal);
  border-radius: 1px;
  inset: 0;
  margin: auto;
  transition: transform var(--ortho-trans);
}

.ortho-faq__icon::before { width: 14px; height: 2px; }
.ortho-faq__icon::after  { width: 2px; height: 14px; }

.ortho-faq__item.is-open .ortho-faq__icon::after {
  transform: rotate(90deg);
}

.ortho-faq__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--ortho-space-4);
  color: var(--ortho-stone);
  font-size: 0.92rem;
  line-height: 2;
  transition: max-height var(--ortho-trans), padding var(--ortho-trans);
}

.ortho-faq__item.is-open .ortho-faq__a {
  max-height: 600px;
  padding: 0 var(--ortho-space-4) var(--ortho-space-4);
}

/* 26. PAGE HERO (sub pages)
   ===================================================================== */
.ortho-page-hero {
  position: relative;
  margin-top: var(--ortho-header-h);
  height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ortho-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ortho-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
}

.ortho-page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 38, 69, 0.82) 0%, rgba(22, 54, 93, 0.62) 100%);
}

.ortho-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--ortho-container);
  margin: 0 auto;
  padding: 0 var(--ortho-space-5);
  color: var(--ortho-white);
}

.ortho-page-hero__eyebrow {
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-size: var(--ortho-size-3);
  letter-spacing: 0.18em;
  color: var(--ortho-teal);
  text-transform: uppercase;
  margin-bottom: var(--ortho-space-2);
  display: inline-block;
}

.ortho-page-hero__title {
  font-family: var(--ortho-font-jp);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.005em;
  color: var(--ortho-white);
  margin-bottom: var(--ortho-space-2);
  text-shadow: 0 4px 18px rgba(0, 25, 60, 0.5);
}

.ortho-page-hero__sub {
  font-size: var(--ortho-size-3);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
}

.ortho-bread {
  background: var(--ortho-bg);
  padding: var(--ortho-space-3) 0;
  border-bottom: 1px solid var(--ortho-line-soft);
}

.ortho-bread__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ortho-space-2);
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-size: var(--ortho-size-2);
  color: var(--ortho-stone);
}

.ortho-bread__list a { color: var(--ortho-steel); }
.ortho-bread__list a:hover { color: var(--ortho-teal-deep); }
.ortho-bread__sep { color: var(--ortho-stone-l); }

/* 27. PROSE (article body)
   ===================================================================== */
.ortho-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: var(--ortho-size-3);
  line-height: 2;
  color: var(--ortho-stone);
}

.ortho-prose h2 {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-6);
  font-weight: 700;
  color: var(--ortho-steel);
  margin: var(--ortho-space-7) 0 var(--ortho-space-4);
  padding-left: var(--ortho-space-3);
  border-left: 4px solid var(--ortho-teal);
}

.ortho-prose h3 {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-5);
  font-weight: 700;
  color: var(--ortho-steel-deep);
  margin: var(--ortho-space-5) 0 var(--ortho-space-3);
}

.ortho-prose p { margin: var(--ortho-space-3) 0; }
.ortho-prose strong { color: var(--ortho-steel-deep); }

.ortho-prose ul,
.ortho-prose ol {
  margin: var(--ortho-space-3) 0;
  padding-left: var(--ortho-space-5);
}

.ortho-prose ul { list-style: disc; }
.ortho-prose ol { list-style: decimal; }

.ortho-prose li { margin: 6px 0; }

.ortho-prose a {
  color: var(--ortho-teal-deep);
  border-bottom: 1px solid var(--ortho-teal);
  font-weight: 600;
}

.ortho-prose blockquote {
  margin: var(--ortho-space-5) 0;
  padding: var(--ortho-space-4) var(--ortho-space-5);
  background: var(--ortho-teal-pale);
  border-left: 4px solid var(--ortho-teal);
  border-radius: 0 var(--ortho-radius-md) var(--ortho-radius-md) 0;
  font-size: var(--ortho-size-4);
  font-style: italic;
  color: var(--ortho-steel-deep);
}

.ortho-prose blockquote cite {
  display: block;
  margin-top: var(--ortho-space-2);
  font-style: normal;
  font-size: var(--ortho-size-2);
  color: var(--ortho-stone);
}

.ortho-callout {
  margin: var(--ortho-space-5) 0;
  padding: var(--ortho-space-5);
  background: var(--ortho-orange-pale);
  border-left: 4px solid var(--ortho-orange);
  border-radius: 0 var(--ortho-radius-md) var(--ortho-radius-md) 0;
}

.ortho-callout__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-4);
  font-weight: 700;
  color: var(--ortho-orange-deep);
  margin-bottom: var(--ortho-space-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ortho-callout__text {
  font-size: var(--ortho-size-2);
  line-height: 1.95;
  color: var(--ortho-ink);
}

.ortho-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--ortho-space-4) 0;
  background: var(--ortho-white);
  border-radius: var(--ortho-radius-md);
  overflow: hidden;
  border: 1px solid var(--ortho-line-soft);
}

.ortho-table th,
.ortho-table td {
  padding: var(--ortho-space-3);
  text-align: left;
  font-size: var(--ortho-size-2);
  border-bottom: 1px solid var(--ortho-line-soft);
}

.ortho-table th {
  background: var(--ortho-steel);
  color: var(--ortho-white);
  font-weight: 700;
}

.ortho-table tr:nth-child(even) td {
  background: var(--ortho-bg);
}

/* 28. FORMS
   ===================================================================== */
.ortho-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: var(--ortho-space-4);
}

.ortho-form__row {
  display: grid;
  gap: var(--ortho-space-2);
}

.ortho-form__row--two {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .ortho-form__row--two { grid-template-columns: 1fr; }
}

.ortho-form__label {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-3);
  font-weight: 700;
  color: var(--ortho-steel);
  display: flex;
  align-items: center;
  gap: var(--ortho-space-2);
}

.ortho-form__label-req {
  background: var(--ortho-red);
  color: var(--ortho-white);
  padding: 1px 8px;
  border-radius: var(--ortho-radius-sm);
  font-family: var(--ortho-font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ortho-form__input,
.ortho-form__textarea,
.ortho-form__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ortho-line);
  border-radius: var(--ortho-radius-md);
  font-size: var(--ortho-size-3);
  background: var(--ortho-white);
  color: var(--ortho-ink);
  transition: border-color var(--ortho-trans-fast), box-shadow var(--ortho-trans-fast);
}

.ortho-form__input:focus,
.ortho-form__textarea:focus,
.ortho-form__select:focus {
  outline: 0;
  border-color: var(--ortho-teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}

.ortho-form__textarea {
  min-height: 160px;
  resize: vertical;
}

.ortho-form__check {
  display: flex;
  align-items: flex-start;
  gap: var(--ortho-space-2);
  font-size: var(--ortho-size-2);
  color: var(--ortho-stone);
}

.ortho-form__check input { margin-top: 4px; }

.ortho-form__submit {
  background: var(--ortho-orange);
  color: var(--ortho-white);
  border: 0;
  padding: 16px var(--ortho-space-5);
  border-radius: var(--ortho-radius-pill);
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-4);
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: background var(--ortho-trans-fast), transform var(--ortho-trans-fast);
}

.ortho-form__submit:hover {
  background: var(--ortho-orange-deep);
  transform: translateY(-2px);
}

/* 29. PAGE CTA
   ===================================================================== */
.ortho-page-cta {
  background: var(--ortho-bg);
  border: 1px solid var(--ortho-line-soft);
  border-radius: var(--ortho-radius-xl);
  padding: var(--ortho-space-7) var(--ortho-space-5);
  text-align: center;
  margin: var(--ortho-space-7) 0;
}

.ortho-page-cta__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-7);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: var(--ortho-space-3);
}

.ortho-page-cta__title em {
  font-style: normal;
  color: var(--ortho-teal-deep);
}

.ortho-page-cta__text {
  font-size: var(--ortho-size-3);
  line-height: 1.95;
  color: var(--ortho-stone);
  max-width: 640px;
  margin: 0 auto var(--ortho-space-5);
}

.ortho-page-cta__btns {
  display: flex;
  justify-content: center;
  gap: var(--ortho-space-3);
  flex-wrap: wrap;
}

/* 30. GENERIC GRID / CARD
   ===================================================================== */
.ortho-grid { display: grid; gap: var(--ortho-space-4); }
.ortho-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ortho-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ortho-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ortho-card {
  background: var(--ortho-white);
  padding: var(--ortho-space-5);
  border-radius: var(--ortho-radius-lg);
  border: 1px solid var(--ortho-line-soft);
  box-shadow: var(--ortho-shadow-sm);
  transition: transform var(--ortho-trans), box-shadow var(--ortho-trans);
}

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

.ortho-card__num {
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-size: var(--ortho-size-2);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ortho-teal-deep);
  display: block;
  margin-bottom: var(--ortho-space-2);
  text-transform: uppercase;
}

.ortho-card__title {
  font-family: var(--ortho-font-jp);
  font-size: var(--ortho-size-5);
  font-weight: 700;
  color: var(--ortho-steel);
  margin-bottom: var(--ortho-space-3);
  line-height: 1.55;
}

.ortho-card__text {
  font-size: var(--ortho-size-2);
  line-height: 1.95;
  color: var(--ortho-stone);
}

/* 31. CTA bottom band
   ===================================================================== */
.ortho-cta {
  background: linear-gradient(135deg, var(--ortho-steel) 0%, var(--ortho-steel-deep) 100%);
  color: var(--ortho-white);
  text-align: center;
  padding: var(--ortho-space-8) 0;
  position: relative;
  overflow: hidden;
}

.ortho-cta::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 70%);
  top: -120px;
  left: -120px;
}

.ortho-cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.18), transparent 70%);
  bottom: -120px;
  right: -120px;
}

.ortho-cta .ortho-container { position: relative; z-index: 1; }

.ortho-cta__title {
  font-family: var(--ortho-font-jp);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--ortho-white);
  margin-bottom: var(--ortho-space-3);
}

.ortho-cta__title em {
  font-style: normal;
  color: var(--ortho-teal);
}

.ortho-cta__text {
  font-size: var(--ortho-size-3);
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--ortho-space-5);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ortho-cta__btns {
  display: flex;
  justify-content: center;
  gap: var(--ortho-space-3);
  flex-wrap: wrap;
}

/* 32. STICKY CTA (mobile)
   ===================================================================== */
.ortho-stickycta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--ortho-white);
  border-top: 1px solid var(--ortho-line);
  box-shadow: 0 -4px 18px rgba(22, 54, 93, 0.08);
  padding: 8px;
  gap: 8px;
}

.ortho-stickycta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-family: var(--ortho-font-jp);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--ortho-radius-md);
}

.ortho-stickycta__btn--tel { background: var(--ortho-steel); color: var(--ortho-white); }
.ortho-stickycta__btn--book { background: var(--ortho-orange); color: var(--ortho-white); }

/* 33. FLOAT (desktop)
   ===================================================================== */
.ortho-float {
  position: fixed;
  right: var(--ortho-space-5);
  bottom: var(--ortho-space-5);
  z-index: 80;
  background: var(--ortho-orange);
  color: var(--ortho-white);
  padding: 14px 24px;
  border-radius: var(--ortho-radius-pill);
  font-family: var(--ortho-font-jp);
  font-weight: 700;
  font-size: var(--ortho-size-3);
  box-shadow: 0 6px 20px rgba(251, 146, 60, 0.45);
  transition: transform var(--ortho-trans-fast), box-shadow var(--ortho-trans-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ortho-float:hover {
  transform: translateY(-3px);
  background: var(--ortho-orange-deep);
  box-shadow: 0 10px 28px rgba(234, 120, 33, 0.55);
}

/* 34. FOOTER
   ===================================================================== */
.ortho-footer {
  background: var(--ortho-steel-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--ortho-space-7) 0 var(--ortho-space-5);
  margin-top: var(--ortho-space-8);
}

.ortho-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--ortho-space-6);
  margin-bottom: var(--ortho-space-6);
}

.ortho-footer__brand .ortho-footer__logo {
  display: flex;
  align-items: center;
  gap: var(--ortho-space-3);
  margin-bottom: var(--ortho-space-3);
}

.ortho-footer__logo-mark {
  width: 44px;
  height: 44px;
  background: var(--ortho-teal);
  border-radius: var(--ortho-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ortho-footer__logo-mark svg {
  width: 22px;
  height: 22px;
  stroke: var(--ortho-steel-deep);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.ortho-footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ortho-footer__logo-jp {
  font-family: var(--ortho-font-jp);
  font-weight: 700;
  font-size: var(--ortho-size-3);
  color: var(--ortho-white);
  display: block;
}

.ortho-footer__logo-en {
  font-family: var(--ortho-font-en);
  font-style: italic;
  font-size: var(--ortho-size-1);
  color: var(--ortho-teal);
  letter-spacing: 0.1em;
}

.ortho-footer__addr {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
}

.ortho-footer__addr strong { color: var(--ortho-white); }

.ortho-footer__col-title {
  font-family: var(--ortho-font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ortho-teal);
  text-transform: uppercase;
  margin-bottom: var(--ortho-space-3);
}

.ortho-footer__list li {
  padding: 5px 0;
  font-size: 0.85rem;
}

.ortho-footer__list a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--ortho-trans-fast);
}

.ortho-footer__list a:hover { color: var(--ortho-teal); }

.ortho-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--ortho-space-4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--ortho-space-3);
  align-items: center;
}

.ortho-footer__copy {
  font-family: var(--ortho-font-en);
  font-size: var(--ortho-size-1);
  color: var(--ortho-stone-l);
  letter-spacing: 0.08em;
}

.ortho-footer__license {
  font-size: var(--ortho-size-1);
  color: var(--ortho-stone-l);
  letter-spacing: 0.04em;
}

/* 35. SCROLL ANIMATION
   ===================================================================== */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-anim].is-in {
  opacity: 1;
  transform: translateY(0);
}

[data-anim="left"]  { transform: translateX(-24px); }
[data-anim="right"] { transform: translateX(24px); }
[data-anim="left"].is-in,
[data-anim="right"].is-in { transform: translateX(0); }

/* 36. RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .ortho-header__tel { display: none; }
  .ortho-hero__inner { padding: var(--ortho-space-7) var(--ortho-space-4) var(--ortho-space-6); }
  .ortho-greet__inner { grid-template-columns: 1fr; gap: var(--ortho-space-5); }
  .ortho-services__grid { grid-template-columns: repeat(2, 1fr); }
  .ortho-doctors__grid { grid-template-columns: repeat(2, 1fr); }
  .ortho-pain__grid { grid-template-columns: repeat(2, 1fr); }
  .ortho-bodymap__inner { grid-template-columns: 1fr; }
  .ortho-equip__grid { grid-template-columns: repeat(2, 1fr); }
  .ortho-process__grid { grid-template-columns: repeat(2, 1fr); }
  .ortho-process__grid::before { display: none; }
  .ortho-sports__grid { grid-template-columns: 1fr; }
  .ortho-voice__grid { grid-template-columns: 1fr; }
  .ortho-vas__guide { grid-template-columns: 1fr; }
  .ortho-access__inner { grid-template-columns: 1fr; }
  .ortho-facility__grid { grid-template-columns: repeat(2, 1fr); }
  .ortho-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--ortho-space-5); }
  .ortho-news__item { grid-template-columns: 1fr; gap: var(--ortho-space-2); }
  .ortho-news__item-arrow { display: none; }
}

@media (max-width: 768px) {
  .ortho-section { padding: var(--ortho-space-7) 0; }
  .ortho-section-head { margin-bottom: var(--ortho-space-6); }
  .ortho-hero__stats { grid-template-columns: repeat(2, 1fr); padding: var(--ortho-space-3); }
  .ortho-hero__stat { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .ortho-hero__stat:nth-last-child(-n+2) { border-bottom: 0; }
  .ortho-hero__stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.18); }
  .ortho-services__grid,
  .ortho-doctors__grid,
  .ortho-pain__grid,
  .ortho-equip__grid,
  .ortho-facility__grid { grid-template-columns: 1fr; }
  .ortho-bodymap__list { grid-template-columns: repeat(2, 1fr); }
  .ortho-cal__table thead th,
  .ortho-cal__table tbody th,
  .ortho-cal__table tbody td { padding: 8px 4px; font-size: 0.7rem; }
  .ortho-footer__inner { grid-template-columns: 1fr; }
  .ortho-stickycta { display: flex; }
  .ortho-float { display: none; }
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  :root { --ortho-header-h: 64px; }
  .ortho-header__inner { gap: var(--ortho-space-3); padding: 0 var(--ortho-space-3); }
  .ortho-header__logo-mark { width: 36px; height: 36px; }
  .ortho-header__cta { padding: 8px 14px; font-size: 0.8rem; }
  .ortho-hero__title { font-size: 1.85rem; }
  .ortho-hero__btns .ortho-btn { width: 100%; min-width: 0; }
}

/* 37. REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ortho-loader__skeleton svg path {
    stroke-dashoffset: 0;
    animation: none;
  }

  .ortho-loader__joint,
  .ortho-loader__brand,
  .ortho-loader__sub { opacity: 1; animation: none; }

  [data-anim] { opacity: 1; transform: none; }
}

/* 38. PRINT
   ===================================================================== */
@media print {
  .ortho-header,
  .ortho-drawer,
  .ortho-stickycta,
  .ortho-float,
  .ortho-loader { display: none !important; }

  .ortho-page-hero,
  .ortho-hero { margin-top: 0; }

  body { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   99. WP Block FSE Header & Navigation
   -------------------------------------------------------------------------- */

html { overflow-x: hidden; }
.wp-site-blocks { overflow-x: hidden; }

.irodori-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 800;
  background: transparent;
  color: #fff;
  transition: background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}
.irodori-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--ortho-shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ortho-ink);
}
.irodori-header__inner {
  height: 72px;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.irodori-header__logo .wp-block-site-logo img {
  max-height: 44px;
  width: auto;
}
.irodori-header .wp-block-navigation-item__content {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.irodori-header .wp-block-navigation-item__content:hover { opacity: 0.7; }
.irodori-header .wp-block-navigation .wp-block-navigation-item { list-style: none; }
.irodori-header__cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: #1a5276;
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.irodori-header__cta-btn:hover { opacity: 0.85; }
.irodori-header .wp-block-navigation__responsive-container-open,
.irodori-header .wp-block-navigation__responsive-container-close { display: none !important; }
.irodori-header .wp-block-navigation__responsive-container {
  display: contents !important;
  background: none !important;
}
.wp-site-blocks > * + * { margin-block-start: 0 !important; }
footer .wp-block-navigation { flex-direction: column !important; }
.wp-block-group.irodori-section.is-layout-constrained > *,
.wp-block-group.irodori-section > * {
  max-width: 100% !important;
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wp-block-post-content > .wp-block-group.irodori-section,
.wp-block-post-content > .wp-block-group.irodori-section + .wp-block-group.irodori-section {
  margin-block: 0;
}
@media (max-width: 1100px) {
  .irodori-header__toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 6px; width: 34px; height: 34px; cursor: pointer; position: relative;
    z-index: 10001; flex-shrink: 0;
  }
  .irodori-header__toggle span {
    display: block; width: 22px; height: 1.8px;
    background: currentColor; transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .irodori-header__toggle-input { display: none; }
  .wp-block-group.irodori-header__nav {
    display: none; position: fixed; inset: 0;
    background: rgba(255,255,255,0.98); z-index: 10000;
    flex-direction: column; align-items: center; justify-content: center; padding: 40px;
  }
  #irodori-nav-toggle:checked ~ .wp-block-group.irodori-header__nav { display: flex; }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(1) {
    transform: translateY(7.8px) rotate(45deg);
  }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(2) { opacity: 0; }
  #irodori-nav-toggle:checked ~ label.irodori-header__toggle span:nth-child(3) {
    transform: translateY(-7.8px) rotate(-45deg);
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation {
    display: flex !important; flex-direction: column; align-items: center; width: 100%;
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation__container {
    display: flex; flex-direction: column; align-items: center;
    gap: 2rem; list-style: none; margin: 0; padding: 0;
  }
  .irodori-header--hamburger .irodori-header__nav .wp-block-navigation__container a {
    font-size: clamp(18px, 4vw, 24px); font-weight: 600; letter-spacing: 0.06em;
    color: var(--ortho-ink);
  }
  .irodori-header__cta { margin-top: 32px; }
}

/* ===== WP 7.0 Bug Fixes ===== */

/* ---------------------------------------------------------------
   WP 7.0 Fix: ナビゲーション デスクトップ表示強制
   親テーマ .irodori-header--hamburger が position:fixed/opacity:0 を
   全ブレークポイントに適用するため !important で解除
   --------------------------------------------------------------- */
@media (min-width: 1101px) {
  .irodori-header .wp-block-group.irodori-header__nav {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    inset: auto !important;
    background: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 0 !important;
    z-index: auto !important;
  }
  .irodori-header__toggle {
    display: none !important;
  }
}

/* ---------------------------------------------------------------
   WP 7.0 Fix: ヒーロー背景 全幅解除
   WP is-layout-constrained が max-width:1280px/margin:auto を
   hero bg 要素に適用するため強制解除
   --------------------------------------------------------------- */
.is-layout-constrained > [class*="-hero__bg"],
.is-layout-constrained > [class*="-hero-bg"],
.is-layout-constrained > [class*="-hero__slide"],
.is-layout-constrained > [class*="-hero__image"],
.is-layout-constrained > [class*="-hero__visual"] {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
