/* ===========================
   ぐる呑み茅ヶ崎 元町 2026
   style.css — mobile-first
   配色: 青 × 黄（ポップ・元気）
=========================== */

:root {
  --blue:        #0060C0;
  --blue-deep:   #004899;
  --blue-mid:    #0077DD;
  --blue-bright: #4499FF;
  --blue-light:  #E8F2FF;
  --yellow:      #FFCA00;
  --yellow-light:#FFE040;
  --white:       #FFFFFF;
  --text:        #1A1A2E;
  --text-muted:  #5C6B84;
  --round:   'M PLUS Rounded 1c', sans-serif;
  --display: 'Pacifico', cursive;
  --sans:    'M PLUS Rounded 1c', sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === Header === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(0, 61, 160, 0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255, 214, 0, 0.4);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  font-family: var(--round);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.header-nav {
  display: flex;
  gap: 1.5rem;
}
.header-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--yellow); }

/* === Hero === */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* 動画の上に重ねる：文字の視認性確保 */
  background:
    linear-gradient(to bottom,
      rgba(0, 40, 120, 0.55) 0%,
      rgba(0, 30, 100, 0.40) 40%,
      rgba(0, 20, 80,  0.65) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  color: var(--white);
  max-width: 600px;
}
.hero-date {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  font-family: var(--display);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.hero-title {
  font-family: var(--round);
  font-size: clamp(2.2rem, 9vw, 4rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.4);
  letter-spacing: 0.02em;
}
.hero-title .accent {
  color: var(--yellow);
  display: inline-block;
  font-family: var(--display);
  font-size: 1.15em;
}
.hero-catch {
  font-size: clamp(0.85rem, 2.4vw, 1rem);
  line-height: 2;
  margin-bottom: 2.2rem;
  color: rgba(255,255,255,0.96);
  letter-spacing: 0.06em;
  font-family: var(--round);
  text-shadow: 0 1px 10px rgba(0,0,0,0.75);
}
/* === Countdown === */
.hero-countdown {
  margin-bottom: 1.8rem;
}

/* カウントダウン中 */
.countdown-box {
  display: inline-block;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 214, 0, 0.5);
  border-radius: 16px;
  padding: 0.9rem 1.4rem;
}
.countdown-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.countdown-nums {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
.countdown-num {
  font-family: var(--display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  color: var(--yellow);
  line-height: 1;
  min-width: 1.8ch;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.countdown-unit-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.countdown-sep {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--yellow);
  margin-bottom: 0.8rem;
  opacity: 0.7;
}

/* 開催中 */
.countdown-live {
  display: inline-block;
}
.countdown-live-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-deep);
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 800;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(255,214,0,0.5);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1);    box-shadow: 0 4px 24px rgba(255,214,0,0.5); }
  50%      { transform: scale(1.04); box-shadow: 0 6px 32px rgba(255,214,0,0.8); }
}
.countdown-live-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

