/* ==========================================================================
   さくら通り整骨院  /  Global Stylesheet
   白 × ライトブルー × さくら色 / 清潔感・安心感・親しみやすさ
   ========================================================================== */

:root {
  /* Colors */
  --c-primary:       #2e7fb8;   /* ライトブルー（メイン） */
  --c-primary-dark:  #1f5e8c;
  --c-primary-deep:  #174a70;
  --c-primary-soft:  #5fa8d3;
  --c-sakura:        #e8839b;   /* さくら色（アクセント） */
  --c-sakura-dark:   #d4607e;
  --c-sakura-pale:   #fbeef2;
  --c-bg:            #ffffff;
  --c-bg-soft:       #f2f8fc;   /* うすい水色 */
  --c-bg-cream:      #fdf9f6;
  --c-text:          #2f3a42;
  --c-text-soft:     #56646e;
  --c-text-mute:     #7b8893;
  --c-border:        #e3ecf2;
  --c-success:       #3a9e6e;

  /* Shape */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(46, 127, 184, 0.08);
  --shadow-md: 0 6px 20px rgba(46, 127, 184, 0.10);
  --shadow-lg: 0 14px 44px rgba(46, 127, 184, 0.14);

  /* Layout */
  --container: 1140px;
  --gap: 24px;
  --header-h: 78px;

  /* Type */
  --font-body: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-round: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Maru Gothic ProN", sans-serif;
}

