@charset "utf-8";
/* CSS Document */

/* ポップアップのスタイル */
#popup1, #popup2 {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 90%;
    padding: 0;
    background-color: transparent;
    z-index: 1000;
}

#popup1 img, #popup2 img {
    width: 100%;
    height: auto;
    cursor: pointer; /* カーソルをポインターに変更 */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: -10px;
	z-index: 10;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

/* 背景のオーバーレイ */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

@media (max-width: 600px) {
    #popup1, #popup2 {
        width: 90%;
    }
}
