@charset "utf-8";
/*********************************
HOBBY ROUND 34 2026.05.02 STYLE-COMMON
cleaned for maintainability
source: style_common.css + index.htm structure check
*********************************/

/* =========================================
   00. TOKENS / ROOT
========================================= */
:root {
  --fs-base: clamp(0.9375rem, -0.05vw + 1rem, 1rem);
  --fs-h1: clamp(2rem, 5vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.25rem);
  --fs-md: 1rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.875rem;
  --font-en: "Helvetica Neue", Arial, sans-serif;

  --sp-unit: clamp(16px, 1.25vw + 11px, 20px);
  --sp-xs: calc(var(--sp-unit) * 0.5);
  --sp-md: var(--sp-unit);
  --sp-lg: calc(var(--sp-unit) * 3);
  --sp-xl: calc(var(--sp-unit) * 5);

  --lh-base: 1.7;
  --lh-tight: 1.4;
  --bs-cmn: 0 2px 3px 1px rgb(50 50 50 / 10%);
  --shadow-soft: 0 1rem 3rem rgba(0, 0, 0, 0.04);
  --shadow-float: 0 0.8rem 2rem rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.18);
  --shadow-red-md: 0 12px 30px rgba(239, 68, 68, 0.35);
  
  --c-line: rgba(34, 34, 34, 0.12);
  --c-line-accent: rgba(216, 115, 95, 0.32);
  
  
  --c-link: #27abdc;
  --c-link-hover: #ff5a4f;
  --c-link--b: #87ceeb;
  --c-link--b-hover: #a3e0ff;

  --c-txt: #222;
  --c-main: #e60012;
  --c-blk: #000;
  --c-wht: #fff;
  --c-yellow: #ffef00;
  --c-blue: #00bfff;
  --c-org: #ff8c00;
  --c-green: #00e676;
  --c-gray: #f3f4f6;
  --c-accent: #d83a34;
  --c-accent-soft: rgba(216, 58, 52, 0.12);
  
  --red: #ef4444;
  --yellow: #facc15;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-900: #111827;

  --w-site: min(100%, 128rem);
  --w-cont: min(100%, 96rem);
  --w-box: min(100%, 80rem);

  --header-h: 72px;
  --container: 1080px;
  --scroll-padding: 60px;
}

/* =========================================
   01. BASE
========================================= */
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-padding);
}

body {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-family: "Noto Sans JP", sans-serif;
  color: var(--c-txt);
  letter-spacing: normal;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

a {
  color: var(--c-link);
  text-decoration: none;
}

a:hover {
  color: var(--c-link-hover);
  text-decoration: none;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
}

main {
  padding-top: var(--header-h);
}

/* =========================================
   02. UTILITIES / LAYOUT
========================================= */
.ta-l { text-align: left; }
.ta-c { text-align: center; }
.ta-r { text-align: right; }

.br-off { display: none; }
.br-on { display: block; }

.container {
  width: min(var(--container), calc(100% - (var(--sp-md) * 2)));
  margin-inline: auto;
}

.space-y-xl { padding: var(--sp-xl) 0; }
.space-y-lg { padding: var(--sp-lg) 0; }

.stack {
  display: grid;
  gap: var(--sp-unit);
}
.stack--xs { gap: var(--sp-xs); }
.stack--md { gap: var(--sp-unit); }
.stack--lg { gap: var(--sp-lg); }

.split {
  display: flex;
  flex-direction: column;
  gap: var(--sp-unit);
}
.grid { display: grid; }
.grid--gap-lg { gap: calc(var(--sp-unit) * 2); }

/* =========================================
   03. BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 4rem;
  padding: 0 2.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: calc(var(--fs-base) * 1.4);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
/* アイコン */
.btn__icon {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  transition: transform .2s ease;
}
/* hover共通 */
.btn:hover {
  transform: translateY(-2px);
}
/* =========================
  Primary（最重要導線）
========================= */
.btn--primary {
  background: var(--c-accent);
  color: var(--c-wht);
  box-shadow: var(--shadow-md);
  width: min(84%, 24rem);
}
.btn--primary:hover {
  color: var(--c-wht);
  background: #c5322d;
  box-shadow: var(--shadow-lg);
}
.btn--primary:hover .btn__icon {
  transform: translateX(4px);
  color: var(--c-wht);
}
/* =========================
  Secondary（通常導線）
========================= */
.btn--secondary {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--c-line);
  color: var(--c-txt);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  background: var(--c-wht);
  border-color: var(--c-accent);
}
.btn--secondary:hover .btn__icon {
  transform: translateX(4px);
}
/* =========================
  Ghost（軽いリンク）
========================= */
.btn--ghost {
  background: var(--c-accent);
  color: var(--c-wht);
  font-size: 14px;
  min-height: 30px;
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  color: var(--c-wht);
}
/* =========================
  サイズバリエーション
========================= */
.btn--lg {
  min-height: 6.4rem;
  font-size: 1.7rem;
  padding: 0 3rem;
}
.btn--sm {
  min-height: 4.4rem;
  font-size: 1.3rem;
  padding: 0 1.6rem;
}
/* =========================
  幅制御
========================= */
.btn--block {
  width: 100%;
}
.btn--center {
  display: flex;
  margin-inline: auto;
}
/* =========================
  レスポンシブ
========================= */
@media (max-width:767px) {
  .btn {
    min-height: 4rem;
    font-size: calc(var(--fs-base) * 1.4);
    padding: 0 1.8rem;
  }
  .btn--lg {
    min-height: 5.6rem;
  }
  .btn.btn--ghost {
    font-size: var(--fs-base);
    font-weight: normal;
    min-height: 2rem;
  }
}

