@charset "UTF-8";
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: url("../img/hero-bg.jpg") no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* ヘッダー分 */
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba($color-primary, 0.6); // 色と透明度を調整
  background: linear-gradient(135deg, rgba($color-primary, 0.7), rgba($color-secondary, 0.7)); // グラデーションも混ぜる*/
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
.hero-title {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}
.hero-title .small {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}
.hero-info {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
.hero-info .small {
  font-size: 1rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.map-container {
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden; /* iframeの角を丸めるため */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block; /* iframe下の余分な隙間をなくす */
}

.venue-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.venue-container .venue-detail {
  width: 48%;
  padding: 40px 20px 0;
}

.entry-card {
  max-width: 800px;
  margin: 0 auto 40px;
  background: #f4f4f9;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
}
.entry-card h3 {
  text-align: center;
  margin-bottom: 30px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
}
.entry-card ul {
  margin-bottom: 20px;
}
.entry-card ul li {
  margin-bottom: 15px;
}
.entry-card ul li ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
}
.entry-card .note {
  font-size: 0.9rem;
  text-align: center;
  opacity: 0.8;
}

.sponsor-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-title .small {
    font-size: 1.2rem;
  }
  .hero-info {
    font-size: 1.2rem;
  }
  .sponsor-links {
    flex-direction: column;
  }
  .sponsor-links .btn {
    width: 80%;
    margin: 0 auto;
  }
  .venue-container {
    width: 100%;
    flex-wrap: wrap;
  }
  .venue-container .venue-detail {
    width: 100%;
    padding: 40px 20px 0;
  }
}/*# sourceMappingURL=uniq.css.map */