/* moja_run run — private dog salon */

:root {
  /* Soft, warm, Blume-inspired palette */
  --pink-50: #fbf4f0;
  --pink-100: #f3e4dc;
  --pink-200: #e8cdbf;
  --pink-300: #d9b5a3;
  --pink-400: #c89a86;
  --pink-500: #b07e69;
  --pink-600: #8d5f4b;
  --cream: #f7f1e8;
  --cream-2: #efe6d8;
  --ink: #3a2a20;
  --ink-2: #5a4639;
  --muted: #927e6c;
  --line: #e4d5c4;
  --sage: #9aa68e;
  --tan: #c7a684;
  --shadow: 0 8px 30px rgba(90, 70, 57, 0.10);
  --shadow-lg: 0 24px 60px rgba(90, 70, 57, 0.15);
  /* keep brand pink accessible as a separate variable for logo elements */
  --brand-pink: #f5a4b8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.85;
  overflow-x: hidden;
  letter-spacing: 0.03em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.en {
  font-family: "Quicksand", "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.serif {
  font-family: "Cormorant Garamond", "Noto Serif JP", "Hiragino Mincho ProN", serif;
}

h1, h2, h3, h4, h5 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== Top Bar ===== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform .35s ease;
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-logo {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand-pink);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(196, 134, 154, 0.3);
  overflow: hidden;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-name {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-sub {
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: lowercase;
  margin-top: -2px;
  white-space: nowrap;
}
.brand { flex-shrink: 0; }

/* hours pill in the topbar — mobile only */
.topbar-hours { display: none; }

.topbar-license { align-self: center; }
@media (max-width: 980px) { .topbar-license { display: none; } }

.nav {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: nowrap;
}
.nav a {
  font-size: 13px;
  position: relative;
  padding: 6px 0;
  color: var(--ink-2);
  transition: color .2s;
}
.nav a:hover { color: var(--pink-600); }
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 2px; background: var(--pink-400);
  transition: width .25s ease, left .25s ease;
}
.nav a:hover::after { width: 100%; left: 0; }

.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-400);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none; cursor: pointer;
  box-shadow: 0 6px 18px rgba(239,137,161,0.4);
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: inherit;
}
.cta-btn:hover {
  background: var(--pink-500);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(239,137,161,0.5);
}
.cta-btn.ghost {
  background: transparent;
  color: var(--pink-600);
  border: 1.5px solid var(--pink-400);
  box-shadow: none;
}
.cta-btn.ghost:hover { background: var(--pink-100); }

.cta-btn .dot {
  width: 6px; height: 6px; border-radius: 50%; background: white;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ===== Sections ===== */
section {
  padding: 120px 32px;
  position: relative;
}
.wrap { max-width: 1200px; margin: 0 auto; }

.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
}
.section-head .eyebrow {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--pink-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: 36px;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}
.section-head h2 .accent {
  color: var(--pink-500);
}

/* ===== Hero ===== */
.hero {
  padding: 140px 32px 80px;
  min-height: 92vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(200, 154, 134, 0.18), transparent 70%),
    radial-gradient(50% 40% at 10% 90%, rgba(154, 166, 142, 0.12), transparent 70%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}
/* mini logo beside headline — desktop hides it (full hero-art used instead) */
.hero-head-text { min-width: 0; }
.hero-logo-mini { display: none; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.hero-eyebrow .pin {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-400);
}

.hero h1 {
  font-size: 64px;
  line-height: 1.3;
  text-wrap: balance;
  font-weight: 700;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
}
.hero h1 .pop {
  display: inline-block;
  position: relative;
  color: var(--pink-600);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
}
.hero h1 .pop::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px; bottom: 4px;
  height: 12px;
  background: var(--pink-100);
  z-index: -1;
  border-radius: 2px;
}

