@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Noto+Sans+JP:wght@300;400;500;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #0b0907;
  --card-bg: rgba(16, 13, 11, 0.82);
  --card-bg-light: rgba(28, 22, 18, 0.9);
  --gold-color: #E89D2F;
  --gold-color-rgb: 232, 157, 47;
  --text-main: #FFFFFF;
  --text-sub: #a8a095;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', 'Noto Sans JP', sans-serif;
  --glow-shadow: 0 0 15px rgba(232, 157, 47, 0.25);
  --glow-shadow-strong: 0 0 25px rgba(232, 157, 47, 0.45);
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #000000;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-color);
  border-radius: 3px;
}

/* Centered Mobile Frame on Desktop with Fixed User Brick Background */
.app-container {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background-color: var(--bg-color);
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  padding-bottom: 72px; /* For fixed bottom CTA */
}

.app-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(var(--scroll-y, 0px) * 0.12));
  width: 100%;
  max-width: 480px;
  height: 112%; /* Extra height to prevent white gaps at bottom due to translateY */
  background-image: linear-gradient(
    to bottom,
    rgba(11, 9, 7, 0.58) 0%,
    rgba(11, 9, 7, 0.78) 40%,
    rgba(11, 9, 7, 0.94) 100%
  ), url('bg_brick_light.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.1s ease-out; /* Smooth transition for scroll variable updates */
}

/* Typography */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  font-weight: 500;
}

p, span, a, li, button {
  font-family: var(--font-sans);
}

/* Common Section Layout */
section {
  padding: 80px 24px;
  border-bottom: 1px solid rgba(232, 157, 47, 0.1);
  position: relative;
}

#news, #access, #qa, .footer {
  background-color: #050505;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.section-title-en {
  font-size: 2.2rem;
  color: var(--gold-color);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(232, 157, 47, 0.25);
}

.section-title-jp {
  font-size: 0.85rem;
  color: var(--text-sub);
  letter-spacing: 0.2em;
  font-weight: 400;
}

/* Gold Button Style */
.gold-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: rgba(22, 18, 15, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-color);
  border-radius: 30px;
  color: var(--gold-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--glow-shadow);
  cursor: pointer;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.gold-btn-outline:active {
  background: var(--gold-color);
  color: #0b0907;
  box-shadow: var(--glow-shadow-strong);
  transform: scale(0.98);
}

.gold-btn-outline svg {
  margin-left: 8px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.gold-btn-outline:active svg {
  transform: translateX(4px);
}

/* Header & Hamburger with Warm Frosted Glass */
.header-bar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 70px;
  background: rgba(11, 9, 7, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 157, 47, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  z-index: 1003; /* Higher than menu overlay to keep toggle button accessible */
}

.header-logo img {
  height: 32px;
  display: block;
  filter: drop-shadow(0 0 4px rgba(232, 157, 47, 0.2));
}

.hamburger-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1004; /* Keep clickable above anything in header */
}

.hamburger-btn span {
  display: block;
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.3s ease;
}

.hamburger-btn span:nth-child(1) {
  top: 9px;
}

.hamburger-btn span:nth-child(2) {
  top: 15px;
}

.hamburger-btn span:nth-child(3) {
  top: 21px;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Full Screen Menu Overlay (Premium Glass Design) */
.nav-menu-overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: rgba(11, 9, 7, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1002;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 40px; /* Offset for sticky header bar */
}

.nav-menu-overlay.active {
  transform: translate(-50%, 0);
}

.nav-menu-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-list {
  list-style: none;
  border-left: 1px solid rgba(232, 157, 47, 0.25);
  padding-left: 20px;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu-overlay.active .nav-item {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger transition delay for menu links */
.nav-menu-overlay.active .nav-item:nth-child(1) { transition-delay: 0.08s; }
.nav-menu-overlay.active .nav-item:nth-child(2) { transition-delay: 0.12s; }
.nav-menu-overlay.active .nav-item:nth-child(3) { transition-delay: 0.16s; }
.nav-menu-overlay.active .nav-item:nth-child(4) { transition-delay: 0.2s; }
.nav-menu-overlay.active .nav-item:nth-child(5) { transition-delay: 0.24s; }
.nav-menu-overlay.active .nav-item:nth-child(6) { transition-delay: 0.28s; }
.nav-menu-overlay.active .nav-item:nth-child(7) { transition-delay: 0.32s; }
.nav-menu-overlay.active .nav-item:nth-child(8) { transition-delay: 0.36s; }
.nav-menu-overlay.active .nav-item:nth-child(9) { transition-delay: 0.4s; }

.nav-link {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.nav-link:active {
  color: var(--gold-color);
  transform: translateX(6px);
}

.nav-num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-color);
  margin-right: 14px;
  font-weight: 600;
  opacity: 0.8;
  width: 20px;
  display: inline-block;
}

.nav-text {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  text-transform: uppercase;
}

.nav-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-sub);
  margin-left: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none; /* Keep Japanese subtitles normal */
}

