@charset "utf-8";
#news-th-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 左端を揃える */
  margin: 0 auto;          /* 全体を中央寄せ */
  max-width: 500px;        /* 好きな幅に調整 */
  gap: 4px;
}

.news-item {
  display: grid;
  grid-template-columns: 95px 1fr; /* 左側の指定で日付と項目名の空白設定 */
  align-items: center;
  padding: 4px 8px;
}

.news-item .date {
  font-weight: bold;
  color: #333;
}

.news-item .title {
  color: #333;
}

