@charset "utf-8";

#sect_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .1);
    backdrop-filter: blur(2px);
    transition: all .3s;
    z-index: 1000;
}

/* off */
#sect_modal.off {
    opacity: 0;
    pointer-events: none;
}

#modal {
    position: absolute;
    top: 47%;
    left: 80%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 2px solid black;
    border-radius: 4px;
}


.modal-content {
    padding: 1rem;
    width: 100%
}

.modal-content img {
    width: 370px;

    margin: 0 auto;


}

.modal-set {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 5px;
    background: #eaeaec;
}

.modal-set button {
    padding: 3px 15px;
    background: #000;
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
}

.modal-set span {
    font-size: 12px;
    vertical-align: middle;
}




@media all and (max-width:767px) {
    #modal {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        border: 1px solid black;
        border-radius: 4px;
    }

    .modal-content {
        width: 75vw;

    }

    .modal-content img {
        width: 100%;
        display: block;
    }

    .modal-set button {
        padding: 3px 15px;
        background: #000;
        border-radius: 3px;
        color: #fff;
        font-size: 10px;
    }

    .modal-set span {
        font-size: 6px;
        vertical-align: middle;
    }



}