/*
Theme Name: Tomo Clinic
Theme URI:
Author: Tomo Family Clinic
Description: ともクリニック（神戸市北区鈴蘭台）の公式WordPressテーマ
Version: 1.0.0
Text Domain: tomoclinic
*/

/* =========================================================
   Tomo Clinic - Prototype Stylesheet
   ========================================================= */

:root {
  --primary: #0077c2;
  --primary-light: #4fc3f7;
  --primary-pale: #e8f4fc;
  --primary-faint: #f4fafe;
  --accent: #01579b;
  --ink: #0d2b45;
  --text: #1f3547;
  --text-sub: #5b7183;
  --text-mute: #93a4b3;
  --line: #dfeaf3;
  --line-soft: #eef4f9;
  --bg: #ffffff;
  --bg-alt: #f4fafe;
  --warning: #e65100;
  --warning-bg: #fff5ec;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: none;
  --shadow: none;
  --shadow-lg: none;
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-en: "Marcellus", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-synthesis: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    opacity 0.2s,
    color 0.2s;
}

a:hover {
  opacity: 0.78;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-wide {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================================
   Typography helpers
   ========================================================= */
.en {
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.12em;
  font-style: normal;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-transform: uppercase;
  font-style: normal;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-top: 14px;
}

.section-lead {
  margin-top: 20px;
  color: var(--text-sub);
  font-size: 15px;
  max-width: 820px;
}

/* =========================================================
   Top notice bar (above header)
   ========================================================= */
.notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  color: #fff;
  padding: 8px 24px;
  padding-top: calc(8px + env(safe-area-inset-top));
  font-size: 12px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  line-height: 1.5;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s ease;
}

.notice-bar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.notice-bar-message {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 0 1 auto;
  max-width: calc(100% - 180px);
  min-width: 0;
  white-space: nowrap;
}

.notice-bar .notice-msg {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice-bar-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.notice-bar .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

.notice-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-bar .lang-toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 3px 8px 3px 8px;
  font-size: 11px;
  margin: 0;
  gap: 5px;
}

.notice-bar .lang-toggle:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.notice-bar .lang-toggle svg {
  width: 13px;
  height: 13px;
}

/* =========================================================
   Header (fixed, slides up as notice bar hides)
   ========================================================= */
.header {
  position: fixed;
  top: var(--notice-h, 38px);
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow:
    0 1px 0 rgba(13, 43, 69, 0.06),
    0 8px 30px rgba(13, 43, 69, 0.06);
  transition: top 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  min-width: 0;
  width: 100%;
  padding: 0 40px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  min-width: 0;
  flex-shrink: 1;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 38px;
  width: auto;
  background: transparent;
  filter: none;
}

.footer .logo-img {
  height: 42px;
}

.mobile-menu-head .logo-img {
  height: 32px;
}

.logo-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  padding-left: 14px;
  margin-left: 14px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.logo-meta-sub {
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

.logo-meta-name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.06em;
}

@media (max-width: 1476px) {
  .logo-meta {
    display: none;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .jp {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.logo-text .en-small {
  font-family: var(--font-en);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav a .en-small {
  font-family: var(--font-en);
  font-size: 10px;
  font-style: normal;
  color: var(--primary);
  margin-top: 2px;
  letter-spacing: 0.15em;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 20px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.25s;
}

.nav a:hover::after,
.nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-contact,
.header-reserve {
  padding: 8px 20px;
  font-size: 12px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-jp);
  letter-spacing: 0.04em;
  transition:
    transform 0.2s,
    box-shadow 0.25s,
    background 0.25s,
    color 0.25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid currentColor;
}

.is-transparent .btn-outline {
  color: #fff;
}

.btn-outline:hover {
  opacity: 1;
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.header-contact:hover,
.header-reserve:hover {
  transform: none;
}

.btn-ghost {
  color: var(--primary);
  padding: 10px 18px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 14px;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  color: var(--ink);
  z-index: 320;
  background: transparent;
  border: none;
  flex-shrink: 0;
}

.hamburger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    top 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.2s ease;
}

.hamburger span:nth-child(1) {
  top: 14px;
}

.hamburger span:nth-child(2) {
  top: 21px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

.hamburger.is-open {
  color: var(--ink);
}

.hamburger.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

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

.hamburger.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Language toggle (compact icon button) */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 4px 6px 10px;
  margin-left: 4px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--text-sub);
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.lang-toggle:hover {
  color: var(--primary);
  background: transparent;
}

.lang-toggle svg {
  width: 14px;
  height: 14px;
}

/* Hide default Google widget UI, keep script active */
#google_translate_element {
  display: none !important;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}

body {
  top: 0 !important;
  position: static !important;
}

font[style] {
  background: none !important;
  box-shadow: none !important;
}

.is-transparent .hamburger {
  color: #fff;
}

/* =========================================================
   Hero (Top page) - Cinematic full-bleed
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: #050d1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/img/hero.webp") center/cover no-repeat;
  transform: scale(1.02);
}

@media (max-width: 720px) {
  .hero-bg {
    background-image: url("assets/img/hero-sp.webp");
    background-size: cover;
    background-position: center;
    transform: none;
  }
}

/* PC / スマホ 背景画像の出し分け（tomo_bg() が出力する --bg-sp を 720px以下で適用） */
@media (max-width: 720px) {
  [style*="--bg-sp"] {
    background-image: var(--bg-sp) !important;
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 13, 26, 0.55) 0%,
      rgba(5, 13, 26, 0.25) 30%,
      rgba(5, 13, 26, 0.65) 100%
    ),
    linear-gradient(
      90deg,
      rgba(5, 13, 26, 0.75) 0%,
      rgba(5, 13, 26, 0.35) 50%,
      rgba(5, 13, 26, 0.15) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 98%;
  max-width: none;
  padding-left: clamp(72px, 6vw, 140px);
  padding-right: clamp(48px, 5vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 120px;
  padding-top: 180px;
}

.hero-copy {
  max-width: 820px;
}

.hero-copy .lead-jp {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.hero-copy h1 {
  font-family: var(--font-en);
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  font-style: normal;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.35);
}

.hero-copy h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.hero-copy h1 .line-inner {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}

.hero-copy .sub {
  font-size: 14px;
  line-height: 2.1;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.hero-break-md,
.hero-break-sm,
.sp-only-br {
  display: none;
}

/* Hero bottom strip (band) */
.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(5, 22, 42, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.hero-strip-inner {
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-strip .hero-news-mini {
  background: transparent;
  border: none;
  padding: 0;
  backdrop-filter: none;
}

/* Hero shell — positioning context for the floating hours card (desktop) */
.hero-shell {
  position: relative;
}

/* Hero floating panel (bottom-right): hours card */
.hero-float {
  position: absolute;
  right: 48px;
  bottom: 110px;
  z-index: 4;
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-news-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(5, 22, 42, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  min-width: 0;
}

.hero-news-mini .label {
  font-family: var(--font-en);
  font-style: normal;
  color: var(--primary-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero-news-mini .date {
  font-family: var(--font-en);
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}

.hero-news-mini .title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.hero-news-mini .more {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.hero-hours-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px) saturate(160%);
  border-radius: 14px;
  padding: 18px 26px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-hours-card .card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 9px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.hero-hours-card .card-title h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.hero-hours-card .card-title .en-small {
  font-family: var(--font-en);
  font-style: normal;
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.15em;
}

.hero-hours-card .card-title .hours-legend-inline {
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-hours-card .card-title .hours-legend-inline .mark-o {
  color: var(--primary);
  font-weight: 700;
}

.hero-hours-card .card-title .hours-legend-inline .mark-t {
  color: var(--primary);
  font-weight: 700;
}

.hero-hours-card .card-title .hours-legend-inline .mark-x {
  color: var(--text-mute);
}

.hero-hours-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hero-hours-card th,
.hero-hours-card td {
  padding: 5px 2px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

.hero-hours-card thead th {
  background: var(--primary-faint);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.hero-hours-card th:first-child,
.hero-hours-card td:first-child {
  text-align: left;
  padding-left: 8px;
  color: var(--text-sub);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}

.hero-hours-card .mark-o {
  color: var(--primary);
  font-weight: 700;
}

.hero-hours-card .mark-x {
  color: var(--text-mute);
}

.hero-hours-card .mark-t {
  color: var(--primary);
}

.hero-hours-card .note {
  margin-top: 9px;
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.65;
}

.hero-hours-card .note strong {
  color: var(--accent);
  font-weight: 700;
}

/* Panel section generic */
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 10px;
}

.panel-head h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-head h3 .en-small {
  font-family: var(--font-en);
  font-size: 11px;
  font-style: normal;
  color: var(--primary);
  font-weight: 500;
}

.panel-head a {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Hours table (compact for hero panel) */
.hours-mini {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin: 0 14px 14px;
  width: calc(100% - 28px);
}

.hours-mini th,
.hours-mini td {
  padding: 6px 2px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

.hours-mini thead th {
  background: var(--primary-faint);
  color: var(--accent);
  font-weight: 700;
  font-size: 11px;
  padding: 8px 2px;
}

.hours-mini th:first-child,
.hours-mini td:first-child {
  text-align: left;
  padding-left: 10px;
  color: var(--text-sub);
  font-weight: 600;
}

.hours-mini .mark-o {
  color: var(--primary);
  font-weight: 700;
}

.hours-mini .mark-x {
  color: var(--text-mute);
}

.hours-note {
  font-size: 10px;
  color: var(--text-sub);
  padding: 0 20px 14px;
  line-height: 1.6;
}

/* News list in panel */
.panel-news {
  padding: 0 20px 18px;
}

.panel-news li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 12px;
  line-height: 1.6;
}

.panel-news li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.panel-news .meta {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 4px;
}

.panel-news .date {
  font-size: 10px;
  color: var(--text-sub);
  font-family: var(--font-en);
  letter-spacing: 0.06em;
}

.cat {
  display: inline-block;
  font-size: 10px;
  padding: 1px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cat-info {
  background: var(--primary-pale);
  color: var(--accent);
}

.cat-closed {
  background: #fff1e0;
  color: var(--warning);
}

.cat-blog {
  background: #e6f7ec;
  color: #2e7d32;
}

.panel-news .title {
  color: var(--ink);
  font-weight: 500;
}

.scroll-hint {
  position: absolute;
  left: 28px;
  bottom: 140px;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-en);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  opacity: 0;
}

@media (max-width: 960px) {
  .scroll-hint {
    display: none;
  }
}

.scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.scroll-line-glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 60%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
  transform: translateY(-100%);
  will-change: transform;
}

/* =========================================================
   Generic section
   ========================================================= */
.section {
  padding: 120px 0;
  position: relative;
}

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

.section-dark {
  background: linear-gradient(135deg, var(--accent), var(--ink));
  color: #fff;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-label {
  color: var(--primary-light);
}

.section-head {
  margin-bottom: 64px;
}

.section-head.center {
  margin-bottom: 64px;
  text-align: center;
}

.section-head.center .section-label {
  justify-content: center;
}

/* Wave divider */
.wave-divider {
  display: block;
  width: 100%;
  height: 70px;
  line-height: 0;
}

/* =========================================================
   Concept section
   ========================================================= */
.concept {
  position: relative;
  overflow: hidden;
}

.concept-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.concept-visual {
  position: relative;
  aspect-ratio: 1 / 1;
}

.concept-visual .main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #cde3f0 url("assets/img/concept.webp") center/cover;
}

.concept-text .quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  margin-top: 22px;
  letter-spacing: 0.06em;
}

.concept-text .quote .mark {
  background: linear-gradient(transparent 70%, var(--primary-pale) 70%);
  padding: 0 0.05em;
}

.concept-text p {
  margin-top: 24px;
  color: var(--text-sub);
  font-size: 15px;
  line-height: 2.1;
}

/* =========================================================
   Policy (診療方針 / 編集レイアウト + アイキャッチ)
   ========================================================= */
.section.policy {
  position: relative;
}

.section.policy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 62%;
  background: var(--primary-faint);
  z-index: 0;
}

.section.policy > .container {
  position: relative;
  z-index: 1;
}

.policy-inner {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
}

.policy-tagline {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.8;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.policy-sub {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.06em;
  line-height: 1.95;
}

.policy-hero {
  margin: 56px 0 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(20, 40, 55, 0.18);
}

.policy-hero img {
  display: block;
  width: 100%;
  height: clamp(280px, 46vw, 520px);
  object-fit: cover;
}

.policy-body {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: left;
}

.policy-body p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 2.15;
  margin-top: 22px;
}

.policy-body p:first-child {
  margin-top: 0;
}

@media (max-width: 720px) {
  .section.policy::before {
    height: 56%;
  }

  .policy-inner {
    margin-top: 32px;
  }

  .policy-tagline {
    letter-spacing: 0.04em;
  }

  .policy-hero {
    margin-top: 36px;
    border-radius: 12px;
  }

  .policy-body {
    margin-top: 36px;
  }
}

/* =========================================================
   Features (三つの約束)
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature {
  position: relative;
}

.feature-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #cde3f0;
  position: relative;
}

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

.feature-body {
  padding: 26px 4px 0;
}

.feature-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.feature-body p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.95;
}

/* =========================================================
   Scope diagram: 家庭医療・救急医療 を中心とした 6 領域
   ========================================================= */
.scope-diagram {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1 / 1;
  margin: 56px auto 64px;
  isolation: isolate;
}

.scope-diagram::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  border: 1.5px dashed #93d4f0;
  pointer-events: none;
}

.scope-center::before,
.scope-center::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 119, 194, 0.18);
  z-index: -1;
  animation: scope-ripple 5s cubic-bezier(0.3, 0.7, 0.3, 1) infinite;
  opacity: 0;
}

.scope-center::after {
  animation-delay: 2.5s;
}

@keyframes scope-ripple {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scope-center::before,
  .scope-center::after {
    animation: none;
  }
}

.scope-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #e6f4fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.scope-node {
  position: absolute;
  width: 19%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-jp);
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  transform: translate(-50%, -50%);
}

/* 6 ノードを 60° 間隔で配置（中心からの距離 38%）
   sin/cos で計算: x=50%+38*sin(θ), y=50%-38*cos(θ) */
.scope-node-1 {
  top: 12%;
  left: 50%;
}

/* θ=0°   内科 */
.scope-node-2 {
  top: 31%;
  left: 82.9%;
}

/* θ=60°  小児科 */
.scope-node-3 {
  top: 69%;
  left: 82.9%;
}

/* θ=120° 外科 */
.scope-node-4 {
  top: 88%;
  left: 50%;
}

/* θ=180° 緩和ケア */
.scope-node-5 {
  top: 69%;
  left: 17.1%;
}

/* θ=240° 老年医療 */
.scope-node-6 {
  top: 31%;
  left: 17.1%;
}

/* θ=300° 訪問診療 */

@media (max-width: 560px) {
  .scope-diagram {
    margin: 40px auto 48px;
  }

  .scope-center {
    font-size: 14px;
  }

  .scope-node {
    font-size: 11px;
    width: 22%;
  }
}

/* =========================================================
   Medical preview (2x2)
   ========================================================= */
.medical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

/* ===========================
   Medical diagram (center circle + 6 boxes)
   =========================== */
.diagram-stage {
  --diagram-gold: #b59a5e;
  --diagram-circle: 460px;
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: 640px;
  margin: 0 auto;
}

.diagram-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--diagram-circle);
  height: var(--diagram-circle);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, #0a2238 100%);
  border: 1.5px solid var(--diagram-gold);
  display: grid;
  place-items: center;
  z-index: 1;
  box-shadow:
    0 30px 80px rgba(13, 43, 69, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.diagram-circle::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(181, 154, 94, 0.25);
}

.diagram-circle-label {
  position: relative;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.diagram-mod {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 2;
}

.diagram-mod.is-left {
  left: 0;
}

.diagram-mod.is-right {
  right: 0;
}

.diagram-mod.mod-pos-1 {
  top: 8%;
}

.diagram-mod.mod-pos-2 {
  top: 50%;
  transform: translateY(-50%);
}

.diagram-mod.mod-pos-3 {
  bottom: 8%;
}

.diagram-desc {
  width: 220px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
  letter-spacing: 0.02em;
}

.is-left .diagram-desc {
  text-align: right;
  padding-right: 24px;
}

.is-right .diagram-desc {
  text-align: left;
  padding-left: 24px;
}

.diagram-line {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--text-mute);
  flex-shrink: 0;
}

.diagram-box {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 138px;
  height: 64px;
  margin: 0 18px;
  background: linear-gradient(160deg, var(--ink) 0%, #0a2238 100%);
  border: 1px solid var(--diagram-gold);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  box-shadow: 0 8px 20px rgba(13, 43, 69, 0.18);
  transition:
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s,
    opacity 0.2s;
  position: relative;
}

.diagram-box::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(181, 154, 94, 0.35);
  pointer-events: none;
}

.diagram-box:hover {
  transform: translateY(-3px);
  opacity: 1;
  box-shadow: 0 14px 30px rgba(13, 43, 69, 0.28);
}

@media (max-width: 1100px) {
  .diagram-stage {
    --diagram-circle: 400px;
    height: 580px;
  }

  .diagram-circle-label {
    font-size: 32px;
  }

  .diagram-desc {
    width: 190px;
    font-size: 12px;
  }

  .diagram-line {
    width: 36px;
  }

  .diagram-box {
    width: 122px;
    height: 58px;
    font-size: 17px;
  }
}

@media (max-width: 880px) {
  .diagram-stage {
    height: auto;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .diagram-circle {
    position: static;
    transform: none;
    width: 320px;
    height: 320px;
    order: 0;
  }

  .diagram-circle-label {
    font-size: 28px;
  }

  .diagram-mod {
    position: static;
    transform: none;
    width: 100%;
    justify-content: center;
  }

  .diagram-mod.is-left,
  .diagram-mod.is-right {
    left: auto;
    right: auto;
  }

  .diagram-desc {
    width: auto;
    flex: 1;
    max-width: 240px;
    text-align: left !important;
    padding: 0 !important;
  }

  .diagram-line {
    display: none;
  }

  .diagram-box {
    width: 110px;
    height: 56px;
    margin: 0 18px 0 0;
    font-size: 16px;
  }

  .diagram-mod.is-right .diagram-box {
    margin: 0 0 0 0;
    order: 0;
  }

  .diagram-mod.is-right {
    flex-direction: row;
  }

  .diagram-mod.is-left {
    flex-direction: row-reverse;
  }

  .diagram-mod.is-left .diagram-box {
    margin: 0 0 0 18px;
  }
}

.med-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.med-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: 0 14px 30px rgba(13, 43, 69, 0.1) !important;
  opacity: 1;
}

.med-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  flex-shrink: 0;
}

.med-card-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.med-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.med-card-body .en {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.18em;
  font-style: normal;
}

.med-card-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 6px 0 14px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.med-card-body p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
}

.med-card-body .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 26px;
  align-self: flex-end;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.08em;
}