.hero p.lead {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 48px;
  display: flex; gap: 36px;
  border-top: 1px dashed var(--line);
  padding-top: 24px;
  flex-wrap: wrap;
}
.hero-meta .item .label {
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--pink-500);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-meta .item .val {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

/* Hero visual */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  justify-self: center;
}
.hero-blob {
  position: absolute; inset: 4% 8% 4% 4%;
  z-index: 1;
  background: var(--cream-2);
  border-radius: 48% 52% 56% 44% / 52% 48% 52% 48%;
  animation: blob 14s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(154,126,108,0.18);
  border: 1px dashed var(--pink-300);
}
@keyframes blob {
  0%, 100% { border-radius: 48% 52% 56% 44% / 52% 48% 52% 48%; }
  50% { border-radius: 56% 44% 48% 52% / 44% 56% 48% 52%; }
}
.hero-logo {
  position: absolute; inset: 0;
  z-index: 3;
  display: grid; place-items: center;
}
.hero-logo img {
  width: 80%; height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(184,99,124,0.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  position: absolute;
  z-index: 4;
  background: white;
  border-radius: 50%;
  width: 120px; height: 120px;
  display: grid; place-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  border: 1px dashed var(--pink-300);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.hero-badge.b1 {
  top: 4%; right: -2%;
  background: white;
  padding: 0;
  border: 1px dashed var(--pink-300);
  width: 130px; height: 130px;
}
.hero-badge.b1 svg { width: 100%; height: 100%; }
.hero-badge.b2 {
  bottom: 6%; left: -4%;
  background: var(--pink-600);
  color: var(--cream);
  width: 110px; height: 110px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 4px solid var(--cream);
  line-height: 1.6;
  text-align: center;
  position: absolute;
  display: grid;
  place-items: center;
}
.hero-badge.b2 .paw-ico {
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  color: var(--cream);
  opacity: 0.6;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

/* paw scatter — natural walking-trail pattern */
.paw-scatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.paw {
  position: absolute;
  color: var(--pink-300);
}
/* left wander */
.paw.p1  { top:  9%; left:  4%; width: 56px; height: 56px; opacity: 0.42; transform: rotate(-14deg); }
.paw.p2  { top: 17%; left: 11%; width: 28px; height: 28px; opacity: 0.32; transform: rotate( 22deg); }
/* p3 retired — kept conflicting with hero content */
.paw.p3  { display: none; }
.paw.p4  { top: 48%; left:  9%; width: 24px; height: 24px; opacity: 0.28; transform: rotate( 10deg); }
.paw.p5  { top: 60%; left: 15%; width: 52px; height: 52px; opacity: 0.40; transform: rotate(-18deg); }
.paw.p6  { top: 84%; left: 14%; width: 30px; height: 30px; opacity: 0.30; transform: rotate( 38deg); }
/* right side — sparser */
.paw.p7  { top: 14%; right: 6%; width: 36px; height: 36px; opacity: 0.34; transform: rotate( 18deg); }
.paw.p8  { top: 38%; right: 3%; width: 72px; height: 72px; opacity: 0.42; transform: rotate( -8deg); }
.paw.p9  { top: 62%; right: 9%; width: 24px; height: 24px; opacity: 0.26; transform: rotate( 28deg); }
.paw.p10 { top: 82%; right: 4%; width: 48px; height: 48px; opacity: 0.36; transform: rotate(-22deg); }

.scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint .bar {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--pink-400));
  animation: scrollbar 2s ease-in-out infinite;
}
@keyframes scrollbar {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== Groomer ===== */
.groomer {
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.groomer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.groomer-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 0;
}
.groomer-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.groomer-photo .ribbon {
  position: absolute;
  top: 20px; left: 20px;
  background: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--pink-600);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.groomer-photo .stamp {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 120px; height: 120px;
  background: var(--pink-400);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  border: 4px dashed white;
  letter-spacing: 0.05em;
}

.groomer-info {
  padding-top: 0;
}
.groomer-info .label {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--pink-500);
  margin-bottom: 12px;
  margin-top: 0;
}
.groomer-info h3 {
  font-size: 38px;
  margin: 0 0 6px;
  line-height: 1.2;
  font-weight: 700;
}
.groomer-info h3 .ja {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-left: 12px;
}
.groomer-info .role {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--pink-600);
  text-transform: uppercase;
  margin: 0 0 24px;
  font-weight: 600;
}
.groomer-info p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.groomer-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 24px 0;
}
.groomer-tags .t {
  background: white;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
}
.groomer-family {
  margin-top: 32px;
  background: white;
  border-radius: 18px;
  padding: 0;
  border: 1px dashed var(--pink-300);
  overflow: hidden;
  display: inline-grid;
  grid-template-columns: 280px auto;
  align-items: stretch;
  max-width: 100%;
}
.groomer-family .fam-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  background: var(--pink-50);
  position: relative;
  overflow: hidden;
  padding: 12px;
}
.groomer-family .fam-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 8px;
}
.groomer-family .fam-body {
  padding: 18px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: max-content;
}
.groomer-family .fam-label {
  text-align: center;
}
.groomer-family .fam-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
}
.groomer-family .pet {
  flex: 0 0 auto;
}
.groomer-family .fam-photo {
  width: 100%;
  height: 100%;
  background: var(--pink-50);
  position: relative;
  overflow: hidden;
  padding: 12px;
}
.groomer-family .fam-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 8px;
}
.groomer-family .fam-photo .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--pink-50);
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  font-family: "Cormorant Garamond", "Hiragino Mincho ProN", serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--pink-600);
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: lowercase;
}
.groomer-family .fam-photo .badge::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%23b07e69' opacity='0.9'><circle cx='26' cy='28' r='10'/><circle cx='50' cy='18' r='10.5'/><circle cx='74' cy='28' r='10'/><circle cx='14' cy='52' r='8'/><circle cx='86' cy='52' r='8'/><path d='M50 48 C34 48 24 60 24 74 C24 84 32 90 40 90 C44 90 48 88 50 88 C52 88 56 90 60 90 C68 90 76 84 76 74 C76 60 66 48 50 48 Z'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.groomer-family .fam-body {
  /* layout already defined above */
}
.groomer-family .fam-label {
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  letter-spacing: 0.25em;
  color: var(--pink-600);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.groomer-family .fam-row-second {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.groomer-family .fam-row > .lead {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 2px;
}
.groomer-family .pet {
  display: flex; align-items: center; gap: 10px;
}
.groomer-family .pet .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--pink-100);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 2px solid var(--pink-300);
  overflow: hidden;
}
.groomer-family .pet .avatar img {
  width: 86%; height: 86%;
  object-fit: contain;
}
.groomer-family .pet .pet-info .name {
  font-size: 14px;
  font-weight: 700;
}
.groomer-family .pet .pet-info .breed {
  font-size: 11px;
  color: var(--muted);
}
.groomer-family .pet .pet-info .birthday {
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  color: var(--pink-500);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

/* ===== Statement banner ===== */
.statement {
  background: linear-gradient(135deg, #efe2d2 0%, #e6d3c0 60%, #d9c1a8 100%);
  color: var(--ink);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: white;
  opacity: 0.35;
}
.statement::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: white;
  opacity: 0.25;
}
.statement .en-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--pink-600);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.statement h3 {
  font-size: 36px;
  line-height: 1.9;
  font-weight: 500;
  margin: 0 0 24px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
}
.statement h3 .hl {
  background: linear-gradient(transparent 65%, rgba(255,255,255,0.7) 65%);
  padding: 0 6px;
  white-space: nowrap;
}
.statement p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 2.2;
  position: relative; z-index: 1;
  letter-spacing: 0.08em;
}

