/* hidden_gnb */
.hidden_bg{
    opacity: 0;
    pointer-events: none;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    transition: all .3s ease-in-out;
}
.hidden_bg.on{
    opacity: 1;
    pointer-events: auto;
}
.hidden_menu{
    position: fixed;
    top: 0;
    right: 0;
    min-width: 270px;
    max-width: 400px;
    width: 92%;
    background: #fff;
    height: 100vh;
    box-sizing: border-box;
    transform: translateX(100%); 
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: scroll;
}
.hidden_bg.on .hidden_menu{
    transform: translateX(0%);
}
.close_menu{
    display: flex;
    justify-content: flex-end;
    margin: 2rem 2rem 0 0;
}
.hidden_gnb{
    font-size: 1.5rem;
}
.hidden_gnb>li>a{
    display: block;
    padding: 10px 20px ;
    font-weight: normal;
}
.hidden_gnb>li>a.on{
    font-weight: bold;
    color: #0c2e86;
}
.hidden_gnb .top_0{
    display: none;
    background: #0c2e860d;
    padding: 20px 36px;
}
.hidden_gnb .top_0 a{
    display: block;
    margin-bottom: 20px;
}
.hidden_gnb .top_0 li:last-of-type a{
    margin-bottom: 0px;
}
.hidden_gnb .on .top_0 {
    display: block; /* on 클래스가 있는 메뉴의 하위 메뉴만 보여집니다. */
}
.hidden_bottom{
    background: #F5F5F5;
    height: 28vh;
    max-height: 200px;
    width: 100%;
    box-sizing: border-box;
    padding: 1.5rem 2rem;
}
.hidden_bottom>div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.hidden_bottom .call{
    width: 13px;
    margin-right: 5px;
} 
.hidden_bottom a{
    color: rgb(52, 62, 71);
    font-weight: bold;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}
.hidden_bottom .time_table{
    font-size: 1.4rem;
    font-weight: 600;
    color: #747474;
}
.hidden_bottom .time_table li{
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.hidden_bottom .time_table b{
    width: 60px;
    display: flex;
    justify-content: space-between;
}
/* header */
.header_container{
    width: 100%;
    height: 80px;
}
header{
    height: 80px;
    width: 100%;
    background: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    position: fixed;
    /* padding: 2rem 0; */
    transition: all .5s ease ;
    z-index: 100;
    box-shadow: 0 19px 35px rgba(0,0,0,0.11);
}
.h_logo{max-width: 240px;}
header.scroll{
    /* padding: 0; */
    /* height: 80px; */
    box-shadow: 0 19px 35px rgba(0,0,0,0.11);
    transition: all .5s ease ;
}
header .header_inner{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:0 auto;
    max-width: 2200px;
    width: 95%;
    
}
.header_menu{
    display: flex;
}
.header_menu .gnb{
    display: flex;
}
.header_menu .gnb>li>a{
    margin: 1.5rem 2rem;
    line-height: 1.5;
    display:inline-block;
}
/* 1뎁스 hover 밑줄 이벤트 */
.header_menu .gnb>li>a:after {
    display:block;
    content: '';
    padding-top: .5rem;
    border-bottom: solid 2px #0c2e86;  
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
}
.header_menu .gnb>li:hover>a:after { transform: scaleX(1); }
.header_menu .gnb>li>a:after{  transform-origin:  0% 50%; }
/*  */
.header_menu .gnb>li{
    position: relative;
    padding: 1.5rem 0;
}
.header_menu .gnb>li:hover>ul{
    opacity: 1;
    pointer-events: auto;
}
.header_menu .gnb>li>ul{
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 7rem;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 19px 35px rgba(0,0,0,0.11);
    transition: all .3s ease;
}
.header_menu .gnb>li>ul.left_0{
    left: 0;
}
.header_menu .gnb>li>ul.right_0{
    right: 0;
}
.header_menu .gnb>li>ul>li>a{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 0.8rem;
    min-width: 200px;;
    white-space : nowrap;
}
.header_menu .gnb>li>ul>li>a:hover{
    color: #fff;
    background: #0c2e86;
    font-weight: 600;
}
.header_menu .open_menu{
    display: none;
    padding-left: 50px;
    cursor: pointer;
    align-items: center;
}

@media (min-width:0px) and (max-width:1700px){
    header{
        font-size: 1.6rem;
    }

}

@media (min-width:0px) and (max-width:1500px){
    

    header{
        font-size: 1.5rem;
    }
    /* header */
    header {
        height: 65px;
    }
    .header_container{
        height: 65px!important;
    }
    .header_inner .header_menu .gnb{
        display: none;
    }
    .header_inner .header_menu .open_menu{
        display: flex;
    }
}

@media (min-width:0px) and (max-width:1100px){
}

@media (min-width:0px) and (max-width:500px){
    .h_logo{width: 150px;}

}