@charset "uft-8";
@font-face {
    font-family: "Pretendard Variable";
    src: url(../font/PretendardVariable.woff2);
}
body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: #EFEFED;
    font-size: 0px;
    overflow:hidden;
    font-family: "Pretendard Variable";
    animation-name: body;
    animation-iteration-count: 1;
    animation-duration: 0.01s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes upper {
0% {
    transform: translateY(0) translateX(-100%) rotate3d(0, 1, 0, 90deg) rotate3d(1, 0, 0, 90deg);
    opacity: 1;
    }
    25% {
    transform: translateY(0) translateX(0%) rotate3d(0, 1, 0, 0deg) rotate3d(1, 0, 0, 88deg);
    }
    50% {
    transform: translateY(0) translateX(0%) rotate3d(0, 1, 0, 0deg) rotate3d(1, 0, 0, 88deg);
    }
    75% {
    transform: translateY(0) translateX(0%) rotate3d(0, 1, 0, 0deg) rotate3d(1, 0, 0, 0deg);
    opacity: 1;
    }
    100% {
    transform: translateY(-100%) translateX(0%) rotate3d(0, 1, 0, 0deg) rotate3d(1, 0, 0, 0deg);
    opacity: 1;
    }
    }

    @keyframes lower {
    0% {
    transform: translateY(0) translateX(-100%) rotate3d(0, 1, 0, 90deg) rotate3d(1, 0, 0, -90deg);
    opacity: 1;
    }
    25% {
    transform: translateY(0) translateX(0%) rotate3d(0, 1, 0, 0deg) rotate3d(1, 0, 0, -88deg);
    }
    50% {
    transform: translateY(0) translateX(0%) rotate3d(0, 1, 0, 0deg) rotate3d(1, 0, 0, -88deg);
    }
    75% {
    transform: translateY(0) translateX(0%) rotate3d(0, 1, 0, 0deg) rotate3d(1, 0, 0, 0deg);
    opacity: 1;
    }
    100% {
    transform: translateY(100%) translateX(0%) rotate3d(0, 1, 0, 0deg) rotate3d(1, 0, 0, 0deg);
    opacity: 1;
    }
    }

    @keyframes body {
    0% {
    background: #4787C7;
    font-size: 0px;
    }
    100% {
    background: #fff;
    font-size: 4em;
    }
    }

    .first {
    animation-delay: 0s;
    background: #151A59;
    z-index: 3;
    }

    .second {
    animation-delay: 0.1s;
    background: #BD9F68;
    z-index: 2;
    }

    .third {
    animation-delay: 0.2s;
    background: #967543;
    z-index: 1;
    }

    .upper,
    .lower {
    opacity: 0;
    transform-origin: 50% 100%;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    position: absolute;
    width: 100vw;
    height: 50vh;
    animation-name: upper;
    }

    .lower {
    transform-origin: 50% 0%;
    top: 50vh;
    animation-name: lower;
    }
    @keyframes appear {
    0%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        opacity: 1;
        visibility: visible;
    }
}

.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}
.logo{
    width: 180px;
}
.list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* column-gap: 10px ; */

}
.list ul li{
    border-right: 1px solid #e2e2e2;
}
.list ul li:nth-child(4n){
    border-right: none;
}
.list ul li p{
    color: #B5B5B6;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 24px;
    cursor: pointer;
    transition: 0.5s all;
}
.list ul li p:hover{
    color: #fff;
    background: #151A59;
}
.tit h2{
    margin: 10px 0 4px;
    font-size: 22px;
    color: #151A59;
    font-weight: 700;
    text-align: center;
}
.tit p{
    margin-bottom: 38px;
    color: #151A59;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

#preventMobile{
    display: none;
    width: 100vw;
    height: 100vh;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
}
#preventMobile p{
    color: #151A59;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}
@media (max-width:900px) {
    #preventMobile{
        display: flex;
        z-index: 999;
    }
}