/* =========================================================
   Doctor section (dark)
   ========================================================= */
.doctor {
  position: relative;
  overflow: hidden;
}

.doctor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(79, 195, 247, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(79, 195, 247, 0.12),
      transparent 50%
    );
  pointer-events: none;
}

.doctor-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.doctor-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.doctor-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  margin: 16px 0 8px;
  letter-spacing: 0.06em;
}

/* 院長名：英語表示時のみ正式ローマ字（Ji Young Huh）へ差し替え */
.doctor-body h3 .name-en {
  display: none;
}

html.lang-en .doctor-body h3 .name-ja {
  display: none;
}

html.lang-en .doctor-body h3 .name-en {
  display: inline;
}

.doctor-body .role {
  font-family: var(--font-en);
  font-style: normal;
  color: var(--primary-light);
  font-size: 14px;
  letter-spacing: 0.15em;
}

.timeline {
  margin-top: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 28px;
}

.timeline li {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(79, 195, 247, 0.2);
}

.timeline .year {
  font-family: var(--font-jp);
  font-style: normal;
  color: var(--primary-light);
  margin-right: 16px;
  font-size: 15px;
  font-weight: 600;
}

.doctor-cta {
  margin-top: 28px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.doctor-cta:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* =========================================================
   News section (grid)
   ========================================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.news-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #cde3f0;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.news-body {
  padding: 22px 24px 26px;
}

