/* 中央寄せ用コンテナ */
.history-container {
  max-width: 900px;      /* 中央幅（調整可能） */
  margin: 60px auto;     /* 上下余白＋中央寄せ */
  width: 100%;
}

/* 1件ずつの枠 */
.history-item {
  background: #0D0D0D;
  border: 1px solid #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 25px;
}

/* 1段目：日付 */
.history-date {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: left;   /* 明示的に左 */
  color:#b9b9b9
}

/* 2段目：更新内容 */
.history-content {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;   /* 全部左詰め */
  color:#ffffff
}