@charset "UTF-8";
/* モーダルの基本スタイル */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 9999;
}

/* モーダルが表示されたときのスタイル */
.modal.show {
  display: flex;
  opacity: 1;
}

/* 画像サイズ調整 */
.modal-content {
  max-width: 80%;
  max-height: 80%;
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
}

/* モーダルが表示されたときの画像アニメーション */
.modal.show .modal-content {
  transform: scale(1);
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}/*# sourceMappingURL=modal.css.map */