/* ===== Strengths ===== */
.strengths {
  background: white;
  border-top: 1px solid var(--line);
}
.strengths-head {
  text-align: center;
  margin-bottom: 60px;
}
.strengths-head .eyebrow {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--pink-500);
  margin-bottom: 12px;
}
.strengths-head h2 {
  font-size: 36px;
  line-height: 1.4;
  margin: 0;
  font-weight: 700;
}
.strengths-head h2 .accent { color: var(--pink-500); }
.strengths-head .sub {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.strength-card {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%23d9b5a3' opacity='0.18'><circle cx='26' cy='28' r='10'/><circle cx='50' cy='18' r='10.5'/><circle cx='74' cy='28' r='10'/><circle cx='14' cy='52' r='8'/><circle cx='86' cy='52' r='8'/><path d='M50 48 C34 48 24 60 24 74 C24 84 32 90 40 90 C44 90 48 88 50 88 C52 88 56 90 60 90 C68 90 76 84 76 74 C76 60 66 48 50 48 Z'/></g></svg>") no-repeat right -12px bottom -12px / 100px 100px,
    var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 24px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--pink-300);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%23ef89a1' opacity='0.22'><circle cx='26' cy='28' r='10'/><circle cx='50' cy='18' r='10.5'/><circle cx='74' cy='28' r='10'/><circle cx='14' cy='52' r='8'/><circle cx='86' cy='52' r='8'/><path d='M50 48 C34 48 24 60 24 74 C24 84 32 90 40 90 C44 90 48 88 50 88 C52 88 56 90 60 90 C68 90 76 84 76 74 C76 60 66 48 50 48 Z'/></g></svg>") no-repeat right -12px bottom -12px / 100px 100px,
    var(--cream);
}
.strength-card .ico { display: none !important; }
.strength-card .num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: "Klee One", "Zen Maru Gothic", serif;
  font-style: normal;
  font-size: 36px;
  font-weight: 600;
  color: var(--pink-500);
  line-height: 1;
}
.strength-card .ico {
  display: none;
}
.strength-card h4 {
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.5;
}
.strength-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.8;
}

/* ===== Recommended For ===== */
.recommend {
  background: var(--cream-2);
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.recommend-card {
  background: white;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--line);
}
.recommend-card .check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink-400);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 700;
}
.recommend-card .body h4 {
  font-size: 15px;
  margin: 4px 0 6px;
  font-weight: 700;
}
.recommend-card .body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== Concept ===== */
.concept {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept-img {
  aspect-ratio: 4/5;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.concept-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-img .ph-label { display: none; }
.concept-img .corner {
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--pink-400);
  color: white;
  font-size: 10px;
  letter-spacing: 0.2em;
  display: grid; place-items: center;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  top: -20px; right: -20px;
  text-transform: uppercase;
}

.concept h3 {
  font-size: 30px;
  line-height: 1.5;
  margin: 0 0 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.concept h3 .hl {
  background: linear-gradient(transparent 65%, var(--pink-100) 65%);
  padding: 0 4px;
}
.concept p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0 0 16px;
}
.concept-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.concept-list .pill {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 16px 20px;
  text-align: center;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%23d9b5a3' opacity='0.18'><circle cx='26' cy='28' r='10'/><circle cx='50' cy='18' r='10.5'/><circle cx='74' cy='28' r='10'/><circle cx='14' cy='52' r='8'/><circle cx='86' cy='52' r='8'/><path d='M50 48 C34 48 24 60 24 74 C24 84 32 90 40 90 C44 90 48 88 50 88 C52 88 56 90 60 90 C68 90 76 84 76 74 C76 60 66 48 50 48 Z'/></g></svg>") no-repeat right -8px bottom -8px / 70px 70px,
    var(--cream);
  transition: transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
}
.concept-list .pill:hover {
  transform: translateY(-4px);
  border-color: var(--pink-300);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='%23ef89a1' opacity='0.22'><circle cx='26' cy='28' r='10'/><circle cx='50' cy='18' r='10.5'/><circle cx='74' cy='28' r='10'/><circle cx='14' cy='52' r='8'/><circle cx='86' cy='52' r='8'/><path d='M50 48 C34 48 24 60 24 74 C24 84 32 90 40 90 C44 90 48 88 50 88 C52 88 56 90 60 90 C68 90 76 84 76 74 C76 60 66 48 50 48 Z'/></g></svg>") no-repeat right -8px bottom -8px / 70px 70px,
    var(--cream);
}

.concept-list .pill::before { content: none; }

.concept-list .pill .paw-num {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
}
.concept-list .pill .paw-num .num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Klee One", "Zen Maru Gothic", serif;
  font-style: normal;
  font-size: 26px;
  font-weight: 600;
  color: var(--pink-600);
  letter-spacing: 0;
  line-height: 1;
}

.concept-list .pill .t {
  font-size: 17px;
  font-weight: 700;
  display: block;
  line-height: 1.5;
}
.concept-list .pill .paw-ico { display: none; }

/* ===== Menu ===== */
.menu-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 6px;
  background: white;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid var(--line);
}
.menu-tabs button {
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
}
.menu-tabs button.active {
  background: var(--pink-400);
  color: white;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--pink-300);
}
.menu-card.popular {
  background: linear-gradient(180deg, var(--pink-50), white);
  border-color: var(--pink-300);
}
.menu-card-icon {
  width: 88px; height: 88px;
  border-radius: 22px;
  background: var(--pink-100);
  display: grid; place-items: center;
  color: var(--pink-600);
}
.menu-card .name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  display: flex; align-items: center; gap: 8px;
}
.menu-card .tag {
  font-size: 10px;
  padding: 3px 8px;
  background: var(--pink-400);
  color: white;
  border-radius: 4px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.menu-card .desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.menu-card .price {
  text-align: right;
}
.menu-card .price .yen {
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}
.menu-card .price .from {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.menu-note {
  margin-top: 32px;
  padding: 22px 28px;
  background: var(--pink-50);
  border: 1px dashed var(--pink-300);
  border-radius: 18px;
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.menu-note .ico {
  font-family: "Quicksand", sans-serif;
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink-400);
  color: white;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
}

/* ===== Skincare Band ===== */
.skincare-band {
  background:
    radial-gradient(60% 80% at 20% 50%, rgba(232, 205, 191, 0.5), transparent 70%),
    radial-gradient(50% 70% at 80% 50%, rgba(154, 166, 142, 0.25), transparent 70%),
    var(--cream-2);
  padding: 90px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.skincare-band .en-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--pink-600);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.skincare-band h3 {
  font-size: 36px;
  line-height: 1.7;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: 0.06em;
  font-family: "Noto Serif JP", serif;
}
.skincare-band h3 .accent {
  color: var(--pink-600);
}
.skincare-band p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}
.skincare-band .options-grid {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.skincare-band .ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--pink-300);
  margin-bottom: 22px;
}
.skincare-band .ornament .line {
  width: 36px;
  height: 1px;
  background: currentColor;
}
.skincare-band .ornament svg {
  width: 18px; height: 18px;
}

