/* モーダル背景 */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
}

/* 拡大画像 */
.modal img {
  display: block;
  max-width:55%;
  max-height:100%;
  margin: 5% auto;
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}