/* =========================================
   04. BACKGROUND HELPERS
========================================= */
.dot-pattern {
  background-image: radial-gradient(#ccc 1px, transparent 1px);
  background-size: 20px 20px;
}

.pop-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--c-wht);
}

.pop-bg::before,
.pop-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pop-bg::before {
  background:
    radial-gradient(rgba(239, 68, 68, .28) 1.8px, transparent 2px),
    radial-gradient(rgba(250, 204, 21, .26) 1.8px, transparent 2px),
    radial-gradient(rgba(34, 197, 94, .22) 1.8px, transparent 2px),
    radial-gradient(rgba(6, 182, 212, .22) 1.8px, transparent 2px);
  background-size: 16px 16px, 20px 20px, 24px 24px, 28px 28px;
  background-position: 0 0, 8px 10px, 4px 14px, 12px 6px;
  opacity: 0.95;
}

.pop-bg::after {
  background:
    radial-gradient(circle at 15% 20%, rgba(239, 68, 68, .30), transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(250, 204, 21, .26), transparent 44%),
    radial-gradient(circle at 80% 85%, rgba(34, 197, 94, .24), transparent 48%),
    radial-gradient(circle at 18% 88%, rgba(6, 182, 212, .22), transparent 50%),
    radial-gradient(circle at 55% 50%, rgba(168, 85, 247, .16), transparent 55%);
  filter: blur(18px);
  opacity: 1;
}

.pop-bg > * {
  position: relative;
  z-index: 1;
}

/* =========================================
   05. HEADER / FULLSCREEN MENU
========================================= */
.menu-toggle {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2200;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header__inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-txt);
  text-decoration: none;
}

.brand__accent {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--yellow);
  text-underline-offset: 2px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav--desktop { display: none; }

.hamburger {
  cursor: pointer;
  position: relative;
  z-index: 2300;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.hamburger:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hamburger__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--c-blk);
  transform-origin: center;
  transition: transform .28s ease, opacity .2s ease, width .28s ease, background .2s ease;
}

.hamburger:hover .hamburger__line { background: var(--red); }
.line-1 { transform: translate(-50%, -9px); }
.line-2 { transform: translate(-50%, 0); }
.line-3 {
  width: 18px;
  transform: translate(-50%, 9px);
}

#menu-toggle:checked ~ header .hamburger {
  background: rgba(255, 255, 255, 0.92);
}
#menu-toggle:checked ~ header .line-1 {
  transform: translate(-50%, 0) rotate(45deg);
}
#menu-toggle:checked ~ header .line-2 { opacity: 0; }
#menu-toggle:checked ~ header .line-3 {
  width: 28px;
  transform: translate(-50%, 0) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 214, 10, 0.06) 0, transparent 24%),
    radial-gradient(circle at 80% 75%, rgba(255, 92, 80, 0.05) 0, transparent 28%),
    linear-gradient(180deg, #f8f8fa 0%, #f3f4f7 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px) scale(.985);
  transition: opacity .34s ease, transform .42s ease, visibility 0s linear .42s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-overlay::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#menu-toggle:checked ~ #full-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity .34s ease, transform .42s ease, visibility 0s linear 0s;
}

