/* モーダル背景（オーバーレイ） */
.flyer-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10000; /* 他の要素より手前に表示 */
  justify-content: center;
  align-items: center;
}

/* モーダル枠と画像 */
.flyer-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.flyer-modal-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

/* 閉じるボタン（×） */
.flyer-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.flyer-close-btn:hover {
  color: #fcc800;
}