/* Reset ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-primary); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-round);
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  letter-spacing: .03em;
}
p { margin: 0 0 1em; }
table { border-spacing: 0; }

/* Layout helpers ---------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.section-soft { background: var(--c-bg-soft); }
.section-sakura { background: var(--c-sakura-pale); }
.section-deep { background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-soft) 100%); color: #fff; }
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .en {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .28em;
  color: var(--c-sakura);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-head .en::before,
.section-head .en::after {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  opacity: .5;
}
.section-head h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  color: var(--c-primary-dark);
}
.section-deep .section-head h2 { color: #fff; }
.section-head p {
  margin: 16px auto 0;
  color: var(--c-text-soft);
  max-width: 640px;
}
.section-deep .section-head p { color: rgba(255,255,255,.85); }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-round);
  border-radius: 999px;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--c-sakura);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 131, 155, .35);
}
.btn-primary:hover { background: var(--c-sakura-dark); color: #fff; }
.btn-secondary {
  background: #fff;
  color: var(--c-primary-dark);
  border: 2px solid var(--c-primary-soft);
}
.btn-secondary:hover { background: var(--c-bg-soft); color: var(--c-primary-dark); }
.btn-ghost {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; color: var(--c-primary-dark); }
.btn-lg { padding: 18px 42px; font-size: 16px; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-primary-dark);
}
.brand:hover { color: var(--c-primary-dark); }
.brand-mark {
  width: 46px; height: 46px;
  flex-shrink: 0;
  color: var(--c-sakura);
  background: var(--c-sakura-pale);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-text { line-height: 1.25; }
.brand-text .name {
  display: block;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 19px;
  color: var(--c-primary-dark);
}
.brand-text .sub {
  display: block;
  font-size: 10.5px;
  color: var(--c-text-mute);
  letter-spacing: .14em;
}

.header-right { display: flex; align-items: center; gap: 8px; }
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
  margin-right: 8px;
}
.header-tel .num {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .02em;
}
.header-tel .num svg { width: 16px; height: 16px; color: var(--c-sakura); }
.header-tel .note { font-size: 11px; color: var(--c-text-mute); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 9px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--c-text);
  border-radius: 999px;
}
.nav a:hover, .nav a.active {
  color: var(--c-primary-dark);
  background: var(--c-bg-soft);
}
.nav .btn {
  margin-left: 10px;
  padding: 11px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: #fff;
}
.nav-toggle::after {
  content: "メニュー";
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary-dark);
  letter-spacing: .05em;
  line-height: 1;
  white-space: nowrap;
}
.nav-toggle.is-open::after { content: "閉じる"; }
.nav-toggle span {
  position: relative;
  display: block;
  width: 22px; height: 2px;
  margin: 7px 0;
  background: var(--c-primary-dark);
  border-radius: 2px;
  transition: .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: var(--c-primary-dark);
  border-radius: 2px;
  transition: .2s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(232,131,155,.14) 0, transparent 42%),
    radial-gradient(circle at 8% 90%, rgba(95,168,211,.16) 0, transparent 48%),
    linear-gradient(160deg, #eaf5fc 0%, #fdfefe 55%, var(--c-sakura-pale) 100%);
  padding: 96px 0 88px;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--c-sakura-dark);
  background: #fff;
  border: 1.5px solid rgba(232,131,155,.45);
  border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero .eyebrow svg { width: 15px; height: 15px; }
.hero h1 {
  font-size: clamp(30px, 4.3vw, 50px);
  line-height: 1.4;
  color: var(--c-primary-deep);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-sakura-dark);
  background: linear-gradient(transparent 64%, rgba(232,131,155,.28) 64%);
  padding: 0 2px;
}
.hero p.lead {
  font-size: 16.5px;
  color: var(--c-text-soft);
  margin-bottom: 34px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary-dark);
  box-shadow: var(--shadow-sm);
}
.hero-badges .badge svg { width: 16px; height: 16px; color: var(--c-sakura); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-visual .photo {
  aspect-ratio: 4 / 4.6;
  border-radius: 32px 32px 32px 120px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.hero-visual .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.hero-card .ico {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--c-bg-soft);
  color: var(--c-primary);
  border-radius: 50%;
}
.hero-card .ico svg { width: 22px; height: 22px; }
.hero-card .t { font-size: 14px; font-weight: 700; color: var(--c-primary-dark); line-height: 1.5; }
.hero-card .s { font-size: 12px; color: var(--c-text-mute); }

/* Symptom checklist -------------------------------------------------------- */
.symptoms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.symptom {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.symptom:hover {
  border-color: rgba(232,131,155,.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.symptom .check {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--c-sakura-pale);
  color: var(--c-sakura-dark);
  border-radius: 50%;
}
.symptom .check svg { width: 16px; height: 16px; }
.symptoms-closing {
  text-align: center;
  margin-top: 36px;
}
.symptoms-closing .msg {
  display: inline-block;
  font-family: var(--font-round);
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 700;
  color: var(--c-primary-dark);
  background: linear-gradient(transparent 64%, rgba(95,168,211,.25) 64%);
  padding: 0 6px;
  margin-bottom: 20px;
}

/* Menu cards --------------------------------------------------------------- */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform .2s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.menu-card .photo { aspect-ratio: 16 / 10; overflow: hidden; }
.menu-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.menu-card:hover .photo img { transform: scale(1.05); }
.menu-card .body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.menu-card .tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--c-sakura-dark);
  margin-bottom: 8px;
}
.menu-card h3 { font-size: 20px; color: var(--c-primary-dark); margin-bottom: 10px; }
.menu-card p { font-size: 14px; color: var(--c-text-soft); margin: 0 0 18px; flex: 1; }
.menu-card .price {
  font-size: 13px;
  color: var(--c-text-mute);
}
.menu-card .price strong {
  font-size: 21px;
  color: var(--c-sakura-dark);
  font-family: var(--font-round);
  margin-right: 2px;
}

