/* 画面全体のオーバーレイ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 90%;             /* ← ここが重要！100% → 90% に変更 */
  max-width: 900px;
  max-height: 90%;
  
  overflow-x: hidden;     /* ← 横スクロール禁止 */
  overflow-y: auto;       /* ← 必要な時だけ縦スクロール */

  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: 10px;
  right: -20px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  color: #333;
}

/* 画像ラッパー */
.img-wrapper {
  padding: 40px 0 0px;
  text-align: center;
  box-sizing: border-box;
}

.img-wrapper img {
  width: 100%;          /* ← max-width ではなく width:100% 推奨 */
  height: auto;
  display: block;
}