.nav-menu-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-menu-social {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.nav-social-link {
  font-size: 0.82rem;
  color: var(--text-sub);
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a[href*="instagram.com"].nav-social-link {
  color: #E1306C;
}
a[href*="instagram.com"].nav-social-link:active {
  text-shadow: 0 0 8px rgba(225, 48, 108, 0.6);
}

a[href*="line.me"].nav-social-link, a[href*="lin.ee"].nav-social-link, a[href*="liff.line.me"].nav-social-link {
  color: #06C755;
}
a[href*="line.me"].nav-social-link:active, a[href*="lin.ee"].nav-social-link:active, a[href*="liff.line.me"].nav-social-link:active {
  text-shadow: 0 0 8px rgba(6, 199, 85, 0.6);
}

a[href^="tel:"].nav-social-link {
  color: #FFFFFF;
}
a[href^="tel:"].nav-social-link:active {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.nav-menu-logo {
  width: 120px;
  opacity: 0.7;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.nav-menu-logo img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 0 6px rgba(232, 157, 47, 0.25));
}

/* Key Visual (KV) */
.hero-kv {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(232, 157, 47, 0.25);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(11,9,7,0.3) 0%, rgba(11,9,7,0.65) 60%, rgba(11,9,7,0.96) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-logo-img {
  width: 260px;
  max-width: 80%;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 15px rgba(232, 157, 47, 0.45));
  animation: logoGlow 4s infinite alternate ease-in-out;
}

.hero-title {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--text-main);
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--gold-color);
  margin-bottom: 24px;
  text-shadow: 0 0 12px rgba(232, 157, 47, 0.5);
}

.hero-hours {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text-sub);
}

.hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-sub);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-arrow {
  margin-top: 8px;
  width: 14px;
  height: 14px;
  border-right: 1px solid var(--text-sub);
  border-bottom: 1px solid var(--text-sub);
  transform: rotate(45deg);
  animation: bounceArrow 2s infinite ease-in-out;
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 10px rgba(232, 157, 47, 0.3)); }
  100% { filter: drop-shadow(0 0 20px rgba(232, 157, 47, 0.7)); }
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.4; }
  50% { transform: translateY(8px) rotate(45deg); opacity: 1; }
}

/* SYSTEM Section with Translucent Glass Cards */
.system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.system-card {
  background-color: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 157, 47, 0.25);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.system-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
  opacity: 0.4;
}

.system-card:active {
  border-color: var(--gold-color);
  transform: scale(0.99);
  box-shadow: var(--glow-shadow);
}

/* Card with Image Background overlay and text positioning */
.system-card-image-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
}

.system-card-image-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 9, 7, 0.82); /* Scrim overlay */
  z-index: 1;
  pointer-events: none;
}

.system-card-image-bg > * {
  position: relative;
  z-index: 2;
}

.system-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold-color);
  color: var(--gold-color);
  box-shadow: var(--glow-shadow);
}

.system-card-en {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--gold-color);
  margin-bottom: 6px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(232, 157, 47, 0.25);
}

.system-card-jp {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.system-card-desc {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.5;
  white-space: pre-line;
}

/* Grid layout for lower row */
.system-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.system-row-split .system-card {
  padding: 24px 16px;
}

.system-card-row {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 16px 20px;
  gap: 20px;
}

.system-card-row .system-card-icon {
  margin: 0;
  flex-shrink: 0;
}

.system-card-row .system-card-content {
  flex: 1;
}

.system-card-row .system-card-desc {
  white-space: normal;
}

.system-pop-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
  width: 100%;
}

.system-pop-item {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 280px;
  padding: 10px 16px;
  background: rgba(232, 157, 47, 0.08);
  border: 1px solid rgba(232, 157, 47, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.system-pop-item:active {
  background: rgba(232, 157, 47, 0.15);
  border-color: var(--gold-color);
  transform: scale(0.98);
}

.system-pop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
  flex-shrink: 0;
}

.system-card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 12px 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.system-card-price .price-gender {
  font-size: 0.8rem;
  color: var(--text-sub);
  font-weight: 500;
}

.system-card-price .price-amount {
  color: var(--gold-color);
  font-size: 1.5rem;
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(232, 157, 47, 0.35);
}

.system-card-price .price-divider {
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
}

.system-card-subdesc {
  font-size: 0.72rem;
  color: var(--text-sub);
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.system-card-price-small {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-color);
  font-family: var(--font-serif);
  margin: 6px 0 10px;
  text-shadow: 0 0 8px rgba(232, 157, 47, 0.25);
}

/* FLOOR & AMUSEMENT Section */
.floor-subcopy {
  text-align: center;
  color: var(--text-main);
  font-size: 0.95rem;
  margin-top: -20px;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.slider-container-wrapper {
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.slider-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-color);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-left: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(232, 157, 47, 0.2);
}

/* Horizontal Swiper Layout */
.slider-track-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 16px;
  padding: 8px 4px 24px;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide for firefox */
}

.slider-track-container::-webkit-scrollbar {
  display: none; /* Hide for chrome/safari */
}

.slider-card {
  scroll-snap-align: start;
  flex: 0 0 82%; /* Show 82% of card, peek at next */
  background-color: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 157, 47, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
  transition: border-color 0.3s ease;
}

.slider-card:active {
  border-color: var(--gold-color);
}

