:root {
  --bg: #fbfaf6;
  --surface: #ffffff;
  --surface-2: #f2f3ec;
  --ink: #26312b;
  --muted: #6d756f;
  --line: #dfe4dd;
  --brand: #587161;
  --brand-dark: #364c40;
  --brand-soft: #e6ece7;
  --sand: #d9c8ad;
  --accent: #b97a5a;
  --ok: #3c7555;
  --warn: #a46d27;
  --danger: #8d514d;
  --shadow: 0 18px 50px rgba(38,49,43,.11);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif; color:var(--ink); background:var(--bg); line-height:1.65; }
a { color:inherit; text-decoration:none; }
button, input, select, textarea { font:inherit; }
button { cursor:pointer; }
img { max-width:100%; display:block; }
.container { width:min(1180px, calc(100% - 40px)); margin-inline:auto; }
.eyebrow { display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; background:var(--brand-soft); color:var(--brand-dark); font-size:.78rem; font-weight:800; letter-spacing:.05em; }
.section { padding:88px 0; }
.section.compact { padding:58px 0; }
.section-title { font-size:clamp(2rem, 4vw, 3.5rem); line-height:1.18; margin:12px 0 16px; letter-spacing:-.03em; }
.section-lead { color:var(--muted); max-width:760px; font-size:1.04rem; }
.muted { color:var(--muted); }
.grid { display:grid; gap:22px; }
.grid-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid-4 { grid-template-columns:repeat(4,minmax(0,1fr)); }
.card { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:26px; box-shadow:0 8px 28px rgba(38,49,43,.05); }
.card h3 { margin:0 0 8px; font-size:1.25rem; }
.pill { display:inline-flex; padding:6px 10px; border-radius:999px; background:var(--surface-2); font-size:.82rem; font-weight:700; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; min-height:48px; padding:12px 18px; border-radius:999px; border:1px solid transparent; font-weight:800; transition:.2s ease; }
.btn:hover { transform:translateY(-1px); }
.btn-primary { background:var(--brand-dark); color:#fff; }
.btn-secondary { background:#fff; border-color:var(--line); }
.btn-soft { background:var(--brand-soft); color:var(--brand-dark); }
.btn-line { background:#06c755; color:#fff; }
.btn-block { width:100%; }
.header { position:sticky; top:0; z-index:40; backdrop-filter:blur(14px); background:rgba(251,250,246,.88); border-bottom:1px solid rgba(223,228,221,.9); }
.header-inner { height:74px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand { display:flex; align-items:center; gap:12px; font-weight:900; letter-spacing:-.02em; }
.brand-mark { width:38px; height:38px; border-radius:14px 14px 18px 18px; background:linear-gradient(145deg,var(--brand),var(--brand-dark)); color:white; display:grid; place-items:center; font-size:1.1rem; box-shadow:0 8px 20px rgba(54,76,64,.25); }
.nav { display:flex; align-items:center; gap:22px; font-size:.92rem; font-weight:700; }
.nav a:hover { color:var(--brand); }
.menu-toggle { display:none; border:1px solid var(--line); background:white; border-radius:14px; width:44px; height:44px; }
.hero { padding:58px 0 38px; overflow:hidden; }
.hero-grid { display:grid; grid-template-columns:1.02fr .98fr; align-items:center; gap:54px; }
.hero-copy h1 { font-size:clamp(2.8rem,6vw,5.7rem); line-height:.98; letter-spacing:-.055em; margin:16px 0 22px; }
.hero-copy p { font-size:1.08rem; color:var(--muted); max-width:640px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin:28px 0 18px; }
.hero-meta { display:flex; flex-wrap:wrap; gap:10px 16px; font-size:.84rem; color:var(--muted); font-weight:700; }
.hero-visual { min-height:610px; position:relative; border-radius:42px; overflow:hidden; background:linear-gradient(135deg,#d9e2da,#f1e6d6); box-shadow:var(--shadow); }
.hero-visual::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(38,49,43,.03),rgba(38,49,43,.18)); }
.hero-photo { width:100%; height:100%; min-height:610px; object-fit:cover; }
.hero-badge { position:absolute; left:22px; top:22px; background:rgba(255,255,255,.9); backdrop-filter:blur(10px); border-radius:18px; padding:12px 15px; font-weight:800; box-shadow:0 10px 30px rgba(0,0,0,.08); }
.today-card { position:absolute; left:22px; right:22px; bottom:22px; background:rgba(255,255,255,.94); backdrop-filter:blur(12px); border-radius:24px; padding:18px; box-shadow:0 12px 40px rgba(38,49,43,.16); }
.today-head { display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:12px; }
.today-list { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.today-item { background:var(--bg); border-radius:16px; padding:12px; }
.today-item strong { display:block; font-size:.9rem; }
.status { display:inline-flex; align-items:center; gap:6px; margin-top:4px; font-weight:900; font-size:.9rem; }
.status.ok { color:var(--ok); }
.status.warn { color:var(--warn); }
.status.full { color:var(--danger); }
.booking-cards .card { min-height:220px; display:flex; flex-direction:column; justify-content:space-between; }
.icon-box { width:52px; height:52px; border-radius:18px; display:grid; place-items:center; background:var(--brand-soft); font-size:1.4rem; margin-bottom:24px; }
.price { font-weight:900; font-size:1.4rem; }
.gallery { display:grid; grid-template-columns:1.25fr .75fr .75fr; gap:16px; }
.gallery img { width:100%; height:300px; object-fit:cover; border-radius:26px; }
.gallery img:first-child { height:616px; grid-row:span 2; }
.phone-shell { width:min(360px,100%); margin:auto; padding:14px; border-radius:38px; background:#1d2722; box-shadow:var(--shadow); }
.phone-screen { background:#f3f5f3; min-height:600px; border-radius:28px; overflow:hidden; }
.phone-top { padding:18px; background:#fff; border-bottom:1px solid #e5e9e5; font-weight:800; }
.chat { padding:18px; display:flex; flex-direction:column; gap:14px; }
.bubble { max-width:82%; padding:11px 13px; border-radius:16px; font-size:.9rem; box-shadow:0 3px 10px rgba(0,0,0,.04); }
.bubble.shop { background:#fff; }
.bubble.user { align-self:flex-end; background:#bceaa6; }
.phone-menu { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin-top:18px; background:#d9ded9; }
.phone-menu div { background:white; min-height:82px; display:grid; place-items:center; text-align:center; font-size:.78rem; font-weight:800; padding:8px; }
.pet-card { display:flex; align-items:center; gap:18px; }
.pet-avatar { width:82px; height:82px; border-radius:24px; object-fit:cover; }
.feature-list { display:grid; gap:10px; margin:18px 0 0; }
.feature-row { display:flex; gap:12px; align-items:flex-start; }
.feature-row::before { content:"✓"; width:26px; height:26px; border-radius:50%; display:grid; place-items:center; flex:0 0 auto; background:var(--brand-soft); color:var(--brand-dark); font-weight:900; }
.owner-panel { background:var(--brand-dark); color:white; border-radius:34px; padding:34px; }
.owner-panel .muted { color:rgba(255,255,255,.68); }
.owner-panel .btn-secondary { color:var(--brand-dark); background:#fff; border-color:rgba(255,255,255,.9); }
.owner-panel .btn-secondary:hover { color:var(--brand-dark); background:#f7faf7; }
.owner-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:24px; }
.stat { background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.14); border-radius:18px; padding:18px; }
.stat strong { display:block; font-size:1.8rem; }
.faq details { border-bottom:1px solid var(--line); padding:18px 0; }
.faq summary { font-weight:800; cursor:pointer; }
.footer { background:#243129; color:#fff; padding:46px 0 100px; }
.footer .muted { color:rgba(255,255,255,.62); }
.floating { position:fixed; right:20px; bottom:20px; z-index:55; }
.float-main { border:0; box-shadow:0 12px 34px rgba(54,76,64,.28); }
.float-menu { position:absolute; right:0; bottom:62px; width:260px; display:none; gap:8px; padding:10px; border-radius:20px; background:white; border:1px solid var(--line); box-shadow:var(--shadow); }
.float-menu.open { display:grid; }
.float-menu a { padding:11px 12px; border-radius:14px; font-weight:800; background:var(--bg); }
.mobile-booking-bar { display:none; }
/* booking */
.booking-page { min-height:100vh; background:#f6f5f0; }
.booking-header { background:white; border-bottom:1px solid var(--line); }
.booking-header .container { min-height:72px; display:flex; align-items:center; justify-content:space-between; }
.booking-wrap { padding:38px 0 90px; }
.booking-shell { display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:24px; align-items:start; }
.booking-main, .booking-summary { background:white; border:1px solid var(--line); border-radius:28px; padding:26px; }
.booking-summary { position:sticky; top:96px; }
.steps { display:flex; gap:8px; margin:0 0 26px; overflow:auto; padding-bottom:5px; }
.step-chip { white-space:nowrap; padding:8px 12px; border-radius:999px; background:#eef1ec; color:#7b827d; font-size:.8rem; font-weight:800; }
.step-chip.active { background:var(--brand-dark); color:#fff; }
.step-panel { display:none; }
.step-panel.active { display:block; }
.choice-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.choice { border:1px solid var(--line); border-radius:20px; padding:18px; background:#fff; text-align:left; }
.choice.selected { border-color:var(--brand); box-shadow:0 0 0 3px var(--brand-soft); }
.choice strong { display:block; margin-bottom:4px; }
.option-list { display:grid; gap:10px; }
.option-row { display:flex; justify-content:space-between; gap:16px; padding:13px 14px; border:1px solid var(--line); border-radius:16px; }
.option-row label { display:flex; gap:10px; align-items:center; }
.calendar-table { width:100%; border-collapse:separate; border-spacing:7px; }
.calendar-table th { font-size:.78rem; color:var(--muted); padding:7px; }
.calendar-table td { text-align:center; }
.slot-btn { width:100%; border:1px solid var(--line); background:#fff; border-radius:12px; padding:10px 5px; font-size:.82rem; font-weight:800; }
.slot-btn:hover:not(:disabled) { border-color:var(--brand); background:var(--brand-soft); }
.slot-btn.selected { background:var(--brand-dark); color:#fff; border-color:var(--brand-dark); }
.slot-btn:disabled { color:#a7ada8; background:#f2f3f1; cursor:not-allowed; }
.mobile-slots { display:none; }
.date-tabs { display:flex; gap:8px; overflow:auto; margin-bottom:14px; }
.date-tab { border:1px solid var(--line); background:white; border-radius:14px; padding:10px 14px; white-space:nowrap; font-weight:800; }
.date-tab.selected { background:var(--brand-dark); color:#fff; }
.time-list { display:grid; gap:10px; }
.time-btn { border:1px solid var(--line); background:white; border-radius:16px; padding:14px; display:flex; justify-content:space-between; align-items:center; font-weight:800; }
.time-btn.selected { background:var(--brand-dark); color:#fff; }
.time-btn:disabled { background:#f1f2ef; color:#9aa09b; }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.field { display:grid; gap:6px; }
.field.full { grid-column:1/-1; }
.field label { font-size:.86rem; font-weight:800; }
.field input, .field select, .field textarea { width:100%; border:1px solid var(--line); border-radius:14px; padding:12px 13px; background:white; }
.field textarea { min-height:110px; resize:vertical; }
.actions { display:flex; justify-content:space-between; gap:12px; margin-top:26px; }
.summary-list { display:grid; gap:12px; }
.summary-line { display:flex; justify-content:space-between; gap:16px; padding-bottom:10px; border-bottom:1px solid var(--line); font-size:.9rem; }
.summary-line strong { text-align:right; }
.notice { padding:14px; border-radius:16px; background:var(--brand-soft); color:var(--brand-dark); font-size:.88rem; }
.complete { text-align:center; padding:20px 0; }
.complete-icon { width:72px; height:72px; border-radius:50%; background:var(--brand-soft); display:grid; place-items:center; margin:0 auto 16px; font-size:2rem; }
@media (max-width: 940px) {
  .nav { display:none; position:absolute; left:20px; right:20px; top:68px; background:white; border:1px solid var(--line); border-radius:20px; padding:16px; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .nav.open { display:flex; }
  .menu-toggle { display:block; }
  .hero-grid, .booking-shell { grid-template-columns:1fr; }
  .hero-visual, .hero-photo { min-height:520px; }
  .grid-4 { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .owner-stats { grid-template-columns:repeat(2,1fr); }
  .booking-summary { position:static; }
}
@media (max-width: 680px) {
  .container { width:min(100% - 28px, 1180px); }
  .section { padding:66px 0; }
  .hero { padding-top:32px; }
  .hero-copy h1 { font-size:clamp(2.5rem,14vw,4.4rem); }
  .hero-actions .btn { width:100%; }
  .hero-visual, .hero-photo { min-height:470px; }
  .hero-visual { border-radius:30px; }
  .today-card { left:12px; right:12px; bottom:12px; padding:14px; }
  .today-list { grid-template-columns:1fr; gap:7px; }
  .today-item { display:flex; justify-content:space-between; align-items:center; gap:12px; }
  .today-item .status { margin:0; }
  .grid-2,.grid-3,.grid-4,.choice-grid,.form-grid { grid-template-columns:1fr; }
  .gallery { grid-template-columns:1fr 1fr; }
  .gallery img, .gallery img:first-child { height:220px; grid-row:auto; }
  .gallery img:first-child { grid-column:1/-1; height:320px; }
  .owner-stats { grid-template-columns:1fr 1fr; }
  .floating { display:none; }
  .mobile-booking-bar { display:grid; grid-template-columns:1fr 1fr; gap:8px; position:fixed; left:0; right:0; bottom:0; z-index:60; padding:9px 12px calc(9px + env(safe-area-inset-bottom)); background:rgba(255,255,255,.96); border-top:1px solid var(--line); backdrop-filter:blur(12px); }
  .mobile-booking-bar .btn { min-height:44px; font-size:.84rem; padding:10px 8px; }
  .desktop-calendar { display:none; }
  .mobile-slots { display:block; }
  .booking-main,.booking-summary { padding:18px; border-radius:22px; }
  .booking-wrap { padding-top:20px; }
  .actions { position:sticky; bottom:0; margin:24px -18px -18px; padding:12px 18px calc(12px + env(safe-area-inset-bottom)); background:rgba(255,255,255,.97); border-top:1px solid var(--line); }
  .actions .btn { flex:1; }
  .field.full { grid-column:auto; }
}

/* V1.0.3 / SYSTEM SYNC POLISH */
.staff-card{text-align:center}.staff-avatar{width:68px;height:68px;margin:0 auto 14px;border-radius:22px;display:grid;place-items:center;background:var(--brand-soft);color:var(--brand-dark);font-weight:900;font-size:1.35rem}.demo-disabled{pointer-events:none;opacity:.65}.hero-meta #systemSyncDetail{width:100%;color:var(--brand-dark);font-weight:800}.owner-stats .stat strong{font-size:1.35rem}.card [data-live-menu-price]{min-height:1.5em}
