/* 店E一覧チEEブル - シンプルな左揁E構造 */
.store-index-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  table-layout: fixed;
}

.store-index-table th,
.store-index-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  text-align: left;
}

.store-index-table th {
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: #f9f9f9;
}

/* 店E名E - 70%幁E*/
.store-index-table th:nth-child(1),
.store-index-table td:nth-child(1) {
  width: 70%;
}

/* ブEス番号刁E- 30%幁E中央揁E */
.store-index-table th:nth-child(2),
.store-index-table td:nth-child(2) {
  width: 30%;
  text-align: center;
}

/* 店E名セル */
.store-index-name-cell {
  font-weight: 600;
  color: var(--color-dark);
}

/* ブEスボタンのコンチE */
.store-index-booths {
  display: block;
}

/* ブEスボタン */
.store-booth-badge {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 6px;
  min-width: 90px;
  white-space: nowrap;
}

/* モバイル対忁E*/
@media (max-width: 767px) {
  .store-index-table th,
  .store-index-table td {
    padding: 10px 8px;
  }
  
  .store-index-table th:nth-child(1),
  .store-index-table td:nth-child(1) {
    width: 60%;
  }
  
  .store-index-table th:nth-child(2),
  .store-index-table td:nth-child(2) {
    width: 40%;
  }
}
/* 店E一覧セクションと注記E余白EETMLとCSSの刁EEE*/
.store-alpha-index {
  margin: 1.5rem 0;
}
.info-note-text {
  margin-bottom: 0.6rem;
}
/* --- モバイルEEチEー固定（スクロール追随！E--- */
@media (max-width: 767px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
}

/* --- モバイル下部固定バー --- */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: var(--color-white);
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
  padding: 8px 12px;
}

.mobile-action-bar .mobile-action {
  flex: 1 1 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  color: var(--color-dark);
  background: transparent;
  border: none;
  text-decoration: none;
  padding: 8px 10px;
}

.mobile-action-bar .mobile-action i {
  font-size: 1.1rem;
  color: var(--color-gold);
}

.mobile-action-bar .mobile-action span {
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 60px; }
}
.shuttle-banner {
  margin: 24px 0 8px;
}

.shuttle-banner-link {
  display: block;
}

.shuttle-banner-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(167, 141, 109, 0.18);
  border: 1px solid rgba(167, 141, 109, 0.15);
}

.shuttle-schedule-image-wrapper {
  display: flex;
  justify-content: center;
  padding: 8px 0 0;
}

.shuttle-schedule-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(167, 141, 109, 0.12);
  border: 1px solid rgba(167, 141, 109, 0.12);
}

@media (max-width: 767px) {
  .shuttle-banner {
    margin: 16px 0 4px;
  }
  .shuttle-schedule-image {
    max-width: 100%;
    border-radius: 8px;
  }
}
.route-link {
  color: var(--color-dark);
  text-decoration: none;
}

.route-link:hover {
  color: var(--color-gold);
  text-decoration: underline;
}
:root {
  --color-dark: #2A2D34;
  --color-white: #FFFFFF;
  --color-gold: #A78D6D;
  --color-primary: #2A2D34;
  --color-secondary: #6B6E76;
  --color-accent: #E38B7B;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --container-width: 1200px;
  --transition: all 0.3s ease;
}

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}

/* ========================================
   ローチEングアニメーション
   ======================================== */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.8s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.6s ease-in-out, transform 8s ease-out;
}

.loading-image.active {
  opacity: 0.7;
  transform: scale(1.15);
}

.loading-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  
  /* 多層シャドウで深みを追加 */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
          drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2))
          drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15))
          drop-shadow(0 0 40px rgba(169, 141, 109, 0.3));
}

.loading-title.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   リセチEEE本スタイル
   ======================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: auto;
}

.bg_pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: -1;
}

.Paper_v2 {
  background: 
    linear-gradient(135deg, #FDFCFB 0%, #F9F7F4 25%, #FFF9F5 50%, #F9F7F4 75%, #FDFCFB 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(167, 141, 109, 0.015) 2px,
      rgba(167, 141, 109, 0.015) 4px
    ),
    linear-gradient(90deg, rgba(167, 141, 109, 0.02) 1px, transparent 1px),
    linear-gradient(rgba(167, 141, 109, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
}

.site-header {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFCFB 100%);
  border-bottom: 2px solid rgba(167, 141, 109, 0.15);
  padding: 24px 0;
  box-shadow: 0 2px 12px rgba(167, 141, 109, 0.08);
  position: relative;
  z-index: 100;
}

.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* ハンバEガーメニューボタン */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* メニューを開ぁE時Eスクロール防止 */
body.menu-open {
  overflow: hidden;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.site-nav a:hover {
  color: var(--color-gold);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(42, 45, 52, 0.85) 0%,
    rgba(42, 45, 52, 0.65) 50%,
    rgba(167, 141, 109, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  width: 100%;
  padding: 40px 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--color-white);
  margin-bottom: 28px;
  line-height: 1.4;
  font-weight: 700;
  text-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.9),
    0 2px 6px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.05em;
}

.hero-title-main {
  display: inline-block;
  white-space: nowrap;
  font-size: 1.25em;
}

/* 出店者募集バナー */
.hero-recruitment {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  padding: 8px 24px;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: 0.2em;
  text-shadow: 
    0 0 20px rgba(167, 141, 109, 1),
    0 0 40px rgba(167, 141, 109, 0.8),
    0 0 60px rgba(167, 141, 109, 0.6),
    3px 3px 8px rgba(0, 0, 0, 0.9),
    -1px -1px 0 rgba(167, 141, 109, 0.9),
    1px -1px 0 rgba(167, 141, 109, 0.9),
    -1px 1px 0 rgba(167, 141, 109, 0.9),
    1px 1px 0 rgba(167, 141, 109, 0.9);
  animation: text-glow 2s ease-in-out infinite;
  text-transform: uppercase;
}

@keyframes text-glow {
  0%, 100% {
    transform: scale(1);
    text-shadow: 
      0 0 20px rgba(167, 141, 109, 1),
      0 0 40px rgba(167, 141, 109, 0.8),
      0 0 60px rgba(167, 141, 109, 0.6),
      3px 3px 8px rgba(0, 0, 0, 0.9),
      -1px -1px 0 rgba(167, 141, 109, 0.9),
      1px -1px 0 rgba(167, 141, 109, 0.9),
      -1px 1px 0 rgba(167, 141, 109, 0.9),
      1px 1px 0 rgba(167, 141, 109, 0.9);
  }
  50% {
    transform: scale(1.08);
    text-shadow: 
      0 0 30px rgba(167, 141, 109, 1),
      0 0 60px rgba(167, 141, 109, 1),
      0 0 90px rgba(167, 141, 109, 0.8),
      4px 4px 12px rgba(0, 0, 0, 1),
      -2px -2px 0 rgba(167, 141, 109, 1),
      2px -2px 0 rgba(167, 141, 109, 1),
      -2px 2px 0 rgba(167, 141, 109, 1),
      2px 2px 0 rgba(167, 141, 109, 1);
  }
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.98);
  line-height: 2;
  max-width: 650px;
  margin: 0 auto 40px;
  text-shadow: 
    0 3px 10px rgba(0, 0, 0, 0.9),
    0 1px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

.hero-event-info {
  margin-bottom: 40px;
}

.hero-event-date {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 10px 0;
  text-shadow: 
    0 3px 10px rgba(0, 0, 0, 0.9),
    0 2px 6px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.08em;
}

.hero-event-time {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.98);
  margin: 0 0 10px 0;
  text-shadow: 
    0 3px 10px rgba(0, 0, 0, 0.9),
    0 1px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.1em;
}

