@charset "UTF-8";
body.is-popup {
    overflow: hidden;
}
.modal {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}
.modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.modal-content > div {
    background-color: #fff;
    padding: 40px 80px;
}
.modal-content > div h3 {
    color: #db4640;
    padding-bottom: 1em;
    font-size: 110%;
}
.modal-content > div p {
    font-family: Koburina Gothic W6 JIS2004, sans-serif;
    font-size: 86%;
    line-height: 1.77;
}
.modal-content > div a {
    display: block;
}
.modal-content > div a[href] {
    background-color: #001158;
    color: #fff;
    width: max-content;
    margin: 2em auto 0.2em;
    padding: 0 1em;
}
.modal-content > div a:not([href]) {
    display: block;
    text-decoration: underline;
    font-size: 80%;
    text-align: center;
    cursor: pointer;
    transition: .16s;
}
.modal-content > div a:not([href]):hover {
    opacity: .5;
}
@media (max-width: 767px) {
    .modal-content {
        width: 90%;
        margin: 0 auto;
    }
    .modal-content > div {
        background-color: #fff;
        padding: 40px 6vw;
    }    
}