/* Feature cards (selling points) ------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.card {
  background: #fff;
  padding: 38px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card .icon {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-bg-soft);
  color: var(--c-primary);
  margin: 0 auto 20px;
}
.card .icon svg { width: 28px; height: 28px; }
.card:nth-child(even) .icon { background: var(--c-sakura-pale); color: var(--c-sakura-dark); }
.card h3 { font-size: 18px; color: var(--c-primary-dark); margin-bottom: 12px; }
.card p { font-size: 14px; color: var(--c-text-soft); margin: 0; line-height: 1.85; }

/* Hours table --------------------------------------------------------------- */
.hours-wrap { max-width: 760px; margin: 0 auto; }
.hours-table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  border-collapse: separate;
}
.hours-table th, .hours-table td {
  padding: 16px 10px;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid var(--c-border);
}
.hours-table thead th {
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-round);
  font-size: 14px;
  border-bottom: 0;
}
.hours-table thead th:first-child { text-align: left; padding-left: 24px; }
.hours-table tbody th {
  text-align: left;
  padding-left: 24px;
  font-weight: 600;
  color: var(--c-primary-dark);
  background: var(--c-bg-soft);
  white-space: nowrap;
}
.hours-table tbody tr:last-child th,
.hours-table tbody tr:last-child td { border-bottom: 0; }
.hours-table .ok { color: var(--c-primary); font-weight: 700; font-size: 18px; }
.hours-table .half { color: var(--c-sakura-dark); font-weight: 700; font-size: 15px; }
.hours-table .no { color: #c9d4dc; font-size: 18px; }
.hours-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--c-text-soft);
  text-align: center;
}
.hours-note .pin { color: var(--c-sakura-dark); font-weight: 700; }

/* Greeting (director) ------------------------------------------------------- */
.greeting {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.greeting .photo {
  border-radius: 28px 28px 100px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 5px solid #fff;
  aspect-ratio: 4 / 4.4;
}
.greeting .photo img { width: 100%; height: 100%; object-fit: cover; }
.greeting .text h3 {
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--c-primary-dark);
  margin-bottom: 18px;
}
.greeting .text p { color: var(--c-text-soft); font-size: 15.5px; line-height: 2.05; }
.greeting .sign {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.greeting .sign .role { font-size: 13px; color: var(--c-text-mute); }
.greeting .sign .name {
  font-family: var(--font-round);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-primary-dark);
}

/* Page hero (inner pages) --------------------------------------------------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(circle at 85% 25%, rgba(232,131,155,.16) 0, transparent 45%),
    linear-gradient(150deg, #e7f3fb 0%, #fdfefe 70%, var(--c-sakura-pale) 100%);
  padding: 64px 0 56px;
  overflow: hidden;
  text-align: center;
}
.page-hero .en {
  display: block;
  font-size: 12.5px;
  letter-spacing: .3em;
  color: var(--c-sakura);
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(26px, 3.8vw, 38px);
  color: var(--c-primary-deep);
  margin-bottom: 12px;
}
.page-hero p { color: var(--c-text-soft); max-width: 600px; margin: 0 auto; }

.breadcrumb {
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-border);
}
.breadcrumb .container {
  display: flex;
  gap: 10px;
  font-size: 13px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--c-text-mute);
}
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb .sep { color: #c4d3dd; }

/* Price tables (menu page) --------------------------------------------------- */
.price-block { max-width: 880px; margin: 0 auto 64px; }
.price-block:last-child { margin-bottom: 0; }
.price-head {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 28px;
}
.price-head .photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-head .photo img { width: 100%; height: 100%; object-fit: cover; }
.price-head .tagline {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-sakura-dark);
  margin-bottom: 6px;
}
.price-head h3 {
  font-size: clamp(20px, 2.6vw, 25px);
  color: var(--c-primary-dark);
  margin-bottom: 12px;
}
.price-head p { font-size: 14.5px; color: var(--c-text-soft); margin: 0; }

.price-table {
  width: 100%;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border-collapse: separate;
  box-shadow: var(--shadow-sm);
}
.price-table th, .price-table td {
  padding: 16px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
}
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: 0; }
.price-table th {
  font-weight: 600;
  color: var(--c-text);
  width: 56%;
  background: #fff;
}
.price-table th small { display: block; font-weight: 400; font-size: 12.5px; color: var(--c-text-mute); }
.price-table td {
  text-align: right;
  font-family: var(--font-round);
  font-weight: 700;
  color: var(--c-sakura-dark);
  font-size: 17px;
  white-space: nowrap;
}
.price-table td small { font-size: 12px; color: var(--c-text-mute); font-weight: 400; }
.price-note { margin-top: 14px; font-size: 13px; color: var(--c-text-mute); }

