/* ヒーローバナーセクション */
.hero-banner {
  padding: 80px 40px 30px;
  min-height: 100px;
}
/* ヒーローバナー関連のスタイル */
.bg-image-banner {
  height: auto;
  background-image: url("../images/backgrounds/venue-bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
  background-color: transparent;
}
/* タイトル */
/* .event-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
} */

.main-wrap {
  padding: 50px;
}
.venue-access {
  margin-top: 50px;
  text-align: center;
}
.venue-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 24px;
}

.venue-gallery img {
  width: 30%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 2px 8px #e0e0e0;
  background: #f8f8f8;
  display: block;
}

@media (max-width: 800px) {
  .venue-gallery {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .venue-gallery img {
    width: 95vw;
    max-width: 340px;
    height: 140px;
  }
}