.news-body .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-body .date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.08em;
}

.news-body h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}

/* =========================================================
   Access section (2-column)
   ========================================================= */
.access-grid-2 {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
}

.access-grid-2 .map-wrap {
  width: 100%;
  height: 100%;
  min-height: 440px;
  aspect-ratio: auto;
  box-shadow: none;
  border-radius: var(--radius) 0 0 var(--radius);
}

.access-grid-2 .access-info {
  margin-top: 0;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.access-grid-2 .access-info h3 {
  font-family: var(--font-en);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hours-access-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.hours-full {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}

.hours-full h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.hours-table th,
.hours-table td {
  padding: 14px 6px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hours-table thead th {
  background: var(--primary-faint);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.hours-table th:first-child,
.hours-table td:first-child {
  text-align: left;
  padding-left: 14px;
  color: var(--text-sub);
  font-weight: 600;
}

.hours-table .mark-o {
  color: var(--primary);
  font-size: 18px;
}

.hours-table .mark-t {
  color: var(--primary);
  font-size: 18px;
}

.hours-table .mark-x {
  color: var(--text-mute);
}

.hours-legend {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.9;
}

.access-block {
  position: relative;
}

.map-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #cde3f0;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--primary);
  position: relative;
  box-shadow: var(--shadow-sm);
}

/* 単独の周辺地図：PCは横長、スマホは正方形 */
.map-full {
  aspect-ratio: 16 / 7;
}

@media (max-width: 720px) {
  .map-full {
    aspect-ratio: 1 / 1;
  }
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-wrap .placeholder {
  text-align: center;
  font-family: var(--font-en);
  font-style: normal;
  letter-spacing: 0.15em;
}

.access-info {
  margin-top: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}

.access-info li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}

.access-info li:last-child {
  border-bottom: none;
}

.access-info .k {
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-top: 2px;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: #c4d2dd;
  position: relative;
}

.footer-wave {
  display: none;
}

.footer-inner {
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer .logo {
  color: #fff;
  margin-bottom: 20px;
  padding-top: 24px;
}

.footer .logo-text .jp {
  color: #fff;
}

.footer .logo-text .en-small {
  color: #7c95aa;
}

.footer-brand p {
  font-size: 13px;
  color: #8fa2b3;
  line-height: 1.9;
}

.footer h4 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.footer h4 .en-small {
  display: block;
  font-family: var(--font-en);
  font-style: normal;
  font-size: 11px;
  color: var(--primary-light);
  margin-top: 2px;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.footer ul li {
  font-size: 13px;
  padding: 6px 0;
}

.footer ul a {
  color: #c4d2dd;
}

.footer ul a:hover {
  color: var(--primary-light);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  font-size: 11px;
  color: #7c95aa;
  letter-spacing: 0.08em;
}

/* =========================================================
   Floating CTA
   ========================================================= */
.floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 150;
}

.floating .btn {
  box-shadow: 0 12px 28px rgba(0, 119, 194, 0.35);
  padding: 14px 24px;
}

/* =========================================================
   Page Hero (sub pages)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 200px 0 120px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background-color: #0d2b45;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(1, 87, 155, 0.8),
    rgba(13, 43, 69, 0.85)
  );
  z-index: 0;
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero .en {
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--primary-light);
  text-transform: uppercase;
  font-style: normal;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  margin-top: 12px;
  letter-spacing: 0.08em;
}

.page-hero .lead {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.9;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 12px;
  color: var(--text-sub);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.breadcrumb a {
  color: var(--text-sub);
}

.breadcrumb .sep {
  margin: 0 10px;
  color: var(--text-mute);
}

.breadcrumb .current {
  color: var(--primary);
}

/* =========================================================
   Content blocks for sub pages
   ========================================================= */
.prose-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ink);
  margin: 48px 0 18px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
  letter-spacing: 0.05em;
}

.prose h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent);
  margin: 28px 0 12px;
}

