@charset "UTF-8";
.popup_container {
    width: 100vw;
    height: calc(100vh + 16px);
    margin: 0;
    background-color: #00000066;
    top: -16px;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: 5000;
    visibility: hidden;
    transition: .2s ease;
}

.popup_container * {
    margin: 0;
    line-height: 1.5;
}

.view {
    opacity: 1;
    visibility: visible;
}

.popup_box {
    padding: 30px;
    text-align: center;
    background-color: #ffffff;
}

.popup_box img {
    width: 360px;
    height: auto;
    margin: 0 auto 30px;
}

.popup_box p {
    width: 500px;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
    text-align: left;
    font-size: 16px;
    margin-bottom: 8px;
}

.popup_box p:nth-child(3) {
    text-align: center;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
}

.siteBtn {
    cursor: pointer;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    padding: 16px 32px;
    margin: 30px 0;
    font-weight: 800;
    text-shadow: 0 2px 3px rgb(0 0 0 / 20%);
    background: linear-gradient(47deg, #6DE2E7 0%, #56A9C5 41.42%, #1E2475 100%);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 20%);
    color: #fff;
}

.closeBtn {
    width: 100%;
    margin: -25px 0px 0px 30px;
    display: flex;
    justify-content: right;
    border: none;
    background: none;
    cursor: pointer;
}

@media screen and (max-width:768px) {
    .popup_box img {
        width: 60vw;
        margin: 4vw auto;
    }

    .popup_box {
        padding: 3vw;
        text-align: center;
        background-color: #ffffff;
    }

    .popup_box p {
        width: 85vw;
        font-size: 14px;
    }

    .popup_box p:nth-child(3) {
        font-size: 16px;
    }

    .closeBtn {
        margin: -1.5vw 0px 0px 3vw;
    }
}