.slider-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%; /* 5:3 Aspect Ratio */
  overflow: hidden;
}

.slider-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slider-info {
  padding: 16px 20px;
}

.slider-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-color);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.slider-card-desc {
  font-size: 0.8rem;
  color: var(--text-sub);
}

/* Indicators Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -8px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-dot.active {
  background-color: var(--gold-color);
  width: 16px;
  border-radius: 3px;
  box-shadow: 0 0 8px var(--gold-color);
}

/* MENU Section */
.category-tab-container {
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.category-tab-container::-webkit-scrollbar {
  display: none;
}

.category-tabs {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.category-tab {
  padding: 8px 20px;
  background: rgba(22, 18, 15, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(232, 157, 47, 0.35);
  color: var(--text-sub);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
}

.category-tab.active {
  background-color: var(--gold-color);
  color: #0b0907;
  border-color: var(--gold-color);
  font-weight: bold;
  box-shadow: var(--glow-shadow);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 300px;
  position: relative;
  z-index: 2;
}

.menu-item-card {
  display: flex;
  align-items: center;
  background-color: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 157, 47, 0.15);
  border-radius: 12px;
  padding: 12px;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.menu-item-card:active {
  border-color: var(--gold-color);
  box-shadow: var(--glow-shadow);
}

.menu-item-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(232, 157, 47, 0.25);
}

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 4px;
}

.menu-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-color);
}

.menu-item-arrow {
  color: var(--gold-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

/* EVENT Section */
.event-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 24px;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
}

.event-track::-webkit-scrollbar {
  display: none;
}

.event-card {
  scroll-snap-align: start;
  flex: 0 0 100%;
  background-color: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 157, 47, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.5);
  position: relative;
}

.event-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66%; /* 3:2 Aspect Ratio */
}

.event-card-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(11,9,7,0.95) 0%, rgba(11,9,7,0.5) 70%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.event-date {
  background-color: var(--gold-color);
  color: #0b0907;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.event-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-main);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.event-time {
  font-size: 0.8rem;
  color: var(--text-sub);
}

/* Dynamic promo banners list */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.promo-banner {
  height: 80px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232,157,47,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: scale 0.5s ease;
}

.promo-banner:active img {
  scale: 1.05;
}

.promo-banner-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-main);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* NEWS Section */
.news-list {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}

.news-item:active {
  background-color: rgba(232, 157, 47, 0.05);
}

.news-info {
  flex: 1;
  padding-right: 12px;
}

.news-date {
  font-size: 0.75rem;
  color: var(--gold-color);
  font-weight: 500;
  margin-bottom: 4px;
}

.news-text {
  font-size: 0.85rem;
  color: var(--text-main);
}

.news-arrow {
  color: var(--gold-color);
  opacity: 0.6;
}

/* ACCESS Section */
.map-embed-container {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(232, 157, 47, 0.3);
  box-shadow: var(--glow-shadow);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) invert(0.9) contrast(1.35) opacity(0.85) hue-rotate(15deg);
}

