/*---common css---*/
@import url('https://rsms.me/inter/inter.css');


/*font size*/
.fs_14{font-size: 0.875rem;}
.fs_16{font-size: 1rem;}
.fs_18{font-size: 1.13rem;}
.fs_20{font-size: 1.25rem;}
.fs_22{font-size: 1.375rem;}
.fs_24{font-size: 1.5rem;}
.fs_30{font-size: 1.875rem;}
.fs_32{font-size: 2rem;}
.fs_40{font-size: 2.5rem;}
.fs_45{font-size: 2.813rem;}
.fs_48{font-size: 3rem;}
.fs_50{font-size: 3.125rem;}
.fs_54{font-size: 3.375rem;}
.fs_56{font-size: 3.5rem;}
.fs_60{font-size: 3.75rem;}
.fs_70{font-size: 4.375rem;}
.fs_80{font-size: 5rem;}

/*font weight*/
.font_r{font-weight: 400;}
.font_m{font-weight: 500;}
.font_b{font-weight: bold;}
.font_bl{font-weight: 900;}

.font_point { color: #015aa9; }
.font_white { color: #fff }
.font_gray { color: #777; }

/*container*/
.main_container{width: 92%;max-width: 1420px;margin: 0 auto;}
.main_inner{padding: 150px 0; }

/*메인에서만 사용*/
#main_02 .fp-tableCell{display: table-cell;vertical-align: middle;}
#main_05 .fp-tableCell{display: table-cell;vertical-align: middle;}


.b_tit_txt { display: flex; flex-direction: column; gap: 20px; }

@media screen and (max-width: 1480px){

    .main_inner{padding-top: 80px;}
}

@media screen and (max-width: 720px){

    .main_inner{padding: 70px 0;}
}

/*common title*/
.main_tit h2{margin-bottom: 12px;}
.main_tit p{-webkit-text-stroke: 0.01em;line-height: 167%;}

.main_tit_01{display: flex;align-items: flex-end;justify-content: space-between;}
.main_tit_01 .common_link{transform: translate(-23px,-18px);}/*정렬*/

@media screen and (max-width: 1480px){

    .main_tit_01 .common_link{transform: translate(-20px,-8px);}/*정렬*/
}

@media screen and (max-width: 720px){

    .main_tit h2{font-size: 28px;line-height: 115%;margin-bottom: 14px;}
    .main_tit p{font-size: 11px;}

    .main_tit_01{display: block;flex: none;}
    .main_tit_01 .common_link{transform: translate(0);margin-top: 25px;}/*정렬*/
}

/*common link*/
.common_link{display: inline-block;position: relative;}
.common_link b{position: relative;z-index: 3; font-weight:bold;}
.common_link span{position: absolute;top: 50%;right: -22.5px;transform: translateY(-50%);width: 45px;height: 45px;border-radius: 45px;background-color: var(--color-02);z-index: 2;}
.common_link span::before, .common_link span::after{content: "";position: absolute;top: 0;left: 0;width: 45px;height: 45px;border-radius: 60px;background-color: var(--color-02);opacity: 0;z-index: 1;
    animation-play-state: paused;
    -webkit-aanimation-play-state: paused;
}

.common_link:hover span::before{
    animation: link-scale 3s 0s linear infinite;
    -webkit-animation: link-scale 3s 0s linear infinite;
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

.common_link:hover span::after{ /*위*/
    animation: link-scale 3s 0s linear infinite;
    -webkit-animation: link-scale 3s 0s linear infinite;
    animation-delay: 1s;
    animation-play-state: running;
    -webkit-animation-play-state: running;
}

@keyframes link-scale{
	0%{
        transform: scale(1);
        -webkit-transform: scale(1);
		opacity: .4; 
	}
	20%{opacity: 1;}
	100%{
        transform: scale(1.65);
        -webkit-transform: scale(1.65);
		opacity: 0; 
	}
}

@-webkit-keyframes link-scale{
	0%{
        transform: scale(1);
        -webkit-transform: scale(1);
		opacity: .4; 
	}
	20%{opacity: 1;}
	100%{
        transform: scale(1.65);
        -webkit-transform: scale(1.65);
		opacity: 0; 
	}
}

@media screen and (max-width: 1480px){

    .common_link span{right: -20px;width: 38px;height: 38px;}
    .common_link span::before, .common_link span::after{width: 38px;height: 38px;}
}

@media screen and (max-width: 720px){

    .common_link{font-weight: 900;}
    .common_link span{right: -14px;width: 28px;height: 28px;}
    .common_link span::before, .common_link span::after{width: 28px;height: 28px;}
}

/*motion*/
.b_motion { /* 페이드 이펙트 */
  transition: transform 0.6s, opacity 0.6s ease;
  opacity: 0;
  transform: translate3d(0px, 50px, 0);
}
.b_motion.b_tr { /* 모션 오른쪽으로 */
  transform: translate3d(-50px, 0, 0);
}
.b_motion.b_tl { /* 모션 왼쪽으로 */
  transform: translate3d(50px, 0, 0);
}
.b_motion.b_move { /* 모션 작동 */
  opacity: 1 !important;
  transform: translateZ(0) !important;
}


/*.common_trigger .move_left{transform: translateX(25px);opacity: 0;transition: transform 1s ease, opacity .6s;}
.common_trigger.on .move_left{transform: translateX(0);opacity: 1;}

.common_trigger .common_motion{transform: translateY(25px);opacity: 0;transition: transform .8s ease, opacity .4s;}
.common_trigger.on .common_motion{transform: translateY(0);opacity: 1;}*/

.k_delay_01{transition-delay: .2s !important;}
.k_delay_02{transition-delay: .4s !important;}
.k_delay_03{transition-delay: .6s !important;}
.k_delay_04{transition-delay: .8s !important;}
.k_delay_05{transition-delay: 1s !important;}
.k_delay_06{transition-delay: 1.2s !important;}
.k_delay_07{transition-delay: 1.4s !important;}
.k_delay_08{transition-delay: 1.6s !important;}
.k_delay_09{transition-delay: 1.8s !important;}
.k_delay_10{transition-delay: 2s !important;}
.k_delay_11{transition-delay: 2.2s !important;}

/*---header---*/
#k_header{position: fixed;top: 0;left: 0;width: 100%;height: 100px;z-index: 500;transition: all .3s ease-out;border-bottom: 1px solid; border-color: rgba(255,255,255,0.20) }
#k_header .hd_gnb .b_hover_icon {
    position: absolute; bottom: 0px; left: 0; transform: translateX(-50%); background-color: #05295a; pointer-events: none; opacity: 0; visibility: hidden; width: 10%; height: 3px; transition: .5s; border-radius:0; z-index: 10;
}
#k_header .hd_top { width: 100%; padding: 0 4%; background: #231f20; height: 50px; display: flex; justify-content: flex-end; align-items: center; }
#k_header .hd_top .sns_wrap { display: flex; align-items: center; gap:15px; justify-content: space-between; width: 100%; max-width: 125px; }
#k_header .hd_con { height: 100px; }
.hd_gnb .b_nav_box{height:100%;}
.hd_gnb>ul>li>a>i { font-size: 1.125rem; }
.hd_gnb>ul>li>ul{position: absolute;left: 0;width: 500%;height: 85px; align-items: center; display:flex;padding-top:0px; transform:none;transition:opacity .3s; display:none; z-index: 10;}
.hd_gnb>ul>li>ul>li{margin:0 30px;}
.hd_gnb>ul>li>ul>li:first-child{margin-left:0px;}
.hd_gnb>ul>li>ul>li:last-child{margin-right:0px;}
.hd_gnb>ul>li>ul>li>a{color:#999; }
.hd_gnb>ul>li>ul>li>a:hover{color:#000;font-weight: 400;-webkit-text-stroke: 0.01em; transition: none;}
.hd_gnb>ul>li.k_menu_1>ul{left: 46%;}
.hd_gnb>ul>li.k_menu_2>ul{left: 67%;}
.hd_gnb>ul>li.k_menu_3>ul{left: 78%; }
.hd_gnb>ul>li.k_menu_4>ul{left: 90%; }

#site_map_btn span{ opacity: 1; }
#site_map_btn span:nth-child(1){transform: translateY(-10px);}
#site_map_btn span:nth-child(2){transform: translateY(2px);}



.hd_con{height: 100%; display:flex; justify-content:space-between; align-items:center; position:relative;  }

.hd_logo{float: left;position: absolute;z-index: 3;}
.hd_logo img{display: block;padding-top: 0;}

/*hd-gnb*/
.hd_gnb{opacity: 1;transition: opacity .5s ease; width:100%; display:flex; justify-content:flex-end; position:relative; align-items: center; }
.hd_gnb>ul::after{content: "";clear: both;display: block;}
.hd_gnb>ul>li{float: left; }
.hd_gnb>ul>li:after{content:''; width:10px; height:10px; background-color:#06377a; border-radius:50%; position:absolute; left:50%; transform:translateX(-50%); bottom:-5px; opacity:0; transition: opacity .3s; }
.hd_gnb>ul>li:hover:after{opacity:1; transition: opacity .3s; }

.hd_gnb>ul>li>a{display: block;width: 100%;height: 100%;color: #FFF;line-height: 100px;font-size: 1.13rem;padding: 0 40px; font-weight:600;}
.hd_gnb>ul>li>a>i{position: relative;}
.hd_gnb>ul>li>a>i::before{content: "";position: absolute;top: 50%;left: -4px;transform: translateY(-50%);width: 8px;height: 8px;border-radius: 8px;background-color: var(--color-02);opacity: 0;transition: left .45s ease, opacity .25s ease;}
.hd_gnb>ul>li:hover>a>i::before{left: -24px;opacity: 1;}

.hd_gnb .b_nav_box{height:85px;}
.hd_gnb .b_nav_box{
    width: 500%;
    background-color: #f9f9f9;
    position: absolute;
    z-index: -1;
    top: 100%;
    left: -100%;
    display: none;
}



#k_header .b_hd_right{display: flex;align-items: center;height: 100%; gap: 25px; }
#k_header .b_hd_right .b_blog_btn { width: 25px; height: 25px; }
#k_header .b_hd_right .b_blog_btn svg { color: #fff; }
#k_header .b_hd_right .b_qna_btn{display:flex; align-items: center; justify-content: center; width: 25px; height: 25px; background: #fff; border-radius: 100%; }

@media screen and (max-width: 720px){
	 #k_header .b_hd_right{z-index: 1000; justify-content: flex-end; width: 100%; position: relative; gap: 20px; }
}

@media screen and (max-width: 360px){
    #k_header .hd_logo a { padding: 0 15px!important; }
}



/*lang-box*/
.lang_box{position: relative;margin-left: 49px; display: flex; align-items: center; }
.lang_btn{display: flex;align-items: center;justify-content: center;cursor: pointer;}
.lang_btn svg{
    color: #fff;
    width: 25px; height: 25px;
}

.lang_box ul{position: absolute;top: calc( 100% + 20px );left: 50%;width: 105px;z-index: 1;background-color: #FFF;padding: 8px 0;display: none; transform:translateX(-50%); 
}
.lang_box ul li a{display: block;width: 100%;height: 100%;text-align: center;padding: 6.5px 0;transition: color .25s ease;-webkit-text-stroke: 0.01em; font-weight: 400;}
.lang_box ul li a:hover,
.lang_box ul li a.on{color: #06377a;}

/*site-map*/
#site_map_btn{width: 25px;height: 25px;position: relative; display:none;}
#site_map_btn span{position: absolute;top: 10px;left: 0;width: 100%;height: 2px;background-color: #FFF;border-radius: 2px;}
#site_map_btn span:nth-child(1){transform: translateY(-8px);}
#site_map_btn span:nth-child(2){transform: translateY(8px);}

#site_map{display:flex; justify-content:flex-end; position: fixed;top: 80px; left: 0;width: 100%;height: 100%;z-index: 100;display: none;background-color: rgba(0,0,0,.7);}
.site_map_inner{display: flex;width: 100%;height: 100%;max-width:290px;position:absolute; right: 0; transform: translateX(300px);transition: transform .65s ease;padding-top: 50px}

#site_map {background-color: #fff; height: 100vh;}
.site_map_inner{max-width:1520px; margin: 0 auto; position:unset; transform: translateY(-300px);transition: transform .65s ease; }
#site_map .site_map_inner::after{top:120px; width: 200%; left: 50%; transform:translateX(-50%); }
.site_manu{width: 100%;}
.site_manu>ul{width: 100%;gap:unset; height: 100%;}
.site_manu>ul>li{width:25%; height: 100%; padding: 130px 20px; }
.site_manu>ul>li>a{text-align: center;height:unset; font-size:1.875rem; font-weight: bold; }
.site_manu>ul>li>ul{padding-top:30px;}
.site_manu>ul>li>ul>li{margin-bottom:10px;}
.site_manu>ul>li>ul>li:last-child{margin-bottom:0px;}

.site_manu>ul>li>ul>li>a{color:#eee;text-align: center; font-size:1.125rem; font-weight:400; padding:10px 0; }
.site_manu>ul>li>ul>li>a:hover{color: #fff; -webkit-text-stroke: 0.04em;}
#site_map.menu_open .site_map_inner{transform: translateY(0px); transition: transform .65s ease;}
.site_manu>ul>li>a>i::before{background-color:#05295a; border-radius:0; width:3px; height:25px; left: 50%; transform:translateX(-50%); top: -40px; display: none;}

.hd_logo { z-index: 301!important; }
.hd_logo, #k_header .b_hd_right{z-index: 300;}



/*header on*/
#k_header.on, #k_header.scroll, #k_header.menu_open {background-color: #FFF;border-bottom-color: #ececec;}
#k_header.on .b_qna_btn { background: #222; color: #fff; }
#k_header .hd_logo { height: 100%; background: #015aa9; }
#k_header .hd_logo a { display: flex; justify-content: center; align-items: center; padding: 0 30px; }
#k_header.on .lang_btn img, #k_header.scroll .hd_logo img, #k_header.scroll .lang_btn img{filter: none;}
#k_header.on .hd_gnb>ul>li>a, #k_header.scroll .hd_gnb>ul>li>a, #k_header.on .lang_btn svg, #k_header.scroll .lang_btn svg, #k_header.on .b_blog_btn svg, #k_header.scroll .b_blog_btn svg{color: #000;}

#k_header.menu_open .lang_btn i { color: #fff; background: #222; }
#k_header.on .lang_btn, #k_header.scroll .lang_btn{border-color: #000;}
#k_header.on #site_map_btn span, #k_header.scroll #site_map_btn span{background-color: #000;}


#k_header.menu_open #site_map_btn span{background-color: #000;}
#k_header.menu_open #site_map_btn .b_none_line{opacity:0; transform:translateX(5px); transition:all .2s;}
#k_header.menu_open #site_map_btn .b_1nd_line{transform:rotate(45deg);transition:all .2s;}
#k_header.menu_open #site_map_btn .b_3nd_line{transform:rotate(-45deg);transition:all .2s;}
#k_header #site_map_btn span{transition:all .2s;}

#k_header.on .lang_mobile img{filter:none;}


@media screen and (max-width: 1080px){ 
	 .b_login_btn{display:block; margin-right:25px;}
	 .b_login_btn img {filter: brightness(0) invert(1);}
	 .lang_mobile{margin:0; }

     .b_mypage_btn{display:none;}

	 .site_manu{display:none;}
	 .site_manu_m{display:block; width:100%; }
	 .site_manu_m>ul{width:100%;display:flex; flex-direction:column; align-items:center; }
	 .site_manu_m>ul>li{width:100%;border-bottom:1px solid #d9d9d9; cursor:pointer;}
	 .site_manu_m>ul>li>a{font-size:21px; font-weight:bold; padding:20px 0; display:block; text-align: center; pointer-events:none;}
	 .site_manu_m>ul>li>ul{display:none; padding:20px 0; background-color:#f9f9f9; }
	 .site_manu_m>ul>li>ul>li{text-align: center;}
	 .site_manu_m>ul>li>ul>li>a{display:block; padding:10px 0; color:#999; font-size:11px; transition: .3s;}
	 .site_manu_m>ul>li>ul>li:hover>a{-webkit-text-stroke: 0.05em; color:#000; transition: .3s;}

}


/*mobile*/
.lang_mobile{display: none;}

@media screen and (max-width: 1480px){

    #k_header, #k_header .hd_con { height: 80px; }

    .hd_gnb>ul>li>a{padding: 0 40px;line-height: 80px;}
    .hd_gnb>ul>li>ul{padding: 20px 0;}
    .hd_gnb>ul>li>ul>li>a{padding: 10px 0;}


    

    #site_map::after{top: 80px;}
    .site_manu>ul{gap: 180px;}
    .site_manu>ul>li>ul{padding: 20px 0;}
    .site_manu>ul>li>ul>li>a{padding: 10px 0;}
}

@media screen and (max-width: 1280px){

    .site_manu>ul{gap: 120px;}
}

@media screen and (max-width: 1080px){

    .hd_gnb .b_gnb{display: none;}

	  #site_map_btn{ display:block; }
    .site_manu>ul{gap: 100px;}
		.lang_box ul{width:70px;}
		.site_manu>ul{gap: 60px;}
    .site_manu>ul>li>ul>li>a{padding: 8px 0;}
		#site_map_btn{margin-left: 0;}
    
		.site_manu{width: 100%;}
    .site_manu>ul{display: block;flex: none;gap: 0;}
    .site_manu>ul>li{border-bottom:1px solid #d9d9d9;}
    .site_manu>ul>li:last-child{margin-bottom: 0;}
    .site_manu>ul>li>a{text-align: left; padding: 30px;}
    .site_manu>ul>li>ul{display: none;padding-top: 13px; background-color:#595656; }
    .site_manu>ul>li>ul>li>a{font-size: 13px;padding: 8px 50px;}
	  .site_manu>ul>li>a>i{transition:all .25s;}

    .site_manu>ul>li>a>i::before{width: 5px;height: 5px;}
    .site_manu>ul>li:hover>a>i::before{opacity: 0;}
    .site_manu>ul>li.active>a>i::before{width: 5px;height: 5px;top: 4px;opacity: 1;}
		.site_manu>ul>li.active>a>i{padding-left:20px; transition:all .25s;}

		 /*mobile*/
		.lang_box{margin-left:0; }

		#k_header .b_hd_right .b_qna_btn .b_mo_ver{display:block;}
		#k_header .b_hd_right .b_qna_btn .b_pc_ver{display:none;}
		#k_header .b_hd_right .b_qna_btn p{display:none;}

}


@media screen and (max-width: 720px){

    #k_header .hd_con { margin-left: 0; width: 96%; }

    .hd_logo img{max-width: 100px;}

    .lang_box{margin-left: 0;height: 100%;}
    .lang_box ul{top: calc( 100% - 10px);left: 50%;transform: translateX(-50%);width: 50px;padding: 5px 0;}
    .lang_box ul li a{padding: 5px 0;}


    /*mobile*/
    .lang_mobile{display: flex;align-items: center;height: 100%; margin:0 23px; }
    .lang_mobile img{
        filter: brightness(0) invert(1);
    }

    /*header on*/
    #k_header.on .lang_mobile img, #k_header.scroll .lang_mobile img{filter: none;}
    #k_header.menu_open .lang_mobile img{filter: none;}
}

/*---main visual---*/

/*.section img{max-width:100%; display:block; }*/
#mv_con{height: 100%; width: 100%; }

#mv_con .mv{position: relative;overflow: hidden;}
#mv_con .mv figure{display: block;width: 100%;height: 100%;background-size: cover;background-repeat: no-repeat; transform: scale(1); background-position: center center; }

.mv_dot { position: absolute; bottom: 100px; left: 50%; transform:translate(-50%, 0); z-index: 2; }
.mv_dot>span { width: 10px; height: 10px; background: none; border: 1px solid #fff; box-sizing: border-box; opacity: 1; margin: 0 10px; }
.mv_dot>span.swiper-pagination-bullet-active { background: #fff; }

/*PC visual img*/
#main_01 {position:relative; height:720px; }
#main_01 .swiper-slide.on figure{animation-name:mv_up; animation-duration:5s; animation-timing-function:linear ;}
#main_01 .b_mv_navi{position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);z-index:10;width: 92%;max-width: 1420px;} 
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{display:none;}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{display:none;}

.mv_01 figure{background-image: url(/img/b_img/index/b_mv_02.jpg);}


@keyframes mv_up{
    0%{transform: scale(1);}
    100%{transform: scale(1.1);}
}

@-webkit-keyframes mv_up{
    0%{transform: scale(1);}
    100%{transform: scale(1.1);}
}

.mv_text{position: absolute;top: 50%;left: 8%;width: 100%; transform: translateY(-50%); max-wdith: 1420px;z-index: 1;color: #FFF;display: flex; flex-direction: column; text-align: center; text-align: left;}
.mv_text span{display: block;margin-bottom: 1px;}
.mv_text img { width: 100%;  }
.mv_text h2{margin-bottom: 50px; font-family: 'Inter'; }
.mv_text p{ margin-bottom: 20px;}

.more_btn { max-width: 180px; padding: 0 20px; background: #015aa9; border-radius: 50px; transition: .3s; }
.more_btn:hover { background: #222; }
.more_btn a { width: 100%; height: 100%; line-height: 50px; display: flex; justify-content: space-between; align-items: baseline; }
.more_btn a i {
    display: inline-block; /* 인라인 요소에 transform 적용 */
    transform: rotate(-45deg);
    transition: .3s;
}
.more_btn:hover a i { transform: rotate(0);}


#mv_con{position:relative; }
#mv_con .swiper-slide-active .mv_text div{animation-name: mv_txt; animation-duration: 1.2s;animation-timing-function: inear; animation-fill-mode:forwards;}


@keyframes mv_txt {
	0% {transform:translateY(50px); opacity :0;}
	100% {transform:translateY(0px); opacity :1;}
}



@media screen and (max-width: 1480px){

}


@media screen and (max-width: 720px){

	  #main_01{height:600px;}

    .mv_text span{font-size: 13px;margin-bottom: 8px;}
    .mv_text h2{font-size: 34px;line-height: 121%;margin-bottom: 9px;}
    .mv_text h2 i{font-size: 24px;}
    .mv_text p{font-size: 13px;}
    

}






/*---footer---*/
.k_footer{background-color: #222;padding: 30px 0px;padding-bottom: 35px; overflow:hidden; }

.ft_top, .ft_btm{display: flex;}
.ft_top{align-items: center;justify-content: space-between;padding-bottom: 30px; position:relative; } 
.ft_btm{align-items: flex-end;justify-content: space-between; padding-top:40px;}

.ft_top:after{content:''; width:200%; height:1px; background-color:#555; position:absolute; left:50%; bottom:0; transform:translateX(-50%); }
.ft_logo img{display: block;}

.ft_nav>ul::after{content: "";clear: both;display: block;}
.ft_nav>ul>li{float: left; }
.ft_nav>ul>li>a{display: block;width: 100%;height: 100%;font-weight: bold;line-height: 40px;padding: 0 30px;transition: color .3s ease; color:#fff; }
.ft_nav>ul>li:first-child>a{padding-left: 0;}
.ft_nav>ul>li:last-child>a{padding-right: 0;}
.ft_nav>ul>li>ul{display: none;}
.ft_nav>ul>li>a:hover{color: #f39800; }

.ft_info, .ft_copy{line-height: 180%;}
.ft_info i{display: inline-block;font-weight: 400;color: #ececec;padding-right: 24px;position: relative;}

.ft_copy{color: #999;font-weight: 400;} 

@media screen and (max-width: 1480px){

    .ft_nav>ul>li>a{padding: 0 20px;}

    .ft_info i{padding-right: 20px;}
    .ft_info i::after{top: 5px;right: 8px;}
}
.br_960{display:none;}
@media screen and (max-width: 960px){
		.br_960{display:block;}
    .k_footer{padding-top: 0;padding-bottom: 25px;}
    .k_footer .main_container{width: 100%;}

    .ft_top, .ft_btm{display: block;flex: none; padding-bottom:0; }
		.ft_btm{padding-top: 20px;}

    .ft_logo a{padding: 25px 0;}
    .ft_logo img{margin: 0 auto;max-width: 160px;}

    .ft_nav{border-top: 1px solid #555;border-bottom: 1px solid #555;}
    .ft_nav>ul{display: flex;}
    .ft_nav>ul>li{float: none;flex: 1;}
    .ft_nav>ul>li>a{padding: 0;text-align: center;line-height: 45px;}

    .ft_info, .ft_copy{text-align: center;}
    
    .ft_info{margin-bottom: 20px;}
    .ft_info i.b_fax:after{display:none;}
    .ft_info_2 { display: none; }
    .ft_info i { padding-right: 0; }
    #b_footer .b_ft_menu { right: 2%!important; }
}

@media screen and (max-width: 720px){

    .k_footer{padding-bottom: 20px;}

    .ft_logo img{max-width: 106px;}

    .ft_nav>ul>li>a, .ft_info, .ft_copy{font-size: 11px;}
    .ft_info, .ft_copy{line-height: 157%;}
    .ft_nav>ul>li>a{font-weight: bold;}

    .ft_info{margin-bottom: 10px;}
    .ft_info i{font-weight: bold;}
}


/* sub page > sub navi */
.sub_visual{height:645px;}
.b_sub_sec .b_sub_txt{font-size:1.25rem;font-weight: 200; }
.b_sub_sec .b_tit_tit{font-size:4rem; font-weight:bold; }
.b_sub_sec .b_sub_navi{width:100%; height:85px; border-top:1px solid rgba(255,255,255,.2); position:absolute; bottom:0; left:0; }
.b_sub_sec .sv_text{top:60%; bottom:unset; transform:none; }
.b_sub_sec .sv_text .main_container{text-align: left;}

.b_tit_box p{-webkit-text-stroke:0; line-height:1.5; word-break: keep-all}


.sub_navi_wrap{position: absolute; bottom: 0; left: 0; width: 100%; border-top:1px solid rgba(255,255,255,.2); padding: 5px 0;}
.sub_navi{display: flex; justify-content: flex-start;}
.sub_navi>ul>li>ul>li{margin-right:30px;}
.sub_navi>ul>li>ul>li:last-child{margin-right:0px;}

.sub_navi>ul>li>ul>li>a{color:#aaaaaa; position:relative; }
.sub_navi>ul>li>ul>li:first-child>a{padding-left:25px;}
.sub_navi>ul>li>ul>li:last-child>a{padding-right:25px;}
.sub_navi>ul>li>ul>li>a:after{content:''; width:100%; height:2px; background-color:#fff; left:50%; top:-6px; transform:translateX(-50%); position:absolute; display:none;}
.sub_navi>ul>li>ul>li>a.on{color:#fff!important; }
.sub_navi>ul>li>ul>li>a.on:after{display:block; }



.sub_navi_wrap_m{display:none;}
@media screen and (max-width:720px){ 
	 .sub_navi_wrap{display:none;}
	 .sub_navi_wrap_m{display:flex; position: relative; width: 100%; border-top:1px solid rgba(255,255,255,.2); height:55px; margin-top: -55px; z-index:10; }
	 .sub_navi_wrap_m .main_container{display:flex; height:100%;}
	 .sub_navi_m{display:flex; height:100%; align-items:center; padding-right:20px; position:relative; padding-left:15px;}
	 .sub_navi_m>ul>li>ul>li>a{color:#000; }
	 .sub_navi_m .b_now_btn{color:#fff; height:100%;align-items: center; display: flex;width: 100%; justify-content: space-between;}
	 .sub_navi_m>ul>li>a{font-size:11px; display: block; padding: 15px 0 15px 15px;}
	 .sub_navi_m>ul{position:absolute; left:0; top:100%;width: 100%; background-color:#f9f9f9; display:none;}
/*	 #sub_navi_m_01>ul>li{padding:15px 0; }*/
	 #sub_navi_m_01{width: 40%; border-right:1px solid rgba(255,255,255,.2);}
	 #sub_navi_m_01>ul>li{border-bottom:1px solid #eaeaea;}
	 #sub_navi_m_01>ul>li:last-child{border-bottom:0;}
	 #sub_navi_m_01>ul>li>ul{display:none;}

	 #sub_navi_m_02{width: 60%; }
	 #sub_navi_m_02>ul>li>ul{display:none;}
	 #sub_navi_m_02>ul>li>a{display:none;}
	 #sub_navi_m_02>ul>li{display:none;}
	 #sub_navi_m_02>ul>li.on{display:block;}
	 #sub_navi_m_02>ul>li.on>ul{display:block;}
	 #sub_navi_m_02>ul>li>ul>li{border-bottom:1px solid #eaeaea;}
	 #sub_navi_m_02>ul>li>ul>li:last-child{border-bottom:0;}
	 #sub_navi_m_02>ul>li>ul>li>a{display: block; padding: 15px 0 15px 15px;}

}



/*230118*/

.br_1200{display:none;}
@media screen and (max-width:1200px){ 
	.br_1200{display:block;}
	.br_1200x{display:none;}
}

.br_1080{display:none;}
@media screen and (max-width:1080px){ 
	.br_1080{display:block;}
}

@media screen and (max-width:720px){ 
	
}



@media screen and (max-width:720px){ 
	 #main_03 h3{font-size:30px;}

	 
}



#main_02 { width: 100%; }
#main_02 .main_container{display:flex; gap:30px; }
#main_02 .main_container>div { width: 50%; }
#main_02 .b_tit_box{flex-direction:column; justify-content: flex-start;color:#000;width: 60%; }
#main_02 .b_tit_box h2{ margin:9px 0 21px 0;}
#main_02 .b_view_btn{margin:0; margin-top:40px;}
#main_02 .b_cont_box{width: 40%; margin-top: 4px; overflow: hidden; }
#main_02 .b_list_box li {display:flex; flex-direction: column; padding:25px 40px; margin-bottom: 50px; }
#main_02 .b_list_box li a .res_cnt .res_btn { transition: .3s; }
#main_02 .b_list_box li a:hover .res_cnt .res_btn { opacity: .5; }
#main_02 .b_list_box li .res_img img { border-radius: 20px; width: 100%; }
#main_02 .b_list_box li .res_cnt { margin-top: 30px; display: flex; justify-content: space-between; align-content: flex-start; }
#main_02 .b_list_box li .res_cnt .res_tit h3 { margin-bottom: 10px; }

#main_02 .main_cnt_2_1 { width: 100%; height: 100%; }
#main_02 .main_cnt_2_1 .main_inquiry iframe { width: 100%; height: 530px; padding-top: 30px; }
#main_02 .main_cnt_2_2 { width: 100%; height: 100%; padding: 150px 50px; display: flex; gap: 20px; align-items: flex-start; justify-content: center; background: #f9f9f9; }
#main_02 .main_cnt_2_2 .main_cs_list { margin-top: 50px; display: flex; flex-direction: column; gap: 15px; }
#main_02 .main_cnt_2_2 .main_cs_list .main_cs_list_txt { display: flex; justify-content: flex-start; gap: 10px; align-items: center; margin-bottom: 10px; }

@media screen and (max-width:800px){ 
    #main_02 .main_container { flex-direction: column; }
    #main_02 .main_container>div {width: 100%; }
    #main_02 .main_cnt_2_2 { padding: 30px; }
	#main_02 .b_tit_box{width: 100%;}
    #main_02 .main_cnt_2_1 .main_inquiry iframe { height: 850px; }
}
@media screen and (max-width:360px){ 
    #main_02 .main_cnt_2_2 { flex-direction: column; }
}


#main_03 {background-color:#f9f9f9; }
#main_03 .b_tit_box { display: flex; justify-content: space-between; align-content: center; }
#main_03 .b_tit_box .more_btn { padding: 5px 20px; text-align: center; line-height: 35px; border-radius: 22.5px; width: 100px; height: 45px; background: #222; color: #fff; display: block; }
#main_03 .main_product { margin-top: 50px; display: flex; flex-wrap: wrap; width: 100%; justify-content: flex-start; align-items: flex-start; }
#main_03 .main_product li { width: calc(33.33% - 20px); margin-right: 30px; margin-bottom: 30px; }
#main_03 .main_product li:nth-child(3n) { margin-right: 0; }
#main_03 .main_product li .main_03_img_box figure img { width: 100%; height: auto; }

#main_03 .main_product li .main_03_txt_box { background: #fff; padding: 20px; display: flex; justify-content: space-between; align-items: center; }
#main_03 .main_product li .main_03_txt_box .pro_more { width: 50px; height: 50px; background: #ccc; display: flex; align-items: center; justify-content: center; border-radius: 100%; transition: .3s; }
#main_03 .main_product li .main_03_txt_box .pro_more i { color: #fff; transform: rotate(-45deg); transition: .3s; }
#main_03 .main_product li:hover .main_03_txt_box .pro_more { background: #015aa9; }
#main_03 .main_product li:hover .main_03_txt_box .pro_more i { transform: rotate(0); }

@media screen and (max-width: 960px){
    #main_03 .main_product li { width: calc(50% - 30px); }
    #main_03 .main_product li:nth-child(2n) { margin-right: 0; }
    #main_03 .main_product li:nth-child(3n) { margin-right: 30px; }
}
@media screen and (max-width: 500px){
    #main_03 .main_product li { width: 100%; margin-right: 0; margin-bottom: 30px; }
	 #main_03 .main_product li:nth-child(3n) { margin-right: 0; }
}



#main_04 { width: 100%; }
#main_04 #main_procate_wrap { margin-top: 50px; width: 100%; }
#main_04 #main_procate_wrap .swiper-slide img{display: block;margin: 0 auto;width: 100%;}
.view_pagination{display: block;width: 100%;height: 2px;margin-top: 47px;background: #ddd; position: relative;}
.view_pagination .swiper-pagination-progressbar-fill{background: #015aa9;}
#main_04 #main_procate_wrap .procate_txt { margin-top: 20px; }



#main_05 { width: 100%; background: #f9f9f9; }
#main_05 .b_tit_box { display: flex; justify-content: space-between; align-items: flex-start; }
#main_05 .b_tit_box .more_btn a { gap: 10px; }

#main_05 .main_port_wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-top: 50px; }
#main_05 .main_port_wrap>a { width: calc(50% - 30px); margin-bottom: 50px; }
#main_05 .main_port_wrap>a .port_img {  position: relative; }
#main_05 .main_port_wrap>a .port_img::after { transition: .2s; display: block; content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; box-sizing: border-box; }
#main_05 .main_port_wrap>a .port_img img { width: 100%; }
#main_05 .main_port_wrap>a .port_txt { margin-top: 20px; display: flex; flex-direction: column; gap: 15px; }
#main_05 .main_port_wrap>a:hover .port_img::after  { border: 5px solid #015aa9; }

@media screen and (max-width: 720px){
    #main_05 .b_tit_box { flex-direction: column; gap: 30px; }
    #main_05 .main_port_wrap { flex-direction: column; }
    #main_05 .main_port_wrap>a { width: 100%; }
}

#main_06 { width: 100%; }
#main_06 .main_container { display: flex; justify-content: space-between; align-items: flex-start; gap: 50px; }
#main_06 .main_container .main_06_1 { width: 45%; }
#main_06 .main_container .main_06_2 { width: 55%; }

#main_06 .main_06_1 .main_catal_wrap { display: flex; justify-content: space-between; width: 100%; align-items: flex-start; gap: 20px; margin-top: 50px; }
/*
#main_06 .main_06_1 .main_catal_wrap>a { width: 50%; }
#main_06 .main_06_1 .main_catal_wrap>a figure { padding: 50px; width: 100%; background: #f9f9f9; border: 1px solid #d9d9d9; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; position: relative; }
#main_06 .main_06_1 .main_catal_wrap>a figure img { width: 100%; max-width: 190px; }
#main_06 .main_06_1 .main_catal_wrap>a figure .down_btn { position: absolute; bottom: 30px; right: 30px; width: 50px; height: 50px; background: #ccc; border-radius: 100%; color: #fff; display: flex; align-items: center; justify-content: center; transition: .3s; }
#main_06 .main_06_1 .main_catal_wrap>a:hover figure .down_btn { background: #015aa9; } 
#main_06 .main_06_1 .main_catal_wrap>a h3 { margin-bottom: 10px; }
*/

#main_06 .main_06_1 .main_catal_wrap li { width: 50%; }
#main_06 .main_06_1 .main_catal_wrap a figure { padding: 50px; width: 100%; background: #f9f9f9; border: 1px solid #d9d9d9; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; position: relative; }
#main_06 .main_06_1 .main_catal_wrap a figure img { width: 100%; max-width: 190px; height: auto;}
#main_06 .main_06_1 .main_catal_wrap a figure .down_btn { position: absolute; bottom: 30px; right: 30px; width: 50px; height: 50px; background: #ccc; border-radius: 100%; color: #fff; display: flex; align-items: center; justify-content: center; transition: .3s; }
#main_06 .main_06_1 .main_catal_wrap a:hover figure .down_btn { background: #015aa9; } 
#main_06 .main_06_1 .main_catal_wrap a h3 { margin-bottom: 10px; }


#main_06 .main_06_2 .main_law_wrap { display: flex; justify-content: space-between; width: 100%; align-items: flex-start; gap: 20px; margin-top: 50px; flex-direction: column; }
#main_06 .main_06_2 .main_law_wrap>a { display: flex; justify-content: space-between; align-items: center; width: 100%; background: #f9f9f9; border: 1px solid #d9d9d9; padding: 35px; }
#main_06 .main_06_2 .main_law_wrap>a .main_law_icn { display: flex; justify-content: flex-start; align-items: center; gap: 20px; }
#main_06 .main_06_2 .main_law_wrap>a .law_btn { width: 50px; height: 50px; background: #ccc; color: #fff; display: flex; align-items: center; justify-content: center; transition: .3s; border-radius: 100%; flex-shrink: 0}
#main_06 .main_06_2 .main_law_wrap>a .law_btn i { transform: rotate(-45deg); transition: .3s; }
#main_06 .main_06_2 .main_law_wrap>a:hover .law_btn { background: #015aa9; }
#main_06 .main_06_2 .main_law_wrap>a:hover .law_btn i { transform: rotate(0); }

@media screen and (max-width: 1080px){
    #main_06 .main_container { flex-direction: column; gap: 80px; }
    #main_06 .main_container>div { width: 100%!important; }
/*    #main_06 .main_06_1 .main_catal_wrap>a figure { padding: 20px; }*/
    #main_06 .main_06_1 .main_catal_wrap a figure { padding: 20px; }
}
@media screen and (max-width: 720px){
/*
	#main_06 .main_06_2 .main_law_wrap>a{padding: 20px;}
	#main_06 .main_06_2 .main_law_wrap>a .main_law_icn img{width: 56px;}
*/
	
	#main_06 .main_06_2 .main_law_wrap a{padding: 20px;}
	#main_06 .main_06_2 .main_law_wrap a .main_law_icn img{width: 56px;}
	
}


#b_footer {background-color:#001020; padding:40px 0; }
#b_footer .main_container{display:block; position:relative; }
#b_footer .ft_logo{margin-bottom:20px;}
#b_footer .ft_info {display:flex; flex-direction: column; }
#b_footer .ft_info i{color:#fff; font-size:1rem; }
#b_footer .b_ft_info ul{display:flex; margin-bottom:22px;}
#b_footer .b_ft_info ul li:first-child{margin-right:40px; font-weight:500; }
#b_footer .ft_copy{color:#ccc; font-size:0.875rem; margin-top: 30px; }
#b_footer .b_ft_menu{display:flex; flex-direction: column; justify-content: space-between; align-items: flex-end; position:absolute; right:0; top:0; height: 100%; }
#b_footer .b_ft_menu .ft_info_2 { text-align: right; }
#b_footer .b_ft_menu .ft_partner { display: flex; }
#b_footer .b_ft_menu .ft_partner img { width: 90%; }
#b_footer .b_ft_menu li{margin-left:20px;}
#b_footer .b_ft_menu li:first-child{margin-left:0px;}
#b_footer .b_ft_menu li a{display:block; padding:0 5px;}
#b_footer .b_ft_menu .ft_top_btn { width: 50px; height: 50px; background: #fff; border-radius: 100%; transition: .3s; }
#b_footer .b_ft_menu .ft_top_btn:hover { background: #015aa9; }
#b_footer .b_ft_menu .ft_top_btn:hover a { color: #fff; }
#b_footer .b_ft_menu .ft_top_btn a { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }




#k_header .hd_gnb .b_hover_icon.on{ opacity: 1; visibility: visible; }

.hd_gnb>ul>li:after{display:none;}


#k_header.slideUp {
  transform: translateY(-100%);
}
#k_header.slideDown {
  transform: translateY(0);
}


/*회원가입*/
.mbskin,
.register,
#reg_result.mbskin{padding: 150px 0 ; width: 92%; max-width: 1520px; margin: 0 auto;}
.mbskin #flogin{width: 40%;margin: 0 auto;}


.mbskin #fregister .mb_tit,
.mb_tit,
#reg_result.mbskin .mb_tit{font-size: 1.875rem;  background: transparent; color: #000; font-weight: bold; border: none; padding: 0; margin: 0 0 40px; line-height: 1.5;}
.mbskin #fregister .mb_tit br, .mb_tit br{display: none;}
.mbskin #fregister .mb_tit::before{content: none;}

.mbskin #fregister .mb_tit.first{margin: 0 0 10px;}
.mbskin #fregister .mb_tit.last{margin-top: 0!important;}

#reg_result.mbskin .mb_tit{margin-top: 80px;}

.mbskin #fregister_chkall{margin-top: 50px; }
.mbskin #fregister_chkall label{color: #000; font-weight: 500; font-size: 1.25rem;}

#fregister section{margin-top: 50px; padding: 0;}

#fregister h2{font-size: 1.13rem; font-weight: 500;}



.tbl_head01 thead th{padding: 15px 0;}
.tbl_head01 td{padding: 15px;}

.mbskin .btn_submit{height: 50px!important; line-height: 50px; font-size: 1.13rem;background: #05295a; width: 50%; margin: 0 auto; margin-top: 50px;}



#k_w_bo .k_w_table{width: 100%; border-top: solid 1px #222;}
#k_w_bo .k_w_table tr td{padding: 13px; border-bottom: solid 1px #d9d9d9;}
#k_w_bo .k_w_table tr td:nth-child(1){background: #f9f9f9; text-align: center; border-right: 1px solid #d9d9d9; width: 20%;}
#k_w_bo .k_w_table tr td:nth-child(2){padding: 13px;}

.idcheck{width: 100px; height: 40px; background: #fff; line-height: 40px; padding: 10px; border: solid 1px #d9d9d9; transition: .3s;}

#reg_mb_id, #reg_mb_zip{width: 200px;}

#fregisterform .btn_confirm{margin:0 auto; margin-top: 40px;}
#fregisterform .btn_confirm .btn_cancel{height: 50px; width: 35%;}
#fregisterform .btn_confirm .btn_submit{height: 50px;width: 35%; background: #05295a;}
#captcha.m_captcha audio{display: none;}

#fregisterform #reg_mb_email, #fregisterform .full_input,.frm_input{width: 50%;}

#fregisterform .form_01 h2{font-size: 1.13rem; font-weight: 500; padding-bottom: 15px;}




.register_txt{width: 100%; border: solid 1px #d9d9d9; margin-bottom: 50px;}
.register_txt ul{padding:  30px 50px;}
.register_txt ul li{margin: 8px 0; position: relative; padding-left: 20px; }
.register_txt ul li::before{content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: #d9d9d9; position: absolute; left: 0; top: 50%; transform: translateY(-50%);}

.form_p{margin: 10px 0; color: rgb(235, 4, 4); font-size: 0.875rem;}

@media screen and (max-width:720px){
    .register_txt{margin-bottom: 30px;}
    .register_txt ul{padding:  20px 25px;}
    .register_txt ul li{padding-left: 15px;}
    .register_txt ul li::before{width: 4px; height: 4px; transform: none; top: 17%;}



    .k_w_table tbody tr:first-child td:nth-child(2){display: flex;flex-direction: column;}
    #reg_mb_id.frm_input{width: 100%;}
    .idcheck{line-height: inherit;margin-top: 10px;}
}


/*회원가입 완료*/
#reg_result .reg_cong{margin-bottom: 0;}
#reg_result p{padding-top: 20px; border-bottom: solid 1px #e5e9f0;}


#reg_result .btn_confirm a{border-color: #05295a; color: #05295a; transition:  all 0.4s;}
#reg_result .btn_confirm a:hover{background: #05295a; color: #fff;}



@media screen and (max-width:720px){
  
    .mbskin,
    .register{padding: 70px 0; }
    .mbskin #flogin{width: 80%;}
    
    #fregisterform .btn_confirm .btn_cancel{height: 45px; width: 40%;}
    #fregisterform .btn_confirm .btn_submit{height: 45px;width: 40%;}

    #reg_result.mbskin{padding-bottom: 70px;}
    #reg_result.mbskin .mb_tit{margin: 0;}
}
@media screen and (max-width:480px){
    #k_w_bo .k_w_table tr td:nth-child(1){width: 25%;}
    #fregisterform #reg_mb_email, #fregisterform .full_input,.frm_input{width:90%;}
    /* #reg_mb_id.frm_input{width: 100%;} */
    .mbskin #fregister .mb_tit br, .mb_tit br{display: block;}
}


/*br*/
@media screen and (max-width:360px){
    .br_360_x{display: none!important;}
}


/*event*/

@media screen and (max-width:720px){
    .td_subject.etable_txt1{font-size: 16px!important;}
    .etable_tit1{width: 360px!important;}
    .skin_certi_list tbody td:first-child{
        padding-left: 0!important;
    }
}



/*230411 모바일 마이페이지, 로그인 버튼*/
 @media screen and (max-width:1080px){
    .login_m {position: relative; height: 100%; }
	 .b_login_btn { height: 100%; }
    .login_m ul{position: absolute; width: 120px; top: 100%; left: 20%; transform: translateX(-50%); padding: 8px 0; background-color: #fff; z-index: 1; display: none; text-align: center; }
    .login_m ul li a{padding: 6.5px 0; transition: color .25s ease; display: block; color: #999;}
    .login_m ul li:hover a{color: #000;}

} 
@media screen and (max-width:720px){
	.login_m ul {
		width: 100px;
		padding: 5px 0;
	}
}

/* .login_m li{display: block;} */




.btn_cke_sc{font-size: 12px}
.frm_file.frm_input{font-size: 12px;}

.cke_sc_def{font-size: 12px;}
#bo_w button.btn_frmline{font-size: 12px;}

.btn_submit,
.bbs_w_btn1,
#btn_submit{background: #05295a;}


.btn_submit:hover,
.bbs_w_btns_div button.bbs_w_btn1:hover,
#btn_submit:hover{background: #000!important; background-color: #000!important;}

.bbs_w_btns_div button:hover{opacity: 1;}



/*230526 메인페이지 수정*/

.f_icon {
/*    padding: 50px 0;*/
    position: absolute;
	max-width: 630px;
	width: 630px;
	height: 80px;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
}

.f-item {
    max-width: 630px;
    position: relative;
    margin: 0 auto;
    width: 100%;
}

/*
.w-box2 {
    height: 100%;
    background: #fff;
    z-index: 20;
    position: absolute;
    top: 0; left:50%;
    width: 30%;
}
*/

.icon-wrap {
    max-width: 630px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.icon-wrap ul{align-items: center;}
.icon-wrap ul li{width: auto; display: flex;justify-content: center; align-items: center;}
.icon-wrap ul li img{display: block; margin: 0 auto;}

/*
.icon-wrap ul li img {
    width: 100%;
}
*/

@media screen and (max-width: 1480px){
	.f_icon {left: 0; transform: translateX(0)}
}
@media screen and (max-width: 960px){
	.f_icon{width: 400px; max-width: 400px;}
}

@media screen and (max-width: 720px) {
	.f_icon{bottom: 120px; width: 100%; max-width: 100%;}
	
	.icon-wrap ul li img.icon01,
	.icon-wrap ul li img.icon02,
	.icon-wrap ul li img.icon03,
	.icon-wrap ul li img.icon04,
	.icon-wrap ul li img.icon06{width: 60%!important;}
	
	.icon-wrap ul li img.icon07,
	.icon-wrap ul li img.icon08,
	.icon-wrap ul li img.icon10,
	.icon-wrap ul li img.icon13{width: 60%!important;}
	
	.icon-wrap ul li img.icon05,
	.icon-wrap ul li img.icon09{width: 90%!important;}
	
	
	.icon-wrap ul li img.icon11,
	.icon-wrap ul li img.icon12,
	.icon-wrap ul li img.icon14{width: 70%!important;}
	
	.icon-wrap ul li img.icon15,
	.icon-wrap ul li img.icon16{width: 80%!important;}
/*
    .w-box2 {
        width: 690px;
    }

    .icon-wrap {
        padding-left: 0px;
    }
*/
}



/*메인 공지사항 230601*/

.news_box figure{height:0; padding-bottom: 74%;}


/*스케줄 230607*/
#bo_v_img{display:flex; flex-direction:column; margin-top:20px;}
#bo_v_img a:firt-child{margin-top:20px;}


/*수정 230608 */
.pg_current, #k_pg_con .pg_wrap strong.pg_current{background:#05295a!important; border-color:#05295a!important;}

.pg_wrap{margin-top:40px;}

@media screen and (max-width: 720px){
	.pg_page,
	.pg_current{width: 40px!important; height: 40px!important; line-height: 40px!important;}
}


/*수정 230811*/
#fregister .mb_chrome{display: flex; align-content: center; }
#fregister .mb_chrome p{color: red; background:transparent; padding:0; margin: 0;border-bottom:none; font-weight: 500; margin-right: 20px; display: flex; align-self: center;}
#fregister .mb_chrome p::before{content:none; }

#fregister .mb_chrome a{margin: 0;  font-weight:500; padding: 10px 20px; border: solid 1px #d9d9d9; border-radius: 30px; color: #333; display: flex;align-items: center;}
#fregister .mb_chrome a img{width:24px; margin-left: 10px;}

@media screen and (max-width: 720px){
	#fregister .mb_chrome{flex-direction: column;}
	#fregister .mb_chrome p{align-self: flex-start;}
	#fregister .mb_chrome a{width: 150px; margin-top: 20px;}
}

/*메인 btn*/
.m_btnbox {position: absolute; left: 4%; bottom: 80px; z-index: 500; color: white; display: flex; gap: 20px;}
.m_btnbox a {display: inline-block; width: 180px; border: 1px solid #ececec; text-align: center; padding: 10px; font-size: 18px; font-weight: 500; line-height: 22px;}
.m_btnbox img {width: auto; height: 40px;}

@media (max-width: 1480px) {
	.m_btnbox {left: 50%; bottom: 300px; transform: translateX(-50%)}
	
}

@media (max-width: 720px) {
	#main_01 {height: 100vh;}
	
	.m_btnbox {left: 50%; bottom: 220px; transform: translateX(-50%)}
	.m_btnbox a {width: 150px; font-size: 16px; line-height: 20px; padding: 6px;}
	.m_btnbox img {height: 32px; margin-top: 5px;}

}



.hd_gnb.gnb_6>ul>li>a{padding: 0 20px; font-weight: 500;}

#main_02.st_wrap{overflow: inherit}
#main_02.st_wrap .b_tit_box{position: relative;}
.main_sticky{position: sticky; top: 20vh; padding-bottom: 150px;}

@media (max-width: 1200px){	
	.main_sticky{position: initial; padding-bottom: 0;}
}
@media (max-width: 720px){
	.b_about_03.about_list #main_02 .b_list_box li{padding: 20px 10px;}
}


/*영문*/
/*헤더*/
.hd_gnb.hd_gnb_en>ul>li.k_menu_1>ul{left: 10%;}
.hd_gnb.hd_gnb_en>ul>li.k_menu_2>ul{left: 57%;}
.hd_gnb.hd_gnb_en>ul>li.k_menu_3>ul{left: 75.5%; }
.hd_gnb.hd_gnb_en>ul>li.k_menu_4>ul{left: 88%; }

/*메인*/
#main_06.main_06_en .main_container .main_06_1{width: 100%; display: flex; justify-content: space-between; align-items: center;}
#main_06.main_06_en .main_container .main_06_1 .more_btn{margin-top: 50px;}
#main_06.main_06_en .main_06_1 .main_catal_wrap{width: 60%;}
@media (max-width: 1080px){
	.main_05_en#main_05 .b_tit_box{flex-direction: column; gap: 30px;}
}
@media (max-width: 960px){
	#main_06.main_06_en .main_container .main_06_1{flex-direction: column; align-items: flex-start;}
	#main_06.main_06_en .main_container .main_06_1 .b_tit_txt p br{display: none;}
	#main_06.main_06_en .main_container .main_06_1 .more_btn{margin-top: 30px;}
	#main_06.main_06_en .main_06_1 .main_catal_wrap{width: 100%;}
	#main_06.main_06_en .main_06_1 .main_catal_wrap li{width: 50%;}
}
/*서브 네비*/
.sub_navi.sub_navi_en>ul>li>ul>li{margin-right: 0}
.sub_navi.sub_navi_en>ul>li>ul>li>a{padding: 0 20px;}

@media (max-width: 1280px){
	.sub_navi_wrap.sub_navi_wrap_en {display: none; }
	.sub_navi_wrap_m.sub_navi_wrap_m_en{display:flex; position: relative; width: 100%; border-top:1px solid rgba(255,255,255,.2); height:55px; margin-top: -55px; z-index:10; }
	 .sub_navi_wrap_m.sub_navi_wrap_m_en .main_container{display:flex; height:100%;}
	 .sub_navi_wrap_m_en .sub_navi_m{display:flex; height:100%; align-items:center; padding-right:20px; position:relative; padding-left:15px;}
	 .sub_navi_wrap_m_en .sub_navi_m>ul>li>ul>li>a{color:#000; }
	 .sub_navi_wrap_m_en .sub_navi_m .b_now_btn{color:#fff; height:100%;align-items: center; display: flex;width: 100%; justify-content: space-between;}
	 .sub_navi_wrap_m_en .sub_navi_m>ul>li>a{font-size:11px; display: block; padding: 15px 0 15px 15px;}
	 .sub_navi_wrap_m_en .sub_navi_m>ul{position:absolute; left:0; top:100%;width: 100%; background-color:#f9f9f9; display:none;}
/*	 #sub_navi_m_01>ul>li{padding:15px 0; }*/
	 .sub_navi_wrap_m_en #sub_navi_m_01{width: 40%; border-right:1px solid rgba(255,255,255,.2);}
	 .sub_navi_wrap_m_en #sub_navi_m_01>ul>li{border-bottom:1px solid #eaeaea;}
	 .sub_navi_wrap_m_en #sub_navi_m_01>ul>li:last-child{border-bottom:0;}
	 .sub_navi_wrap_m_en #sub_navi_m_01>ul>li>ul{display:none;}

	 .sub_navi_wrap_m_en #sub_navi_m_02{width: 60%; }
	 .sub_navi_wrap_m_en #sub_navi_m_02>ul>li>ul{display:none;}
	 .sub_navi_wrap_m_en #sub_navi_m_02>ul>li>a{display:none;}
	 .sub_navi_wrap_m_en #sub_navi_m_02>ul>li{display:none;}
	 .sub_navi_wrap_m_en #sub_navi_m_02>ul>li.on{display:block;}
	 .sub_navi_wrap_m_en #sub_navi_m_02>ul>li.on>ul{display:block;}
	 .sub_navi_wrap_m_en #sub_navi_m_02>ul>li>ul>li{border-bottom:1px solid #eaeaea;}
	 .sub_navi_wrap_m_en #sub_navi_m_02>ul>li>ul>li:last-child{border-bottom:0;}
	 .sub_navi_wrap_m_en #sub_navi_m_02>ul>li>ul>li>a{display: block; padding: 15px 0 15px 15px;}

}
@media (max-width: 480px){
	.b_sub_sec.b_sub_sec_en .sv_text{top: 45%;}
}