.comp_modal {
    position: fixed;
    z-index: 1025;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2em 2em;
    background-color: rgba(0, 71, 103, 0.5);
}
.comp_modal.show { display: flex; }

.comp_modal_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    background-color: white;
    border-radius: 0.5em;
    padding: 2em 2em;
    text-align: center;
    font-size: 1.2em;
}
.comp_modal_wrap img { max-width: 450px; }

.comp_modal_wrap p:first-child { margin-top: 10px; }

.modal_sac { width: 180px; }

@media (min-width: 1024px) {
    .modal_sac {
        position: absolute;
        top: 2em;
        right: 2em;
    }
}