/* ===== Option Cards (elaborate) ===== */
.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.option-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.option-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-300);
}
.option-card .opt-banner {
  height: 150px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.option-card .opt-banner svg.bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.option-card .opt-banner img.bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}
.option-card .opt-banner img.bg-photo + .opt-num,
.option-card .opt-banner .opt-num {
  z-index: 3;
}
.option-card.opt-kuromoji .opt-banner {
  height: 200px;
}
.option-card .opt-num {
  position: absolute;
  top: 16px; left: 22px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.option-card .opt-emblem {
  position: relative;
  z-index: 1;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.option-card .opt-emblem svg {
  width: 50px; height: 50px;
}

/* Option 01 — Kuromoji (Kyoto forest / sage tone) */
.option-card.opt-kuromoji .opt-banner {
  background: linear-gradient(135deg, #b8c4a3 0%, #9aab85 50%, #88a08a 100%);
  height: 320px;
}
.option-card.opt-kuromoji .opt-emblem { color: #5d6e4e; display: none; }

/* Option 02 — Herb (warm spice tone) */
.option-card.opt-herb .opt-banner {
  background: linear-gradient(135deg, #d9b890 0%, #c7a072 50%, #b48962 100%);
  height: 320px;
}
.option-card.opt-herb .opt-emblem { color: #7a5230; display: none; }

.option-card .opt-body {
  padding: 30px 32px 36px;
  position: relative;
}
.option-card .opt-tag {
  position: absolute;
  top: -16px; right: 28px;
  background: var(--pink-400);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(196,134,154,0.35);
  display: inline-block;
}
.option-card.opt-herb .opt-tag {
  background: var(--pink-600);
}
.option-card h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.option-card .opt-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--pink-500);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.option-card .opt-desc {
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-2);
  margin: 0;
}
.option-card ul.opt-items {
  margin: 18px 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.option-card ul.opt-items li {
  font-size: 13px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: start;
  font-weight: 500;
}
.option-card ul.opt-items li .step-mini {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid; place-items: center;
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--pink-600);
  margin-top: 1px;
}
.option-card .opt-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.option-card .opt-effects-label {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--pink-600);
  letter-spacing: 0.08em;
  text-align: center;
}
.option-card .opt-meta .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.option-card .opt-meta .badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink-400);
}

/* ===== FAQ ===== */
.faq {
  background: white;
  border-top: 1px solid var(--line);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
  border-color: var(--pink-300);
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 36px 1fr 22px;
  gap: 16px;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q-mark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 26px;
  color: var(--pink-500);
  font-weight: 600;
  line-height: 1;
}
.faq-item .chev {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  color: var(--pink-500);
  transition: transform .2s;
  text-align: center;
  font-weight: 400;
}
.faq-item[open] .chev { transform: rotate(45deg); }
.faq-item .body {
  padding: 0 28px 22px 80px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.9;
}
.faq-item .body strong {
  color: var(--pink-600);
}

/* ===== Course Flow ===== */
.courses {
  background: white;
  border-top: 1px solid var(--line);
}
.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.course-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  scroll-margin-top: 90px;
  transition: transform .25s, box-shadow .25s;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.course-card.featured {
  background: linear-gradient(180deg, var(--pink-50), white);
  border-color: var(--pink-300);
}
.course-card .course-label {
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--pink-500);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.course-card .course-title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 28px;
}
.course-card .course-price {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 12px 0;
  margin-bottom: 28px;
}
.course-card .course-price .yen {
  color: var(--pink-600);
  font-weight: 700;
  font-size: 22px;
  margin-right: 4px;
}
.course-card .course-price .note {
  color: var(--muted);
  font-size: 11px;
  margin-left: 10px;
}

.course-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.course-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 14px;
  line-height: 1.6;
}
.course-steps .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--pink-300);
  color: var(--pink-600);
  display: grid;
  place-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.course-card.featured .step-num {
  background: var(--pink-400);
  color: white;
  border-color: var(--pink-400);
}
.course-steps .step-body {
  padding-top: 2px;
}
.course-steps .step-body strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}
.course-steps .step-body .step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  white-space: pre-line;
  display: block;
}

.course-card .course-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== Price Table ===== */
.price-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.price-service {
  background: var(--pink-50);
  border: 1px dashed var(--pink-300);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
}
.price-service .gift {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink-400); color: white;
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.price-service .label {
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--pink-600);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.price-service .title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.price-table-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table thead th {
  background: var(--pink-600);
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  padding: 18px 16px;
  text-align: center;
  font-weight: 600;
}
.price-table thead th:first-child {
  text-align: left;
  padding-left: 28px;
}
.price-table thead .sub {
  display: block;
  font-size: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  margin-top: 4px;
  color: white;
}
.price-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.price-table tbody tr:hover { background: var(--pink-50); }
.price-table tbody tr.large {
  background: var(--cream-2);
}
.price-table tbody tr.large:hover { background: var(--pink-100); }
.price-table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  text-align: center;
}
.price-table tbody td:first-child {
  text-align: left;
  padding-left: 28px;
  font-weight: 600;
  color: var(--ink);
}
.price-table .size {
  font-size: 11px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 400;
}
.price-table .yen {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: var(--ink);
}
.price-table .yen .tilde {
  font-size: 11px;
  color: var(--muted);
  margin-left: 2px;
}
.price-table .none { color: var(--line); }
.price-table .row-note {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.price-includes {
  margin-top: 24px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.price-includes .card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
}
.price-includes .card h5 {
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--pink-500);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.price-includes .card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--cream-2);
}
.gallery-grid {
  column-count: 4;
  column-gap: 12px;
}
.gallery-cell {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--pink-50);
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 12px;
  display: block;
}
.gallery-cell img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s;
}
.gallery-cell:hover img { transform: scale(1.03); }