.menu-overlay__inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-overlay__links {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
}
.menu-overlay__links {
  position: relative;
}

.menu-overlay__links::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(243, 244, 247, 0) 0%,
    rgba(243, 244, 247, 0.78) 60%,
    rgba(243, 244, 247, 1) 100%
  );
}
.menu-overlay__scrollhint {
  position: absolute;
  right: var(--sp-unit);
  top: 80vh;
  z-index: 2;
  font-size: calc(var(--fs-base) * 2.2);
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(30, 41, 59, 0.28);
  pointer-events: none;
}
@media (max-width: 1180px) {
  .menu-overlay__scrollhint {
    display: none;
  }
}
.menu-overlay__links::before {
  content: "MENU";
  position: absolute;
  right: 28px;
  top: 16px;
  font-size: clamp(110px, 12vw, 220px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(16, 24, 40, 0.035);
  pointer-events: none;
  z-index: 0;
}

.menu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: 980px;
  max-height: calc(100vh - 160px);
}

.menu-item {
  position: relative;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding: 32px 0 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .45s ease, border-color .2s ease;
}

.menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff5a4f 0%, #f0c400 100%);
  transition: width .28s ease;
}

.menu-item:hover::after { width: 100%; }

.menu-link {
  position: relative;
  /* display: grid; */
  /* grid-template-columns: 1fr auto; */
  align-items: center;
  gap: 20px;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.menu-link::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 4px;
  height: 1.15em;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5a4a 0%, #ffb300 100%);
  transform: translateY(-50%) scaleY(1);
  transform-origin: center;
  opacity: 0.95;
  transition: transform .25s ease, opacity .25s ease, filter .25s ease;
}

.menu-link__label {
  font-size: clamp(28px, 2.4vw, 56px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1e293b;
  transition: color .25s ease, transform .25s ease;
}

.menu-link__num {
  flex-shrink: 0;
  font-size: clamp(24px, 1.8vw, 36px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: rgba(17, 17, 17, 0.11);
  transition: transform .25s ease, color .25s ease;
}

.menu-item:hover .menu-link__label {
  color: #ff5a4f;
  transform: translateX(8px);
}

.menu-item:hover .menu-link__num {
  color: rgba(255, 90, 79, 0.38);
  transform: translateX(-6px);
}

.menu-item:hover .menu-link::before {
  transform: translateY(-45%) scaleY(3);
  filter: saturate(1.05);
}
/* ===== 無効状態 ===== */
.menu-link.is-disabled {
  pointer-events: none;
  cursor: default;
}
/* テキストだけグレー化 */
.menu-link.is-disabled .menu-link__label {
  color: rgba(30, 41, 59, 0.35);
}
/* 数字はそのままでもOKだけど、少し落とすなら */
.menu-link.is-disabled .menu-link__num {
  color: rgba(17, 17, 17, 0.08);
}

/* hover効果を完全に止める */
.menu-item:has(.menu-link.is-disabled):hover .menu-link__label {
  color: rgba(30, 41, 59, 0.35);
  transform: none;
}

.menu-item:has(.menu-link.is-disabled):hover .menu-link__num {
  color: rgba(17, 17, 17, 0.08);
  transform: none;
}

.menu-item:has(.menu-link.is-disabled):hover .menu-link::before {
  transform: translateY(-50%) scaleY(1);
  filter: none;
}

/* 下ラインは残す（必要なら消すならここで調整） */
.menu-item:has(.menu-link.is-disabled)::after {
  width: 0; /* ←残したいなら消す、非表示ならこのまま */
}
#menu-toggle:checked ~ #full-menu .menu-item {
  opacity: 1;
  transform: translateY(0);
}
#menu-toggle:checked ~ #full-menu .menu-item:nth-child(1) { transition-delay: .04s; }
#menu-toggle:checked ~ #full-menu .menu-item:nth-child(2) { transition-delay: .08s; }
#menu-toggle:checked ~ #full-menu .menu-item:nth-child(3) { transition-delay: .12s; }
#menu-toggle:checked ~ #full-menu .menu-item:nth-child(4) { transition-delay: .16s; }
#menu-toggle:checked ~ #full-menu .menu-item:nth-child(5) { transition-delay: .20s; }
#menu-toggle:checked ~ #full-menu .menu-item:nth-child(6) { transition-delay: .24s; }
#menu-toggle:checked ~ #full-menu .menu-item:nth-child(7) { transition-delay: .28s; }
#menu-toggle:checked ~ #full-menu .menu-item:nth-child(8) { transition-delay: .32s; }

.menu-cta {
  margin-top: 48px;
  padding-bottom: 88px;
  display: flex;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .42s ease, transform .48s ease;
}

#menu-toggle:checked ~ #full-menu .menu-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .40s;
}

