@charset "utf-8";

/* 背景（画面全体を暗くする） */
.modal {
  display: none; /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* モーダルが表示されたときのクラス */
.modal.is-open {
  display: flex; /* フレックスボックスで中央配置 */
}

/* モーダルの箱 */
.modal-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
}
