* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #050506;
  color: #e5e5e5;
}

.site-header {
  padding: 24px;
  text-align: center;
}

.logo {
  letter-spacing: .15em;
  font-size: 22px;
}

/* Hero */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,.35);
  text-align: center;
}

.hero-overlay h2 {
  font-size: 36px;
  letter-spacing: .1em;
}

.hero-overlay p {
  margin-top: 16px;
  opacity: .8;
}

/* Sections */
.section {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: .1em;
}

.section-sub {
  text-align: center;
  margin-top: 12px;
  opacity: .6;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.product-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-body {
  padding: 22px;
}

.product-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.7;
  opacity: .8;
}

.product-price {
  margin-top: 14px;
  font-size: 16px;
  color: #cfd3ff;
}

.products-note {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  opacity: .6;
}

/* Reservation */
.reserve-section {
  background: radial-gradient(circle at top, #141418, #050506);
  text-align: center;
}

.reserve-box {
  max-width: 520px;
  margin: 40px auto 0;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}

.reserve-tel {
  margin: 20px 0;
  font-size: 18px;
}

.reserve-tel a {
  color: #cfd3ff;
  text-decoration: none;
}

.reserve-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  border-radius: 30px;
  background: linear-gradient(135deg,#bfc4ff,#7b82ff);
  color: #000;
  font-weight: 600;
}

/* Payment */
.payment-section {
  text-align: center;
}

.payment-logos img {
  max-width: 520px;
  width: 100%;
  margin-top: 40px;
  opacity: .9;
}

/* Footer */
.footer {
  padding: 40px;
  text-align: center;
  font-size: 12px;
  opacity: .5;
}

/* Responsive */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Reservation Section
========================= */

.reserve-section {
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.85)
  );
  padding: 100px 20px;
  text-align: center;
}

.reserve-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.reserve-box p {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.reserve-tel {
  font-size: 1.1rem;
  font-weight: 600;
}

.reserve-tel a {
  color: #ffffff;
  text-decoration: none;
}

.reserve-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #bfbfbf);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.reserve-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.25);
}

/* =========================
   Payment Section
========================= */

.payment-section {
  background: linear-gradient(
    to bottom,
    #000000,
    #050505
  );
  padding: 90px 20px;
  text-align: center;
}

.payment-logos {
  margin-top: 30px;
}

.payment-logos img {
  max-width: 420px;
  width: 100%;
  opacity: 0.95;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
}

/* =========================
   Payment Section
========================= */

.payment-section {
  background: linear-gradient(to bottom, #000, #050506);
  padding: 90px 20px;
  text-align: center;
}

.payment-logos {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.payment-logos img {
  height: 38px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
  transition: opacity .3s ease, transform .3s ease;
}

.payment-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* =========================
   Store Section
========================= */

.store-section {
  background: radial-gradient(circle at top, #141418, #050506);
  text-align: center;
}

.store-box {
  max-width: 520px;
  margin: 40px auto 0;
  padding: 40px 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.store-name {
  font-size: 20px;
  letter-spacing: .15em;
  margin-bottom: 16px;
}

.store-box p {
  line-height: 1.8;
  opacity: .85;
}

.store-tel a {
  color: #cfd3ff;
  text-decoration: none;
}

/* =========================
   Reservation Section
========================= */

.reserve-section {
  background: radial-gradient(circle at top, #141418, #050506);
  padding: 100px 20px;
}

.reserve-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.reserve-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  padding: 40px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.reserve-form label {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 14px;
  gap: 6px;
}

.reserve-form input,
.reserve-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: none;
}

.reserve-btn {
  margin-top: 20px;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ffffff, #bfbfbf);
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   Store Info + Map
========================= */

.store-info-section {
  background: radial-gradient(circle at top, #141418, #050506);
  padding: 100px 20px;
}

.store-info-wrapper {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.store-info-box {
  background: rgba(255,255,255,0.04);
  padding: 40px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.store-map-box {
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.store-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .store-info-wrapper {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Payment Section
========================= */

.payment-section {
  background: linear-gradient(to bottom, #000, #050506);
  padding: 90px 20px;
  text-align: center;
}

.payment-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  opacity: .75;
}

.payment-logos {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.payment-logos img {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

/* =========================
   Footer
========================= */

.footer {
  padding: 40px 20px;
  text-align: center;
  background: #050506;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-size: 12px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.footer-nav {
  font-size: 12px;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: opacity .3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-sep {
  margin: 0 6px;
  opacity: 0.4;
}

/* =========================
   Legal Pages (legal-notice / privacy-policy)
========================= */

.logo a {
  color: inherit;
  text-decoration: none;
}

.page-title-section {
  padding: 60px 20px 20px;
  text-align: center;
}

.page-title {
  font-size: 26px;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.92);
}

.legal-container {
  padding: 40px 20px 90px;
}

.legal-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 42px 36px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.legal-box h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.9);
}

.legal-box h3:first-of-type {
  margin-top: 0;
}

.legal-box p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
}

.legal-box a {
  color: rgba(207, 211, 255, 0.95);
}

@media (max-width: 600px) {
  .legal-box {
    padding: 28px 20px;
  }
  .page-title {
    font-size: 22px;
  }
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 120px;
  padding: 60px 24px 40px;
  background: linear-gradient(
    to top,
    #000 0%,
    #050505 60%,
    transparent 100%
  );
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  width: 140px;
  opacity: 0.55;
  filter:
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7));
  transition: opacity 0.3s ease;
}

.footer-logo img:hover {
  opacity: 0.75;
}

.footer-links {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* =========================
   Store Gallery
========================= */

.store-gallery {
  background: radial-gradient(circle at top, #0f0f12, #050506);
}

.store-gallery-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.store-gallery-item {
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.store-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.store-caption {
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 900px) {
  .store-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Store Exterior
========================= */

.store-exterior {
  background: linear-gradient(
    to bottom,
    #050506 0%,
    #08080b 100%
  );
}

.store-exterior-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.store-exterior-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65);
}

.store-exterior {
  background: linear-gradient(
    to bottom,
    #030304 0%,
    #08080b 100%
  );
  padding: 120px 0;
}

.store-exterior-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.store-exterior-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.store-exterior-text {
  text-align: center;
}

.store-exterior-text .section-title {
  font-size: 26px;
  letter-spacing: 0.12em;
}

.store-exterior-text .section-sub {
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.55;
  letter-spacing: 0.08em;
}

/* =========================
   Store Exterior (Overlay)
========================= */

.store-exterior {
  background: linear-gradient(
    to bottom,
    #030304 0%,
    #08080b 100%
  );
  padding: 100px 20px;
}

.store-exterior-wrapper {
  max-width: 1000px; /* ← 写真を少し抑える */
  margin: 0 auto;
}

.store-exterior-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.store-exterior-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* 文字オーバーレイ */
.store-exterior-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 48px 24px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25),
    transparent
  );
  text-align: center;
}

.store-exterior-overlay .section-title {
  font-size: 24px;
  letter-spacing: 0.18em;
}

.store-exterior-overlay .section-sub {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 768px) {
  .store-exterior {
    padding: 70px 16px;
  }

  .store-exterior-overlay {
    padding: 36px 18px;
  }

  .store-exterior-overlay .section-title {
    font-size: 20px;
  }
}