.menu-cta .btn--primary {
  min-height: 64px;
  padding: 0 36px;
  font-size: 15px;
  letter-spacing: 0.05em;
  box-shadow:
    0 16px 32px rgba(239, 47, 37, 0.22),
    0 6px 16px rgba(0, 0, 0, 0.08);
}
.menu-cta .btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.01);
  box-shadow:
    0 22px 40px rgba(239, 47, 37, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Overlay helper retained only if .page exists on some pages */
#menu-toggle:checked ~ .page {
  height: 100vh;
  overflow: hidden;
}

/* =========================================
   06. FLOATING TICKET BANNER
========================================= */
.floating-banner {
  position: fixed;
  right: 2vw;
  bottom: 120px;
  z-index: 1000;
  transform: translateY(270%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.floating-banner.is-show {
  transform: translateY(0);
  pointer-events: auto;
}

.floating-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: var(--c-main);
  color: var(--c-wht);
  border-radius: 50%;
  box-shadow: var(--shadow-red-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.fb-text {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.floating-link:hover {
  color: var(--c-wht);
  background-color: var(--c-blk);
  transform: scale(1.1) rotate(5deg);
}

/* =========================================
   07. BREADCRUMB
========================================= */
.breadcrumb {
  width: 100%;
  padding: 0.5em 2vw;
  background: var(--c-gray);
}

.navi-breadcrumb {
  font-size: var(--fs-xs);
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
}

.navi-breadcrumb > * ~ *::before {
  content: "\f054";
  margin: 0 1em;
  color: var(--c-link);
  font-family: "Font Awesome 5 Free";
  font-size: 93.75%;
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.navi-breadcrumb > *:last-of-type > a {
  color: #333;
  pointer-events: none;
}

/* =========================================
   08. FOOTER NAV
========================================= */
.footer-nav {
  padding: 5em 2vw;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
  color: rgba(255, 255, 255, .86);
}

.footer-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 189, 248, .10), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(34, 197, 94, .08), transparent 45%),
    radial-gradient(circle at 40% 110%, rgba(239, 68, 68, .08), transparent 45%);
  opacity: .55;
}

.footer-nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(34, 197, 94, .75), rgba(56, 189, 248, .75), rgba(239, 68, 68, .75));
  opacity: .55;
  pointer-events: none;
}

.footer-nav__container {
  width: min(90%, 1060px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-nav__wrapper {
  margin: 0 0 var(--sp-unit);
  display: flex;
  justify-content: space-between;
  gap: 4vw;
  align-items: flex-start;
}

.footer-nav__logo {
  flex: 1;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.22));
  opacity: .98;
}

.footer-nav__links {
  font-size: 115%;
  flex: 1;
  --_column: 2;
  display: grid;
  grid-template-columns: repeat(var(--_column), 1fr);
  gap: 10px 18px;
  padding-top: 6px;
}

.footer-nav__links li {
  white-space: nowrap;
  padding-left: 14px;
  position: relative;
}

.footer-nav__links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, .35);
}

.footer-nav__links a {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  text-decoration: none;
}

.footer-nav__links a:hover { color: rgba(255, 255, 255, .98); }

.footer-nav__button-group {
  padding: 0;
  display: flex;
  gap: 16px;
}
.footer-nav__links .link-not {
  pointer-events: none;
  color:#3e3e3e;
}
.footer-nav__button-group li { flex: 1; }

