.error {
  display: block;
  color: #ff0000;
  width: 100%;
}

/* モーダル全体 */
.modal {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明のダーク背景 */
  z-index: 1000;
  overflow: auto;
}

/* モーダルのコンテンツ部分 */
.modal-content {
  background: #fff;
  border: 0.4rem solid #153872; /* 既存のセクションで使われている色を採用 */
  border-radius: 1rem; /* 全体の角丸感に合わせる */
  margin: 10% auto;  /* 画面中央に配置 */
  padding: 2rem;
  max-width: 600px;
  box-shadow: 0 0 1rem rgba(0,0,0,0.2);
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN",
                 Hiragino Kaku Gothic ProN, "メイリオ", Meiryo,
                 "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
  font-size: 1.6rem; /* 基本フォントサイズに合わせる */
  color: #000;
  position: relative;
}

/* 閉じるボタン */
.modal-content .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.4rem;
  color: #153872;
  cursor: pointer;
  transition: opacity 0.3s;
}
.modal-content .close:hover {
  opacity: 0.7;
}