.hero-event-location {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  margin: 0;
  text-shadow: 
    0 3px 10px rgba(0, 0, 0, 0.9),
    0 1px 4px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.08em;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: px 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(167, 141, 109, 0.3), transparent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 600;
}

/* セクションリンク用チEスチE*/
.section-link-text {
  text-align: center;
  margin-top: -15px;
  margin-bottom: 30px;
}

.store-intro-link {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.3s;
  display: inline-block;
  padding: 8px 0;
}

.store-intro-link:hover {
  opacity: 0.7;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
  line-height: 1.8;
}

.content {
  padding: 60px 0;
}

.content-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 32px;
  font-weight: 600;
}

/* メインチEストセクション */
.content-text {
  font-size: 1.05rem;
  color: var(--color-dark);
  line-height: 2.1;
  margin-top: 10px;
  margin-bottom: 50px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.content-text p {
  margin-bottom: 28px;
  color: rgba(42, 45, 52, 0.9);
}

.content-text p:first-child {
  font-size: 1.15rem;
  line-height: 2.3;
  font-weight: 500;
  color: var(--color-dark);
}

.content-text p:last-child {
  margin-bottom: 0;
}

.content-lead {
  font-size: 1.2rem;
  line-height: 2.2;
  color: var(--color-dark);
  margin-bottom: 32px;
  font-weight: 400;
}

.site-footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 48px 0 32px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.5rem;
  opacity: 0.95;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover {
  opacity: 1;
  color: var(--color-gold);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--color-gold), #B89D7D);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(167, 141, 109, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(167, 141, 109, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* 店E一覧の並び替えEタンE白背景に合わせて可視性を調整EE*/
.index-sort-controls .btn-secondary {
  background-color: var(--color-white);
  color: var(--color-dark);
  border-color: rgba(167, 141, 109, 0.5);
  backdrop-filter: none;
  flex: 0 0 160px;
  text-align: center;
  white-space: nowrap; /* ボタンのチEストを一列に保つ */
}

.index-sort-controls .btn-secondary:hover {
  background-color: #f7f5f2;
  border-color: rgba(167, 141, 109, 0.8);
}

.index-sort-controls {
  display: flex;
  gap: 8px;
  margin: 0.6rem 0 1rem;
  justify-content: center;
}

.index-sort-controls .btn-secondary[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--color-gold), #B89D7D);
  color: var(--color-white);
  border-color: transparent;
}

.store-index-mode {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-secondary);
  margin-top: 0.2rem;
}

/* イベント情報セクション */
.event-info-section {
  padding: 3rem 0;
  background: var(--color-white);
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 24px;
}

.event-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(167, 141, 109, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(167, 141, 109, 0.1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), rgba(167, 141, 109, 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(167, 141, 109, 0.2);
}

.event-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

/* 高級感のあるアイコンスタイル */
.card-icon-elegant,
.feature-icon-elegant,
.genre-icon-elegant,
.access-card-icon-elegant {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 252, 251, 0.9));
  box-shadow: 0 4px 16px rgba(167, 141, 109, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon-elegant::before,
.feature-icon-elegant::before,
.genre-icon-elegant::before,
.access-card-icon-elegant::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid rgba(167, 141, 109, 0.25);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .card-icon-elegant,
.feature-card:hover .feature-icon-elegant,
.genre-card:hover .genre-icon-elegant,
.access-card:hover .access-card-icon-elegant {
  transform: scale(1.1);
  border-color: #8B7355;
  box-shadow: 0 8px 20px rgba(167, 141, 109, 0.25);
}

.event-card:hover .card-icon-elegant::before,
.feature-card:hover .feature-icon-elegant::before,
.genre-card:hover .genre-icon-elegant::before,
.access-card:hover .access-card-icon-elegant::before {
  border-color: var(--color-gold);
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.card-content {
  color: var(--color-dark);
  line-height: 1.8;
  text-align: center;
}

.event-date {
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.event-date-large {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.event-times {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(167, 141, 109, 0.2);
}

.event-times p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: rgba(42, 45, 52, 0.8);
}

.venue-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.venue-address {
  font-size: 0.95rem;
  color: rgba(42, 45, 52, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.venue-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-top: 12px;
  border-top: 1px solid rgba(167, 141, 109, 0.2);
}

.venue-link:hover {
  color: #8B7355;
  transform: translateX(4px);
}

/* イベント概要カードE店E数 */
.store-count-event {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.store-categories {
  font-size: 0.95rem;
  color: rgba(42, 45, 52, 0.7);
  line-height: 1.9;
}





.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.store-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFCFB 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(167, 141, 109, 0.1);
  border: 1px solid rgba(167, 141, 109, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(167, 141, 109, 0.15);
  border-color: rgba(167, 141, 109, 0.15);
}

.store-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, #f8f6f3 0%, #ede8e1 100%);
  display: block;
  min-height: 240px;
}

/* 画像がなぁE合Eプレースホルダー */
.store-card-image-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #f8f6f3 0%, #ede8e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

.placeholder-content {
  max-width: 80%;
}

.store-card-body {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
}

.store-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  width: 100%;
}

.store-booth-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(42, 45, 52, 0.7);
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.store-booth-badge:hover {
  background: #1a1d24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 29, 36, 0.4);
}

.store-days-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
}

.store-days-badge.both-days {
  background: linear-gradient(135deg, var(--color-gold), #B89D7D);
}

.store-days-badge.single-day {
  background: linear-gradient(135deg, rgba(167, 141, 109, 0.6), rgba(184, 157, 125, 0.6));
}

/* 店Eリスト用の店E数表示 */
.store-count-list {
  text-align: center;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.no-stores-message {
  text-align: center;
  padding: 60px 20px;
  color: rgba(42, 45, 52, 0.6);
  font-size: 1.1rem;
}

.store-name {
  font-family: 'Crimson Text', serif;
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 12px;
  font-weight: 600;
  width: 100%;
  white-space: pre-line;
}

.store-description {
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  width: 100%;
  white-space: pre-line;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--color-gold);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.instagram-link:hover {
  opacity: 0.85;
}

.instagram-link::before {
  font-family: 'Font Awesome 6 Brands';
  content: '\f16d';
  font-size: 1.1rem;
  font-weight: 400;
}

/* InstagramアカウントなしE場吁E*/
.instagram-link.disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}

.instagram-link.disabled:hover {
  opacity: 0.6;
}

.instagram-link.disabled::before {
  font-family: 'Font Awesome 6 Free';
  content: '\f05e';
  font-size: 1.1rem;
  font-weight: 900;
}

/* フッタースタイルは統合版を使用 */

.event-schedule-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  background: linear-gradient(135deg, #F9F7F4 0%, #FDFCFB 100%);
  position: relative;
}

.event-schedule-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
  text-align: center; /* 中央揁EでおしめEに */
}

.section-divider {
  border: none;
  border-top: 2px solid #ccc; /* 線を少し太ぁE*/
  margin: 15px auto 25px;
  width: 50%; /* 線E幁E短くして中央に配置 */
}

.event-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; /* サイズを少し大きく調整 */
  color: #A78D6D;
  margin-bottom: 10px;
}

.event-date {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #A78D6D;
  text-align: center; /* 中央揁E */
  margin-bottom: 20px;
}

.event-details {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.8;
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-details li {
  margin-bottom: 10px;
  text-align: center; /* 中央揁E */
}

.store-section {
  max-width: 960px;
  margin: 20px auto 50px;
  padding: 20px;
  text-align: center;
}

.genre-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.genre-list li {
  margin-bottom: 15px;
}

.genre-link {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  color: #A78D6D;
  text-decoration: none;
  transition: color 0.3s;
}

.genre-link:hover {
  color: #2A2D34;
}

.genre-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.genre-list li {
  flex: 0 0 auto;
}

.genre-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-white);
  color: var(--color-dark);
  text-decoration: none;
  border: 2px solid var(--color-gold);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.genre-link:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.genre-link.active {
  background-color: var(--color-gold);
  color: var(--color-white);
  cursor: default;
}

/* ジャンルナビゲーション */
.genre-navigation {
  margin: 32px 0 40px;
  padding: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 100%);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(167, 141, 109, 0.08);
}