.btn-strong {
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.icon-section {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, .07);
  border-right: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-x,
.icon-ticket {
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.icon-x {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

.icon-ticket {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z'/%3E%3Cpath d='M13 5v2'/%3E%3Cpath d='M13 17v2'/%3E%3Cpath d='M13 11v2'/%3E%3C/svg%3E");
}

.text-section {
  font-size: calc(var(--fs-base) * 1.05);
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0 1em;
  flex-grow: 1;
}

.btn-strong:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .28);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}

.btn-strong:active {
  transform: translateY(0);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .10);
}

.footer-nav__button-group li:last-child .btn-strong {
  border-color: rgba(239, 68, 68, .35);
}

.footer-nav__button-group li:last-child .btn-strong:hover {
  border-color: rgba(239, 68, 68, .55);
}

/* =========================================
   09. GLOBAL FOOTER
========================================= */
footer {
  font-size: var(--fs-xs);
  color: var(--c-wht);
  text-align: center;
  width: 100%;
  padding: 2.5em 2vw 2em;
  background: var(--c-blue);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner { padding: calc(var(--sp-unit) * 3) 0; }

.footer-logo {
  width: calc(var(--fs-base) * 13);
  padding: 0 0 1em;
}

.footer__note {
  line-height: 1.3;
  text-align: left;
  margin: 1em auto 0;
  display: inline-block;
}

.footer__note > * {
  padding-left: 1em;
  text-indent: -1em;
}

.footer__note > * ~ * { margin-top: 0.2em; }

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* =========================================
   10. FLOAT NAV
========================================= */
.float-nav {
  position: fixed;
  right: 20px;
  bottom: 15%;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity .25s ease, transform .25s ease;
}
.float-nav.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}
.float-nav__btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, .10);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .2s ease;
}
.float-nav__arrow {
  font-size: 14px;
  font-weight: 800;
  color: rgba(15, 23, 42, .70);
}
.float-nav__label {
  position: absolute;
  right: 52px;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 700;
  color: rgba(15, 23, 42, .70);
  opacity: 0;
  transform: translateX(4px);
  transition: all .18s ease;
}
.float-nav__btn:hover .float-nav__label {
  opacity: 1;
  transform: translateX(0);
}
.float-nav__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 23, 42, .20);
}
.float-nav__btn.is-collapsed .float-nav__label {
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  pointer-events: none;
}
/* =========================================
   11. MAP / MODAL
========================================= */
.event-map {
  background: hsl(0deg 0% 100%);
  padding: 1rem;
  margin: 3rem 0 2rem;
  display: inline-block;
}

.event-map img { text-align: center; }

.event-data__maplink { position: relative; }

.event-data__maplink.link-not {
  color: #ccc;
  pointer-events: none;
}

.event-data__maplink:hover { text-decoration: none; }

.event-data__maplink::after {
  content: "\f0c1";
  padding-left: 0.5em;
  font-family: "Font Awesome 5 Free";
}

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
  padding-right: 15px;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready { opacity: 0.8; }
.mfp-fade.mfp-bg.mfp-removing { opacity: 0; }

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content { opacity: 1; }
.mfp-fade.mfp-wrap.mfp-removing .mfp-content { opacity: 0; }

.white-popup-block {
  background: var(--c-wht);
  width: 80rem;
  max-width: 94%;
  margin: calc(var(--rs) * 2) auto;
  padding: calc(var(--rs) * 4) calc(var(--rs) * 2) calc(var(--rs) * 2);
  text-align: left;
  position: relative;
}

.hr_map-title {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 175%;
  color: #d60001;
  padding-bottom: 1rem;
}

.hr_map-img {
  padding: 1rem 0;
  margin-bottom: 2rem;
}

