.contact-info-container {
  /* 全体のコンテナに対する基本的なスタイル */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  max-width: 600px; /* 必要に応じて調整 */
  margin: 20px auto; /* 中央寄せの例 */
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.contact-date {
  font-weight: bold;
  padding-bottom: 15px;
  text-align: center;
  color: #333;
}

.contact-person {
  margin-bottom: 20px; /* 各担当者ブロックの下にスペース */
  padding-bottom: 15px;
  border-bottom: 1px dashed #eee; /* 各担当者ブロックの区切り */
}

.contact-person:last-child {
  border-bottom: none; /* 最後の担当者ブロックには区切り線なし */
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-row {
  display: flex; /* Flexboxを適用 */
  margin-bottom: 5px; /* 各行の下にスペース */
}

.contact-row:last-child {
  margin-bottom: 0; /* 最後の行にはスペースなし */
}

.label {
  flex-shrink: 0; /* ラベルが縮まないように固定 */
  min-width: 200px; /* ラベルの最小幅を確保して揃える */
  font-weight: bold;
  color: #555;
  text-align: right;
}

.value {
  flex-grow: 1; /* 値が残りのスペースを埋める */
  color: #333;
}