.insurance-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1.5px solid rgba(95,168,211,.45);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.insurance-banner .ico {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  background: var(--c-bg-soft);
  color: var(--c-primary);
  border-radius: 50%;
}
.insurance-banner .ico svg { width: 28px; height: 28px; }
.insurance-banner h3 { font-size: 18px; color: var(--c-primary-dark); margin-bottom: 6px; }
.insurance-banner p { font-size: 14px; color: var(--c-text-soft); margin: 0; }

/* Flow steps (first page) ----------------------------------------------------- */
.flow-list { max-width: 820px; margin: 0 auto; }
.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  padding-bottom: 44px;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-item::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 76px;
  bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(180deg, rgba(95,168,211,.5) 0 7px, transparent 7px 14px);
}
.flow-item:last-child::before { display: none; }
.flow-item .num {
  width: 72px; height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--c-primary);
  border: 3px solid var(--c-primary-soft);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.flow-item.final .num {
  background: var(--c-sakura);
  border-color: var(--c-sakura);
  color: #fff;
}
.flow-item .body {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
}
.flow-item h3 { font-size: 19px; color: var(--c-primary-dark); margin-bottom: 10px; }
.flow-item p { font-size: 14.5px; color: var(--c-text-soft); margin: 0; }
.flow-item .time {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 14px;
  background: var(--c-sakura-pale);
  color: var(--c-sakura-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* Bring list ------------------------------------------------------------------ */
.bring-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  max-width: 880px;
  margin: 0 auto;
}
.bring {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
}
.bring .ico {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: var(--c-bg-soft);
  color: var(--c-primary);
  border-radius: 50%;
}
.bring .ico svg { width: 28px; height: 28px; }
.bring h4 { font-size: 16.5px; color: var(--c-primary-dark); margin-bottom: 8px; }
.bring p { font-size: 13.5px; color: var(--c-text-soft); margin: 0; }

/* FAQ --------------------------------------------------------------------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.faq details[open] { border-color: rgba(232,131,155,.5); box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 20px 24px;
  font-weight: 700;
  font-family: var(--font-round);
  color: var(--c-primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 15.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.faq summary::after {
  content: "+";
  margin-left: auto;
  font-size: 24px;
  font-weight: 400;
  color: var(--c-text-mute);
  transition: transform .2s;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--c-sakura); }
.faq .answer {
  padding: 0 24px 22px 72px;
  color: var(--c-text-soft);
  font-size: 14.5px;
  line-height: 1.95;
}

/* Clinic gallery / equipment ---------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.gallery .ph { aspect-ratio: 4 / 3; overflow: hidden; }
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary-dark);
}
.gallery figcaption small {
  display: block;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--c-text-mute);
  margin-top: 2px;
}

/* Profile table ---------------------------------------------------------------- */
.info-table {
  width: 100%;
  border-collapse: separate;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
}
.info-table th, .info-table td {
  padding: 17px 24px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
  line-height: 1.8;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }
.info-table th {
  width: 190px;
  background: var(--c-bg-soft);
  color: var(--c-primary-dark);
  font-weight: 600;
}
.info-table td a { color: var(--c-primary); text-decoration: underline; }

/* Access ------------------------------------------------------------------------ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  background:
    linear-gradient(rgba(95,168,211,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95,168,211,.12) 1px, transparent 1px),
    var(--c-bg-soft);
  background-size: 28px 28px;
  aspect-ratio: 4 / 3.4;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--c-text-mute);
  font-size: 13.5px;
  padding: 24px;
}
.map-frame .pin-ico {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--c-sakura);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.map-frame .pin-ico svg { width: 28px; height: 28px; }
.map-frame strong {
  display: block;
  font-family: var(--font-round);
  color: var(--c-primary-dark);
  font-size: 16px;
  margin-bottom: 6px;
}

.route-list { list-style: none; padding: 0; margin: 0; }
.route-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--c-border);
  font-size: 14.5px;
  color: var(--c-text-soft);
  align-items: flex-start;
}
.route-list li:last-child { border-bottom: 0; }
.route-list .ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--c-bg-soft);
  color: var(--c-primary);
  border-radius: 50%;
}
.route-list .ico svg { width: 20px; height: 20px; }
.route-list strong {
  display: block;
  color: var(--c-primary-dark);
  font-size: 15px;
  font-family: var(--font-round);
}

/* CTA strip ---------------------------------------------------------------------- */
.cta-strip { text-align: center; }
.cta-strip h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 16px;
  color: #fff;
}
.cta-strip p {
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin: 0 auto 34px;
}
.cta-strip .tel-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-round);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
}
.cta-strip .tel-big svg { width: 30px; height: 30px; }
.cta-strip .tel-note { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 6px; }
.cta-strip .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Footer ---------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-primary-deep);
  color: rgba(255,255,255,.78);
  padding: 68px 0 26px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-grid h4 {
  color: #fff;
  font-size: 13.5px;
  letter-spacing: .18em;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--c-sakura); }
