#header{
    width: 100%;
    height: 60px;
    background-color: #fff;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 3%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 990;
}

#header>a{
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header>a img{
    width: 100%;
}

.menu_icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu_icon i{
    font-size: 24px;
}

.menu_box{
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 100%;
    display: flex;
    justify-content: center;
    z-index: 991;
    padding: 10% 0;
    box-sizing: border-box;
}

.inner_menu{
    padding-top: 30%;
    box-sizing: border-box;
    height: 100%;
    overflow: auto;
}

.inner_menu ul{
    width: 100%;
    margin-bottom: 40px;
}

.inner_menu ul:last-child{
    margin-bottom: 0;
}

.inner_menu ul p{
    width: 100%;
    font-size: 18px;
    color: #0a5199;
    font-family: 'Pretendard-Bold', sans-serif;
}

.inner_menu ul li{
    width: 100%;
    font-size: 14px;
    color: #555;
    font-family: 'Pretendard-Regular', sans-serif;
    margin-top: 13px;
    display: none;
}

.close_btn{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.close_btn i{
    font-size: 26px;
}
