/*
Theme Name: NEW33
Theme URI: https://new33.net
Author: NEW33
Description: NEW33 中洲ニュークラブ 公式サイト WordPress テーマ
Version: 1.0.0
License: Private
Text Domain: new33
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #8a6d4a;
  --bg: #0d0b09;
  --bg-dark: #0a0806;
  --bg-card: #111;
  --text: #e8d5b0;
  --text-muted: rgba(232,213,176,0.7);
  --text-dim: rgba(232,213,176,0.5);
  --header-bg: rgba(250,248,244,0.97);
  --header-text: #3a3028;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY HELPERS ===== */
.section-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  text-align: center;
}
.section-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.75rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: rgba(184,149,106,0.6);
  display: block;
  text-align: center;
  margin-top: 4px;
}
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(184,149,106,0.25);
  transition: box-shadow 0.3s ease;
  height: 80px;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 80px;
}
.header-logo img { height: 48px; width: auto; }
.header-nav { flex: 1; display: flex; justify-content: center; }
.header-nav ul { display: flex; gap: 0; }
.header-nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 18px;
  text-decoration: none;
  color: var(--header-text);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.header-nav li a:hover,
.header-nav li a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.header-nav li a .nav-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.18em;
}
.header-nav li a .nav-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  margin-top: 2px;
  color: #8a7060;
}
.header-tel { text-align: right; margin-left: auto; }
.header-tel a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--header-text);
  text-decoration: none;
  display: block;
}
.header-tel a strong { color: var(--gold); font-size: 1rem; }
.header-tel .open-hours {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #8a7060;
}
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--header-text);
  transition: all 0.3s;
}
.sp-menu {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(250,248,244,0.98);
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
  border-bottom: 1px solid rgba(184,149,106,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.sp-menu.open { transform: translateY(0); }
.sp-menu ul { padding: 16px 0; }
.sp-menu li { border-bottom: 1px solid rgba(184,149,106,0.15); }
.sp-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  text-decoration: none;
  color: var(--header-text);
}
.sp-menu li a .sp-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
}
.sp-menu li a .sp-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.75rem;
  color: #8a7060;
}
.sp-menu-tel {
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid rgba(184,149,106,0.2);
}
.sp-menu-tel a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
}
.sp-menu-tel .sp-open {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.75rem;
  color: #8a7060;
  margin-top: 4px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 280px;
  margin-top: 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #fff;
  margin: 0;
}
.page-hero-content p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(184,149,106,0.9);
  margin-top: 8px;
}
.page-hero-content .gold-line { margin-top: 16px; }

/* ===== SUB BANNER ===== */
.sub-banner {
  display: grid;
}
.sub-banner-item {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.sub-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  transition: transform 0.6s ease;
}
.sub-banner-item:hover .sub-banner-bg { transform: scale(1.05); }
.sub-banner-link {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1;
}
.sub-banner-link .sb-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  color: #fff;
  font-weight: 300;
}
.sub-banner-link .sb-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(184,149,106,0.9);
  margin-top: 6px;
}
.sub-banner-link .sb-line {
  width: 30px;
  height: 1px;
  background: rgba(184,149,106,0.6);
  margin-top: 12px;
}

/* ===== FOOTER ===== */
#site-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(184,149,106,0.2);
  padding-top: 60px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.footer-logo img { height: 80px; width: auto; filter: brightness(0) invert(1); }
.footer-logo p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.75rem;
  color: rgba(184,149,106,0.7);
  margin-top: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.footer-cols h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-cols li { margin-bottom: 10px; }
.footer-cols li a {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.footer-cols li a:hover { color: var(--gold); }
.footer-cols .shop-info {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-sns a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-muted);
}
.footer-sns a:hover { color: var(--gold); }
.footer-sns span {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
}
.footer-copy {
  border-top: 1px solid rgba(184,149,106,0.15);
  padding: 16px 24px;
  text-align: center;
}
.footer-copy p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(184,149,106,0.5);
  margin: 0;
}

/* ===== HERO SLIDER ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-content img { height: clamp(80px, 12vw, 140px); width: auto; filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,0.5)); }
.hero-content .hero-divider { width: 50px; height: 1px; background: var(--gold); margin: 20px auto; }
.hero-content .hero-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.65);
  font-weight: 200;
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active { width: 28px; background: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184,149,106,0.8), transparent);
}

/* ===== CONCEPT SECTION ===== */
.concept-section {
  padding: 100px 0;
  background: var(--bg);
}
.concept-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept-img-wrap {
  position: relative;
}
.concept-img-inner {
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
}
.concept-img-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-img-border {
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1px solid rgba(184,149,106,0.4);
  pointer-events: none;
}
.concept-text { padding-left: 20px; }
.concept-text .concept-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
}
.concept-text .concept-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(184,149,106,0.6);
  display: block;
  margin-top: 4px;
}
.concept-text .concept-divider { width: 50px; height: 1px; background: var(--gold); margin: 20px 0; }
.concept-text p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  line-height: 2.4;
  color: rgba(232,213,176,0.85);
  font-weight: 200;
  letter-spacing: 0.08em;
}

