@charset "UTF-8";
/* ==========================================================================
   Variables - 変数（ここを変えれば一気に変わります）
   ========================================================================== */
/* ==========================================================================
   共通設定 - 各セクションのクラスに適用
   ========================================================================== */
.matching-container,
.featured-events,
.activity-report-section,
.bc-stats-section,
.user-voice-section,
.double-cta-section,
.news-section,
.shop-connect-section,
.search-nav-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   各セクションごとのスタイル（入れ子構造で整理）
   ========================================================================== */
.hero-section {
  background-color: #FFD700;
}
.hero-section .hero-overlay {
  opacity: 0.65;
  z-index: 2;
}
.hero-section .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.search-panel {
  max-width: 800px;
  margin: 0 auto;
}
.search-panel .tab-item {
  border-radius: 12px 12px 0 0;
}
.search-panel .tab-item.active {
  background: #fff;
  color: #0033ff;
}
.search-panel .tab-item.active::after { /* 三角の突起 */
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.search-panel .search-form {
  background: #fff;
  border-radius: 12px;
  padding: 8px;
}

.news-ticker-section {
  background: #1A1A1A;
}
.news-ticker-section .news-label {
  background: #FFD700;
  font-weight: 900;
}
.news-ticker-section .news-item {
  animation: newsFade 12s infinite;
}

.event-grid, .report-grid, .stats-grid, .voice-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .event-grid, .report-grid, .stats-grid, .voice-grid {
    grid-template-columns: 1fr;
  }
}

.matching-container {
  display: grid;
  grid-template-columns: 280px 1fr;
}
@media (max-width: 992px) {
  .matching-container {
    grid-template-columns: 1fr;
  }
}

.news-static-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  max-height: 380px;
  overflow-y: auto;
}
.news-static-card .news-item a:hover {
  background: #fcfcfc;
}

.cta-box {
  border-radius: 24px;
  transition: transform 0.3s;
}
.cta-box:hover {
  transform: translateY(-8px);
}
.cta-box.owner-cta {
  background: #1A1A1A;
  border: 2px solid #FFD700;
}
.cta-box.user-cta {
  background: #FFD700;
  color: #000;
}

.shop-banner {
  background: linear-gradient(135deg, #0033ff 0%, #001a80 100%);
  border-radius: 24px;
}
.shop-banner:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   SEO / ユーティリティ
   ========================================================================== */
.section-title {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
}

@keyframes newsFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
  }
}/*# sourceMappingURL=bc_style.css.map */