@charset "utf-8";

/* モーダル本体 */
.modal-content {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  padding: 5rem 2rem 2rem;
  max-width: 1000px;
  width: 90%;
}
.modal_inner {
  margin-bottom: 10px;
}

.close-modal {
  background: #444;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}
.close-modal:hover {
  background: red;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
  z-index: 999; /* モーダルの下に表示されるように */
  display: none;
}