/* ===== CATCH SECTION ===== */
.catch-section {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.catch-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.catch-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.catch-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
}
.catch-content .catch-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.3em;
  color: #fff;
  font-style: italic;
  text-align: center;
}
.catch-content .catch-divider { width: 50px; height: 1px; background: var(--gold); }
.catch-content .catch-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 0.3em;
  color: rgba(184,149,106,0.9);
  text-align: center;
  font-weight: 200;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  padding: 100px 0;
  background: var(--bg);
}
.instagram-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.instagram-embed-wrap {
  background: #111;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.instagram-embed-wrap iframe {
  width: 100%;
  min-height: 480px;
  border: none;
  display: block;
  pointer-events: none;
}
.instagram-embed-wrap a.embed-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
}
.instagram-cta {
  text-align: center;
  margin-top: 50px;
}
.instagram-cta a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(184,149,106,0.5);
  padding: 12px 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.instagram-cta a:hover { background: rgba(184,149,106,0.1); }

/* ===== BANNER GRID ===== */
.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.banner-item {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.banner-item:hover .banner-bg { transform: scale(1.05); }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.banner-link {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1;
}
.banner-link .bl-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: #fff;
  font-weight: 300;
}
.banner-link .bl-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(184,149,106,0.9);
  margin-top: 8px;
}
.banner-link .bl-line { width: 40px; height: 1px; background: rgba(184,149,106,0.6); margin-top: 16px; }
.banner-link .bl-more {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

/* ===== RECRUIT BANNER ===== */
.recruit-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.recruit-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.4);
}
.recruit-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.recruit-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
}
.recruit-content .rc-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  letter-spacing: 0.25em;
  color: #fff;
  font-weight: 300;
}
.recruit-content .rc-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(184,149,106,0.9);
}
.recruit-content .rc-line { width: 40px; height: 1px; background: rgba(184,149,106,0.6); }
.recruit-content a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 32px;
  transition: all 0.3s;
}
.recruit-content a:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ===== SYSTEM PAGE ===== */
.system-main { padding: 80px 0; background: var(--bg); }
.system-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.open-hours-box {
  background: #1a1510;
  border: 1px solid rgba(184,149,106,0.4);
  padding: 18px 30px;
  text-align: center;
  margin-bottom: 50px;
}
.open-hours-box .oh-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 6px;
}
.open-hours-box .oh-time {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.1em;
}
.price-box {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  margin-bottom: 50px;
}
.price-box-header {
  background: var(--gold);
  padding: 14px 20px;
  text-align: center;
}
.price-box-header h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  margin: 0;
}
.price-box-body { padding: 24px 36px 8px; }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(184,149,106,0.15);
}
.price-row:last-child { border-bottom: none; }
.price-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
.price-label.note { font-size: 0.82rem; color: rgba(232,213,176,0.6); }
.price-dots { flex: 1; border-bottom: 2px dotted rgba(184,149,106,0.3); margin: 0 16px 4px; }
.price-amount {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.price-amount.lg { font-size: 1.6rem; }
.price-amount.sm { font-size: 1.1rem; color: var(--text); }
.friday-box {
  background: #0f1a0f;
  border: 1px solid rgba(76,175,80,0.4);
  padding: 18px 36px;
  margin-bottom: 50px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.friday-box .fri-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: #81c784;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.friday-box .fri-amount {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #81c784;
}
.option-box {
  background: var(--bg-card);
  border: 1px solid rgba(184,149,106,0.3);
  padding: 24px 36px;
  margin-bottom: 50px;
}
.group-box {
  background: rgba(184,149,106,0.07);
  border: 1px solid rgba(184,149,106,0.4);
  padding: 28px 36px;
  text-align: center;
  margin-bottom: 32px;
}
.group-box p {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 2;
  margin: 0;
  letter-spacing: 0.05em;
}
.tax-note {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(184,149,106,0.5);
  margin-bottom: 60px;
}

/* ===== ACCESS PAGE ===== */
.access-main { padding: 80px 0; background: var(--bg); }
.access-inner { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.access-grid img { width: 100%; display: block; object-fit: cover; height: 300px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid rgba(184,149,106,0.15); }
.info-table th {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 14px 16px 14px 0;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
  width: 30%;
}
.info-table td {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 200;
  padding: 14px 0;
  line-height: 1.8;
}
.info-table td a { color: var(--gold); text-decoration: none; }
.map-section { margin-top: 60px; }
.map-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 300;
}
.map-wrap {
  position: relative;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(184,149,106,0.2);
}
.map-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}
.map-address {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: rgba(184,149,106,0.6);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.1em;
}

/* ===== INSTAGRAM PAGE ===== */
.instagram-page-main { padding: 80px 0; background: var(--bg); }
.instagram-page-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.instagram-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== CONTACT PAGE ===== */
.contact-main { padding: 80px 0; background: var(--bg); }
.contact-inner { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.contact-tel-box {
  text-align: center;
  padding: 40px;
  border: 1px solid rgba(184,149,106,0.3);
  margin-bottom: 60px;
}
.contact-tel-box .ct-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.contact-tel-box a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
}
.contact-tel-box .ct-open {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: rgba(184,149,106,0.6);
  margin-top: 8px;
  display: block;
}
.contact-form { margin-bottom: 60px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,149,106,0.3);
  color: var(--text);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit {
  text-align: center;
  margin-top: 32px;
}
.form-submit input[type="submit"],
.form-submit button[type="submit"] {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(184,149,106,0.5);
  padding: 14px 60px;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit input[type="submit"]:hover,
.form-submit button[type="submit"]:hover { background: rgba(184,149,106,0.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .header-nav, .header-tel { display: none; }
  .hamburger-btn { display: flex; }
}
@media (min-width: 901px) {
  .hamburger-btn { display: none; }
  .sp-menu { display: none; }
}
@media (max-width: 768px) {
  .concept-inner { grid-template-columns: 1fr; gap: 40px; }
  .instagram-grid, .instagram-page-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .banner-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}