.genre-nav-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 16px;
  text-align: center;
  font-weight: 600;
}

.info-box {
  background: linear-gradient(135deg, #FDFCFB 0%, #FFFFFF 100%);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
  box-shadow: 0 2px 12px rgba(167, 141, 109, 0.1);
  border: 1px solid rgba(167, 141, 109, 0.08);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.info-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li strong {
  font-weight: 600;
  color: var(--color-gold);
  min-width: 100px;
}

/* アクセス住所リンクE通常は本斁E、EバEでゴールド＋下線！E*/
.access-address-link {
  color: var(--color-dark);
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.access-address-link::after {
  content: '\f3c5'; /* map-marker-alt アイコン相彁E*/
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  margin-left: 6px;
  color: var(--color-gold);
}

.access-address-link:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.venue-map-section {
  margin-top: 64px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.venue-map-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

.clickable-map {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.clickable-map:hover {
  transform: scale(1.02);
  box-shadow: none;
}

/* マップ拡大モーダル */
.map-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.map-modal-content {
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.map-modal-close {
  position: absolute;
  top: 24px;
  right: 36px;
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10000;
}

.map-modal-close:hover {
  color: var(--color-gold);
}

.news-section {
  padding: 20px 0 30px;
  background: var(--color-white);
  position: relative;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.news-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 2px solid rgba(167, 141, 109, 0.2);
  transition: background-color 0.2s ease;
}

.news-item:hover {
  background-color: rgba(167, 141, 109, 0.02);
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  min-width: 120px;
  flex-shrink: 0;
}

.news-title {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 400;
  line-height: 1.8;
  margin-left: 32px;
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(167, 141, 109, 0.3);
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  border-color: var(--color-gold);
  background: rgba(167, 141, 109, 0.05);
}

.pagination-btn.active {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.pagination-btn:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}



.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-methods .info-box {
  margin: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-methods .info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(167, 141, 109, 0.12);
}

/* ペEジヒEロー */
.page-hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-gold), #B89D7D);
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42, 45, 52, 0.3), rgba(167, 141, 109, 0.3));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  width: 100%;
  padding: 60px 20px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
}

.page-hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* About ペEジ */
.about-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--color-dark);
  margin-bottom: 20px;
  opacity: 0.85;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFCFB 100%);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(167, 141, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(167, 141, 109, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(167, 141, 109, 0.15);
}



.feature-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.feature-description {
  font-size: 0.95rem;
  color: rgba(42, 45, 52, 0.7);
  line-height: 1.8;
}

/* Stores ペEジ */
.stores-map-section {
  margin-bottom: 60px;
  text-align: center;
}

.map-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 32px;
  font-weight: 600;
}

.map-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(42, 45, 52, 0.6);
  font-style: italic;
}

.genre-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-dark);
  text-align: center;
  margin: 60px 0 40px;
  font-weight: 600;
}

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .genre-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.genre-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFCFB 100%);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--color-dark);
  box-shadow: 0 4px 16px rgba(167, 141, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(167, 141, 109, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.genre-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(167, 141, 109, 0.2);
  border-color: var(--color-gold);
}



.genre-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.genre-description {
  font-size: 0.9rem;
  color: rgba(42, 45, 52, 0.6);
  margin: 0;
  line-height: 1.6;
}

/* Access ペEジ */
.access-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.access-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFCFB 100%);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(167, 141, 109, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(167, 141, 109, 0.1);
  text-align: center;
}

.access-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(167, 141, 109, 0.15);
}



.access-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 24px;
  font-weight: 600;
}

.access-card-content {
  color: var(--color-dark);
  line-height: 1.8;
}

.access-card-content p {
  margin-bottom: 20px;
}

.access-card-content strong {
  color: var(--color-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

/* お問ぁEわせペEジ */
.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-intro p {
  font-size: 1.05rem;
  color: var(--color-dark);
  line-height: 2;
  opacity: 0.85;
}

.contact-method-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-dark);
  text-align: center;
}

.contact-method-title i {
  color: var(--color-gold);
}

.contact-method-kind {
  text-align: center;
  margin: -10px 0 18px;
  font-size: 0.95rem;
  color: var(--color-dark);
  opacity: 0.75;
  line-height: 1.7;
}

.contact-method-content {
  text-align: center;
}

.contact-method-text {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--color-dark);
  line-height: 2;
  opacity: 0.85;
}

.contact-method-button {
  margin-bottom: 0;
}

.contact-link {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-bottom: 2px solid var(--color-gold);
}

.contact-phone {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none;
  border-bottom: 2px solid var(--color-gold);
}

.contact-info {
  font-size: 0.9rem;
  margin-top: 5px;
  opacity: 0.7;
}

.contact-notes {
  margin-top: 48px;
}

.contact-notes-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--color-dark);
  text-align: center;
}

.contact-notes-list {
  list-style: none;
  padding: 0;
}

.contact-notes-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-notes-list li:last-child {
  border-bottom: none;
}

/* アクセスペEジ */
.access-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.access-wrapper .info-box {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin-bottom: 64px;
}

.access-venue-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0;
  padding-bottom: 24px;
  color: var(--color-dark);
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: 3px solid var(--color-gold);
}

.info-list {
  list-style: none;
  padding: 32px 0 8px;
  margin: 0;
}

