/* モーダルの背景 */
.modal {
  display: none; /* 初期は非表示 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
}

/* モーダル内のコンテンツ */
.modal-content {
  position: relative;
  margin: 5% auto;
  padding: 0;
  width: 100%;
  max-width: 600px;
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 0 20px #ff0000aa;
}

.banner-img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

.close-btn:hover {
  color: #ff4444;
}
