/* ============================================
   Bee Studio - Premium Stylesheet
   Bold Typography / Dark Section / Music Feel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* --- Variables --- */
:root {
  --honey-gold: #F5A623;
  --honey-dark: #D4891C;
  --honey-deep: #C07A15;
  --honey-light: #FFF3D6;
  --honey-cream: #FFFAED;
  --bee-black: #1A1A1A;
  --bee-dark: #2D2D2D;
  --bee-charcoal: #232323;
  --warm-white: #FEFCF7;
  --warm-gray: #8A8070;
  --warm-gray-light: #C4BAA8;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5248;
  --text-light: #8A8070;
  --bg-main: #FEFCF7;
  --bg-section: #FFF8E8;
  --bg-dark: #1E1E1E;
  --bg-footer: #F5A623;
  --shadow-soft: 0 4px 20px rgba(245,166,35,0.10);
  --shadow-hover: 0 8px 32px rgba(245,166,35,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-en: 'Poppins', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --max-width: 1100px;
}

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-jp);
  color: var(--text-primary);
  background: var(--bg-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration:none; color:inherit; transition:var(--transition); }
ul,ol { list-style:none; }
img { max-width:100%; height:auto; display:block; }

/* --- Utility --- */
.container { max-width:var(--max-width); margin:0 auto; padding:0 24px; position:relative; }
.section-padding { padding: 100px 0; }