.info-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1.05rem;
  line-height: 1.8;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list strong {
  display: inline-block;
  min-width: 100px;
  color: var(--color-gold);
  font-weight: 600;
  margin-right: 16px;
}

.access-transport {
  margin-top: 64px;
  border: none;
  padding-top: 0;
}

.access-transport .content-text {
  text-align: left;
}

.access-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0;
  padding-bottom: 24px;
  color: var(--color-dark);
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: 3px solid var(--color-gold);
}

.transport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 0 8px;
}

.transport-card {
  background: transparent;
  border-radius: 0;
  padding: 32px 0;
  box-shadow: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid rgba(167, 141, 109, 0.15);
}

.transport-card:last-child {
  border-bottom: none;
}

.transport-card:hover {
  transform: none;
  background: rgba(167, 141, 109, 0.03);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
}

.transport-header {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.transport-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.5rem;
  transition: all 0.4s ease;
}

.train-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.bus-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.car-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.transport-card:hover .transport-icon {
  transform: scale(1.1) rotate(5deg);
}

.transport-content {
  flex: 1;
}

.transport-body {
  width: 100%;
  padding-left: 16px;
}

.transport-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.transport-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transport-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.8;
  color: rgba(42, 45, 52, 0.85);
  font-size: 0.95rem;
}

.transport-list li::before {
  content: '▸';
  position: absolute;
  left: 8px;
  color: var(--color-gold);
  font-weight: bold;
}

.shuttle-info {
  display: block; /* 他Eliと同じ表示に揁EめE*/
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-top: 8px;
}

/* シャトル案Eの頁Eは先頭アイコンを消して左詰めE*/
/* シャトル頁Eも他と同様に箁E書き（E頭アイコン・左余白Eを適用 */

.shuttle-route {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.map-pin-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.map-pin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(167, 141, 109, 0.35);
  background: rgba(167, 141, 109, 0.08);
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.map-pin-link:hover {
  background: rgba(167, 141, 109, 0.14);
}

.route-label {
  font-weight: 600;
  color: rgba(42, 45, 52, 0.85);
}

.inline-pin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  text-decoration: none;
  margin-left: 6px;
}

.inline-pin-link:hover {
  opacity: 0.75;
}

.shuttle-note {
  color: rgba(42, 45, 52, 0.85);
}

.shuttle-badge {
  display: inline-block;
  background: var(--color-gold);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.shuttle-link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.shuttle-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.shuttle-schedule-section {
  margin-top: 64px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.shuttle-schedule-section .access-section-title {
  margin-bottom: 0;
  padding-bottom: 24px;
  text-align: center;
  border-bottom: 3px solid var(--color-gold);
}

.shuttle-notice {
  text-align: center;
  padding: 32px;
  margin: 32px 0 8px;
  background: rgba(167, 141, 109, 0.1);
  border-radius: 12px;
  border: 2px dashed var(--color-gold);
}

.shuttle-notice p {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.8;
}

.access-list {
  margin-left: 20px;
  margin-bottom: 24px;
}

.access-list:last-child {
  margin-bottom: 0;
}

.venue-map-section {
  margin-top: 64px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.venue-map-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0;
  padding-bottom: 24px;
  color: var(--color-dark);
  text-align: left;
  letter-spacing: 0.05em;
  border-bottom: 3px solid var(--color-gold);
}

.map-container {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 32px 0 8px;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: none;
}

.dual-map-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.map-item {
  display: flex;
  flex-direction: column;
}

.map-area-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.map-click-hint {
  text-align: center;
  margin-top: 12px;
  opacity: 0.6;
  font-size: 0.9rem;
}

.map-click-hint a {
  color: var(--color-gold);
  text-decoration: underline;
}

.map-click-hint a:hover {
  opacity: 0.85;
}

/* aboutペEジ */
.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.about-features {
  margin-top: 80px;
  margin-bottom: 64px;
}

.about-features-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 56px;
  color: var(--color-dark);
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 24px;
}

.about-features-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-gold);
}

/* 見どころセクション */
.features-list {
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* 左側配置E画像左、テキスト右EE*/
.feature-left {
  grid-template-areas: "number image content";
}

.feature-left .feature-number-large {
  grid-area: number;
}

.feature-left .feature-image-side {
  grid-area: image;
}

.feature-left .feature-content-side {
  grid-area: content;
}

/* 右側配置Eテキスト左、画像右EE*/
.feature-right {
  grid-template-areas: "number content image";
}

.feature-right .feature-number-large {
  grid-area: number;
}

.feature-right .feature-image-side {
  grid-area: image;
}

.feature-right .feature-content-side {
  grid-area: content;
}

.feature-number-large {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  text-align: center;
  background: linear-gradient(135deg, var(--color-gold) 0%, #8B7355 100%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(167, 141, 109, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-number-large:hover {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(167, 141, 109, 0.5);
}

.feature-image-side {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-img {
  transform: scale(1.05);
}

.feature-content-side {
  padding: 20px 0;
}

.feature-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}

.feature-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-heading::after {
  width: 100%;
}

.feature-desc {
  font-size: 1.05rem;
  line-height: 2.1;
  color: rgba(42, 45, 52, 0.8);
  margin: 0;
}

.about-past-events {
  margin-top: 64px;
}

.about-past-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 32px;
  text-align: center;
  color: var(--color-dark);
}

.about-past-description {
  text-align: center;
  opacity: 0.7;
  font-size: 1.05rem;
  color: var(--color-dark);
  line-height: 2;
}

.about-instagram-button {
  text-align: center;
  margin-top: 32px;
}

/* 店E紹介Eージ */
.venue-info-note {
  margin: 24px auto 40px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #FDFCFB 0%, #FFFFFF 100%);
  border-radius: 12px;
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 2px 12px rgba(167, 141, 109, 0.1);
  max-width: 800px;
}

.info-note-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-dark);
  margin: 0;
  text-align: center;
}

.info-link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--color-gold);
  transition: all 0.3s ease;
}

.info-link:hover {
  color: #8B7355;
  border-bottom-color: #8B7355;
}

