.sitemap{
    width: 55%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #222;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 1s;
}

.sitemap.show{
    transform: translateX(0);
}

.close{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 45px;
    right: 5%;
    cursor: pointer;
}

.close i{
    font-size: 34px;
    color: #fff;
}

.sitemap_box{
    width: 80%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
    border-right: 1px solid #636363;
    border-left: 1px solid #636363;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1s .3s, opacity 1s .3s;
}

.sitemap.show .sitemap_box{
    transform: translateY(0);
    opacity: 1;
}

.sitemap_box_inner{
    width: 33.33%;
    border-right: 1px solid #636363;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sitemap_box_inner:last-child{
    border-right: 0;
}

.sitemap_box_inner>p{
    font-size: 34px;
    color: #9ccb46;
    padding-bottom: 20px;
    border-bottom: 1px solid #9ccb46;
    font-family: 'SCDream7', sans-serif;
}

.sitemap_box_inner ul{
    margin-top: 25px;
}

.sitemap_box_inner ul li{
    text-align: center;
    font-size: 19px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
    cursor: pointer;
    margin-bottom: 25px;
}

.sitemap_box_inner ul li:last-child{
    margin-bottom: 0;
}

.scroll_down{
    position: fixed;
    right: 4%;
    bottom: 60px;
    z-index: 99;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.scroll_down span{
    width: 1px;
    height: 100px;
    background-color: #fff;
}

.scroll_down p{
    font-size: 15px;
    color: #fff;
    font-family: 'Pretendard-Light', sans-serif;
    letter-spacing: 1.5px;
    margin-right: -1.5px;
    margin-top: 10px;
    animation: scroll_down infinite 1s linear;
}

@keyframes scroll_down{
    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(15px);
    }

    10%{
        transform: translateY(0);
    }
}





































/* mobile */
@media screen and (max-width: 767px){

    .sitemap{
        width: 100%;
        flex-direction: column;
    }
    
    .close{
        top: 25px;
        cursor: inherit;
    }
    
    .close i{
        font-size: 24px;
    }
    
    .sitemap_box{
        width: 80%;
        border-right: 0;
        border-left: 0;
        display: block;
    }
    
    .sitemap_box_inner{
        width: 100%;
        border-right: 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 30px 0;
    }
    
    .sitemap_box_inner>p{
        font-size: 20px;
        padding-bottom: 15px;
    }
    
    .sitemap_box_inner ul{
        margin-top: 20px;
    }
    
    .sitemap_box_inner ul li{
        font-size: 15px;
        cursor: inherit;
        margin-bottom: 15px;
    }
    
    .scroll_down{
        bottom: 30px;
    }
    
    .scroll_down span{
        height: 50px;
    }
    
    .scroll_down p{
        font-size: 12px;
        margin-top: 5px;
    }
    
    @keyframes scroll_down{
        0%{
            transform: translateY(0);
        }
    
        50%{
            transform: translateY(10px);
        }
    
        10%{
            transform: translateY(0);
        }
    }

}
































/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    .sitemap{
        width: 50%;
        flex-direction: column;
    }
    
    .close{
        top: 25px;
        cursor: inherit;
    }
    
    .close i{
        font-size: 24px;
    }
    
    .sitemap_box{
        width: 80%;
        border-right: 0;
        border-left: 0;
        display: block;
    }
    
    .sitemap_box_inner{
        width: 100%;
        border-right: 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 30px 0;
    }
    
    .sitemap_box_inner>p{
        font-size: 20px;
        padding-bottom: 15px;
    }
    
    .sitemap_box_inner ul{
        margin-top: 20px;
    }
    
    .sitemap_box_inner ul li{
        font-size: 15px;
        cursor: inherit;
        margin-bottom: 15px;
    }
    
    .scroll_down{
        bottom: 50px;
    }
    
    .scroll_down span{
        height: 50px;
    }
    
    .scroll_down p{
        font-size: 12px;
        margin-top: 5px;
    }
    
    @keyframes scroll_down{
        0%{
            transform: translateY(0);
        }
    
        50%{
            transform: translateY(10px);
        }
    
        10%{
            transform: translateY(0);
        }
    }

}







































/* pc */
@media screen and (min-width: 1025px) and (max-width: 1400px){

    .sitemap{
        width: 60%;
    }

}