.footer-brand .brand-text .name { color: #fff; }
.footer-brand .brand-text .sub { color: rgba(255,255,255,.55); }
.footer-brand .brand-mark { background: rgba(255,255,255,.12); color: #f5b9c8; }
.footer-brand p {
  margin-top: 18px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.9;
}
.footer-hours {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,.7);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.demo-note {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
}

/* Floating reserve button -------------------------------------------------- */
.tel-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--c-sakura);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-round);
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(232,131,155,.45), 0 2px 8px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
}
.tel-float:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,131,155,.55), 0 2px 8px rgba(0,0,0,.15);
}
.tel-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Animations -------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1060px) {
  .header-tel { display: none; }
}

@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .cards, .menu-cards { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-card { left: -10px; }
  .greeting { grid-template-columns: 1fr; gap: 32px; max-width: 620px; }
  .greeting .photo { max-width: 340px; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .price-head { grid-template-columns: 1fr; gap: 22px; }
  .price-head .photo { max-width: 460px; }
  .bring-list { grid-template-columns: 1fr; max-width: 520px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .container { padding: 0 20px; }
  .brand-text .name { font-size: 16.5px; }
  .brand-text .sub { display: none; }

  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(320px, 85vw);
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    display: block;
    padding: 20px;
    background: #fff;
    box-shadow: -12px 0 40px rgba(46,127,184,.18);
    transform: translateX(100%);
    transition: transform .25s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    display: block;
    padding: 17px 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--c-primary-dark);
    border-bottom: 1px solid var(--c-border);
    border-radius: 0;
    position: relative;
  }
  .nav a::after {
    content: "›";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-text-mute);
    font-size: 22px;
    font-weight: 400;
  }
  .nav a:hover, .nav a.active { color: var(--c-sakura-dark); background: var(--c-sakura-pale); }
  .nav .btn {
    display: block;
    width: 100%;
    margin: 24px 0 0;
    padding: 16px;
    text-align: center;
  }
  .nav .btn::after { display: none; }

  .hero { padding: 56px 0 72px; }
  .hero h1 { font-size: clamp(27px, 7.4vw, 34px); }
  .hero-visual .photo { border-radius: 24px 24px 24px 80px; }
  .hero-card { position: static; margin-top: 18px; max-width: none; }

  .cards, .menu-cards, .gallery { grid-template-columns: 1fr; }
  .symptoms { grid-template-columns: 1fr; }
  .greeting .photo { max-width: 280px; }

  .hours-table th, .hours-table td { padding: 12px 6px; font-size: 13px; }
  .hours-table thead th:first-child,
  .hours-table tbody th { padding-left: 14px; }

  .info-table th { width: 110px; font-size: 13px; }
  .info-table th, .info-table td { padding: 14px 16px; font-size: 14px; }
  .price-table th, .price-table td { padding: 14px 16px; font-size: 14px; }
  .price-table td { font-size: 15px; }

  .flow-item { grid-template-columns: 56px 1fr; gap: 18px; }
  .flow-item .num { width: 56px; height: 56px; font-size: 19px; }
  .flow-item::before { left: 27px; top: 62px; }
  .flow-item .body { padding: 20px 22px; }
  .faq .answer { padding-left: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .tel-float { display: flex; }
}
