
:root{
  --bg:#0f0f10;
  --panel:#17171a;
  --panel2:#1c1c20;
  --line:#2a2a2f;
  --text:#ffffff;
  --muted:rgba(255,255,255,.75);
  --muted2:rgba(255,255,255,.6);
  --accent:#ffffff;
  --radius:18px;
  --shadow:0 10px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:"Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height:1.8;
  letter-spacing:.03em;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{max-width:1120px;margin:0 auto;padding:0 20px}

.header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(8px);
  background:rgba(15,15,16,.88);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;align-items:center;gap:12px;min-width:220px;
}
.brand-badge{
  background:transparent;border-radius:0;padding:0;
  
}
.brand-badge img{height:26px;width:auto}
.brand-text{display:flex;flex-direction:column;line-height:1.2}
.brand-text .name{font-weight:800;letter-spacing:.18em;font-size:12px;color:var(--muted)}
.brand-text .store{font-weight:700;font-size:12px;color:var(--muted2)}

.nav{
  display:flex;align-items:center;gap:18px;flex-wrap:wrap;justify-content:flex-end;
}
.nav a{
  font-size:13px;opacity:.82;transition:.2s;
  border-bottom:1px solid transparent;padding-bottom:4px;
}
.nav a:hover{opacity:1;border-bottom-color:rgba(255,255,255,.35)}
.nav .cta{
  opacity:1;
  padding:10px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
}
.nav .cta:hover{background:#fff;color:#000;border-color:#fff}

.hero{
  min-height:78vh;
  display:flex;align-items:center;
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(700px 460px at 85% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 60%);
}
.hero-inner{padding:86px 0 64px}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 14px;border:1px solid rgba(255,255,255,.25);
  border-radius:999px;color:var(--muted);font-size:12px;
}
.h1{
  margin-top:18px;
  font-size:44px;
  line-height:1.2;
  letter-spacing:.14em;
}
.lead{
  margin-top:16px;color:var(--muted);
  max-width:780px;
}
.hero-actions{margin-top:26px;display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 18px;border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  transition:.2s;
}
.btn:hover{background:#fff;color:#000;border-color:#fff}
.btn.primary{background:#fff;color:#000;border-color:#fff}
.btn.primary:hover{opacity:.85}

.section{padding:86px 0}
.section-title{
  text-align:center;
  font-size:28px;letter-spacing:.12em;
}
.section-sub{
  text-align:center;color:var(--muted);
  margin-top:10px;
}

.grid{display:grid;gap:18px;margin-top:34px}
.grid.cols-3{grid-template-columns:repeat(3,1fr)}
.grid.cols-2{grid-template-columns:repeat(2,1fr)}
@media (max-width:980px){
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr}
  .h1{font-size:34px}
  .brand{min-width:auto}
}

.card{
  background:linear-gradient(180deg, var(--panel), var(--panel2));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.card h3{font-size:16px;letter-spacing:.10em}
.card p{margin-top:8px;color:var(--muted);font-size:14px}

.menu-item{
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
  padding:16px 0;border-top:1px solid rgba(255,255,255,.10);
}
.menu-item:first-child{border-top:none;padding-top:0}
.menu-item .name{font-weight:700}
.menu-item .desc{color:var(--muted);font-size:13px;margin-top:6px;max-width:640px}
.menu-item .price{font-weight:800;letter-spacing:.06em;white-space:nowrap}
.menu-note{margin-top:14px;color:var(--muted2);font-size:12px}

.split{
  display:grid;grid-template-columns:1.2fr .8fr;gap:18px;margin-top:34px;
}
@media (max-width:980px){.split{grid-template-columns:1fr}}

.kv{
  background:linear-gradient(180deg, rgba(255,255,255,.06), transparent);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
}
.kv .row{display:flex;justify-content:space-between;gap:12px;padding:12px 0;border-top:1px solid rgba(255,255,255,.10)}
.kv .row:first-child{border-top:none;padding-top:0}
.kv .label{color:var(--muted)}
.kv .value{font-weight:700}

.footer{
  border-top:1px solid var(--line);
  padding:34px 0;
  color:rgba(255,255,255,.55);
  font-size:12px;
  text-align:center;
}

.fixed-call{
  position:fixed;right:18px;bottom:18px;z-index:60;
  display:none;
}
.fixed-call a{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 18px;border-radius:999px;
  background:#fff;color:#000;font-weight:800;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
}
@media (max-width:980px){.fixed-call{display:block}}
