/* ==========================================================================
   【新規追記】インフォメーションボード（お知らせ枠）モダンコンポーネント設計
   ========================================================================== */
.info-board {
  background: #fff;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--main-blue); /* 左端にブランドアクセントの太線を配置 */
  border-radius: 6px;
  margin: 0 0 40px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
}

.info-header {
  background: #f8fafc;
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.info-header h3 {
  margin: 0;
  font-size: 15px;
  color: var(--main-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  border-bottom: 1px dashed #e2e8f0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-date {
  color: #94a3b8;
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
  font-weight: bold;
}

.info-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  background: #e0f2fe;
  color: var(--main-blue);
  font-weight: bold;
}

/* 重要アラート用の赤バッジ定義 */
.info-tag.alert {
  background: #fee2e2;
  color: var(--accent-red);
}

.info-list a {
  color: var(--text-dark);
  text-decoration: none;
  flex-grow: 1;
  font-weight: bold;
  transition: color 0.2s, transform 0.2s;
}

.info-list a:hover {
  color: var(--main-blue);
  text-decoration: underline;
}

/* リード文内のインライン太赤文字 */
.alert-inline-text {
  color: var(--accent-red);
  font-weight: bold;
}

/* ==========================================================================
   📱 インフォメーションボードのスマホレスポンシブ
   ========================================================================== */
@media (max-width: 768px) {
  .info-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px;
  }
  
  .info-list a {
    font-size: 13px;
    line-height: 1.4;
  }
}