.prose p {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text);
}

.prose ul.bullet {
  margin: 0 0 18px 0;
}

.prose ul.bullet li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 15px;
}

.prose ul.bullet li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
}

/* Alternating image-text rows */
.row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 100px;
  scroll-margin-top: 120px;
}

.row-split:last-child {
  margin-bottom: 0;
}

.row-split.reverse .row-visual {
  order: 2;
}

.row-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #cde3f0;
}

.row-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.row-text .num {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", var(--font-serif);
  font-style: normal;
  font-size: 56px;
  color: var(--primary-light);
  line-height: 1;
}

.row-text h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin: 10px 0 16px;
  letter-spacing: 0.05em;
}

.row-text p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 12px;
}

.row-text ul.bullet {
  margin-top: 16px;
}

.dept-examples-label {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin: 22px 0 6px;
}

.dept-examples-label + .dept-symptoms {
  margin-top: 0;
}

.dept-symptoms {
  list-style: none;
  margin: 22px 0 0;
  padding: 16px 22px;
  background: #f4f5f7;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dept-symptoms li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-sub);
}

.dept-symptoms li strong {
  font-weight: 600;
  color: inherit;
}

/* Family doctor role */
.kakari {
  margin-top: 64px;
  padding: 48px;
  background: var(--primary-faint);
  border: 1px solid var(--primary-pale);
  border-radius: 20px;
}

.kakari-head {
  text-align: center;
  margin-bottom: 32px;
}

.kakari-head h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin: 10px 0 12px;
}

.kakari-head p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
}

.kakari-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.kakari-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(1, 87, 155, 0.05);
}

.kakari-list li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%230077c2'/%3E%3Cpolyline points='7 12.5 10.5 16 17 8.5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/22px no-repeat;
}

@media (max-width: 768px) {
  .kakari {
    padding: 32px 20px;
  }

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

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 40px;
}

.step:last-child {
  padding-bottom: 0;
}

.step::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 64px;
  bottom: 10px;
  width: 2px;
  background: var(--line);
}

.step:last-child::before {
  display: none;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-body {
  min-width: 0;
  padding: 22px 28px;
  background: #fff;
  border-radius: 14px;
}

.step .num {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", var(--font-serif);
  font-style: normal;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.step h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 14px;
}

.step p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  margin: 0 0 10px;
}

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

.step .dept-symptoms {
  margin-top: 14px;
}

@media (max-width: 600px) {
  .step {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding-bottom: 32px;
  }

  .step::before {
    left: 21px;
    top: 52px;
  }

  .step-icon {
    width: 44px;
    height: 44px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step-body {
    padding: 18px 20px;
  }
}

/* Icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.icon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
}

.icon-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}

.icon-card .ico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-card p {
  font-size: 13px;
  color: var(--text);
}

/* Access page – icon-card 横並びバリアント */
.access-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.access-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  align-items: start;
  text-align: left;
  padding: 22px 24px;
}

.access-card .ico {
  margin: 0;
  flex-shrink: 0;
}

.access-card .info strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.access-card .info p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
}

.access-card .info p strong {
  display: inline;
  font-size: inherit;
  color: var(--ink);
  font-family: inherit;
  font-weight: 600;
}

.access-card .info small {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}

@media (max-width: 540px) {
  .access-card {
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    padding: 20px 18px;
  }

  .access-card .ico {
    width: 42px;
    height: 42px;
  }

  .access-card .ico svg {
    width: 22px;
    height: 22px;
  }
}

/* Gallery grid (周辺の目印など) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.gallery-grid .g {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--primary-faint);
}

.gallery-grid .g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-grid .g:hover img {
  transform: scale(1.04);
}

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

@media (max-width: 480px) {
  .gallery-grid {
    gap: 12px;
  }
}

/* Landmarks grid – 写真＋下にキャプションのバリアント */
.landmarks-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.landmarks-grid .g {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  background: transparent;
  margin: 0;
}

.landmarks-grid .g > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--primary-faint);
}

.landmarks-grid .g figcaption {
  margin-top: 14px;
  padding: 0 4px;
}

.landmarks-grid .g figcaption strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.landmarks-grid .g figcaption span {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.85;
}

.landmarks-grid .g:hover img {
  transform: none;
}

@media (max-width: 900px) {
  .landmarks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

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

/* Gallery slider (Splide) */
.gallery-splide {
  position: relative;
}

.gallery-splide .splide__slide {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #cde3f0;
  position: relative;
}

.gallery-splide .splide__slide figure {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
}

.gallery-splide .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.gallery-splide .splide__slide:hover img {
  transform: scale(1.05);
}

.gallery-splide .splide__slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 18px 14px;
  background: linear-gradient(
    to top,
    rgba(0, 25, 45, 0.7) 0%,
    rgba(0, 25, 45, 0) 100%
  );
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  pointer-events: none;
}

/* Equipment list (院内設備の一覧) */
.equipment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.equipment-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
}

.equipment-group-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.06em;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.equipment-group-title .en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 500;
}

.equipment-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.equipment-group li {
  position: relative;
  padding: 9px 0 9px 18px;
  color: var(--text-sub);
  font-size: 14.5px;
  line-height: 1.7;
  border-bottom: 1px dashed var(--line-soft);
}

.equipment-group li:last-child {
  border-bottom: none;
}

.equipment-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 1px;
  background: var(--primary);
}

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

@media (max-width: 640px) {
  .equipment-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .equipment-group {
    padding: 22px 20px 16px;
  }

  .gallery-splide .splide__slide figcaption {
    font-size: 13px;
    padding: 28px 14px 12px;
  }
}

.gallery-splide .splide__arrow {
  background: rgba(255, 255, 255, 0.92);
  width: 44px;
  height: 44px;
  opacity: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.gallery-splide .splide__arrow:hover {
  background: #fff;
}

.gallery-splide .splide__arrow svg {
  fill: var(--text);
  width: 16px;
  height: 16px;
}

.gallery-splide .splide__arrow--prev {
  left: 16px;
}

.gallery-splide .splide__arrow--next {
  right: 16px;
}

/* Staff */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.staff {
  text-align: center;
}

.staff .avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  background: var(--primary-pale);
  box-shadow: var(--shadow-sm);
}

.staff .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink);
}

.staff .role {
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.staff p {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 10px;
}

/* Facility standards accordion */
.standards-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.standards-acc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.standards-acc[open] {
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(20, 40, 55, 0.08);
}

.standards-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  user-select: none;
}

.standards-acc summary::-webkit-details-marker {
  display: none;
}

.standards-acc summary .acc-title {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.standards-acc summary .acc-icon {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
}

.standards-acc summary .acc-icon::before,
.standards-acc summary .acc-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.standards-acc summary .acc-icon::before {
  width: 10px;
  height: 2px;
}

.standards-acc summary .acc-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.25s;
}

.standards-acc[open] summary .acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.standards-acc-body {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--line-soft);
}

.standards-acc-body p {
  margin: 0;
  color: var(--text-sub);
  font-size: 14.5px;
  line-height: 2;
}

.standards-acc-body p + p {
  margin-top: 12px;
}

.standards-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}

.standards-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.standards-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 1px;
  background: var(--primary);
}

@media (max-width: 640px) {
  .standards-acc summary {
    padding: 18px 20px;
    gap: 14px;
  }

  .standards-acc summary .acc-title {
    font-size: 16px;
  }

  .standards-acc-body {
    padding: 20px;
  }
}

