@charset "utf-8";
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal {
  background: #fff;
  border-radius: 8px;
  padding: 30px 24px;
  max-width: 340px;
  width: 90%;
  text-align: center;
}
.modal p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.modal-buttons .btn {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  padding: 8px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-cancel {
  background: #ccc;
  color: #333;
}
.btn-confirm {
  background: #0062AD;
  color: #fff;
}