/* =========================================
   12. RESPONSIVE
========================================= */
@media screen and (min-width: 767px) {
  .br-off { display: block; }
  .br-on { display: none; }
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nav--desktop {
    display: flex;
    align-items: center;
    gap: 24px;
    transform-origin: right center;
    transition: opacity .28s ease, transform .32s ease, filter .28s ease, visibility 0s linear 0s;
  }

  .nav-link {
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: color .2s ease;
    display: block;
    white-space: nowrap;
  }

  .nav-link:hover { color: #ff5a4f; }

  #menu-toggle:checked ~ header .nav--desktop {
    opacity: 0;
    transform: translateY(-8px) scale(.985);
    filter: blur(4px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .24s ease, transform .3s ease, filter .24s ease, visibility 0s linear .24s;
  }

  .menu-overlay__visual {
    width: 30%;
    min-width: 360px;
    padding: 42px 34px;
    align-items: flex-end;
    justify-content: flex-start;
    background:
      radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.06) 0, transparent 30%),
      linear-gradient(180deg, #0d1a39 0%, #08122d 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .menu-overlay__visual-content {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
  }

  .menu-overlay__visual-title {
    margin: 0;
    font-size: clamp(90px, 10vw, 170px);
    line-height: 0.82;
    letter-spacing: -0.05em;
    font-weight: 900;
    font-style: italic;
    opacity: 0.13;
  }

  .menu-overlay__visual-sub {
    margin: 18px 0 0;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    padding-left: 18px;
  }

  .menu-overlay__visual-sub::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff5b4f 0%, #f0c400 100%);
    transform: translateY(-50%);
  }

  .btn-float--ticket { display: none; }
}

@media (max-width: 1060px) {
  .footer-nav__logo { flex: 1.2; }
  .footer-nav__links { font-size: var(--fs-base); }
}

@media (max-width: 1023px) {
  .header__inner { height: 78px; }
  .header__right { gap: 12px; }

  .brand { font-size: clamp(28px, 5vw, 44px); }

  .hamburger {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.72);
  }

  .menu-overlay__links {
    padding: 100px 56px 40px;
    align-items: center;
  }

  .menu-overlay__links::before {
    right: 14px;
    top: 16px;
    font-size: 96px;
  }

  .menu-item { 
    padding: 26px 0 22px;
  }

  .menu-link::before {
    left: -12px;
    width: 4px;
    height: 1.05em;
  }

  .menu-link__label {
    font-size: 28px;
    line-height: 1.08;
  }

  .menu-link__num {
    font-size: 22px;
    color: rgba(17, 17, 17, 0.16);
  }
}

@media (max-width: 868px) {
  .footer-nav { padding: 4em 3vw; }
  .footer-nav__links { display: none; }
  .footer-nav__button-group { flex-direction: column; }

  .icon-section {
    width: 56px;
    height: 56px;
  }

  .icon-x,
  .icon-ticket {
    width: 24px;
    height: 24px;
  }

  .text-section { font-size: var(--fs-base); }
}

@media (max-width: 768px) {
  .floating-link {
    width: 75px;
    height: 75px;
  }

  .fb-text { font-size: 11px; }
}

@media (max-width: 767px) {
  .brand {font-size: clamp(24px, 6vw, 46px);}

  .menu-overlay {
    background:
      radial-gradient(circle at 88% 14%, rgba(255, 214, 10, 0.10) 0, transparent 28%),
      linear-gradient(180deg, #f8f8fa 0%, #f4f5f8 100%);
  }

  .header__inner { height: 78px; }
  .header__right { gap: 12px; }

  .hamburger {
    width: 52px;
    height: 52px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .menu-overlay__links {
    padding: 88px 24px 88px;
    align-items: flex-start;
  }

  .menu-overlay__links::before {
    font-size: 72px;
    top: 18px;
  }

  .menu-item { padding: 24px 0 20px; }

  .menu-link { gap: 16px; }

  .menu-link::before {
    left: -10px;
    width: 4px;
    height: 1em;
  }

  .menu-link__label {
    font-size: 20px;
    line-height: 1.08;
  }

  .menu-link__num {
    font-size: 20px;
    color: rgba(17, 17, 17, 0.18);
  }

  .menu-cta {
    margin-top: 40px;
    padding-bottom: 120px;
  }

  .menu-cta .btn--primary {
    min-height: 60px;
    padding: 0 30px;
    font-size: 14px;
  }

  .float-nav {
    right: 14px;
    bottom: 20%;
  }
  .float-nav__btn {
    width: 38px;
    height: 38px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .float-nav__btn:hover .float-nav__label,
  .float-nav__btn:focus .float-nav__label,
  .float-nav__btn:active .float-nav__label {
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
  }
}