#header{
    width: 100%;
    position: absolute;
    z-index: 999;
    opacity: 1;
    margin-top: 0;
    animation: h_opacity 1.5s;
    overflow: hidden;
}

@keyframes h_opacity {
    0%{
        opacity: 0;
        margin-top: -66px;
    }

    100%{
        opacity: 1;
        margin-top: 0;
    }
}

#header .header_menu{
    width: 100%;
    background-color: #fff;
}

#header .header_menu .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left_menu ul,
.right_menu ul{
    display: flex;
    align-items: center;
}

.left_menu ul li,
.right_menu ul li{
    padding: 20px;
}

.left_menu ul li:hover a,
.right_menu ul li:hover a{
  color: #004c84;
}

.left_menu ul li:first-child{
    padding-left: 0;
}

.right_menu ul li:last-child{
    padding: 0 0 0 20px;
}

.right_menu ul li:last-child a{
    color: #004c84;
    font-size: 28px;
}

.left_menu ul li a,
.right_menu ul li a{
    font-family: 'NanumSquareEB';
    font-size: 18px;
    color: #333;
}

.left_menu ul li:first-child a,
.right_menu ul li:last-child a{
    display: flex;
    align-items: center;
}

.left_menu ul li:first-child a i{
    margin-right: 5px;
    font-size: 20px;
}

.right_menu ul li:last-child a img{
    margin-right: 5px;
}

.left_menu ul li:last-child{
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}
.left_menu ul li.bl{ border-left: 1px solid #e5e5e5; }

.right_menu ul li:first-child{
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.hamburger_menu{
    width: 100%;
    height: 100px;
}

.hamburger_menu .inner{
    height: 100%;
    position: relative;
}

.hamburger_menu .inner>img{
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger_menu a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.menu_box{
    width: 440px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #fff;
    padding: 170px 120px 0;
    box-sizing: border-box;
    margin-left: -440px;
}

.menu_box02{
    display: none;
}

ul.menu01 li a{
    font-family: 'NanumSquareR';
    font-size: 32px;
    cursor: pointer;
    color: #333;
}

ul.menu01 li:not(:last-child){
    margin-bottom: 30px;
}

ul.menu01 li:hover a{
    color: #004c84;
    border-bottom: 4px solid #004c84;
}

ul.menu02{
    margin-top: 80px;
}

ul.menu02 li a{
    font-family: 'NanumSquareR';
    font-weight: bold;
    font-size: 20px;
    color: #004c84;
}

ul.menu02 li:not(:last-child){
    margin-bottom: 15px;
}

.menu_box button{
    font-family: 'NanumSquareL';
    font-size: 60px;
    color: #999;
    position: absolute;
    background-color: #fff;
    top: 40px;
    right: 50px;
}

/* m_header */
.m_header{
    width: 100%;
    position: fixed;
    z-index: 9999;
    opacity: 1;
    margin-top: 0;
    animation: h_opacity 1.5s;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
}

.m_header .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.m_header i{
    color: #fff;
    font-size: 26px;
}

.m_header a.a_img{
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m_header a.a_img img{
    width: 100%;
}

ul.menu03{
    width: 100%;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-family: 'NanumSquareR';
}

ul.menu03 li a{
    font-family: 'NanumSquareR';
    font-weight: bold;
    font-size: 17px;
    color: #333;
    letter-spacing: -1px;
}

a.menu03_add{ display:block; text-align:center; margin-top:10px; font-family: 'NanumSquareR';
    font-weight: bold;
    font-size: 17px;
    color: #333;
    letter-spacing: -1px; }
































/* mobile */
@media screen and (max-width: 767px){

    #header{
        display: none;
    }

    .m_header{
        display: block;
    }

    .menu_box{
        width: 250px;
        padding: 25% 0 0;
        margin-left: -250px;
    }

    .menu_box ul{
        width: 70%;
        margin: 0 auto;
    }

    .menu_box ul li{
        text-align: center;
    }

    ul.menu01 li a{
        font-size: 22px;
    }

    ul.menu01 li:not(:last-child){
        margin-bottom: 20px;
    }

    ul.menu02{
        margin-top: 20%;
    }

    ul.menu02 li a{
        font-size: 16px;
    }

    ul.menu02 li:not(:last-child){
        margin-bottom: 8px;
    }

    .menu_box button{
        font-size: 40px;
        top: 20px;
        right: 20px;
    }

    ul.menu03{
        margin-top: 20%;
    }

    ul.menu03 li a{
        font-size: 14px;
    }

	a.menu03_add{ font-size: 14px; }

    .menu_box01{
        display: none;
    }

    .menu_box02{
        display: block;
    }


}























/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    #header{
        display: none;
    }

    .m_header{
        display: block;
    }

    .menu_box01{
        display: none;
    }

    .menu_box02{
        display: block;
    }
}



































/* pc mini-size */
@media screen and (min-width: 1000px) and (max-width: 1680px){

  .menu_box{
      padding: 100px 120px 0;
  }

}
