/* ポップアップのスタイル */
/* ポップアップの背景 */
.popup {
 display: none;
 position: fixed;
 z-index: 1000;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.8);
 align-items: center;
 justify-content: center;
}

/* ポップアップ内の画像 */
.popup-content {
 max-width: 80vw; /* 画面の80%の幅に収める */
 max-height: 80vh; /* 画面の80%の高さに収める */
}

/* 閉じるボタン */
.close {
 position: absolute;
 top: 20px;
 right: 30px;
 font-size: 30px;
 font-weight: bold;
 color: white;
 cursor: pointer;
}
