@charset "utf-8";
/* CSS Document */


/*-----------------------------------------

Last update:    2025-8-13

---------------------------------------*/



/*=============================
popup_modal 
=============================*/
.popup_modal__open:hover {
    cursor: pointer;
}

.popup_modal {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.popup_modal__bg {
    background: #444;
    height: 100vh;
    position: fixed;
    left: 0;
    width: 100%;

}

.popup_modal__content {
    background: #fff;
    padding: 2em;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
}

.popup_modal__content .model__img{
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.popup_modal__content.tate .model__img{
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}


.popup_modal .close__text {
    color: #333;
    position: absolute;
    bottom: 2em;
    left: 50%;
    margin-left: -1.5em;
}

.popup_modal .close__btn{
    position: absolute;
    width: 60px;
    top: -20px;
    right: -20px;
}


@media screen and (max-width:600px){
    .popup_modal__content {
        background: #fff;
        padding: 1em;
        width: 90%;
    }
    .popup_modal__content.tate .model__img{
        max-width: 80%;
        height: auto;
        margin: 0 auto;
    }
    .popup_modal .close__btn{
        width: 40px;
        top: -10px;
        right: -10px;
    }
}