/* ===== Flow ===== */
.flow {
  background: white;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
.flow-step {
  text-align: center;
  position: relative;
}
.flow-step .num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pink-400);
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  font-weight: 700;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 18px rgba(239,137,161,0.35);
}
.flow-step h4 {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: 700;
}
.flow-step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  padding: 0 4px;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--pink-300) 0 6px, transparent 6px 12px);
}

/* ===== Access ===== */
.access {
  background: var(--cream);
}
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  z-index: 2;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-600);
  text-decoration: none;
  transition: gap .2s;
}
.map-link:hover { gap: 12px; }

.access-map {
  aspect-ratio: 5/4;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, #e8eadf 0%, #f0e8d8 50%, #e8eadf 100%);
  position: relative;
}
.access-map::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.access-map .road {
  position: absolute;
  background: white;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}
.access-map .road.r1 { top: 50%; left: 0; right: 0; height: 28px; transform: translateY(-50%) rotate(-3deg); }
.access-map .road.r2 { top: 0; bottom: 0; left: 60%; width: 22px; transform: rotate(2deg); }
.access-map .park {
  position: absolute;
  background: var(--sage);
  opacity: 0.4;
  border-radius: 50%;
}
.access-map .park.p1 { top: 10%; left: 10%; width: 110px; height: 90px; }
.access-map .park.p2 { bottom: 8%; right: 12%; width: 80px; height: 80px; }

.map-pin {
  position: absolute;
  top: 42%; left: 38%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.map-pin .pin-dot {
  width: 22px; height: 22px;
  background: var(--pink-500);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  animation: ping 1.8s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 4px 12px rgba(0,0,0,0.18), 0 0 0 0 rgba(239,137,161,0.55); }
  100% { box-shadow: 0 4px 12px rgba(0,0,0,0.18), 0 0 0 22px rgba(239,137,161,0); }
}
.map-pin .pin-label {
  background: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  white-space: nowrap;
}

