/* modal.css */
/*--------------------------------------*/

/* モーダルウィンドウのスタイル */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal-content img {
    width: auto;
    height: auto;
    max-width: 800px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    text-align: center;
}

@media (max-width: 800px) {

    .modal-content img {
        max-width: 80vw;
        max-height: 80vh;
    }

}