/* 終了後 */
.countdown-end {
  display: inline-block;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 0.9rem 1.6rem;
}
.countdown-end-main {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.countdown-end-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-secondary {
  display: inline-block;
  padding: 0.95rem 2rem;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--round);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ポスターバナー */
.poster-banner {
  background: var(--yellow);
  display: flex;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.poster-banner img {
  width: 100%;
  max-width: 540px;
  display: block;
}

.btn-primary {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  background: var(--yellow);
  color: var(--blue-deep);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--round);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 214, 0, 0.5);
}
.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 214, 0, 0.6);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  margin: 0.5rem auto 0;
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  60%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* === Container === */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Wave Dividers === */
.wave-divider {
  height: 60px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-bottom: -2px;
}
.wave-to-blue {
  background-color: var(--yellow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%230060C0' d='M0,30 C360,60 720,0 1080,30 C1260,45 1350,52 1440,50 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
}
.wave-to-white {
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23FFFFFF' d='M0,20 C240,50 480,0 720,25 C960,50 1200,10 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
}
.wave-to-deep {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23004899' d='M0,40 C360,10 720,55 1080,25 C1260,10 1350,15 1440,20 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
}
.wave-to-lightblue {
  background-color: var(--blue-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23E8F2FF' d='M0,30 C480,60 960,0 1440,35 L1440,60 L0,60 Z'/%3E%3C/svg%3E");
}

/* === Section Label === */
.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
  margin-bottom: 0.4rem;
  font-family: var(--display);
}
/* 白背景セクション用 */
.shops .section-label,
.access .section-label {
  color: var(--blue-mid);
}

/* === Reveal Animation === */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stat数字 ポップイン */
.stat-num {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal.visible .stat-num {
  animation: popIn 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes popIn {
  0%   { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}

/* セクション見出し 左からスライド */
.about h2, .ticket h2, .access h2, .shops h2 {
  transform: translateX(-20px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s, opacity 0.7s ease 0.15s;
}
.reveal.visible h2, .shops h2 {
  transform: translateX(0);
  opacity: 1;
}
.shops h2 {
  transform: translateX(0);
  opacity: 1;
}

/* ポスターバナー フェードイン */
.poster-banner {
  animation: fadeSlideUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* チケット画像 浮かび上がり */
.ticket-img-wrap {
  animation: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ticket-img-wrap:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* ショップカード ホバー強化 */
.shop-card {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ボタン 弾むホバー */
.btn-primary, .btn-secondary {
  transition: background 0.2s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}

/* アクセスアイコン 揺れ */
.access-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.access-item:hover .access-icon {
  animation: wiggle 0.5s ease;
}
@keyframes wiggle {
  0%,100% { transform: rotate(0deg); }
  25%      { transform: rotate(-12deg); }
  75%      { transform: rotate(12deg); }
}

/* ヒーロー日付 点滅カーソル風 */
.hero-date::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.75em;
  background: var(--yellow);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* === About / Story === */
.about {
  background: var(--blue);
  color: var(--white);
  padding: 5.5rem 0;
}
.about h2 {
  font-family: var(--round);
  font-size: clamp(1.6rem, 5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  letter-spacing: 0;
}

/* Story ブロック */
.story-block {
  margin-bottom: 2.5rem;
}
.story-lead {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.story-block p {
  font-size: 0.95rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}

/* Story 画像 */
.story-img-wrap {
  margin-bottom: 3rem;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.story-img-wrap img {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: cover;
  object-position: center 30%;
}
.story-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* === HowTo === */
.howto {
  background: var(--blue);
  padding: 0 0 5.5rem;
}
.howto-label { color: var(--yellow); }
.howto-title {
  font-family: var(--round);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0;
}
.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.howto-step {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.howto-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.step-img-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--yellow);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.step-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.step-body p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
}
.about-stats {
  display: flex;
  gap: 2.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.stat-num {
  font-family: var(--display);
  font-size: 3.2rem;
  color: var(--yellow);
  line-height: 1;
  min-width: 3ch;
  text-align: center;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* === Shops === */
.shops {
  background: var(--white);
  padding: 5.5rem 0 2rem;
}
.shops h2 {
  font-family: var(--round);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 0.4rem;
  letter-spacing: 0;
}
.shops-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  margin-bottom: 0;
}
/* スライダー外枠（ボタン込み） */
.slider-outer {
  position: relative;
  display: flex;
  align-items: center;
}

/* 矢印ボタン */
.slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
  box-shadow: 0 4px 16px rgba(0,60,160,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slider-btn-prev { left: 4px; }
.slider-btn-next { right: 4px; }
.slider-btn:hover {
  background: var(--blue-mid);
  transform: translateY(-50%) scale(1.1);
}
.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.slider-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* スライダー本体 */
.shops-slider-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1.5rem 1rem 1rem;
  cursor: grab;
  flex: 1;
  min-width: 0;
}
.shops-slider-wrap:active { cursor: grabbing; }
.shops-slider-wrap::-webkit-scrollbar { display: none; }
.shops-slider {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-right: 1.5rem;
}

/* === Shop Card === */
.shop-card {
  scroll-snap-align: start;
  width: 272px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #E8EFF8;
  box-shadow: 0 4px 20px rgba(0, 61, 160, 0.08);
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0, 85, 204, 0.18);
  border-color: var(--blue-bright);
}
.shop-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.shop-card-body {
  padding: 1.1rem;
}
.shop-card-no {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--blue-mid);
  margin-bottom: 0.3rem;
  font-family: var(--round);
}
.shop-card-name {
  font-family: var(--round);
  font-size: 1.08rem;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}
.shop-card-genre {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 50px;
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}
.shop-card-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.shop-card-offer {
  padding-top: 0.8rem;
  border-top: 2px solid var(--yellow);
  font-size: 0.8rem;
  color: var(--blue-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.shop-card-offer::before {
  content: '🍺';
  font-size: 0.9rem;
}

/* === Shop Card Detail Accordion === */
.shop-detail-toggle {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.55rem 0.8rem;
  background: var(--blue-light);
  border: 1.5px solid var(--blue-bright);
  border-radius: 50px;
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.shop-detail-toggle:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.shop-detail-toggle.open {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.detail-arrow {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}
.shop-detail-toggle.open .detail-arrow {
  transform: rotate(180deg);
}
.shop-detail-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.shop-detail-body.open {
  max-height: 320px;
}
.shop-detail-list {
  padding: 0.85rem 0.2rem 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.shop-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.6;
}
.detail-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 0.05rem;
}
.shop-detail-list a {
  color: var(--blue-mid);
  text-decoration: underline;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0 2.5rem;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 85, 204, 0.18);
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--blue);
  transform: scale(1.35);
}

/* チケット画像 */
.ticket-img-wrap {
  margin-bottom: 2rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0,0,0,0.3);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.ticket-img-wrap img {
  width: 100%;
  display: block;
}

/* アクセスマップ画像 */
.access-map img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* === Ticket === */
.ticket {
  background: var(--blue-deep);
  color: var(--white);
  padding: 5.5rem 0;
}
.ticket h2 {
  font-family: var(--round);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 0;
}
.ticket-card {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255, 214, 0, 0.45);
  border-radius: 20px;
  padding: 2rem;
}
.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.price-num {
  font-family: var(--display);
  font-size: 2.8rem;
  color: var(--yellow);
  line-height: 1;
}
.price-unit {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.ticket-detail {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}
.ticket-detail li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.7;
}
.ticket-detail li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

/* === Accordion === */
.accordion-wrap {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  text-align: left;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.accordion-trigger:hover { color: var(--white); }
.accordion-trigger[aria-expanded="true"] { color: var(--yellow); }
.accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s, transform 0.35s;
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.6);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.2s, transform 0.35s;
}
.accordion-icon::before { width: 9px; height: 1.5px; }
.accordion-icon::after  { width: 1.5px; height: 9px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  border-color: var(--yellow);
  transform: rotate(45deg);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon::before,
.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  background: var(--yellow);
}
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.accordion-body.open {
  max-height: 600px;
}
.accordion-list {
  padding: 0 0 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.accordion-list li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.7;
}
.accordion-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--yellow);
}

/* === Access === */
.access {
  background: var(--blue-light);
  padding: 5.5rem 0;
}
.access h2 {
  font-family: var(--round);
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 1.8rem;
  letter-spacing: 0;
}
.access-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.access-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.access-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.access-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text);
}
.access-item strong {
  color: var(--blue-deep);
}
.access-sub {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  margin-top: 0.1rem;
}
.access-map {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 61, 160, 0.12);
  border: 2px solid rgba(0, 85, 204, 0.15);
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.access-map:hover {
  box-shadow: 0 8px 36px rgba(0, 61, 160, 0.25);
  transform: translateY(-2px);
}
.map-zoom-hint {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: rgba(0, 72, 153, 0.85);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* === Lightbox === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-inner {
  max-width: min(95vw, 900px);
  max-height: 90vh;
  overflow: auto;
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
}
.lightbox-inner img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* === Footer === */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0;
  text-align: center;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.footer-catch {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--round);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.footer-org {
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}
.footer-copy {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
}

/* === Tablet & Desktop === */
@media (min-width: 680px) {
  .about-grid {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .about-text { flex: 1; }
  .about-stats { flex-shrink: 0; }
  .shop-card { width: 300px; }
  .shops-slider-wrap { padding-left: 2.5rem; }
}

@media (min-width: 1024px) {
  .shop-card { width: 320px; }
}
