/* BNI福井リージョン カスタムスタイル v2.0 */
/* 配置先: https://ra-web.jp/bni-fukui/style.css */

/* 数値バー */
.bfr-stats-bar {
  display: flex;
  background: #cc0000;
  color: #fff;
  padding: 20px 0;
  margin-bottom: 32px;
  text-align: center;
}
.bfr-stat-item {
  flex: 1;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.25);
  box-sizing: border-box;
}
.bfr-stat-item:last-child { border-right: none; }
.bfr-stat-num {
  font-size: 2.4em;
  font-weight: bold;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bfr-stat-unit {
  font-size: 0.55em;
  font-weight: normal;
  margin-left: 2px;
}
.bfr-stat-label {
  font-size: 0.72em;
  opacity: 0.85;
  margin-top: 6px;
  display: block;
  letter-spacing: 0.05em;
}

/* セクション見出し */
.bfr-heading {
  font-size: 1.25em;
  font-weight: bold;
  border-left: 4px solid #cc0000;
  padding-left: 12px;
  margin: 0 0 20px;
  color: #222;
}

/* カードグリッド */
.bfr-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bfr-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* カード共通 */
.bfr-card {
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* イベントカード */
.bfr-event-img {
  height: 160px;
  background: #ccc;
  overflow: hidden;
}
.bfr-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bfr-event-date {
  background: #cc0000;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.82em;
  font-weight: bold;
}
.bfr-event-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bfr-event-title {
  font-weight: bold;
  font-size: 0.92em;
  color: #222;
  margin: 0 0 8px;
}
.bfr-event-text {
  font-size: 0.82em;
  color: #666;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* チャプターカード */
.bfr-chapter-img {
  height: 140px;
  background: #ccc;
  overflow: hidden;
}
.bfr-chapter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bfr-chapter-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bfr-chapter-name {
  color: #cc0000;
  font-size: 1.05em;
  font-weight: bold;
  margin: 0 0 4px;
}
.bfr-chapter-tag {
  font-size: 0.78em;
  color: #999;
  margin: 0 0 12px;
}
.bfr-info-table {
  width: 100%;
  font-size: 0.8em;
  border-collapse: collapse;
}
.bfr-info-table td {
  padding: 3px 0;
  vertical-align: top;
  color: #555;
}
.bfr-info-table td:first-child {
  color: #999;
  width: 70px;
  white-space: nowrap;
}
.bfr-btn {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
}
.bfr-btn a {
  display: inline-block;
  background: #cc0000;
  color: #fff;
  padding: 8px 18px;
  font-size: 0.82em;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
}

/* レスポンシブ */
@media screen and (max-width: 640px) {
  .bfr-stats-bar { flex-wrap: wrap; }
  .bfr-stat-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 14px 8px;
  }
  .bfr-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.25);
  }
  .bfr-stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .bfr-grid-3, .bfr-grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