/* News full list */
.news-list-full {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.news-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.news-row .thumb {
  height: 100%;
  min-height: 165px;
  overflow: hidden;
  background: #cde3f0;
}

.news-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-row .body {
  padding: 20px 28px 20px 0;
}

.news-row .meta {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  align-items: center;
}

.news-row .date {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--primary);
}

.news-row h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.6;
}

.news-row p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
}

.filter-bar button {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  white-space: nowrap;
  min-width: max-content;
}

.filter-bar button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

@media (max-width: 640px) {
  .filter-bar {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 32px;
  }

  .filter-bar button {
    flex: 0 1 auto;
    padding: 9px 14px;
    font-size: 12.5px;
    min-height: 40px;
  }
}

@media (max-width: 380px) {
  .filter-bar button {
    padding-inline: 12px;
    font-size: 12px;
  }
}

/* Pagination */
.pagination {
  margin-top: 48px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  font-family: var(--font-en);
  font-size: 15px;
}

.pagination a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-en);
  font-size: 15px;
  background: #fff;
}

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

.news-empty {
  text-align: center;
  color: var(--text-sub);
  font-size: 14px;
  padding: 48px 0;
}

/* News detail / article */
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
}

.news-article-head {
  margin-bottom: 28px;
}

.news-article-head .meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.news-article-head .date {
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--primary);
}

.news-article-title {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.6;
  color: var(--ink);
}

.news-article-figure {
  margin: 0 0 36px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #cde3f0;
}

.news-article-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-body {
  color: var(--text);
}

.news-article-body h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}

.news-article-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-sub);
  margin-bottom: 20px;
}

.news-article-body .keiko_blue {
  display: block;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--ink);
  margin: 34px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  letter-spacing: 0.04em;
}

.news-article-body p.keiko_blue {
  margin-bottom: 16px;
}

.news-article-foot {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.news-related {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.news-related-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 28px;
  text-align: center;
}

/* Comments */
.news-comments {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.news-comments-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 28px;
}

.news-comments-title .count {
  font-size: 15px;
  color: var(--text-sub);
}

.news-comments .comment-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.news-comments .comment-list ol.children {
  list-style: none;
  margin: 16px 0 0;
  padding-left: 28px;
  border-left: 2px solid var(--line-soft);
}

.news-comments .comment-list li.comment {
  margin-bottom: 20px;
}

.news-comments .comment-body {
  background: var(--primary-faint);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px 22px;
}

.news-comments .comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.news-comments .comment-author .avatar {
  border-radius: 50%;
}

.news-comments .comment-author .says {
  display: none;
}

.news-comments .comment-meta {
  margin: 4px 0 12px;
  font-size: 13px;
}

.news-comments .comment-meta a {
  color: var(--text-mute);
}

.news-comments .comment-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

.news-comments .comment-content p {
  margin: 0 0 10px;
}

.news-comments .reply {
  margin-top: 10px;
  font-size: 13px;
}

.news-comments .comment-reply-link {
  color: var(--primary);
  font-weight: 600;
}

.news-comments .comments-closed {
  color: var(--text-sub);
  font-size: 14px;
  margin-bottom: 32px;
}

/* Comment form */
.comment-respond {
  margin-top: 8px;
}

.comment-reply-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}

.comment-reply-title small {
  margin-left: 12px;
  font-size: 13px;
  font-weight: 400;
}

.comment-notes {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.8;
  margin-bottom: 18px;
}

.logged-in-as {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding: 14px 18px;
  margin-bottom: 22px;
  background: var(--primary-faint);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-sub);
}

.logged-in-as .line {
  font-weight: 600;
  color: var(--ink);
}

.logged-in-as .links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logged-in-as .links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition:
    background 0.2s,
    color 0.2s;
}

.logged-in-as .links a:hover {
  background: var(--primary);
  color: #fff;
}

.logged-in-as .sep {
  display: none;
}

.comment-form p {
  margin-bottom: 18px;
}

.comment-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.comment-form .required {
  color: #d4453b;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.comment-form textarea {
  resize: vertical;
}

.comment-form .form-submit {
  margin-bottom: 0;
}

.comment-form input[type="submit"] {
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-sub);
}

.comment-form .comment-form-cookies-consent input {
  width: auto;
  margin-top: 3px;
}

.comment-form .comment-form-cookies-consent label {
  display: inline;
  font-weight: 400;
  color: var(--text-sub);
  margin: 0;
}

.news-notfound {
  text-align: center;
  padding: 40px 0 24px;
}

.news-notfound p {
  color: var(--text-sub);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .news-article-title {
    font-size: 22px;
  }

  .news-article-body .keiko_blue {
    font-size: 17px;
    margin-top: 28px;
  }

  .news-article-figure {
    aspect-ratio: 4 / 3;
    margin-bottom: 28px;
  }
}

/* Job cards */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.job-card .tag {
  font-family: var(--font-en);
  font-style: normal;
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 0.12em;
}

.job-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 6px 0 14px;
  color: var(--ink);
}

.job-card dl {
  font-size: 13px;
  line-height: 2;
}

.job-card dt {
  color: var(--primary);
  font-weight: 700;
  float: left;
  width: 70px;
}

.job-card dd {
  padding-left: 70px;
  color: var(--text);
}

/* 募集要項アコーディオン */
.job-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-acc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}

.job-acc[open] {
  box-shadow: 0 12px 32px rgba(20, 40, 55, 0.08);
  border-color: transparent;
}

.job-acc summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  user-select: none;
  transition: background 0.2s;
}

.job-acc summary::-webkit-details-marker {
  display: none;
}

.job-acc summary .tag {
  font-family: var(--font-en);
  font-style: normal;
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 0.14em;
  flex-shrink: 0;
}

.job-acc summary .acc-title {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.job-acc summary .acc-icon {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  transition: transform 0.3s;
}

.job-acc summary .acc-icon::before,
.job-acc summary .acc-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.job-acc summary .acc-icon::before {
  width: 10px;
  height: 2px;
}

.job-acc summary .acc-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.3s;
}

.job-acc[open] summary .acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.job-acc-body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
}

.job-detail {
  margin: 0;
}

.job-detail dt {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-soft);
}

.job-detail dt:first-child {
  margin-top: 0;
}

.job-detail dd {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}

.job-detail dd p {
  margin: 0 0 10px;
}

.job-detail dd p:last-child {
  margin-bottom: 0;
}

.job-detail dd ul {
  margin: 0;
  padding-left: 1.1em;
}

.job-detail dd li {
  margin-bottom: 4px;
}

.job-detail dd small {
  color: var(--text-sub);
  font-size: 12.5px;
}

.job-detail .schedule-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.job-detail .schedule-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 10px 14px;
  background: var(--primary-faint);
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.7;
}

.job-detail .schedule-list .day {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}

.acc-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-sub);
}

.job-acc-cta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.job-acc-cta .job-cta-btn {
  min-width: 240px;
  justify-content: center;
}

@media (max-width: 640px) {
  .job-acc summary {
    padding: 18px 20px;
    gap: 14px;
  }

  .job-acc summary .acc-title {
    font-size: 17px;
  }

  .job-acc-body {
    padding: 22px 20px;
  }

  .job-detail .schedule-list li {
    grid-template-columns: 28px 1fr;
    padding: 9px 12px;
  }
}

/* 募集予定の補足 */
.job-future {
  max-width: 880px;
  margin: 32px auto 0;
  padding: 18px 24px;
  background: var(--primary-faint);
  border: 1px dashed var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.job-future-label {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #fff;
  background: var(--primary);
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 600;
}

@media (max-width: 540px) {
  .job-future {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
  }
}

/* Marquee photo slider (採用ページ等) */
.marquee-section {
  padding: 72px 0;
  background: transparent;
}

.marquee-splide {
  overflow: hidden;
}

.marquee-splide .splide__track {
  overflow: visible;
}

.marquee-splide .splide__slide {
  padding: 0;
}

.marquee-splide .splide__slide img {
  width: 100%;
  height: clamp(180px, 22vw, 280px);
  object-fit: cover;
  border-radius: 10px;
  display: block;
  background: var(--primary-faint);
}

@media (max-width: 720px) {
  .marquee-section {
    padding: 56px 0;
  }

  .marquee-splide .splide__slide img {
    border-radius: 8px;
  }
}

/* Voice cards */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.voice {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.voice .photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-pale);
}

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