.access-info {
  display: flex; flex-direction: column; gap: 4px;
}
.info-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  align-items: start;
}
.info-row .k {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--pink-600);
  text-transform: uppercase;
  padding-top: 2px;
}
.info-row .v {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.hours-table th, .hours-table td {
  padding: 8px 6px;
  text-align: center;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.hours-table th {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.hours-table td.first {
  text-align: left;
  font-size: 11px;
  color: var(--muted);
  font-family: "Quicksand", sans-serif;
}
.hours-table .dot-ok { color: var(--pink-500); font-size: 16px; }
.hours-table .dot-no { color: var(--line); }

/* ===== News ===== */
.news {
  background: white;
}
.news-list {
  display: grid;
  gap: 4px;
}
.news-row {
  display: grid;
  grid-template-columns: 110px 110px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding .2s;
}
.news-row:hover { padding-left: 8px; }
.news-row .date {
  font-family: "Quicksand", sans-serif;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.news-row .cat {
  font-size: 11px;
  padding: 4px 12px;
  background: var(--pink-100);
  color: var(--pink-600);
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.news-row .cat.holiday { background: #fff3e0; color: #c87841; }
.news-row .cat.info { background: #e8f0e3; color: #5e7c4f; }
.news-row .title {
  font-size: 14px;
  font-weight: 600;
}
.news-row .arrow {
  color: var(--pink-400);
  transition: transform .2s;
}
.news-row:hover .arrow { transform: translateX(4px); }

/* ===== Instagram feed ===== */
.ig-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 56px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--pink-500);
}
.ig-head svg { align-self: center; }
.ig-head .en {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-size: 13px;
}
.ig-head-ja {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.ig-block { margin-top: 28px; }
.ig-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.ig-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--pink-200, #f0d9d0);
  padding: 2px;
  background: white;
}
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ig-id { flex: 1; min-width: 0; }
.ig-handle {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.ig-handle:hover { color: var(--pink-500); }
.ig-sub { font-size: 12px; color: var(--muted); margin-top: 3px; letter-spacing: 0.04em; }
.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: white;
  background: linear-gradient(120deg, #c98aab, #c89a86);
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 16px rgba(201,138,171,0.28);
}
.ig-follow:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(201,138,171,0.34); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--pink-50);
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.6,.2,1);
}
.ig-tile:hover img { transform: scale(1.07); }
.ig-tile-ov {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(58, 42, 32, 0.28);
  opacity: 0;
  transition: opacity .3s;
}
.ig-tile:hover .ig-tile-ov { opacity: 1; }
/* widget mount: when a real embed is present it fills this; otherwise empty */
.ig-embed-mount:not(:empty) { margin-bottom: 4px; }
.ig-embed-mount iframe { width: 100% !important; border: 0; border-radius: 16px; }

/* ===== LINE Contact ===== */
.line-contact {
  background: linear-gradient(180deg, var(--pink-50), var(--cream));
}
.line-card {
  background: white;
  border-radius: 32px;
  padding: 56px;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.line-notice {
  background: #fff8e1;
  border: 1px dashed #d9b890;
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 36px;
  display: flex;
  gap: 14px;
  text-align: left;
  align-items: flex-start;
}
.line-notice .ico {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #d9b890;
  color: white;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
  font-family: "Quicksand", sans-serif;
}
.line-notice .body {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}
.line-notice .body strong {
  display: block;
  font-size: 14px;
  color: #b8741f;
  margin-bottom: 2px;
}

.line-card .lead-text {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 8px;
}
.line-card .big {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.4;
}
.line-card .big .accent {
  color: #06c755;
}

.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #06c755;
  color: white;
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(6,199,85,0.35);
  transition: transform .2s, box-shadow .2s;
  font-family: inherit;
}
.line-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(6,199,85,0.45);
}
.line-btn .line-icon {
  width: 28px; height: 28px;
  background: white;
  border-radius: 8px;
  color: #06c755;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 14px;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.05em;
}

.line-id {
  margin-top: 24px;
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.line-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.line-features .feat {
  padding: 18px 12px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.line-features .feat .num {
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--pink-500);
  display: block;
  margin-bottom: 4px;
}
.line-features .feat .t {
  font-size: 13px;
  font-weight: 700;
}

/* ===== Booking ===== */
.booking {
  background: linear-gradient(180deg, var(--pink-50), var(--cream));
}
.booking-card {
  background: white;
  border-radius: 32px;
  padding: 56px;
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
}
.booking-stepbar {
  display: flex; gap: 6px;
  margin-bottom: 36px;
}
.booking-stepbar .seg {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.booking-stepbar .seg.active::after {
  content: ""; position: absolute; inset: 0;
  background: var(--pink-400);
  animation: fill .5s ease;
}
.booking-stepbar .seg.done { background: var(--pink-400); }
@keyframes fill {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
.booking h3 {
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 700;
}
.booking .booking-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.option-grid .opt {
  border: 1.5px solid var(--line);
  background: var(--cream);
  padding: 18px 20px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color .2s, background .2s;
  font-size: 14px;
}
.option-grid .opt:hover { border-color: var(--pink-300); }
.option-grid .opt.selected {
  border-color: var(--pink-400);
  background: var(--pink-50);
}
.option-grid .opt .price {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--pink-600);
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 16px;
}
.calendar .day-head {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-family: "Quicksand", sans-serif;
  padding: 8px 0;
}
.calendar .day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  border: 1.5px solid transparent;
}
.calendar .day.avail { background: var(--cream); color: var(--ink); }
.calendar .day.avail:hover { border-color: var(--pink-300); }
.calendar .day.full { color: var(--line); cursor: not-allowed; text-decoration: line-through; }
.calendar .day.selected {
  background: var(--pink-400);
  color: white;
  border-color: var(--pink-400);
}
.calendar .day.empty { visibility: hidden; }

.times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.times .t {
  padding: 14px 0;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
}
.times .t.avail:hover { border-color: var(--pink-300); }
.times .t.selected { background: var(--pink-400); color: white; border-color: var(--pink-400); }
.times .t.full { color: var(--line); cursor: not-allowed; }

.booking-nav {
  display: flex; justify-content: space-between;
  margin-top: 32px;
}

.booking-success {
  text-align: center;
  padding: 32px 0;
}
.booking-success .check {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--pink-400);
  color: white;
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-size: 36px;
  animation: pop .4s ease;
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ===== Footer ===== */
footer {
  background: #3a2a20;
  color: var(--cream);
  padding: 80px 32px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
}
footer h5 {
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--pink-300);
  margin: 0 0 16px;
  text-transform: uppercase;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li {
  font-size: 13px;
  padding: 6px 0;
  color: var(--pink-100);
  opacity: 0.8;
  transition: opacity .2s, padding .2s;
}
footer li:has(a), footer li a { cursor: pointer; }
footer li:has(a):hover { opacity: 1; padding-left: 6px; }
footer li a { color: inherit; text-decoration: none; }
footer .brand-block .brand-name { color: var(--pink-100); }
footer .brand-block .brand-sub { color: var(--pink-300); }
footer .brand-name { color: var(--pink-100); }
footer .brand-sub { color: var(--pink-300); }
.footer-bottom {
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-family: "Quicksand", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

/* ===== Floating widget ===== */
.float-cta {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 40;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta a, .float-cta button {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  color: var(--pink-500);
  transition: transform .2s;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 11px;
}
.float-cta a:hover { transform: translateY(-3px); }
.float-cta .main {
  background: var(--pink-400);
  color: white;
  width: 64px; height: 64px;
}

/* ===== Hamburger button ===== */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(253, 248, 242, 0.6);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  padding: 0;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.hamburger:hover { background: var(--pink-50); }
.hamburger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s cubic-bezier(.6,.2,.2,1), opacity .2s, top .28s cubic-bezier(.6,.2,.2,1);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ===== Mobile drawer ===== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(58, 42, 32, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer-inner {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 100% 0%, var(--pink-50) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(199,166,132,0.12) 0%, transparent 55%);
  padding: 88px 28px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.6,.2,.2,1);
  box-shadow: -20px 0 60px rgba(58,42,32,0.18);
}
.mobile-drawer.is-open .mobile-drawer-inner { transform: translateX(0); }
.md-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.md-nav {
  display: flex;
  flex-direction: column;
}
.md-nav a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 16px 4px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  position: relative;
  transition: padding-left .25s, background .25s;
}
.md-nav a:hover { padding-left: 10px; background: var(--pink-50); }
.md-nav .md-en {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--pink-500);
  grid-column: 1;
  grid-row: 1;
}
.md-nav .md-ja {
  font-size: 13px;
  color: var(--ink-2);
  grid-column: 1;
  grid-row: 2;
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.md-nav .md-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: "Quicksand", sans-serif;
  color: var(--pink-400);
  font-size: 18px;
  transition: transform .25s;
}
.md-nav a:hover .md-arrow { transform: translateX(4px); }
.md-cta {
  margin-top: 28px;
  background: #06c755;
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.25);
}
.md-cta-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: white;
  color: #06c755;
  display: grid;
  place-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.md-foot {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 2;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav { gap: 14px; }
  .nav a { font-size: 12px; }
  .brand-name { font-size: 17px; }
  .topbar-inner { padding: 12px 20px; gap: 16px; }
}
@media (max-width: 1024px) {
  .hero { padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 44px; }
  /* logo sits beside the headline; hide the large decorative art */
  .hero-art { display: none; }
  /* OPEN hours removed from the topbar */
  .topbar-hours { display: none; }
  /* make the hero text column a flex column so we can reorder blocks */
  .hero-grid > div:first-child { display: flex; flex-direction: column; align-items: flex-start; }
  /* FUJISAWA · PRIVATE DOG SALON badge removed */
  .hero-eyebrow { display: none; }
  .hero-head { order: 2; }
  .hero p.lead { order: 3; }
  .hero-ctas { order: 4; }
  /* OPEN / CLOSED / AREA → compact bar below the CTAs */
  .hero-meta {
    order: 5;
    align-self: stretch;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 11px 16px;
    margin: 22px 0 0;
  }
  .hero-meta .item { display: flex; flex-direction: column; gap: 2px; }
  .hero-meta .item .label { font-size: 8px; letter-spacing: 0.16em; }
  .hero-meta .item .val { font-size: 11px; white-space: nowrap; }
  .hero-head {
    display: flex;
    align-items: center;
    gap: 14px;
    align-self: stretch;
  }
  .hero-head-text { flex: 1; min-width: 0; }
  .hero-logo-mini {
    display: block;
    width: 150px; height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 12px 32px rgba(58,42,32,0.14);
  }
  /* compact, side-by-side CTAs — about half their old footprint */
  .hero-ctas { flex-direction: row; gap: 10px; align-self: stretch; }
  .hero-ctas .cta-btn { flex: 1; padding: 11px 8px; font-size: 12px; justify-content: center; border-radius: 12px; }
  .nav { display: none; }
  .hamburger { display: block; }
  .nav-cta { display: none; }
  section { padding: 80px 20px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .concept-grid, .access-grid { grid-template-columns: 1fr; gap: 40px; }
  .groomer-grid { grid-template-columns: 1fr; gap: 40px; }
  .groomer-info h3 { font-size: 30px; }
  .groomer-info h3 .ja { display: block; margin: 8px 0 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .price-services { grid-template-columns: 1fr; }
  .price-table thead th { font-size: 10px; padding: 12px 6px; }
  .price-table tbody td { padding: 10px 6px; font-size: 12px; }
  .price-table tbody td:first-child { padding-left: 12px; }
  .price-table thead th:first-child { padding-left: 12px; }
  .price-includes { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .flow-step:not(:last-child)::after { display: none; }
  .gallery-grid { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .strengths-grid { grid-template-columns: 1fr 1fr; }
  .recommend-grid { grid-template-columns: 1fr; }
  .statement h3 { font-size: 26px; }
  .strengths-head h2 { font-size: 26px; }
  .booking-card { padding: 28px; }
  .news-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .groomer-family { grid-template-columns: 1fr; max-width: 100%; }
  .groomer-family .fam-body { width: auto; }
}

/* Mobile ≤ 720 */
@media (max-width: 720px) {
  body { line-height: 1.75; letter-spacing: 0.02em; }
  /* clean wrapping — avoid lonely orphan lines on small screens */
  p, h1, h2, h3, h4, .lead, .section-head p, summary, li { text-wrap: pretty; }
  section { padding: 64px 18px; }

  .topbar-inner { padding: 10px 16px; gap: 10px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-name { font-size: 15px; }
  .brand-sub { font-size: 9px; }
  .cta-btn { padding: 10px 14px; font-size: 12px; }

  .hero { min-height: auto; padding: 156px 12px 88px; }
  .hero h1 { font-size: 29px; line-height: 1.4; letter-spacing: -0.035em; }
  .hero p.lead { font-size: 14px; text-wrap: pretty; }
  /* breathing room between the headline/logo row and the lead paragraph */
  .hero-head { margin-bottom: 16px; }
  /* hide desktop-only manual line breaks so text wraps naturally on mobile */
  br.d-br { display: none; }
  .section-head p { text-wrap: pretty; }
  .hero-head { gap: 10px; }
  .hero-logo-mini { width: 132px; height: 132px; }
  .hero-ctas .cta-btn { padding: 11px 6px; font-size: 12px; }
  .scroll-hint { display: none; }
  /* fade out half of the paws on mobile to avoid overlap with content */
  .paw.p2, .paw.p4, .paw.p6, .paw.p9 { display: none; }
  .paw { opacity: 0.28 !important; }
  .paw.p1, .paw.p5, .paw.p10 { width: 40px !important; height: 40px !important; }
  .paw.p3, .paw.p8 { width: 52px !important; height: 52px !important; }
  .hero-ctas { flex-direction: row; align-items: stretch; gap: 10px; }
  .hero-ctas .cta-btn { justify-content: center; }

  .section-head h2 { font-size: 26px; }
  .section-head { margin-bottom: 32px; }

  .concept h3 { font-size: 22px; }
  .concept p { font-size: 14px; }
  .concept-list { grid-template-columns: 1fr 1fr; }
  .concept-list .pill { min-height: 100px; padding: 16px 12px 14px; }
  .concept-list .pill .t { font-size: 14px; }

  .statement { padding: 70px 20px; }
  .statement h3 { font-size: 20px; line-height: 1.9; }
  .statement p { font-size: 13px; line-height: 1.9; }
  .statement::before, .statement::after { display: none; }

  .strengths-head h2 { font-size: 22px; }
  .strengths-grid { grid-template-columns: 1fr; gap: 14px; }
  .strength-card { padding: 26px 22px; }
  .strength-card h4 { font-size: 16px; }

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

  .groomer-photo { aspect-ratio: 1/1; }
  .groomer-info h3 { font-size: 26px; }
  .groomer-info h3 .ja { font-size: 14px; }
  .groomer-info p { font-size: 14px; }
  .groomer-family { width: 100%; }
  .groomer-family .fam-photo { aspect-ratio: 16/10; padding: 8px; }
  .groomer-family .fam-body { padding: 16px; align-items: flex-start; }
  .groomer-family .fam-label { text-align: left; }
  .groomer-family .fam-row { gap: 14px; }

  .courses-grid { gap: 16px; }
  .course-card { padding: 28px 22px; }
  .course-card .course-title { font-size: 22px; }
  .course-steps li { grid-template-columns: 28px 1fr; gap: 10px; font-size: 13px; }
  .course-steps .step-num { width: 24px; height: 24px; font-size: 11px; }

  .skincare-band { padding: 60px 20px !important; }
  .skincare-band h3 { font-size: 22px; line-height: 1.6 !important; }
  .skincare-band p { font-size: 13px; }
  .option-card .opt-banner { height: 220px !important; }
  .option-card h4 { font-size: 18px; }

  .price-services { grid-template-columns: 1fr; gap: 10px; margin-bottom: 22px; }
  .price-service { padding: 14px 16px; }
  .price-service .title { font-size: 13px; }
  .price-table thead th { font-size: 10px; padding: 12px 6px; }
  .price-table thead .sub { font-size: 11px; }
  .price-table tbody td { padding: 10px 6px; font-size: 12px; }
  .price-table tbody td:first-child { padding-left: 12px; }
  .price-table thead th:first-child { padding-left: 12px; }
  .price-table .yen { font-size: 12px; }
  .price-includes { grid-template-columns: 1fr; gap: 12px; }

  .gallery-grid { column-count: 1; }

  .access-map { aspect-ratio: 4/3; border-radius: 18px; }
  .info-row { grid-template-columns: 72px 1fr; padding: 14px 0; gap: 12px; }
  .info-row .k { font-size: 11px; }
  .info-row .v { font-size: 13px; }

  .faq-item summary { padding: 16px 18px; font-size: 13px; gap: 10px; grid-template-columns: 28px 1fr 22px; }
  .faq-item .q-mark { font-size: 22px; }
  .faq-item .body { padding: 0 18px 18px 56px; font-size: 13px; }

  .news-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }

  .ig-head { margin-top: 40px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ig-profile { flex-wrap: wrap; gap: 12px; }
  .ig-follow { width: 100%; justify-content: center; }

  .booking-card { padding: 28px 18px; border-radius: 22px; }
  .booking h3 { font-size: 18px; }
  .line-card { padding: 28px 18px; border-radius: 22px; }
  .line-notice { padding: 14px 16px; }
  .line-card .big { font-size: 20px; }
  .line-btn { padding: 14px 22px; font-size: 14px; gap: 10px; }

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

  .float-cta { right: 14px; bottom: 14px; }
  .float-cta a, .float-cta button { width: 48px; height: 48px; }
  .float-cta .main { width: 56px; height: 56px; }
}

/* Small mobile ≤ 380 */
@media (max-width: 380px) {
  .hero { padding: 144px 10px 84px; }
  .hero h1 { font-size: 25px; letter-spacing: -0.04em; }
  .hero-head { gap: 8px; }
  .hero-logo-mini { width: 118px; height: 118px; }
  .section-head h2 { font-size: 22px; }
  .concept-list { grid-template-columns: 1fr; }
  .strength-card .num { font-size: 28px; }
}

/* ===== お知らせ（更新システム）===== */
/* 題名をクリックできるリンクに */
.news-row .title-link {
  font-family: inherit;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  transition: color .18s;
  justify-self: start;
}
.news-row .title-link:hover {
  color: var(--pink-500);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
.news-row .title-link:focus-visible {
  outline: 2px solid var(--pink-300);
  outline-offset: 3px;
  border-radius: 5px;
}
.news-row .arrow {
  color: var(--pink-400);
  cursor: pointer;
  transition: transform .2s;
}
.news-row:hover .arrow { transform: translateX(4px); }

/* ポップアップ内の画像 */
.news-modal .nm-image {
  margin: 0 0 20px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--pink-50);
}
.news-modal .nm-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== News detail modal ===== */
.news-modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(58, 45, 49, 0.45); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  animation: nmFade .2s ease;
}
@keyframes nmFade { from { opacity: 0; } to { opacity: 1; } }
.news-modal {
  position: relative; background: #fff; border-radius: 22px;
  max-width: 540px; width: 100%; max-height: 85vh; overflow-y: auto;
  padding: 40px 38px 36px; box-shadow: 0 30px 70px rgba(58,45,49,.3);
  animation: nmPop .25s cubic-bezier(.2,.8,.3,1.1);
}
@keyframes nmPop { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.news-modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border: none; border-radius: 50%; background: var(--pink-50); color: var(--ink-2);
  font-size: 22px; line-height: 1; cursor: pointer; transition: background .2s, color .2s;
}
.news-modal-close:hover { background: var(--pink-100); color: var(--pink-600); }
.news-modal .nm-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.news-modal .nm-date {
  font-family: "Quicksand", sans-serif; font-size: 13px; color: var(--muted); letter-spacing: 0.08em;
}
.news-modal .nm-meta .cat {
  font-size: 11px; padding: 4px 12px; border-radius: 999px; font-weight: 700;
  background: var(--pink-100); color: var(--pink-600); letter-spacing: 0.05em;
}
.news-modal .nm-meta .cat.holiday { background: #fff3e0; color: #c87841; }
.news-modal .nm-meta .cat.info { background: #e8f0e3; color: #5e7c4f; }
.news-modal .nm-meta .cat.blue { background: #e5eef7; color: #4f6f9c; }
.news-modal .nm-meta .cat.purple { background: #efe8f5; color: #7b5e9c; }
.news-modal .nm-title {
  font-family: "Zen Maru Gothic", sans-serif; font-size: 21px; line-height: 1.55;
  color: var(--ink); margin: 0 0 18px;
}
.news-modal .nm-body p {
  font-size: 14.5px; line-height: 1.95; color: var(--ink-2); margin: 0 0 4px; text-wrap: pretty;
}
