@charset "utf-8";
body, html{
    font-family: 'Pretendard';
    font-size: 0.83vw;
    width: 100vw;
    overflow-x: clip;
}
body::-webkit-scrollbar{
    width: 10px;
}
body::-webkit-scrollbar-thumb{
    width: 10px;
    background-color: #153F91;
    border-radius: 10px;
}
#hd_login_msg{
    display: none;
}




/* quick */
.quick{
    border-radius: 15px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 80px;
    box-shadow: -2px 0 9px 3px #00000054;
    z-index: 12;
    background-color: #fff;
    transition: 1s;
}
.quick > a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    height: 20px;
    background-color: #153F91;
    font-size: 14px;
    transition: 0.5s;
}
.quick > a:nth-child(1){
    border-radius: 10px 10px 0 0;
}
.quick > a:nth-child(3){
    border-radius: 0 0 10px 10px;
}
.quick > a:nth-child(1) span:nth-child(2){
    display: none;
}
.quick.on > a:nth-child(1) span:nth-child(1){
    display: none;
}
.quick.on > a:nth-child(1) span:nth-child(2){
    display: block;
}
.quick > a:hover{
    background-color: #1191D0;
}

.quick > a:last-child img{
    width: 10px;
    object-fit: cover;
    margin-left: 8px;
}
.quick ul {
    padding: 30px 0;
}
.quick.on ul {
    display: none;
}

.quick ul li{
    width: 100%;
    margin-bottom: 30px;
}
.quick ul li:last-child{
    margin-bottom: 0;
}
.quick ul li a{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 74px;

}
.quick ul li a figure{
    width: 50px;
    height: 50px;
    background-color: #153F91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.quick ul li:hover a figure{
    background-color: #1191D0;
    width: 60px;
    height: 60px;
}
.quick ul li:hover a span{
    display: none;
}
.quick ul li a figure img{
    height: 23px;
    object-fit: cover;
}
.quick ul li a span{
    font-family: 'jalnan';
    font-weight: 600;
    font-size: 13px;
}
/* quick */



/* header */
.mobile.header{
    display: none;
}
.header{
    width: 100%;
    height: 5.20vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    padding: 0 7.03vw;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #153F91;
    background-color: #fff;
}
.header > a{
    display: block;
    width: 15.31vw;
    height: 3.28vw;
}
.header > a figure{
    width: 100%;
    height: 100%;
}
.header > a figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header nav{
    margin-right: 10.65vw;
    height: 100%;
}
.header nav > ul{
    display: flex;
    height: 100%;
}
.header nav > ul > li{
    position: relative;
    height: 100%;
}
.header nav > ul > li::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #153F91;
    transition: 1s;
    border-radius: 20px 20px 0 0;
}
.header nav > ul > li.on::before{
    height: 100%;
}
.header nav > ul > li.on > a{
    color: #fff;
}
.header nav > ul > li > a{
    display: flex;
    position: relative;
    z-index: 5;
    align-items: center;
    padding: 0 1.82vw;
    height: 100%;
    font-weight: 600;
    transition: 1s;
}
.header nav > ul > li .depth_02{
    position: absolute;
    width: 100%;
    top: 5.20vw;
    left: 0;
    padding: 1vw 0;
    display: none;

}


.header nav > ul > li .depth_02::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #153F91;
    transition: 1s;
    border-radius: 0 0 20px 20px;
}
.header nav > ul > li .depth_02 li{
    width: 100%;
    position: relative;
    z-index: -1;
    z-index: 5;
}

.header nav > ul > li .depth_02 li a{
    display: block;
    position: relative;
    font-size: 0.72vw;
    color: #fff;
    width: 100%;
    padding: 1vw 0 1vw 0.5vw;
}

.header nav > ul > li .depth_02 li a:hover{
    background-color: #1191D0;

}

/* header */