.voice h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink);
}

.voice .role {
  font-size: 11px;
  color: var(--primary);
  margin-bottom: 10px;
}

.voice p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* Contact block */
.contact-block {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  overflow: hidden;
}

.contact-block.has-bg-image {
  background-color: #050d1a;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-block.has-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 26, 0.55);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.contact-block.has-bg-image > * {
  position: relative;
  z-index: 1;
}

.contact-block h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.contact-block p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 28px;
}

.contact-block .tel {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 14px;
}

/* =========================================================
   Responsive
   ========================================================= */
/* Avoid hero text overlap with the floating hours card on mid widths */
@media (min-width: 1041px) and (max-width: 1399px) {
  .hero-copy {
    max-width: min(820px, calc(100vw - 600px));
  }

  .hero-copy h1 {
    font-size: clamp(54px, 6.5vw, 96px);
  }

  .hero-copy .sub {
    max-width: 100%;
  }
}

@media (max-width: 1040px) {
  .hero {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .hero-inner {
    height: auto;
    min-height: min(720px, 78svh);
    justify-content: flex-end;
    padding: 180px 56px 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-copy .lead-jp {
    font-size: clamp(21px, 3.1vw, 24px);
    letter-spacing: 0.16em;
  }

  .hero-copy h1 {
    font-size: clamp(66px, 9.2vw, 92px);
    margin-bottom: 26px;
  }

  .hero-copy .sub {
    max-width: 48em;
  }

  .scroll-hint {
    display: none;
  }

  .hero-float {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 4;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 36px 28px;
    background: transparent;
  }

  .hero-hours-card {
    max-width: 620px;
    margin: 0 auto;
    border: 1px solid #dfeaf3;
    box-shadow: none;
  }

  .hero-hours-card {
    width: 100%;
  }

  .hero-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 3;
    padding: 16px 0;
    background: rgba(5, 22, 42, 0.94);
    backdrop-filter: none;
  }

  .hero-strip-inner {
    align-items: stretch;
  }

  .hero-strip .hero-news-mini {
    min-width: 0;
    gap: 12px;
  }

  .hero-news-mini .title {
    min-width: 0;
  }

  .access-grid-2 {
    grid-template-columns: 1fr;
  }

  .access-grid-2 .map-wrap {
    min-height: 320px;
    aspect-ratio: 4/3;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .access-grid-2 .access-info {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .concept-inner,
  .doctor-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hours-access-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .medical-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .icon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

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

  .row-split {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
  }

  .row-split.reverse .row-visual {
    order: 0;
  }
}

/* Status floater — doctorqube リアルタイム連携 (全ページ固定) */
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.status-dot-green {
  background: #22c55e;
}

.status-dot-red {
  background: #ef4444;
}

.status-dot-orange {
  background: #f59e0b;
}

.status-dot-yellow {
  background: #eab308;
}

.status-dot-blue {
  background: var(--primary);
}

.status-dot-gray {
  background: #94a3b8;
}

.status-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 308px;
  background: #fff;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  font-family: var(--font-jp);
  color: var(--text);
  box-shadow:
    0 20px 44px -16px rgba(13, 43, 69, 0.28),
    0 4px 12px -4px rgba(13, 43, 69, 0.1) !important;
  opacity: 0;
  transform: translateY(12px);
  animation: status-float-in 0.55s 0.6s forwards
    cubic-bezier(0.22, 0.9, 0.25, 1);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.status-float.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  animation: none;
}

@keyframes status-float-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.status-float-head {
  display: flex;
  align-items: center;
  padding: 14px 52px 14px 18px;
  background: var(--primary);
  color: #fff;
  position: relative;
}

.status-float-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}

.status-float-close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}

.status-float-close:hover {
  background: rgba(255, 255, 255, 0.32);
}

.status-float-close svg {
  width: 13px;
  height: 13px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.4;
}

.status-float-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px 18px;
}

.status-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.status-group-label {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.status-group-label::before {
  content: "【";
}

.status-group-label::after {
  content: "】";
}

.status-group-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.7;
}