.access-info-table {
  background-color: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 157, 47, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.info-row {
  margin-bottom: 16px;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-label {
  font-size: 0.75rem;
  color: var(--gold-color);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.info-val {
  font-size: 0.88rem;
  color: var(--text-main);
  white-space: pre-line;
}

.phone-link {
  color: var(--text-main);
  text-decoration: none;
}

.access-btn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.access-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-main);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* Google Maps Official Color */
a[href*="maps.google."].access-action-btn, a[href*="google.com/maps"].access-action-btn, a[href*="google.co.jp/maps"].access-action-btn, a[href*="goo.gl"].access-action-btn {
  border: 1px solid rgba(66, 133, 244, 0.4);
  color: #4285F4;
}
a[href*="maps.google."].access-action-btn svg, a[href*="google.com/maps"].access-action-btn svg, a[href*="google.co.jp/maps"].access-action-btn svg, a[href*="goo.gl"].access-action-btn svg {
  color: #4285F4;
}
a[href*="maps.google."].access-action-btn:active, a[href*="google.com/maps"].access-action-btn:active, a[href*="google.co.jp/maps"].access-action-btn:active, a[href*="goo.gl"].access-action-btn:active {
  border-color: #4285F4;
  box-shadow: 0 0 12px rgba(66, 133, 244, 0.3);
}

/* LINE Official Color */
a[href*="line.me"].access-action-btn, a[href*="lin.ee"].access-action-btn, a[href*="liff.line.me"].access-action-btn {
  border: 1px solid rgba(6, 199, 85, 0.4);
  color: #06C755;
}
a[href*="line.me"].access-action-btn svg, a[href*="lin.ee"].access-action-btn svg, a[href*="liff.line.me"].access-action-btn svg {
  color: #06C755;
}
a[href*="line.me"].access-action-btn:active, a[href*="lin.ee"].access-action-btn:active, a[href*="liff.line.me"].access-action-btn:active {
  border-color: #06C755;
  box-shadow: 0 0 12px rgba(6, 199, 85, 0.3);
}

/* Instagram Official Color */
a[href*="instagram.com"].access-action-btn {
  border: 1px solid rgba(225, 48, 108, 0.4);
  color: #E1306C;
}
a[href*="instagram.com"].access-action-btn svg {
  color: #E1306C;
}
a[href*="instagram.com"].access-action-btn:active {
  border-color: #E1306C;
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.3);
}

/* Phone Official Color (White) */
a[href^="tel:"].access-action-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}
a[href^="tel:"].access-action-btn svg {
  color: #FFFFFF;
}
a[href^="tel:"].access-action-btn:active {
  border-color: #FFFFFF;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

/* Q&A Section */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.qa-item {
  border: 1px solid rgba(232, 157, 47, 0.15);
  background-color: var(--card-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.qa-item.active {
  border-color: var(--gold-color);
  box-shadow: 0 0 12px rgba(232, 157, 47, 0.1);
}

.qa-header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.qa-question {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  padding-right: 12px;
}

.qa-icon {
  width: 16px;
  height: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.qa-icon::before, .qa-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

/* Horizontal line */
.qa-icon::before {
  width: 12px;
  height: 2px;
}

/* Vertical line */
.qa-icon::after {
  width: 2px;
  height: 12px;
}

.qa-item.active .qa-icon {
  transform: rotate(135deg);
}

.qa-item.active .qa-icon::after {
  transform: rotate(90deg);
}

.qa-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qa-answer {
  padding: 0 20px 18px;
  font-size: 0.8rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* FOOTER Section with Warm Tones */
.footer {
  background-color: #080605;
  border-top: 1px solid rgba(232, 157, 47, 0.25);
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-logo-img {
  width: 160px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 8px rgba(232, 157, 47, 0.25));
}

.footer-hours {
  font-size: 0.85rem;
  color: var(--gold-color);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-bottom: 24px;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.sns-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(232, 157, 47, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
  text-decoration: none;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
}

.sns-link:active {
  border-color: var(--gold-color);
  box-shadow: var(--glow-shadow);
  transform: scale(0.95);
}

a[href*="instagram.com"].sns-link {
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.3);
}
a[href*="instagram.com"].sns-link:active {
  border-color: #E1306C;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.45);
}

a[href*="line.me"].sns-link, a[href*="lin.ee"].sns-link, a[href*="liff.line.me"].sns-link {
  color: #06C755;
  border-color: rgba(6, 199, 85, 0.3);
}
a[href*="line.me"].sns-link:active, a[href*="lin.ee"].sns-link:active, a[href*="liff.line.me"].sns-link:active {
  border-color: #06C755;
  box-shadow: 0 0 15px rgba(6, 199, 85, 0.45);
}

a[href*="maps.google."].sns-link, a[href*="google.com/maps"].sns-link, a[href*="google.co.jp/maps"].sns-link, a[href*="goo.gl"].sns-link {
  color: #4285F4;
  border-color: rgba(66, 133, 244, 0.3);
}
a[href*="maps.google."].sns-link:active, a[href*="google.com/maps"].sns-link:active, a[href*="google.co.jp/maps"].sns-link:active, a[href*="goo.gl"].sns-link:active {
  border-color: #4285F4;
  box-shadow: 0 0 15px rgba(66, 133, 244, 0.45);
}

.footer-copyright {
  font-size: 0.7rem;
  color: #70675b;
  letter-spacing: 0.05em;
}

/* Bottom Fixed CTA Bar with amber outlines */
.bottom-cta-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 72px;
  background-color: #0b0907;
  border-top: 1px solid var(--gold-color);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.8);
}

.cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(232, 157, 47, 0.15);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-item:last-child {
  border-right: none;
}

.cta-item:active {
  background-color: rgba(232, 157, 47, 0.1);
}

a[href^="tel:"].cta-item {
  color: #FFFFFF;
}
a[href^="tel:"].cta-item:active {
  background-color: rgba(255, 255, 255, 0.15);
}

a[href*="line.me"].cta-item, a[href*="lin.ee"].cta-item, a[href*="liff.line.me"].cta-item {
  color: #06C755;
}
a[href*="line.me"].cta-item:active, a[href*="lin.ee"].cta-item:active, a[href*="liff.line.me"].cta-item:active {
  background-color: rgba(6, 199, 85, 0.15);
}

a[href*="instagram.com"].cta-item {
  color: #E1306C;
}
a[href*="instagram.com"].cta-item:active {
  background-color: rgba(225, 48, 108, 0.15);
}

.cta-icon {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RECRUIT PAGE SPECIFIC STYLES (Removed old styles to avoid conflict with new rules at the end of file) */

/* Job details section */
.job-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.job-detail-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.job-detail-row:last-child {
  border-bottom: none;
}

.job-detail-th {
  text-align: left;
  vertical-align: top;
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--gold-color);
  width: 30%;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.job-detail-td {
  padding: 16px 0 16px 16px;
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.6;
  width: 70%;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stronger Glassmorphism Blur Overrides for better text legibility */
.system-card,
.slider-card,
.menu-item-card,
.event-card,
.access-info-table,
.access-action-btn,
.qa-item,
.benefit-card,
.gold-btn-outline,
.payment-brand-card,
.flow-step-card {
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

/* Soft text shadows for text directly overlying brick background to increase legibility */
.section-title-en {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(232, 157, 47, 0.25) !important;
}

.section-title-jp {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

.floor-subcopy {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9) !important;
}

.slider-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(232, 157, 47, 0.2) !important;
}

.hero-subtitle {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 12px rgba(232, 157, 47, 0.5) !important;
}

.hero-hours,
.hero-scroll,
.slider-card-desc,
.event-time {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}

/* ABOUT Section styling */
.about-content {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-color);
  margin-bottom: 24px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
}

.about-text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* Payments Brand Grid (about-system.html) */
.payments-brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.payment-brand-card {
  background: var(--card-bg);
  border: 1px solid rgba(232, 157, 47, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-cat {
  font-size: 0.72rem;
  color: var(--gold-color);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-names {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.5;
}



/* Application Flow (recruit-details.html) */
.apply-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.flow-step-card {
  display: flex;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid rgba(232, 157, 47, 0.15);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  align-items: center;
}

.flow-step-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-color);
  opacity: 0.8;
  width: 50px;
  flex-shrink: 0;
  text-align: center;
  border-right: 1px solid rgba(232, 157, 47, 0.2);
  padding-right: 12px;
}

.flow-step-content {
  flex: 1;
}

.flow-step-title {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 4px;
}

.flow-step-desc {
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* SYSTEM Page Refinements */
.about-hero-img-wrapper {
  width: 100%;
  margin-bottom: 24px;
}

.about-concept-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(232, 157, 47, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.concept-badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.concept-badge {
  background: var(--card-bg);
  border: 1px solid rgba(232, 157, 47, 0.15);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.badge-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
  display: block;
}

.badge-title {
  font-size: 0.72rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 2px;
  display: block;
}

.badge-desc {
  font-size: 0.62rem;
  color: var(--text-sub);
}

.system-style-header {
  text-align: center;
  margin-bottom: 30px;
}

.system-style-sub {
  font-size: 0.72rem;
  color: var(--gold-color);
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 4px;
}

.system-style-title {
  font-size: 1.45rem;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.system-style-desc {
  font-size: 0.8rem;
  color: var(--text-sub);
}

.system-style-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--gold-color);
  background: rgba(232, 157, 47, 0.08);
  border: 1px solid rgba(232, 157, 47, 0.25);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.system-style-badge.highlight {
  color: #0b0907;
  background: var(--gold-color);
  border-color: var(--gold-color);
  box-shadow: var(--glow-shadow);
}

.system-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.system-spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.system-spec-table tr:last-child {
  border-bottom: none;
}

.system-spec-table th {
  text-align: left;
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--gold-color);
  font-weight: 500;
}

.system-spec-table td {
  text-align: right;
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--text-main);
}

.system-plan-price {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.system-plan-price .price-title {
  font-size: 0.8rem;
  color: var(--text-sub);
}

.system-plan-price .price-val {
  color: var(--gold-color);
  font-size: 1.75rem;
  font-family: var(--font-serif);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(232, 157, 47, 0.35);
}

.system-plan-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.system-plan-features li {
  font-size: 0.72rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.system-plan-features li .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
  flex-shrink: 0;
}

/* Neon Glow Card Outline Accents */
.neon-glow-copper {
  border: 1px solid rgba(232, 157, 47, 0.3) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 12px rgba(232, 157, 47, 0.05) !important;
}

.neon-glow-gold {
  border: 1px solid var(--gold-color) !important;
  box-shadow: 0 4px 25px rgba(232, 157, 47, 0.15), inset 0 0 16px rgba(232, 157, 47, 0.08) !important;
}

/* Recommended plan glowing accent border */
.recommended-plan {
  border: 1px solid var(--gold-color) !important;
}

/* Vertical Steps Timeline style */
.step-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}

.step-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 31px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold-color), rgba(232, 157, 47, 0.1));
  opacity: 0.25;
  z-index: 1;
}

.timeline-step {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.timeline-node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0b0907;
  border: 2px solid var(--gold-color);
  font-size: 0.72rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(232, 157, 47, 0.4);
}

.timeline-node.glow-amber {
  border-color: #E89D2F;
  color: #E89D2F;
  box-shadow: 0 0 10px rgba(232, 157, 47, 0.4);
}

.timeline-node.glow-pink {
  border-color: #E1306C;
  color: #E1306C;
  box-shadow: 0 0 10px rgba(225, 48, 108, 0.4);
}

.timeline-node.glow-cyan {
  border-color: #4285F4;
  color: #4285F4;
  box-shadow: 0 0 10px rgba(66, 133, 244, 0.4);
}

.timeline-content {
  flex: 1;
  background: var(--card-bg);
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-content h5 {
  font-size: 0.88rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-content h5 span {
  font-size: 0.65rem;
  color: var(--text-sub);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.timeline-content p {
  font-size: 0.75rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* Glass Receipt Card for Tax/Service charge */
.glass-receipt-container {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.glass-receipt {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(232, 157, 47, 0.25);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}

.receipt-logo {
  font-size: 1.4rem;
  color: var(--gold-color);
  letter-spacing: 0.05em;
}

.receipt-status {
  font-size: 0.65rem;
  color: var(--text-sub);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.receipt-dashed-line {
  border-top: 1px dashed rgba(232, 157, 47, 0.3);
  margin: 12px 0;
  height: 0;
}

.receipt-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-main);
}

.receipt-row.highlight-calc {
  color: var(--text-sub);
  font-size: 0.78rem;
}

.receipt-row.highlight-calc span:last-child {
  color: var(--gold-color);
  font-weight: bold;
}

.receipt-total {
  font-weight: bold;
  font-size: 0.95rem;
  color: var(--text-main);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.receipt-total-val {
  color: var(--gold-color);
  font-size: 1.25rem;
  text-shadow: 0 0 10px rgba(232, 157, 47, 0.35);
}

.receipt-barcode-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.receipt-barcode {
  width: 80%;
  height: 32px;
  background: linear-gradient(to right, 
    #e89d2f 0%, #e89d2f 5%, transparent 5%, transparent 8%, 
    #e89d2f 8%, #e89d2f 12%, transparent 12%, transparent 18%,
    #e89d2f 18%, #e89d2f 20%, transparent 20%, transparent 22%,
    #e89d2f 22%, #e89d2f 30%, transparent 30%, transparent 33%,
    #e89d2f 33%, #e89d2f 35%, transparent 35%, transparent 40%,
    #e89d2f 40%, #e89d2f 42%, transparent 42%, transparent 48%,
    #e89d2f 48%, #e89d2f 55%, transparent 55%, transparent 58%,
    #e89d2f 58%, #e89d2f 62%, transparent 62%, transparent 68%,
    #e89d2f 68%, #e89d2f 70%, transparent 70%, transparent 75%,
    #e89d2f 75%, #e89d2f 85%, transparent 85%, transparent 88%,
    #e89d2f 88%, #e89d2f 92%, transparent 92%, transparent 95%,
    #e89d2f 95%, #e89d2f 100%);
  opacity: 0.45;
}

.receipt-barcode-num {
  font-size: 0.58rem;
  color: var(--text-sub);
  letter-spacing: 0.25em;
  text-align: center;
}

/* Attention Cards refinement */
.attention-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.attention-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid rgba(232, 157, 47, 0.15);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.attention-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.attention-content {
  flex: 1;
}

.attention-title {
  font-size: 0.88rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 4px;
}

.attention-desc {
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* Amenity Grid (3x2 layout for about-system.html) */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.amenity-card {
  background: var(--card-bg);
  border: 1px solid rgba(232, 157, 47, 0.25);
  border-radius: 12px;
  padding: 14px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.amenity-card:active {
  transform: scale(0.96);
  border-color: var(--gold-color);
  box-shadow: 0 2px 8px rgba(232, 157, 47, 0.2);
}

.amenity-card-icon {
  color: var(--gold-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 4px rgba(232, 157, 47, 0.3));
}

.amenity-card-title {
  font-size: 0.65rem;
  color: var(--gold-color);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.amenity-card-desc {
  font-size: 0.62rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.3;
}

/* Timeline Preview Images (about-system.html) */
.timeline-img-wrapper {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(232, 157, 47, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  position: relative;
}

.timeline-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* System Page Navigation Buttons Layout */
.system-nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
  width: 100%;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.system-nav-buttons .gold-btn-outline {
  margin-top: 0 !important;
  padding: 14px 20px;
  font-size: 0.88rem;
  border-radius: 24px;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 280px;
  text-align: center;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.system-nav-buttons .gold-btn-outline svg {
  margin-left: 6px;
  width: 14px;
  height: 10px;
  flex-shrink: 0;
}

/* Amusement 2x2 Grid Layout (floor-amusement.html) */
.amusement-2x2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.amusement-item-card {
  background: var(--card-bg);
  border: 1px solid rgba(232, 157, 47, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.amusement-item-card:active {
  transform: scale(0.97);
  border-color: var(--gold-color);
  box-shadow: 0 2px 8px rgba(232, 157, 47, 0.2);
}

.amusement-card-img-wrapper {
  width: 100%;
  height: 90px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(232, 157, 47, 0.15);
}

.amusement-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amusement-card-body {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.amusement-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.amusement-card-icon-svg {
  color: var(--gold-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 3px rgba(232, 157, 47, 0.3));
}

.amusement-card-title-en {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-color);
  letter-spacing: 0.05em;
  margin: 0;
}

.amusement-card-text {
  font-size: 0.65rem;
  color: var(--text-sub);
  line-height: 1.45;
  margin: 0;
}

.amusement-card-btn-wrapper {
  margin-top: auto;
  padding-top: 6px;
  width: 100%;
}

.amusement-card-mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 6px 0;
  background: rgba(232, 157, 47, 0.08);
  border: 1px solid rgba(232, 157, 47, 0.6);
  border-radius: 14px;
  color: var(--gold-color);
  font-size: 0.62rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.amusement-card-mini-btn:active {
  background: var(--gold-color);
  color: #0b0907;
  border-color: var(--gold-color);
}

/* ==========================================
   MENU Page Styles (menu.html)
   ========================================== */

/* Menu Recommended Banner */
.menu-recommended-box {
  background: var(--card-bg);
  border: 1.5px solid var(--gold-color);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  margin-top: 20px;
  margin-bottom: 24px;
  box-shadow: var(--glow-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.menu-ribbon {
  position: absolute;
  top: 15px;
  left: -40px;
  background: var(--gold-color);
  color: #0b0907;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 6px 40px;
  transform: rotate(-45deg);
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.menu-recommended-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 20px;
}

.menu-recommended-title {
  font-size: 1.35rem;
  color: var(--gold-color);
  font-weight: 700;
  margin: 0;
}

.menu-recommended-title span {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  margin-left: 8px;
}

.menu-recommended-sub {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.4;
  margin: 0;
}

.menu-recommended-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 10px 0;
}

.menu-recommended-icon-item {
  color: var(--gold-color);
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-recommended-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid rgba(232, 157, 47, 0.15);
  padding-top: 16px;
}

.menu-recommended-main-price {
  font-size: 1.8rem;
  color: var(--gold-color);
  font-weight: 700;
  font-family: var(--font-sans);
}

.menu-recommended-extension-price {
  font-size: 0.78rem;
  color: var(--text-sub);
}

.menu-recommended-intro {
  font-size: 0.78rem;
  color: var(--text-sub);
  line-height: 1.6;
  text-align: center;
  margin-top: 8px;
}

/* Drink Desktop Grid */
.menu-drink-desktop-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.menu-drink-column {
  background: var(--card-bg);
  border: 1px solid rgba(232, 157, 47, 0.15);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-drink-col-header {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(232, 157, 47, 0.25);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.menu-drink-col-icon {
  color: var(--gold-color);
  display: flex;
}

.menu-drink-col-title-en {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-color);
  letter-spacing: 0.05em;
}

.menu-drink-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-drink-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  line-height: 1.4;
}

.menu-drink-item-name {
  color: var(--text-main);
}

.menu-drink-item-price {
  color: var(--gold-color);
  font-family: var(--font-sans);
}

.menu-drink-col-andmore {
  display: block;
  text-align: center;
  color: var(--text-sub);
  font-size: 0.7rem;
  margin-top: 12px;
  text-decoration: underline;
  cursor: pointer;
}

/* Drink Mobile Accordion */
.menu-drink-mobile-accordions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 24px;
}

.menu-accordion-item {
  background: var(--card-bg);
  border: 1px solid rgba(232, 157, 47, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease;
}

.menu-accordion-item.active {
  border-color: var(--gold-color);
  grid-column: span 2;
}

.menu-accordion-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  gap: 8px;
}

.menu-accordion-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gold-color);
  width: 100%;
}

.menu-accordion-header-mid {
  display: flex;
  align-items: baseline;
  width: 100%;
}

.menu-accordion-header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.72rem;
  color: var(--text-sub);
  width: 100%;
}

.menu-accordion-icon {
  color: var(--gold-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-accordion-en {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-color);
  letter-spacing: 0.05em;
}

.menu-accordion-jp {
  font-size: 0.72rem;
  color: var(--text-sub);
}

.menu-accordion-price-range {
  font-size: 0.78rem;
  color: var(--text-sub);
  font-family: var(--font-sans);
}

.menu-accordion-caret {
  color: var(--text-sub);
  display: flex;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-accordion-item.active .menu-accordion-caret {
  transform: rotate(90deg);
  color: var(--gold-color);
}

.menu-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 0 solid rgba(232, 157, 47, 0.1);
  background: rgba(11, 9, 7, 0.2);
}

.menu-accordion-item.active .menu-accordion-content {
  border-top-width: 1px;
}

.menu-accordion-inner {
  padding: 16px;
}

.menu-category-banner-wrapper {
  width: 100%;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(232, 157, 47, 0.15);
}

.menu-category-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer Tax Note */
.menu-tax-note {
  font-size: 0.72rem;
  color: var(--text-sub);
  text-align: center;
  margin-top: 16px;
  margin-bottom: 24px;
}


/* View More Button */
.menu-view-more-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 24px;
  width: 100%;
}

.menu-view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: rgba(22, 18, 15, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-color);
  border-radius: 30px;
  color: var(--gold-color);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: var(--glow-shadow);
  cursor: pointer;
  box-sizing: border-box;
}

.menu-view-more-btn:active {
  background: var(--gold-color);
  color: #0b0907;
}

.menu-view-more-btn svg {
  margin-left: 8px;
  stroke: currentColor;
}


/* Event List/Calendar View Toggle */
.toggle-view-btn {
  background: transparent;
  color: var(--text-sub);
  border: none;
  padding: 8px 18px;
  border-radius: 18px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.toggle-view-btn.active {
  background: var(--gold-color) !important;
  color: #0b0907 !important;
  box-shadow: 0 0 10px rgba(232, 157, 47, 0.4);
}

/* Calendar Days Styling */
.calendar-day-cell:active {
  background: rgba(232, 157, 47, 0.2) !important;
  transform: scale(0.95);
}

.calendar-day-cell.selected {
  border-color: var(--gold-color) !important;
  box-shadow: var(--glow-shadow);
  background: rgba(232, 157, 47, 0.08) !important;
}

/* LINE Reservation Modal overlay */
.reservation-modal-overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.reservation-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.reservation-modal-window {
  width: 90%;
  background: var(--card-bg-light);
  border: 1px solid rgba(232, 157, 47, 0.3);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--glow-shadow);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reservation-modal-overlay.active .reservation-modal-window {
  transform: translateY(0);
}

.res-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--text-sub);
  cursor: pointer;
  line-height: 1;
}

.res-modal-close-btn:active {
  color: var(--gold-color);
}

.res-input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.res-input-group label {
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-bottom: 6px;
  font-weight: 500;
}

.res-input-group input, .res-input-group select {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(232, 157, 47, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s;
}

.res-input-group input:focus, .res-input-group select:focus {
  border-color: var(--gold-color);
  box-shadow: 0 0 8px rgba(232, 157, 47, 0.2);
}







/* --- Added for Calendar & List View Integration --- */
.hidden {
  display: none !important;
}

.calendar-day-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.calendar-day-cell:hover {
  background: rgba(255, 255, 255, 0.05);
}

.calendar-day-cell span {
  margin-top: -6px;
}

.event-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-detail-card-item {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.event-detail-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(232, 157, 47, 0.15) !important;
  border-color: var(--gold-color) !important;
}

/* ==========================================================================
   Recruit Page New Styles (recruit.html)
   ========================================================================== */

/* Hero */
.recruit-hero {
  text-align: center;
  padding: 100px 24px 60px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(232, 157, 47, 0.15);
  position: relative;
  z-index: 2;
}

.recruit-hero-title-en {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  /* アウトラインテキスト効果 */
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
  color: transparent;
  margin-bottom: 8px;
}

.recruit-hero-title-jp {
  font-size: 0.85rem;
  color: var(--gold-color);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.recruit-hero-lead-sub {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Intro */
.recruit-intro {
  padding: 60px 24px;
  text-align: center;
}

.recruit-intro-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.recruit-intro-text {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.recruit-photos-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
}

.recruit-photo-item {
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(232, 157, 47, 0.15);
}

.recruit-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Benefits Grid (Glassmorphic + Gold Border Grid) */
.recruit-benefits-sec {
  padding: 40px 24px;
}

.recruit-benefits-sec .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(232, 157, 47, 0.25);
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent;
}

.recruit-benefits-sec .benefit-card {
  background-color: var(--card-bg);
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  border-right: 1px solid rgba(232, 157, 47, 0.25);
  border-bottom: 1px solid rgba(232, 157, 47, 0.25);
}

/* 奇数/偶数と最後の要素のボーダー制御 */
.recruit-benefits-sec .benefit-card:nth-child(even) {
  border-right: none;
}

.recruit-benefits-sec .benefit-card:nth-child(5) {
  grid-column: span 2;
  border-right: none;
  border-bottom: none;
}

.recruit-benefits-sec .benefit-icon {
  color: var(--gold-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-benefits-sec .benefit-title {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: bold;
}

.recruit-benefits-sec .benefit-desc {
  font-size: 0.72rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* Detail Button Section */
.recruit-details-sec {
  padding: 20px 24px 40px;
}

.recruit-desktop-only {
  display: none;
}

.recruit-mobile-only {
  display: block;
}

/* Contact Area */
.recruit-contact-sec {
  padding: 60px 24px;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.recruit-contact-sec .contact-lead {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-web-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #a36f24 0%, #6f4c19 100%);
  border: 1px solid rgba(232, 157, 47, 0.4);
  border-radius: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  position: relative;
  transition: opacity 0.2s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-web-btn:active {
  opacity: 0.9;
}

.contact-web-btn .btn-arrow {
  position: absolute;
  right: 16px;
  font-weight: bold;
}

.contact-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: rgba(11, 9, 7, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.contact-phone-btn:active {
  background: rgba(255, 255, 255, 0.1);
}

.contact-phone-btn .phone-time {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-left: 8px;
  font-weight: 400;
}

/* --- Added for Key Visual Video & Premium Features Grid --- */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.all-you-can-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
  width: 100%;
}

.feature-badge {
  background: rgba(232, 157, 47, 0.04);
  border: 1px solid rgba(232, 157, 47, 0.2);
  border-radius: 12px;
  padding: 14px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.feature-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color);
  margin-bottom: 8px;
  filter: drop-shadow(0 0 4px rgba(232, 157, 47, 0.3));
  transition: transform 0.3s ease;
}

.feature-badge-text {
  font-size: 0.68rem;
  color: var(--text-sub);
  line-height: 1.35;
  text-align: center;
  letter-spacing: 0.02em;
}

.feature-badge-text strong {
  color: var(--text-main);
  font-size: 0.78rem;
  display: block;
  margin-top: 4px;
  font-weight: 700;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.feature-badge:active {
  background: rgba(232, 157, 47, 0.12);
  border-color: var(--gold-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 157, 47, 0.25), var(--glow-shadow);
}

.feature-badge:active .feature-badge-icon {
  transform: scale(1.1);
  color: #fff;
  filter: drop-shadow(0 0 8px var(--gold-color));
}

.feature-badge:active .feature-badge-text strong {
  color: var(--gold-color);
}