/* 注目店Eスライダー */
.featured-stores-section {
  margin-bottom: 40px;
  padding: 30px 0;
  background: linear-gradient(135deg, #FDFCFB 0%, #FFFFFF 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(167, 141, 109, 0.1);
}

.featured-section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.featured-section-subtitle {
  text-align: center;
  color: rgba(42, 45, 52, 0.7);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.featured-slider {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 50px;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-store-card {
  flex: 0 0 100%;
  min-width: 100%;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(167, 141, 109, 0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(167, 141, 109, 0.1);
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(167, 141, 109, 0.2);
}

.slider-card-genre {
  background: linear-gradient(135deg, var(--color-gold), #B89D7D);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.slider-card-header {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 1;
}

.slider-booth-badge {
  background: rgba(42, 45, 52, 0.7);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.slider-booth-badge:hover {
  background: #1a1d24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 29, 36, 0.4);
}

.slider-card-image {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #f8f6f3 0%, #ede8e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid rgba(167, 141, 109, 0.15);
  position: relative;
}

.slider-card-body {
  padding: 16px;
  text-align: center;
}

.slider-store-name {
  font-family: 'Crimson Text', serif;
  font-size: 1.6rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  font-weight: 600;
  white-space: pre-line;
}

.slider-store-description {
  font-size: 1rem;
  color: rgba(42, 45, 52, 0.7);
  line-height: 1.7;
  margin-bottom: 18px;
  min-height: auto;
  white-space: pre-line;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slider-card-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-instagram-link,
.slider-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.slider-instagram-link {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.slider-instagram-link:hover {
  background-color: #8B7355;
  transform: translateY(-2px);
}

.slider-detail-link {
  display: none;
}

.slider-detail-link:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-gold), #B89D7D);
  border: none;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(167, 141, 109, 0.3);
}

.slider-btn:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(167, 141, 109, 0.4);
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(167, 141, 109, 0.4);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

.slider-btn span {
  line-height: 1;
  margin-top: -4px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

/* ==============================
   惁Eバナースライダーセクション
   ============================== */
.info-banner-section {
  background: var(--color-white);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.banner-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.banner-slider-container {
  width: 100%;
}

.banner-slider-track {
  display: flex;
  gap: 1.25rem;
}

.banner-slide {
  width: calc(50% - 0.625rem);
  flex-shrink: 0;
  aspect-ratio: var(--banner-aspect, 2 / 1);
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.banner-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

/* レスポンシブ対忁E*/
@media (max-width: 768px) {
  .info-banner-section {
    padding: 12px 0;
  }
  
  .banner-slider-wrapper {
    max-width: 100%;
    padding: 0;
  }
  
  .banner-slider-container {
    overflow: hidden;
  }
  
  .banner-slider-track {
    gap: 0;
    transition: transform 0.5s ease;
  }
  
  .banner-slide {
    width: 100%;
    aspect-ratio: var(--banner-aspect, 2 / 1);
  }
  
  .banner-slide img {
    height: 100%;
    object-fit: contain;
  }
}

/* ==============================
   お知らせセクション
   ============================== */
.news-section {
  background: linear-gradient(135deg, #f5f0eb 0%, #faf8f6 100%);
  padding: 2rem 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: 12px;
  border-left: 4px solid var(--color-gold);
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-date {
  font-size: 0.85rem;
  color: var(--color-secondary);
  min-width: 100px;
  font-weight: 500;
}

.news-category {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

.news-important {
  background: #ffe4e4;
  color: #d32f2f;
}

.news-info {
  background: #e3f2fd;
  color: #1976d2;
}

.news-event {
  background: #f3e5f5;
  color: #7b1fa2;
}

.news-link {
  color: var(--color-primary);
  text-decoration: none;
  flex: 1;
  transition: color 0.3s ease;
}

.news-link:hover {
  color: var(--color-gold);
}

/* ==============================
   フッター
   ============================== */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-gold);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-social {
  margin-bottom: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.social-link i {
  font-size: 1.25rem;
}

.footer-info {
  margin-top: 1rem;
}

.footer-info p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-info strong {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ==============================
   出店カチEリー惁Eセクション
   ============================== */
.shops-section {
  background: linear-gradient(135deg, #f5f0eb 0%, #faf8f6 100%);
  padding: 3rem 0;
}

.shop-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.shop-category-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.shop-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.shop-category-card:hover::before {
  transform: scaleX(1);
}

.shop-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.shop-category-card:hover .shop-category-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(167, 141, 109, 0.3);
}

.shop-category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), #8B7355);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(167, 141, 109, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure icons inside circular containers are perfectly centered */
.shop-category-icon > i {
  display: block;
  line-height: 1;
  font-size: 1.75rem;
  width: auto;
  height: auto;
}

.shop-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  text-align: center;
}

.shop-category-description {
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  text-align: center;
}

.shop-category-arrow {
  font-size: 1.5rem;
  color: var(--color-accent);
  display: block;
  transition: var(--transition);
  text-align: center;
}

.shop-category-card:hover .shop-category-arrow {
  transform: translateX(4px);
}

/* ==============================
   レスポンシブ対忁E
   ============================== */
@media (max-width: 768px) {
  .banner-card {
    min-width: 220px;
  }
  
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .news-date {
    min-width: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fuwafuwa-section {
    padding: 2.5rem 0;
  }

  .fuwafuwa-media {
    max-width: 92%;
    padding: 14px;
  }
}

/* ==============================
   セクション区刁Eスタイル
   ============================== */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(167, 141, 109, 0.2);
  position: relative;
}

.section-title-wrapper::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 2px;
}

.venue-map-section-index {
  background: var(--color-white);
  padding: 3rem 0;
}

.fuwafuwa-section {
  background: var(--color-white);
  padding: 3rem 0;
}

.fuwafuwa-media {
  max-width: 900px;
  margin: 24px auto 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(167, 141, 109, 0.25);
  box-shadow: 0 8px 20px rgba(42, 45, 52, 0.08);
}

.fuwafuwa-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(42, 45, 52, 0.1);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(167, 141, 109, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background-color: rgba(167, 141, 109, 0.6);
}

.slider-dot.active {
  background-color: var(--color-gold);
  width: 32px;
  border-radius: 6px;
}

/* ジャンルペEジ */
.genre-back-button {
  margin-top: 48px;
  text-align: center;
}

/* レスポンシブデザイン */

/* タブレチEEE68pxEE023pxEE*/
@media (max-width: 1023px) {
  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  /* ハンバEガーメニューを表示 */
  .hamburger-menu {
    display: flex;
  }

  /* ナビゲーションメニュー */
  .site-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #FDFCFB 100%);
    flex-direction: column;
    padding: 80px 40px 40px;
    gap: 24px;
    box-shadow: 4px 0 20px rgba(167, 141, 109, 0.15);
    transition: left 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .site-nav.active {
    left: 0;
  }

  .site-nav a {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(167, 141, 109, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    min-height: 55vh;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .stores-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
  }

  .genre-list {
    gap: 12px;
  }

  .genre-link {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* スマEトフォンEａE67pxEE*/
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.7;
  }

  .container {
    padding: 0 14px;
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }

  /* ハンバEガーメニューを表示 */
  .hamburger-menu {
    display: flex;
  }

  /* ナビゲーションメニュー */
  .site-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #FDFCFB 100%);
    flex-direction: column;
    padding: 70px 24px 32px;
    gap: 16px;
    box-shadow: 4px 0 20px rgba(167, 141, 109, 0.15);
    transition: left 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .site-nav.active {
    left: 0;
  }

  .site-nav a {
    font-size: 0.9rem;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid rgba(167, 141, 109, 0.1);
    white-space: nowrap;
  }

  .site-nav a::after {
    display: none;
  }

  .site-title {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-left: 16px;
  }

  /* ヒEローセクション */
  .hero {
    min-height: 50vh;
    padding: 16px 12px;
  }

  .hero-title {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
  }

  .hero-title-main {
    white-space: nowrap;
    font-size: 1.1em;
    letter-spacing: 0.02em;
  }

  .hero-recruitment {
    font-size: 1.6rem;
    padding: 6px 16px;
    margin-bottom: 24px;
    letter-spacing: 0.15em;
  }

  .hero-description {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 28px;
  }

  .hero-event-info {
    margin-bottom: 32px;
  }

  .hero-event-date {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }

  .hero-event-time {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }

  .hero-event-location {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  /* イベントカーチE*/
  .event-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-card {
    padding: 20px 14px;
  }

  .card-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .event-date-large {
    font-size: 1rem;
  }

  /* イベント概要カードE店E数Eレスポンシブ！E*/
  .store-count-event {
    font-size: 1.8rem;
    font-weight: 600;
  }

  /* ニュースグリチE */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-card {
    padding: 16px 14px;
  }

  .news-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 10px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* セクション */
  .section {
    padding: 24px 0;
  }

  .section-title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .section-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 16px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* 開催日程セクション */
  .event-schedule-section {
    padding: 40px 14px;
  }

  .event-date {
    font-size: 1.3rem;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .event-details {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .event-details li {
    margin-bottom: 8px;
  }

  /* ニュースセクション */
  .news-section {
    padding: 20px 0 30px;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px;
  }

  .news-date {
    min-width: auto;
    font-size: 0.85rem;
  }

  .news-title {
    font-size: 0.95rem;
    margin-left: 0;
    line-height: 1.7;
  }

  .news-pagination {
    margin-top: 20px;
  }

  .pagination-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  /* ペEジヒEロー */
  .page-hero {
    min-height: 28vh;
  }

  .page-hero-title {
    font-size: 2.2rem;
    white-space: nowrap;
  }

  .page-hero-subtitle {
    font-size: 1.1rem;
  }

  /* フィーチャーカーチE*/
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }



  .feature-icon-elegant,
  .card-icon-elegant,
  .genre-icon-elegant,
  .access-card-icon-elegant {
    width: 70px;
    height: 70px;
    font-size: 1rem;
    margin-bottom: 16px;
  }

  /* ジャンルカーチE*/
  .genre-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }



  /* アクセスカーチE*/
  .access-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 店EカーチE*/
  .stores-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .store-card {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    height: auto !important;
  }

  .store-card-image,
  .store-card img {
    width: 100% !important;
    height: 170px !important;
    min-height: 170px !important;
    max-height: 170px !important;
    object-fit: cover !important;
    display: block !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, #f8f6f3 0%, #ede8e1 100%) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .store-card-image-placeholder {
    width: 100% !important;
    height: 170px !important;
    min-height: 170px !important;
  }

  .store-card-body {
    padding: 16px !important;
    min-height: auto !important;
    flex: 1 !important;
  }

  .store-name {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .store-description {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    min-height: auto;
    white-space: pre-line;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* スマE版でも改行コーチE\n)を確実に反映させめE*/
  .slider-store-description {
    white-space: pre-line;
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: initial;
  }

  /* ジャンルリスチE*/
  .genre-list {
    gap: 12px;
  }

  .genre-link {
    padding: 12px 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  /* ジャンルナビゲーションEモバイルEE*/
  .genre-navigation {
    margin: 20px 0 28px;
    padding: 14px;
  }

  .genre-nav-label {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  /* Info Box */
  .info-box {
    padding: 16px 14px;
    margin: 20px 0;
  }

  .info-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
    line-height: 1.7;
  }

  .info-list li strong {
    min-width: auto;
    display: block;
  }

  /* アクセスペEジ */
  .access-venue-title,
  .access-section-title {
    font-size: 1.5rem;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .venue-map-title {
    font-size: 1.5rem;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .venue-map-section {
    padding: 0;
  }

  .venue-map-image {
    max-width: 100%;
  }

  /* AboutペEジ */
  .about-wrapper {
    max-width: 100%;
  }

  .about-features {
    margin-top: 56px;
    margin-bottom: 48px;
  }

  .about-features-title {
    font-size: 1.7rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
  }

  .about-features-title::after {
    width: 50px;
  }

  .features-list {
    max-width: 100%;
  }

  .feature-item {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "number"
      "image"
      "content" !important;
    gap: 20px;
    margin-bottom: 6px;
  }

  .feature-number-large {
    font-size: 3.5rem;
    text-align: left;
    padding-left: 8px;
  }

  .feature-image-side {
    height: 220px;
  }

  .feature-content-side {
    padding: 0;
  }

  .feature-heading {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .feature-desc {
    font-size: 1rem;
    line-height: 2;
  }

  .about-past-title {
    font-size: 1.6rem;
  }

  .content-text {
    font-size: 1rem;
    line-height: 1.85;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .content-text p:first-child {
    font-size: 1.05rem;
    line-height: 2;
  }

  .content-lead {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  /* お問ぁEわせペEジ */
  .contact-method-title {
    font-size: 1.3rem;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .contact-notes-title {
    font-size: 1.3rem;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .contact-phone {
    font-size: 1.2rem;
  }

  .contact-link {
    font-size: 1rem;
  }

  /* ボタン */
  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
  }

  /* フッター */
  .site-footer {
    padding: 28px 0 20px;
    margin-top: 40px;
  }

  .footer-social a {
    font-size: 1.3rem;
  }

  .footer-text {
    font-size: 0.85rem;
  }

  /* マップモーダル */
  .map-modal-close {
    top: 16px;
    right: 16px;
    font-size: 36px;
  }

  .map-modal-content {
    max-width: 98%;
    max-height: 98%;
  }

  /* 会場マッチE*/
  .stores-map-section {
    margin-bottom: 32px;
  }

  .map-click-hint {
    font-size: 0.85rem;
  }
  
  /* 注目店Eスライダー */
  .featured-stores-section {
    padding: 28px 14px;
    margin-bottom: 32px;
  }
  
  .featured-section-title {
    font-size: 1.7rem;
  }
  
  .featured-section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  /* 会場案E */
  .venue-info-note {
    margin: 12px auto 20px;
    padding: 14px 12px;
  }
  
  .info-note-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .featured-slider {
    padding: 0;
    max-width: 100%;
  }
  
  .slider-btn {
    display: none;
  }
  
  .slider-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-padding: 0;
    padding: 0;
  }
  
  .slider-container::-webkit-scrollbar {
    display: none;
  }
  
  .slider-track {
    display: flex;
    gap: 0;
  }
  
  .slider-store-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
  }
  
  .slider-card-image {
    height: 300px;
    font-size: 1rem;
  }
  
  .slider-card-body {
    padding: 18px;
  }
  
  .slider-store-name {
    font-size: 1.3rem;
  }
  
  .slider-store-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .slider-card-body {
    padding: 18px;
  }
  
  .slider-store-name {
    font-size: 1.3rem;
  }
  
  .slider-store-description {
    font-size: 0.95rem;
    min-height: auto;
  }
  
  .slider-card-links {
    flex-direction: column;
  }
  
  .slider-instagram-link,
  .slider-detail-link {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
  }
  
  .slider-dots {
    gap: 8px;
    margin-top: 24px;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  }
  
  .slider-dot.active {
    width: 24px;
  }

  /* アクセスペEジ - 公共交通機関 */
  .access-wrapper .info-box {
    padding: 0;
    margin-bottom: 48px;
  }

  .access-venue-title {
    font-size: 1.6rem;
    padding-bottom: 16px;
  }

  .info-list {
    padding: 24px 0 8px;
  }

  .info-list li {
    font-size: 0.95rem;
    padding: 12px 0;
  }

  .info-list strong {
    display: block;
    margin-bottom: 4px;
    min-width: auto;
  }

  .access-transport {
    margin-top: 48px;
    padding-top: 0;
  }

  .access-section-title {
    font-size: 1.6rem;
    padding-bottom: 16px;
  }

  .transport-grid {
    gap: 0;
    padding: 24px 0 8px;
  }

  .transport-card {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .transport-card:hover {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .transport-icon {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }

  .transport-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  /* スマEで本斁EE左余白を詰めるE折り返し改喁EE*/
  .transport-body {
    padding-left: 0;
  }

  .map-pin-link {
    font-size: 0.85rem;
    padding: 4px 10px;
  }

  .transport-list li {
    font-size: 0.9rem;
    padding: 10px 0;
    padding-left: 28px; /* 疑似要素のアイコン刁EE余白を確俁E*/
  }

  .shuttle-schedule-section {
    padding: 0;
    margin-top: 48px;
  }

  .shuttle-schedule-section .access-section-title {
    font-size: 1.6rem;
    padding-bottom: 16px;
  }

  .shuttle-notice {
    padding: 24px;
    margin: 24px 0 8px;
  }

  .shuttle-notice p {
    font-size: 1rem;
  }

  .venue-map-section {
    padding: 0;
  }

  .venue-map-title {
    font-size: 1.6rem;
    padding-bottom: 16px;
  }

  .map-container {
    padding: 24px 0 8px;
  }

  .dual-map-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-area-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}

/* 小型スマEトフォンEａE74pxEE*/
@media (max-width: 374px) {
  .site-title {
    font-size: 1.4rem;
    font-weight: 600;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    font-size: 0.75rem;
    font-weight: 400;
  }

  .hero-title {
    font-size: 1.2rem;
    font-weight: 600;
  }

  .hero-title-main {
    font-size: 1.15em;
    white-space: nowrap;
  }

  .hero-recruitment {
    font-size: 1.2rem;
    padding: 4px 12px;
    margin-bottom: 16px;
    letter-spacing: 0.12em;
  }

  .hero-description {
    font-size: 0.85rem;
    font-weight: 400;
  }

  .section-title {
    font-size: 1.4rem;
    font-weight: 600;
  }

  .btn-primary,
  .btn-secondary {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
  }
  
  /* 注目店Eスライダー */
  .featured-slider {
    padding: 0;
  }
  
  .slider-btn {
    display: none;
  }
  
  .slider-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-padding: 0;
    padding: 0;
  }
  
  .slider-container::-webkit-scrollbar {
    display: none;
  }
  
  .slider-track {
    display: flex;
    gap: 0;
  }
  
  .slider-store-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
  }
  
  .slider-card-image {
    height: 260px;
  }

  /* チEスト量を少し抑えて全体高さが伸びすぎなぁEぁEする */
  .slider-store-description {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .slider-card-body {
    padding: 16px;
  }
  
  .slider-store-name {
    font-size: 1.2rem;
  }
  
  .slider-store-description {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .slider-store-description {
    font-size: 0.9rem;
  }
}

/* ========================================
   スクロールアニメーション
   ======================================== */

/* 店EカードEベEススタイル */
.store-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease;
}

/* スクロールアニメーション用E汎用EE*/
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ホバー時Eエレガントな効极E*/
.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(167, 141, 109, 0.25);
}

.store-card.is-visible:hover {
  transform: translateY(-8px);
}

/* ========================================
   開催レポEトEギャラリーEEOPペEジEE
   ======================================== */

.report-section {
  padding: 50px 0;
}

.report-body {
  margin: 18px auto 44px;
  max-width: 820px;
}

.report-lead {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.report-text {
  margin: 0 0 18px;
  color: rgba(42, 45, 52, 0.9);
  line-height: 2;
}

.report-points {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.report-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(42, 45, 52, 0.92);
}

.report-points li::before {
  content: "•";
  color: var(--color-gold);
  line-height: 1;
  transform: translateY(0.2em);
}

.report-gallery-title {
  margin-top: 42px;
}

.section-title.section-title--small {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}

.gallery-grid {
  margin-top: 26px;
  column-count: 3;
  column-gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(42, 45, 52, 0.04);
  box-shadow: 0 10px 26px rgba(42, 45, 52, 0.10);
  border: 1px solid rgba(167, 141, 109, 0.18);
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  backface-visibility: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 45, 52, 0) 40%,
    rgba(42, 45, 52, 0.18) 100%
  );
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s ease;
  backface-visibility: hidden;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 0.35;
}

/* 次回予告 */
.next-event-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgba(167, 141, 109, 0.06) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-top: 1px solid rgba(167, 141, 109, 0.16);
  border-bottom: 1px solid rgba(167, 141, 109, 0.16);
}

.next-event-card {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(167, 141, 109, 0.28);
  border-radius: 18px;
  padding: 56px 40px;
  box-shadow: 0 18px 46px rgba(42, 45, 52, 0.10);
}

.next-tag {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.next-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.25;
  margin: 0 0 18px;
}

.next-details {
  display: grid;
  gap: 14px;
  margin: 26px 0 22px;
  font-size: 1.1rem;
}

.next-detail-item {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  color: rgba(42, 45, 52, 0.92);
}

.next-detail-item .venue-link {
  color: var(--color-gold);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.next-detail-item .venue-link:hover {
  opacity: 0.7;
}

.next-detail-icon {
  color: var(--color-gold);
}

.next-note {
  margin-top: 10px;
  color: rgba(42, 45, 52, 0.78);
}

.next-instagram-btn {
  margin-top: 18px;
}

@media (max-width: 767px) {
  .report-section {
    padding:40px 0;
  }

  .report-body {
    margin-bottom: 34px;
  }

  .gallery-grid {
    column-count: 1;
    column-gap: 10px;
  }

  .next-event-section {
    padding: 35px 0;
  }

  .next-event-card {
    padding: 44px 20px;
  }
}

@media (max-width: 1023px) {
  .gallery-grid {
    column-count: 2;
  }
}

/* ========================================
   レスポンシブ対忁E
   ======================================== */

@media (max-width: 768px) {
  /* セクションタイトル */
  .section-title-wrapper {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }

  .section-title-wrapper::after {
    width: 40px;
    bottom: -6px;
  }

  /* フッター */
  .site-footer {
    padding: 2rem 0 1rem;
    margin-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }

  /* スマEではイベント情報とカチEリーセクションを非表示 */
  .footer-section:nth-child(2),
  .footer-section:nth-child(3) {
    display: none;
  }

  .footer-section {
    text-align: center;
    padding: 0;
  }

  .footer-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer-links {
    display: none;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .footer-info {
    text-align: center;
    margin-top: 0.75rem;
  }

  .footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
  }

  .footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}

/* =========================
   Venue Map Page
========================= */

.venue-map-page-section {
  padding: 70px 0;
}

.venue-map-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.venue-map-image-area {
  min-width: 0;
}

.map-container {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(167, 141, 109, 0.25);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(42, 45, 52, 0.08);
  touch-action: manipulation; /* モバイルでのタチEE応答性を改喁E*/
}

.venue-map-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.venue-map-hint {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: rgba(42, 45, 52, 0.75);
  line-height: 1.7;
}

/* 検索オートコンプリート（会場マップ上部検索EE*/
.venue-map-search-top { position: relative; }
.store-autocomplete {
  display: none;
  width: 100%;
  max-width: 520px;
  margin: 6px auto 0;
  background: var(--color-white);
  border: 1px solid rgba(167, 141, 109, 0.35);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(42, 45, 52, 0.12);
  overflow: hidden;
  z-index: 10;
}
.store-autocomplete-item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 10px 12px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--color-dark);
  cursor: pointer;
}
.store-autocomplete-item:hover,
.store-autocomplete-item:focus {
  background: rgba(167, 141, 109, 0.08);
}
@media (max-width: 767px) {
  .store-autocomplete { max-height: 260px; overflow-y: auto; }
}

/* モバイル端末での入力フォーカス時E自動ズーム防止EEOS Safari対策！E*/
@media (max-width: 767px) {
  .venue-map-search-input {
    font-size: 16px; /* 16px以上でズーム抑制 */
  }
}

.map-highlight {
  position: absolute;
  display: none;
  border: 4px solid #d64545;
  border-radius: 4px;
  background: rgba(214, 69, 69, 0.25);
  box-shadow: 0 0 0 6px rgba(214, 69, 69, 0.3), 0 0 20px rgba(214, 69, 69, 0.4);
  pointer-events: none;
  animation: mapHighlightPulse 1.2s ease-in-out infinite;
  z-index: 10;
}

@keyframes mapHighlightPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(214, 69, 69, 0.3), 0 0 20px rgba(214, 69, 69, 0.4);
    border-color: #d64545;
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(214, 69, 69, 0.4), 0 0 30px rgba(214, 69, 69, 0.6);
    border-color: #ff5555;
  }
}

.venue-map-panel {
  position: sticky;
  top: 96px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(167, 141, 109, 0.25);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(42, 45, 52, 0.08);
}

.venue-map-empty {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed rgba(167, 141, 109, 0.55);
  border-radius: 12px;
  color: rgba(42, 45, 52, 0.8);
  background: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

@media (max-width: 1023px) {
  .venue-map-layout {
    grid-template-columns: 1fr;
  }
  .venue-map-panel {
    position: static;
  }
}

@media (max-width: 767px) {
  .venue-map-page-section {
    padding: 54px 0;
  }
  .map-container,
  .venue-map-panel {
    padding: 12px;
    border-radius: 12px;
  }
  /* スマEではサイドパネルを非表示Eモーダルで表示EE*/
  .venue-map-panel {
    display: none;
  }
}

/* ===========================
/* ===========================
   Xt]~i0]~f|X]~|]~]~k0;S[0]~i0h00
   =========================== */
.venue-map-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.venue-map-modal[aria-hidden="false"] {
  display: flex;
}

.venue-map-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 45, 52, 0.75);
  backdrop-filter: blur(4px);
  animation: venueModalFadeIn 0.25s ease-out;
}

.venue-map-modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 65vh;
  background: var(--color-white);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 32px rgba(42, 45, 52, 0.25);
  display: flex;
  flex-direction: column;
  animation: venueModalSlideUp 0.3s ease-out;
  overflow: hidden;
}

@keyframes venueModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes venueModalSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.venue-map-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(167, 141, 109, 0.2);
  flex-shrink: 0;
}

.venue-map-modal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.venue-map-modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 141, 109, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.venue-map-modal-close:hover {
  background: rgba(167, 141, 109, 0.2);
  transform: scale(1.05);
}

.venue-map-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  -webkit-overflow-scrolling: touch;
}

.venue-map-modal-body .stores-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.venue-map-modal-body .store-card {
  margin: 0;
}

.venue-map-modal-body .store-card-image {
  max-height: 180px;
  object-fit: cover;
}

.venue-map-modal-body .store-count-list {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(42, 45, 52, 0.8);
}

/* PC/g~]~`]~00:~g:~o]~b]~|]~]~kg~^dfhIz */
@media (min-width: 768px) {
  .venue-map-modal {
    display: none !important;
  }
}

/* =================================
   トップ：終了レポート（記事風）
   ================================= */

.report-article {
  max-width: 840px; /* 少し幅を狭めて読みやすく */
  margin: 0 auto;
}

.report-block {
  margin-top: 48px;
}

.report-block:first-child {
  margin-top: 0;
}

.report-heading {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0 0 16px;
  border-bottom: 1px solid rgba(167, 141, 109, 0.2);
  padding-bottom: 8px;
  display: inline-block;
}

.report-text {
  color: var(--color-dark);
  line-height: 2;
  margin: 0 0 16px;
  font-size: 1rem;
}

.report-block--closing {
  margin-top: 64px;
  text-align: center;
}

.report-block--closing .report-heading {
  border-bottom: none;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

/* PCではテキストと画像を横並び（空の様子など） */
@media (min-width: 768px) {
  .report-row-layout {
    display: flex;
    align-items: flex-start;
    gap: 48px;
  }
  .report-row-text {
    flex: 1;
  }
  .report-row-media {
    flex: 1;
    max-width: 45%; /* 画像エリア幅制限 */
  }
  .report-row-media .gallery-item {
    margin: 0;
    box-shadow: 0 12px 32px rgba(42, 45, 52, 0.12);
  }
}

/* 複数枚グリッド */
.report-gallery-grid {
  display: grid;
  gap: 16px; /* ギャップ調整 */
  margin-top: 24px;
}

.report-gallery-grid .gallery-item {
  margin: 0;
  break-inside: avoid;
  backface-visibility: hidden;
  height: 100%; 
  box-shadow: 0 8px 24px rgba(42, 45, 52, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.report-gallery-grid .gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(167, 141, 109, 0.18);
}

.report-gallery-grid .gallery-img {
  width: 100%;
  height: 200px; /* 高さ縮小 (240px -> 200px) */
  object-fit: cover;
  display: block;
}

/* 列数制御（PC） */
@media (min-width: 768px) {
  .report-gallery-grid[data-layout="3-col"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .report-gallery-grid[data-layout="2-col"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ・タブレットのレスポンシブ */
@media (max-width: 767px) {
  .report-block {
    margin-top: 24px;
  }
  
  .report-heading {
    font-size: 1.25rem;
    margin-bottom: 12px;
    border-bottom-width: 1px;
    width: 100%;
    display: block;
  }

  .report-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .report-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
  }
  
  .report-gallery-grid .gallery-img {
    height: 130px; /* 高さ縮小 (150px -> 130px) */
  }

  /* スマホは縦積み */
  .report-row-layout {
    display: block;
  }
  .report-row-media {
    margin-top: 20px;
    max-width: 100%;
  }
  
  .report-block--closing {
    margin-top: 32px;
  }
}