.status-line {
  font-family: var(--font-jp);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.status-line-current {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.status-line-wait {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
}

.status-num {
  color: var(--primary);
  margin: 0 4px;
  font-weight: 600;
}

.status-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  padding: 16px 30px;
  background: var(--primary);
  border: none;
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 10px 22px -10px rgba(13, 43, 69, 0.3) !important;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.15s;
}

.status-pill:hover {
  background: var(--accent);
}

.status-pill.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.status-float.is-empty,
.status-pill.is-empty {
  display: none !important;
}

.status-pill-label {
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .status-float {
    bottom: 14px;
    right: 14px;
    width: calc(100vw - 28px);
    max-width: 320px;
  }

  .status-pill {
    bottom: 14px;
    right: 14px;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Disappearance order keeps the desktop header from overflowing:
   1476px  → logo-meta hides + nav / CTA compact
   1023px  → hamburger mode: nav + お問い合わせ + Web予約 が mobile menu に格納 */
@media (max-width: 1476px) {
  .header-inner {
    padding: 0 28px;
    gap: 14px;
  }

  .header-tools {
    gap: 12px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .header-contact,
  .header-reserve {
    padding: 8px 14px;
  }
}

@media (max-width: 1023px) {
  .header-inner {
    padding: 0 20px;
    gap: 12px;
  }

  .nav,
  .header-contact,
  .header-reserve {
    display: none;
  }

  .header-tools {
    gap: 10px;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 720px) {
  .container,
  .container-wide {
    padding: 0 20px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .header-inner {
    padding: 0 14px;
    gap: 8px;
  }

  .header-tools {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 8px;
    overflow: visible;
  }

  .header .logo {
    width: auto;
    min-width: 0;
    max-width: none;
    overflow: visible;
    gap: 0;
  }

  .header .logo-img {
    height: 34px;
    width: auto;
    max-width: 100%;
  }

  .header-reserve {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 0;
    min-height: auto;
  }

  .hero-copy {
    padding: 0;
    max-width: 100%;
  }

  .hero-floater {
    width: 100px;
    height: 100px;
    left: -14px;
    top: 20px;
    border-width: 4px;
  }

  .features-grid,
  .news-grid,
  .steps,
  .voice-grid,
  .footer-grid,
  .medical-grid {
    grid-template-columns: 1fr;
  }

  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-splide .splide__arrow {
    width: 38px;
    height: 38px;
  }

  .gallery-splide .splide__arrow--prev {
    left: 8px;
  }

  .gallery-splide .splide__arrow--next {
    right: 8px;
  }

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

  .news-row .thumb {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .news-row .body {
    padding: 20px 24px 24px;
  }

  .page-hero {
    padding: 160px 0 80px;
  }

  .hero {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .hero-inner {
    min-height: 92svh;
    height: auto;
    justify-content: flex-end;
    padding: 132px 24px 52px;
  }

  .hero-copy .lead-jp {
    font-size: clamp(18px, 5.2vw, 23px);
    line-height: 1.65;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 13.8vw, 64px);
    line-height: 0.94;
    margin-bottom: 24px;
  }

  .hero-copy .sub {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 2;
    max-width: 23em;
    letter-spacing: 0.01em;
  }

  .hero-break-md {
    display: block;
  }

  .sp-only-br {
    display: inline;
  }

  .hero-float {
    padding: 32px 20px 34px;
  }

  .hero-hours-card {
    padding: 20px 20px 18px;
    overflow: hidden;
  }

  .hero-hours-card .card-title {
    display: block;
  }

  .hero-hours-card .card-title .en-small {
    display: block;
    margin-top: 3px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-hours-card .card-title .hours-legend-inline {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    white-space: normal;
  }

  .hero-strip {
    position: relative;
    z-index: 5;
    padding: 14px 0;
    background: rgba(5, 22, 42, 0.94);
    backdrop-filter: none;
  }

  .hero-strip-inner {
    display: block;
  }

  .hero-strip .hero-news-mini {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-size: 11px;
  }

  .hero-news-mini .title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .notice-bar {
    font-size: 11px;
    line-height: 1.5;
    padding: 7px 14px;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  .notice-bar-message {
    position: static;
    transform: none;
    flex: 1 1 auto;
    justify-content: flex-start;
    max-width: none;
  }

  .notice-bar .tag {
    font-size: 9px;
    padding: 2px 8px;
    flex-shrink: 0;
  }

  .notice-bar a {
    flex-shrink: 0;
    font-size: 11px;
    white-space: nowrap;
  }

  .notice-bar-tools {
    display: none;
  }

  .notice-msg {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 12px,
      #000 calc(100% - 12px),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 12px,
      #000 calc(100% - 12px),
      transparent 100%
    );
  }

  .notice-msg-track {
    display: inline-block;
    padding-left: 100%;
    animation: notice-marquee 18s linear infinite;
  }

  @keyframes notice-marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-100%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .notice-msg {
      overflow: visible;
      white-space: normal;
      -webkit-mask-image: none;
      mask-image: none;
    }

    .notice-msg-track {
      display: inline;
      padding-left: 0;
      animation: none;
    }

    .notice-bar {
      flex-wrap: wrap;
    }
  }

  .contact-block {
    padding: 40px 24px;
  }

  .contact-block .tel {
    font-size: 32px;
  }

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

  .floating .btn {
    padding: 12px 18px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    min-height: 92svh;
    padding: 128px 20px 48px;
  }

  .hero-copy .lead-jp {
    font-size: clamp(17px, 5.4vw, 21px);
    letter-spacing: 0.08em;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 13.6vw, 58px);
    margin-bottom: 22px;
  }

  .hero-copy .sub {
    font-size: 14px;
    line-height: 1.95;
    max-width: 21em;
  }

  .hero-break-sm {
    display: block;
  }

  .header .logo-img {
    height: 32px;
  }
}

@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-copy .lead-jp {
    font-size: 16px;
  }

  .hero-copy .sub {
    font-size: 13px;
  }
}

/* 英語(Google翻訳)時はラベルが長くなるため、ヘッダーをコンパクトに */
html.translated-ltr .header-inner,
html.translated-rtl .header-inner {
  gap: 12px;
}

html.translated-ltr .header-tools,
html.translated-rtl .header-tools {
  gap: 12px;
}

html.translated-ltr .nav,
html.translated-rtl .nav {
  gap: 0;
}

html.translated-ltr .nav a,
html.translated-rtl .nav a {
  padding: 8px 8px;
  font-size: 12px;
}

html.translated-ltr .header-contact,
html.translated-rtl .header-contact,
html.translated-ltr .header-reserve,
html.translated-rtl .header-reserve {
  padding: 8px 14px;
  font-size: 12px;
}

html.translated-ltr .logo-text .jp,
html.translated-rtl .logo-text .jp {
  font-size: 17px;
}

/* 英語化時はロゴメタテキストが長く突き抜けるため、幅に関係なく常に非表示 */
html.translated-ltr .logo-meta,
html.translated-rtl .logo-meta {
  display: none;
}

/* 英語化時は各ブレイクポイントを約 160px 早めて、英語ラベル幅増による
   はみ出しを防ぐ */
@media (max-width: 1199px) {
  html.translated-ltr .nav,
  html.translated-rtl .nav,
  html.translated-ltr .header-contact,
  html.translated-rtl .header-contact,
  html.translated-ltr .header-reserve,
  html.translated-rtl .header-reserve {
    display: none;
  }

  html.translated-ltr .hamburger,
  html.translated-rtl .hamburger {
    display: block;
  }
}

/* =========================================================
   Mobile slide-in menu
   ========================================================= */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(5, 22, 42, 0);
  backdrop-filter: blur(0);
  pointer-events: none;
  transition:
    background-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    backdrop-filter 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-backdrop.is-open {
  background: rgba(5, 22, 42, 0.45);
  backdrop-filter: blur(6px);
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 420px);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 28px 30px 36px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(244, 250, 254, 0.96) 100%
  );
  box-shadow: none;
  transform: translateX(105%);
  transition:
    transform 0.55s cubic-bezier(0.22, 0.9, 0.25, 1),
    box-shadow 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  transform: translateX(0);
  box-shadow: -30px 0 80px rgba(13, 43, 69, 0.18);
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 8px;
}

.menu-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.menu-close:hover {
  opacity: 0.6;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.2s;
  transition-delay: 0ms;
}

.mobile-nav a .jp {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.mobile-nav a .en {
  font-family: var(--font-en);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
}

.mobile-nav a.active {
  color: var(--primary);
}

.mobile-nav a.active .en {
  opacity: 1;
}

.mobile-menu.is-open .mobile-nav a {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--i, 1) * 55ms + 180ms);
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 540ms;
}

.mobile-menu.is-open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-cta .btn {
  justify-content: center;
  padding: 14px 22px;
  font-size: 13px;
  box-shadow: none;
}

.mobile-menu-cta .btn:hover {
  box-shadow: none;
  transform: none;
}

.mobile-menu-info {
  margin-top: auto;
  padding-top: 32px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 640ms;
}

.mobile-menu.is-open .mobile-menu-info {
  opacity: 1;
}

.mobile-menu-info .label {
  display: block;
  font-family: var(--font-en);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mobile-menu-info .tel {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.mobile-menu-info .hours {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.8;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .menu-backdrop,
  .mobile-nav a,
  .mobile-menu-cta,
  .mobile-menu-info {
    transition: none;
  }

  .mobile-nav a,
  .mobile-menu-cta {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Hero entrance animations (text + scroll hint only)
   ========================================================= */
@keyframes heroLineReveal {
  0% {
    transform: translateY(110%);
  }

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

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes heroLineDraw {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Hero entrance animations are gated by .hero-ready so they don't
   play while the intro overlay is still covering the hero. */
.hero-copy .lead-jp {
  opacity: 0;
}

.hero-copy .sub {
  opacity: 0;
}

.hero-ready .hero-copy .lead-jp {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 0.9, 0.25, 1) 0.25s forwards;
}

.hero-ready .hero-copy h1 .line:nth-child(1) .line-inner {
  animation: heroLineReveal 1.05s cubic-bezier(0.22, 0.9, 0.25, 1) 0.45s
    forwards;
}

.hero-ready .hero-copy h1 .line:nth-child(2) .line-inner {
  animation: heroLineReveal 1.05s cubic-bezier(0.22, 0.9, 0.25, 1) 0.58s
    forwards;
}

.hero-ready .hero-copy .sub {
  animation: heroFadeUp 1s cubic-bezier(0.22, 0.9, 0.25, 1) 1.05s forwards;
}

.hero-ready .scroll-hint {
  animation: heroFadeIn 0.6s ease 1.3s forwards;
}

.hero-ready .scroll-line {
  animation: heroLineDraw 1s cubic-bezier(0.22, 0.9, 0.25, 1) 1.4s forwards;
}

.hero-ready .scroll-line-glow {
  animation: scrollFlow 2.4s cubic-bezier(0.55, 0.05, 0.35, 1) 2.2s infinite;
}

@keyframes scrollFlow {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-copy .lead-jp,
  .hero-copy .sub,
  .scroll-hint {
    opacity: 1;
    animation: none;
  }

  .hero-copy h1 .line-inner {
    transform: none;
    animation: none;
  }

  .scroll-line {
    transform: scaleY(1);
    animation: none;
  }

  .scroll-line-glow {
    animation: none;
    opacity: 0;
  }
}

/* =========================================================
   Intro overlay (first session visit only)
   ========================================================= */
html.intro-active,
html.intro-active body {
  overflow: hidden;
}

#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  pointer-events: none;
}

html.intro-skip #intro-overlay {
  display: none;
}

.intro-logo {
  width: clamp(200px, 32vw, 360px);
  will-change: transform, filter;
}

.intro-logo svg {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}

.intro-logo .st0 {
  --logo-color: #61c1be;
}

.intro-logo .st1 {
  --logo-color: #409ad6;
}

.intro-active .intro-logo path,
.intro-active .intro-logo circle {
  fill: transparent;
  stroke: var(--logo-color, #409ad6);
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation:
    intro-draw 1.1s cubic-bezier(0.5, 0.05, 0.2, 1) forwards,
    intro-fill 0.6s ease 1s forwards;
}

@keyframes intro-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes intro-fill {
  to {
    fill: var(--logo-color, #409ad6);
    stroke-opacity: 0;
  }
}

.intro-active #intro-overlay {
  animation: intro-fadeout 0.5s ease 2s forwards;
}

@keyframes intro-fadeout {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-active .intro-logo path,
  .intro-active .intro-logo circle {
    fill: var(--logo-color, #409ad6);
    stroke: none;
    animation: none;
  }

  .intro-active .intro-logo {
    animation: none;
  }

  .intro-active #intro-overlay {
    animation: intro-fadeout 0.4s ease 0.3s forwards;
  }
}

/* =========================================================
   Subpage whole-page fade-in (non-index pages)
   ========================================================= */
@keyframes subpage-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.has-reveal.is-subpage .page-hero,
.has-reveal.is-subpage .breadcrumb,
.has-reveal.is-subpage section.section,
.has-reveal.is-subpage .footer-wave,
.has-reveal.is-subpage .footer {
  opacity: 0;
  animation: subpage-fade-in 1s cubic-bezier(0.22, 0.9, 0.25, 1) 0.15s forwards;
}

.has-reveal.is-subpage.intro-active .page-hero,
.has-reveal.is-subpage.intro-active .breadcrumb,
.has-reveal.is-subpage.intro-active section.section,
.has-reveal.is-subpage.intro-active .footer-wave,
.has-reveal.is-subpage.intro-active .footer {
  animation-delay: 2.4s;
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal.is-subpage .page-hero,
  .has-reveal.is-subpage .breadcrumb,
  .has-reveal.is-subpage section.section,
  .has-reveal.is-subpage .footer-wave,
  .has-reveal.is-subpage .footer {
    opacity: 1 !important;
    animation: none !important;
  }
}

/* =========================================================
   Reveal-on-scroll animations
   ========================================================= */
.has-reveal .section-head,
.has-reveal .row-split,
.has-reveal .step,
.has-reveal .icon-card,
.has-reveal .feature-card,
.has-reveal .medical-card,
.has-reveal .panel-news,
.has-reveal .staff-card,
.has-reveal .news-row,
.has-reveal .concept-inner > *,
.has-reveal .doctor-inner > *,
.has-reveal .hours-access-grid > *,
.has-reveal .voice-card,
.has-reveal .job-card,
.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.9, 0.25, 1),
    transform 0.8s cubic-bezier(0.22, 0.9, 0.25, 1);
  will-change: opacity, transform;
}

.has-reveal .section-head.is-revealed,
.has-reveal .row-split.is-revealed,
.has-reveal .step.is-revealed,
.has-reveal .icon-card.is-revealed,
.has-reveal .feature-card.is-revealed,
.has-reveal .medical-card.is-revealed,
.has-reveal .panel-news.is-revealed,
.has-reveal .staff-card.is-revealed,
.has-reveal .news-row.is-revealed,
.has-reveal .concept-inner > .is-revealed,
.has-reveal .doctor-inner > .is-revealed,
.has-reveal .hours-access-grid > .is-revealed,
.has-reveal .voice-card.is-revealed,
.has-reveal .job-card.is-revealed,
.has-reveal [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .has-reveal .section-head,
  .has-reveal .row-split,
  .has-reveal .step,
  .has-reveal .icon-card,
  .has-reveal .feature-card,
  .has-reveal .medical-card,
  .has-reveal .panel-news,
  .has-reveal .staff-card,
  .has-reveal .news-row,
  .has-reveal .concept-inner > *,
  .has-reveal .doctor-inner > *,
  .has-reveal .hours-access-grid > *,
  .has-reveal .voice-card,
  .has-reveal .job-card,
  .has-reveal [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   Contact Form
   ========================================================= */

.contact-form {
  max-width: 720px;
  margin: 48px auto 0;
}

/* CF7が生成するラッパーへの対応 */
.contact-form .wpcf7 {
  margin: 0;
  padding: 0;
}

.cf-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 12px 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cf-row:first-child {
  border-top: 1px solid var(--line);
}

.cf-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding-top: 10px;
}

.cf-required {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 1px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  font-family: var(--font-jp);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: var(--text-mute);
}

.cf-input--half {
  max-width: 260px;
}

.cf-input--zip {
  max-width: 160px;
}

.cf-select-wrap {
  position: relative;
}

.cf-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-sub);
  pointer-events: none;
}

.cf-select {
  cursor: pointer;
  padding-right: 36px;
}

.cf-select option[value=""] {
  color: var(--text-mute);
}

.cf-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

.cf-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  margin: 36px auto 0;
  text-align: center;

  .wpcf7-list-item {
    margin: 0;

    label {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }
  }
}

.cf-confirm-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}

.cf-confirm-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.cf-submit {
  margin-top: 24px;
  text-align: center;
}

.cf-submit .btn {
  min-width: 200px;
  justify-content: center;
  text-align: center;
  border: none;
  cursor: pointer;
}

.wpcf7-spinner {
  display: block;
  margin: 24px auto 0;
}

.external-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  text-decoration: underline;

  &:hover {
    text-decoration: none;
  }
}

