@charset "UTF-8";
#wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.logo_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}
.img_wrap {
    width: 25rem;
}
.img_wrap img {
    width: 100%;
}
.start {
    font-size: 2rem;
    color: #fff;
    background: #1e1e3b;
    padding: 1.5rem;
    width: calc(100% - 3rem);
    display: block;
    text-align: center;
    border-radius: 1rem;
    flex-grow: 1;
    margin: 1.2rem 0 2.2rem;
}
.start_none {
    background: #b3b3b3 !important;
}
.option_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 1.5rem;
}
.option_wrap .btn_wrap {
    display: flex;
    width: 100%;
    gap: 1rem;
}
.option_wrap .btn_wrap button {
    width: 50%;
    font-size: 2rem;
    background: #fff;
    color: #a6daf4;
    border: 1px solid #a6daf4;
    padding: 1.2rem;
    border-radius: 1rem;
}
.option_wrap button.selected {
    background: #024b98;
    color: #fff;
    border: 1px solid #024b98;
}
.exp {
    width: 100%;
    text-align: center;
    font-size: 1.7rem;
    letter-spacing: -.1rem;
    animation: upAndDown 2.5s infinite ease-in-out;
}
.exp em {
    font-size: inherit;
    font-weight: 600;
    letter-spacing: inherit;
    color: #024b98;
}

@keyframes upAndDown {
    0% {
        transform: translateY(.5rem);
    }
    50% {
        transform: translateY(-.5rem);
    }
    100% {
        transform: translateY(.5rem);
    }
}


/* MODAL :: NO IDENTIFICATION */
.modal {
    width: 80vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #fff;
    z-index: 999;
    text-align: center;
}
.modal h1 {
    font-size: 2rem;
    font-weight: 600;
    background: #024b98;
    padding: 1rem;
    color: #fff;
}
.modal p {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 1.5rem 1.2rem;
}
.modal span a {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
}
.modal .btn_wrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.8rem 0;
}
.modal .btn_wrap button {
    width: 40%;
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    background: #024b98;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #fff;
}
.bg {
    min-width: 100vw;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}