/* menu_btn */
.menu_btn{
    position: fixed;
    top: 2.6vw;
    transform: translateY(-50%);
    right: 7.03vw;
    cursor: pointer;
    width: 40px;
    height: 35px;
    z-index: 12;
}
.menu_btn span{
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.menu_btn span:nth-child(1){
    position: absolute;
    top: 0;
    width:20px;
    background-color: #153F91;
    height: 5px;
}
.menu_btn span:nth-child(2){
    position: absolute;
    top: 15px;
    left: 0;
    width:40px;
    background-color: #1191D0;
    height: 5px;
}
.menu_btn span:nth-child(3){
    position: absolute;
    right: 0;
    bottom: 0;
    width:20px;
    background-color: #153F91;
    height: 5px;
}
.menu_btn.on span:nth-child(1){
    top: 15px;
    width:40px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.menu_btn.on span:nth-child(2){
    opacity: 0;
    left: -40px;
}
.menu_btn.on span:nth-child(3){
    top: 15px;
    width:40px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);

}

/* menu_btn */


/* pc_menu */
.mobile_menu{
    display: none;
}
.pc_menu{
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 11;
    transition: 1s;
    opacity: 0;
}
.pc_menu.on{
    opacity: 1;
    top: 0;
}
.pc_menu .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pc_menu .bg figure{
    width: 100%;
    height: 100%;

}
.pc_menu .bg figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pc_menu .top{
    position: relative;
    width: 88.85vw;
    height: 5.20vw;
    border-bottom: 1px solid #fff;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc_menu .top > a{
    width: 15.31vw;
}
.pc_menu .top > a figure{
    width: 100%;
}
.pc_menu .top > a figure img{
    width: 100%;
    object-fit: cover;
}
.pc_menu .top ul{
    display: flex;
    margin-right: 8vw;
    color: #fff;
}
.pc_menu .top ul li{
    margin-left: 1.56vw;
}
.pc_menu .top ul li:last-child{
    position: relative;
}
.pc_menu .top ul li:last-child::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 90%;
    top: 50%;
    transform: translateY(-50%);
    left: -0.78vw;
    background-color: #fff;
}
.pc_menu .cont{
    position: relative;
    margin: 7vw 0 0 7.5vw;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 44vw;
    height: 22.5vw;
}
.pc_menu .cont ul{
    width: calc(100% / 4);
}
.pc_menu .cont ul li{
    font-size: 0.93vw;
}
.pc_menu .cont ul li:first-child{
    font-family: 'jalnan';
    font-size: 1.04vw;
    font-weight: 700;
    color: #153F91;
    margin-bottom: 1.04vw;
}
.pc_menu .cont ul li:nth-child(n+2){
    margin-left: 0.3vw;
    margin-bottom: 0.7vw;
    transition: 1s;
}
.pc_menu .cont ul li:nth-child(n+2):hover{
    margin-left: 1vw;
    color: #1191D0;
    font-weight: 700;
}
.pc_menu .cont ul li:last-child{
    margin-bottom: 0;
}
.pc_menu .bot{
    position: relative;
    margin: 5vw 0 0 5vw;
    width: 52.08vw;
    height: 5.20vw;
    background-color: #fff;
    border-radius: 2.34vw;
    box-shadow: 0 0 10px 1px #0000008a;

}
.pc_menu .bot ul{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3vw;
}
.pc_menu .bot ul li a{
    font-family: 'jalnan';
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pc_menu .bot ul li a figure{
    height: 1.71vw;
    margin-bottom: 0.52vw;
    transition: 1s;
}
.pc_menu .bot ul li a figure img{
    height: 100%;
    object-fit: cover;
}
.pc_menu .bot ul li:hover a figure{
    transform: scale(1.1);
}
/* pc_menu */



/* 반응형 */
@media screen and (max-width:500px) {
    .fast_consult{
        bottom: 13vw;
    }
        /* quick */
        .quick{
            top: unset;
            bottom: 0;
            transform: none;
            width: 100%;
            height: 13vw;
            border: 1px solid #153F91;

        }
        .quick > a{
            display: none;
        }
        .quick ul{
            padding: 0;
            display: flex;
            height: 100%;
        }
        .quick ul li{
            width: calc(100% / 2);
            height: 100%;
        }
        .quick ul li a{
            height: 100%;
            flex-direction: row;
        }
        .quick ul li:nth-child(2){
            display: none;
        }
        .quick ul li:hover a figure{
            width: 8vw;
            height: 8vw;
            background-color: #153F91;
        }
        .quick ul li a figure{
            width: 8vw;
            height: 8vw;
            margin-right: 2vw;
            margin-bottom: 0;
        }
        .quick ul li a figure img{
            height: 4vw;
        }
        .quick ul li:hover a span{
            display: block;
        }
        .quick ul li a span{
            color: #153F91;
        }
        /* quick */
    
    
        /* header */
        .pc.header{
            display: none;
        }
        .mobile.header{
            display: flex;
            height: 50px;
            padding: 0 20px;
        }
        .mobile.header > a:nth-child(1){
            width: 40px;
            height: 40px;
        }
        .mobile.header > a:nth-child(2){
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
        }
        .header nav{
            display: none;
        }
        .header > a{
            width: auto;
            height: 40px;
        }
        /* header */
    
        /* menu_btn */
        .menu_btn{
            top: 25px;
            right: 20px;
        }
        .pc_menu{
            display: none;
        }
        .mobile_menu{
            position: fixed;
            top: -100vh;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 11;
            transition: 1s;
            opacity: 0;
            display: block;
            background-color: #fff;
        }
        .mobile_menu.on{
            top: 0;
            opacity: 1;
        }
        .mobile_menu .top{
            height: 50px;
            border-bottom: 1px solid #ddd;
            margin: 0;
            width: 100%;
            padding: 0 20px;
            display: flex;
            align-items: center;
        }
        .mobile_menu .top > a{
            display: block;
            width: auto;
            height: 35px;
        }
        .mobile_menu .top > a figure{
            width: auto;
            height: 100%;
        }
        .mobile_menu .top > a figure img{
            width: auto;
            height: 100%;
        }
        .mobile_menu .cont{
            font-family: 'jalnan';
            display: flex;
            margin: 0;
            padding: 0;
            width: 100%;
            height: max-content;
            font-weight: 500;
            border-bottom: 1px solid #ddd
        }
        .mobile_menu .cont .left{
            padding-top: 50px;
            padding-left: 20px;
            width: 35%;
            border-right:1px solid #ddd;
        }
        .mobile_menu .cont .left li{
            color: #153F91;
            cursor: pointer;
            height: 50px;
            width: 100%;
            display: flex;
            align-items: center;
            font-size: 4vw;
            margin-bottom: 20px;
            padding-left: 2vw;
            border-radius: 20px;
        }
        .mobile_menu .cont .left li.on{
            background-color: #1191D0;
            color: #fff;
            transform: translateX(20px);
        }
        .mobile_menu .cont .right{
            padding-top: 50px;
            padding-left: 20px;
            width: 65%;
        }
        .mobile_menu .cont .right .tab.on{
            display: block;
        }
        .mobile_menu .cont .right .tab{
            width: 100%;
            display: none;
        }
        .mobile_menu .cont .right .tab li{
            font-size: 3.6vw;
            padding: 2vw 0 2vw 4vw;
            border-bottom: 1px solid #ddd;
            margin-bottom: 4vw;
            color: #353535;
        }
        .mobile_menu .bot{
            margin: 0;
            margin-left: 20px;
            width: 100%;
            height: auto;
            box-shadow: none;
            border-radius: 0;
            background: none;
        }
        .mobile_menu .bot ul{
            justify-content: flex-start;
            background: none;
            margin: 4vw 0 0 2vw;
            display: flex;
    
        }
        .mobile_menu .bot ul li{
            font-size: 3vw;
            margin-right: 20px;
            padding: 2vw 4vw;
            background-color: #1191D0;
            color: #fff;
            font-weight: 700;
            border-radius: 20px;
        }
        /* menu */
    
}
/* 반응형 */