/* =========================================================
   Contact - 患者様向け 電話カード
   ========================================================= */
.phone-card {
  max-width: 640px;
  margin: 40px auto 0;
  padding: 40px 32px;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.phone-card-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-sub);
  margin-bottom: 24px;
}

.phone-card-num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1;
}

.phone-card-num svg {
  color: var(--primary);
  flex-shrink: 0;
}

.phone-card-num:hover {
  color: var(--primary);
}

.phone-card-hours {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-mute);
}

@media (max-width: 600px) {
  .phone-card {
    padding: 32px 20px;
  }
}

/* =========================================================
   Contact - 採用向け フォーム開閉トグル
   ========================================================= */
.form-toggle {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.form-toggle .btn {
  gap: 10px;
}

.form-toggle-chev {
  transition: transform 0.3s ease;
}

.form-toggle .btn.is-open .form-toggle-chev {
  transform: rotate(180deg);
}

/* ラベルの出し分け（初期:開く / 展開時:閉じる） */
.form-toggle [data-label-close] {
  display: none;
}

.form-toggle .btn.is-open [data-label-open] {
  display: none;
}

.form-toggle .btn.is-open [data-label-close] {
  display: inline;
}

/* grid-template-rows のアニメーションで滑らかに開閉 */
.form-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.form-collapse.is-open {
  grid-template-rows: 1fr;
}

.form-collapse-inner {
  overflow: hidden;
  min-height: 0;
}

.form-collapse .contact-form {
  margin-top: 24px;
  padding: 40px 48px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 43, 69, 0.06);
}

@media (max-width: 600px) {
  .form-collapse .contact-form {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-collapse,
  .form-toggle-chev {
    transition: none;
  }
}

@media (max-width: 600px) {
  .cf-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cf-label {
    padding-top: 0;
  }

  .cf-input--half {
    max-width: 100%;
  }
}

/* =========================================================
   Thanks Page
   ========================================================= */

.thanks-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thanks-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin-bottom: 20px;
}

.thanks-lead {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 24px;
}

.thanks-note {
  font-size: 0.82rem;
  color: var(--text-mute);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  text-align: left;
  margin-bottom: 40px;
  line-height: 1.7;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .thanks-lead {
    text-align: left;
  }
}

@media screen and (max-width: 782px) {
  #wpadminbar ul li#wp-admin-bar-theme-switcha {
    display: block !important;
  }
}
