:root {
  --accent: #955f4e;
  --accent-dark: #8b5848;
  --accent-soft: #f4e4dc;
  --cream: #fffdfb;
  --beige: #f8f2ed;
  --ink: #2f2926;
  --muted: #6e625c;
  --line: #e7dcd5;
  --green: #007f3b;
  --shadow: 0 18px 48px rgba(78, 55, 44, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  color: #fff;
  background: var(--accent-dark);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 251, 0.95);
  border-bottom: 1px solid rgba(231, 220, 213, 0.9);
  backdrop-filter: blur(14px);
}
.logo {
  text-decoration: none;
  color: var(--accent-dark);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--accent-dark); text-decoration: underline; }
.header-book {
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 72px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(38, 28, 24, 0.78) 0%, rgba(38, 28, 24, 0.48) 55%, rgba(38, 28, 24, 0.22) 100%);
}
.hero-inner { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0; color: #fff; }
.eyebrow { margin: 0 0 12px; color: #f1cec2; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.035em;
  text-wrap: balance;
}
.hero-mobile-break { display: none; }
.hero-lead { max-width: 690px; margin: 24px 0 0; font-size: clamp(15px, 2vw, 18px); }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge { padding: 7px 13px; border: 1px solid rgba(255,255,255,.58); border-radius: 999px; background: rgba(30,22,18,.22); font-size: 12px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.18); }
.btn-primary { color: #fff; background: var(--accent-dark); }
.btn-line { color: #fff; background: var(--green); }
.btn-light { color: var(--accent-dark); background: #fff; }

.sub-hero {
  padding: 78px 20px 72px;
  text-align: center;
  background: linear-gradient(145deg, #f9eee8, #fffaf6);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs { max-width: 1080px; margin: 0 auto 24px; text-align: left; font-size: 12px; color: var(--muted); }
.breadcrumbs a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.sub-hero h1 { margin: 0; font-family: "Noto Serif JP", serif; font-size: clamp(30px, 5vw, 52px); line-height: 1.5; color: var(--accent-dark); }
.sub-hero p { max-width: 720px; margin: 20px auto 0; color: var(--muted); }

.section { padding: clamp(68px, 9vw, 112px) 20px; }
.section-alt { background: var(--beige); }
.container { width: min(1080px, 100%); margin: 0 auto; }
.section-label { margin: 0 0 8px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-align: center; }
.section-title {
  margin: 0;
  color: var(--accent-dark);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}
.section-lead { max-width: 760px; margin: 22px auto 0; color: var(--muted); text-align: center; }

.check-list, .plain-list { max-width: 760px; margin: 38px auto 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 16px 12px 16px 44px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 14px; color: var(--accent-dark); font-weight: 700; }

.intro-grid, .feature-grid, .menu-grid, .info-grid { display: grid; gap: 22px; margin-top: 42px; }
.intro-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(79, 59, 49, .05);
}
.card h3 { margin: 0 0 12px; color: var(--accent-dark); font-family: "Noto Serif JP", serif; font-size: 20px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.number { display: block; margin-bottom: 12px; color: var(--accent); font-family: "Cormorant Garamond", serif; font-size: 40px; line-height: 1; }

.menu-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.menu-card-head { padding: 28px 30px 22px; background: var(--accent-soft); }
.menu-card-head small { color: var(--accent-dark); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.menu-card-head h3 { margin: 6px 0 0; font-size: 23px; }
.menu-card-body { display: flex; flex: 1; flex-direction: column; padding: 26px 30px 30px; }
.menu-card-body p { margin: 0; }
.detail-list { margin: 18px 0 0; padding: 0; list-style: none; }
.detail-list li { padding: 9px 0; border-bottom: 1px dashed var(--line); color: var(--muted); font-size: 13px; }
.price-block { margin-top: auto; padding-top: 24px; }
.price-pair { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 6px 0; }
.price-pair span { color: var(--muted); font-size: 13px; }
.price-pair strong { color: var(--accent-dark); font-size: 20px; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 18px; color: var(--accent-dark); font-weight: 600; text-underline-offset: 5px; }

.split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(30px, 6vw, 72px); align-items: center; margin-top: 46px; }
.split-media { overflow: hidden; border-radius: 22px; box-shadow: var(--shadow); background: var(--beige); }
.split-media img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; object-position: center; }
.split-copy h3 { margin: 0 0 18px; color: var(--accent-dark); font-family: "Noto Serif JP", serif; font-size: clamp(24px, 3.2vw, 34px); }
.split-copy p { margin: 0 0 16px; color: var(--muted); }

.service-image { width: min(880px, 100%); margin: 42px auto 0; overflow: hidden; border-radius: 22px; box-shadow: var(--shadow); }
.service-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: center 46%; }
.service-body { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 38px; align-items: start; margin-top: 48px; }
.service-copy h2 { margin: 0 0 18px; color: var(--accent-dark); font-family: "Noto Serif JP", serif; font-size: 30px; }
.service-copy h3 { margin: 34px 0 12px; color: var(--accent-dark); font-size: 20px; }
.service-copy p { margin: 0 0 16px; color: var(--muted); }
.price-panel { position: sticky; top: 96px; padding: 28px; border-radius: 18px; background: var(--accent-soft); }
.price-panel h2 { margin: 0 0 16px; color: var(--accent-dark); font-family: "Noto Serif JP", serif; font-size: 22px; }
.price-panel .amount { margin: 8px 0 0; color: var(--accent-dark); font-size: 28px; font-weight: 700; }
.price-panel .subamount { margin: 2px 0; color: var(--muted); font-size: 14px; }
.price-panel .btn { width: 100%; margin-top: 18px; }

.steps { max-width: 800px; margin: 42px auto 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; min-height: 72px; padding: 4px 0 28px 76px; counter-increment: step; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
}
.steps strong { display: block; color: var(--accent-dark); font-size: 17px; }
.steps span { color: var(--muted); font-size: 14px; }

.notice { max-width: 820px; margin: 38px auto 0; padding: 28px 30px; border-left: 5px solid var(--accent-dark); background: #fff; box-shadow: 0 10px 30px rgba(79,59,49,.06); }
.notice h3 { margin: 0 0 12px; color: var(--accent-dark); }
.notice p, .notice ul { margin: 0; color: var(--muted); }
.notice ul { padding-left: 1.3em; }

.faq { max-width: 820px; margin: 40px auto 0; }
.faq details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq summary { min-height: 44px; display: flex; align-items: center; gap: 14px; cursor: pointer; color: var(--accent-dark); font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; color: var(--accent); font-family: "Cormorant Garamond", serif; font-size: 24px; }
.faq details p { margin: 14px 0 0 38px; color: var(--muted); }

.map-wrap { overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: var(--beige); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.shop-data { margin: 0; }
.shop-data div { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.shop-data dt { color: var(--accent-dark); font-weight: 600; }
.shop-data dd { margin: 0; color: var(--muted); }

.price-table-wrap { margin-top: 42px; overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.price-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.price-table th, .price-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.price-table th { color: var(--accent-dark); background: var(--accent-soft); font-size: 13px; }
.price-table td strong { color: var(--accent-dark); }
.price-table tr:last-child td { border-bottom: 0; }

.cta-section { padding: 72px 20px 96px; text-align: center; color: #fff; background: var(--accent-dark); }
.cta-section h2 { margin: 0; font-family: "Noto Serif JP", serif; font-size: clamp(26px, 4vw, 40px); }
.cta-section p { max-width: 650px; margin: 18px auto 0; color: rgba(255,255,255,.86); }
.cta-actions { justify-content: center; }

.site-footer { padding: 48px 20px 98px; text-align: center; background: #2e2926; color: rgba(255,255,255,.82); }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-bottom: 20px; }
.footer-nav a { min-height: 44px; display: inline-flex; align-items: center; color: #fff; font-size: 13px; }
.site-footer p { margin: 6px 0; font-size: 12px; }

.floating-cta { position: fixed; right: 20px; bottom: 18px; z-index: 90; display: flex; gap: 10px; }
.floating-cta .btn { min-height: 48px; padding: 10px 18px; box-shadow: 0 10px 28px rgba(0,0,0,.22); }

@media (max-width: 900px) {
  .site-nav a:not(.header-book) { display: none; }
  .intro-grid, .feature-grid { grid-template-columns: 1fr; }
  .menu-grid, .info-grid, .service-body { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { width: min(560px, 100%); margin: 0 auto; }
  .price-panel { position: static; }
}

@media (max-width: 640px) {
  body { padding-bottom: 78px; }
  .site-header { min-height: 62px; padding: 8px 16px; }
  .logo { font-size: 14px; }
  .header-book { padding: 7px 13px; }
  .hero { min-height: 700px; }
  .hero-media img { object-position: 65% center; }
  .hero::after { background: linear-gradient(180deg, rgba(38,28,24,.54), rgba(38,28,24,.76)); }
  .hero-inner { width: calc(100% - 32px); padding: 64px 0 110px; }
  .hero-mobile-break { display: block; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .section { padding-left: 16px; padding-right: 16px; }
  .card { padding: 24px 20px; }
  .menu-card-head, .menu-card-body { padding-left: 22px; padding-right: 22px; }
  .split-media img { aspect-ratio: 4/5; object-position: center 25%; }
  .service-image img { aspect-ratio: 4/5; }
  .shop-data div { grid-template-columns: 1fr; gap: 4px; }
  .map-wrap iframe { height: 340px; }
  .price-table-wrap { overflow: visible; border: 0; border-radius: 0; background: transparent; }
  .price-table { min-width: 0; display: block; }
  .price-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { margin-bottom: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 8px 24px rgba(79,59,49,.05); }
  .price-table td { display: grid; grid-template-columns: 86px 1fr; gap: 14px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .price-table td::before { content: attr(data-label); color: var(--accent-dark); font-size: 12px; font-weight: 700; }
  .floating-cta { left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .floating-cta .btn { width: 100%; padding: 10px 8px; font-size: 12px; }
  .site-footer { padding-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* 既存Leap（浜松店）と共通の店舗トップデザイン */
:root {
  --ink: #3A3028;
  --line-green: #08773A;
  --line-green-d: #06642F;
  --accent: #88563F;
  --accent-light: #986048;
  --blush: #F5E9E2;
  --beige-light: #FAF7F4;
  --cream: #FFFFFF;
  --text-dark: #2C2826;
  --text-medium: #6B6560;
  --text-light: #665C55;
  --line: #EBE6E1;
}

body { font-weight: 300; color: var(--text-dark); background: var(--cream); overflow-x: hidden; }
.text-center { text-align: center; }
.br-sp { display: none; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 10px 16px; color: #fff; background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

@keyframes leapFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes leapFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes leapPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
.animate { opacity: 0; }
.animate.visible { animation: leapFadeUp .8s ease forwards; }
.animate.d1.visible { animation-delay: .1s; }
.animate.d2.visible { animation-delay: .2s; }
.animate.d3.visible { animation-delay: .3s; }
.animate.d4.visible { animation-delay: .4s; }
.animate.d5.visible { animation-delay: .5s; }
.animate.d6.visible { animation-delay: .6s; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; }
.nav-logo { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 22px; letter-spacing: 5px; color: var(--ink); text-decoration: none; }
.nav-logo span { display: block; margin-top: 2px; font-family: "Noto Sans JP", sans-serif; font-size: 10px; letter-spacing: 2px; color: var(--text-light); }
.nav-links { display: flex; gap: 28px; margin: 0; padding: 0; list-style: none; }
.nav-links a { text-decoration: none; font-size: 10px; letter-spacing: 2px; color: var(--text-light); text-align: center; }
.nav-links .nav-en { display: block; margin-bottom: 2px; font-family: "Cormorant Garamond", serif; font-size: 13px; letter-spacing: 1px; color: var(--text-dark); }

.hero { width: 100%; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 100px 24px 80px; position: relative; background: #2a2420; overflow: hidden; isolation: auto; }
.hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,36,32,.50) 0%, rgba(42,36,32,.30) 50%, rgba(42,36,32,.58) 100%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; width: auto; margin: 0; padding: 0; color: #fff; }
.hero-badge { display: inline-block; padding: 8px 32px; border: 1px solid rgba(255,255,255,.6); color: #fff; font-size: 11px; letter-spacing: 4px; margin-bottom: 48px; animation: leapFadeIn 1s ease .3s forwards; opacity: 0; }
.hero .hero-lead { max-width: none; margin: 0 0 36px; font-family: "Noto Serif JP", serif; font-weight: 400; font-size: clamp(17px,3vw,22px); color: #fff; letter-spacing: 4px; line-height: 2.2; animation: leapFadeUp 1s ease .5s forwards; opacity: 0; }
.hero .hero-title { max-width: none; margin: 0 0 8px; font-family: "Cormorant Garamond", serif; font-weight: 400; font-size: clamp(48px,9vw,80px); line-height: 1.2; letter-spacing: 12px; color: #fff; animation: leapFadeUp 1s ease .7s forwards; opacity: 0; }
.hero-title-brand { display: block; }
.hero-title-service { display: block; margin-top: 14px; font-family: "Noto Serif JP", serif; font-size: clamp(16px,3vw,22px); font-weight: 500; letter-spacing: 3px; line-height: 1.8; }
.hero-title-sub { margin: 0 0 40px; font-family: "Noto Sans JP", sans-serif; font-size: clamp(11px,2vw,13px); letter-spacing: 6px; color: rgba(255,255,255,.82); animation: leapFadeUp 1s ease .9s forwards; opacity: 0; }
.hero-desc { margin: 0 0 32px; font-family: "Noto Serif JP", serif; font-size: clamp(13px,2vw,15px); letter-spacing: 2px; line-height: 2.2; color: rgba(255,255,255,.95); animation: leapFadeUp 1s ease 1.1s forwards; opacity: 0; }
.hero-tags { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; animation: leapFadeUp 1s ease 1.2s forwards; opacity: 0; }
.hero-tag { padding: 7px 20px; background: rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.8); color: #fff; font-size: 11px; letter-spacing: 2px; border-radius: 50px; text-shadow: 0 1px 3px rgba(0,0,0,.7); }
.hero-cta { animation: leapFadeUp 1s ease 1.3s forwards; opacity: 0; }

.sec-label { margin: 0 0 12px; font-family: "Cormorant Garamond", serif; font-size: 13px; letter-spacing: 5px; color: var(--accent); }
.sec-title { margin: 0 0 8px; font-family: "Noto Serif JP", serif; font-weight: 500; font-size: clamp(20px,4vw,28px); letter-spacing: 3px; line-height: 1.9; color: var(--text-dark); text-wrap: balance; }
.sec-title-en { margin: 0 0 32px; font-family: "Cormorant Garamond", serif; font-size: 12px; letter-spacing: 4px; color: var(--text-light); }
.sec-line { width: 50px; height: 2px; background: var(--accent); margin: 0 auto 40px; }
.sec-note { max-width: 640px; margin: 24px auto 0; font-size: 11px; color: var(--text-light); line-height: 1.9; text-align: center; }
.sec-photo { position: relative; background-size: cover; background-position: center; background-color: #2a2420; }
.sec-photo::before { content: ""; position: absolute; inset: 0; background: rgba(250,246,240,.78); z-index: 0; }
.sec-photo > * { position: relative; z-index: 1; }

.btn-line, .btn-book { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; padding: 18px 48px; color: #fff; font-weight: 500; font-size: 15px; letter-spacing: 2px; text-decoration: none; border-radius: 50px; transition: all .3s ease; }
.btn-line { background: var(--line-green); box-shadow: 0 10px 30px rgba(8,119,58,.32); }
.btn-book { background: var(--accent); box-shadow: 0 10px 30px rgba(136,86,63,.32); }
.btn-line:hover, .btn-book:hover { transform: translateY(-2px); }
.cta-pair { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-note { margin-top: 14px; font-size: 12px; color: var(--text-light); letter-spacing: 1px; }
.hero .cta-note { color: rgba(255,255,255,.96); text-shadow: 0 1px 4px rgba(0,0,0,.75); }

.sec-concerns { background: var(--beige-light); padding: 80px 24px; }
.concern-grid { max-width: 600px; margin: 0 auto; text-align: left; }
.concern-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); font-family: "Noto Serif JP", serif; font-weight: 400; font-size: 15px; color: var(--text-dark); letter-spacing: 1px; line-height: 1.9; }
.concern-check { color: var(--accent); flex-shrink: 0; margin-top: 3px; font-size: 16px; }
.concern-close { max-width: 600px; margin: 40px auto 0; text-align: center; font-family: "Noto Serif JP", serif; font-weight: 500; font-size: clamp(16px,3vw,20px); letter-spacing: 2px; color: var(--accent); line-height: 2; }

.sec-solution { padding: 100px 24px; }
.solution-box { max-width: 640px; margin: 40px auto 0; padding: 48px 36px; background: rgba(255,255,255,.97); border-radius: 4px; box-shadow: 0 24px 60px rgba(0,0,0,.24); text-align: center; }
.solution-box p { margin: 0; font-family: "Noto Serif JP", serif; font-size: clamp(14px,2.5vw,17px); line-height: 2.4; color: var(--text-dark); letter-spacing: 2px; }
.solution-icons { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.solution-icon { flex: 1; min-width: 120px; max-width: 160px; padding: 20px 12px; background: var(--beige-light); border-radius: 4px; }
.si-mark { font-family: "Cormorant Garamond", serif; font-size: 26px; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.si-text { font-family: "Noto Serif JP", serif; font-weight: 500; font-size: 13px; color: var(--text-dark); }

.sec-tsumefura, .sec-flow, .sec-staff, .sec-access { background: var(--cream); padding: 80px 24px; }
.tsumefura-wrap { max-width: 700px; margin: 0 auto; }
.tsumefura-content { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; align-items: center; }
.tsumefura-img { border-radius: 4px; overflow: hidden; box-shadow: 0 14px 40px rgba(0,0,0,.08); }
.tsumefura-img img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; display: block; }
.tsumefura-text { margin: 0; font-family: "Noto Serif JP", serif; font-size: 14px; line-height: 2.4; color: var(--text-medium); letter-spacing: 1px; }
.tsumefura-text .em { color: var(--accent); font-weight: 500; }
.tsumefura-points { margin: 24px 0 0; padding: 0; list-style: none; }
.tsumefura-points li { padding: 8px 0; font-size: 14px; color: var(--text-dark); display: flex; gap: 10px; line-height: 1.9; }
.tsumefura-points li::before { content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 9px; }

.sec-compare, .sec-menu, .sec-faq { background: var(--beige-light); padding: 80px 24px; }
.reason-grid { max-width: 900px; margin: 40px auto 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.reason-card, .care-scope-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 14px 40px rgba(0,0,0,.05); }
.reason-card { padding: 32px 24px; text-align: center; }
.reason-num { font-family: "Cormorant Garamond", serif; font-size: 36px; color: var(--accent); line-height: 1; margin-bottom: 14px; }
.reason-title { margin: 0 0 12px; font-family: "Noto Serif JP", serif; font-size: 15px; font-weight: 500; line-height: 1.8; }
.reason-text { margin: 0; font-size: 13px; line-height: 2.1; color: var(--text-medium); }
.care-scope { max-width: 820px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.care-scope-card { padding: 30px 26px; }
.care-scope-card h3 { margin: 0 0 14px; font-family: "Noto Serif JP", serif; font-size: 17px; font-weight: 500; }
.care-scope-card ul { margin: 0 0 0 20px; padding: 0; }
.care-scope-card li { font-size: 13px; color: var(--text-medium); line-height: 2; }
.care-scope-note { max-width: 760px; margin: 28px auto 0; text-align: center; color: var(--text-medium); font-size: 13px; line-height: 2; }

.flow-steps { max-width: 700px; margin: 40px auto 0; }
.flow-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.flow-num { font-family: "Cormorant Garamond", serif; font-size: 14px; letter-spacing: 3px; color: var(--accent); flex-shrink: 0; }
.flow-title { margin: 0 0 6px; font-family: "Noto Serif JP", serif; font-size: 16px; font-weight: 500; }
.flow-desc { margin: 0; font-size: 13px; color: var(--text-medium); line-height: 2; }

.menu-wrap { max-width: 800px; margin: 48px auto 0; }
.menu-block { background: #fff; margin-bottom: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 14px 40px rgba(0,0,0,.05); }
.menu-head { padding: 32px; text-align: center; border-bottom: 1px solid var(--line); }
.menu-tag { display: inline-block; padding: 4px 20px; background: var(--ink); color: #fff; font-family: "Cormorant Garamond", serif; font-size: 12px; letter-spacing: 3px; border-radius: 2px; margin-bottom: 16px; }
.menu-tag.main { background: var(--accent); }
.menu-name { margin: 0 0 8px; font-family: "Noto Serif JP", serif; font-weight: 500; font-size: 22px; letter-spacing: 2px; }
.menu-catch { margin: 0; font-size: 13px; color: var(--text-light); }
.menu-body { padding: 32px; }
.menu-row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.8; }
.menu-label { min-width: 80px; flex-shrink: 0; font-weight: 500; font-size: 12px; letter-spacing: 1px; }
.menu-val { color: var(--text-medium); }
.menu-includes { margin-top: 16px; padding: 16px 20px; background: var(--beige-light); font-size: 13px; color: var(--text-medium); line-height: 2; text-align: center; }
.menu-includes strong { color: var(--accent); }
.menu-price { text-align: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.menu-price-row { margin-bottom: 8px; }
.price-label { font-size: 12px; color: var(--text-light); letter-spacing: 1px; margin-right: 8px; }
.price-num { font-family: "Cormorant Garamond", serif; font-size: 32px; color: var(--text-dark); letter-spacing: 2px; }
.price-num.initial { color: var(--accent); font-size: 46px; }
.menu-price-row.regular .price-num { font-size: 20px; color: var(--text-medium); }
.price-label.initial-label { background: var(--accent); color: #fff; padding: 4px 16px; border-radius: 50px; letter-spacing: 2px; }
.price-unit { font-size: 13px; color: var(--text-light); }
.service-links { max-width: 800px; margin: 36px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.service-links a { display: block; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: 4px; color: var(--text-dark); text-decoration: none; font-family: "Noto Serif JP", serif; font-size: 14px; text-align: center; }

.staff-wrap { max-width: 820px; margin: 40px auto 0; display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: center; }
.staff-photo img { width: 100%; height: auto; aspect-ratio: 9/16; object-fit: cover; border-radius: 4px; box-shadow: 0 14px 40px rgba(0,0,0,.08); }
.staff-text { font-size: 14px; line-height: 2.4; color: var(--text-medium); letter-spacing: 1px; }

.faq-list { max-width: 640px; margin: 40px auto 0; }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--line); }
.faq-q, .faq-a { display: flex; gap: 14px; align-items: flex-start; }
.faq-q { margin-bottom: 18px; }
.faq-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: "Cormorant Garamond", serif; font-size: 16px; flex-shrink: 0; }
.q-icon { background: var(--ink); color: #fff; }
.a-icon { background: var(--accent); color: #fff; }
.faq-q-text, .faq-a-text { margin: 0; padding-top: 6px; }
.faq-q-text { font-family: "Noto Serif JP", serif; font-weight: 500; font-size: 15px; line-height: 1.8; }
.faq-a-text { font-size: 14px; line-height: 2.2; color: var(--text-medium); }
.booking-note { max-width: 760px; margin: 48px auto 0; padding: 28px; background: #fff; border: 1px solid var(--accent-light); border-radius: 4px; }
.booking-note h3 { margin: 0 0 14px; font-family: "Noto Serif JP", serif; font-size: 17px; }
.booking-note p { margin: 0; font-size: 13px; line-height: 2.1; color: var(--text-medium); }

.access-grid.single { max-width: 560px; margin: 40px auto 0; grid-template-columns: 1fr; }
.access-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 36px 28px; box-shadow: 0 14px 40px rgba(0,0,0,.05); text-align: center; }
.access-badge { display: inline-block; padding: 4px 16px; background: var(--accent); color: #fff; font-size: 11px; letter-spacing: 2px; border-radius: 2px; margin-bottom: 16px; }
.access-name { margin: 0 0 16px; font-family: "Noto Serif JP", serif; font-size: 18px; font-weight: 500; letter-spacing: 2px; }
.access-addr { font-size: 13px; color: var(--text-medium); line-height: 2.2; }
.access-addr .zip { font-size: 12px; color: var(--text-light); }
.access-addr .street { font-size: 14px; color: var(--text-dark); font-weight: 500; }
.access-hours { display: inline-block; margin-top: 6px; padding: 4px 14px; border: 1px solid var(--line); border-radius: 50px; font-size: 12px; color: var(--accent); }
.access-map { min-height: 44px; display: inline-flex; align-items: center; margin-top: 14px; padding: 10px 22px; border: 1px solid var(--accent); border-radius: 50px; color: var(--accent); font-size: 12px; text-decoration: none; }

.sec-closing { padding: 110px 24px 130px; text-align: center; }
.closing-title { margin: 0 0 32px; font-family: "Noto Serif JP", serif; font-weight: 500; font-size: clamp(19px,3.6vw,26px); color: var(--text-dark); letter-spacing: 3px; line-height: 2.1; }
.closing-msg { max-width: 560px; margin: 0 auto 48px; font-family: "Noto Serif JP", serif; font-size: clamp(14px,2.5vw,17px); line-height: 2.6; color: var(--text-medium); letter-spacing: 2px; }
.closing-tagline { margin: 56px 0 0; font-family: "Noto Serif JP", serif; font-size: 14px; letter-spacing: 3px; color: var(--text-medium); line-height: 2.4; }
.footer { padding: 48px 24px 112px; background: var(--ink); text-align: center; }
.footer-brand { margin: 0 0 6px; font-family: "Cormorant Garamond", serif; font-size: 24px; letter-spacing: 8px; color: #fff; }
.footer-sub { margin: 0; font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,.55); }

.floating-cta { position: fixed; bottom: 24px; right: 24px; left: auto; z-index: 99; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.floating-cta a { min-height: 48px; display: flex; align-items: center; justify-content: center; padding: 15px 28px; background: var(--line-green); color: #fff; font-weight: 500; font-size: 13px; letter-spacing: 1px; text-decoration: none; border-radius: 50px; box-shadow: 0 8px 28px rgba(8,119,58,.38); }
.floating-cta .fc-book { background: var(--accent); box-shadow: 0 8px 28px rgba(136,86,63,.38); animation: leapPulse 2.5s ease infinite; }

@media (max-width: 767px) {
  body { padding-bottom: 0; }
  .nav-links { display: none; }
  .hero { min-height: 100svh; padding: 94px 20px 96px; }
  .hero-poster { object-position: 58% center; }
  .hero .hero-title { font-size: clamp(44px,15vw,62px); letter-spacing: 9px; }
  .hero-title-service { font-size: 17px; letter-spacing: 2px; }
  .hero-title-sub { letter-spacing: 4px; }
  .hero-desc { letter-spacing: 1px; }
  .hero .hero-cta { display: none; }
  .sec-concerns, .sec-solution, .sec-tsumefura, .sec-compare, .sec-flow, .sec-menu, .sec-staff, .sec-faq, .sec-access, .sec-closing { padding-left: 20px; padding-right: 20px; }
  .tsumefura-content, .reason-grid, .care-scope, .staff-wrap, .service-links { grid-template-columns: 1fr; }
  .staff-photo { max-width: 320px; margin: 0 auto; }
  .menu-body, .menu-head { padding: 24px; }
  .menu-row { flex-direction: column; gap: 4px; }
  .solution-box { padding: 40px 22px; }
  .br-sp { display: inline; }
  .br-pc { display: none; }
  .floating-cta { left: 16px; right: 16px; bottom: 14px; flex-direction: row; align-items: stretch; gap: 8px; }
  .floating-cta a { flex: 1; padding: 15px 12px; font-size: 13px; }
}
