/* ===== reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===== tokens ===== */
:root {
  --orange:      #E8601A;
  --orange-dark: #B84A10;
  --orange-light:#FFF0E6;
  --orange-mid:  #F5A06A;
  --black:       #111111;
  --gray-dark:   #222222;
  --gray:        #444444;
  --gray-light:  #F7F7F7;
  --white:       #FFFFFF;
  --font-en:     'Oswald', sans-serif;
  --font-ja:     'Noto Sans JP', sans-serif;
  --max:         1000px;
  --pad:         clamp(20px, 5vw, 60px);
}

/* ===== base ===== */
body {
  font-family: var(--font-ja);
  background: var(--white);
  color: var(--black);
  line-height: 1.8;
  font-size: 15px;
}

/* ===== nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  color: #bbb;
  font-family: var(--font-en);
  transition: color .2s;
}
.nav-links a:hover { color: var(--orange); }

/* ハンバーガー */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 600px) {
  .nav { height: 68px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(17,17,17,0.98);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 14px;
  }
}

/* ===== hero ===== */
.hero {
  min-height: 100svh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px var(--pad) 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-bg-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.hero-bg-logo img {
  width: 92%;
  max-width: 900px;
  height: auto;
  opacity: 0.22;
  filter: blur(0.5px);
  user-select: none;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--orange-mid);
  border: 1px solid rgba(245,160,106,0.5);
  padding: 7px 20px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-sub {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 3px;
  color: #aaa;
  margin-bottom: 40px;
}
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.hero-tag {
  font-size: 14px;
  background: rgba(232,96,26,0.18);
  color: #ffb88a;
  border: 1px solid rgba(232,96,26,0.4);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
}
.hero-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 16px 48px;
  border-radius: 2px;
  transition: background .2s;
}
.hero-cta:hover { background: var(--orange-dark); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 3px;
  color: #666;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #666, transparent);
}

/* ===== section common ===== */
.sec {
  padding: clamp(56px, 10vw, 96px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 10px;
  font-weight: 700;
}
.heading {
  font-size: clamp(24px, 4.5vw, 34px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 36px;
  color: var(--black);
}

/* ===== welcome ===== */
.welcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.welcome-card {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 24px 20px;
}
.welcome-card .wc-icon {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}
.welcome-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 8px;
}
.welcome-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* ===== price ===== */
.price-bg { background: #1a1a1a; }
.price-bg .sec { color: var(--white); }
.price-bg .eyebrow { color: var(--orange-mid); }
.price-bg .heading { color: var(--white); }

.price-block { margin-bottom: 40px; }
.price-block-label {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.price-note {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.7;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.price-table thead tr { background: rgba(255,255,255,0.08); }
.price-table thead td {
  padding: 12px 16px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 2px;
  color: #bbb;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #eee;
  font-size: 15px;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .th-row td {
  font-size: 12px;
  font-family: var(--font-en);
  letter-spacing: 2px;
  color: #777;
  padding: 10px 16px 6px;
  background: rgba(255,255,255,0.03);
}
.price-val {
  font-weight: 700;
  color: #ffb88a !important;
  font-size: 17px !important;
}
.price-card-solo {
  background: rgba(232,96,26,0.15);
  border: 1px solid rgba(232,96,26,0.4);
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.price-card-solo::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.price-card-solo p { font-size: 14px; color: #ccc; margin-bottom: 4px; }
.price-card-solo strong {
  font-family: var(--font-en);
  font-size: 32px;
  color: #ffb88a;
}
.price-card-solo span {
  font-size: 13px;
  color: #888;
  margin-left: 8px;
}

/* ===== tables ===== */
.tables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.table-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-top: 4px solid var(--orange);
  border-radius: 6px;
  padding: 20px 16px;
  transition: box-shadow .2s;
}
.table-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.table-brand {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 6px;
}
.table-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.table-count {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 2px;
}
.tables-total {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}

/* ===== instagram ===== */
.insta-bg { background: #f0f0f0; }
.insta-widget-wrap {
  min-height: 200px;
  display: block;
  width: 100%;
}
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  border: 2px solid var(--orange);
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-en);
  letter-spacing: 1px;
  transition: background .2s, color .2s;
}
.insta-link:hover {
  background: var(--orange);
  color: var(--white);
}
.insta-link svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ===== access ===== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 640px) {
  .access-grid { grid-template-columns: 1fr; }
}
.info-list { list-style: none; }
.info-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
  align-items: flex-start;
}
.info-list li:last-child { border-bottom: none; }
.info-list .lbl {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange-dark);
  font-weight: 700;
  min-width: 76px;
  padding-top: 3px;
}
.info-list .val {
  color: #222;
  line-height: 1.9;
  font-size: 15px;
}
.info-list .val a { color: var(--orange); font-weight: 700; }
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  height: 300px;
  background: #eee;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-note { font-size: 12px; color: #aaa; margin-top: 8px; }
.map-note a { color: var(--orange); }

/* ===== footer ===== */
footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 56px var(--pad) 40px;
}
.footer-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  opacity: 0.9;
}
.footer-sub {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 4px;
  color: #555;
  margin-bottom: 28px;
}
.footer-info {
  font-size: 14px;
  color: #aaa;
  line-height: 2.4;
  margin-bottom: 28px;
}
.footer-info a { color: var(--orange-mid); }
.footer-sns {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(232,96,26,0.5);
  color: var(--orange-mid);
  padding: 12px 32px;
  border-radius: 30px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 1px;
  transition: border-color .2s, color .2s;
  margin-bottom: 40px;
}
.footer-sns:hover { border-color: var(--orange); color: var(--orange); }
.footer-sns svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.footer-copy { font-size: 12px; color: #444; }