/* --- Fade In --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Background Decorative Text --- */
.section-bg-text {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(245,166,35,0.06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  letter-spacing: 0.05em;
  line-height: 1;
}
.section-bg-text--light {
  color: rgba(255,255,255,0.04);
}

/* --- Section Title --- */
.section-title { text-align:center; margin-bottom:48px; position:relative; z-index:1; }
.section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section-title h2::after {
  content:'';
  position:absolute;
  bottom:0; left:50%; transform:translateX(-50%);
  width:40px; height:3px;
  background:var(--honey-gold);
  border-radius:2px;
}

/* --- Page Header (sub pages) --- */
.page-header {
  text-align: center;
  padding: 60px 0 40px;
}
.page-header .page-icon { font-size: 2.5rem; margin-bottom: 12px; }
.page-header h1 { font-size: 1.8rem; font-weight: 700; }
.page-header .page-desc { font-size: 0.9rem; color: var(--text-light); margin-top: 8px; }

/* ==============================
   HEADER / NAV
   ============================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(254,252,247,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,166,35,0.10);
  transition: var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; }
.logo .logo-img { height: 40px; width: auto; }

.nav-menu { display:flex; align-items:center; gap:28px; }
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}
.nav-menu a::after {
  content:'';
  position:absolute;
  bottom:0; left:0;
  width:0; height:2px;
  background:var(--honey-gold);
  transition:var(--transition);
}
.nav-menu a:hover { color:var(--honey-dark); }
.nav-menu a:hover::after { width:100%; }

.nav-menu a.nav-reserve {
  display: inline-flex;
  align-items: center;
  background: var(--honey-gold);
  color: #fff !important;
  padding: 10px 28px;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(245,166,35,0.3);
}
.nav-menu a.nav-reserve:hover {
  background: var(--honey-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.nav-menu a.nav-reserve::after { display:none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bee-black);
  transition: var(--transition);
  border-radius: 1px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ==============================
   HERO
   ============================== */
.hero {
  margin-top: 64px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD96A 0%, #F5A623 35%, #E8960C 100%);
  min-height: 540px;
}
.hero-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0L60 15V37L30 52L0 37V15Z' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 70px 24px 120px;
  position: relative;
  z-index: 2;
}
.hero-text { color: #fff; }
.hero-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.hero-title {
  font-family: var(--font-en);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.hero-date {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-date span {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 2px 14px;
  border-radius: 4px;
  font-size: 1.3rem;
  backdrop-filter: blur(4px);
}
.hero-desc {
  font-size: 0.95rem;
  line-height: 2;
  opacity: 0.9;
  margin-bottom: 36px;
}

/* --- Hero Buttons --- */
.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; }
.btn-music {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: visible;
  transition: all 0.3s ease;
}
.btn-music .btn-text { position:relative; z-index:2; }
.btn-primary {
  background: #fff;
  color: var(--honey-dark);
  border: 2px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background: var(--honey-cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
.btn-primary .note { color: var(--honey-gold); text-shadow: none; }

.btn-outline {
  background: var(--bee-black);
  color: #fff;
  border: 2px solid var(--bee-black);
}
.btn-outline:hover {
  background: var(--bee-dark);
  transform: translateY(-3px);
  border-color: var(--bee-dark);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* Music note pop animation */
.music-notes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.music-notes .note {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(0) scale(0.5);
  transition: none;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.note.n1 { left:10%; top:50%; }
.note.n2 { left:30%; top:50%; }
.note.n3 { left:55%; top:50%; }
.note.n4 { left:75%; top:50%; }
.note.n5 { left:90%; top:50%; }
.btn-music:hover .note { animation: notePop 0.8s ease forwards; }
.btn-music:hover .note.n1 { animation-delay: 0s; }
.btn-music:hover .note.n2 { animation-delay: 0.08s; }
.btn-music:hover .note.n3 { animation-delay: 0.16s; }
.btn-music:hover .note.n4 { animation-delay: 0.24s; }
.btn-music:hover .note.n5 { animation-delay: 0.32s; }

@keyframes notePop {
  0%   { opacity:0; transform:translateY(0) scale(0.3) rotate(0deg); }
  30%  { opacity:1; transform:translateY(-30px) scale(1.2) rotate(-15deg); }
  60%  { opacity:0.8; transform:translateY(-55px) scale(1) rotate(10deg); }
  100% { opacity:0; transform:translateY(-80px) scale(0.6) rotate(-5deg); }
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
}
.floating-note {
  position: absolute;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
  animation: floatNote 4s ease-in-out infinite;
  pointer-events: none;
}
.fn1 { top:5%; right:8%; animation-delay:0s; font-size:1.4rem; }
.fn2 { top:20%; left:-5%; animation-delay:0.8s; font-size:1.8rem; }
.fn3 { bottom:25%; right:-3%; animation-delay:1.6s; }
.fn4 { bottom:10%; left:10%; animation-delay:2.4s; font-size:1.2rem; }
.fn5 { top:40%; right:-8%; animation-delay:3.2s; font-size:2rem; }
@keyframes floatNote {
  0%, 100% { transform:translateY(0) rotate(0deg); opacity:0.4; }
  50%      { transform:translateY(-18px) rotate(12deg); opacity:0.7; }
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
}
.hero-wave svg { display:block; width:100%; height:100px; }

/* ==============================
   ABOUT
   ============================== */
.about {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}
.about-text {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 2.4;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* ==============================
   FEATURES - DARK SECTION
   ============================== */
.features-section {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
/* Slanted dividers */
.features-slant-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--bg-main);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
  z-index: 2;
}
.features-slant-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--bg-main);
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* Subtle honeycomb pattern on dark */
.features-section::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpath d='M30 0L60 15V37L30 52L0 37V15Z' fill='none' stroke='rgba(245,166,35,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  pointer-events: none;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.features-image img {
  max-height: 420px;
  object-fit: contain;
}
.features-heading {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
  padding-left: 16px;
  border-left: 4px solid var(--honey-gold);
  color: #fff;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.85);
}
.features-list .check {
  color: var(--honey-gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==============================
   MENU CARDS
   ============================== */
.menu-section {
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.menu-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: var(--honey-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  transition: all 0.35s ease;
  border: 2px solid transparent;
  min-height: 110px;
  overflow: hidden;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--honey-gold);
  box-shadow: 0 8px 24px rgba(245,166,35,0.15);
  background: var(--honey-cream);
}
.menu-card:hover .menu-card-en { color: var(--honey-dark); }

.menu-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.menu-card-en {
  font-family: var(--font-en);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  transition: color 0.35s ease;
}
.menu-card-jp {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.35s ease;
}
.menu-card-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  z-index: 1;
}

/* Card music notes */
.card-notes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}
.card-notes .cn {
  position: absolute;
  font-size: 1rem;
  opacity: 0;
  color: var(--honey-gold);
}
.cn.c1 { right: 20%; top: 50%; }
.cn.c2 { right: 40%; top: 40%; }
.cn.c3 { right: 60%; top: 50%; }
.menu-card:hover .cn { animation: notePop 0.8s ease forwards; }
.menu-card:hover .cn.c1 { animation-delay: 0s; }
.menu-card:hover .cn.c2 { animation-delay: 0.1s; }
.menu-card:hover .cn.c3 { animation-delay: 0.2s; }

/* ==============================
   SUB PAGE CONTENT
   ============================== */
.content-body { margin-top: 64px; }

.info-table { width:100%; border-collapse:collapse; margin:24px 0 40px; font-size:0.9rem; }
.info-table th, .info-table td { padding:14px 20px; border:1px solid rgba(245,166,35,0.2); text-align:left; vertical-align:top; }
.info-table th { background:var(--honey-light); font-weight:600; white-space:nowrap; width:180px; }
.info-table td { background:#fff; }

.equip-table { width:100%; border-collapse:collapse; margin:24px 0; font-size:0.85rem; }
.equip-table th, .equip-table td { padding:10px 16px; border:1px solid rgba(245,166,35,0.2); text-align:left; }
.equip-table thead th { background:var(--honey-gold); color:#fff; font-weight:600; }
.equip-table tbody th { background:var(--honey-light); font-weight:600; vertical-align:top; }
.equip-table tbody td { background:#fff; }

.price-table { width:100%; border-collapse:collapse; margin:20px 0 40px; font-size:0.88rem; }
.price-table th, .price-table td { padding:12px 20px; border:1px solid rgba(245,166,35,0.2); text-align:left; }
.price-table thead th { background:var(--honey-gold); color:#fff; font-weight:600; text-align:center; }
.price-table tbody td { background:#fff; }
.price-table tbody td:first-child { text-align:center; font-weight:500; }
.price-table tbody td:last-child { text-align:right; }
.price-table .note { font-size:0.78rem; color:var(--text-light); display:block; margin-top:4px; }

.cancel-section { margin:40px 0; }
.cancel-section h4 { font-size:0.95rem; font-weight:700; margin-bottom:8px; padding-left:12px; border-left:4px solid var(--honey-gold); }
.cancel-section h5 { font-size:0.85rem; font-weight:600; margin:16px 0 8px; color:var(--text-secondary); }

.content-section { max-width:900px; margin:0 auto; padding:0 24px; }
.content-section h3 { font-size:1.1rem; font-weight:700; margin:40px 0 16px; padding-bottom:8px; border-bottom:2px solid var(--honey-light); }
.content-section p { font-size:0.9rem; line-height:2; margin-bottom:12px; color:var(--text-secondary); }
.content-section .highlight { color:var(--honey-dark); font-weight:600; }

.notice-box { background:var(--honey-light); border-radius:var(--radius-md); padding:24px 28px; margin:24px 0; font-size:0.88rem; line-height:2; }
.notice-box h4 { font-weight:700; margin-bottom:8px; color:var(--honey-dark); }
.notice-box ul { padding-left:1em; }
.notice-box li { position:relative; padding-left:16px; margin-bottom:4px; }
.notice-box li::before { content:'・'; position:absolute; left:0; }

.anchor-nav { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; max-width:600px; margin:0 auto 48px; }
.anchor-nav a { display:block; text-align:center; padding:14px; background:var(--honey-light); border-radius:var(--radius-sm); font-weight:600; font-size:0.9rem; border:2px solid transparent; transition:var(--transition); }
.anchor-nav a:hover { border-color:var(--honey-gold); background:#fff; }

.guide-item { margin-bottom:32px; }
.guide-item h3 { font-size:1rem; font-weight:700; margin-bottom:8px; display:flex; align-items:center; gap:8px; border-bottom:none; }
.guide-item h3::before { content:''; width:6px; height:6px; background:var(--honey-gold); border-radius:50%; flex-shrink:0; }
.guide-item p { font-size:0.88rem; line-height:1.9; color:var(--text-secondary); }

.reservation-embed { background:var(--honey-light); border-radius:var(--radius-md); min-height:500px; display:flex; align-items:center; justify-content:center; margin:32px 0; border:2px dashed var(--honey-gold); }
.reservation-embed .placeholder { text-align:center; color:var(--text-light); }
.reservation-embed .placeholder .icon { font-size:3rem; margin-bottom:12px; }
.reservation-embed .placeholder p { font-size:0.9rem; }

.line-section { text-align:center; padding:40px 0; }
.line-btn { display:inline-block; background:#06C755; color:#fff; padding:14px 40px; border-radius:var(--radius-lg); font-weight:700; font-size:1rem; margin-bottom:32px; transition:var(--transition); }
.line-btn:hover { background:#05a849; transform:translateY(-2px); box-shadow:0 4px 16px rgba(6,199,85,0.3); }
.line-info { max-width:600px; margin:0 auto; text-align:left; }
.line-info h4 { font-size:0.95rem; font-weight:600; margin-bottom:12px; }
.line-info p { font-size:0.88rem; color:var(--text-secondary); line-height:1.9; margin-bottom:8px; }

.access-map { width:100%; height:350px; background:var(--honey-light); border-radius:var(--radius-md); margin:20px 0; display:flex; align-items:center; justify-content:center; border:2px dashed rgba(245,166,35,0.3); color:var(--text-light); }
.sns-embed { width:100%; max-width:600px; height:400px; margin:20px auto; background:#f0f0f0; border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; color:var(--text-light); border:2px dashed rgba(0,0,0,0.1); }
.sns-btn { display:inline-block; padding:10px 28px; border-radius:var(--radius-lg); font-weight:600; font-size:0.9rem; color:#fff; margin:8px; transition:var(--transition); }
.sns-btn:hover { transform:translateY(-2px); }
.sns-btn.x-btn { background:#000; }
.sns-btn.yt-btn { background:#FF0000; }

.privacy-content { max-width:800px; margin:0 auto; padding:0 24px 60px; }
.privacy-content h3 { font-size:1rem; font-weight:700; margin:32px 0 12px; }
.privacy-content p, .privacy-content li { font-size:0.88rem; line-height:2; color:var(--text-secondary); }
.privacy-content ol { padding-left:2em; list-style:decimal; margin:8px 0; }
.privacy-content ul { padding-left:2em; margin:8px 0; }
.privacy-content ul li { position:relative; padding-left:16px; }
.privacy-content ul li::before { content:'・'; position:absolute; left:0; }

.cta-row { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; margin:48px 0; }
.cta-btn { display:inline-flex; align-items:center; gap:8px; padding:14px 36px; border-radius:var(--radius-lg); font-weight:700; font-size:0.95rem; transition:var(--transition); }
.cta-btn:hover { transform:translateY(-2px); }
.cta-btn.primary { background:var(--honey-gold); color:#fff; box-shadow:0 4px 16px rgba(245,166,35,0.3); }
.cta-btn.primary:hover { background:var(--honey-dark); box-shadow:0 6px 20px rgba(245,166,35,0.4); }
.cta-btn.secondary { background:#fff; color:var(--honey-dark); border:2px solid var(--honey-gold); }
.cta-btn.secondary:hover { background:var(--honey-light); }

.pointcard-area { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:600px; margin:24px auto; }
.pointcard-placeholder { background:var(--honey-light); border-radius:var(--radius-md); height:200px; display:flex; align-items:center; justify-content:center; color:var(--text-light); font-size:0.85rem; border:2px dashed rgba(245,166,35,0.3); }

/* ==============================
   FOOTER
   ============================== */
.site-footer { position:relative; }
.footer-privacy { text-align:center; padding:16px; font-size:0.8rem; }
.footer-privacy a { color:var(--text-light); }
.footer-privacy a:hover { color:var(--honey-dark); }

.footer-main { background:var(--bg-footer); color:#fff; padding:48px 24px 32px; }
.footer-inner { max-width:var(--max-width); margin:0 auto; display:grid; grid-template-columns:1fr 1fr 1fr; gap:40px; align-items:start; }
.footer-sns { display:flex; gap:16px; margin-bottom:20px; align-items:center; }
.footer-sns a { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; background:rgba(255,255,255,0.2); border-radius:50%; transition:var(--transition); }
.footer-sns a:hover { background:rgba(255,255,255,0.35); transform:scale(1.1); }
.footer-sns-img { width:20px; height:20px; object-fit:contain; filter:brightness(0) invert(1); }
.footer-map { width:100%; height:180px; border-radius:var(--radius-sm); overflow:hidden; }
.footer-map iframe { display:block; width:100%; height:100%; }
.footer-qr { width:80px; height:80px; background:rgba(255,255,255,0.15); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:0.65rem; color:rgba(255,255,255,0.6); margin-top:12px; border:1px dashed rgba(255,255,255,0.3); }
.footer-info h4 { font-size:0.85rem; font-weight:500; margin-bottom:4px; }
.footer-info p { font-size:0.85rem; line-height:1.7; opacity:0.9; }
.footer-info .email { margin-top:12px; opacity:0.8; font-size:0.85rem; }
.footer-logo-area { text-align:right; display:flex; flex-direction:column; align-items:flex-end; justify-content:flex-end; height:100%; }
.footer-logo-img { height:60px; width:auto; filter:brightness(0) invert(1); }
.footer-copy { text-align:center; padding:16px; background:rgba(0,0,0,0.08); font-size:0.75rem; color:rgba(255,255,255,0.7); font-family:var(--font-en); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 24px 120px;
  }
  .hero-text { order: 1; }
  .hero-image { order: 2; margin-top: 24px; }
  .hero-buttons { justify-content: center; }
  .hero-img { max-height: 340px; margin: 0 auto; }

  .features-layout { grid-template-columns: 1fr; gap: 32px; }
  .features-image { text-align: center; }
  .features-image img { max-width: 360px; margin: 0 auto; }

  .section-bg-text { font-size: clamp(3rem, 10vw, 6rem); }

  /* Nav → hamburger at 900px */
  .nav-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(254,252,247,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid rgba(245,166,35,0.15);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .nav-menu a.nav-reserve { margin-top: 12px; justify-content: center; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .section-title h2 { font-size: 1.5rem; }
  .page-header h1 { font-size: 1.4rem; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .features-slant-top, .features-slant-bottom { height: 50px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-logo-area { text-align: center; align-items: center; }

  .info-table th { width: 120px; }
  .anchor-nav { grid-template-columns: 1fr; }
  .pointcard-area { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.8rem; }
  .hero-date { font-size: 1.2rem; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .menu-card { padding: 18px 14px; min-height: 90px; }
  .menu-card-en { font-size: 1.2rem; }
  .menu-card-jp { font-size: 0.72rem; }
  .menu-card-icon { width: 32px; height: 32px; }

  .cta-row { flex-direction: column; align-items: center; }
  .btn-music { padding: 12px 28px; font-size: 0.9rem; }

  .section-bg-text { font-size: 3rem; }
}