﻿@charset "utf-8";
/* CSS Document */

/* (start)20230808 */
@import "margin.css";
@import "padding.css";
/* //(end)20230808 */

/* wrap */
.wrap{display:block;min-width:1240px;margin:0 auto;padding:0;}/* (modify)20200708 */

/* (start)20220531 */
/* 바우처상세유입유도 */
.wrap .topBanner{height:80px;}
	.topBanner_fixed *{box-sizing:border-box;}
	.topBanner_fixed{position:fixed;top:0;right:0;left:0;margin:0;padding:0;background-color:#1e67e1;z-index:9000;}
	.topBanner_fixed .topBanner_inner{display:block;min-width:1200px;height:80px;margin:0 auto;padding:0;text-align:center;}
	.topBanner_fixed .topBanner_inner > a{display:inline-block;width:400px;height:80px;margin:0 auto;padding:0;background-image:url(../img/eVoucher/topBanner.png);background-repeat:no-repeat;background-position:50% 0;background-size:auto;}
	.topBanner_fixed .topBanner_inner > a.white{background-position:50% -80px;}
/* (end)20220531 */

/* header*/
.header{position:relative;display:block;min-width:1240px;margin:0;padding:0;background-color:#fff;border-bottom:1px solid #e5e5e5;-webkit-transition:background-color 0.3s ease-out;-moz-transition:background-color 0.3s ease-out;-o-transition:background-color 0.3s ease-out;transition:background-color 0.3s ease-out;}/* (modify)20200708 */
.header .header_inner{display:block;min-width:1200px;height:38px;margin:0 auto;padding:21px 20px;}/* (modify)20200708 */
.header .header_inner .logo{float:left;display:inline-block;vertical-align:top;}
.header .header_inner .logo > a{display:block;width:auto;height:38px;margin:0;padding:0;overflow:hidden;}
.header .header_inner .logo > a h1{width:auto;height:38px;font-size:0;line-height:0;}
.header .header_inner .logo > a h1 img{height:38px;}

.header .header_inner .cliend_name{display:none;}

/* login */
.header .header_inner .login{float:left;display:inline-block;vertical-align:top;}
.login ul{display:block;padding:0 12px 0 0;overflow:hidden;}
.login ul li:first-child{margin-left:0;}
.login ul li{float:left;display:inline-block;vertical-align:top;margin:0 0 0 13px;}
.login ul li a{display:block;width:90px;height:32px;margin:0;padding:4px 0 0;font-family:"NanumGothicRegular";font-size:14px;color:#1a32d8;line-height:28px;text-align:center;border:1px solid #1a32d8;border-radius:5px;}
.login ul li a.btn_bizstore{color:#1a32d8;border:1px solid #000;}
.login ul li a.btn_login{width:80px;}
.login ul li a.btn_login:hover{color:#222;border:1px solid #000;}
.login ul li a.btn_sign{color:#fff;border:1px solid #1a32d8;background-color:#1a32d8;}
.login ul li a.btn_sign:hover{color:#fff;border:1px solid #1a32d8;background-color:#1a32d8;}/* (modify)20230613 */
.login ul li a.btn_freeEx{color:#fff;border:1px solid #1a32d8;background-color:#1a32d8;}/* (add)20210127 */
.login ul li a.btn_freeEx:hover{color:#fff;border:1px solid #1a32d8;background-color:#1a32d8;}/* (add)20210127 */

/* buttom_menu_mobile */
.header .header_inner .btn_MenuMobile{position:relative;display:block;width:26px;height:20px;margin:9px 0 0 10px;padding:0;overflow:hidden;}
.header .header_inner .btn_MenuMobile span{display:inline-block;vertical-align:top;transition:all .1s;box-sizing:border-box;}
.header .header_inner .btn_MenuMobile span{position:absolute;left:0;width:100%;height:2px;background-color:#000;border-radius:2px;}

.header .header_inner .btn_MenuMobile span:nth-of-type(1){top:0;}
.header .header_inner .btn_MenuMobile span:nth-of-type(2){top:9px;}
.header .header_inner .btn_MenuMobile span:nth-of-type(3){bottom:0;}

/* 라인이 하나로 합쳐졌다가 엑스자 만들기 */
.header .header_inner .btn_MenuMobile span:nth-of-type(1){-webkit-animation:action_01 .35s forwards;animation:action_01 .35s forwards;}
@-webkit-keyframes action_01{
	0%{-webkit-transform:translateY(9px) rotate(45deg);}
	50%{-webkit-transform:translateY(9px) rotate(0);}
	100%{-webkit-transform:translateY(0) rotate(0);}
}
@keyframes action_01{
	0%{transform:translateY(9px) rotate(45deg);}
	50%{transform:translateY(9px) rotate(0);}
	100%{transform:translateY(0) rotate(0);}
}
.header .header_inner .btn_MenuMobile span:nth-of-type(2){transition:all .25s .25s;opacity:1;}
.header .header_inner .btn_MenuMobile span:nth-of-type(3){-webkit-animation:action_03 .35s forwards;animation:action_03 .35s forwards;}
@-webkit-keyframes action_03{
	0%{-webkit-transform:translateY(-9px) rotate(-45deg);}
	50%{-webkit-transform:translateY(-9px) rotate(0);}
	100%{-webkit-transform:translateY(0) rotate(0);}
}
@keyframes action_03{
	0%{transform:translateY(-9px) rotate(-45deg);}
	50%{transform:translateY(-9px) rotate(0);}
	100%{transform:translateY(0) rotate(0);}
}
.header .header_inner .btn_MenuMobile.on span:nth-of-type(1){-webkit-animation :action_on_01 .35s forwards;animation:action_on_01 .35s forwards;}
@-webkit-keyframes action_on_01{
	0%{transform:translateY(0) rotate(0);}
	50%{transform:translateY(9px) rotate(0);}
	100%{transform:translateY(9px) rotate(45deg);}
}
@keyframes action_on_01{
	0%{transform:translateY(0) rotate(0);}
	50%{transform:translateY(9px) rotate(0);}
	100%{transform:translateY(9px) rotate(45deg);}
}
.header .header_inner .btn_MenuMobile.on span:nth-of-type(2){opacity:0;}
.header .header_inner .btn_MenuMobile.on span:nth-of-type(3){-webkit-animation :action_on_03 .35s forwards;animation:action_on_03 .35s forwards;}
@-webkit-keyframes action_on_03{
	0%{transform:translateY(0) rotate(0);}
	50%{transform:translateY(-9px) rotate(0);}
	100%{transform:translateY(-9px) rotate(-45deg);}
}
@keyframes action_on_03{
	0%{transform:translateY(0) rotate(0);}
	50%{transform:translateY(-9px) rotate(0);}
	100%{transform:translateY(-9px) rotate(-45deg);}
}

/* (modify)20230109 */
/* layer_menu_wrap */
.header .layer_menu_wrap{position:absolute;top:81px;left:0;display:none;width:100%;margin:0;padding:30px 0 0;background-color:#fff;z-index:999;border-bottom:1px solid #dadada;}
.header .layer_menu_wrap .layer_menu_inner{display:block;max-width:1200px;margin:0 auto;padding:0;}
.header .layer_menu_wrap .layer_menu_inner .login_mobile{display:none;}

/* layer_menu */
.layer_menu{display:block;margin:0;padding:0 110px 43px 200px;}
.layer_menu ul{display:block;padding:0;overflow:hidden;}
.layer_menu ul > li{float:left;display:inline-block;vertical-align:top;width:25%;}
.layer_menu ul li dl{display:block;overflow:hidden;}
.layer_menu ul li dl dt,
.layer_menu ul li dl dd{float:left;display:inline-block;vertical-align:top;width:100%;}
.layer_menu ul li dl dt > a{display:block;margin:0;padding:8px 0 10px;font-family:"NotoSansRegular";font-weight:400;font-size:17px;color:#131313;line-height:17px;text-align:left;cursor:default;}
.layer_menu ul li dl dd > ul{display:block;padding:13px 0 0;overflow:hidden;}
.layer_menu ul li dl dd > ul li{float:left;display:inline-block;vertical-align:top;width:100%;}
.layer_menu ul li dl dd > ul li{margin-top:1px;}
.layer_menu ul li dl dd > ul li:first-child{margin-top:0;}
.layer_menu ul li dl dd > ul li > a{display:block;margin:0;padding:6px 0 7px;font-family:"NotoSansLight";font-weight:300;font-size:14px;color:#131313;line-height:14px;letter-spacing:normal;}
.layer_menu ul li dl dd > ul li > a:hover{color:#222;text-decoration:underline;}

.foot_layer_menu{display:block;margin:0;padding:31px 0;text-align:center;background-color:#f3f5f7;}
.foot_layer_menu .foot_layer_menu_inner{display:block;}
.foot_layer_menu .foot_layer_menu_inner > div{display:inline-block;*display:inline;*zoom:1;vertical-align:top;}
.foot_layer_menu > div{display:inline-block;*display:inline;*zoom:1;vertical-align:top;}
.foot_layer_menu div .btn_exp_mana{display:inline-block;vertical-align:top;width:123px;height:29px;margin:0;padding:0 44px 0 15px;font-family:"NanumGothicRegular";font-size:14px;color:#1a32d8;line-height:29px;letter-spacing:0;border:1px solid #1c4595;border-radius:5px;background-image:url(../img/icon/icon_download2.png);background-repeat:no-repeat;background-position:154px 50%;background-size:14px 13px;}/* (modify)20190927 */
.foot_layer_menu div .btn_exp_mana:hover{color:#222;border:1px solid #000;background-image:url(../img/icon/icon_download2_over.png);background-repeat:no-repeat;background-position:154px 50%;background-size:14px 13px;}/* (modify)20190927 */
/* //(modify)20230109 */
/* (add)20190927 */
.ly_exp_mana{position:absolute;top:30px;left:50%;width:182px;margin:0 0 0 -92px;border:1px solid #1c4595;border-radius:5px;background-color:#fff;}
.ly_exp_mana > p{display:block;margin:0;padding:0;text-align:left;}
.ly_exp_mana > p a{display:block;height:27px;margin:0;padding:0 0 0 37px;font-family:"NanumGothicRegular";font-size:12px;color:#000;line-height:27px;letter-spacing:-1px;border-radius:0;background-repeat:no-repeat;background-position:15px 50%;background-size:17px 17px;}
.ly_exp_mana > p a:hover{color:#1c4595;text-decoration:underline;}
.ly_exp_mana > p a.ic_pdf{background-image:url(../img/icon/ic_pdf.png);}
.ly_exp_mana > p a.ic_xlsx{background-image:url(../img/icon/ic_xlsx.png);}
.ly_exp_mana > p a.ic_hwp{background-image:url(../img/icon/ic_hwp.png);}
.ly_exp_mana > p a.ic_word{background-image:url(../img/icon/ic_word.png);}
/* //(add)20190927 */

.foot_layer_menu div ul{display:block;overflow:hidden;}
.foot_layer_menu div ul li:first-child{padding:0;background:none;}
.foot_layer_menu div ul li{float:left;display:inline-block;vertical-align:top;padding:0 0 0 1px;background-image:url(../img/bg/bg_line_date3.png);background-repeat:no-repeat;background-position:0 50%;background-size:1px 19px;}
.foot_layer_menu div ul li > span{display:block;margin:0;padding:7px 28px 8px;font-family:"NanumGothicRegular";font-size:16px;color:#616161;line-height:16px;letter-spacing:-1px;}
.foot_layer_menu div ul li > span a{font-family:"NanumGothicRegular";color:#616161;letter-spacing:-1px;}
.foot_layer_menu div ul li > span a:hover{color:#222;text-decoration:underline;}
/* (add)20210910 */
/* ㄴtype2 */
.foot_layer_menu div ul.type2{display:block;overflow:hidden;}
.foot_layer_menu div ul.type2 li:first-child{padding:0;background:none;}
.foot_layer_menu div ul.type2 li{float:left;display:inline-block;position:relative;vertical-align:top;padding:0 0 0 1px;background:none;cursor:default;}
.foot_layer_menu div ul.type2 li::before{content:'';display:block;position:absolute;top:8px;left:0;width:1px;height:22px;background-color:#cbcbcb;}
.foot_layer_menu div ul.type2 li:first-child::before{display:none;}
.foot_layer_menu div ul.type2 li > span{display:block;margin:0;padding:0 38px 0;font-family:"NotoSansMedium";font-size:24px;color:#222;line-height:normal;letter-spacing:-1px;}
.foot_layer_menu div ul.type2 li > span a{font-family:"NotoSansRegular";color:#222;letter-spacing:-1px;}
.foot_layer_menu div ul.type2 li > span a:hover{text-decoration:underline;}
/* //(add)20210910 */

/* container */
.container{position:relative;display:block;margin:0 auto;padding:0;/*padding:50px 0 90px;*/}/* (modify)20200708 */
.container .container_inner{display:block;width:1200px;margin:0 auto;padding:50px 0 90px;}/* (modify)20200708 */

/* banner_wrap[sub1 to sub4] */
.banner_wrap{display:block;}/* (modify)20200708 */
.banner_wrap .banner_inner{display:block;min-width:1200px;margin:0 auto;padding:0;}/* (modify)20200708 */
.banner_wrap .banner_inner .banner_tit{display:block;width:1200px;margin:0 auto;background-color:#fff;}/* (modify)20200708 *//* (modify)20200708 */
.banner_wrap .banner_inner .banner_tit > .tit_h2{margin:60px 0;padding:0 0 5px;font-family:'NotoSansBold';font-size:54px;color:#333;font-weight:700;line-height:66px;text-align:center;white-space:nowrap;}
.banner_wrap .banner_inner .banner_dsc{display:block;margin:0 auto;background-color:#f4f4f4;}/* (modify)20200708 *//* (modify)20200708 */
.banner_wrap .banner_inner .banner_dsc > p{width:1200px;margin:0 auto;padding:34px 0;font-family:'NotoSansLight';font-size:21px;color:#222;line-height:32px;text-align:center;white-space:nowrap;}
.banner_wrap .banner_inner .banner_dsc > p > span{display:inline;margin:0;padding:0;line-height:32px;}

/*(delete)20200708.banner_wrap.sub1{background-color:#777;background-image:url(../img/bg/bg_sub1_banner_bg1.png);}
.banner_wrap.sub2{background-color:#777;background-image:url(../img/bg/bg_sub2_banner_bg1.png);}
.banner_wrap.sub3{background-color:#777;background-image:url(../img/bg/bg_sub3_banner_bg1.png);}
.banner_wrap.sub4{background-color:#777;background-image:url(../img/bg/bg_sub4_banner_bg1.png);}*/

.banner_wrap.sub2 .banner_inner .banner_dsc > p > span{display:inline;}

/* slide_wrap_index */
.slide_wrap_index{display:block;min-width:1240px;margin:0 auto;padding:0;}/* (modify)20200708 */
.slide_wrap_index .slide_container_index{position:relative;height:521px;overflow:hidden;}
.slide_wrap_index .slide_container_index > a.slick-arrow{display:none;}

/* Slider */
.slide_wrap_index .slide_container_index .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent;}
.slide_wrap_index .slide_container_index .slick-list{position:relative;display:block;height:100%;margin:0;padding:0;overflow:hidden;}
.slide_wrap_index .slide_container_index .slick-list:focus{outline:none;}
.slide_wrap_index .slide_container_index .slick-list.dragging{cursor:pointer;cursor:hand;}
.slide_wrap_index .slide_container_index .slick-slider .slick-track,
.slide_wrap_index .slide_container_index .slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}

.slide_wrap_index .slide_container_index .slick-track{position:relative;top:0;left:0;display:block;}
.slide_wrap_index .slide_container_index .slick-track:before,
.slide_wrap_index .slide_container_index .slick-track:after{display:table;content:'';}
.slide_wrap_index .slide_container_index .slick-track:after{clear:both;}
.slide_wrap_index .slide_container_index .slick-loading .slick-track{visibility:hidden;}
.slide_wrap_index .slide_container_index .slick-slide{display:none;float:left;height:100%;min-height:1px;}

.slide_wrap_index .slide_container_index .slick-initialized .slick-slide{display:block;}
.slide_wrap_index .slide_container_index .slick-loading .slick-slide{visibility:hidden;}
.slide_wrap_index .slide_container_index .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent;}
.slide_wrap_index .slide_container_index .slick-arrow.slick-hidden{display:none;}

.slide_wrap_index .slide_container_index .slide_index{position:relative;top:0;left:0;display:block;width:100%;margin:0;padding:0;background-repeat:no-repeat;background-position:50% 50%;background-size:cover;cursor:default;}
.slide_wrap_index .slide_container_index .slide_index:focus{outline:none;}
.slide_wrap_index .slide_container_index .slide_index .slide_inner_index{display:block;height:521px;max-width:1073px;margin:0 auto;padding:0 0 0 130px;overflow:hidden;}
.slide_wrap_index .slide_container_index .slide_index.slide_01 .slide_inner_index{padding:0 0 0 130px;}
.slide_wrap_index .slide_container_index .slide_index.slide_01{background-image:url(../img/bg/bg_slide_01_pc.png);}

.slide_wrap_index .slide_container_index .slide_index.slide_02 .slide_inner_index{padding:0 130px 0 0;text-align:right;}
.slide_wrap_index .slide_container_index .slide_index.slide_02{background-image:url(../img/bg/bg_slide_02_pc.png);}

.slide_wrap_index .slide_container_index .slide_index.slide_03 .slide_inner_index{position:relative;}/* (add)20200731 */
.slide_wrap_index .slide_container_index .slide_index.slide_03 .slide_inner_index{max-width:1200px;width:1200px;padding:0;}/* (add)20200731 */
.slide_wrap_index .slide_container_index .slide_index.slide_03{background-color:#eceef0;background-image:url(../img/bg/bg_slide_03_pc.png);background-size:inherit;}/* (add)20200731 */

.slide_wrap_index .slide_container_index .slide_index.slide_04 .slide_inner_index{position:relative;}/* (add)20201202 */
.slide_wrap_index .slide_container_index .slide_index.slide_04 .slide_inner_index{max-width:1200px;width:1200px;padding:0;}/* (add)20201202 */
.slide_wrap_index .slide_container_index .slide_index.slide_04{background-image:url(../img/bg/bg_slide_04_pc.png);background-repeat:repeat-x;background-size:inherit;}/* (add)20201202 */

/* rolling */
.slide_wrap_index .slide_container_index .slick-dots{position:absolute;bottom:30px;display:block;width:100%;text-align:center;overflow:hidden;}
.slide_wrap_index .slide_container_index .slick-dots li{display:inline-block;margin:0 5px;}
.slide_wrap_index .slide_container_index .slick-dots li button{width:15px;height:15px;margin:0;padding:0;font-size:0;border:1px solid #6e4e32;background-color:#fff;border-radius:50%;cursor:pointer;}
.slide_wrap_index .slide_container_index .slick-dots li.slick-active button{background-color:#1a32d8;}

/* slide_title_wrap */
.slide_wrap_index .slide_container_index .slide_tit_wrap{display:block;margin:222px 0 0;padding:0;}
.slide_wrap_index .slide_container_index .slide_tit_wrap.eVoucher{margin:116px 0 0;}/* (add)20200828 */
.slide_wrap_index .slide_container_index .slide_03 .slide_tit_wrap{margin-top:98px}/* (add)20200731 */
.slide_wrap_index .slide_container_index .slide_tit_wrap .slide_tit_h2{display:block;padding:9px 0 13px;font-family:'NotoSansMedium';font-size:54px;color:#161616;font-weight:500;line-height:68px;letter-spacing:-1px;text-shadow:0 0 10px rgba(0,0,0,0.75);}/* (modify)20230613 */
.slide_wrap_index .slide_container_index .slide_03 .slide_tit_wrap .slide_tit_h2{display:block;padding:9px 0 13px;font-family:'NotoSansBold';font-size:48px;color:#fff;font-weight:700;line-height:68px;text-shadow:0 0 0 rgba(0,0,0,0.75);}/* (add)20200731 */
.slide_wrap_index .slide_container_index .slide_03 .slide_tit_wrap .slide_tit_h2{padding-bottom:2px;color:#0c419a;}/* (add)20200731 */
.slide_wrap_index .slide_container_index .slide_03 .slide_tit_wrap .slide_tit_h2 span{display:inline-block;vertical-align:top;}/* (add)20200731 */
.slide_wrap_index .slide_container_index .slide_03 .slide_tit_wrap .slide_tit_h2 span{font-size:52px;color:#009cff;letter-spacing:-1px;}/* (add)20200731 */

/* slide_description */
.slide_wrap_index .slide_container_index .slide_desc{display:block;margin:25px 0 0;padding:0;}
.slide_wrap_index .slide_container_index .slide_desc .slide_tit_h3{display:block;margin:0;padding:4px 0 6px;font-family:'NotoSansMedium';font-size:34px;color:#fff;font-weight:400;line-height:41px;text-shadow:0 0 0 rgba(0,0,0,0.75);}/* (add)20200828 */
.slide_wrap_index .slide_container_index .slide_desc > p{display:block;margin:0;padding:4px 0 5px;font-family:'NotoSansRegular';font-size:21px;color:#fff;font-weight:400;line-height:31px;text-shadow:0 0 10px rgba(0,0,0,0.75);}
.slide_wrap_index .slide_container_index .slide_desc > p span{display:block;}
.slide_wrap_index .slide_container_index .slide_desc > p .br_desc_mobile{display:none;}

.slide_wrap_index .slide_container_index .slide_03 .slide_desc{margin:0;}/* (add)20200731 */
.slide_wrap_index .slide_container_index .slide_03 .slide_desc > p{display:block;margin:0;padding:4px 0 5px;font-family:'NotoSansRegular';font-size:24px;color:#222;font-weight:400;line-height:31px;text-shadow:0 0 0 rgba(0,0,0,0.75);}/* (add)20200731 */
.slide_wrap_index .slide_container_index .slide_03 .slide_desc ul li{display:block;margin-bottom:7px;padding:0 0 1px 14px;font-family:'NotoSansRegular';font-size:15px;color:#222;font-weight:400;line-height:19px;background:url("../img/bul/blue_dot.png") no-repeat 0 8px;}/* (add)20200731 */
.slide_wrap_index .slide_container_index .slide_03 .slide_desc ul li span{font-family:'NotoSansLight';font-size:13px;font-weight:300;color:#888;}/* (add)20200731 */

/* (start)20230109 */
.slide_wrap_index .slide_container_index.type2{height:416px;background-color:#fff;}/* (modify)20230613 */
.slide_wrap_index .slide_container_index.type2 .slide_index .slide_inner_index{height:416px;}
.slide_wrap_index .slide_container_index.type2 .slide_index .slide_inner_index.type1{max-width:1200px;padding:0 40px;}

.slide_wrap_index .slide_container_index.type2 .slide_index.slide_10{background-image:url(../img/bg/bg_slide_10_in_pc.png);}
.slide_wrap_index .slide_container_index.type2 .slide_tit_wrap{margin:115px 0 0;}
.slide_wrap_index .slide_container_index.type2 .slide_tit_wrap .slide_tit_h2{font-size:40px;line-height:56px;text-shadow:none;}

.bt_register{display:inline-block;width:213px;height:65px;text-align:center;border-radius:32px;background-image:-moz-linear-gradient( 0deg, rgb(21,131,227) 0%, rgb(21,76,215) 100%);background-image:-webkit-linear-gradient( 0deg, rgb(21,131,227) 0%, rgb(21,76,215) 100%);background-image:-ms-linear-gradient( 0deg, rgb(21,131,227) 0%, rgb(21,76,215) 100%);}
.bt_register span{display:inline-block;height:65px;padding:0 24px 0 0;font-family:'NotoSansBold';font-weight:700;font-size:19px;color:#fff;line-height:65px;text-align:center;background-image:url("../img/icon/ic_seeMore.png");background-repeat:no-repeat;background-position:100% 50%;}
/* //(end)20230109 */

/* section */
.section_wrap{display:block;margin:0 auto;padding:0;}/* (modify)20200708 */
.section_wrap .section{position:relative;display:block;min-width:1240px;margin:0 auto;padding:0;}/* (modify)20200708 */
.section_wrap .section .section_inner{display:block;width:1200px;margin:0 auto;padding:0;}/* (modify)20200708 */
.section_wrap .section .section_inner.mn{padding:70px 0;}

.section_wrap .section.sec1,
.section_wrap .section.sec3,
.section_wrap .section.sec5{background-color:#f3f5f7;}
.section_wrap .section.sec2,
.section_wrap .section.sec4,
.section_wrap .section.sec6{background-color:#fff;}/* (add)20180828 */

.section_wrap .section.sec4 .section_inner.mn{padding:70px 0 60px;}/* (add)20171108 */
.section_wrap .section.sec6 .section_inner.mn{padding:70px 0 90px;}/* (modify)20191022 */

/* section_title_wrap */
.sec_tit_wrap{display:block;margin:0;padding:0;}
.sec_tit_wrap .sec_tit_h3{display:block;margin:0;padding:9px 0 13px;font-family:'NotoSansLight';font-weight:normal;font-size:43px;color:#222;line-height:56px;text-align:center;word-break:keep-all;}/* (modify)20171108 */
.sec_tit_wrap .sec_tit_h4{display:inline-block;margin-top:40px;padding-left:55px;font-family:'NotoSansMedium';font-size:32px;color:#222;line-height:42px;}/* (add)20180828 */
/* (add)20210615 */
.serProDes_body .biz_type_price{padding:70px 100px 110px;}
.serProDes_body .sec_tit_wrap .sec_tit_h4{display:block;margin:0 0 20px;padding:3px 0 5px 0;text-align:left;font-weight:normal;}
.serProDes_body .sec_tit_wrap .sec_tit_h4.price{display:block;margin:0;padding:10px 0 13px;font-family:'NotoSansRegular';font-weight:normal;font-size:43px;color:#222;line-height:56px;}
.serProDes_body .biz_type_price .biz_price_tbl > p.biz_price_desc{margin:10px 0 0;padding:3px 0 4px;font-family:'NanumGothicRegular';font-size:15px;color:#555;}/* (add)20210617 */
/* //(add)20210615 */

/* section_description */
.sec_descrip{display:block;margin:0;padding:0;}
.sec_descrip > p{display:block;margin:10px 0 0;padding:3px 0 4px;font-family:'NanumGothicRegular';font-size:17px;color:#222;line-height:28px;text-align:center;letter-spacing:-1px;word-break:keep-all;}/* (modify)20191022 */

/* partber_wrap */
.partner_wrap{display:block;margin:0;padding:60px 0 100px;}
.partner_wrap .partner_inner{width:1240px;margin:0 auto;}/* (modify)20200708 */
.partner_wrap .partner_inner .partner{padding:0 30px;overflow:hidden;}/* (modify)20200708 */
.partner_wrap .partner_inner .partner_box{float:left;width:25%;}
.partner_wrap .partner_inner .partner_box .box{position:relative;margin:0 30px;padding-bottom:33px;}
.partner_wrap .partner_inner .partner_box .box .tit_h4{height:35px;font-family:'NotoSansRegular';font-weight:normal;font-size:20px;color:#222;line-height:35px;}/* (modify)20171108 */
.partner_wrap .partner_inner .partner_box .box .tit_h4 span{display:inline-block;width:35px;height:35px;margin-right:10px;background-image:url(../img/bg/bg_sprite_main.png);background-repeat:no-repeat;background-size:35px auto;vertical-align:top;}/* (modify)20170703 */
.partner_wrap .partner_inner .partner_box .box .tit_h4 span.img_pn01{background-position:0 0;}/* (add)20170703 */
.partner_wrap .partner_inner .partner_box .box .tit_h4 span.img_pn02{background-position:0 -37px;}/* (modify)20170703 */
.partner_wrap .partner_inner .partner_box .box .tit_h4 span.img_pn03{background-position:0 -74px;}/* (modify)20170703 */
.partner_wrap .partner_inner .partner_box .box .tit_h4 span.img_pn04{background-position:0 -111px;}/* (modify)20170703 */
.partner_wrap .partner_inner .partner_box .box .txt_cmd{margin-top:6px;font-family:'NanumGothicRegular';font-size:14px;color:#222;line-height:26px;letter-spacing:-1px;}
.partner_wrap .partner_inner .partner_box .box .txt_cmd br{display:none;}
.partner_wrap .partner_inner .partner_box .box a{position:absolute;bottom:0;display:inline-block;padding:2px 12px 3px 0;font-family:'NanumGothicRegular';font-size:14px;color:#0070c9;line-height:14px;letter-spacing:-1px;background-color:transparent;background-image:url(../img/icon/icon_read_more.png);background-repeat:no-repeat;background-size:auto 10px;background-position:100% 5px;}/* (modify)20170626 */
.partner_wrap .partner_inner .partner_box .box a:hover{text-decoration:underline;}

/* Youtube_Video_Player_wrap[Main Page] */
.youtube_video_player_wrap{position:relative;width:1064px;margin:50px auto 30px;padding:0 0 0 16px;overflow:hidden;}/* (modify)20200708 */
.youtube_video_player_wrap .youtube_video_player_inner{display:block;width:834px;margin:0 auto;padding:0 230px 0 0;}/* (modify)20200708 */
.youtube_video_player_wrap .youtube_video_player_inner .youtube_add_vides{display:none;}

/* youtube_video_player */
.youtube_video_player_wrap .youtube_video_player_inner .youtube_video_player{position:relative;float:left;width:100%;margin:0;padding:0;padding-bottom:56.50%;overflow:hidden;}
.youtube_video_player_wrap .youtube_video_player_inner .youtube_video_player iframe,
.youtube_video_player_wrap .youtube_video_player_inner .youtube_video_player object,
.youtube_video_player_wrap .youtube_video_player_inner .youtube_video_player embed{position:absolute;top:0;left:0;width:100%;height:100%;margin:0;padding:0;}

.youtube_video_player_wrap .vidoe_lnb_bnb_wrap{position:absolute;top:0;right:0;width:210px;height:100%;border-right:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;overflow:auto;}
.youtube_video_player_wrap .vidoe_lnb_bnb_wrap .vidoe_lnb_bnb{width:195px !important;}/* (modify)20200708 */
.youtube_video_player_wrap .vidoe_lnb_bnb_wrap .vidoe_lnb_bnb ul{width:194px !important;overflow:hidden;}/* (modify)20200708 */
.youtube_video_player_wrap .vidoe_lnb_bnb_wrap .vidoe_lnb_bnb ul li:first-child{padding-top:0;}
.youtube_video_player_wrap .vidoe_lnb_bnb_wrap .vidoe_lnb_bnb ul li{float:left;display:inline-block;vertical-align:top;width:100%;margin:0;padding:10px 0 0;}
.vidoe_lnb_bnb_wrap .vidoe_lnb_bnb ul li a{display:block;margin:0;padding:0;background-color:transparent;}
.vidoe_lnb_bnb_wrap .vidoe_lnb_bnb ul li a > div{display:block;width:194px;height:111px;overflow:hidden;}
.vidoe_lnb_bnb_wrap .vidoe_lnb_bnb ul li a div img{display:inline-block;vertical-align:top;width:102%;margin-top:-10%;}

.vidoe_lnb_bnb_wrap .vidoe_lnb_bnb ul li a > h4{display:block;max-width:100%;margin:0;padding:5px 0 3px;font-family:'NotoSansLight';font-size:14px;color:#222;line-height:14px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.vidoe_lnb_bnb_wrap .vidoe_lnb_bnb ul li a > span{display:block;margin:0;padding:3px 0 0;font-family:'NanumGothicRegular';font-size:12px;color:#3d3d3d;line-height:12px;letter-spacing:-1px;}

#mCSB_1_container{width:195px !important;}/* (modify)20200708 */
#mCSB_1_scrollbar_vertical .mCSB_draggerRail{margin:0 1px;padding:0;width:2px !important;background-color:#e2e2e2 !important;box-shadow:none !important;}
#mCSB_1_scrollbar_vertical .mCSB_buttonDown,.mCSB_buttonUp{display:none !important;}
#mCSB_1_scrollbar_vertical .mCSB_draggerContainer{width:4px !important;margin:0 !important;}
.mCSB_container_wrapper > .mCSB_container{padding-left:0 !important;}
#mCSB_1_scrollbar_vertical .mCSB_dragger_bar{width:4px !important;background-color:#777 !important;}
#mCSB_1_scrollbar_vertical{width:4px !important;margin-right:2px;}
#mCSB_1_scrollbar_horizontal{display:none !important;}

/* PC웹상품 */
.pc_app_wrap{}

/* tit_app_mb[Main Page section02 ] */
.main_tit_app{margin:0 0 30px;text-align:center;}
.main_tit_app .tit_h4{display:inline-block;height:42px;margin-top:40px;padding-left:55px;font-family:'NotoSansThin';font-size:32px;color:#333;line-height:40px;background-repeat:no-repeat;background-position:0 50%;vertical-align:top;}
.main_tit_app .tit_h4.icon_pc{background-image:url(../img/icon/icon_pc.png);}
.main_tit_app .tit_h4.icon_mb{background-image:url(../img/icon/icon_mobile.png);}

/* pc_app_list */
.pc_app_list{padding-bottom:40px;overflow:hidden;}
.pc_app_list .pc_app{float:left;display:inline-block;width:20%;min-height:202px;}
.pc_app_list .pc_app .pc_app_inner{display:block;}
.pc_app_list .pc_app .pc_app_box{display:block;min-height:202px;margin:10px;border-top:1px solid #ebebeb;border-left:1px solid #ebebeb;border-right:1px solid #999;border-bottom:1px solid #999;border-radius:5px;-moz-radius:5px;-ms-radius:5px;-o-radius:5px;}
.pc_app_list .pc_app .pc_app_box dl{display:block;}
.pc_app_list .pc_app .pc_app_box dl dt{display:block;padding:30px 0 10px 0;text-align:center;}
.pc_app_list .pc_app .pc_app_box dl dt img{width:74px;height:74px;}
.pc_app_list .pc_app .pc_app_box dl dd .tit_h5{display:block;padding:9px 0 11px;font-family:'NotoSansLight';font-size:16px;line-height:16px;color:#000;text-align:center;background-image:url(../img/bg/bg_main_sec02_tit_line.png);background-repeat:no-repeat;background-position:center bottom;}
.pc_app_list .pc_app .pc_app_box dl dd .txt_detial{display:block;margin-top:15px;padding:0 13px 1px;font-family:'NanumGothicRegular';font-size:12px;color:#999;line-height:20px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}

/* pc_app_list:hover */
.pc_app_list .pc_app .pc_app_box a.txt_read_more{display:none;position:absolute;left:20px;bottom:14px;padding:4px 10px 5px 0;font-family:'NanumGothicRegular';font-size:14px;line-height:14px;color:#fff;letter-spacing:-1px;background-image:url(../img/icon/icon_read_more_01.png);background-repeat:no-repeat;background-position:right 7px;background-size:5px 10px;}
.pc_app_list .pc_app .pc_app_box:hover{position:relative;background-color:#64a6e8;}
.pc_app_list .pc_app .pc_app_box:hover dl dt{display:inline-block;padding:17px 0 0 20px;}
.pc_app_list .pc_app .pc_app_box:hover dl dt img{width:37px;height:37px;}
.pc_app_list .pc_app .pc_app_box:hover dl dd .tit_h5{position:absolute;top:18px;/*left:70px;*/left:68px;color:#fff;background-image:none;}/* (modify)20180119 */
.pc_app_list .pc_app .pc_app_box:hover dl dd .txt_detial{margin:10px 0 0 7px;padding-bottom:15px;font-family:'NanumGothicRegular';color:#fff;white-space:normal;}
.pc_app_list .pc_app .pc_app_box:hover a.txt_read_more{display:block;}
.pc_app_list .pc_app .pc_app_box:hover a.txt_read_more:hover{text-decoration:underline;}
.pc_app_list .pc_app .pc_app_box:hover a.txt_read_more:before{content:"";position:absolute;top:-6px;left:0;width:19px;height:1px;background-color:#fff;}
.pc_app_list .pc_app .pc_app_box.wait:hover dl dd .tit_h5{left:60px;}/* (add)20180119 */
.pc_app_list .pc_app .pc_app_box.wait:hover{position:relative;background-color:#7d7978;}
.pc_app_list .pc_app .pc_app_box.wait:hover a.txt_read_more{display:block;cursor:default;background:none;}
.pc_app_list .pc_app .pc_app_box.wait:hover a.txt_read_more:hover{text-decoration:none;}

/* Mobile앱상품 */
.mb_app_list{padding-bottom:20px;overflow:hidden;}
.mb_app_list .mb_app{float:left;display:inline-block;width:33.3%;min-height:334px;}
.mb_app_list .mb_app:first-child{width:33.4%;}
.mb_app_list .mb_app .mb_app_inner{display:block;margin:10px;}
.mb_app_list .mb_app .mb_app_inner > a{display:block;min-height:334px;border-top:1px solid #ebebeb;border-left:1px solid #ebebeb;border-right:1px solid #999;border-bottom:1px solid #999;border-radius:5px;-moz-radius:5px;-ms-radius:5px;-o-radius:5px;}
.mb_app_list .mb_app .mb_app_inner > a:hover{border-top:1px solid #c5c5c5;border-left:1px solid #c5c5c5;border-right:1px solid #808080;border-bottom:1px solid #808080;border-radius:5px;box-shadow:0 0 10px 1px rgba(0,0,0,0.18);-webkit-box-shadow:0 0 10px 1px rgba(0,0,0,0.18);-moz-box-shadow:0 0 10px 1px rgba(0,0,0,0.18);box-shadow:0 0 10px 1px rgba(0,0,0,0.18);}
.mb_app_list .mb_app .mb_app_inner .mb_view_thumb{position:relative;width:100%;height:221px;border-bottom:1px solid #d6d6d6;border-top-right-radius:5px;border-top-left-radius:5px;background-repeat:no-repeat;background-position:50%;background-size:cover;}/* (modify)20170627 */
.mb_app_list .mb_app .mb_app_inner .mb_app_detial{display:block;position:relative;height:112px;padding:0 0 0 114px;overflow:hidden;}
.mb_app_list .mb_app .mb_app_inner .mb_app_detial img{float:left;width:65px;height:65px;margin-left:-114px;padding:22px 0 0 30px;border-bottom:none;border-radius:0;}
.mb_app_list .mb_app .mb_app_inner .mb_app_detial .mb_txt_detial{padding:20px 30px 0 0;}
.mb_app_list .mb_app .mb_app_inner .mb_app_detial .mb_txt_detial .tit_h5{display:block;margin-bottom:3px;padding:3px 0 5px;font-family:'NotoSansLight';font-size:16px;color:#000;line-height:16px;}
.mb_app_list .mb_app .mb_app_inner .mb_app_detial .mb_txt_detial .txt_detial{display:block;height:36px;padding:1px 0 2px;font-family:'NanumGothicRegular';font-size:12px;color:#333;line-height:18px;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;word-wrap:break-word;overflow:hidden;}
.mb_app_list .mb_app .mb_app_inner .mb_app_detial .link_read_more{display:none;}

/* 비즈니스 앱 스토어 ‘bizStore’ */
.info_feature_wrap{max-width:1200px;margin:0 auto;padding:70px 0 27px;}
.info_feature_wrap .info_feature_inner{overflow:hidden;}
/*.info_feature_wrap .info_feature_inner .slick-list{display:block;height:100%;border:5px solid blue;}*/
.info_feature_wrap .info_feature_inner .info_feature{float:left;position:relative;width:50%;min-height:230px;margin-top:20px;vertical-align:top;}/* (modify)20170703 */
.info_feature_wrap .info_feature_inner .info_feature .info_box{display:block;padding-left:305px;overflow:hidden;}/* (modify)20170703 */
.info_feature_wrap .info_feature_inner .info_feature .info_box .info_img{position:absolute;top:0;left:20px;}/* (modify)20170703 */
.info_feature_wrap .info_feature_inner .info_feature .info_box .txt_info{float:left;margin-top:20px;}/* (modify)20170703 */
.info_feature_wrap .info_feature_inner .info_feature .info_box .txt_info.lb2{margin-top:10px;}
.info_feature_wrap .info_feature_inner .info_feature .info_box .txt_info .tit_h4{font-family:'NotoSansRegular';font-weight:normal;font-size:20px;color:#222;line-height:25px;}/* (modify)20171108 */
.info_feature_wrap .info_feature_inner .info_feature .info_box .txt_info .tit_h4 > span{display:block;}/* (add)20170823 */
.info_feature_wrap .info_feature_inner .info_feature .info_box .txt_info .txt_cmd{margin-top:15px;font-family:'NanumGothicRegular';font-size:14px;color:#222;line-height:22px;letter-spacing:-1px;word-break:keep-all;}
.info_feature_wrap .info_feature_inner .info_feature .info_box .txt_info .txt_cmd br{display:none;}
.info_feature_wrap .info_feature_inner .info_feature .info_box .txt_info .txt_cmd strong{display:block;}
.info_feature_wrap .info_feature_inner .info_feature .info_box .txt_info .txt_cmd strong span{display:inline-block;padding-left:15px;font-family:'NotoSansLight';font-size:14px;color:#222;font-weight:normal;line-height:22px;background-image:url(../img/icon/icon_tick.png);background-repeat:no-repeat;background-position:0 3px;}

.info_feature_wrap .btn_more{margin-top:0;text-align:center;}
.info_feature_wrap .btn_more a{display:inline-block;padding:0 10px 1px 0;font-family:'NanumGothicBold';font-weight:700;font-size:14px;color:#0070c9;line-height:14px;background-image:url(../img/icon/icon_read_more.png);background-repeat:no-repeat;background-position:100% 3px;background-size:auto 10px;}
.info_feature_wrap .btn_more a:hover{text-decoration:underline;}

/* 비즈플레이 소식[Biz News] */
.biz_news_slide{position:relative;display:block;max-width:1200px;margin:0 auto;padding:50px 0 0;}
.biz_news_slide .biz_news_inner{display:block;max-width:1080px;margin:0 auto;padding:0 0 45px 0;text-align:center;}/* (modify)20170814 */
.biz_news_slide .biz_news_inner .biz_slide_item{position:relative;bottom:0;float:left;display:inline-block;width:33.33%;}
.biz_news_slide .biz_news_inner .biz_slide_item > a{display:block;margin:0;padding-bottom:10px;border:1px solid #999;border-top:1px solid #ebebeb;border-left:1px solid #ededed;border-radius:5px;background-color:#fff;}/* (modify)20170814 */
.biz_news_slide .biz_news_inner .biz_slide_item > a:link,
.biz_news_slide .biz_news_inner .biz_slide_item > a:visited,
.biz_news_slide .biz_news_inner .biz_slide_item > a:hover,
.biz_news_slide .biz_news_inner .biz_slide_item > a:active{outline:none;}
.biz_news_slide .biz_news_inner .biz_slide_item .slide_image{display:block;margin:0;padding:0;}
.biz_news_slide .biz_news_inner .biz_slide_item .slide_image img{width:100%;min-height:164px;border-top-right-radius:5px;border-top-left-radius:5px;border-bottom:1px solid #d6d6d6;}/* (modify)20170627 */
.biz_news_slide .biz_news_inner .biz_slide_item .slide_text{display:block;margin:0;padding:10px 20px 7px 20px;}
.biz_news_slide .biz_news_inner .biz_slide_item .slide_text .tit_h4{padding:2px 0 3px 0;font-family:'NanumGothicBold';font-size:12px;color:#1a32d8;line-height:26px;font-weight:700;}
.biz_news_slide .biz_news_inner .biz_slide_item .slide_text .tit_h5{display:block;padding:0;font-family:'NanumGothicRegular';font-size:15px;color:#222;line-height:26px;font-weight:400;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;word-wrap:break-word;height:78px;}
.biz_news_slide .biz_news_inner .biz_slide_item:hover .slide_text .tit_h5{text-decoration:underline;}

/* (add)20171108 */
.biz_news_slide.biz_slide01{padding:19px 0 0;}
.biz_news_slide.biz_slide01 .biz_news_inner{display:block;max-width:1058px;margin:0 auto;padding-bottom:19px;}
.biz_news_slide.biz_slide01 .biz_news_inner .biz_slide_item{position:relative;bottom:0;float:left;display:inline-block;width:100%;}
.biz_news_slide.biz_slide01 .biz_news_inner .biz_slide_item > a{display:block;border:0;border-radius:0;}
.biz_news_slide.biz_slide01 .biz_news_inner .biz_slide_item img{display:block;width:100%;}
/* //(add)20171108 */

.biz_news_slide .biz_news_inner .slick-prev,
.biz_news_slide .biz_news_inner .slick-next{position:absolute;top:50%;display:inline-block;width:38px;height:57px;margin-top:-29px;font-size:0;background-color:transparent;background-repeat:no-repeat;background-position:50% 0;background-size:24px 57px;}/* (modify)20170814 */
.biz_news_slide .biz_news_inner .slick-prev{left:0;background-image:url(../img/btn/btn_prev_biz_over.png);}/* (modify)20170814 */
.biz_news_slide .biz_news_inner .slick-next{right:0;background-image:url(../img/btn/btn_next_biz_over.png);}/* (modify)20170814 */
.biz_news_slide .biz_news_inner .slick-prev.slick-disabled{background-image:url(../img/btn/btn_prev_biz.png);cursor:default;opacity:0.75;}
.biz_news_slide .biz_news_inner .slick-next.slick-disabled{background-image:url(../img/btn/btn_next_biz.png);cursor:default;opacity:0.75;}

/* Slider */
.biz_news_slide .biz_news_inner .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent;}
.biz_news_slide .biz_news_inner .slick-list{position:relative;display:block;height:100%;margin:0;padding:0;overflow:hidden;}
.biz_news_slide .biz_news_inner .slick-list:focus{outline:none;}
.biz_news_slide .biz_news_inner .slick-list.dragging{cursor:pointer;cursor:hand;}
.biz_news_slide .biz_news_inner .slick-slider .slick-track,
.biz_news_slide .biz_news_inner .slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}

.biz_news_slide .biz_news_inner .slick-track{position:relative;top:0;left:0;display:block;}
.biz_news_slide .biz_news_inner .slick-track:before,
.biz_news_slide .biz_news_inner .slick-track:after{display:table;content:'';}
.biz_news_slide .biz_news_inner .slick-track:after{clear:both;}
.biz_news_slide .biz_news_inner .slick-loading .slick-track{visibility:hidden;}
.biz_news_slide .biz_news_inner .slick-slide{float:left;height:100%;min-height:1px;}

.biz_news_slide .biz_news_inner .slick-initialized .slick-slide{display:block;}
.biz_news_slide .biz_news_inner .slick-loading .slick-slide{visibility:hidden;}
.biz_news_slide .biz_news_inner .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent;}
.biz_news_slide .biz_news_inner .slick-arrow.slick-hidden{display:none;}

/* ㄴ[Biz News]rolling */
.biz_news_slide .biz_news_inner .slick-dots{display:table;*display:inline;zoom:1;vertical-align:top;margin:16px auto 0;text-align:center;overflow:hidden;}
.biz_news_slide .biz_news_inner .slick-dots li{display:inline-block;margin:0 5px;overflow:hidden;}
.biz_news_slide .biz_news_inner .slick-dots li button{width:11px;height:11px;margin:0;padding:0;font-size:0;border:1px solid #bcbcbc;background-color:#fff;border-radius:50%;cursor:pointer;}
.biz_news_slide .biz_news_inner .slick-dots li.slick-active button{background-color:#1a32d8;}
.biz_news_slide .biz_news_inner > a.slide_slick{display:inline-block;*display:inline;zoom:1;vertical-align:top;margin:25px 0 0 5px;padding:0;width:9px;height:9px;border:1px solid #bcbcbc;background-repeat:no-repeat;background-position:50% 50%;background-color:#fff;}
.biz_news_slide .biz_news_inner > a.slide_slick_play{background-image:url(../img/icon/icon_slide_sec4_play.png);}
.biz_news_slide .biz_news_inner > a.slide_slick_pause{background-image:url(../img/icon/icon_slide_sec4_pause.png);}

/* ㄴ[Biz News]app */
.biz_news_app{display:block;max-width:1200px;margin:100px auto 10px;padding:0;overflow:hidden;}
.biz_news_app.type1{margin:40px auto 20px;}/* (add)20180612 */
.biz_news_app .app_item{float:left;display:inline-block;width:25%;padding:0;text-align:center;}
.biz_news_app .app_item > a{display:block;padding:0 20px 0 20px;background-color:transparent;box-sizing:border-box;}/* (modify)20170627 */
.biz_news_app .app_item .app_image{display:inline-block;width:132px;height:120px;background-image:url(../img/bg/bg_sprite_main_sub6.png);background-repeat:no-repeat;background-position:50%;background-size:132px 1100px;}
.biz_news_app .app_item .app_image.icon1{background-position:0 0;}
.biz_news_app .app_item:hover .app_image.icon1,
.biz_news_app .app_item.on .app_image.icon1{background-position:0 -140px;}
.biz_news_app .app_item .app_image.icon2{background-position:0 -280px;}
.biz_news_app .app_item:hover .app_image.icon2,
.biz_news_app .app_item.on .app_image.icon2{background-position:0 -420px;}
.biz_news_app .app_item .app_image.icon3{background-position:0 -560px;}
.biz_news_app .app_item:hover .app_image.icon3,
.biz_news_app .app_item.on .app_image.icon3{background-position:0 -700px;}
.biz_news_app .app_item .app_image.icon4{background-position:0 -840px;}
.biz_news_app .app_item:hover .app_image.icon4,
.biz_news_app .app_item.on .app_image.icon4{background-position:0 -980px;}

.biz_news_app .app_item .app_text{display:block;margin-top:10px;}
.biz_news_app .app_item .app_text .tit_h4{display:inline-block;padding:4px 0;font-family:'NotoSansRegular';font-weight:normal;font-size:20px;color:#333;line-height:25px;}/* (modify)20171108 */
.biz_news_app .app_item .app_text .tit_h4 .notify{display:inline-block;width:25px;height:25px;margin:-2px 0 0 5px;vertical-align:top;background-image:url(../img/icon/icon_notify.png);background-repeat:no-repeat;background-position:0 0;background-size:25px 25px;}
.biz_news_app .app_item .app_text .dscr{margin-top:7px;padding:3px 0 4px;font-family:'NanumGothicRegular';font-size:14px;color:#333;line-height:26px;letter-spacing:-1px;word-break:keep-all;}

.biz_news_app .app_item:hover .app_text .tit_h4,
.biz_news_app .app_item:hover .app_text .dscr{text-decoration:underline;}

/* (add)20171108 */
/* tab_biz_news_app_tab */
.biz_news_app_wrap{display:block;margin:0;padding:45px 0 30px 290px;overflow:hidden;}
.tab_biz_news_app_tab{float:left;display:inline-block;width:268px;margin:0 0 0 -290px;vertical-align:top;}
.tab_biz_news_app_tab .tab_news{display:block;}
.tab_biz_news_app_tab .tab_news a{display:block;height:211px;padding:25px 0 0 30px;border-left:1px solid #d7d7d7;border-right:1px solid #d7d7d7;border-bottom:1px solid #d7d7d7;background-color:#f0f0f0;}
.tab_biz_news_app_tab .tab_news:first-child a{border-top:1px solid #d7d7d7;}
.tab_biz_news_app_tab .tab_news a .tit_h4{position:relative;display:inline-block;padding:1px 0 4px;font-size:20px;line-height:25px;font-family:'NotoSansMedium';font-weight:normal;}
.tab_biz_news_app_tab .tab_news a .tit_h4:after{position:absolute;left:0;width:100%;bottom:0;content:'';height:2px;font-size:0;line-height:0;background-color:#222;}
.tab_biz_news_app_tab .tab_news a .tit_h4 .notify{position:absolute;top:0;right:-30px;display:block;width:25px;height:25px;margin:-2px 0 0 5px;vertical-align:top;background-image:url(../img/icon/icon_notify.png);background-repeat:no-repeat;background-position:0 0;background-size:25px 25px;}
.tab_biz_news_app_tab .tab_news a .dscr{display:block;padding:24px 0 0;font-size:16px;line-height:26px;font-weight:normal;font-family:'NotoSansRegular';}
.tab_biz_news_app_tab .tab_news.on a{color:#0070c9;background-color:#fff;}
.tab_biz_news_app_tab .tab_news.on a .tit_h4:after{background-color:#0070c9;}

/* biz_news_app_cont */
.biz_news_app_cont{float:left;display:inline-block;width:100%;vertical-align:top;}
.biz_news_app_cont .biz_news_app_cont_inner{padding:0;margin:0;}
.biz_news_app_cont .biz_news_app_cont_inner .biz_news_app_list{display:block;}
.biz_news_app_cont .biz_news_app_cont_inner .biz_news_app_list .tit_wrap{position:relative;display:block;margin:0 auto;padding:0;}
.biz_news_app_cont .biz_news_app_cont_inner .biz_news_app_list .tit_wrap h2.tit_h2{display:block;margin:0;padding:6px 0 10px 19px;font-family:"NotoSansMedium";font-size:32px;color:#000;font-weight:normal;line-height:32px;word-break:keep-all;background-image:url(../img/bul/bul_01.png);background-repeat:no-repeat;background-position:0 7px;background-size:10px 30px;}
.biz_news_app_cont .biz_news_app_cont_inner .biz_news_app_list .tit_wrap .see_more{position:absolute;top:28px;right:0;}
.biz_news_app_cont .biz_news_app_cont_inner .biz_news_app_list .tit_wrap .see_more a{display:inline-block;padding-right:13px;font-family:'NotoSansRegular';font-size:14px;color:#4b4b4b;background-image:url(../img/icon/icon_seemore.png);background-repeat:no-repeat;background-position:right 5px;}
.biz_news_app_cont .biz_news_app_cont_inner .biz_news_app_list .tit_wrap .see_more a:hover{text-decoration:underline;color:#0070c9;background-image:url(../img/icon/icon_seemore_on.png);}

.biz_news_app_cont .biz_news_app_cont_inner .biz_news_app_list .tbl_lst1 .row .col.col2{width:95%;}

/* section_sub_page*/
.section_wrap.sub_page .section .section_inner{padding-top:70px;}
.section_wrap.sub_page .section .section_inner .content{display:block;position:relative;margin:0;padding:0;}
.section_wrap.sub_page .section .section_inner .content > img{max-width:100%;}

/* section_title[sub_page] */
.section_wrap.sub_page .section .section_inner .sec_tit{display:block;margin:0;padding:0;}
.section_wrap.sub_page .section .section_inner .sec_tit > .tit_h3{display:block;margin:0;padding:9px 0 13px;font-family:'NotoSansLight';font-size:43px;color:#222;font-weight:300;line-height:56px;text-align:center;word-break:keep-all;}
.section_wrap.sub_page .section .section_inner .sec_tit > .tit_h3 > span{display:block;margin:0;padding:0;line-height:56px;}

/* section_description[sub_page]*/
.section_wrap.sub_page .section .section_inner .sec_dsc{display:block;margin-top:10px;}
.section_wrap.sub_page .section .section_inner .sec_dsc > p{padding:4px 0 5px 0;font-family:'NotoSansLight';font-size:17px;color:#222;font-weight:400;line-height:26px;text-align:center;word-break:keep-all;}/* (modify)20210623 */
.section_wrap.sub_page .section .section_inner .sec_dsc > p > span{display:block;margin:0;padding:0;line-height:26px;}

/* buttom_botton_wrap[sub_page Next/Prev] */
.bot_btn_wrap{display:block;height:130px;overflow:hidden;border-top:1px solid #f3f3f3;}
.bot_btn_wrap .btn_inner{display:block;min-width:1200px;margin:0 auto;padding-top:33px;overflow:hidden;}/* (modify)20200708 */
.bot_btn_wrap .btn_inner a{display:inline-block;padding:18px 0 20px 0;font-family:'NotoSansRegular';font-size:25px;color:#222;line-height:25px;background-repeat:no-repeat;background-color:transparent;}/* (modify)20200708 */
.bot_btn_wrap .btn_inner a:hover{text-decoration:underline;}
.bot_btn_wrap .btn_prev{padding-left:41px !important;background-image:url(../img/icon/icon_btn_prev.png);background-position:0 50%;}
.bot_btn_wrap .btn_next{padding-right:41px !important;background-image:url(../img/icon/icon_btn_next.png);background-position:100% 50%;}

/* sub1 */
.section_wrap.sub_page .section.sec1_sub1,
.section_wrap.sub_page .section.sec1_sub3,
.section_wrap.sub_page .section.sec1_sub5{background-color:#fff;}
.section_wrap.sub_page .section.sec1_sub2,
.section_wrap.sub_page .section.sec1_sub4,
.section_wrap.sub_page .section.sec1_sub6{background-color:#f3f5f7;}/* (add)20170913 */

.section_wrap.sub_page .section.sec1_sub1 .sec_tit > .tit_h3 > span{display:inline-block;vertical-align:top;}
.section_wrap.sub_page .section.sec1_sub5 .sec_tit > .tit_h3 .sec1_sub5_b4{display:inline;}

/* mobi_service[sub1 section1] */
.mobi_service{display:block;/*width:100%;*/padding:60px 0 95px;overflow:hidden;}
.mobi_service li{float:left;display:inline-block;width:33.33%;min-width:220px;margin:0 auto;text-align:center;}/* (modify)20200731 */
.mobi_service li img{display:block;vertical-align:top;/*width:72.5%;*/width:296px;margin:0 auto;}
.mobi_service li dl{position:relative;display:inline-block;*display:inline;zoom:1;width:auto;margin:20px 0 0;padding:0 0 0 85px;}
.mobi_service li dl:before,.mobi_service dl:after{display:table;content:'';}
.mobi_service li dl:after{clear:both;}
.mobi_service li dt{position:absolute;top:0;left:0;display:inline-block;width:65px;height:65px;vertical-align:top;}
.mobi_service li dt img{width:65px;height:65px;}
.mobi_service li dd{position:relative;float:left;display:inline-block;padding-left:0;padding-bottom:32px;text-align:left;}
.mobi_service li dd .tit_app{display:block;padding:1px 0 3px;font-family:'NotoSansRegular';font-size:20px;color:#000;line-height:25px;}
.mobi_service li dd .txt_emp{padding:0 0 3px;font-family:'NanumGothicRegular';font-size:16px;color:#6c6c6c;line-height:22px;letter-spacing:-1px;}
.mobi_service li dd .link_read_more{position:absolute;bottom:0;display:block;margin-top:10px;padding:4px 10px 5px 1px;font-family:'NanumGothicRegular';font-size:14px;color:#0070c9;line-height:14px;letter-spacing:-1px;background-image:url(../img/icon/icon_read_more.png);background-repeat:no-repeat;background-position:right 7px;background-size:5px 10px;}
.mobi_service li dd .link_read_more:hover{text-decoration:underline;}

/* sub2 */
.section_wrap.sub_page .section.sec2_sub1,
.section_wrap.sub_page .section.sec2_sub3,
.section_wrap.sub_page .section.sec2_sub5{background-color:#fff;}
.section_wrap.sub_page .section.sec2_sub2,
.section_wrap.sub_page .section.sec2_sub4{background-color:#f3f5f7;}

/* tab_sub[Tab Sub2 Section2 and 3] */
.tab_sub2{width:390px;margin:0 auto;text-align:center;overflow:hidden;}
/* [D](only)Safari Browser :.tab_sub2{width:392px;} */
.tab_sub2.type1{width:775px;}
/* [D](only)Safari Browser :.tab_sub2.type1{width:787px;} */
.tab_sub2 ul{height:71px;margin:40px 0 0;}
.tab_sub2 li{float:left;display:inline-block;height:71px;margin:0;padding:0 0 0 50px;font-family:'NotoSansRegular';font-size:17px;color:#7f7f7f;border-bottom:1px solid #d6d6d6;box-sizing:border-box;vertical-align:top;}
.tab_sub2 li:first-child{padding-left:0;}
.tab_sub2 li a{display:block;position:relative;width:auto;height:71px;color:rgba(0,0,0,0.5);line-height:71px;border-bottom:1px solid #d6d6d6;background-image:url(../img/icon/icon_sprite_sub2.png);background-repeat:no-repeat;background-position:0 0;background-size:48px auto;box-sizing:border-box;overflow:hidden;}
.tab_sub2 li a:hover{position:relative;color:#000;}
.tab_sub2 li a.icon1{padding-left:43px;background-position:-6px 19px;}
.tab_sub2 li a.icon2{padding-left:43px;background-position:-6px -49px;}
.tab_sub2 li a.icon3{padding-left:45px;background-position:-6px -120px;}
.tab_sub2 li a.icon4{padding-left:45px;background-position:-6px -190px;}
.tab_sub2 li a.icon5{padding-left:45px;background-position:-6px -259px;}
.tab_sub2 li a.icon1:hover,
.tab_sub2 li.on a.icon1{background-position:-6px -329px;}
.tab_sub2 li a.icon2:hover,
.tab_sub2 li.on a.icon2{background-position:-6px -397px;}
.tab_sub2 li a.icon3:hover,
.tab_sub2 li.on a.icon3{background-position:-6px -468px;}
.tab_sub2 li a.icon4:hover,
.tab_sub2 li.on a.icon4{background-position:-6px -538px;}
.tab_sub2 li a.icon5:hover,
.tab_sub2 li.on a.icon5{background-position:-6px -607px;}
.tab_sub2 li.on a{height:71px;color:#000;border-bottom:1px solid #000;}

/* (add)20210623 */
/* tab_sub2[type2] */
.tab_sub2.type2{width:auto;}
.tab_sub2.type2.colNums3Type1{width:834px !important;}
.tab_sub2.type2.colNums3Type2{width:792px !important;}
.tab_sub2.type2.colNums3Type3{width:396px !important;}
.tab_sub2.type2 ul{margin:17px 0 0;}
.tab_sub2.type2 li{padding:0 0 0 54px;}
.tab_sub2.type2 li:first-child{padding-left:0;}
.tab_sub2.type2 li a{padding:0 2px 0 42px;font-family:'NotoSansMedium';font-weight:500;background-image:url("../img/icon/icon_sprite_sub2.png");background-repeat:no-repeat;background-position:0 0;background-size:auto;}
.tab_sub2.type2 li a.icon1{background-position:0 0;}
.tab_sub2.type2 li a.icon2{background-position:0 -71px;}
.tab_sub2.type2 li a.icon3{background-position:0 -284px;}
.tab_sub2.type2 li a.icon4{background-position:0 -355px;}
.tab_sub2.type2 li a.icon5{background-position:0 -426px;}
.tab_sub2.type2 li a.icon6{background-position:0 -710px;}
.tab_sub2.type2 li a.icon7{background-position:0 -781px;}
.tab_sub2.type2 li a.icon8{background-position:0 -852px;}
.tab_sub2.type2 li a.icon1:hover,
.tab_sub2.type2 li.on a.icon1{background-position:0 -142px;}
.tab_sub2.type2 li a.icon2:hover,
.tab_sub2.type2 li.on a.icon2{background-position:0 -213px;}
.tab_sub2.type2 li a.icon3:hover,
.tab_sub2.type2 li.on a.icon3{background-position:0 -497px;}
.tab_sub2.type2 li a.icon4:hover,
.tab_sub2.type2 li.on a.icon4{background-position:0 -568px;}
.tab_sub2.type2 li a.icon5:hover,
.tab_sub2.type2 li.on a.icon5{background-position:0 -639px;}
.tab_sub2.type2 li a.icon6:hover,
.tab_sub2.type2 li.on a.icon6{background-position:0 -923px;}
.tab_sub2.type2 li a.icon7:hover,
.tab_sub2.type2 li.on a.icon7{background-position:0 -994px;}
.tab_sub2.type2 li a.icon8:hover,
.tab_sub2.type2 li.on a.icon8{background-position:0 -1065px;}
/* //(add)20210623 */

/* sub_tab_sub2 */
.sub_tab_sub2.mgbtm{margin:0 0 90px;}/* (add)20170627 */
.sub_tab_sub2 .tit_tab_sub2{display:none;height:40px;text-align:center;}
.sub_tab_sub2 .tit_h5{display:inline-block;font-family:'NotoSansRegular';font-size:17px;color:#000;line-height:38px;}

.sub_mo_icon{float:left;display:inline-block;width:50px;height:40px;background-image:url(../img/icon/icon_sprite_sub2.png);background-repeat:no-repeat;background-size:49px auto;vertical-align:top;}
.sub_mo_icon.icon1{background-position:50% -352px;}
.sub_mo_icon.icon2{background-position:50% -422px;}
.sub_mo_icon.icon3{background-position:50% -494px;}
.sub_mo_icon.icon4{background-position:50% -565px;}
.sub_mo_icon.icon5{background-position:50% -635px;}

.sub_tab_sub2 .tab_sub2_img{position:relative;}
.sub_tab_sub2 .tab_sub2_img img{width:100%;}
.sub_tab_sub2 .tab_detial{display:none;}
.sub_tab_sub2 .tab_detial.on{display:block;}

/* sub3 */
.section_wrap.sub_page .section.sec3_sub1,
.section_wrap.sub_page .section.sec3_sub3{background-color:#fff;}
.section_wrap.sub_page .section.sec3_sub2,
.section_wrap.sub_page .section.sec3_sub4{background-color:#f3f5f7;}

.section_wrap.sub_page .section.sec3_sub1 .section_inner .sec_tit > .tit_h3 > span{display:inline-block;vertical-align:top;}

/* audit report sub3 section3 */
.audit_rpt{display:block;padding:42px 0 82px 0;overflow:hidden;}
.audit_rpt li{float:left;display:inline-block;width:20%;text-align:center;}
.audit_rpt li > .audit_rpt_list{display:block;height:185px;padding:36px 20px 0 20px;background-color:transparent;}
.audit_rpt li .icon{display:block;}
.audit_rpt li .icon > img{width:auto;height:44px;}
.audit_rpt li .text{display:block;margin-top:38px;}
.audit_rpt li .text .tit_h5{padding:0 0 2px 0;font-family:'NotoSansMedium';font-size:18px;color:#333;font-weight:500;line-height:25px;letter-spacing:-2px;word-break:keep-all;}
.audit_rpt li .text .txt_dsc{margin-top:11px;padding:0;font-family:'NanumGothicRegular';font-size:14px;color:#333;line-height:19px;letter-spacing:-1px;word-break:keep-all;}
.audit_rpt li .text .txt_dsc > span{display:block;}

/* (add)20210623 */
/* audit report sub3 section3(type1) */
.audit_rpt.type1 li .icon > img{width:142px;height:85px;}
.audit_rpt.type1 li .text{margin-top:10px;}
/* //(add)20210623 */

/* sub4 */
/* title_sub4 */
.sub4_tit_wrap{}
.sub4_tit_wrap .sub4_tit_inner{display:block;max-width:1200px;margin:0 auto;padding-top:60px;text-align:center;}
.sub4_tit_wrap .sub4_tit_inner .sec_tit > .tit_h3{padding:12px 16px 18px 16px;font-family:'NotoSansMedium';font-size:54px;color:#000;font-weight:500;}
.sub4_tit_wrap .sub4_tit_inner .sec_dsc{margin:0 0 65px 0;}
.sub4_tit_wrap .sub4_tit_inner .sec_dsc > p{font-family:'NotoSansRegular';padding:13px 0 14px 0;font-size:21px;color:#000;line-height:33px;}
.sub4_tit_wrap .sub4_tit_inner .sec_dsc > p span{display:block;}

/* tab_wrap_sub4 */
.tab_wrap_sub4{display:block;width:100%;height:70px;border-bottom:1px solid #d3d3d3;}
.tab_wrap_sub4.fixed{position:fixed;top:0;left:0;z-index:999;background-color:#fff;}

.tab_wrap_sub4 .tab_inner{display:block;max-width:770px;margin:0 auto;text-align:center;}
.tab_wrap_sub4 .tab_inner ul{display:table;margin:0 auto;width:100%;overflow:hidden;}
.tab_wrap_sub4 .tab_inner ul li{float:left;display:inline-block;width:33.33%;text-align:center;}

/* (add)20200413 */
.tab_wrap_sub4.type2{display:block;width:100%;height:70px;border-bottom:1px solid #d3d3d3;}
.tab_wrap_sub4.type2.fixed{position:fixed;top:0;left:0;z-index:999;background-color:#fff;}

.tab_wrap_sub4.type2 .tab_inner{display:block;max-width:870px;margin:0 auto;text-align:center;}
.tab_wrap_sub4.type2 .tab_inner ul{display:table;margin:0 auto;width:100%;overflow:hidden;}
.tab_wrap_sub4.type2 .tab_inner ul li{float:left;display:inline-block;width:25%;text-align:center;}
/* //(add)20200413 */

/*
.tab_wrap_sub4 .tab_inner{display:block;max-width:1200px;margin:0 auto;text-align:center;}
.tab_wrap_sub4 .tab_inner ul{display:table;margin:0 auto;overflow:hidden;}
.tab_wrap_sub4 .tab_inner ul li{float:left;display:inline-block;margin-left:95px;}
.tab_wrap_sub4 .tab_inner ul li:first-child{margin-left:0;}
*/
.tab_wrap_sub4 .tab_inner ul li a{display:inline-block;background-color:blue;vertical-align:top;height:70px;padding:0 5px 0 43px;font-family:'NotoSansRegular';font-size:18px;color:rgba(0,0,0,0.5);line-height:68px;background-color:transparent;background-repeat:no-repeat;background-position:0 50%;background-size:35px auto;}
.tab_wrap_sub4 .tab_inner ul li.tab1 a{background-image:url(../img/icon/icon_sub1_sec01_01_off.png);}
.tab_wrap_sub4 .tab_inner ul li.tab2 a{background-image:url(../img/icon/icon_sub1_sec01_02_off.png);}
.tab_wrap_sub4 .tab_inner ul li.tab3 a{background-image:url(../img/icon/icon_sub1_sec01_03_off.png);}
.tab_wrap_sub4 .tab_inner ul li:hover a{color:#000;}
.tab_wrap_sub4 .tab_inner ul li.on a{color:#000;border-bottom:1px solid #000;}
.tab_wrap_sub4 .tab_inner ul li:hover a{color:#000;}
.tab_wrap_sub4 .tab_inner ul li.on a{color:#000;border-bottom:1px solid #000;}
.tab_wrap_sub4 .tab_inner ul li.tab1:hover a,
.tab_wrap_sub4 .tab_inner ul li.tab1.on a{background-image:url(../img/icon/icon_sub1_sec01_01.png);}
.tab_wrap_sub4 .tab_inner ul li.tab2:hover a,
.tab_wrap_sub4 .tab_inner ul li.tab2.on a{background-image:url(../img/icon/icon_sub1_sec01_02.png);}
.tab_wrap_sub4 .tab_inner ul li.tab3:hover a,
.tab_wrap_sub4 .tab_inner ul li.tab3.on a{background-image:url(../img/icon/icon_sub1_sec01_03.png);}

/* (add)20200413 */
.tab_wrap_sub4 .tab_inner ul li.tab4 a{background-image:url(../img/icon/icon_sub1_sec01_04_off.png);}
.tab_wrap_sub4 .tab_inner ul li.tab4:hover a,
.tab_wrap_sub4 .tab_inner ul li.tab4.on a{background-image:url(../img/icon/icon_sub1_sec01_04.png);}
/* //(add)20200413 */

/* section_wrap[sub_page4] */
.section_wrap.sub_page4{}
.section_wrap.sub_page4 .section > .section_inner{/*padding:90px 0 70px;padding:132px 0 45px;*/padding:132px 0 70px;}/* (modify)20200731 */
.section_wrap.sub_page4 .section.sec4_sub1,
.section_wrap.sub_page4 .section.sec4_sub1 .slide_img_ani{background-color:#effafe;}
.section_wrap.sub_page4 .section.sec4_sub2,
.section_wrap.sub_page4 .section.sec4_sub2 .slide_img_ani{background-color:#fffaee;}
.section_wrap.sub_page4 .section.sec4_sub3,
.section_wrap.sub_page4 .section.sec4_sub3 .slide_img_ani{background-color:#e3efff;}

/* (add)20200413 */
.section_wrap.sub_page4 .section.sec4_sub4,
.section_wrap.sub_page4 .section.sec4_sub4 .slide_img_ani{background-color:#def2fe;}
/* //(add)20200413 */

/* slide_wrap[sub4] */
.section_wrap.sub_page4 .section .section_inner .slide_wrap{position:relative;display:block;max-width:860px;margin:0 auto;padding-left:44px;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container{display:block;margin:0;padding:0;overflow:hidden;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_text,
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_img{position:relative;float:left;display:inline-block;z-index:990;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_text{width:54%;margin-top:14px;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_img{position:relative;width:46%;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_img ul{display:block;overflow:hidden;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_img ul li{float:left;display:none;margin-right:-4px;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_img ul li:first-child{display:inline-block;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_img ul li img{width:100%;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_img .slide_img_ani{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;}
.section_wrap.sub_page4 .section .section_inner .slide_wrap .slide_container .slide_img .slide_img_ani img{width:100%;}

.section_wrap.sub_page4 .section .section_inner .item{display:block;width:100%;margin:0;padding:0;}
.section_wrap.sub_page4 .section .section_inner .item > img{display:none;}

.section_wrap.sub_page4 .section .section_inner .tit_h4{display:none;padding:0 0 0 53px;font-family:'NotoSansRegular';font-size:17px;color:#000;font-weight:normal;line-height:41px;}
.section_wrap.sub_page4 .section .section_inner .tit_h4 > .icon{display:inline-block;width:43px;height:43px;margin-right:5px;vertical-align:top;background-repeat:no-repeat;background-position:0 0;background-size:43px;}
.section_wrap.sub_page4 .section .section_inner .tit_h4 > .icon.item1{background-image:url(../img/icon/icon_sub1_sec01_01.png);}
.section_wrap.sub_page4 .section .section_inner .tit_h4 > .icon.item2{background-image:url(../img/icon/icon_sub1_sec01_02.png);}
.section_wrap.sub_page4 .section .section_inner .tit_h4 > .icon.item3{background-image:url(../img/icon/icon_sub1_sec01_03.png);}
.section_wrap.sub_page4 .section .section_inner .tit_h4 > .icon.item4{background-image:url(../img/icon/icon_sub1_sec01_04.png);}/* (add)20200413 */

.section_wrap.sub_page4 .section .section_inner .text_wrap > a{position:relative;display:block;min-height:140px;padding:29px 0 13px 75px;background-color:transparent;}
.section_wrap.sub_page4 .section .section_inner .tit{display:block;}
.section_wrap.sub_page4 .section .section_inner .tit_h5{padding:1px 0 2px 0;font-family:'NotoSansMedium';font-size:22px;color:rgba(0,0,0,0.5);font-weight:normal;line-height:22px;font-weight:500;}
.section_wrap.sub_page4 .section .section_inner .dsc{display:block;margin-top:12px;}
.section_wrap.sub_page4 .section .section_inner .dsc p,
.section_wrap.sub_page4 .section .section_inner .dsc li{font-family:'NanumGothicRegular';font-size:17px;color:rgba(0,0,0,0.5);line-height:29px;letter-spacing:-1px;word-break:keep-all;}
.section_wrap.sub_page4 .section .section_inner .dsc li{padding-left:8px;text-indent:-8px;}
.section_wrap.sub_page4 .section .section_inner .slide_container .item:hover .tit_h5,
.section_wrap.sub_page4 .section .section_inner .slide_container .item:hover .dsc p,
.section_wrap.sub_page4 .section .section_inner .slide_container .item:hover .dsc li,
.section_wrap.sub_page4 .section .section_inner .slide_container .item.on .tit_h5,
.section_wrap.sub_page4 .section .section_inner .slide_container .item.on .dsc p,
.section_wrap.sub_page4 .section .section_inner .slide_container .item.on .dsc li{color:#000;}

/* (modify)20210701 */
.section_wrap.sub_page4 .section .section_inner .item .tit_h5 .icon{position:absolute;top:15px;left:0;display:block;width:52px;height:54px;background-image:url(../img/icon/icon_sub4_section_item_sprite.png);background-repeat:no-repeat;background-position:0 0;background-size:52px auto;}

/* icon[content] sub4 section1 */
.section_wrap.sub_page4 .section.sec4_sub1 .item .tit_h5 .icon.item1{background-position:0 0;}
.section_wrap.sub_page4 .section.sec4_sub1 .item:hover .tit_h5 .icon.item1,
.section_wrap.sub_page4 .section.sec4_sub1 .item.on .tit_h5 .icon.item1{background-position:0 -54px;}
.section_wrap.sub_page4 .section.sec4_sub1 .item .tit_h5 .icon.item2{background-position:0 -108px;}
.section_wrap.sub_page4 .section.sec4_sub1 .item:hover .tit_h5 .icon.item2,
.section_wrap.sub_page4 .section.sec4_sub1 .item.on .tit_h5 .icon.item2{background-position:0 -162px;}
.section_wrap.sub_page4 .section.sec4_sub1 .item .tit_h5 .icon.item3{background-position:0 -216px;}
.section_wrap.sub_page4 .section.sec4_sub1 .item:hover .tit_h5 .icon.item3,
.section_wrap.sub_page4 .section.sec4_sub1 .item.on .tit_h5 .icon.item3{background-position:0 -270px;}

/* icon[content] sub4 section2 */
.section_wrap.sub_page4 .section.sec4_sub2 .item .tit_h5 .icon.item1{background-position:0 -324px;}
.section_wrap.sub_page4 .section.sec4_sub2 .item:hover .tit_h5 .icon.item1,
.section_wrap.sub_page4 .section.sec4_sub2 .item.on .tit_h5 .icon.item1{background-position:0 -378px;}
.section_wrap.sub_page4 .section.sec4_sub2 .item .tit_h5 .icon.item2{background-position:0 -432px;}
.section_wrap.sub_page4 .section.sec4_sub2 .item:hover .tit_h5 .icon.item2,
.section_wrap.sub_page4 .section.sec4_sub2 .item.on .tit_h5 .icon.item2{background-position:0 -486px;}
.section_wrap.sub_page4 .section.sec4_sub2 .item .tit_h5 .icon.item3{background-position:0 -540px;}
.section_wrap.sub_page4 .section.sec4_sub2 .item:hover .tit_h5 .icon.item3,
.section_wrap.sub_page4 .section.sec4_sub2 .item.on .tit_h5 .icon.item3{background-position:0 -594px;}

/* icon[content] sub4 section4 */
.section_wrap.sub_page4 .section.sec4_sub4 .item .tit_h5 .icon.item1{background-position:0 -648px;}
.section_wrap.sub_page4 .section.sec4_sub4 .item:hover .tit_h5 .icon.item1,
.section_wrap.sub_page4 .section.sec4_sub4 .item.on .tit_h5 .icon.item1{background-position:0 -702px;}
.section_wrap.sub_page4 .section.sec4_sub4 .item .tit_h5 .icon.item2{background-position:0 -756px;}
.section_wrap.sub_page4 .section.sec4_sub4 .item:hover .tit_h5 .icon.item2,
.section_wrap.sub_page4 .section.sec4_sub4 .item.on .tit_h5 .icon.item2{background-position:0 -810px;}
.section_wrap.sub_page4 .section.sec4_sub4 .item .tit_h5 .icon.item3{background-position:0 -864px;}
.section_wrap.sub_page4 .section.sec4_sub4 .item:hover .tit_h5 .icon.item3,
.section_wrap.sub_page4 .section.sec4_sub4 .item.on .tit_h5 .icon.item3{background-position:0 -918px;}
.section_wrap.sub_page4 .section.sec4_sub4 .item .tit_h5 .icon.item4{background-position:0 -972px;}
.section_wrap.sub_page4 .section.sec4_sub4 .item:hover .tit_h5 .icon.item4,
.section_wrap.sub_page4 .section.sec4_sub4 .item.on .tit_h5 .icon.item4{background-position:0 -1026px;}
/* //(modify)20210701 */

/* rolling */
.section_wrap.sub_page4 .slide_text .rolling_item{display:none;height:8px;margin-bottom:5px;text-align:center;overflow:hidden;}
.section_wrap.sub_page4 .slide_text .rolling_item ul{display:table;margin:0 auto;overflow:hidden;}
.section_wrap.sub_page4 .slide_text .rolling_item ul li{float:left;display:inline-block;height:8px;margin-left:8px;}
.section_wrap.sub_page4 .slide_text .rolling_item ul li:first-child{margin:0;}
.section_wrap.sub_page4 .slide_text .rolling_item ul li > button{display:block;width:8px;height:8px;padding:0;font-size:0;background-image:url(../img/icon/icon_rolling.png);background-repeat:no-repeat;background-position:0 0;background-size:8px 8px;cursor:pointer;}
.section_wrap.sub_page4 .slide_text .rolling_item ul li.on > button{background-image:url(../img/icon/icon_rolling_on.png);}

.section_wrap.sub_page4 .section_inner .btn_wrap{position:absolute;bottom:22px;display:block;margin-left:-4px;}
.section_wrap.sub_page4 .section_inner .btn_wrap ul{display:block;margin:0;overflow:hidden;}
.section_wrap.sub_page4 .section_inner .btn_wrap li{float:left;display:inline-block;margin-left:4px;}
.section_wrap.sub_page4 .section_inner .btn_wrap li:first-child{margin:0;}
.section_wrap.sub_page4 .section_inner .btn_wrap li > a{display:block;width:224px;height:72px;background-color:transparent;background-repeat:no-repeat;}
.section_wrap.sub_page4 .section_inner .btn_wrap li > a.btn_google_play{background-image:url(../img/btn/btn_google_play.png);}
.section_wrap.sub_page4 .section_inner .btn_wrap li > a.btn_app_store{background-image:url(../img/btn/btn_app_store.png);}
.section_wrap.sub_page4 .section_inner .btn_wrap li > a.disable{cursor:default;}
.section_wrap.sub_page4 .section_inner .btn_wrap > p.tx_bizplay4_message{display:block;margin:0 0 30px;padding:0;font-family:"NotoSansLight";font-size:15px;color:#333;font-weight:normal;line-height:27px;text-align:left;letter-spacing:-1px;}/* (add)20200413 */

/* sub5 */
/* tab_content_wrap */
.tab_cnt_wrap{display:block;width:1200px;margin:0 auto;padding:0;}/* (modify)20200708 */
.tab_cnt_wrap h2.tit_h2{display:block;margin:0;padding:8px 0 10px 19px;font-family:"NotoSansMedium";font-size:32px;color:#000;font-weight:normal;line-height:32px;word-break:keep-all;background-image:url(../img/bul/bul_01.png);background-repeat:no-repeat;background-position:0 10px;background-size:10px 30px;}

/* tab_content */
.tab_cnt{display:block;margin:20px 0 0;padding:0;border-top:2px solid #7c7c7c !important;background-color:#fff;}/* (modify)20171108 */

/* tab_sub5 */
.tab_sub5{display:block;max-width:1200px;margin:0 auto 48px;padding:0;overflow:hidden;}
.tab_sub5 button{display:none;}
.tab_sub5 .tab_sub5_inner{display:block;padding:0;margin-left:-20px;overflow:hidden;}
.tab_sub5 .tab_sub5_inner .owl-stage{max-width:1220px;}
.tab_sub5 .tab_sub5_inner .owl-item{float:left;display:inline-block;vertical-align:top;width:25%;}
.tab_sub5 .tab_sub5_inner .owl-nav{display:none;}
.tab_sub5 .tab_sub5_inner .tab{float:left;display:inline-block;width:25%;}
.tab_sub5 .tab_sub5_inner .tab a{display:block;height:160px;margin-left:20px;border:1px solid #d7d7d7;background-color:#fff;}
.tab_sub5 .tab_sub5_inner .tab a:hover{border:1px solid #7c7c7c;}
.tab_sub5 .tab_sub5_inner .tab.on a{border:1px solid #7c7c7c;}
.tab_sub5 .tab_sub5_inner .tab a .bg_img{display:block;height:100px;margin-top:13px;background-color:#fff;background-image:url(../img/bg/bg_sprite_sub5.png);background-repeat:no-repeat;background-position:center 8px;}
.tab_sub5 .tab_sub5_inner .tab.tab01 a:hover .bg_img{background-position:center -92px;}
.tab_sub5 .tab_sub5_inner .tab.tab01.on a .bg_img{background-position:center -92px;}
.tab_sub5 .tab_sub5_inner .tab.tab02 a .bg_img{background-position:center -196px;}
.tab_sub5 .tab_sub5_inner .tab.tab02 a:hover .bg_img{background-position:center -296px;}
.tab_sub5 .tab_sub5_inner .tab.tab02.on a .bg_img{background-position:center -296px;}
.tab_sub5 .tab_sub5_inner .tab.tab03 a .bg_img{background-position:center -392px;}
.tab_sub5 .tab_sub5_inner .tab.tab03 a:hover .bg_img{background-position:center -486px;}
.tab_sub5 .tab_sub5_inner .tab.tab03.on a .bg_img{background-position:center -486px;}
.tab_sub5 .tab_sub5_inner .tab.tab04 a .bg_img{background-position:center -576px;}
.tab_sub5 .tab_sub5_inner .tab.tab04 a:hover .bg_img{background-position:center -676px;}
.tab_sub5 .tab_sub5_inner .tab.tab04.on a .bg_img{background-position:center -676px;}
.tab_sub5 .tab_sub5_inner .tab a span{display:block;margin-top:5px;font-family:'NotoSansRegular';font-size:20px;color:#bcbcbc;line-height:22px;text-align:center;}
.tab_sub5 .tab_sub5_inner .tab a:hover span{color:#333 !important;}
.tab_sub5 .tab_sub5_inner .tab.on a span{color:#333 !important;}

.tab_sub5.type1{display:block;max-width:1200px;margin:0 auto 48px;padding:0;overflow:hidden;}
.tab_sub5.type1 button{display:none;}
.tab_sub5.type1 .tab_sub5_inner{display:block;padding:0;margin-left:-20px;overflow:hidden;}
.tab_sub5.type1 .tab_sub5_inner .tab{float:left;display:inline-block;width:33%;}
.tab_sub5.type1 .tab_sub5_inner .tab a{position:relative;display:block;height:110px;margin-left:20px;border:1px solid #d7d7d7;background-color:#fff;}
.tab_sub5.type1 .tab_sub5_inner .tab a:hover{border:1px solid #7c7c7c;}
.tab_sub5.type1 .tab_sub5_inner .tab.on a{border:1px solid #7c7c7c;}
.tab_sub5.type1 .tab_sub5_inner .tab a .bg_img{display:block;width:95px;height:72px;margin:19px 0 0 28px;background-color:#fff;background-image:url(../img/bg/bg_sprite_sub5_2.png);background-repeat:no-repeat;background-position:0 0;}
.tab_sub5.type1 .tab_sub5_inner .tab.tab01 a:hover .bg_img{background-position:0 -72px;}
.tab_sub5.type1 .tab_sub5_inner .tab.tab01.on a .bg_img{background-position:0 -72px;}
.tab_sub5.type1 .tab_sub5_inner .tab.tab02 a .bg_img{background-position:0 -144px;}
.tab_sub5.type1 .tab_sub5_inner .tab.tab02 a:hover .bg_img{background-position:0 -216px;}
.tab_sub5.type1 .tab_sub5_inner .tab.tab02.on a .bg_img{background-position:0 -216px;}
.tab_sub5.type1 .tab_sub5_inner .tab.tab03{width:34%;}
.tab_sub5.type1 .tab_sub5_inner .tab.tab03 a .bg_img{background-position:0 -288px;}
.tab_sub5.type1 .tab_sub5_inner .tab.tab03 a:hover .bg_img{background-position:0 -360px;}
.tab_sub5.type1 .tab_sub5_inner .tab.tab03.on a .bg_img{background-position:0 -360px;}
.tab_sub5.type1 .tab_sub5_inner .tab a span.text{position:absolute;top:40px;left:138px;display:block;margin-top:5px;font-family:'NotoSansRegular';font-size:20px;color:#bcbcbc;line-height:22px;text-align:center;}
.tab_sub5.type1 .tab_sub5_inner .tab a:hover span{color:#333 !important;}
.tab_sub5.type1 .tab_sub5_inner .tab.on a span{color:#333 !important;}

/* (add)20180612 :지적재산권 추가로 인한 가로메뉴 */
.tab_sub5.type2{display:block;max-width:1200px;margin:0 auto 48px;padding:0;overflow:hidden;}
.tab_sub5.type2 .tab_sub5_inner{display:block;padding:0;margin-left:-20px;overflow:hidden;}
.tab_sub5.type2 .tab_sub5_inner .tab{display:inline-block;float:left;width:25%;}
.tab_sub5.type2 .tab_sub5_inner .tab a{position:relative;display:block;height:110px;margin-left:20px;border:1px solid #d7d7d7;background-color:#fff;}
.tab_sub5.type2 .tab_sub5_inner .tab a:hover{border:1px solid #7c7c7c;}
.tab_sub5.type2 .tab_sub5_inner .tab.on a{border:1px solid #7c7c7c;}
.tab_sub5.type2 .tab_sub5_inner .tab a .bg_img{display:inline-block;float:left;width:95px;height:72px;margin:19px 0 0 10px;background-color:#fff;background-image:url(../img/bg/bg_sprite_sub5_2.png);background-repeat:no-repeat;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab01 a .bg_img{background-position:0 0;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab01 a:hover .bg_img{background-position:0 -72px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab01.on a .bg_img{background-position:0 -72px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab02 a .bg_img{background-position:0 -144px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab02 a:hover .bg_img{background-position:0 -216px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab02.on a .bg_img{background-position:0 -216px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab03 a .bg_img{background-position:0 -288px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab03 a:hover .bg_img{background-position:0 -360px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab03.on a .bg_img{background-position:0 -360px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab04 a .bg_img{background-position:0 -432px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab04 a:hover .bg_img{background-position:0 -504px;}
.tab_sub5.type2 .tab_sub5_inner .tab.tab04.on a .bg_img{background-position:0 -504px;}
.tab_sub5.type2 .tab_sub5_inner .tab a .tab_table{display:table;height:72px;margin:19px 10px 19px 0;padding:0;}
.tab_sub5.type2 .tab_sub5_inner .tab a .tab_table > .tab_tableRow{display:table-row;}
.tab_sub5.type2 .tab_sub5_inner .tab a .tab_table .tab_tableRow > .tab_tableCell{display:table-cell;vertical-align:middle;font-family:'NotoSansRegular';font-size:20px;color:#bcbcbc;line-height:22px;}
.tab_sub5.type2 .tab_sub5_inner .tab a .tab_table .tab_tableRow > .tab_tableCell:lang(ko){word-break:keep-all;}
.tab_sub5.type2 .tab_sub5_inner .tab a:hover .tab_table .tab_tableRow > .tab_tableCell{color:#333 !important;}
.tab_sub5.type2 .tab_sub5_inner .tab.on a .tab_table .tab_tableRow > .tab_tableCell{color:#333 !important;}
/* (add)20180612 :지적재산권 추가로 인한 가로메뉴 */

/* (add)20181029 */
.tab_sub5.type3{display:block;max-width:1200px;margin:0 auto 48px;padding:0;overflow:hidden;}
.tab_sub5.type3 .tab_sub5_inner{display:block;padding:0;margin-left:-24px;overflow:hidden;}
.tab_sub5.type3 .tab_sub5_inner .tab{display:inline-block;float:left;width:33%;}
.tab_sub5.type3 .tab_sub5_inner .tab a{position:relative;display:block;height:110px;margin-left:24px;border:1px solid #d7d7d7;background-color:#fff;}
.tab_sub5.type3 .tab_sub5_inner .tab a:hover{border:1px solid #7c7c7c;}
.tab_sub5.type3 .tab_sub5_inner .tab.on a{border:1px solid #7c7c7c;}
.tab_sub5.type3 .tab_sub5_inner .tab a .bg_img{display:inline-block;float:left;width:95px;height:72px;margin:19px 42px 0 22px;background-color:#fff;background-image:url(../img/bg/bg_sprite_sub5_2.png);background-repeat:no-repeat;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab01 a .bg_img{background-position:0 0;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab01 a:hover .bg_img{background-position:0 -72px;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab01.on a .bg_img{background-position:0 -72px;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab02{width:34%;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab02 a .bg_img{background-position:0 -144px;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab02 a:hover .bg_img{background-position:0 -216px;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab02.on a .bg_img{background-position:0 -216px;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab03 a .bg_img{margin-right:57px;background-position:0 -288px;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab03 a:hover .bg_img{background-position:0 -360px;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab03.on a .bg_img{background-position:0 -360px;}
/*

.tab_sub5.type3 .tab_sub5_inner .tab.tab04 a .bg_img{background-position:0 -432px;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab04 a:hover .bg_img{background-position:0 -504px;}
.tab_sub5.type3 .tab_sub5_inner .tab.tab04.on a .bg_img{background-position:0 -504px;}
*/
.tab_sub5.type3 .tab_sub5_inner .tab a .tab_table{display:table;height:72px;margin:19px 10px 19px 0;padding:0;}
.tab_sub5.type3 .tab_sub5_inner .tab a .tab_table > .tab_tableRow{display:table-row;}
.tab_sub5.type3 .tab_sub5_inner .tab a .tab_table .tab_tableRow > .tab_tableCell{display:table-cell;vertical-align:middle;font-family:'NotoSansRegular';font-size:20px;color:#bcbcbc;line-height:22px;}
.tab_sub5.type3 .tab_sub5_inner .tab a .tab_table .tab_tableRow > .tab_tableCell:lang(ko){word-break:keep-all;}
.tab_sub5.type3 .tab_sub5_inner .tab a:hover .tab_table .tab_tableRow > .tab_tableCell{color:#333 !important;}
.tab_sub5.type3 .tab_sub5_inner .tab.on a .tab_table .tab_tableRow > .tab_tableCell{color:#333 !important;}
/* //(add)20181029 */

/* (add)20191022 */
.tab_sub5.type4 .tab{width:25% !important;border-color:#d7d7d7;}/* (modify)20200708 */
.tab_sub5.type4 .tab:first-child{width:25% !important;}/* (modify)20200708 */
.tab_sub5.type4 .tab a{display:inline-block;width:283px;height:78px;text-align:center;background-color:#fff;}/* (modify)20200708 */
.tab_sub5.type4 .tab a .tab_table{display:table;width:100%;height:78px;}
.tab_sub5.type4 .tab a .tab_tableRow{display:table-row}
.tab_sub5.type4 .tab a .tab_tableCell{display:table-cell;vertical-align:middle;text-align:center;height:78px;font-family:'NotoSansMedium';font-weight:500;font-size:24px;line-height:80px;color:#bcbcbc;}
.tab_sub5.type4 .tab.on a .tab_tableCell,
.tab_sub5.type4 .tab.active a .tab_tableCell,
.tab_sub5.type4 .tab a:hover .tab_tableCell{border-color:#7c7c7c;color:#7c7c7c;}
.tab_sub5.type4 .tab a .tab_tableCell em.countNums{display:inline-block;min-width:16px;vertical-align:middle;margin:-5px 0 0 6px;padding:0 4px 2px 4px;font-family:"NotoSansRegular";font-size:14px;color:#fff;line-height:22px;text-align:center;font-style:normal;border-radius:24px;background-color:#fd000d;}/* (add)20200624 */
/* //(add)20191022 */

/* sub5소식_V01_170524_final_11_비즈플레이소식(상세보기) */
.bn_list_sub{border-bottom:1px solid #7c7c7c;}
.bn_list_sub .bn_list{position:relative;padding:0 180px 0 119px;border-top:1px solid #d7d7d7;}
.bn_list_sub .bn_list.n_alarm{padding-left:60px;}
.bn_list_sub .bn_list.on{background-color:#fafafa;border-top:none;}
.bn_list_sub .bn_list .ico_alrm{position:absolute;top:0;left:46px;bottom:0;width:68px;background-image:url(../img/icon/icon_alarm.png);background-repeat:no-repeat;background-position:50% 50%;background-size:40px auto;}/* (modify)20171108 */
.bn_list_sub .bn_list .ico_alrm.alm_red{background-image:url(../img/icon/icon_alarm_on01.png);background-size:40px auto;}/* (modify)20171108 */
.bn_list_sub .bn_list .txt_bn_list{display:block;width:100%;padding:20px 0 20px;}
.bn_list_sub .bn_list .txt_bn_list span{display:inline-block;vertical-align:top;padding:5px 0 6px 0;font-family:"NotoSansRegular";font-size:22px;color:#222;line-height:30px;}
.bn_list_sub .bn_list .ico_social{bottom:23px;}
.bn_list_sub .bn_list .ico_social img{width:30px;height:30px;}

/* ico_social */
.ico_social{position:absolute;right:60px;}
.ico_social li{display:inline-block;float:left;padding-left:12px;}
.ico_social li:first-child{padding-left:0;}

/* btn_list */
.btn_list{height:auto;padding:0 60px;border-top:1px solid #d7d7d7;}
.btn_list:first-child{border-top:none;}
.btn_list > .flt,
.btn_list > .frt{padding:10px 0 10px;}
.btn_list > .frt li{display:inline-block;float:left;}
.btn_list > .frt li span{display:inline-block;font-family:"NotoSansLight";font-size:16px;color:#222;line-height:16px;}
.btn_list > .frt li .txt_rg_date{padding:11px 19px 13px 0;}
.btn_list > .frt li .txt_date{padding:11px 25px 13px 0;background-image:url(../img/bg/bg_line_date.png);background-repeat:no-repeat;background-position:right 12px;background-size:2px 16px;}
.btn_list > .frt li .txt_num{padding:11px 0 13px 0;}
.btn_list > .frt li .txt_vw_date{padding:11px 19px 13px 24px;}
.bn_list.txt_wrp_ud{position:relative;padding:0 0 0 187px;font-family:"NanumGothicRegular";font-size:14px;color:#222;line-height:14px;}
.bn_list.txt_wrp_ud .txt_list_ud{position:absolute;top:17px;left:60px;}
.bn_list.txt_wrp_ud .txt_list_ud span{display:inline-block;vertical-align:top;}
.bn_list.txt_wrp_ud .txt_list_ud .ico_up,
.bn_list.txt_wrp_ud .txt_list_ud .ico_down{width:12px;height:13px;padding-right:9px;background-repeat:no-repeat;background-position:5px 1px;background-size:12px 12px;}
.bn_list.txt_wrp_ud .txt_list_ud .ico_up{background-image:url(../img/icon/icon_up.png);}
.bn_list.txt_wrp_ud .txt_list_ud .ico_down{background-image:url(../img/icon/icon_down.png);}
.bn_list.txt_wrp_ud .txt_part a{display:block;width:100%;height:48px;line-height:46px;}
.bn_list.txt_wrp_ud .txt_part a:hover{color:#0070c9;text-decoration:underline;}

/* bn_list_detail_wrap */
.bn_list_detail_wrap{position:relative;padding:20px 60px;border-top:1px solid #d7d7d7;}/* (modify)20180619 */
.bn_list_detail_wrap .bn_list_detail{display:block;width:100%;height:100%;}
.bn_list_detail_wrap .bn_list_detail p{margin:20px 0;padding:4px 8px 5px 8px;font-family:"NanumGothicRegular";font-size:16px;color:#6c6c6c;line-height:27px;letter-spacing:-1px;}
.bn_list_detail_wrap .bn_list_detail p > img{width:auto !important;max-width:100% !important;}/* (add)20180529 */
.bn_list_detail_wrap .ico_social{bottom:30px;}
.bn_list_detail_wrap .ico_social img{width:30px;height:30px;}

/* youtube */
.video_box_wrap{width:840px;height:474px;margin:0 auto;margin-bottom:70px;}
.video_box_wrap .video_box{position:relative;margin-top:30px;padding-top:30px;padding-bottom:56.25%;overflow:hidden;}
.video_box_wrap .video_box iframe,
.video_box_wrap .video_box object,
.video_box_wrap .video_box embed{position:absolute;top:0;left:0;width:100%;height:100%;}

/* btn */
.tab_cnt_btn_sub5{margin-top:30px;}
.btn_gray{display:inline-block;width:145px;padding:9px 0 10px 0;font-family:"NotoSansLight";font-size:18px;color:#fff !important;text-align:center;line-height:18px;border:1px solid #7c7c7c;border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;-webkit-border-radius:2px;background-color:#7c7c7c;vertical-align:middle;}

/* sub5소식_V01_170524_final_10_비즈플레이소식 */
.tbl_lst1{border-bottom:1px solid #7c7c7c;}
.tbl_lst1 .tbl_head{display:block;}
.tbl_lst1 .tbl_head .row,
.tbl_lst1 .tbl_body .row{position:relative;*zoom:1;border-top:1px solid #d7d7d7;}
.tbl_lst1 .tbl_head .row:before,
.tbl_lst1 .tbl_head .row:after,
.tbl_lst1 .tbl_body .row:before,
.tbl_lst1 .tbl_body .row:after{display:table;content:'';}
.tbl_lst1 .tbl_head .row:after,
.tbl_lst1 .tbl_body .row:after{clear:both;}

.tbl_lst1 .tbl_head .row{display:block;border-top:1px solid #d7d7d7;background-color:#f0f0f0;}
.tbl_lst1 .tbl_head .row:first-child{border-top:0;}

.tbl_lst1 .tbl_head .row .col,
.tbl_lst1 .tbl_body .row .col{float:left;display:inline-block;vertical-align:top;}

.tbl_lst1 .tbl_head .row .col > span.name,/* (add)20200326 */
.tbl_lst1 .tbl_head .row .col > span.date,
.tbl_lst1 .tbl_head .row .col > span.view,
.tbl_lst1 .tbl_body .row .col > span.name,/* (add)20200326 */
.tbl_lst1 .tbl_body .row .col > span.date,
.tbl_lst1 .tbl_body .row .col > span.view{float:left;display:inline-block;}

.tbl_lst1 .tbl_body{display:block;}
.tbl_lst1 .tbl_body .row.active{background-color:#f3f7fa;}/* (modify)20171108 */
.tbl_lst1 .tbl_body .row > a{*zoom:1;}
.tbl_lst1 .tbl_body .row > a:before,
.tbl_lst1 .tbl_body .row > a:after{display:table;content:'';}
.tbl_lst1 .tbl_body .row > a:after{clear:both;}
.tbl_lst1 .tbl_body .row > a{display:block;background-color:transparent;}

.tbl_lst1 .tbl_head .row .col > span,
.tbl_lst1 .tbl_body .row .col > span{display:block;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.tbl_lst1 .tbl_head .row .col > span{padding:10px 5px;font-family:"NotoSansRegular";font-size:16px;color:#222;line-height:21px;}
.tbl_lst1 .tbl_body .row .col > span{padding:15px 5px;font-family:"NanumGothicRegular";font-size:14px;color:#222;line-height:19px;}
.tbl_lst1 .tbl_body .row .col > span.ico_alarm{height:49px;padding-top:0;padding-bottom:0;background-image:url(../img/icon/icon_alarm.png);background-repeat:no-repeat;background-position:50% 50%;background-size:40px auto;}/* (modify)20171108 */
.tbl_lst1 .tbl_body .row .col > span.ico_alarm.on{background-image:url(../img/icon/icon_alarm_on.png);background-size:40px auto;}/* (modify)20171108 */

.tbl_lst1 .tbl_head .row,
.tbl_lst1 .tbl_body .row > a{padding:0 257px 0 112px;}/* (modify)20200326 */
.tbl_lst1 .tbl_body .row > a:hover .col.col2 span{color:#0070c9;text-decoration:underline;}
.tbl_lst1 .tbl_body .row > a .col.col2 span em.countNew{display:inline-block;min-width:16px;vertical-align:middle;margin:-1px 0 0 8px;padding:1px 4px 1px 4px;font-family:"NotoSansRegular";font-weight:normal;font-size:12px;color:#fff;line-height:15px;text-align:center;border-radius:24px;background-color:#fd000d;font-style:normal;}/* (add)20200708 */
/* //(add)20191022 */

/* (delete)20180619
.tbl_lst1 .tbl_head .row .col.col1,
.tbl_lst1 .tbl_body .row > a .col.col1{position:absolute;top:50%;left:0;margin-top:-25px;}
*/
.tbl_lst1 .tbl_head .row .col.col1{position:absolute;top:50%;left:0;margin-top:-25px;}/* (modify)20180619 */
.tbl_lst1 .tbl_body .row > a .col.col1{position:absolute;top:0;left:0;}/* (modify)20180619 */
.tbl_lst1 .tbl_head .row .col.col1{margin-top:-21px;}
/*.tbl_lst1 .tbl_body .row.active > a .col.col1{margin-top:-24px;}*/

.tbl_lst1 .tbl_head .row .col.col3,
.tbl_lst1 .tbl_body .row > a .col.col3{margin-right:-257px;}/* (modify)20200326 */

.tbl_lst1 .tbl_head .row .col.col1 > span,
.tbl_lst1 .tbl_body .row > a .col.col1 > span{width:102px;}
.tbl_lst1 .tbl_head .row .col.col1,
.tbl_lst1 .tbl_body .row > a .col.col1{width:112px;}

.tbl_lst1 .row .col.col2{width:100%;}
.tbl_lst1 .row .col.col2 span{padding-left:44px;}
.tbl_lst1 .tbl_body .row.active .col.col2 span{color:#222;font-weight:bold;}/* (add)20171108 */

.tbl_lst1 .tbl_body .row > a .col.col3{width:257px;}/* (modify)20200326 */
.tbl_lst1 .tbl_body .row > a .col.col3 span.col3_sub_tit{display:none;vertical-align:top;}
/* (add)20200326 */
.tbl_lst1 .tbl_head .row .col > span.name,
.tbl_lst1 .tbl_body .row .col > span.name{width:73px;text-align:center;}
/* //(add)20200326 */
.tbl_lst1 .tbl_head .row .col > span.date,
.tbl_lst1 .tbl_body .row .col > span.date{width:111px;text-align:center;}/* (modify)20200326 */
.tbl_lst1 .tbl_head .row .col > span.view,
.tbl_lst1 .tbl_body .row .col > span.view{width:117px;}

.tbl_lst1 .row .col.col2 span.category{padding-left:74px;}/* (add)20201110 */
.tbl_lst1 .tbl_head .row .col.col4{position:absolute;left:112px;}/* (add)20201110 */
.tbl_lst1 .tbl_body .row .col.col4{position:absolute;left:112px;}/* (add)20201110 */
.tbl_lst1 .tbl_body .row.active .col.col4 span{color:#222;font-weight:bold;}/* (add)20201110 */

.tbl_lst1 .tbl_foot .row .col > span{display:block;padding:15px 5px;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#222 !important;line-height:19px;text-align:center;border-top:1px solid #d7d7d7;}/* (add)20191101 */
.tbl_lst1 .tbl_foot .row .col > span.btNone{border-top:none;}/* (add)20191101 */

.tit_lst_article{}
.tit_lst_article .tit{border-bottom:1px solid #d7d7d7;background-color:#fafafa;overflow:hidden;}
.tit_lst_article .tit > div{float:left;display:inline-block;}
.tit_lst_article .tit > div.tit1{width:10%;}
.tit_lst_article .tit > div.tit2{width:65%;padding:0 30px;}
.tit_lst_article .tit > div span{display:block;padding:12px 0 13px;font-family:"NotoSansRegular";font-size:16px;color:#222;line-height:16px;text-align:center;}

.lst_article{}
.lst_article .article{}
.lst_article .article a{position:relative;display:block;border-bottom:1px solid #d7d7d7;overflow:hidden;}
.lst_article .article a .txt_num{position:absolute;top:50%;float:left;width:10%;margin-top:-10px;}
.lst_article .article a .txt_num span{display:block;width:100%;font-family:'NanumGothicRegular';font-size:14px;color:#222;text-align:center;}

.lst_article .article a .txt_info{position:relative;float:left;width:90%;min-height:132px;margin-left:10%;}
.lst_article .article a .txt_info .tit_info{display:block;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;word-wrap:break-word;height:25px;margin-top:17px;padding:0 36px;font-family:'NotoSansRegular';font-size:23px;color:#222;line-height:25px;}
.lst_article .article a .txt_info .txt_info_dtl{display:block;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;word-wrap:break-word;height:40px;margin:8px 0 43px;padding:0 36px;font-family:'NanumGothicRegular';font-size:14px;color:#222;line-height:20px;}
.lst_article .article a:hover .txt_info .tit_info,
.lst_article .article a:hover .txt_info .txt_info_dtl{color:#0070c9;text-decoration:underline;}
.lst_article .article a .txt_info .txt_date{position:absolute;bottom:18px;display:inline-block;padding:0 36px;font-family:'NotoSansMedium';font-size:14px;color:#222;line-height:16px;}

/* sub6 */
.container .container_inner.sub_page6{display:block;margin:0 auto;padding:50px 0 0;}/* (modify)20200708 */

.tab_cnt_wrap .tab_cnt_inner .cmd_tit{margin-top:14px;font-family:'NanumGothicRegular';font-size:17px;color:#333;line-height:26px;letter-spacing:-1px;word-break:keep-all;}
.tab_cnt_wrap .tab_cnt_inner .cmd_tit span{display:block;}
.tab_cnt_wrap .tab_cnt_inner .tab_cnt_sub6.tab1{padding-bottom:86px;}

/* tab_sub6 */
.tab_sub6{display:block;width:1200px;margin:0 auto 48px;padding:0;overflow:hidden;}/* (modify)20200708 */
.tab_sub6 .tab_sub6_inner{display:block;padding:0;overflow:hidden;}/* (modify)20200708 */
.tab_sub6 .tab_sub6_inner .tab{float:left;display:inline-block;vertical-align:top;width:285px;margin-left:20px;}/* (modify)2010MMDD */
.tab_sub6 .tab_sub6_inner .tab:first-child{margin-left:0;}/* (modify)2010MMDD */
.tab_sub6 .tab_sub6_inner .tab a{display:block;height:78px;border:1px solid #d7d7d7;background-color:#fff;}/* (modify)20200708 */
.tab_sub6 .tab_sub6_inner .tab a:hover{border:1px solid #7c7c7c;}
.tab_sub6 .tab_sub6_inner .tab.on a{border:1px solid #7c7c7c;}
.tab_sub6 .tab_sub6_inner .tab a span{display:block;margin:0;padding:0 5px;font-family:'NotoSansRegular';font-size:20px;color:#bcbcbc;line-height:78px;text-align:center;}
.tab_sub6 .tab_sub6_inner .tab a:hover span{color:#333 !important;}
.tab_sub6 .tab_sub6_inner .tab.on a span{color:#333 !important;}

.tab_cnt_sub6.tab1 .tit_dtl{padding:60px 0;border-bottom:1px solid #d9d9d9;}
.tab_cnt_sub6.tab1 .tit_dtl h4{font-family:'Batang','바탕';font-size:50px;color:#222;text-align:center;line-height:62px;letter-spacing:-5px;word-break:keep-all;}
.tab_cnt_sub6.tab1 .tit_dtl h4 i{display:inline-block;width:45px;height:auto;font-family:'NotoSansBlack';font-size:48px;color:#e5e5e5;font-style:normal;}
.tab_cnt_sub6.tab1 .tit_dtl h4 i.left{margin-left:-45px;}
.tab_cnt_sub6.tab1 .tit_dtl h4 i.right{margin-right:-45px;}
.tab_cnt_sub6.tab1 .tit_dtl h4 span{display:inline-block;position:relative;padding:0 45px;}
.tab_cnt_sub6.tab1 .tit_dtl h4 br{display:none;}

.tab_cnt_sub6.tab1 .cnt_info{margin:60px 45px 0;}
.tab_cnt_sub6.tab1 .cnt_info p{margin-top:25px;font-family:'NotoSansRegular';font-size:16px;color:#000;line-height:24px;word-break:keep-all;}
.tab_cnt_sub6.tab1 .cnt_info p:first-child{margin-top:0;}

.tab_cnt_sub6 .tab_cnt_dtl{position:relative;margin:4px 0 50px;text-align:center;}
.tab_cnt_sub6 .tab_cnt_dtl img{width:100%;}

.tab_cnt_sub6.tab3 .award_wrap{/*max-width:1000px;*/margin:70px auto 95px;overflow:hidden;}/* (modify)20180503 */
.tab_cnt_sub6.tab3 .award_wrap .award{float:left;width:20%;text-align:center;}/* (modify)20180503 */
.tab_cnt_sub6.tab3 .award_wrap .award.aw01 img{height:218px;margin-top:7px;}
.tab_cnt_sub6.tab3 .award_wrap .award.aw02 img{height:199px;margin-top:26px;}
.tab_cnt_sub6.tab3 .award_wrap .award.aw03 img{height:225px;}
.tab_cnt_sub6.tab3 .award_wrap .award.aw04 img{height:225px;}
.tab_cnt_sub6.tab3 .award_wrap .award.aw05 img{height:199px;margin-top:26px;}/* (add)20180503 */
.tab_cnt_sub6.tab3 .award_wrap .award.aw06 img{height:199px;margin-top:26px;}/* (add)20180503 */
.tab_cnt_sub6.tab3 .award_wrap .award.aw07 img{height:199px;margin-top:26px;}/* (add)20210225 */
.tab_cnt_sub6.tab3 .award_wrap .award .txt_dtl{}
.tab_cnt_sub6.tab3 .award_wrap .award .txt_dtl p{margin-top:20px;font-family:'NotoSansRegular';font-size:16px;color:#000;line-height:24px;letter-spacing:-1px;}/* (modify)20180503 */
.tab_cnt_sub6.tab3 .award_wrap .award .txt_dtl span{margin-top:4px;display:inline-block;font-family:'NotoSansRegular';font-size:14px;color:#aeaeae;line-height:18px;}

.tab_cnt_sub6.tab3 .lst_history{margin-bottom:90px;padding:0 55px;}
.tab_cnt_sub6.tab3 .lst_history dl{border-top:1px solid #d9d9d9;overflow:hidden;}
.tab_cnt_sub6.tab3 .lst_history dl dt{float:left;display:inline-block;width:20%;margin-top:24px;font-family:'NotoSansRegular';font-size:21px;color:#222;line-height:26px;text-align:center;}
.tab_cnt_sub6.tab3 .lst_history dl dd{float:left;display:inline-block;width:80%;padding-bottom:30px;}
.tab_cnt_sub6.tab3 .lst_history dl dd .history_dtl{margin-top:42px;overflow:hidden;}
.tab_cnt_sub6.tab3 .lst_history dl dd .history_dtl:first-child{margin-top:29px;}
.tab_cnt_sub6.tab3 .lst_history dl dd .history_dtl .month{float:left;width:20%;font-family:'NotoSansRegular';font-size:14px;color:#222;line-height:20px;}
.tab_cnt_sub6.tab3 .lst_history dl dd .history_dtl .info_dtl{float:left;width:80%;}
.tab_cnt_sub6.tab3 .lst_history dl dd .history_dtl .info_dtl .info{overflow:hidden;margin-top:12px;}
.tab_cnt_sub6.tab3 .lst_history dl dd .history_dtl .info_dtl .info:first-child{margin-top:0;}
.tab_cnt_sub6.tab3 .lst_history dl dd .history_dtl .info_dtl .info span{float:left;width:20%;font-family:'NotoSansRegular';font-size:14px;color:#222;line-height:20px;}
.tab_cnt_sub6.tab3 .lst_history dl dd .history_dtl .info_dtl .info p{float:left;width:80%;font-family:'NotoSansRegular';font-size:14px;color:#222;line-height:20px;}

.tab_cnt_sub6.tab4{padding:0 53px;}
.tab_cnt_sub6.tab4 .tb_info{margin:20px 0 90px;}
.tab_cnt_sub6.tab4 .tb_info .tb_head{padding-left:40px;border-top:1px solid #666;border-bottom:1px solid #666;overflow:hidden;}
.tab_cnt_sub6.tab4 .tb_info .tb_head span{float:left;display:inline-block;padding:22px 0 23px;font-family:'NotoSansBold';font-size:17px;color:#222;line-height:22px;}
.tab_cnt_sub6.tab4 .tb_info .tb_head .tit01{width:20%;}
.tab_cnt_sub6.tab4 .tb_info .tb_head > div{float:left;width:80%;}
.tab_cnt_sub6.tab4 .tb_info .tb_head > div .tit02{width:15%;}
.tab_cnt_sub6.tab4 .tb_info .tb_head > div .tit03{width:60%;}
.tab_cnt_sub6.tab4 .tb_info .tb_head > div .tit04{width:25%;}

.tab_cnt_sub6.tab4 .tb_info .tb_body{}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row{padding-left:40px;border-bottom:1px solid #d9d9d9;overflow:hidden;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .tit{float:left;width:20%;margin-top:18px;font-family:'NotoSansRegular';font-size:21px;color:#222;line-height:26px;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .info_dtl{float:left;width:80%;padding:10px 0 23px;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .info_dtl .cmd_row{overflow:hidden;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .info_dtl .cmd_row > div{float:left;margin-top:13px;overflow:hidden;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .info_dtl .cmd_row > div.col01{width:15%;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .info_dtl .cmd_row > div.col02{width:60%;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .info_dtl .cmd_row > div.col02 span{padding-right:30px;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .info_dtl .cmd_row > div.col03{width:25%;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .info_dtl .cmd_row > div .tit_head{display:none;}
.tab_cnt_sub6.tab4 .tb_info .tb_body .tb_row .info_dtl .cmd_row > div span{display:inline-block;font-family:'NotoSansRegular';font-size:14px;color:#222;line-height:18px;}

.tab_cnt_sub6.tab5 .map{width:988px;margin:63px auto 0;}/* (modify)20200708 */
.tab_cnt_sub6.tab5 .map img{width:100%;}
.tab_cnt_sub6.tab5 .contact{margin-top:13px;}
.tab_cnt_sub6.tab5 .contact ul{text-align:center;}
.tab_cnt_sub6.tab5 .contact ul li{display:inline-block;padding:1px 40px 2px;font-family:'NotoSansRegular';font-size:16px;color:#000;line-height:21px;background-image:url(../img/bg/bg_contact.png);background-repeat:no-repeat;}
.tab_cnt_sub6.tab5 .contact ul li.address{background-position:15px 3px;}
.tab_cnt_sub6.tab5 .contact ul li.phone{background-position:19px -83px;}
.tab_cnt_sub6.tab5 .contact ul li.phone a{display:inline-block;cursor:default;}

.tab_cnt_sub6.tab5 .tab_feature{max-width:988px;margin:55px auto 90px;overflow:hidden;}
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap{margin-left:-10px;}/* (modify)202204DD */
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab{float:left;width:25%;text-align:center;}/* (modify)202204DD */
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab:first-child{width:25%;}/* (modify)202204DD */
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab .tab_info{height:168px;margin-left:10px;border:1px solid #d9d9d9;}/* (modify)202204DD */

.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab .tab_info .txt{display:block;margin-top:20px;font-family:'NotoSansRegular';font-size:20px;color:#333;line-height:25px;}
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab .tab_info .num{display:block;min-height:56px;}/* (modify)202204DD */
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab .tab_info .num a{display:inline-block;margin-top:16px;font-family:'NotoSansMedium';font-size:30px;color:#333;font-weight:500;line-height:40px;letter-spacing:-0.025em;cursor:default;}/* (modify)20220412 */
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab .tab_info .sub_tab{display:inline-block;margin-top:20px;overflow:hidden;}
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab .tab_info .sub_tab li{float:left;padding:0 10px 1px;font-family:'NotoSansRegular';font-size:16px;color:#333;line-height:21px;border-left:1px solid #d9d9d9;}/* (modify)20220308 */
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab .tab_info .sub_tab li:first-child{border-left:none;}/* (modify)20220308 */
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab .tab_info .btn_sm{display:inline-block;margin-top:15px;padding:3px 22px 5px;font-family:'NotoSansRegular';font-size:16px;color:#7c7c7c;line-height:21px;border:1px solid #7c7c7c;-webkit-border-radius:30px;-moz-border-radius:30px;-o-border-radius:30px;-ms-border-radius:30px;border-radius:30px;background-color:#fff;}
.tab_cnt_sub6.tab5 .tab_feature .tab_wrap .tab .tab_info .btn_sm:hover{color:#fff;background-color:#7c7c7c;}

/* Image Zoom */
a.btn_zoom{display:none;position:absolute;right:16px;bottom:10px;width:50px;height:50px;background-color:transparent;background-image:url(../img/btn/btn_zoom.png);background-repeat:no-repeat;background-position:0 0;background-size:50px 50px;}

/* footer */
.footer{display:block;width:100%;margin:0 auto;padding:0 0 74px 0;border-top:1px solid #d8d8d8;overflow:hidden;}/* (modify)20200708 */
.footer .footer_inner{position:relative;display:block;width:1200px;height:41px;margin:0 auto;padding:0;/*overflow:hidden;*/}/* (modify)20200708 */

/* footer_top */
.footer_top{display:block;position:relative;margin:0 auto;padding:30px 0;border-bottom:1px solid #d8d8d8;/*overflow:hidden;*/z-index:2;}/* (modify)20200708 */
.footer_top .serv_center{float:left;display:block;}
.footer_top .serv_center dl{display:block;padding-left:170px;overflow:hidden;}/* (modify)20200708 */
.footer_top .serv_center dl dt,
.footer_top .serv_center dl dd{float:left;}
.footer_top .serv_center dl dt{width:170px;margin-left:-170px;}/* (modify)20200708 */
.footer_top .serv_center dl dt > h4{display:block;margin:0;padding:9px 0 10px;font-family:"NotoSansRegular";font-size:22px;color:#222;line-height:22px;font-weight:normal;}/* (modify)20200708 */
.footer_top .serv_center dl dd > p{display:inline-block;vertical-align:top;margin:0;padding:13px 0 14px;font-family:"NanumGothicRegular";font-size:14px;color:#828282;line-height:14px;}
.footer_top .serv_center dl dd > p a{color:#555;}
.footer_top .serv_center dl dd > p i,
.footer_top .serv_center dl dd > p img{display:inline-block;vertical-align:top;height:14px;}
.footer_top .serv_center dl dd > p.serv_cen_time i{margin:0 5px 0 0;}
.footer_top .serv_center dl dd > p.serv_cen_tel i{/*margin:0 5px 0 34px;*/margin:0 5px 0 0;}/* (modify)20170913 */
/* (add)20210910 */
/* ㄴtype2 */
.footer_top .serv_center.type2{}
.footer_top .serv_center.type2 dl{padding-left:0;}
.footer_top .serv_center.type2 dl dt,
.footer_top .serv_center.type2 dl dd{float:left;}
.footer_top .serv_center.type2 dl dt{width:inherit;margin-left:0;}
.footer_top .serv_center.type2 dl dt > h4{display:block;margin:0;padding:9px 0 10px;font-family:"NotoSansRegular";font-size:22px;color:#222;line-height:22px;font-weight:normal;}
.footer_top .serv_center.type2 dl dt > h4 strong{margin-left:5px;font-family:"NotoSansMedium";font-size:22px;color:#222;line-height:22px;font-weight:normal;}
.footer_top .serv_center.type2 dl dd > p{padding:11px 0 11px 30px;font-family:"NanumGothicRegular";font-size:19px;color:#828282;line-height:19px;}
/* //(add)20210910 */

/* footer_top */
.footer_top .footer_menu_top{float:right;display:inline-block;vertical-align:top;margin-right:5px;}
.footer_top .footer_menu_top ul{display:inline-block;overflow:hidden;}/* (modify)20170913 */
.footer_top .footer_menu_top ul li{float:left;display:inline-block;vertical-align:top;}
.footer_top .footer_menu_top ul li > a{display:block;margin:0;padding:12px 16px 13px;font-family:"NotoSansLight";font-size:16px;color:#555;line-height:16px;}/* (modify)20170913 */
.footer_top .footer_menu_top ul li > a:hover{text-decoration:underline;}

.footer_top .footer_menu_top .footer_exp_mana{display:inline-block;margin:5px 0 0 20px;vertical-align:top;}/* (add)20190927 */
.footer_top .footer_menu_top .btn_exp_mana{display:inline-block;vertical-align:top;width:123px;height:29px;margin:0;padding:0 44px 0 15px;font-family:"NanumGothicRegular";font-size:14px;color:#1a32d8;line-height:29px;letter-spacing:0;border:1px solid #1c4595;border-radius:5px;background-image:url(../img/icon/icon_download2.png);background-repeat:no-repeat;background-position:154px 50%;background-size:14px 13px;}/* (modify)20190927 */
.footer_top .footer_menu_top .btn_exp_mana:hover{color:#222;border:1px solid #000;background-image:url(../img/icon/icon_download2_over.png);background-repeat:no-repeat;background-position:154px 50%;background-size:14px 13px;}/* (modify)20190927 */
/* (add)20210910 */
.footer_top .footer_menu_top .footer_onlineHelp{display:inline-block;margin:-5px 0 0 0;vertical-align:top;}
.footer_top .footer_menu_top .btn_onlineHelp{display:inline-block;vertical-align:top;height:49px;margin:0;padding:0 51px 0 20px;font-family:"NanumGothicRegular";font-size:14px;color:#1a32d8;line-height:49px;letter-spacing:0;border:1px solid #1c4595;border-radius:5px;background-color:#fff;background-image:url(../img/icon/icon_onlineHelp.png);background-repeat:no-repeat;background-position:127px 12px;background-size:25px 26px;}
/* //(add)20210910 */

/* footer_bottom */
.footer_bottom{display:block;position:relative;margin:0;padding:35px 0 0;z-index:1;}/* (modify)20190927 */
.footer_bottom .footer_menu_btm{display:block;margin:0;padding:0 0 0 156px;}/* (modify)20200708 */
.footer_bottom .footer_menu_btm ul{display:block;overflow:hidden;}
.footer_bottom .footer_menu_btm ul li:first-child{margin:0;}
.footer_bottom .footer_menu_btm ul li{float:left;display:inline-block;vertical-align:top;margin:0 0 0 25px;}/* (modify)20180612 */
.footer_bottom .footer_menu_btm ul li > a{display:block;margin:0;padding:8px 14px 10px;font-family:"NotoSansRegular";font-size:16px;color:#888;line-height:16px;}/* (modify)20180612 */
.footer_bottom .footer_menu_btm ul li > a:hover{text-decoration:underline;}
.footer_bottom .footer_menu_btm ul li > a.strong{color:#309bff !important;}/* (add)20210805 */

/* footer_contact_us */
.footer_cntus{display:block;padding:20px 0 0 170px;/*overflow:hidden;*/}/* (modify)20200708 */
.footer_cntus .logo_foot{display:block;position:absolute;top:8px;left:0;}/* (modify)20200708 */
.footer_cntus .logo_foot > a{display:block;width:auto;max-width:160px;height:32px;margin:0;padding:0;font-size:0;}/* (modify)20170627 */
.footer_cntus .logo_foot > a img{max-width:160px;max-height:32px;}/* (modify)20170627 */

.footer_cntus .footer_cnt_info{float:left;display:inline-block;vertical-align:top;margin:0;padding:0;}
.footer_cntus .footer_cnt_info > p{display:block;margin:0;padding:4px 0 5px;font-family:"NanumGothicRegular";font-size:12px;color:#888;line-height:12px;letter-spacing:normal;word-break:keep-all;}
.footer_cntus .footer_cnt_info > p a{margin:0 6px;font-family:"NanumGothicRegular";color:#888;}
.footer_cntus .footer_cnt_info > p a.cr{margin:0;font-family:"NanumGothicRegular";color:#888;}
.footer_cntus .footer_cnt_info > p a:hover,
.footer_cntus .footer_cnt_info > p a.cr:hover{text-decoration:underline;}
/*.footer_cntus .footer_cnt_info > p span{margin:0 0 0 8px;font-family:"NotoSansLight";}*/
.footer_cntus .footer_cnt_info > p i{margin:0 0 0 6px;font-family:"NanumGothicRegular";font-size:11px;font-style:normal;}
.footer_cntus .footer_cnt_info > p.foot_copyright{margin-top:20px;color:#888;}

/* footer_contact_partner */
.footer_cnt_pnt{float:right;display:inline-block;margin-top:-39px;}
.footer_cnt_pnt ul{display:block;overflow:hidden;}
.footer_cnt_pnt ul li{float:left;display:inline-block;vertical-align:top;margin:0 0 0 13px;padding:0;text-align:center;}/* (modify)20210225 */
.footer_cnt_pnt ul li:first-child{margin:0;}/* (add)20200708 */
.footer_cnt_pnt ul li p{display:block;margin:0;padding:4px 0 6px;font-family:"NanumGothicRegular";font-size:12px;color:#555;line-height:19px;}

/* botton_gotoTop */
.btn_gotoTop{position:fixed;right:42px;bottom:28px;display:none;width:50px;height:50px;background-image:url(../img/btn/btn_gotoTop.png);background-repeat:no-repeat;background-position:0 0;z-index:9999;}
.zmCTR6 .btn_gotoTop{right:16px !important;}

/* paging */
.paging_wrap{position:relative;clear:both;margin-top:30px;}
.paging_wrap.boardPage{margin-top:20px;}/* (add)20200701 */
.paging{display:block;height:35px;text-align:center;}
.paging .btn_pag_cntr{width:33px;height:33px;display:inline-block;}
.paging .pag_num{display:inline-block;vertical-align:top;margin:0 11px 0 10px;height:35px;overflow:hidden;}
.paging .pag_num a{display:inline-block;width:35px;height:33px;margin:0;padding:3px 0 0;font-family:'NotoSansLight';font-size:14px;line-height:28px;font-weight:bold;color:#222;text-align:center;}
.paging .pag_num a.on,
.paging .pag_num a:hover{color:#0070c9;text-decoration:underline;}
.paging .btn_pag_cntr.first,
.paging .btn_pag_cntr.prev,
.paging .btn_pag_cntr.next,
.paging .btn_pag_cntr.last{border:1px solid #d9d9d9;background-repeat:no-repeat;}

.paging .btn_pag_cntr.first:hover,
.paging .btn_pag_cntr.prev:hover,
.paging .btn_pag_cntr.next:hover,
.paging .btn_pag_cntr.last:hover{border:1px solid #ccc;}

.paging .btn_pag_cntr.first{margin-right:8px;background-image:url(../img/icon/icon_first.png);}
	.paging .btn_pag_cntr.first:hover{margin-right:8px;background-image:url(../img/icon/icon_first_on.png);}
	.paging .btn_pag_cntr.first.off{background-image:url(../img/icon/icon_first.png);}
.paging .btn_pag_cntr.prev{background-image:url(../img/icon/icon_prev.png);}
	.paging .btn_pag_cntr.prev:hover{background-image:url(../img/icon/icon_prev_on.png);}
	.paging .btn_pag_cntr.prev.off{background-image:url(../img/icon/icon_prev.png);}
.paging .btn_pag_cntr.next{background-image:url(../img/icon/icon_next.png);}
	.paging .btn_pag_cntr.next:hover{background-image:url(../img/icon/icon_next_on.png);}
	.paging .btn_pag_cntr.next.off{background-image:url(../img/icon/icon_next.png);}
.paging .btn_pag_cntr.last{margin-left:8px;background-image:url(../img/icon/icon_last.png);}
	.paging .btn_pag_cntr.last:hover{margin-left:8px;background-image:url(../img/icon/icon_last_on.png);}
	.paging .btn_pag_cntr.last.off{background-image:url(../img/icon/icon_last.png);}

.paging .btn_pag_cntr.off{cursor:default !important;border:1px solid #d9d9d9 !important;}

/* (add)20170628 */
/* popup :Notice*/
.pop_container{display:block;min-width:650px;margin:0;padding:50px 0 0;border:3px solid #517dc1;background-color:#fff;}
.pop_header{display:block;position:relative;width:540px;margin:0 auto;padding:0;text-align:center;}
.pop_main_browser{display:block;position:relative;width:540px;height:207px;margin:43px auto 30px;padding:0;overflow:hidden;}
.ic_pop_browser{display:block;position:relative;}
.ic_pop_browser > li{display:inline-block;float:left;vertical-align:top;margin:0 10px;padding:0;width:160px;height:129px;overflow:hidden;}
.ic_pop_browser > li a{display:block;margin:0;padding:0;width:160px;height:129px;background-color:#fff;background-image:url(../img/notice/ic_browser_sprite.png);background-repeat:no-repeat;overflow:hidden;}
.ic_pop_browser > li a.ic_IE{background-position:0 0;}
.ic_pop_browser > li a.ic_IE:hover{background-position:0 -130px;}
.ic_pop_browser > li a.ic_Chrome{background-position:-180px 0;}
.ic_pop_browser > li a.ic_Chrome:hover{background-position:-180px -130px;}
.ic_pop_browser > li a.ic_FF{background-position:-360px 0;}
.ic_pop_browser > li a.ic_FF:hover{background-position:-360px -130px;}
.pop_footer{display:block;height:29px;margin:0;padding:0;text-align:right;border-top:1px solid #bcd1ea;background-color:#dce5f3;overflow:hidden;vertical-align:top;}
.pop_footer > label{display:inline-block;height:28px;margin:0;padding:1px 15px 0 15px;font-family:"NanumGothicRegular";font-size:12px;color:#0860b7;line-height:25px;text-align:right;border-right:1px solid #bcd1ea;}
.pop_footer > label input[type=checkbox]{vertical-align:-2px;*vertical-align:0;width:13px !important;height:13px !important;}
.pop_footer > .bt_close{display:inline-block;width:33px;height:29px;overflow:hidden;line-height:29px;background-image:url(../img/notice/bt_close.png);background-repeat:no-repeat;background-position:50%;}
/* //(add)20170628 */

/* (add)20180828 */
.biz_type{/*min-height:911px;*/background-color:#fbfbfb !important;}/* (modify)20181214 */
.biz_type_lst{margin:0 -10px;padding-bottom:40px;overflow:hidden;}
.biz_type_lst .pc_app{float:left;display:inline-block;width:25%;text-align:center;}/* (modify)20200417 */
.biz_type_lst .pc_app .pc_app_inner{display:block;}
.biz_type_lst .pc_app .pc_app_box{position:relative;display:block;height:506px;margin:10px;padding-bottom:10px;border:1px solid #17d9fc;background-color:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 12px 29px 0 rgba(134, 134, 134, 0.13);-moz-box-shadow:0 12px 29px 0 rgba(134, 134, 134, 0.13);box-shadow:0 12px 29px 0 rgba(134, 134, 134, 0.13);}
.biz_type_lst .pc_app .pc_app_box .ico{display:table;width:100%;}
.biz_type_lst .pc_app .pc_app_box .ico > p{display:table-cell;height:186px;padding:16px 0 0;vertical-align:middle;}

.biz_type_lst .pc_app .pc_app_box dl{display:block;}
.biz_type_lst .pc_app .pc_app_box dl dt{display:block;padding:12px 0 13px 0;font-family:'NotoSansMedium';font-size:20px;line-height:25px;color:#fff;text-align:center;}

.biz_type_lst .pc_app .pc_app_box dl dt strong{display:inline-block;font-size:28px;vertical-align:-3px;}
.biz_type_lst .pc_app .pc_app_box dl dt img{width:74px;height:74px;}
/*.biz_type_lst .pc_app .pc_app_box dl img{margin-top:50px;margin-bottom:34px;}*/
.biz_type_lst .pc_app .pc_app_box dl dd{position:relative;min-height:385px;}
.biz_type_lst .pc_app .pc_app_box dl dd .tit_h5{display:block;padding:6px 0 0;font-family:'NotoSansMedium';font-weight:normal;font-size:24px;line-height:29px;color:#222;text-align:center;}/* (modify)20200428 */
.biz_type_lst .pc_app .pc_app_box dl dd .tit_h5{min-height:56px;}/* (modify)20200428 */
.biz_type_lst .pc_app .pc_app_box dl dd .tit_h5 span.type{display:block;margin:4px 0 0;padding:0;font-family:'NanumGothicBold';font-weight:700;font-size:16px;color:#ed3d3d;line-height:25px;}/* (add)20191101 */
.biz_type_lst .pc_app .pc_app_box dl dd .txt_detial{display:block;margin-top:0;padding:0 5px;font-family:'NanumGothicRegular';font-size:12px;color:#222;line-height:21px;text-align:center;letter-spacing:-0.025em;}/* (modify)20191101 */
.biz_type_lst .pc_app .pc_app_box dl dd .tit_h5:lang(ko),
.biz_type_lst .pc_app .pc_app_box dl dd .txt_detial:lang(ko){word-break:keep-all;}
.biz_type_lst .pc_app .pc_app_box .txt_read_more{display:inline-block;padding:1px 6px 0 7px;font-family:'NanumGothicBold';font-size:14px;color:#0072c5;}
.biz_type_lst .pc_app .pc_app_box .txt_read_more:hover{text-decoration:underline;}
.biz_type_lst .pc_app .pc_app_box:hover{position:relative;background-color:#ffff;}

.biz_type_lst .pc_app.prem .pc_app_box{border:1px solid #27c1ee;}
.biz_type_lst .pc_app.pub .pc_app_box{border:1px solid #1793ee;}
.biz_type_lst .pc_app.enter .pc_app_box{border:1px solid #4739ff;}

.biz_type_lst .pc_app.lite .pc_app_box dl dt{background-color:#17d9fc;}
.biz_type_lst .pc_app.prem .pc_app_box dl dt{background-color:#27c1ee;}
.biz_type_lst .pc_app.pub .pc_app_box dl dt{background-color:#1793ee;}
.biz_type_lst .pc_app.enter .pc_app_box dl dt{background-color:#4739ff;}

/* (add)20200417 */
.biz_type_lst.type1{margin:0;padding:0 0 18px;overflow:visible;}/* (modify)20200428 */
.biz_type_lst.type1 .pc_app .pc_app_box{display:block;position:relative;height:505px;margin:13px 16px 28px 16px;padding:0;border:1px solid #17d9fc;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:#fff;-webkit-box-shadow:-4px 15px 12px 0 rgba(134, 134, 134, 0.1);-moz-box-shadow:-4px 15px 12px 0 rgba(134, 134, 134, 0.1);box-shadow:-4px 15px 12px 0 rgba(134, 134, 134, 0.1);-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}/* (modify)20200708 */
.biz_type_lst.type1 .pc_app .pc_app_box:after,
.biz_type_lst.type1 .pc_app .pc_app_box:before{content:'';position:absolute;border:1px solid #17d9fc;}
.biz_type_lst.type1 .pc_app .pc_app_box:after{width:100%;height:12px;left:6px;top:0;right:0;transform:translateY(-100%) skewx(-45deg);background-color:#e5f0f2;border-right:none;}
.biz_type_lst.type1 .pc_app .pc_app_box:before{width:12px;height:100%;right:0;top:-6px;transform:translateX(100%) skewy(-45deg);background-color:#bad9de;}

.biz_type_lst.type1 .pc_app .pc_app_box dl dt{display:table;width:100%;min-height:78px;margin-top:21px;padding:0;background-color:transparent;overflow:hidden;}
.biz_type_lst.type1 .pc_app .pc_app_box dl dt p.logo{display:table-cell;vertical-align:middle;}
.biz_type_lst.type1 .pc_app .pc_app_box dl dt img{width:auto;height:auto;}

.biz_type_lst.type1 .pc_app.lite .pc_app_box{border:1px solid #17d9fc;}
.biz_type_lst.type1 .pc_app.lite .pc_app_box:after,
.biz_type_lst.type1 .pc_app.lite .pc_app_box:before{border:1px solid #17d9fc;}
.biz_type_lst.type1 .pc_app.lite .pc_app_box:after{width:100%;height:12px;left:6px;top:0;right:0;transform:translateY(-100%) skewx(-45deg);background-color:#e5f0f2;border-right:none;}
.biz_type_lst.type1 .pc_app.lite .pc_app_box:before{width:12px;height:100%;right:0;top:-7px;transform:translateX(100%) skewy(-45deg);background-color:#bad9de;}

.biz_type_lst.type1 .pc_app.prem .pc_app_box{border:1px solid #27c1ee;}
.biz_type_lst.type1 .pc_app.prem .pc_app_box:after,
.biz_type_lst.type1 .pc_app.prem .pc_app_box:before{border:1px solid #27c1ee;}
.biz_type_lst.type1 .pc_app.prem .pc_app_box:after{width:100%;height:12px;left:6px;top:0;right:0;transform:translateY(-100%) skewx(-45deg);background-color:#def2f7;border-right:none;}
.biz_type_lst.type1 .pc_app.prem .pc_app_box:before{width:12px;height:100%;right:0;top:-7px;transform:translateX(100%) skewy(-45deg);background-color:#a8d3e0;}

.biz_type_lst.type1 .pc_app.pub .pc_app_box{border:1px solid #1793ee;}
.biz_type_lst.type1 .pc_app.pub .pc_app_box:after,
.biz_type_lst.type1 .pc_app.pub .pc_app_box:before{border:1px solid #1793ee;}
.biz_type_lst.type1 .pc_app.pub .pc_app_box:after{width:100%;height:12px;left:6px;top:0;right:0;transform:translateY(-100%) skewx(-45deg);background-color:#e1eef8;border-right:none;}
.biz_type_lst.type1 .pc_app.pub .pc_app_box:before{width:12px;height:100%;right:0;top:-7px;transform:translateX(100%) skewy(-45deg);background-color:#afcee5;}

.biz_type_lst.type1 .pc_app.enter .pc_app_box{border:1px solid #4739ff;}
.biz_type_lst.type1 .pc_app.enter .pc_app_box:after,
.biz_type_lst.type1 .pc_app.enter .pc_app_box:before{border:1px solid #4739ff;}
.biz_type_lst.type1 .pc_app.enter .pc_app_box:after{width:100%;height:12px;left:6px;top:0;right:0;transform:translateY(-100%) skewx(-45deg);background-color:#e0def7;border-right:none;}
.biz_type_lst.type1 .pc_app.enter .pc_app_box:before{width:12px;height:100%;right:0;top:-7px;transform:translateX(100%) skewy(-45deg);background-color:#bab7e7;}

.biz_type_lst.type1 .pc_app .pc_app_box .ico > p{height:154px;padding:0;}
.biz_type_lst.type1 .pc_app .pc_app_box dl dd{min-height:345px;}
.biz_type_lst.type1 .pc_app .pc_app_box dl dd .txt_detial{margin-top:0;}
.biz_type_lst.type1 .pc_app .pc_app_box dl dd .label_bizplayStandard{margin-top:18px;text-align:center;}/* (add)20201127 */

/* (add)20210115 */
/* biz_type2_lst */
.biz_type2_lst{margin:60px 0 0;padding-bottom:40px;overflow:hidden;}
.biz_type2_lst .pc_app{float:left;display:block;width:268px;margin:0 16px;text-align:center;}
.biz_type2_lst .pc_app .pc_app_inner{display:block;}

.biz_type2_lst .pc_app.smb .pc_app_box{border:1px solid #3dd2fc;}
.biz_type2_lst .pc_app.Standard .pc_app_box{border:1px solid #3eb8ec;}
.biz_type2_lst .pc_app.Public .pc_app_box{border:1px solid #3187ec;}
.biz_type2_lst .pc_app.Enterprise .pc_app_box{border:1px solid #4630ff;}

.biz_type2_lst .pc_app .pc_app_box{position:relative;display:block;height:506px;border:1px solid #17d9fc;border-top-left-radius:15px;border-top-right-radius:15px;background-color:#fff;}
.biz_type2_lst .pc_app .pc_app_box > a{display:block;height:507px;padding:0 0 117px;-webkit-box-sizing:border-box;box-sizing:border-box;}
.biz_type2_lst .pc_app .pc_app_box > a:hover .txMore{text-decoration:underline;}
.biz_type2_lst .pc_app .pc_app_box dl dt{display:block;margin:-1px;padding:28px 26px;border-top-left-radius:15px;border-top-right-radius:15px;text-align:left;}

.biz_type2_lst .pc_app.smb .pc_app_box dl dt{background-color:#4daaf7;}
.biz_type2_lst .pc_app.Standard .pc_app_box dl dt{background-color:#308eee;}
.biz_type2_lst .pc_app.Public .pc_app_box dl dt{background-color:#3369ca;}
.biz_type2_lst .pc_app.Enterprise .pc_app_box dl dt{background-color:#342896;}

.biz_type2_lst .pc_app .pc_app_box .ico{display:table;width:100%;height:144px;padding:16px 0 0;}
.biz_type2_lst .pc_app .pc_app_box .ico > p{display:table-cell;vertical-align:middle;}

.biz_type2_lst .pc_app .pc_app_box dl dt span{display:inline-block;min-width:70px;margin:0 6px 0 0;font-family:'NotoSansBold';font-size:12px;font-weight:700;line-height:21px;color:#fff;border:1px solid #fff;text-align:center;border-radius:50px;}
.biz_type2_lst .pc_app .pc_app_box dl dt h5{padding:6px 0 7px;font-family:'NotoSansBold';font-size:28px;font-weight:700;line-height:36px;color:#fff;}

.biz_type2_lst .pc_app .pc_app_box dl dd .tit_h5:lang(ko),
.biz_type2_lst .pc_app .pc_app_box dl dd .txt_detial:lang(ko){word-break:keep-all;}
.biz_type2_lst .pc_app .pc_app_box dl dd .txt_detial{font-family:'NotoSansRegular';font-size:14px;font-weight:400;color:#1f1f1f;line-height:24px;}

.biz_type2_lst .pc_app .pc_app_box .txMore{position:absolute;left:50%;bottom:30px;display:inline-block;padding:1px 6px 0 7px;margin:0 0 0 -46px;font-family:'NanumGothicBold';font-size:14px;color:#0072c5;font-weight:700;letter-spacing:-1px;}
.biz_type2_lst .pc_app .pc_app_box .txMore:after{content:'';display:inline-block;width:6px;height:11px;margin:0 0 2px 4px;vertical-align:middle;background-image:url("../img/bg/bg_arw_02.png");background-repeat:no-repeat;background-position:0 0;}

.biz_type2_lst .pc_app .pc_app_box .tx_service_tax{position:absolute;bottom:71px;left:-1px;right:-1px;display:block;height:46px;cursor:pointer;background-color:#342896;}
.biz_type2_lst .pc_app .pc_app_box .tx_service_tax span{display:block;height:46px;font-family:'NotoSansBold';font-size:14px;font-weight:700;color:#fff;line-height:46px;}

.biz_type2_lst .pc_app .pc_app_box a.btn_free_reg{position:absolute;bottom:71px;left:50%;margin:0 0 0 -110px;display:inline-block;width:220px;height:46px;font-family:'NotoSansBold';font-size:20px;font-weight:700;line-height:46px;color:#fff;border-radius:2px;text-align:center;background-color:#2164b5;}
/* //(add)20210115 */

.pc_app_wrap .biz_seeMore a{display:inline-block;margin-left:5px;margin-right:5px;padding:4px 0 5px;font-family:'NanumGothicRegular';font-size:20px;color:#4391f3;}/* (modify)20200507 */
.pc_app_wrap .biz_seeMore a span{display:inline-block;font-family:'NanumGothicRegular';font-size:20px;color:#4391f3;text-decoration:underline;}/* (add)20200507 */
/*(delete)20200507.pc_app_wrap .biz_seeMore a:hover{text-decoration:underline;}*/
/* //(add)20200417 */

/* (add)20200428 */
.pc_app_wrap .biz_seeMore h4{padding:4px 0 5px;font-family:'NanumGothicRegular';font-weight:normal;font-size:25px;color:#222;line-height:35px;}
.pc_app_wrap .biz_seeMore h4 span,
.pc_app_wrap .biz_seeMore h4 a.btn_legPro{padding:0;font-family:'NanumGothicBold';font-weight:bold;font-size:25px;color:#004889;}
.pc_app_wrap .biz_seeMore h4 a.btn_legPro{text-decoration:underline;}
.pc_app_wrap .biz_seeMore h5{padding:8px 0;font-family:'NanumGothicRegular';font-weight:normal;font-size:20px;color:#222;}
.pc_app_wrap .biz_seeMore h5 strong{font-family:'NanumGothicBold';font-weight:bold;}
.pc_app_wrap .biz_seeMore h4:lang(ko),
.pc_app_wrap .biz_seeMore h4 span:lang(ko){word-break:keep-all;}
.pc_app_wrap .biz_seeMore h4 a.btn_legPro:lang(ko){word-break:keep-all;}
.pc_app_wrap .biz_seeMore h5:lang(ko){word-break:keep-all;}
/* //(add)20200428 */

/* biz_type_detail */
.biz_type_detail{max-width:1200px;margin:0 auto;}
.biz_type_detail .sec_tit_wrap .sec_tit_h3{display:block;margin:0;padding:29px 0 13px;font-family:'NotoSansRegular';font-weight:normal;}
.biz_type_detail .sec_tit_wrap .sec_tit_h4{display:block;margin:0;padding:21px 0 26px 0;text-align:center;font-weight:normal;}
.biz_type_detail .sec_tit_wrap .sec_tit_h4.price{display:block;margin:0;padding:10px 0 13px;font-family:'NotoSansRegular';font-weight:normal;font-size:43px;color:#222;line-height:56px;}/* (add)20201127 */
.biz_type_detail .sec_tit_wrap.type2 .sec_tit_h4{padding:0 0 3px;font-family:'NotoSansMedium';font-weight:500;font-size:32px;color:#222;line-height:normal;}/* (add)20210115 */
.biz_type_detail .sec_descrip{margin-bottom:100px;}
.biz_type_detail .sec_descrip p{font-family:'NotoSansRegular';}
.biz_type_detail .biz_price_tbl{margin-bottom:162px;}
.biz_type_detail .biz_price_tbl > p.biz_price_desc{margin:5px 0 0;padding:3px 0 4px;font-family:'NanumGothicRegular';font-size:15px;color:#555;}/* (add)20190701 */
.biz_type_detail .biz_price_tbl > p.biz_price_desc.price{margin:5px 0 0;padding:3px 0 4px;font-family:'NanumGothicRegular';font-size:15px;color:#999;}/* (add)20201127 */
.biz_type_detail .biz_price_tbl > p.biz_price_desc.price.txBlue{color:#2f81e4;}/* (add)20201127 */
.biz_type_detail .biz_price_tbl > p.biz_price_desc.price.txBlue strong{font-family:'NanumGothicBold';color:#2f81e4;}/* (add)20201127 */
.biz_type_detail .biz_price_tbl > p.biz_price_desc strong{font-family:'NanumGothicBold';color:#000;}/* (add)20200928 */
.biz_type_detail .sec_tit_wrap .sec_tit_h3:lang(ko){word-break:keep-all;}/* (add)20191210 */
.biz_type_detail .sec_tit_wrap .sec_tit_h4:lang(ko){word-break:keep-all;}/* (add)20191210 */
.biz_type_detail .sec_descrip p:lang(ko){word-break:keep-all;}/* (add)20191210 */

.biz_type_detail .biz_price_tbl > p.biz_price_desc2{display:block;margin:25px 0 0;padding:21px 0 20px;font-family:'NanumGothicRegular';font-size:20px;color:#fff;line-height:28px;text-align:center;background-color:#004889;}/* (add)20200929 */
.biz_type_detail .biz_price_tbl > p.biz_price_desc2 strong{font-family:'NanumGothicBold';color:#ff0}/* (add)20200929 */
.biz_type_detail .biz_price_tbl > p.biz_price_desc2 .btn_goMore{display:inline-block;margin:0 0 0 15px;padding:0;font-family:'NanumGothicRegular';font-size:20px;color:#ff0;line-height:25px;border-bottom:1px solid #ff0;}/* (add)20200929 */

/* biz_price_tbl */
.biz_price_tbl{}
.biz_price_tbl table{width:100%;}
.biz_price_tbl th{background-color:#6c7380;vertical-align:middle;border-left:1px solid #cfd3de;}
.biz_price_tbl th:first-child{border-left:none;}
.biz_price_tbl th > div{height:58px;padding:0;font-size:17px;font-family:'NanumGothicRegular';font-weight:normal;color:#fff;line-height:57px;}
.biz_price_tbl td:first-child{border-left:none;}
.biz_price_tbl td{vertical-align:middle;text-align:center;border-left:1px solid #cfd3de;border-bottom:1px solid #cfd3de;}
.biz_price_tbl td > div{height:auto;padding:25px 0;font-family:'NanumGothicRegular';font-size:17px;color:#222;line-height:25px;}/* (modify)20191030 */
.biz_price_tbl td:first-child{background-color:#f5f5f6;}
.biz_price_tbl td.bdl{border-left:1px solid #cfd3de;}/* (add)20210701 */
.biz_price_tbl td.bg_F5F5F6{background-color:#f5f5f6;}/* (add)20210701 */
.biz_price_tbl strike{display:block;margin:0;font-family:'NanumGothicRegular';font-weight:400;font-size:17px;color:#999;}/* (add)20191030 */
.biz_price_tbl span.tx_red{font-family:'NanumGothicBold';font-weight:700;font-size:19px;color:#e64254;line-height:25px;}/* (add)20191030 */

/* (add)20210115 */
/* biz_price_tbl.type2 */
.biz_price_tbl.type2{}
.biz_price_tbl.type2 table{width:100%;border-bottom:1px solid #004496;}
.biz_price_tbl.type2 th{background-color:#e5eef8;vertical-align:middle;border-top:1px solid #004496;border-bottom:1px solid #004496;border-left:1px solid #004496;}
.biz_price_tbl.type2 th.thStandard{background-color:#2f81e4;}
.biz_price_tbl.type2 th.thStandard > div{color:#fff;}
.biz_price_tbl.type2 th.thPremium{background-color:#004496;}
.biz_price_tbl.type2 th.thPremium > div{color:#fff;}
.biz_price_tbl.type2 th:first-child{border-left:none;}
.biz_price_tbl.type2 th > div{height:85px;padding:0;font-size:26px;font-family:'NotoSansRegular';font-weight:normal;color:#222;line-height:85px;}
.biz_price_tbl.type2 td:first-child{border-left:none;}
.biz_price_tbl.type2 td{vertical-align:middle;text-align:center;border-left:1px solid #004496;border-top:1px solid #d3e3f7;border-bottom:none;}
.biz_price_tbl.type2 .bdt2 td{border-top:2px solid #004496 !important;}
.biz_price_tbl.type2 td > div{position:relative;padding:25px 30px;font-family:'NotoSansRegular';font-size:17px;font-weight:normal;color:#222;line-height:24px;}
.biz_price_tbl.type2 td .f24{padding:25px 30px 27px;font-family:'NotoSansBold';font-size:24px;color:#222;line-height:30px;}
.biz_price_tbl.type2 td .eventDiv{position:absolute;right:15px;top:13px;}
.biz_price_tbl.type2 td .lblEvent{display:inline-block;margin-left:16px;vertical-align:middle;}
.biz_price_tbl.type2 tr:first-child td{border-top:none;}
.biz_price_tbl.type2 td:first-child{background-color:transparent;}
.biz_price_tbl.type2 td:first-child > div{font-family:'NotoSansBold';font-weight:bold;}
.biz_price_tbl.type2 strike{display:block;margin:0;font-family:'NotoSansRegular';font-weight:400;font-size:17px;color:#999;}
.biz_price_tbl.type2 span.tx_red{font-family:'NotoSansRegular';font-weight:700;font-size:19px;color:#e64254;line-height:25px;}

.biz_price_tbl.type2 td > div ul li{margin:5px 0 0;padding:0 0 1px 15px;font-family:'NotoSansRegular';font-weight:400;font-size:17px;color:#222;line-height:24px;text-align:left;background-image:url("../img/bul/bul_03.png");background-repeat:no-repeat;background-position:0 10px;}
.biz_price_tbl.type2 td > div ul li:first-child{margin:0;}
.biz_price_tbl.type2 td > div ul li span.txBlue{color:#2f81e4;}
.biz_price_tbl.type2 td > div ul li span.txRed{color:#f44336;}/* (add)20210208 */

/* (add)20210528 */
.sup{display:inline-block;position:relative;}
.sup::after{content:'주)';position:absolute;top:3px;right:-20px;font-size:12px;color:#2f81e4;line-height:15px;}
.sup::before{content:'주)';position:absolute;top:3px;left:0;font-size:12px;color:#2f81e4;line-height:15px;}
.sup.left{padding-left:20px;}
.sup.left::after{display:none;}
.sup.right::before{display:none;}
/* //(add)20210528 */

.biz_price_tbl.type2 td > div ul li .txLink{color:#f44336;text-decoration:underline;}/* (add)20210208 */
.biz_price_tbl.type2 td > div ul li .txLink2{padding-right:12px;background-image:url("../img/icon/icon_seemore_on.png");background-repeat:no-repeat;background-position:100% 50%;}/* (add)20210315 */
.biz_price_tbl.type2 td > div ul li .txLink2 span{color:#0072c5;text-decoration:underline;}/* (add)20210315 */

.biz_type_detail .biz_price_tbl.type2 > .biz_price_descBox{display:block;margin:20px 0 0;padding:0;}
.biz_type_detail .biz_price_tbl.type2 > .biz_price_descBox p.biz_price_desc{margin:5px 0 0;padding:0 0 1px;font-family:'NotoSansRegular';font-size:17px;color:#555;line-height:24px;}/* (modify)20210415 */
.biz_type_detail .biz_price_tbl.type2 > .biz_price_descBox p.biz_price_desc:first-child{margin:0;}
.biz_type_detail .biz_price_tbl.type2 > .biz_price_descBox p.biz_price_desc.price{font-family:'NotoSansRegular';font-size:17px;color:#999;margin-left:20px !important;text-indent:-21px;}/* (modify)20210415 */
.biz_type_detail .biz_price_tbl.type2 > .biz_price_descBox p.biz_price_desc.price.txBlue strong{font-family:'NotoSansMedium';font-weight:500;color:#2f81e4;}
.biz_type_detail .biz_price_tbl.type2 > .biz_price_descBox p.biz_price_desc.price > span.block{display:block;margin-top:0;padding:0;font-family:'NotoSansRegular';font-size:14px;color:#999;line-height:23px;margin-left:0 !important;text-indent:0;}/* (modify)20210415(r2) */
.biz_type_detail .biz_price_tbl.type2 > .biz_price_descBox p.biz_price_desc.price > span.block:first-child{margin-top:2px;}/* (modify)20210415(r2) */
.biz_type_detail .biz_price_tbl.type2 > .biz_price_descBox p.biz_price_desc.price > span.block a{font-family:'NotoSansRegular';font-size:14px;color:#2f81e4;text-decoration:underline;}/* (modify)20210415(r2) */
/* //(add)20210115 */

.bizstore_mn_list{display:block;margin:0 0 0 -15px;padding:0 0 15px;}
.bizstore_mn_list ul{display:block;margin:0;}
.bizstore_mn_list ul li{float:left;display:inline-block;vertical-align:top;width:388px;height:374px;margin:15px 0 0 15px;border:1px solid #e8e8e8;border-radius:4px;box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);-moz-box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);-ms-box-box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);-o-box-box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);-webkit-box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);}
.bizstore_mn_list ul li a{display:block;}
.bizstore_mn_list ul li:hover{border:1px solid #46a5ff;}

/* bizStore */
.bizstore_mn_list{display:block;margin:0 0 0 -15px;padding:0 0 15px;}
.bizstore_mn_list ul{display:block;margin:0;}
.bizstore_mn_list ul li{float:left;display:inline-block;vertical-align:top;width:388px;height:374px;margin:15px 0 0 15px;border:1px solid #e8e8e8;box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);-moz-box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);-ms-box-box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);-o-box-box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);-webkit-box-shadow:8px -8px 8px -8px rgba(0,0,0,0.1),-8px -8px 8px -8px rgba(0,0,0,0.1);}
.bizstore_mn_list ul li a{display:block;}
.bizstore_mn_list ul li:hover{border:1px solid #46a5ff;}

/* biz_type_price */
.biz_type_price{display:block;margin:0;}
.biz_type_price .txt_capt{padding-bottom:4px;font-size:12px;color:#666;/*text-align:right;*/}
/*.biz_type_price .price_info p{font-size:12px;color:#666;font-weight:bold;}*/

/* tbl_price */
.biz_type_detail_tbl{padding:0 10px;}
.biz_type_detail_tbl table{width:100%;border-bottom:1px solid #004496;}
.biz_type_detail_tbl th{background-color:#fff;vertical-align:middle;border:1px solid #004396;}
.biz_type_detail_tbl th:first-child{background-color:#004496}
.biz_type_detail_tbl th > div{height:68px;padding:0 5px 0 0;font-size:28px;font-family:'NotoSansRegular';color:#004496;line-height:67px;font-weight:normal;}
.biz_type_detail_tbl th:first-child div{color:#fff;}
.biz_type_detail_tbl td{vertical-align:middle;text-align:center;border-right:1px solid #004496;border-left:1px solid #004496;}
.biz_type_detail_tbl tr:nth-child(even){background-color:#f8f8f8}
.biz_type_detail_tbl td > div{height:58px;padding:0 5px 0 0;font-family:'NotoSansRegular';font-size:20px;color:#222;line-height:57px;}

/* step process */
.st_process{}
.st_process ul{margin:0 -13px;}
.st_process ul li{float:left;display:inline-block;width:284px;height:284px;padding-right:30px;background:url(../img/icon/st_process_arrow.png) no-repeat 100% 50%;}
.st_process ul li:first-child{}
.st_process ul li dl{display:block;height:240px;padding:22px;background-image:url(../img/bg/bg_st_process.png);background-position:50% 50%;background-repeat:no-repeat;overflow:hidden;}
.st_process ul li:first-child dl{}
.st_process ul li dl dt{padding:99px 0 0;font-family:'NotoSansMedium';font-size:28px;color:#222;line-height:40px;text-align:center;background-repeat:no-repeat;background-position:50% 40px;}
.st_process ul li:last-child{padding:0;background-image:none;}
.st_process ul li.st1 dl dt{background-image:url(../img/icon/ico_st1.png);}
.st_process ul li.st2 dl dt{background-image:url(../img/icon/ico_st2.png);}
.st_process ul li.st3 dl dt{background-image:url(../img/icon/ico_st3.png);}
.st_process ul li.st4 dl dt{background-image:url(../img/icon/ico_st4.png);}
.st_process ul li dl dd{padding:0 0 40px 0;font-family:'NotoSansRegular';font-size:17px;color:#222;line-height:26px;text-align:center;}

.expenses_sample{margin-bottom:103px;}
.expenses_sample .sec_descrip{margin-bottom:27px;}
.expenses_sample .sec_descrip p{}
.expenses_sample .sec_descrip p.align{text-align:center;}/* (add)20200115 */
.expenses_sample .sec_descrip p.align > a.line{display:inline-block;margin-left:10px;text-decoration:underline;}/* (add)20200115 */

/* question */
/*.expenses_q{margin-bottom:122px;}*/
.expenses_q ul{display:inline-block;margin-bottom:12px;vertical-align:top;}
.expenses_q ul li{float:left;height:51px;padding:0 50px 0 21px;font-family:'NotoSansMedium';font-size:17px;color:#222;line-height:50px;border:1px solid #004496;text-align:left;}
.expenses_q ul li.btn_more{padding:0;}
.expenses_q ul li > a{display:block;padding:0 50px 1px 21px;background:url(../img/icon/expenses_q_arrow.png) no-repeat 100% 50%;}
.expenses_q ul li:first-child{width:388px;border-right:none;}

/* Apps */
.bizmaill_app_wrap{margin-bottom:108px;}
.bizmaill_app{display:block;position:relative;padding:0 0 10px 0;}
.bizmaill_app ul{display:block;}
.bizmaill_app li{float:left;display:inline-block;width:180px;height:180px;margin:10px;vertical-align:top;background-color:#fff;text-align:center;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;box-shadow:0 4px 10px 0 rgba(0, 0, 0, 0.06);}
.bizmaill_app li > a{display:block;height:180px;/*padding-top:20px;*/border:1px solid #eeeeee;overflow:hidden;}
.bizmaill_app li:hover > a{border-color:#46a5ff;/*background-color:#46a5ff;*/}
.bizmaill_app li.disable:hover > a{border-color:#eeeeee;pointer-events:none !important;cursor:default !important;}/* (add)20210614 */
.bizmaill_app li dl dt{display:block;width:96px;height:96px;margin:31px auto 16px;}
.bizmaill_app li dl dt > img{width:100%;}
.bizmaill_app .bizmall_tit_h5{display:block;padding:1px 0 6px;font-family:'NotoSansRegular';font-weight:normal;font-size:17px;color:#222;line-height:20px;text-align:center;}


/* app_category_lst2 */
.app_category_lst2{display:block;padding:10px 0 0;background-color:#fff;text-align:center;}
.app_category_lst2 ul{display:inline-block !important;margin:0;}
.app_category_lst2 ul li{float:left;width:180px;margin:0 10px;padding:0;text-align:center;}
.app_category_lst2 ul li > a{display:block;padding:10px;}
.app_category_lst2 ul li dl{}
.app_category_lst2 ul li dt{position:relative;margin-bottom:15px;text-align:center;}
.app_category_lst2 ul li dt img{margin-top:11px;width:120px;height:120px;}
.app_category_lst2 ul li dd{}
.app_category_lst2 ul li dd h5{font-family:'NotoSansRegular';font-weight:normal;font-size:17px;color:#222;}
.app_category_lst2 ul li dt em.badges{position:absolute;top:0;right:17px;height:11px;padding:7px 10px 10px 10px;font-family:'NotoSansBold';font-size:15px;color:#fff;font-style:normal;line-height:11px;-webkit-border-radius:6px;-moz-border-radius:6px;-o-border-radius:6px;-ms-border-radius:6px;border-radius:6px;overflow:hidden;}
.app_category_lst2 ul li dt em.badges.free{background-color:#53aff7;}
.app_category_lst2 ul li dt em.badges.charge{background-color:#fb6249;}

/* contact bnt */
.apps_serv_info{display:block;margin:36px 0 45px;padding:0;font-family:'NotoSansMedium';font-size:28px;color:#222;font-weight:bold;line-height:39px;text-align:center;}
.apps_serv_info .btn_q{display:inline-block;vertical-align:top;height:36px;margin:0;padding:0 40px;font-size:20px;color:#222;font-weight:bold;line-height:33px;letter-spacing:-1px;border:1px solid #7f7f7f;border-radius:4px;background-color:transparent;}
.apps_serv_info .span{}
.apps_serv_info .ic_tel{display:inline-block;*display:inline;*zoom:1;height:43px;margin:0;padding:0 0 0 30px;background-image:url(../img/icon/ic_phone.png);background-repeat:no-repeat;background-position:0 50%;}
.service .ic_tel span{display:inline-block;font-size:16px;color:#333;font-weight:normal;line-height:20px;}

/* 스토어 */
.sstore_mn_list{display:block;margin:0;padding:0 0 105px;}
.sstore_mn_list ul{display:block;margin:0 0 0 -15px;}
.sstore_mn_list ul li{float:left;display:inline-block;vertical-align:top;width:388px;height:373px;margin:0 0 15px 15px;border:1px solid #eaeaea;cursor:pointer;overflow:hidden;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;border-radius:4px;box-shadow:0 4px 10px 0 rgba(0, 0, 0, 0.06);}
.sstore_mn_list ul li a{display:block;}
.sstore_mn_list ul li:hover{border-color:#838383;}

/* ㄴ스토어상세 */
.sstore_apps_info{display:block;position:relative;margin:0;padding:0;}
.sstore_apps_info > div{display:block;position:relative;margin:0 auto;padding:0;}
.sstore_apps_info > div img{margin:0;padding:0;}
.sstore_apps_info > div p.tx_service_info{display:table;position:absolute;right:30px;top:80px;margin:0;padding:0;vertical-align:middle;}
.sstore_apps_info > div p.tx_service_info span{display:table-cell;height:38px;margin:0;padding:0;font-family:'NanumGothicRegular';font-size:14px;color:#555;line-height:19px;text-align:right;vertical-align:middle;}

.mn_list_box{display:block;}
.mn_list_box > dt{display:block;width:388px;height:189px;text-align:center;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;-ms-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;}
.mn_list_box > dt.mn_sprite{background-color:#fff;background-image:url(../img/store/mn_sprite.png);background-repeat:no-repeat;}
/* (add)20210701 */
.mn_list_box > dt.mn_sprite{position:relative;}
.mn_list_box > dt.mn_sprite em.badges{position:absolute;top:10px;right:10px;height:11px;padding:7px 10px 10px 10px;font-family:'NotoSansBold';font-size:15px;color:#fff;font-style:normal;line-height:11px;-webkit-border-radius:6px;-moz-border-radius:6px;-o-border-radius:6px;-ms-border-radius:6px;border-radius:6px;overflow:hidden;}
.mn_list_box > dt.mn_sprite em.badges.free{background-color:#53aff7;}
.mn_list_box > dt.mn_sprite em.badges.charge{background-color:#fb6249;}
/* //(add)20210701 */
.mn_list_box > dt.mn_sprite.mn1{background-position:0 0;}/* 비플법인카드 */
.mn_list_box > dt.mn_sprite.mn2{background-position:0 -189px;}/* 카드사정보수집(EDI) */
.mn_list_box > dt.mn_sprite.mn3{background-position:0 -378px;}/* 법인카드관리 */
.mn_list_box > dt.mn_sprite.mn4{background-position:0 -567px;}/* 카드영수증 */
.mn_list_box > dt.mn_sprite.mn5{background-position:0 -756px;}/* 카드보고서 */
.mn_list_box > dt.mn_sprite.mn6{background-position:0 -945px;}/* 비플개인카드 */
.mn_list_box > dt.mn_sprite.mn7{background-position:0 -1134px;}/* 경비지출결의 */
.mn_list_box > dt.mn_sprite.mn8{background-position:0 -1323px;}/* 결재함 */
.mn_list_box > dt.mn_sprite.mn9{background-position:0 -1512px;}/* 프리미엄보고서 */
.mn_list_box > dt.mn_sprite.mn10{background-position:0 -1701px;}/* ERP연계서비스 */
.mn_list_box > dt.mn_sprite.mn11{background-position:0 -1890px;}/* 감사보고서 */
.mn_list_box > dt.mn_sprite.mn12{background-position:0 -2079px;}/* EDI보고서 */
.mn_list_box > dt.mn_sprite.mn13{background-position:0 -2268px;}/* 경비지급관리 *//* (add)20190701 */
.mn_list_box > dt.mn_sprite.mn14{background-position:0 -2457px;}/* 비즈플레이 4.0 모바일 *//* (add)20200731 */
.mn_list_box > dt.mn_sprite.mn15{background-position:0 -2646px;}/* 인택스(IN-TAX) *//* (add)20210115 */
.mn_list_box > dt.mn_sprite.mn16{background-position:0 -2835px;}/* 현금영수증관리 *//* (add)20210115 */

/* (add)20201127 */
.mn_list_box > dt.mn_sprite2{background-image:url(../img/store/mn_sprite2.png);}
.mn_list_box > dt.mn_sprite2.mn1{background-position:0 0;}/* 카드사정보수집(스크래핑) */
.mn_list_box > dt.mn_sprite2.mn2{background-position:0 -189px;}/* 전자결재 */
.mn_list_box > dt.mn_sprite2.mn3{background-position:0 -378px;}/* 비즈캘린더 */
.mn_list_box > dt.mn_sprite2.mn4{background-position:0 -567px;}/* 오픈보드 */
.mn_list_box > dt.mn_sprite2.mn5{background-position:0 -756px;}/* 출장/구매/복지 */
.mn_list_box > dt.mn_sprite2.mn6{background-position:0 -945px;}/* 비플식권페이 *//* (add)20220428 */
/* //(add)20201127 */
.mn_list_box > dd{display:block;width:388px;height:135px;padding:35px 0 10px;text-align:center;background-color:#fff;}
.mn_list_box > dd h3,
.mn_list_box > dd p,
.mn_list_box > dd span{display:block;position:relative;font-weight:normal;letter-spacing:0;}
.mn_list_box > dd h3{margin:0;padding:2px 0;font-family:'NanumGothicBold';font-size:24px;color:#43454c;line-height:28px;}
.mn_list_box > dd p{margin:1px 0 14px;padding:2px 0;font-family:'NanumGothicRegular';font-size:20px;color:#626469;line-height:21px;}
.mn_list_box > dd p.mgbCase{margin:1px 0 7px;}/* (add)20200731 */
.mn_list_box > dd span{margin:0;padding:1px 0;font-family:'NanumGothicRegular';font-size:14px;color:#626469;line-height:21px;letter-spacing:-0.5px;}

.sstore_mn_list > dl{}/* (add)20190701 */
.sstore_mn_list > dl dt{margin:14px 0 0;padding:2px 0;font-family:'NanumGothicBold';font-size:18px;color:#222;line-height:25px;}/* (add)20190701 */
.sstore_mn_list > dl dd{margin:3px 0 0 20px;padding:2px 0;font-family:'NanumGothicRegular';font-size:14px;color:#222;line-height:21px;}/* (add)20190701 */
.sstore_mn_list > dl.type2 dt{margin:0;padding:2px 0;font-family:'NotoSansRegular';font-weight:normal;font-size:16px;color:#999;line-height:25px;}/* (add)20210115 */
.sstore_mn_list > dl.type2 dd{margin:3px 0 0 20px;padding:2px 0;font-family:'NotoSansRegular';font-size:14px;color:#222;line-height:21px;}/* (add)20210115 */

/* succ_stories */
.succ_stories_wrap{margin-bottom:104px;}
.succ_stories .succ_story{min-height:356px;margin:0 10px 10px;background-color:#f8f8f8;}
.succ_stories .succ_story .left_box,
.succ_stories .succ_story .right_box{display:inline-block;width:50%;vertical-align:top;}
.succ_stories .succ_story .left_box{float:left;}
.succ_stories .succ_story .right_box{float:right;}

.succ_stories dl dt{padding:28px 30px 20px;}
.succ_stories dl dt .tit_h5{font-family:'NotoSansBold';font-size:24px;color:#222;line-height:34px;}
.succ_stories dl dd{padding:0 30px 24px;}
.succ_stories dl dd .sec_descrip{margin:0;}
.succ_stories dl dd .sec_descrip p{margin:0;line-height:26px;text-align:left;}
.succ_stories dl dd .sec_descrip p:lang(ko){word-break:keep-all;}

.biz_enter_exp .biz_type_detail_tbl{margin-bottom:115px;}
.biz_enter_exp .sec_descrip{margin-bottom:31px;}
.biz_enter_con .sec_descrip{margin-bottom:17px;}
.biz_enter_con .st_process{margin-bottom:52px;}
.biz_price_tbl.type_enter{margin-bottom:99px;}
/* //(add)20180828 */

/* (add)20181029 */
.prod_menu{}
.prod_menu ul li{float:left;display:inline-block;margin:0 0 0 20px;}/* (modify)20181030 */
.prod_menu ul li:first-child{margin:0;}/* (add)20181030 */
.prod_menu ul li a{display:block;padding:0 10px 2px;font-family:'NotoSansRegular';font-size:20px;color:#7c7c7c;}/* (modify)20181030 */
.prod_menu ul li.on a{font-family:'NotoSansRegular';font-weight:bold;text-decoration:underline;color:#0070c9;}/* (modify)20181030 */

.tit_wrap .prod_menu{margin:6px 10px 0 0;}/* (modify)20200624 */
/* //(add)20181029 */

/* (modify)20210405 */
/* tbl_input1 */
.tbl_input1{position:relative;margin:40px 0 0;padding:30px 20px 35px;background-color:#f4f4f4;border:1px solid #dadada;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;}
.tbl_input1 table tbody th div{padding:0 5px;font-family:'NotoSansRegular';font-weight:400;color:#555;font-size:14px;text-align:left;line-height:37px;}
.tbl_input1 table tbody td div{padding:0 0 0 5px;font-family:'NotoSansRegular';font-weight:400;font-size:12px;line-height:37px;color:#555;}
.tbl_input1 table tbody td.ipt div{padding:4px 5px;}
.tbl_input1 table tbody .point{display:inline-block;width:5px;height:6px;margin-left:4px;background:url(../img/bul/bul_red.png) no-repeat 0 0;vertical-align:2px;}
.tbl_input1 table tbody td div input[type='password'],
.tbl_input1 table tbody td div input[type='text']{height:37px;padding:0 10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;border:1px solid #e5e6e9;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#555;line-height:37px;background-color:#fff;outline:none;box-sizing:border-box;}
.tbl_input1 table tbody td div input[type='number']{height:37px;padding:0 0 0 10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;border:1px solid #e5e6e9;font-family:'NotoSansRegular';font-weight:400;font-size:12px;color:#555;line-height:37px;background-color:#fff;outline:none;box-sizing:border-box;}
.tbl_input1 table tbody td div input[type='password']:focus,
.tbl_input1 table tbody td div input[type='text']:focus,
.tbl_input1 table tbody td div input[type='number']:focus,
.tbl_input1 table tbody td div select:focus,
.tbl_input1 table tbody td div textarea:focus{border:1px solid #578eef;}
.tbl_input1 table tbody td div select{height:37px;padding:0 0 0 10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;border:1px solid #e5e6e9;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#555;line-height:37px;background-color:#fff;outline:none;box-sizing:border-box;}
.tbl_input1 table tbody textarea{padding:7px 10px;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#555;line-height:20px;border:1px solid #e5e6e9;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;outline:none;resize:none;overflow:hidden;}
.tbl_input1 table tbody label{padding:3px 0 4px;margin-right:20px;}
.tbl_input1 table tbody input[type='checkbox'],
.tbl_input1 table tbody input[type='radio']{margin-right:5px;vertical-align:-2px;}
.tbl_input1 table tbody th div.checkbox{padding-top:2px;}
.tbl_input1 table tbody td div.checkbox{padding:5px 0 3px;}
/* full width input box */
.tbl_input1 table tbody td div .fullWidth{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
/* checkbox/radio style */
.tbl_input1 table tbody td div label{position:relative;}
.tbl_input1 table tbody td div label input[type=checkbox],
.tbl_input1 table tbody td div label input[type=radio]{position:relative;width:13px;height:13px;border:none;background-repeat:no-repeat;background-position:0 0;box-shadow:none;-webkit-appearance:none;outline:none;cursor:pointer;opacity:0;z-index:2;}
.tbl_input1 table tbody td div label i{display:block;position:absolute;top:50%;left:0;width:13px;height:13px;margin-top:-7px;border:none;background-repeat:no-repeat;background-position:0 0;box-shadow:none;-webkit-appearance:none;outline:none;cursor:pointer;z-index:1;}
/* uncheck state */
.tbl_input1 table tbody td div label input[type=checkbox] + i{background-image:url("../img/icon/ic_unchck.png");}
.tbl_input1 table tbody td div label input[type=radio] + i{background-image:url("../img/icon/ic_radio_unchck.png");}
/* check state */
.tbl_input1 table tbody td div label input[type=checkbox]:checked + i{background-image:url("../img/icon/ic_chck.png");}
.tbl_input1 table tbody td div label input[type=radio]:checked + i{background-image:url("../img/icon/ic_radio_chck.png");}

/* (modify)20211109 */
/* cc_agreement */
.cc_agreement{margin-top:22px;text-align:center;}
.cc_agreement dl{display:block;margin:0 auto;}
.cc_agreement dl dt{display:inline-block;vertical-align:top;position:relative;padding:0;font-family:'NotoSansMedium';font-weight:500;font-size:15px;color:#222;line-height:24px;text-align:left;}
.cc_agreement dl dd{display:inline-block;margin:0;padding:0 0 0 30px;}
.cc_agreement dl dd ol li{display:block;vertical-align:top;margin-left:0;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#555;line-height:22px;text-align:left;}
/*.cc_agreement dl dd ol li:first-child{margin-left:0;}*/
.cc_agreement label{display:block;position:relative;margin:25px 0 0;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#555;line-height:23px;}
.cc_agreement label input[type=checkbox]{width:15px;height:15px;margin:0 4px 0 0;vertical-align:-2px;}
.cc_agreement label > span{display:inline-block;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#e64254;line-height:23px;}
/* //(modify)20211109 */

.cc_agreement_frm{padding:13px 0 5px 0;border-top:1px solid #dadada;}
.cc_agreement_frm label{position:relative;font-family:'NotoSansRegular';font-weight:400;font-size:12px;color:#555;}
.cc_agreement_frm label input[type=checkbox]{position:relative;width:13px;height:13px;border:none;background-repeat:no-repeat;background-position:0 0;box-shadow:none;-webkit-appearance:none;outline:none;cursor:pointer;opacity:0;z-index:2;margin-right:5px;vertical-align:-2px;}
.cc_agreement_frm label i{display:block;position:absolute;top:50%;left:0;width:13px;height:13px;margin-top:-7px;border:none;background-repeat:no-repeat;background-position:0 0;box-shadow:none;-webkit-appearance:none;outline:none;cursor:pointer;z-index:1;}
.cc_agreement_frm label input[type=checkbox] + i{background-image:url("../img/icon/ic_unchck.png");}
.cc_agreement_frm label input[type=checkbox]:checked + i{background-image:url("../img/icon/ic_chck.png");}

/* btn_blue */
.btn_blue{display:inline-block;width:100px;height:32px;margin-top:3px;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#fff !important;line-height:31px;background-color:#578eef;border-radius:5px;text-align:center;}
.btn_blue2{display:inline-block;min-width:174px;height:52px;padding:0 40px;font-family:'NotoSansMedium';font-weight:400;font-size:19px;color:#fff !important;line-height:52px;background-color:#006dcc;border-radius:0;text-align:center;}/* (modify)20211109 */
/* btn_gray2 */
.btn_gray2{display:inline-block;width:100px;height:32px;margin-top:3px;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#fff !important;line-height:31px;background-color:#7c7c7c;border-radius:5px;text-align:center;}
/* //(modify)20210405 */

/* exp_custom */
.exp_custom{display:block;margin:30px 0 0;padding:0;text-align:center;background-color:transparent;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-items:flex-start;align-content:flex-start;overflow:hidden;}
.exp_custom.boardPage{margin-top:-10px !important;}/* (add)2020MMD */
.exp_custom.subPage{margin-top:10px;margin-bottom:90px;}
.exp_custom div{display:inline-block;float:left;vertical-align:top;width:400px;/*height:360px;*/height:auto;margin:0;padding:0;text-align:center;background-color:transparent;}
.exp_custom div > a{display:block;position:relative;margin:0;padding:0;text-align:center;}/* (modify)2020MMD */
.exp_custom div > a img{display:block;margin:0;padding:0;max-width:100%;}
.exp_custom.boardPage div > a em.countNew{display:inline-block;position:absolute;top:30px;right:30px;min-width:16px;vertical-align:middle;margin:0;padding:1px 4px 1px 4px;font-family:"NotoSansRegular";font-weight:normal;font-size:12px;color:#fff;line-height:15px;text-align:center;border-radius:24px;background-color:#fd000d;font-style:normal;z-index:1;}/* (add)20200708 */

/* btn_info */
a.btn_info{display:inline-block;padding:10px 0;margin-top:40px;font-size:16px;font-family:'NotoSansRegular';font-weight:400;color:#2770c3 !important;}
a.btn_info:hover{text-decoration:underline;}

/* pop_pwd */
.pop_pwd{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1000;}
.pop_pwd:after{position:absolute;top:0;left:0;right:0;bottom:0;display:block;content:'';background-color:rgba(255,255,255,0.8);z-index:1;}
.pop_pwd_inner{position:absolute;top:50%;left:0;right:0;width:320px;margin:-87px auto 0;padding:36px 50px 36px;border:1px solid #7c7c7c;background-color:#fff;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;z-index:2;}
.pop_pwd_inner p.title{display:block;margin:0 0 15px;padding:0;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#222;line-height:23px;text-align:center;}
.pop_pwd_inner a.bt_pop_pwd{position:absolute;right:10px;top:10px;width:27px;height:27px;background-image:url(../img/btn/btn_img_pop_cls.png);background-repeat:no-repeat;background-position:50%;background-size:75%;}/* (add)20191028 */
.pop_pwd .pwd_box .lbl{display:inline-block;width:70px;margin:0;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#555;line-height:34px;}
.pop_pwd .pwd_box input[type=password]{display:inline-block;height:24px;line-height:24px;padding:5px;border:1px solid #e5e6e9;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;outline:none;font-family:'NotoSansBold';font-weight:700;font-size:13px;color:#555;}
.pop_pwd .tx_err{display:none;margin:5px 0 0 70px;font-family:'NotoSansRegular';font-weight:400;font-size:12px;color:#dd3e12;line-height:21px;}
.pop_pwd .error .pwd_box input[type=password]{border:1px solid #dd3e12;}
.pop_pwd .error .tx_err{display:block;}

/* (add)20200325 */
/* 비밀번호(확인) */
.pwdCfrm_section{position:absolute;top:0;left:0;right:0;bottom:0;z-index:1000;}
.pwdCfrm_section:after{position:absolute;top:0;left:0;right:0;bottom:0;display:block;content:'';background-color:rgba(255,255,255,0.8);z-index:1;}
.pwdCfrm_section_inner{position:absolute;top:50%;left:0;right:0;bottom:0;/*width:320px;*/margin:-103px auto 0;padding:0;/*border:1px solid #7c7c7c;*/background-color:#ggg;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;z-index:2;}

.pwdCfrm_box{display:block;position:relative;width:392px;margin:0 auto;padding:40px 80px 55px;border:1px solid #ccc;min-height:inherit;line-height:inherit !important;box-shadow:0 0 6px rgba(0,0,0,0.05);-webkit-box-shadow:0 0 6px rgba(0,0,0,0.05);-moz-box-shadow:0 0 6px rgba(0,0,0,0.05);-o-box-shadow:0 0 6px rgba(0,0,0,0.05);-ms-box-shadow:0 0 6px rgba(0,0,0,0.05);background-color:#fff;}

.pwdCfrm_message{display:block;min-height:inherit;margin:0;padding:2px 0 1px;font-family:'NotoSansRegular';font-weight:400;font-size:16px;color:#000;line-height:21px;}
.pwdCfrm_input{display:block;position:relative;height:38px;margin:0;padding:0;line-height:0;vertical-align:top;font-size:0;}
.pwdCfrm_input input[type=text],
	.pwdCfrm_input input[type=password]{height:36px;margin:0;padding:0 19px;font-family:'NotoSansRegular';font-weight:400;font-size:16px;line-height:36px;border:1px solid #d5d5d5;color:#333;border-radius:0;}
.pwdCfrm_input input[type=text]:focus,
	.pwdCfrm_input input[type=password]:focus{border-color:#263f9c;}
.pwdCfrm_input a.btn_blue{}
.pwdCfrm_input a.btn_blue span{}
/* bt_pwdCfrm_blue/bt_pwdCfrm_white */
.pwdCfrm_input a.bt_pwdCfrm_blue,
.pwdCfrm_input a.bt_pwdCfrm_blue > span,
.pwdCfrm_input a.bt_pwdCfrm_white,
.pwdCfrm_input a.bt_pwdCfrm_white > span{display:inline-block;*display:inline;*zoom:1;vertical-align:top;cursor:pointer;}
.pwdCfrm_input a.bt_pwdCfrm_blue{height:36px;padding:0 10px 0 0;border:1px solid #2a7cd1;background-color:#2a7cd1;border-radius:3px;}
.pwdCfrm_input a.bt_pwdCfrm_blue > span{min-width:78px;height:36px;padding:0 0 0 10px;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#fff;line-height:36px;text-align:center;}
.pwdCfrm_input a.bt_pwdCfrm_white{height:36px;padding:0 10px 0 0;border:1px solid #2a7cd1;background-color:#fff;border-radius:3px;}
.pwdCfrm_input a.bt_pwdCfrm_white > span{min-width:78px;height:36px;padding:0 0 0 10px;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#2a7cd1;line-height:36px;text-align:center;}
.pwdCfrm_input .pwdCfrm_error{position:absolute;left:0;bottom:-32px;margin:0;padding:3px 0 2px;min-height:inherit;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#f44949;line-height:17px;font-style:normal;}

.pwdCfrm_box > .bt_pwdCfrm_lyclose{position:absolute;top:15px;right:15px;width:15px;height:15px;font-size:0;line-height:0;}
/* //(add)20200325 */

/* intel_prop */
.intel_prop{margin-top:20px;border-top:2px solid #7c7c7c}
.intel_prop .intel_prop_inner{margin:38px -20px 0 -20px;}
.intel_prop .intel_prop_inner ul{display:flex;flex-wrap:wrap;flex-direction:row;justify-content:center;align-items:flex-start;}
.intel_prop .intel_prop_inner ul li{margin:15px 24px 16px 24px}
.intel_prop .intel_prop_inner ul li a{display:block;width:198px;height:268px;border:1px solid #bec3c9;background-color:#fff;}

/* tbl_lst1.ip */
.tbl_lst1.ip{margin:30px 0 0;}
.tbl_lst1.ip .tbl_body .row .col > span{padding:15px 5px;}
.tbl_lst1.ip .tbl_body .row > .col_wrap{*zoom:1;}
.tbl_lst1.ip .tbl_body .row > .col_wrap:before,
.tbl_lst1.ip .tbl_body .row > .col_wrap:after{display:table;content:'';}
.tbl_lst1.ip .tbl_body .row > .col_wrap:after{clear:both;}
.tbl_lst1.ip .tbl_body .row > .col_wrap{display:block;background-color:}
.tbl_lst1.ip .tbl_body .row > .col_wrap *{font-family:'NotoSansRegular';font-weight:400;}/* (add)20200325 */
.tbl_lst1.ip .row > .col_wrap{display:block;}

.tbl_lst1.ip .tbl_head .row .col.col1{position:absolute;top:50%;left:0;margin-top:-25px;}
.tbl_lst1.ip .tbl_body .row > .col_wrap .col.col1{position:absolute;top:-1px;left:0;}
.tbl_lst1.ip .tbl_head .row .col.col1{margin-top:-21px;}

.tbl_lst1.ip .tbl_body .row .col_wrap .col.col2 > a{display:block;padding:13px 5px;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#222!important;}
.tbl_lst1.ip .tbl_body .row.active .col.col2 span.comp_nm{font-weight:400;}
.tbl_lst1.ip .tbl_body .row.on .col_wrap .col.col2 a,
.tbl_lst1.ip .tbl_body .row.active .col.col2 a{color:#578eef !important;}
.tbl_lst1.ip .tbl_body .row.on .col_wrap .col.col2 a:hover,
.tbl_lst1.ip .tbl_body .row.active .col.col2 a:hover{text-decoration:underline;}
.tbl_lst1.ip .tbl_body .row .col_wrap .col.col2 a:hover{font-weight:800;color:#006dcc !important;text-decoration:underline;}

/* (add)20191210 */
.tbl_lst1.ip .tbl_body .row .col .ic_point{padding-left:18px !important;background-image:url("../img/bul/bul_red1.png");background-repeat:no-repeat;background-position:5px 50%;}
.tbl_lst1.ip .tbl_body .row .col .badges{position:absolute;top:13px;right:20px;display:inline-block;width:56px;height:21px;line-height:21px;font-family:'NotoSansRegular' !important;font-weight:400 !important;font-size:12px;color:#0070c9 !important;text-align:center;border:1px solid #0070c9;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background-color:#fff;}

.ps_r{position:relative !important;}
/* //(add)20191210 */

.tbl_lst1.ip .row .col.col2 span{padding-left:0;}
.tbl_lst1.ip .tbl_head .row .col.col2 > span.comp_nm,
.tbl_lst1.ip .tbl_body .row > .col_wrap .col.col2 > span.comp_nm{width:155px;}/* (modify)20200326 */

.tbl_lst1.ip .tbl_head .row .col.col3,
.tbl_lst1.ip .tbl_body .row > .col_wrap .col.col3{margin-right:-285px;}/* (modify)20200326 */
.tbl_lst1.ip .tbl_head .row .col.col1 > span,
.tbl_lst1.ip .tbl_body .row > .col_wrap .col.col1 > span{width:102px;}

.tbl_lst1.ip .tbl_head .row .col.col1,
.tbl_lst1.ip .tbl_body .row > .col_wrap .col.col1{width:112px;}

.tbl_lst1.ip .tbl_body .row > .col_wrap .col.col3{width:285px;}/* (modify)20200326 */
.tbl_lst1.ip .tbl_body .row > .col_wrap .col.col3 span.col3_sub_tit{display:none;vertical-align:top;}
.tbl_lst1.ip .tbl_head .row,
.tbl_lst1.ip .tbl_body .row > .col_wrap{padding:0 285px 0 112px;}/* (modify)20200326 */
.tbl_lst1.ip .tbl_body .row .col > span.edit{padding:11px 0;width:46px;}
.tbl_lst1.ip .row .col > span.edit .ico_edit{background-image:url(../img/icon/ico_edit.png);display:inline-block;*display:inline;*zoom:1;vertical-align:top;width:26px;height:26px;margin:0;padding:0 !important;background-repeat:no-repeat;background-position:0 0;background-color:transparent;}

.tbl_lst1.ip .tbl_body .row_dtl{padding:0;}
.tbl_lst1.ip .tbl_body .area_board{height:auto;padding:20px 30px;background-color:#f4f7fa;}

.tbl_lst1.ip .tbl_head .row > .col > span.comp_nm, .tbl_lst1.ip .tbl_body .row > .col_wrap .col > span.comp_nm{/*padding-left:54px !important;*/}/* (modify)20200326 */

.tbl_lst1.ip .tbl_head .row > .col > span.comp_nm,
.tbl_lst1.ip .tbl_head .row > .col > span.cm_tit,
.tbl_lst1.ip .tbl_body .row > .col_wrap .col > span.cm_tit,
.tbl_lst1.ip .tbl_body .row > .col_wrap .col > span.comp_nm{float:left;display:inline-block;padding-left:5px;}
.tbl_lst1.ip .tbl_body .row > .col_wrap .col > span.cm_tit{max-width:50%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}/* (add)20191210 */

.row_dtl{display:none;height:226px;/*min-height:226px*/;margin:0;padding:32px 50px;border-top:1px solid #d7d7d7;font-family:'NanumGothicRegular';font-weight:400;font-size:15px;color:#666;line-height:29px;padding-bottom:10px;padding-left:77px;background-color:#f4f7fa;}
.row_dtl .lst_dtl .area_board{}
.row_dtl .lst_dtl .area_board *{font-family:'NanumGothicRegular';font-weight:400;font-size:15px;color:#666;line-height:29px;}
.row_dtl .lst_dtl .area_board img{max-width:100%;}
.row_dtl .lst_dtl .txt_cmd{font-family:'NanumGothicRegular';font-weight:400;font-size:15px;color:#666;line-height:29px;}
.row_dtl .lst_dtl .lst_cmd{padding-bottom:10px;}
.row_dtl .lst_dtl .lst_cmd li{font-family:'NanumGothicRegular';font-weight:400;font-size:15px;color:#666;line-height:29px;}

.desction{}
.desction div{padding:1px 2px 24px 2px !important;background-color:#f4f7fa;word-break:break-all;}
.desction div > p{padding:5px 0 4px;font-family:'NanumGothicRegular';font-weight:400;font-size:16px;color:#0f2122;line-height:24px;}

/* ㄴ답글 */
.desction div.answer{position:relative;padding:22px 22px 2px 138px !important;border-top:1px solid #e2e2e2;background-color:#f4f7fa;}
.desction div.answer > .ic_answer{display:block;position:absolute;left:27px;top:26px;width:49px;height:49px;background-color:transparent;background-image:url(../img/icon/ico_answer.png);background-repeat:no-repeat;background-position:50%;overflow:hidden;}
.desction div.answer > p{display:block;padding:5px 0 4px;font-family:'NanumGothicRegular';font-weight:400;font-size:16px;color:#164394;line-height:24px;min-height:49px;}
.desction div.answer > p img{display:block;max-width:100%;margin:3px 0 4px;}

/* ㄴ수정 */
.desction div.editor{position:relative;margin-bottom:23px;padding:0 2px 23px !important;border-bottom:1px solid #e2e2e2;}/* (add)20200325 */
.desction div.editor a{font-size:14px;font-weight:400;color:#006dcc !important;text-decoration:underline;}/* (add)20200325 */

/* quick_menu */
.quick_menu{position:fixed;right:0;bottom:95px;width:134px;z-index:10000;}
.quick_menu ul li{margin:20px 0 0;}
.quick_menu ul li:first-chil{margin:0;}
.quick_menu ul li a{display:block;min-width:54px;padding:54px 0 0;background-repeat:no-repeat;background-position:50% 0;}
.quick_menu ul li a.btn_inquire{background-image:url("../img/comm/btn_inquire.png");}
.quick_menu ul li a.btn_caseStudy{background-image:url("../img/comm/btn_caseStudy.png");}
.quick_menu ul li a.btn_eVoucher{background-image:url("../img/eVoucher/btn_eVoucher.png");}/* (add)20200928 */
.quick_menu ul li a.btn_aCard{background-image:url("../img/comm/btn_aCard.png");}/* (add)20210315 */
.quick_menu ul li a span{display:block;padding:0 0 2px;font-family:'NotoSansMedium';font-weight:400;font-size:16px;color:#0d2d5e;line-height:32px;text-align:center;}
.quick_menu ul li a span.brRow{padding:7px 0 9px;line-height:18px;}/* (add)20200928 */
/* (add)20210910 */
/* quick_menu */
/* ㄴtype2 */
.quick_menu.type2{position:fixed;top:50%;right:0;bottom:inherit;width:96px;margin-top:-193px;z-index:10000;}
.quick_menu.type2 ul li{margin:0;border-top:1px solid #052c73;}
.quick_menu.type2 ul li:first-child{margin:0;border-top:none;}
.quick_menu.type2 ul li a{display:table-cell;vertical-align:middle;width:96px;height:96px;padding:0;background:none;}
.quick_menu.type2 ul li a.btn_case1{background-color:#0a3a8c;}
.quick_menu.type2 ul li a.btn_case2{background-color:#134292;}
.quick_menu.type2 ul li a span{display:block;padding:0;font-family:'NotoSansRegular';font-weight:400;font-size:16px;color:#fff;line-height:24px;text-align:center;}
/* //(add)20210910 */
/* (add)20220308 */
/* ㄴtype3 */
.quick_menu.type3{position:fixed;top:50%;right:19px;bottom:inherit;width:96px;height:586px;margin-top:-293px;z-index:10000;box-sizing:border-box;}/* (modify)20220412 */
.quick_menu.type3{/*border:1px solid #052c73;*/border-radius:96px;background-color:#fff;box-shadow:0 0 20px rgba(40,107,251,0.2);}/* (modify)20230109 */
.quick_menu.type3 > img{border-radius:96px;overflow:hidden;}
/* //(add)20220308 */

/*(delete)20200708.banner_wrap.sub1.bn_01{background-color:#777;background-image:url(../img/bg/bg_sub1_banner_bg1_01.png);}*/

.wrap .section_wrap.sub_page.type1{}
.wrap .section_wrap.sub_page.type1 .section .section_inner{padding-top:90px;}/* (modify)20200708 */
.wrap .section_wrap.sub_page.type1 .section .sub_detial{display:block;padding:0;margin:0}
.wrap .section_wrap.sub_page.type1 .section .sub_detial{padding:0 100px;}
.wrap .section_wrap.sub_page.type1 .section .section_inner .sub_detial .sec_tit > .tit_h3{padding:1px 0 5px;font-family:'NotoSansBold';font-size:36px;color:#333;line-height:48px;font-weight:700;}
.wrap .section_wrap.sub_page.type1 .section .sub_detial .sub_img_wrap{position:relative;margin:40px 0 0;padding:80px 0;text-align:center;border-top:1px solid #c7c7c7;border-bottom:1px solid #c7c7c7;}
.wrap .section_wrap.sub_page.type1 .section .sub_detial .sub_img_wrap p{min-height:200px;margin:0;padding:0;/*background-color:#f2f2f2;*/}/* (modify)20191001 */
.wrap .section_wrap.sub_page.type1 .section .sub_detial .sub_img_wrap p > img{max-width:100%;}
.wrap .section_wrap.sub_page.type1 .section .sub_detial .sub_img_wrap a.btn_zoom{right:0;bottom:70px;}

.wrap .section_wrap.sub_page.type2 .section .sub_detial{padding:0;}/* (add)20210222 */
.wrap .section_wrap.sub_page.type2 .section .section_inner{padding:105px 0 0;}/* (add)20210222 */

/* buttom_botton_wrap[sub_page Next/Prev] */
.bot_btn_wrap_type1{display:block;height:103px;}
.bot_btn_wrap_type1 .btn_inner .flt,
.bot_btn_wrap_type1 .btn_inner .frt{width:50%;}
.bot_btn_wrap_type1 .btn_inner .frt{text-align:right;}
.bot_btn_wrap_type1 .btn_inner{position:relative;display:block;max-width:1000px;height:70px;margin:0 auto;padding-top:33px;}
.bot_btn_wrap_type1.tLine .btn_inner{border-top:1px solid #c7c7c7;}/* (add)20210222 */
.bot_btn_wrap_type1 .btn_inner .cnt{position:absolute;top:31px;left:50%;height:46px;margin-left:-22px;padding:0;}
.bot_btn_wrap_type1 .btn_inner .cnt .ic_view{display:block;width:100%;height:auto;padding:32px 0 0;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#2b2b2b;text-align:center;background-image:url(../img/icon/ico_list_view.png);background-repeat:no-repeat;background-position:center 0;background-size:24px 26px;}
.bot_btn_wrap_type1 .btn_inner .cnt .ic_view:hover{color:#1987c3;text-decoration:underline;}
.bot_btn_wrap_type1 .btn_inner a{position:relative;display:inline-block;width:80%;height:47px;padding:0 ;background-repeat:no-repeat;box-sizing:border-box;}
.bot_btn_wrap_type1 .btn_inner a:hover span{color:#1987c3;text-decoration:underline;}
.bot_btn_wrap_type1 .btn_prev{padding-left:41px !important;background-image:url(../img/icon/icon_btn_prev_01.png);background-position:0 0;background-size:34px 36px;}

.bot_btn_wrap_type1 .btn_next{padding-right:41px !important;background-image:url(../img/icon/icon_btn_next_01.png);background-position:100% 0;background-size:34px 36px;}
.bot_btn_wrap_type1 .txt_bot{position:relative;}
.bot_btn_wrap_type1 .txt_bot .txt_pre{display:block;width:100%;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#666 ;margin-top:-6px;}
.bot_btn_wrap_type1 .txt_bot .txt_name{display:block;max-width:70%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-family:'NotoSansBold';font-weight:700;font-size:18px;color:#2b2b2b;line-height:30px;}
.bot_btn_wrap_type1 .frt .txt_bot .txt_name{position:absolute;right:0 !important;}
.bot_btn_wrap_type1 .layer_tooltip{display:none;position:absolute;width:100%;top:-18px;min-height:29px;width:auto;border:1px solid #00368e;background-color:#00368e;border-radius:5px;-moz-radius:5px;-ms-radius:5px;-o-radius:5px;}
.bot_btn_wrap_type1 .layer_tooltip .layer_inner{padding:0 10px;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#fff !important;line-height:31px;letter-spacing:-1px;}
.bot_btn_wrap_type1 .flt .layer_tooltip .layer_inner::after{content:"";position:absolute;top:100%;left:17px;margin-left:-6px;border-width:6px;border-style:solid;border-color:#00368e transparent transparent transparent;}
.bot_btn_wrap_type1 .frt .layer_tooltip .layer_inner::after{content:"";position:absolute;top:100%;right:17px;margin-left:-6px;border-width:6px;border-style:solid;border-color:#00368e transparent transparent transparent;}
.bot_btn_wrap_type1 .btn_inner a:hover .layer_tooltip{display:block;}
.bot_btn_wrap_type1 .btn_prev .layer_tooltip{left:73px;}
.bot_btn_wrap_type1 .btn_next .layer_tooltip{right:73px;}
/* //(add)20191022 */

/* (add)20191001 */
/* (게시판)고객탐방 :List */
.board_customer_interview_lst{display:block;padding:18px 0 17px;border-top:2px solid #7c7c7c;border-bottom:1px solid #7c7c7c;}
.board_customer_interview_lst ul{display:block;margin:0;padding:0;overflow:hidden;}
.board_customer_interview_lst ul li{display:block;margin:0;padding:0;}
.board_customer_interview_lst ul li > a{display:block;border-top:1px solid #d7d7d7;overflow:hidden;}
.board_customer_interview_lst ul li:first-child > a{border:none;}
.board_customer_interview_lst ul li > a .interview_box{display:block;position:relative;background-color:#fff;}
.board_customer_interview_lst ul li > a .interview_box .interview_photo{position:absolute;left:0;top:15px;width:280px;height:138px;overflow:hidden;}
.board_customer_interview_lst ul li > a .interview_box .interview_photo img{display:block;width:100%;}
.board_customer_interview_lst ul li > a .interview_box .interview_information{display:block;height:116px;margin:0 0 0 340px;padding:26px 0;}
.board_customer_interview_lst ul li > a .interview_box .interview_information .interview_title{}
.board_customer_interview_lst ul li > a .interview_box .interview_information .interview_title h5{display:block;margin:0;padding:2px 0;font-family:'NotoSansMedium';font-size:20px;font-weight:normal;color:#000;line-height:25px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.board_customer_interview_lst ul li > a .interview_box .interview_information .interview_body{margin:12px 0 0;padding:0;}
.board_customer_interview_lst ul li > a .interview_box .interview_information .interview_body p{display:block;height:75px;margin:0;padding:0;font-family:'NotoSansRegular';font-size:15px;font-weight:normal;color:#666;line-height:25px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;word-wrap:break-word;}
.board_customer_interview_lst ul li > a .interview_box:hover .interview_information .interview_body p{text-decoration:underline !important;}

/* (게시판)고객탐방 :View */
.board_customer_interview_view{display:block;margin:20px 0 0;padding:0;border-top:2px solid #7c7c7c !important;border-bottom:1px solid #7c7c7c;background-color:#fafafb;}
.board_customer_interview_view .tbl_head{display:block;}
.board_customer_interview_view .tbl_head .row,
.board_customer_interview_view .tbl_body .cmd_txt_dtl{position:relative;*zoom:1;}
.board_customer_interview_view .tbl_head .row:before,
.board_customer_interview_view .tbl_head .row:after,
.board_customer_interview_view .tbl_body .cmd_txt_dtl:before,
.board_customer_interview_view .tbl_body .cmd_txt_dtl:after{display:table;content:'';}
.board_customer_interview_view .tbl_head .row:after,
.board_customer_interview_view .tbl_body .cmd_txt_dtl:after{clear:both;}
.board_customer_interview_view .tbl_head .row{display:block;border-bottom:1px solid #d7d7d7;background-color:#f0f0f0;}
.board_customer_interview_view .tbl_head .row .col > .tx_ellipsis{max-width:80%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.board_customer_interview_view .tbl_head .row .col > span{display:inline-block;padding:10px 30px;font-family:'NotoSansMedium';font-size:16px;font-weight:500;color:#222;line-height:21px;text-align:center;vertical-align:middle;}

.board_customer_interview_view .row .col_rBtn{position:absolute;top:8px;right:8px;}

.board_customer_interview_view .tbl_body .cmd_txt_dtl{display:block;margin:0;padding:0;}
.board_customer_interview_view .tbl_body .cmd_txt_dtl .lst_dtl{padding:32px 50px;}
.board_customer_interview_view .tbl_body .cmd_txt_dtl .lst_dtl.interview{padding:44px 51px 52px 51px;background-color:#fff;}
.board_customer_interview_view .tbl_body .cmd_txt_dtl .lst_dtl .area_board{min-height:485px;font-family:'NotoSansRegular';font-size:15px;color:#666;line-height:25px;padding-bottom:10px;}
.board_customer_interview_view .tbl_body .cmd_txt_dtl .lst_dtl .area_board img{/*max-width:100%;*/width:440px;}

.area_board_interview_view{display:block;position:relative;background-color:transparent;}
.area_board_interview_view .interview_photo{float:left;width:337px;margin:0 56px 0 0;/*position:absolute;left:0;top:9px;height:auto;overflow:hidden;*/border:1px solid #d7d7d7;}
.area_board_interview_view .interview_photo img{max-width:100%;}
.area_board_interview_view .interview_information{display:block;float:left;margin:0;padding:0;}
.area_board_interview_view .interview_information .interview_title{}
.area_board_interview_view .interview_information .interview_title h5{display:block;margin:0;padding:2px 0 1px;font-family:'NotoSansBold';font-size:16px;font-weight:800;color:#0f2122;line-height:28px;}
.area_board_interview_view .interview_information .interview_body{margin:7px 0 0;padding:0;}
.area_board_interview_view .interview_information .interview_body p{display:block;margin:0;padding:0 0 0 10px;text-indent:-10px;font-family:'NotoSansRegular';font-size:16px;font-weight:normal;color:#0f2122;line-height:24px;}

/* (add)20200708 */
.area_board_IPR_view{display:table;position:relative;background-color:transparent;}

.area_board_IPR_view .IPR_photo{display:table-cell;width:40%;margin:0 5% 0 0;vertical-align:top;}
	.area_board_IPR_view .IPR_photo img{max-width:100%;border:1px solid #d7d7d7;}

.area_board_IPR_view .IPR_information{display:table-cell;margin:0;padding:0 0 0 50px;}
	.area_board_IPR_view .IPR_information .IPR_numbers p{display:block;margin:0 0 10px;padding:2px 0 3px;font-family:'NotoSansRegular';font-size:14px;font-weight:400;color:#000;line-height:18px;}

.area_board_IPR_view .IPR_information .IPR_title{margin:0 0 45px}
	.area_board_IPR_view .IPR_information .IPR_title h5{display:block;margin:0;padding:0 0 1px;font-family:'NotoSansBold';font-size:28px;font-weight:700;color:#000;line-height:36px;word-break:break-all;}

.area_board_IPR_view .IPR_information .IPR_info{margin:0 0 45px;}
	.area_board_IPR_view .IPR_tbl_info{width:100%;}
	.area_board_IPR_view .IPR_tbl_info th{}
	.area_board_IPR_view .IPR_tbl_info th > div{padding:4px 30px 4px 15px;font-family:'NotoSansMedium';font-weight:500;font-size:14px;color:#0070c9;line-height:17px;text-align:left;white-space:nowrap;background-image:url("../img/bul/bul_02.png");background-repeat:no-repeat;background-position:2px 10px;background-size:4px;vertical-align:top;}
	.area_board_IPR_view .IPR_tbl_info td > div{padding:4px 0;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#000;line-height:17px;vertical-align:top;}

.area_board_IPR_view .IPR_information .IPR_body{position:relative;margin:0;padding:10px 0 0;}
.area_board_IPR_view .IPR_information .IPR_body .line{display:block;position:absolute;top:0;left:0;width:80px;height:4px;background-color:#000;margin:0;padding:0;font-size:0;}
	.area_board_IPR_view .IPR_information .IPR_body p{display:block;margin:15px 0 0;padding:0 0 0 10px;text-indent:-10px;font-family:'NotoSansRegular';font-size:16px;font-weight:normal;color:#0f2122;line-height:24px;word-break:break-all;}
/* //(add)20200708 */

/* button */
.btn_wrap{position:relative;display:block;margin:0;padding:0;text-align:center;overflow:hidden;}
	.btn_cmd2{display:inline-block;width:98px;height:32px;font-family:'NotoSansRegular',sans-serif;font-weight:400;font-size:13px;color:#fff !important;line-height:34px;text-align:center;border:1px solid #7c7c7c;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;background-color:#7c7c7c;}

.btn_cmd4_gray{display:inline-block;min-width:45px;height:25px;font-family:'NotoSansMedium';font-size:13px;font-weight:400;color:#fff !important;line-height:25px;text-align:center;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background-color:#707580;}
	.btn_cmd4_gray:hover{color:#fff !important;/*border:1px solid #999;*/background-color:#9c9c9c;}
/* //(add)20191001 */

/* (add)20191210 */
/* std_process */
.std_process{margin-bottom:108px;padding:18px 0 34px;background-color:#f5f5f6;}
.std_process.type2{margin-bottom:0;}/* (add)20220103 */
.std_process ul{max-width:1059px;margin:0 auto;}
.std_process ul li:first-child{width:34%;}
.std_process ul li{float:left;display:inline-block;width:33%;height:218px;background:url(../img/icon/std_process_arrow.png) no-repeat 100% 50%;}
.std_process ul li dl{display:block;height:218px;padding:0;background-image:url(../img/bg/bg_std_process.png);background-position:50% 50%;background-repeat:no-repeat;overflow:hidden;}
.std_process ul li dl dt{padding:90px 0 0;font-family:'NotoSansMedium';font-size:18px;color:#222;line-height:26px;text-align:center;background-repeat:no-repeat;background-position:50% 54px;}
.std_process ul li:last-child{padding-right:0;background-image:none;}
.std_process ul li.std1 dl dt{background-image:url(../img/icon/ico_std1.png);}
.std_process ul li.std3 dl dt{background-image:url(../img/icon/ico_std3.png);}
.std_process ul li.std4 dl dt{background-image:url(../img/icon/ico_std4.png);}
.std_process ul li dl dd{padding:3px 0 0;font-family:'NotoSansRegular';font-size:12px;color:#222;line-height:18px;text-align:center;}

.banner_freeConsulting{display:block;position:relative;height:218px;margin:8px 0 120px;padding:0;background-image:url("../img/bg/banner_freeConsulting.png");background-repeat:no-repeat;background-position:0 0;}/* (add)20220103 */
.banner_freeConsulting.type2{margin:8px 0 102px;}
.bt_freeConsulting{position:absolute;left:42px;bottom:39px;width:278px;height:49px;margin:0;padding:0;line-height:0;font-size:0;}/* (add)20220103 */

/* pre_process */
.pre_process{margin-bottom:108px;padding:18px 0 34px;background-color:#f5f5f6;}
.pre_process ul{max-width:1059px;margin:0 auto;}
.pre_process ul li:first-child{}
.pre_process ul li{float:left;display:inline-block;width:25%;height:218px;background:url(../img/icon/std_process_arrow.png) no-repeat 100% 50%;}
.pre_process ul li dl{display:block;height:218px;padding:0;background-image:url(../img/bg/bg_std_process.png);background-position:50% 50%;background-repeat:no-repeat;overflow:hidden;}
.pre_process ul li dl dt{padding:90px 0 0;font-family:'NotoSansMedium';font-size:18px;color:#222;line-height:26px;text-align:center;background-repeat:no-repeat;background-position:50% 54px;}
.pre_process ul li:last-child{padding-right:0;background-image:none;}
.pre_process ul li.std1 dl dt{background-image:url(../img/icon/ico_std1.png);}
.pre_process ul li.std2 dl dt{background-image:url(../img/icon/ico_std2.png);}
.pre_process ul li.std3 dl dt{background-image:url(../img/icon/ico_std3.png);}
.pre_process ul li.std4 dl dt{background-image:url(../img/icon/ico_std4.png);}
.pre_process ul li dl dd{padding:3px 0 0;font-family:'NotoSansRegular';font-size:12px;color:#222;line-height:18px;text-align:center;}

/* pub_process */
.pub_process{margin-bottom:108px;padding:18px 0 34px;background-color:#f5f5f6;}
.pub_process.type2{margin-bottom:0;}/* (add)20220103 */
.pub_process ul{max-width:1059px;margin:0 auto;}
.pub_process ul li:first-child{}
.pub_process ul li{float:left;display:inline-block;width:25%;height:218px;background:url(../img/icon/std_process_arrow.png) no-repeat 100% 50%;}
.pub_process ul li dl{display:block;height:218px;padding:0;background-image:url(../img/bg/bg_std_process.png);background-position:50% 50%;background-repeat:no-repeat;overflow:hidden;}
.pub_process ul li dl dt{padding:90px 0 0;font-family:'NotoSansMedium';font-size:18px;color:#222;line-height:26px;text-align:center;background-repeat:no-repeat;background-position:50% 54px;}
.pub_process ul li:last-child{padding-right:0;background-image:none;}
.pub_process ul li.std1 dl dt{background-image:url(../img/icon/ico_std1.png);}
.pub_process ul li.std2 dl dt{background-image:url(../img/icon/ico_std2.png);}
.pub_process ul li.std3 dl dt{background-image:url(../img/icon/ico_std3.png);}
.pub_process ul li.std4 dl dt{background-image:url(../img/icon/ico_std4.png);}
.pub_process ul li dl dd{padding:3px 0 0;font-family:'NotoSansRegular';font-size:12px;color:#222;line-height:18px;text-align:center;}

/* ent_process */
.ent_process{margin-bottom:108px;padding:18px 0 34px;background-color:#f5f5f6;}
.ent_process ul{max-width:1145px;margin:0 auto;}
.ent_process ul li{position:relative;float:left;display:inline-block;width:180px;height:218px;padding-right:13px;background:url(../img/icon/std_process_arrow.png) no-repeat 100% 50%;}/* (modify)20200731 */
.ent_process ul li dl{display:block;height:218px;padding:0 13px;background-image:url(../img/bg/bg_std_process.png);background-position:50% 50%;background-repeat:no-repeat;overflow:hidden;}
.ent_process ul li.cutom dl{background-image:url(../img/bg/bg_entp_process.png);}
.ent_process ul li dl dt{padding:90px 0 0;font-family:'NotoSansMedium';font-size:18px;color:#222;line-height:26px;text-align:center;background-repeat:no-repeat;background-position:50% 54px;}
.ent_process ul li:last-child{padding-right:0;background-image:none;}
.ent_process ul li.std1 dl dt{background-image:url(../img/icon/ico_std1.png);}
.ent_process ul li.std2 dl dt{background-image:url(../img/icon/ico_std2.png);}
.ent_process ul li.std3 dl dt{background-image:url(../img/icon/ico_std3.png);}
.ent_process ul li.std4 dl dt{background-image:url(../img/icon/ico_std4.png);}
.ent_process ul li.std5 dl dt{background-image:url(../img/icon/ico_std5.png);}
.ent_process ul li.std6 dl dt{background-image:url(../img/icon/ico_std6.png);}
.ent_process ul li dl dd{padding:3px 0 0;font-family:'NotoSansRegular';font-size:12px;color:#222;line-height:18px;text-align:center;}
.ent_process ul li .std_cutom_message{display:none;position:absolute;right:0;bottom:-5px;left:0;padding-right:13px;font-family:'NotoSansRegular';font-size:12px;text-align:center;}

a.btn_cut_view{position:absolute;bottom:41px;left:58px;display:block;padding:1px 9px 2px 0;font-family:'NotoSansRegular';font-size:12px;color:#ff3752;background-image:url(../img/icon/ico_cut_view.png);background-repeat:no-repeat;background-position:100% center;}

/* btn_std_view */
a.btn_std_view{display:inline-block;height:38px;margin:0 auto;padding:0 50px 0 33px;font-family:'NotoSansMedium';font-size:14px;color:#222;line-height:38px;text-align:center;border:1px solid #6c92c0;-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;background-image:url(../img/icon/ico_btn_view.png);background-repeat:no-repeat;background-position:100% 50%;}/* (modify)20191210 */
/* //(add)20191210 */

/* (modify)20201130 */
/* modal */
.modal_intr{position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999;}
.modal_intr:after{position:absolute;top:0;left:0;right:0;bottom:0;content:'';display:block;background-color:#000;opacity:.5;z-index:9997;}
.modal_intr .modaloverlay{position:absolute;top:0;left:0;right:0;bottom:0;padding:0;z-index:9999;overflow-y:auto;overflow-x:auto;}
.modal_intr .modal_inner{position:relative;min-width:398px;margin:0 auto;padding:0;background-color:#fff;}
.modal_intr .btnModal_close{position:absolute;top:22px;right:22px;width:16px;height:16px;background-image:url(../img/btn/btnModal_close.png);background-position:0 0;}
/* (add)20200727 */
/* modal */
.modal_show{overflow-x:auto;overflow-y:hidden;}
.modal{display:none;position:relative;z-index:2000;}
.modal::before{display:block;content:'';position:absolute;top:0;right:0;bottom:0;left:0;opacity:0.8;z-index:-1;}
.modal .modal_inner{position:relative;background-color:transparent;margin:0 auto;}
.modal .btnModal_close{position:absolute;top:22px;right:22px;width:16px;height:16px;background-image:url(../img/btn/btnModal_close.png);background-position:0 0;z-index:100;}
/* type1 */
.modal.type1 .modal_inner{padding:50px;}
.modal.type1{max-width:484px;}
.modal.type1 .btnModal_close{top:70px;right:70px;background-image:url(../img/btn/btnModal_close_02.png);}
/* type2 */
.modal.type2{max-width:1000px;}
.modal.type2 .modal_inner{padding:40px 35px;background-color:#fff;}
.popStep_cnt{/*padding:40px 35px;*/}
/* //(add)20200727 */

/* (add)20200428 */
.pcNone{display:none !important;}
.ly_legPro_wrap{position:relative;display:inline-block;}
.ly_legPro{display:none;position:absolute;top:54px;left:10px;width:590px;background-color:#0c419a;-webkit-border-radius:0 10px 10px 10px;-moz-border-radius:0 10px 10px 10px;border-radius:0 10px 10px 10px;-webkit-box-shadow:-2px 4px 10px 0 rgba(0, 0, 0, 0.2);-moz-box-shadow:-2px 4px 10px 0 rgba(0, 0, 0, 0.2);box-shadow:-2px 4px 10px 0 rgba(0, 0, 0, 0.2);}
.ly_legPro:before{position:absolute;top:-16px;left:0;display:block;content:'';width:17px;height:17px;background-image:url("../img/bg/bg_legPro_tail.png");background-repeat:no-repeat;background-position:0 0;}

.ly_legPro dl{padding:13px 20px;text-align:left;}
.ly_legPro dl dt{padding:3px 0;font-family:'NanumGothicBold';font-weight:700;font-size:16px;line-height:25px;color:#fff;letter-spacing:-1px;}
.ly_legPro dl dd{padding:2px 0 3px;font-family:'NanumGothicRegular';font-weight:400;font-size:15px;line-height:25px;color:#fff;letter-spacing:-1px;}
/* //(add)20200428 */

.section_wrap.sub_page .section.sec8_sub1 .section_inner{padding-top:90px;padding-bottom:100px;}/* (add)20200624 */

/* (add)20170628 */
/* Only in google Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0){
	.pop_footer label{height:29px;padding:0 15px;line-height:29px;}
}
/* //(add)20170628 */

/* (add)20200624 */
.section_wrap .section.sec9 .section_inner.mn{padding:70px 0 110px;}

.exmg_feat{margin:60px 0 0;padding:0 12px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:space-between;align-items:stretch;}
.exmg_feat > div{margin:0 15px;background-color:#fff;border:1px solid #d3d3d3;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;flex-grow:1;-webkit-box-shadow:0 9px 24px 0 rgba(0, 0, 0, 0.05);-moz-box-shadow:0 9px 24px 0 rgba(0, 0, 0, 0.05);box-shadow:0 9px 24px 0 rgba(0, 0, 0, 0.05);}
.exmg_feat dl{padding:36px 10px 32px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
.exmg_feat dl dt{height:187px;padding:0 0 27px;text-align:center;}
.exmg_feat dl dt h4{margin:0 0 18px;padding:0 0 2px;font-family:'NotoSansBold';font-weight:700;font-size:30px;color:#222;line-height:normal;}
.exmg_feat dl dt strong{display:block;padding:0 0 9px;font-family:'NotoSansBold';font-weight:700;font-size:96px;color:#222;line-height:86px;}
.exmg_feat dl dt span{display:block;padding:0 0 1px;font-family:'NotoSansRegular';font-weight:400;font-size:17px;color:#666;line-height:normal;}
.exmg_feat dl dd h5{margin:0 0 10px;padding:2px 0 4px;font-family:'NotoSansBold';font-weight:700;font-size:24px;color:#222;line-height:34px;text-align:center;}
.exmg_feat dl dd .tx_dsc{min-height:113px;text-align:center;}
.exmg_feat dl dd .tx_dsc p{padding:4px 0 5px;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#666;line-height:26px;}
.exmg_feat dl dd .btn_more{display:inline-block;margin:14px 0 0;padding:8px 0 9px;font-family:'NanumGothicBold';font-weight:700;font-size:15px;color:#0072c5;line-height:normal;}
.exmg_feat dl dd .btn_more:hover{text-decoration:underline;}
.exmg_feat dl dd .btn_more .ic_arw{display:inline-block;width:8px;height:15px;margin:0 0 3px 5px;vertical-align:middle;background-image:url("../img/icon/icon_read_more_02.png");background-repeat:no-repeat;background-position:0 0;}

.video_slider_wrap{margin:43px 0 0;}
.video_slider_wrap .video_slider .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent;}
.video_slider_wrap .video_slider .slick-list{position:relative;display:block;height:100%;margin:0;padding:0;overflow:hidden;}
.video_slider_wrap .video_slider .slick-list:focus{outline:none;}
.video_slider_wrap .video_slider .slick-list.dragging{cursor:pointer;cursor:hand;}
.video_slider_wrap .video_slider .slick-slider .slick-track,
.video_slider_wrap .video_slider .slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}

.video_slider_wrap .video_slider .slick-track{position:relative;top:0;left:0;display:block;}
.video_slider_wrap .video_slider .slick-track:before,
.video_slider_wrap .video_slider .slick-track:after{display:table;content:'';}
.video_slider_wrap .video_slider .slick-track:after{clear:both;}
.video_slider_wrap .video_slider .slick-loading .slick-track{visibility:hidden;}
.video_slider_wrap .video_slider .slick-slide{display:none;float:left;height:100%;min-height:1px;outline:none;}

.video_slider_wrap .video_slider .slick-initialized .slick-slide{display:block;}
.video_slider_wrap .video_slider .slick-loading .slick-slide{visibility:hidden;}
.video_slider_wrap .video_slider .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent;}
.video_slider_wrap .video_slider .slick-arrow.slick-hidden{display:none;}

.video_slider_wrap .video_slider .tit_wrap{margin:0 0 10px;}
.video_slider_wrap .video_slider .tit_wrap .tit_h3{padding:4px 0 5px 20px;font-family:'NotoSansLight';font-weight:300;font-size:21px;color:#2a2521;line-height:normal;background-image:url("../img/bul/bul_02.png");background-repeat:no-repeat;background-position:5px 16px;}

.video_slider_wrap .video_slider{position:relative;height:auto;}
.video_slider_wrap .video_slider_inner{max-width:1200px;/*width:1200px;*/padding-left:0;}
.video_slider_wrap .video_slider_inner .videos_lst_wrap{position:relative;/*margin:0 -10px;*/}
.video_slider_wrap .video_slider_inner .videos_lst_wrap li{display:inline-block;float:left;width:285px;margin:0 10px;}
.video_slider_wrap .video_slider_inner .videos_lst_wrap li a{display:block;width:285px;outline:none;text-align:center;}
.video_slider_wrap .video_slider_inner .videos_lst_wrap li a img{width:285px;height:160px;}
.video_slider_wrap .video_slider_inner .videos_lst_wrap li a .video_cap{display:inline-block;margin:10px 0 0;padding:8px 0 7px;font-family:'NotoSansLight';font-size:15px;font-weight:300;color:#666;line-height:20px;letter-spacing:0;text-align:left;}

.paging_video{display:none;position:absolute;width:112px;bottom:5px;right:0;text-align:center;}
.paging_video .pag_num{display:inline-block;height:28px;vertical-align:middle;padding:0 7px;}
.paging_video .pag_num .num{padding:0 2px;display:inline-block;font-family:'Noto Sans KR';font-weight:300;font-size:16px;color:#555;line-height:28px;}
.paging_video .pag_num .num.on{font-weight:500;}

.cusVideo .slick-prev,
.cusVideo .slick-next{display:block;position:absolute;top:-43px;width:28px;height:28px;margin:0;font-size:0;line-height:0;overflow:hidden;z-index:2;}
.cusVideo .slick-prev{left:auto;right:27px;background-image:url("../img/icon/ic_video_prev.png");background-repeat:no-repeat;background-position:0 0;background-color:transparent;}
.cusVideo .slick-next{left:auto;right:0;background-image:url("../img/icon/ic_video_next.png");background-repeat:no-repeat;background-position:0 0;background-color:transparent;}
/* //(add)20200624 */

/* (add)20200701 */
.function_slider_wrap{margin:43px 0 20px;}/* (modify)20200727 */
.function_slider_wrap .function_slider .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent;}
.function_slider_wrap .function_slider .slick-list{position:relative;display:block;height:100%;margin:0;padding:0;overflow:hidden;}
.function_slider_wrap .function_slider .slick-list:focus{outline:none;}
.function_slider_wrap .function_slider .slick-list.dragging{cursor:pointer;cursor:hand;}
.function_slider_wrap .function_slider .slick-slider .slick-track,
.function_slider_wrap .function_slider .slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}

.function_slider_wrap .function_slider .slick-track{position:relative;top:0;left:0;display:block;}
.function_slider_wrap .function_slider .slick-track:before,
.function_slider_wrap .function_slider .slick-track:after{display:table;content:'';}
.function_slider_wrap .function_slider .slick-track:after{clear:both;}
.function_slider_wrap .function_slider .slick-loading .slick-track{visibility:hidden;}
.function_slider_wrap .function_slider .slick-slide{display:none;float:left;height:100%;min-height:1px;outline:none;}

.function_slider_wrap .function_slider .slick-initialized .slick-slide{display:block;}
.function_slider_wrap .function_slider .slick-loading .slick-slide{visibility:hidden;}
.function_slider_wrap .function_slider .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent;}
.function_slider_wrap .function_slider .slick-arrow.slick-hidden{display:none;}

.function_slider_wrap .function_slider .tit_wrap{margin:0 0 10px;}
.function_slider_wrap .function_slider .tit_wrap .tit_h3{padding:4px 0 5px 60px;font-family:'NotoSansLight';font-weight:300;font-size:21px;color:#2a2521;line-height:normal;background-image:url("../img/bul/bul_02.png");background-repeat:no-repeat;background-position:44px 16px;}/* (modify)20200708 */

.function_slider_wrap .function_slider{position:relative;height:auto;}
.function_slider_wrap .function_slider_inner{width:1200px;padding-left:0;}/* (modify)20200708 */
.function_slider_wrap .function_slider_inner .functions_lst_wrap{position:relative;width:1112px;margin:0 auto;}/* (modify)20200708 */
.function_slider_wrap .function_slider_inner .functions_lst_wrap li{display:inline-block;float:left;width:360px;margin:0 8px;}/* (modify)20200708 */
.function_slider_wrap .function_slider_inner .functions_lst_wrap li a{display:block;width:360px;height:457px;outline:none;text-align:center;background-color:#d3d3d3;}/* (modify)20200708 */
.function_slider_wrap .function_slider_inner .functions_lst_wrap li a img{display:;width:360px;height:457px;}/* (modify)20200708 */
.function_slider_wrap .function_slider_inner .functions_lst_wrap li a .video_cap{display:inline-block;margin:10px 0 0;padding:8px 0 7px;font-family:'NotoSansLight';font-size:15px;font-weight:300;color:#666;line-height:20px;letter-spacing:0;text-align:left;}

.paging_function{display:none;position:absolute;width:112px;bottom:5px;right:0;text-align:center;}
.paging_function .pag_num{display:inline-block;height:28px;vertical-align:middle;padding:0 7px;}
.paging_function .pag_num .num{padding:0 2px;display:inline-block;font-family:'Noto Sans KR';font-weight:300;font-size:16px;color:#555;line-height:28px;}
.paging_function .pag_num .num.on{font-weight:500;}

.cusFunction .slick-prev,
.cusFunction .slick-next{display:block;position:absolute;top:50%;width:31px;height:58px;margin:-29px 0 0;font-size:0;line-height:0;overflow:hidden;z-index:2;}/* (modify)20200708 */
.cusFunction .slick-prev{left:auto;left:-44px;background-image:url("../img/icon/ic_video_prev.png");background-repeat:no-repeat;background-position:0 0;background-color:transparent;}/* (modify)20200708 */
.cusFunction .slick-next{left:auto;right:-44px;background-image:url("../img/icon/ic_video_next.png");background-repeat:no-repeat;background-position:0 0;background-color:transparent;}/* (modify)20200708 */
/* //(add)20200701 */

/* (add)20200708 */
/* ㄴ비플영상 */
.rVideo_menu{margin:-8px 0 0;}
	.rVideo_menu ul li{float:left;display:inline-block;margin:0 0 0 15px;}
	.rVideo_menu ul li:first-child{margin:0;}
	.rVideo_menu ul li a{display:block;padding:0 10px 2px;font-family:'NotoSansRegular';font-size:20px;color:#7c7c7c;}
	.rVideo_menu ul li.on a{font-family:'NotoSansRegular';font-weight:bold;text-decoration:underline;color:#0070c9;}

.rVideo_wrap{position:relative;height:auto;margin:20px 0 0;padding:10px 0 0;border-top:2px solid #7c7c7c;}
	.rVideo_list{position:relative;}
	.rVideo_list li{display:inline-block;position:relative;float:left;width:380px;margin:20px 10px 0;}
	.rVideo_list li a{display:block;width:380px;outline:none;text-align:center;}
	.rVideo_list li a img{width:380px;height:213px;background-color:#000;}
	.rVideo_list li a .rVideo_caption{display:block;height:30px;margin:10px 0 0;padding:2px 0 3px;font-family:'NotoSansLight';font-size:18px;font-weight:300;color:#666;line-height:21px;letter-spacing:0;text-align:center;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
	.rVideo_list li a em.countNew{display:inline-block;position:absolute;top:20px;right:20px;min-width:16px;vertical-align:middle;margin:0;padding:1px 4px 1px 4px;font-family:"NotoSansRegular";font-weight:normal;font-size:12px;color:#fff;line-height:15px;text-align:center;border-radius:24px;background-color:#fd000d;font-style:normal;z-index:1;}
/* (add)20200708 */

/* (add)20200727 */
.section_wrap .section.sec11{/*min-height:680px;*/background-color:#fafbfb;/*background-image:url("../img/bg/bg_sec11.png");background-repeat:no-repeat;background-position:50% 50%;background-size:cover;*/}/* (modify)20200825 */

.compLogo_wrap .tit_wrap{margin:20px 0 0;text-align:center;}
.compLogo_wrap .tit_wrap h4{padding:4px 0 5px;font-family:'NotoSansBold';font-weight:700;font-size:21px;color:#555;}

.compLogo_wrap{margin:0 0 10px;}/* (add)20200812 */
.compLogo_wrap .compLogos{margin:36px 0 0;text-align:center;}
.compLogo_wrap .btn_wrap{margin:45px 0 0;}/* (modify)20200812 */
.compLogo_wrap .btn_detail{display:inline-block;min-width:188px;height:46px;padding:0 10px;font-family:'NotoSansBold';font-weight:700;font-size:20px;color:#555;line-height:46px;border:1px solid #aaa;border-radius:24px;}
/* //(add)20200727 */

/* (add)20200727 */
.section_wrap.sub_page .section.sub_bizMag .section_inner{padding:30px 0 100px;}
.bizMagItem{padding:50px 0 62px;border-bottom:1px solid #d9d9d9;}
.bizMagItem .tit_wrap{margin:0 0 28px;text-align:center;}
.bizMagItem .tit_wrap h3{padding:2px 0 4px;font-family:'NotoSansBold';font-weight:700;font-size:24px;color:#222;}
.bizMagItem .tit_wrap h3 span{display:inline-block;margin:0 0 0 8px;font-family:'NotoSansRegular';font-weight:400;}
.bizMagItem .bizMag_cnt{padding:0 0 0 232px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:flex-start;}
.bizMagItem .bizMagIm{width:172px;-webkit-box-sizing:border-box;box-sizing:border-box;}
.bizMagItem .bizMagIm .bizMagCover{position:relative;width:172px;height:242px;border:1px solid #c6d7ee;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;-webkit-box-shadow:20px 17px 12px 0 rgba(9, 44, 108, 0.1);-moz-box-shadow:20px 17px 12px 0 rgba(9, 44, 108, 0.1);box-shadow:20px 17px 12px 0 rgba(9, 44, 108, 0.1);}
.bizMagItem .bizMagIm .bizMagCover > img{width:172px;height:242px;}
.bizMagItem .bizMagIm .bizMagCover::after{content:'';display:block;position:absolute;top:0;left:0;width:101px;height:153px;background-image:url("../img/bg/bg_bizmag_cover.png");background-repeat:no-repeat;background-position:0 0;}
.bizMagItem .bizMagTx{flex-grow:1;-webkit-box-sizing:border-box;box-sizing:border-box;}
.bizMagItem .bizMagTx .bizMagTx_inner{padding:0 0 0 33px;}
.bizMagItem .bizMagLst{padding:17px 0 0 ;}
.bizMagItem .bizMagLst ul li{padding:6px 0 17px;}
.bizMagItem .bizMagLst ul li strong{display:block;padding:1px 0 3px 18px;font-family:'NotoSansBold';font-weight:700;font-size:18px;color:#222;background-image:url("../img/bul/bul_02.png");background-repeat:no-repeat;background-position:0 12px;}
.bizMagItem .bizMagLst ul li p{padding:0 0 1px 18px;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#666;line-height:28px;}
.bizMagItem .btn_wrap{margin:12px 0 0;}
.bizMagItem .btn_dl{display:inline-block;width:172px;height:40px;padding:0 10px 0;font-family:'NotoSansRegular';font-weight:400;font-size:16px;color:#fff;line-height:40px;background-color:#006fc6;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;}

.section_wrap.sub_page .section.sub_newsLet .section_inner{padding:48px 0 150px;}
.newsLet_wrap .btn_sub{display:inline-block;width:172px;height:48px;padding:0 10px 0;font-family:'NotoSansMedium';font-weight:500;font-size:22px;color:#fff;line-height:48px;background-color:#0081ff;border-radius:24px;-webkit-box-sizing:border-box;box-sizing:border-box;}

/* dateLnk */
.dateLnk_wrap{margin:48px 0 0;border-top:1px solid #e5e6e9;border-bottom:1px solid #e5e6e9;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:center;}
.dateLnk_wrap > div{-webkit-box-sizing:border-box;box-sizing:border-box;}
.dateLnk{width:920px;}
.dateLnk ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;/*display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:space-between;align-items:center;*/}/* (modify)20200909 */
.dateLnk ul li{width:168px;height:150px;}
.dateLnk ul li a{display:block;height:150px;padding:26px 0 22px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;}
.dateLnk ul li a strong{display:block;padding:0 0 1px;font-family:'NotoSansBold';font-weight:700;font-size:32px;color:#000;}
.dateLnk ul li a span{display:block;margin:17px 0 0;padding:1px 0 4px;font-family:'NotoSansMedium';font-weight:500;font-size:22px;color:#000;}

/* srchFilter */
.srchFilter{width:280px;padding:0 0 0 64px;}
.srchFilter_bx{position:relative;display:inline-block;width:172px;}
.srchFilter_bx .btn_trig{display:block;height:34px;padding:0 30px 0 11px;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#555;line-height:33px;background-color:#fff;background-image:url("../img/icon/ic_filter_dw.png");background-repeat:no-repeat;background-position:100% 50%;border:1px solid #e5e6e9;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;}
.srchFilter_bx .btn_trig.on{background-image:url("../img/icon/ic_filter_up.png");}
.srchFilter_bx .srchFilter_ly{position:absolute;top:35px;left:0;right:0;display:none;background-color:#fff;border:1px solid #3c434e;}
.srchFilter_bx .srchFilter_ly ul{padding:5px 0;}
.srchFilter_bx .srchFilter_ly ul li a{display:block;height:30px;padding:0 0 0 11px;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#555;line-height:30px;background-color:#fff;}
.srchFilter_bx .srchFilter_ly ul li:hover a{background-color:#f0f0f0;}

.filterResult{padding:150px 0 0;}

/* subscribe_wrap */
.subscribe_wrap{position:relative;width:384px;padding:35px 61px 45px;background-color:#fff;border:1px solid #c6d7ee;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:22px 13px 21px 0 rgba(9, 44, 108, 0.1);-moz-box-shadow:22px 13px 21px 0 rgba(9, 44, 108, 0.1);box-shadow:22px 13px 21px 0 rgba(9, 44, 108, 0.1);}
.subscribe_wrap .tit_wrap{margin:0 0 36px;text-align:center;}
.subscribe_wrap .tit_wrap h3{padding:4px 0 6px;font-family:'NotoSansBold';font-weight:700;font-size:18px;color:#555;}
.subscribe_frm{padding:0 0 12px;border-bottom:1px solid #e5e6e9;}
.subscribe_frm{padding:0 0 12px;}
.subscribe_frm .frm_control{margin:0 0 12px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:flex-start;}
.subscribe_frm .frm_control > div{flex:1 0 auto;-webkit-box-sizing:border-box;box-sizing:border-box;}
.subscribe_frm .frm_control > div:first-child{width:58px;}
.subscribe_frm .frm_control > div:last-child{width:204px;}
.subscribe_frm .frm_control label{display:block;padding:7px 0 8px;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#555;}
.subscribe_frm .frm_control input{width:100%;height:34px;padding:2px 11px;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#555;line-height:34px;border:1px solid #e5e6e9;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box;}
.subscribe_wrap .frm_chk{margin:11px 0 0;}
.subscribe_wrap .frm_chk label{display:block;}
.subscribe_wrap .frm_chk label a{display:inline-block;padding:6px 0 7px;font-family:'NotoSansRegular';font-weight:400;font-size:12px;color:#555;}
.subscribe_wrap .frm_chk label a:hover{text-decoration:underline;}
.subscribe_wrap .frm_chk label input{vertical-align:-2px;}
.subscribe_wrap .btn_wrap{margin:35px 0 0;}
.subscribe_wrap .btn_subscribe{display:inline-block;width:180px;height:32px;padding:0 10px 0;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#fff;line-height:32px;background-color:#578eef;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;}

/* sec12 */
/* (modify)20200811 */
.sec12{border-bottom:1px solid rgba(216, 228, 242, 0.5);background-color:#fff;background-image:url(../img/bg/bg_sect12.png);background-repeat:no-repeat;background-position:50% 0;background-size:auto;}
.section_wrap .section.sec12 .section_inner.mn{min-height:349px;padding:0;}
.bizLetter_wrap .sec_tit_wrap .sec_tit_h3{padding:0 0 2px;font-family:'NotoSansRegular';font-weight:400;color:#000;text-align:left;}
.bizLetter_wrap .sec_descrip > p{margin:5px 0 0;padding:1px 0 3px;font-family:'NotoSansRegular';font-weight:400;font-size:28px;color:#000;line-height:normal;text-align:left;}
.bizLetter_wrap .btn_wrap{margin:66px 0 0;text-align:left;overflow:visible;}
.bizLetter_wrap .btn_subscribe{display:inline-block;width:172px;height:43px;padding:0 10px 1px;font-family:'NotoSansMedium';font-weight:500;font-size:20px;color:#fff;line-height:42px;text-align:center;background-color:#2583fd;border-radius:21px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:15px 26px 21px 0 rgba(9, 44, 108, 0.1);-moz-box-shadow:15px 26px 21px 0 rgba(9, 44, 108, 0.1);box-shadow:15px 26px 21px 0 rgba(9, 44, 108, 0.1);}
.bizLetter_wrap .bizLetter_inner{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:flex-start;}
.bizLetter_wrap .bizLetter_inner > div{width:600px;-webkit-box-sizing:border-box;box-sizing:border-box;}
.bizLetter_wrap .bizLetter_inner .bizLetterL{padding:60px 0 0 45px;}
.bizLetter_wrap .bizLetter_inner .bizLetterR{padding:53px 0 0 100px;}
.bizLetter_wrap .bizLetterIm{width:172px;}
.bizLetter_wrap .bizLetterIm_cover{height:242px;-webkit-box-shadow:15px 26px 21px 0 rgba(9, 44, 108, 0.08);-moz-box-shadow:15px 26px 21px 0 rgba(9, 44, 108, 0.08);box-shadow:15px 26px 21px 0 rgba(9, 44, 108, 0.08);}
.bizLetter_wrap .bizLetterIm_cover > img{width:172px;height:242px;}

.bizLetter_wrap .bizLetterR_cnt{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:flex-start;}
.bizLetter_wrap .bizLetterR_cnt > div{-webkit-box-sizing:border-box;box-sizing:border-box;}
.bizLetter_wrap .bizLetterTx{padding:17px 0 0 55px;}
.bizLetter_wrap .bizLetterTx p{padding:0 0 2px;font-family:'NotoSansRegular';font-weight:400;font-size:32px;font-style:italic;color:#000;line-height:48px;text-align:left;}
.bizLetter_wrap .bizLetterTx .btn_more{display:inline-block;margin:32px 0 0;padding:4px 20px 6px 0;font-family:'NotoSansRegular';font-weight:400;font-size:20px;color:#006fc6;line-height:normal;text-align:left;background-image:url("../img/bg/bg_arw_01.png");background-repeat:no-repeat;background-position:100% 13px;}
.bizLetter_wrap .bizLetterTx .btn_more:hover{text-decoration:underline;}
/* (modify)20200811 */
/* //(add)20200727 */

/* (add)20200731 */
.tab_wrap_sub4.type3{display:block;width:100%;height:70px;border-bottom:1px solid #d3d3d3;}
.tab_wrap_sub4.type3.fixed{position:fixed;top:0;left:0;z-index:999;background-color:#fff;}

.tab_wrap_sub4.type3 .tab_inner{display:block;max-width:733px;margin:0 auto;text-align:center;}
.tab_wrap_sub4.type3 .tab_inner ul{display:table;margin:0 auto;width:100%;overflow:hidden;}
.tab_wrap_sub4.type3 .tab_inner ul li{float:left;display:inline-block;/*width:33.3%;*/text-align:center;}/* (modify)20210129 */

.section_wrap.sub_page4 .section_inner .btn_wrap.type1{position:static;display:block;margin:0 -145px 0 0;text-align:left;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul{display:block;margin:-3px 0 0;overflow:hidden;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li{float:left;display:inline-block;margin:0 0 0 4px;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul.type1{margin:0;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul.type1 li{margin-left:10px;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li:first-child{margin:0;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul.type1 li:first-child{margin:0;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a{display:block;width:224px;height:72px;background-color:transparent;background-repeat:no-repeat;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a.btn_google_play{background-image:url(../img/btn/btn_google_play.png);}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a.btn_app_store{background-image:url(../img/btn/btn_app_store.png);}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a.btn_b1,
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a.btn_w1{width:218px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;height:66px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:3px;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a.btn_b1 span,
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a.btn_w1 span{font-family:'NotoSansMedium';font-weight:500;font-size:16px;line-height:22px;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a.btn_b1{color:#fff;background-color:#0c419a;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a.btn_w1{color:#0c419a;background-color:#fff;border:1px solid #0c419a;}
.section_wrap.sub_page4 .section_inner .btn_wrap.type1 ul li > a.disable{cursor:default;}

.section_wrap.sub_page4 .section_inner .btn_wrap.type1 > p.tx_bizplay4_message{display:block;margin:0 0 33px;padding:0;font-family:"NotoSansLight";font-size:15px;color:#333;font-weight:normal;line-height:27px;text-align:left;letter-spacing:-1px;}

.btnBlock{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:flex-start;}
.btnBlock > div.btnBlockL{width:453px;}
.btnBlock dl dt{margin:0 0 10px;}
.btnBlock dl dt h5{padding:5px 0 7px;font-family:'NotoSansMedium';font-weight:500;font-size:16px;color:#333;line-height:22px;}
/* //(add)20200731 */

/* (add)20200731 */
.top_desc{position:absolute;top:72px;right:27px;}
.top_desc li{font-family:'NotoSansRegular';font-weight:400;font-size:12px;color:#848687;line-height:16px;}

.btn_wrap.type2{margin-top:33px;}
.btn_wrap.type2 li{float:left;margin-right:8px;}
.btn{width:230px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;height:42px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:5px;}
.btn span{font-family:'NotoSansMedium';font-weight:500;font-size:14px;line-height:42px;color:#fff;}

.btn_b2{background-color:#0c419a;}
.btn_b2 span{font-family:'NotoSansMedium';font-weight:500;font-size:14px;line-height:42px;color:#fff;}
.btn_w1.type2{background-color:#fff;border:1px solid #0c419a;}
.btn_w1.type2 span{font-family:'NotoSansMedium';font-weight:500;font-size:14px;line-height:42px;color:#0c419a;}

.app_download{position:absolute;right:0;bottom:50px;}
.app_download p{margin-bottom:9px;font-family:'NotoSansMedium';font-weight:500;font-size:13px;color:#000;letter-spacing:0;}
.app_download li{float:left;margin-right:10px;}
.app_download li img{box-shadow:0 2px 10px 0 rgba(0, 0, 0, 0.2);}
/* //(add)20200731 */

/* (add)20200811 */
.section.sec4{background-image:url("../img/bg/bg_sect4.png");background-repeat:no-repeat;background-position:50% 100%;background-size:cover;}
.section.sec4.type1{background-image:none;}/* (add)20210222 */
.sec_tit_wrap .sec_tit_h4.type2{display:block;margin:0;padding:2px 0 4px;font-family:'NotoSansLight' !important;font-weight:300 !important;text-align:center;}
.section_wrap .section.sec4 .sec4Top{background:-moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 88%, rgba(255,255,255,0.5) 100%);background:-webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 88%,rgba(255,255,255,0.5) 100%);background:linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 88%,rgba(255,255,255,0.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#80ffffff',GradientType=0 );}

.section_wrap .section.sec4 .sec4Top .section_inner.mn{padding:130px 0;}
.section_wrap .section.sec4 .sec4Bot .section_inner.mn{padding:150px 0 0;}/* (modify)20210222 */
.section_wrap .section.sec4 .sec4Bot{background-image:url("../img/bg/bg_sect4_01.png?v=230830");background-repeat:no-repeat;background-position:50% calc(100% - 30px);background-size:100% 700px;}

/* maIn_wrap */
.maIn_wrap{padding:0;}
.maIn_wrap h5{padding:0 0 3px;font-family:'NotoSansBold';font-weight:700;font-size:30px;line-height:45px;color:#000;text-align:center;}

/* .bizMagItem(type2) */
.bizMagItem.type2{padding:30px 53px 0;border-bottom:none;}/* (modify)20200904 */
.bizMagItem.type2 .tit_wrap{text-align:left;}
	.bizMagItem.type2 .tit_wrap.poRelative{position:relative;}/* (add)20200825 */
	.bizMagItem.type2 .tit_wrap.poRelative .moreText{display:block;position:absolute;right:0;top:3px;margin:0;padding:0;}/* (add)20200825 */
	.bizMagItem.type2 .tit_wrap.poRelative .moreText .btn_moreText{display:inline-block;margin:0;padding:4px 15px 6px 0;font-family:'NotoSansRegular';font-weight:400;font-size:18px;color:#2583fd;line-height:normal;text-align:left;text-decoration:underline;background-image:url("../img/icon/icon_read_more_02.png");background-repeat:no-repeat;background-position:100% 11px;}/* (add)20200904 */
	.bizMagItem.type2 .tit_wrap.poRelative .moreText .btn_moreText:hover{text-decoration:underline;}/* (add)20200825 */
.bizMagItem.type2 .bizMag_cnt{padding:0;}
.bizMagItem.type2 .bizMagIm{}
.bizMagItem.type2 .bizMagLst{margin-top:-13px;padding:0;}
.bizMagItem.type2 .bizMagLst ul li strong{letter-spacing:-1px;}
.bizMagItem.type2 .bizMagLst ul li p{letter-spacing:-1px;}
.bizMagItem.type2 .btn_wrap{margin:12px 0 0 18px;text-align:left;}
.bizMagItem.type2 .btn_dl{width:78px;height:32px;padding:0 10px 0;font-size:13px;line-height:32px;text-align:center;}
.bizMagItem.type2 .btn_more{display:inline-block;width:78px;height:32px;padding:0 10px 0;font-family:'NotoSansRegular';font-weight:400;font-size:13px;color:#fff;line-height:32px;text-align:center;background-color:#929292;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;}
.bizMagItem.type2 .btn_bizMagDownload{display:inline-block;width:172px;height:39px;padding:0;font-family:'NotoSansRegular';font-weight:400;font-size:14px;color:#fff;line-height:39px;text-align:center;background-color:#2583fd;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;}/* (add)20200825 */

/* maInBx */
.maInBx{width:924px;height:402px;margin:60px auto 0;background-color:#fff;border:1px solid #86afe7;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 3px 10px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 3px 10px 0 rgba(0, 0, 0, 0.1);box-shadow:0 3px 10px 0 rgba(0, 0, 0, 0.1);}
.maInBx .maInBx_inner{position:relative;height:402px;overflow:hidden;}
.maInBx .maInBx_inner > a.slick-arrow{display:none;}

/* Slider */
.maInBx .maInBx_inner .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent;}
.maInBx .maInBx_inner .slick-list{position:relative;display:block;height:100%;margin:0;padding:0;overflow:hidden;}
.maInBx .maInBx_inner .slick-list:focus{outline:none;}
.maInBx .maInBx_inner .slick-list.dragging{cursor:pointer;cursor:hand;}
.maInBx .maInBx_inner .slick-slider .slick-track,
.maInBx .maInBx_inner .slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}

.maInBx .maInBx_inner .slick-track{position:relative;top:0;left:0;display:block;}
.maInBx .maInBx_inner .slick-track:before,
.maInBx .maInBx_inner .slick-track:after{display:table;content:'';}
.maInBx .maInBx_inner .slick-track:after{clear:both;}
.maInBx .maInBx_inner .slick-loading .slick-track{visibility:hidden;}
.maInBx .maInBx_inner .slick-slide{display:block;float:left;height:100%;min-height:1px;}

.maInBx .maInBx_inner .slick-initialized .slick-slide{display:block;}
.maInBx .maInBx_inner .slick-loading .slick-slide{visibility:hidden;}
.maInBx .maInBx_inner .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent;}
.maInBx .maInBx_inner .slick-arrow.slick-hidden{display:none;}

.maInBx .maInBx_inner .slide_bizMagItem{position:relative;top:0;left:0;cursor:default;}
.maInBx .maInBx_inner .slide_bizMagItem:focus{outline:none;}

/* rolling */
.maInBx .maInBx_inner .slick-dots{position:absolute;bottom:30px;display:block;width:100%;text-align:center;overflow:hidden;}
.maInBx .maInBx_inner .slick-dots li{display:inline-block;margin:0 5px;}
.maInBx .maInBx_inner .slick-dots li button{width:15px;height:15px;margin:0;padding:0;font-size:0;border:1px solid #6e4e32;background-color:#fff;border-radius:50%;cursor:pointer;}
.maInBx .maInBx_inner .slick-dots li.slick-active button{background-color:#1a32d8;}
/* arrow */
.maInBx .maInBx_inner .slick-prev.slick-arrow,
.maInBx .maInBx_inner .slick-next.slick-arrow{position:absolute;top:35px;display:inline-block;width:28px;height:28px;font-size:0;line-height:0;background-repeat:no-repeat;background-position:0 0;z-index:10;}
.maInBx .maInBx_inner .slick-prev.slick-arrow{right:120px;background-image:url("../img/btn/btn_slick_prev.png");}
.maInBx .maInBx_inner .slick-next.slick-arrow{right:93px;background-image:url("../img/btn/btn_slick_next.png");}
/* //(add)20200811 */

/* (add)20200904 */
.maInBx_wrapType2{width:1112px;margin:60px auto 0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:space-between;align-items:flex-start;}
.maInBx_wrapType2 > div{-webkit-box-sizing:border-box;box-sizing:border-box;}
.maInBx_wrapType2 .maInBx{margin:0;}

.maInBxR{width:172px;height:216px;margin:0;background-color:#fff;border:1px solid #86afe7;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 3px 10px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 3px 10px 0 rgba(0, 0, 0, 0.1);box-shadow:0 3px 10px 0 rgba(0, 0, 0, 0.1);}
.maInBxR .bxT{padding:16px 25px 14px;-webkit-box-sizing:border-box;box-sizing:border-box;background-image:url("../img/bg/bg_bxT.png");background-repeat:no-repeat;background-position:102px 100%;}

.maInBxR .bxT p{margin:0 0 4px;padding:5px 0 6px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;color:#222;line-height:28px;text-align:left;}
.maInBxR .bxT .btn_more{display:inline-block;padding:2px 13px 4px 0;font-family:'NotoSansRegular';font-weight:400;font-size:16px;color:#2583fd;line-height:28px;text-align:left;background-image:url("../img/bg/bg_arw_02.png");background-repeat:no-repeat;background-position:100% 11px;text-decoration:underline;}
.maInBxR .bxB{padding:7px 0 5px;border-top:1px solid #86afe7;-webkit-box-sizing:border-box;box-sizing:border-box;}
.maInBxR .bxB .btn_sub{display:block;padding:4px 0 5px;font-family:'NotoSansRegular';font-weight:400;font-size:18px;color:#2583fd;line-height:28px;text-align:center;}
/* //(add)20200904 */

/* (add)20210222 */
/* magaLst */
.magaLst{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:flex-start;}
.magaLst > li{width:200px;margin:0 52px}
.magaLst > li > a{display:block;outline:none;}
.magaLst > li > a img{display:block;height:280px;border:1px solid #c6d7ee;-webkit-box-shadow:0 14px 16px 0 rgba(9, 44, 108, 0.1);-moz-box-shadow:0 14px 16px 0 rgba(9, 44, 108, 0.1);box-shadow:0 14px 16px 0 rgba(9, 44, 108, 0.1);}
.magaLst > li > a .slide_tx{margin:27px 0 0;}
.magaLst > li > a .slide_tx h4{padding:4px 0 2px;font-family:'NotoSansBold';font-weight:700;font-size:24px;line-height:35px;color:#222;letter-spacing:-1px;}
.magaLst > li > a .slide_tx h4 span{font-family:'NotoSansRegular';font-weight:400;}

.maInBx_wrapType3 .maInBxR{width:656px;height:65px;margin:29px auto 0;background-color:#fff;border:1px solid #86afe7;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 3px 10px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 3px 10px 0 rgba(0, 0, 0, 0.1);box-shadow:0 3px 10px 0 rgba(0, 0, 0, 0.1);display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:center;}
.maInBx_wrapType3 .maInBxR .bxT{flex:1 0 auto;position:relative;padding:0 30px 0;-webkit-box-sizing:border-box;box-sizing:border-box;background-image:url("../img/bg/bg_bxT2.png");background-repeat:no-repeat;background-position:29px 50%;}

.maInBx_wrapType3 .maInBxR .bxT p{margin:0;padding:0 0 1px 48px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;color:#222;line-height:26px;text-align:left;}
.maInBx_wrapType3 .maInBxR .bxT .btn_moreView{position:absolute;top:0;right:30px;display:inline-block;padding:1px 15px 2px 0;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#2583fd;line-height:24px;text-align:left;text-decoration:underline;background-image:url("../img/bg/bg_arw_02.png");background-repeat:no-repeat;background-position:50px 50%;}
.maInBx_wrapType3 .maInBxR .bxB{width:125px;padding:0;border-top:none;border-left:1px solid #d7e8ff;-webkit-box-sizing:border-box;box-sizing:border-box;}
.maInBx_wrapType3 .maInBxR .bxB .btn_sub{display:block;height:63px;padding:0 0 0;font-family:'NotoSansRegular';font-weight:400;font-size:20px;color:#2583fd;line-height:62px;text-align:center;}
/* //(add)20210222 */

/* (add)20200928 */
.eVoucher_banner{display:block;}
.eVoucher_banner .eVoucher_banner_inner{display:block;min-width:1200px;margin:0 auto;padding:57px 0 0;text-align:center;}
/* //(add)20200928 */

/* (add)20210119 */
.slider1{display:block;width:1112px;margin:0 auto;padding:0;}
.slider1 .slider_container{position:relative;height:617px;}
/* Slider */
.slider1 .slider_container .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent;}
.slider1 .slider_container .slick-list{position:relative;display:block;height:100%;margin:0;padding:0;overflow:hidden;}
.slider1 .slider_container .slick-list:focus{outline:none;}
.slider1 .slider_container .slick-list.dragging{cursor:pointer;cursor:hand;}
.slider1 .slider_container .slick-slider .slick-track,
.slider1 .slider_container .slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);}

.slider1 .slider_container .slick-track{position:relative;top:0;left:0;display:block;}
.slider1 .slider_container .slick-track:before,
.slider1 .slider_container .slick-track:after{display:table;content:'';}
.slider1 .slider_container .slick-track:after{clear:both;}
.slider1 .slider_container .slick-loading .slick-track{visibility:hidden;}
.slider1 .slider_container .slick-slide{display:;float:left;height:100%;min-height:1px;outline:none;}

.slider1 .slider_container .slick-initialized .slick-slide{display:block;}
.slider1 .slider_container .slick-loading .slick-slide{visibility:hidden;}
.slider1 .slider_container .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent;}

.slider1 .slick-prev,
.slider1 .slick-next{display:block;position:absolute;top:50%;width:31px;height:58px;margin:18px 0 0;font-size:0;line-height:0;overflow:hidden;z-index:2;}
.slider1 .slick-prev{left:auto;left:-44px;background-image:url("../img/icon/ic_video_prev.png");background-repeat:no-repeat;background-position:0 0;background-color:transparent;}
.slider1 .slick-next{left:auto;right:-44px;background-image:url("../img/icon/ic_video_next.png");background-repeat:no-repeat;background-position:0 0;background-color:transparent;}

.slider1 .slider_container .sliders .slider_inner{text-align:center;}
/* //(add)20210119 */

/* (add)20210222 */
/* ㄴSlider(type2) */
.slider1.type2{width:744px;}
.slider1.type2 .slider_container{position:relative;height:395px;}
.slider1.type2 .slider_container .slick-list{position:relative;display:block;width:638px;height:100%;margin:0 auto;padding:0;overflow:hidden;}

.slider1.type2 .slick-prev,
.slider1.type2 .slick-next{display:block;position:absolute;top:50%;width:17px;height:34px;margin:-17px 0 0;font-size:0;line-height:0;overflow:hidden;z-index:2;}
.slider1.type2 .slick-prev{left:auto;left:21px;background-image:url("../img/exp/ic_prev_slider_rept_.png");background-repeat:no-repeat;background-position:0 0;background-color:transparent;}
.slider1.type2 .slick-next{left:auto;right:21px;background-image:url("../img/exp/ic_next_slider_rept_.png");background-repeat:no-repeat;background-position:0 0;background-color:transparent;}

/* ㄴSlider(type3) */
.slider1.type3{width:1112px;height:auto;margin:47px auto 0;}
.slider1.type3 .slider_container{height:auto;}
.slider1.type3 .slider_container .slick-list{width:912px;margin:0 auto;}

.slider1.type3 .slick-prev,
.slider1.type3 .slick-next{display:block;position:absolute;top:50%;left:auto;width:48px;height:48px;margin:-75px 0 0;font-size:0;line-height:0;border-radius:50%;overflow:hidden;-webkit-box-shadow:0 14px 16px 0 rgba(9, 44, 108, 0.1);-moz-box-shadow:0 14px 16px 0 rgba(9, 44, 108, 0.1);box-shadow:0 14px 16px 0 rgba(9, 44, 108, 0.1);background-repeat:no-repeat;background-position:0 0;background-color:transparent;z-index:2;}
.slider1.type3 .slick-prev{left:0;background-image:url("../img/btn/btn_prev_bizmag.png");}
.slider1.type3 .slick-next{right:0;background-image:url("../img/btn/btn_next_bizmag.png");}
/* //(add)20210222 */

/* (add)20210113 */
/* header*/
.idx .header{position:relative;display:block;min-width:1240px;margin:0;padding:0;background-color:#1e67e1;border-bottom:none;-webkit-transition:background-color 0.3s ease-out;-moz-transition:background-color 0.3s ease-out;-o-transition:background-color 0.3s ease-out;transition:background-color 0.3s ease-out;}
.idx .header{position:absolute;top:0;right:0;left:0;height:80px;background-color:transparent;z-index:2000;}/* (add)20230109 */
.idx .header .header_inner{display:block;min-width:1200px;height:38px;margin:0 auto;padding:21px 20px;}
.idx .header .header_inner .logo{float:left;display:inline-block;vertical-align:top;}
.idx .header .header_inner .logo > a{display:block;width:auto;height:38px;margin:0;padding:0;overflow:hidden;}/* (modify)20230906 */
.idx .header .header_inner .logo > a h1{position:relative;display:block;width:auto;height:38px;font-size:0;}/* (modify)20230906 */
.idx .header .header_inner .logo > a h1 img{height:38px;}/* (modify)20230906 */
.idx .header .header_inner .logo > a h1 img.logo2{display:none;height:38px;}/* (modify)20230906 */
.idx .header .header_inner .logo > a h1 img.logo1{display:block;}/* (modify)20230613 */

.idx .header .header_inner .cliend_name{display:none;}

/* login */
.idx .header .header_inner .login{float:left;display:inline-block;vertical-align:top;}
.idx .login ul{display:block;padding:0 12px 0 0;overflow:hidden;}
.idx .login ul li:first-child{margin-left:0;}
.idx .login ul li{float:left;display:inline-block;vertical-align:top;margin:0 0 0 13px;}
.idx .login ul li a{display:block;width:90px;height:32px;margin:0;padding:4px 0 0;font-family:"NanumGothicRegular";font-size:14px;color:#fff;line-height:28px;text-align:center;border:1px solid #1a32d8;border-radius:5px;background-color:#1a32d8;}/* (modify)20230613 */
.idx .login ul li a.btn_bizstore{color:#fff;border:1px solid #fff;}
.idx .login ul li a.btn_login{width:80px;}
.idx .login ul li a.btn_login:hover{color:#fff;border:1px solid #1a32d8;}/* (modify)20230613 */
.idx .login ul li a.btn_sign{color:#fff;border:1px solid #1a32d8;background-color:#1a32d8;}/* (modify)20230613 */
.idx .login ul li a.btn_sign:hover{color:#fff;border:1px solid #1a32d8;background-color:#1a32d8;}/* (modify)20230613 */
.idx .login ul li a.btn_freeEx{color:#1a32d8;border:1px solid #fff;background-color:#fff;}/* (add)20210127 */
.idx .login ul li a.btn_freeEx:hover{color:#1a32d8;border:1px solid #fff;background-color:#fff;}/* (add)20210127 */

.idx .header .header_inner .btn_MenuMobile span{position:absolute;left:0;width:100%;height:2px;background-color:#000;border-radius:2px;}/* (modify)20230613 */

.slide_wrap_index .slide_container_index.type1{height:675px;background-color:#1e67e1;}
.slide_wrap_index .slide_container_index.type1 .slide_tit_wrap{display:block;margin:60px 0 0;padding:0;}
.slide_wrap_index .slide_container_index.type1 .slide_index .slide_inner_index{display:block;height:675px;max-width:1120px;margin:0 auto;padding:0;overflow:hidden;}

.slide_wrap_index .slide_container_index.type1 .slide_desc{margin:10px 0 0;}
.slide_wrap_index .slide_container_index.type1 .slide_tit_wrap .slide_tit_h2{display:block;padding:9px 0 13px;font-family:'NotoSansBold';font-size:48px;color:#fff;font-weight:700;line-height:63px;letter-spacing:-0.035em;text-shadow:none;}
.slide_wrap_index .slide_container_index.type1 .slide_tit_wrap .slide_tit_h2 > span{display:inline-block;margin-left:-20px;font-family:'NotoSansBold';font-size:48px;color:#fff;font-weight:700;line-height:63px;letter-spacing:-0.035em;text-shadow:none;}
.slide_wrap_index .slide_container_index.type1 .slide_desc .slide_tit_h3{display:block;margin:0;padding:4px 0 5px;font-family:'NotoSansMedium';font-size:24px;color:#fff;font-weight:500;line-height:35px;letter-spacing:-0.025em;text-shadow:none;}
.slide_wrap_index .slide_container_index.type1 .slide_desc > p{display:block;margin:25px 0 0;padding:3px 0 4px;font-family:'NotoSansLight';font-size:19px;color:#fff;font-weight:300;line-height:31px;text-shadow:none;}

.slide_wrap_index .slide_container_index .slide_index.slide_05{background-image:url(../img/bg/bg_slide_05_in_pc.png);}
.slide_wrap_index .slide_container_index .slide_index.slide_06{background-image:url(../img/bg/bg_slide_06_in_pc.png);}
.slide_wrap_index .slide_container_index .slide_index.slide_07{background-image:url(../img/bg/bg_slide_07_in_pc.png);}
.slide_wrap_index .slide_container_index .slide_index.slide_08{background-image:url(../img/bg/bg_slide_08_in_pc.png);}
.slide_wrap_index .slide_container_index .slide_index.slide_09{background-image:url(../img/bg/bg_slide_09_in_pc.png);}/* (add)20220531 */

.slide_wrap_index .slide_container_index.type1 .slick-dots{position:absolute;bottom:80px;display:block;width:100%;text-align:center;overflow:hidden;}
.slide_wrap_index .slide_container_index.type1 .slick-dots li{display:inline-block;margin:0 5px;}
.slide_wrap_index .slide_container_index.type1 .slick-dots li button{width:8px;height:8px;margin:0;padding:0;font-size:0;border:2px solid rgba(255,255,255,0);background-color:#fff;border-radius:50%;cursor:pointer;}
.slide_wrap_index .slide_container_index.type1 .slick-dots li.slick-active button{width:12px;height:12px;border:2px solid #fff;background-color:#0b51d3;}

.btn_slide{margin:100px 0 0;}
.btn_more2{display:inline-block;width:117px;font-family:'NotoSansMedium';font-size:18px;color:#fff !important;font-weight:500;line-height:36px;background-image:url("../img/btn/btn_more2.png");background-repeat:no-repeat;background-position:0 15px;}

.partner_wrap.type2{display:block;margin:0;padding:55px 0 100px;}
.partner_wrap.type2 .partner_inner .partner_box .box .tit_h4{height:42px;font-family:'NotoSansRegular';font-weight:normal;font-size:24px;color:#222;line-height:42px;}
.partner_wrap.type2 .partner_inner .partner_box .box .tit_h4 span{display:inline-block;width:24px;height:42px;margin-right:16px;background-image:url(../img/bg/bg_sprite_main2.png);background-repeat:no-repeat;background-size:auto auto;vertical-align:top;}
.partner_wrap.type2 .partner_inner .partner_box .box .tit_h4 span.img_pn01{background-position:0 0;}
.partner_wrap.type2 .partner_inner .partner_box .box .tit_h4 span.img_pn02{background-position:0 -42px;}
.partner_wrap.type2 .partner_inner .partner_box .box .tit_h4 span.img_pn03{background-position:0 -84px;}
.partner_wrap.type2 .partner_inner .partner_box .box .tit_h4 span.img_pn04{background-position:0 -126px;}
/* //(add)20210113 */

/* (add)20210115 */
.btnTrial_wrap{margin:0 0 30px;text-align:center;}
a.btnTrial{position:relative;display:inline-block;height:88px;padding:0 40px;font-family:'NotoSansBold';font-weight:700;font-size:30px;line-height:88px;color:#fff;text-align:center;background-color:#2164b5;}
a.btnTrial:after{content:'';display:inline-block;width:13px;height:21px;margin:0 0 4px 14px;background-image:url("../img/bg/bg_arw_03.png");background-repeat:no-repeat;background-position:0 0;vertical-align:middle;}
/* //(add)20210115 */

/* (add)20210128 */
/* banner_wrap */
.banner_wrap.type2 .banner_tit h2.tit_h2{margin:0;font-family:'NotoSansBold';font-weight:700;font-size:52px;line-height:normal;color:#333;}
.banner_wrap.type2 .banner_tit h3{font-family:'NotoSansRegular';font-weight:400;font-size:21px;line-height:24px;color:#222;text-align:center;}

/* tabs_header */
.tabs_header.type2{width:1200px;margin:0 auto;}
.tabs_header.type2 ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:0 103px;border:2px solid #f4f4f4;border-bottom:none;}
.tabs_header.type2 ul{background-image:url("../img/comm/img_subTab.png");background-repeat:repeat-x;background-position:0 0;}
.tabs_header.type2 ul li{position:relative;height:60px;padding-bottom:2px;}
/*.tabs_header.type2 ul li.nobrd{border-bottom:none;}*/
.tabs_header.type2 ul li::after{content:'';position:absolute;left:0;bottom:0;right:0;height:4px;background-color:#063f97;opacity:0;}
.tabs_header.type2 ul li.on::after,
.tabs_header.type2 ul li:hover::after{opacity:1;}

.tabs_header.type2 ul li a{display:block;width:247px;height:60px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:60px;color:#222;text-align:center;}/* (modify)20211228 */
.tabs_header.type2 ul li:nth-child(2n) a{width:248px;}/* (add)20211228 */
.tabs_header.type2 ul li a.lensWidthExp1{width:144px;}
/*(delete)20211228.tabs_header.type2 ul li:first-child a{width:122px;}*/
.tabs_header.type2 ul li.on a,
.tabs_header.type2 ul li:hover a{font-family:'NotoSansBold';font-weight:700;color:#063f97;}

/* tabs_wrap */
.tabs_wrap.type2 .tab_cnt_wrap{display:none;}

.tabs_wrap.type2 .tabs_body_wrap{width:1200px;margin:0 auto;}
/* bx1_wrap */
.bx1_wrap{padding:53px 0 90px;}

.bx1_wrap .tit_wrap h4{min-height:81px;padding:1px 0 4px;font-family:'NotoSansBold';font-weight:700;font-size:24px;line-height:38px;color:#333;text-align:center;letter-spacing:-1px;}

/* bx1_group */
.bx1_group{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:nowrap;justify-content:flex-start;align-items:flex-start;margin:43px 100px 0;}

.bx1_im{width:405px;text-align:center;}

.bx1_tx{width:595px;}
.bx1_tx .bx1_tx_inn{padding:10px 0 0;}
.bx1_tx dl{padding:0 25px 40px;}
.bx1_tx dl dt h5{padding:1px 0 3px;font-family:'NotoSansBold';font-weight:700;font-size:24px;line-height:38px;color:#1a32d8;}
.bx1_tx dl dt h5 em{padding:1px 0 3px;font-family:'NotoSansRegular';font-weight:400;font-size:24px;line-height:38px;color:#1a32d8;}
.bx1_tx dl dd{padding:2px 0 3px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:34px;color:#333;letter-spacing:-1px;}
.bx1_tx dl dd p{padding:2px 0 3px;font-family:'NotoSansRegular';font-weight:400;font-size:16px;line-height:normal;color:#666;letter-spacing:-1px;}
.bx1_tx dl dd ol li{padding:0 0 0 20px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:34px;color:#333;letter-spacing:-1px;text-indent:-20px;}

.bx1_tx .btn_group{/*width:360px;*/width:500px;}/* (modify)20211228 */
.bx1_tx .btn_group ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:10px -7px 0 -8px;}
.bx1_tx .btn_group ul li{height:42px;margin:0 7px 15px 8px;text-align:center;border:1px solid #c4cbda;}
.bx1_tx .btn_group ul li a{position:relative;display:block;min-width:74px;height:42px;padding:0 14px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:42px;color:#333;}
.bx1_tx .btn_group ul li a em{position:absolute;top:-11px;right:-11px;display:block;width:42px;height:19px;font-family:'NotoSansBold';font-weight:700;font-size:13px;line-height:19px;color:#fff;border-radius:4px;background-color:#fb6249;}

/* tx_recpt */
.im_recpt,
.tx_recpt{float:left;width:600px;}
.tx_recpt h3.sec_tit_h3{text-align:left;}
.tx_recpt h3.sec_tit_h3.ls2{letter-spacing:-0.035em;}

.tx_recpt .sec_descrip.type2 p{margin:10px 0 0;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:32px;color:#222;text-align:left;}/* (modify)20211228 */
.tx_recpt .sec_descrip.type2 p.txBlue{margin-top:28px;padding:1px 0 3px;font-family:'NotoSansLight';font-weight:300;color:#2f81e4;font-size:24px;line-height:38px;}/* (modify)20211228 */
.tx_recpt .sec_descrip.type2 dl{margin:12px 0 0;}/* (modify)20211228 */
.tx_recpt .sec_descrip.type2 dl dt{min-width:90px;float:left;padding:3px 0 4px;font-family:'NanumGothicRegular';font-weight:400;font-size:17px;line-height:28px;color:rgba(42,37,33,0.7);letter-spacing:-1px;}
.tx_recpt .sec_descrip.type2 dl dd{float:left;max-width:510px;padding:3px 0 4px;font-family:'NanumGothicRegular';font-weight:400;font-size:17px;line-height:28px;color:rgba(42,37,33,0.7);letter-spacing:-1px;}

.tx_recpt a.btn_learnMore{display:inline-block;min-width:100px;height:52px;padding-left:25px;padding-right:25px;font-family:'NotoSansRegular';font-weight:400;font-size:19px;line-height:50px;color:#fff;text-align:center;border-radius:50px;background-color:#2583fd;}/* (modify)20211228 */
.tx_recpt a.btn_learnMore::after{content:'';display:inline-block;width:7px;height:13px;margin-left:15px;background-image:url("../img/icon/ic_learn_more.png");background-repeat:no-repeat;background-position:0 0;}/* (modify)20211228 */
/* //(add)20210128 */

/* (add)20210222 */
.im_recpt.type1,
.tx_recpt.type1{-webkit-box-sizing:border-box;box-sizing:border-box;}
.im_recpt.type1{width:516px;}
.tx_recpt.type1{width:684px;padding:0 0 0 10px;}/* (modify)20211228 */
/* //(add)20210222 */

/* (add)20211228 */
/* banner_wrap */
.banner_wrap.type4 .banner_tit h2.tit_h2{margin:0;font-family:'NotoSansBold';font-weight:700;font-size:52px;line-height:normal;color:#333;}
.banner_wrap.type4 .banner_tit h3{font-family:'NotoSansRegular';font-weight:400;font-size:21px;line-height:24px;color:#222;text-align:center;}

/* tabs_header */
.tabs_header.type4{width:1200px;margin:0 auto;}
.tabs_header.type4 ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:0;border:1px solid #f4f4f4;}
.tabs_header.type4 ul{}
.tabs_header.type4 ul li{position:relative;width:297px;height:60px;border:1px solid #f4f4f4;}
.tabs_header.type4 ul li:nth-child(2n){width:298px;}
/*.tabs_header.type2 ul li.nobrd{border-bottom:none;}*/
.tabs_header.type4 ul li{}
.tabs_header.type4 ul li.on{background-color:#063f97;opacity:1;}

.tabs_header.type4 ul li a{display:block;height:60px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:60px;color:#333;text-align:center;}
.tabs_header.type4 ul li.on a{font-family:'NotoSansBold';font-weight:700;color:#fff;}

/* tabs_wrap */
.tabs_wrap.type4 .tab_cnt_wrap{display:none;}

.tabs_wrap.type4 .tabs_body_wrap{width:1200px;margin:0 auto;}

.bx1_outWrap p{margin:-55px 0 70px;padding:1px 0 3px;font-family:'NotoSansBold';font-weight:700;font-size:24px;line-height:38px;color:#333;text-align:center;letter-spacing:-1px;}
/* //(add)20211228 */

/* (add)20210130 */
/****************************************************************************************************
ㄴ상품(상세페이지)
****************************************************************************************************/
/* Roboto(Webfont)) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

.bg_F6F9FD{background-color:#F6F9FD !important;}

.serProDes_wrap{display:block;min-width:1200px;margin:0 auto;padding:0;}

.serProDes_header{display:block;width:1200px;margin:0 auto;padding:0;}
.serProDes_header{height:233px;background-color:#efefef;background-repeat:no-repeat;background-position:50% 0;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}

	.serProDes_tit{padding:60px 0 0;}
	.serProDes_tit.type2{padding:85px 0 0;}/* (add)20210208 */
	.serProDes_tit .serProDes_h2{margin:0;padding:0 0 3px;font-family:'NotoSansMedium';font-weight:500;font-size:45px;line-height:59px;}
	.serProDes_dsc{}
	.serProDes_dsc > p{margin:4px 0 0 0;padding:4px 0 5px;font-family:'NotoSansLight';font-weight:300;font-size:20px;line-height:30px;}
	.serProDes_tit .serProDes_h2,
	.serProDes_dsc > p{display:block;color:#fff;text-align:center;letter-spacing:-0.025em;}

	/* (add)20210208 */
	/* ㄴ대표 배경이미지 */
	.imSPD1000{background-image:url(../img/serPro/imSPD1000.png);}/* 카드영수증 */
	.imSPD1010{background-image:url(../img/serPro/imSPD1010.png);}/* 결재함 */
	.imSPD1020{background-image:url(../img/serPro/imSPD1020.png);}/* 경비지급관리 */
	.imSPD1030{background-image:url(../img/serPro/imSPD1030.png);}/* 법인카드관리 */
	.imSPD1040{background-image:url(../img/serPro/imSPD1040.png);}/* 인택스 */
	.imSPD1050{background-image:url(../img/serPro/imSPD1050.png);}/* 출장/구매/복지 */
	.imSPD1060{background-image:url(../img/serPro/imSPD1060.png);}/* 카드보고서 */
	.imSPD1070{background-image:url(../img/serPro/imSPD1070.png);}/* 카드사정보수집(EDI) */
	.imSPD1080{background-image:url(../img/serPro/imSPD1080.png);}/* 카드사정보수집(스크래핑) */
	.imSPD1090{background-image:url(../img/serPro/imSPD1090.png);}/* 카드지출결의 */
	.imSPD1100{background-image:url(../img/serPro/imSPD1100.png);}/* 프리미엄보고서 */
	.imSPD1110{background-image:url(../img/serPro/imSPD1110.png);}/* 현금영수증관리 */
	.imSPD1120{background-image:url(../img/serPro/imSPD1120.png);}/* 감사보고서 *//* (add)20210222(r2) */
	.imSPD1130{background-image:url(../img/serPro/imSPD1130.png);}/* 티머니카드관리 *//* (add)20210701 */
	.imSPD1140{background-image:url(../img/serPro/imSPD1140.png);}/* 공인전자문서보관서비스 *//* (add)20210701 */
	.imSPD1150{background-image:url(../img/serPro/imSPD1150.png);}/* 업무차량비용관리 *//* (add)20210701 */
	.imSPD1160{background-image:url(../img/serPro/imSPD1160.png);}/* 출장관리 *//* (add)20210701 */
	.imSPD1170{background-image:url(../img/serPro/imSPD1170.png);}/* 전도금관리 *//* (add)20210701 */
	.imSPD1180{background-image:url(../img/serPro/imSPD1180.png);}/* 연구비지출관리 *//* (add)20210701 */
	.imSPD1190{background-image:url(../img/serPro/imSPD1190.png);}/* 개인경비관리 *//* (add)20210701 */
	.imSPD1200{background-image:url(../img/serPro/imSPD1200.png);}/* 예산관리	 *//* (add)20210701 */
	.imSPD1210{background-image:url(../img/serPro/imSPD1210.png);}/* ERP연계서비스 *//* (add)20210701 */
	/* //(add)20210208 */

.serProDes_body{display:block;width:1200px;margin:0 auto;padding:0;}

	.serProDes_TransList{display:block;width:1200px;margin:0 auto;padding:0;}

	.TransList{display:table;width:1040px;margin:0 auto;padding:80px;}
	.TransList .TransList_text{display:table-cell;width:480px;padding:0 20px 0 20px;vertical-align:top;}
		.TransList_text .bandage{display:inline-block;width:60px;height:35px;margin:10px 0 0;padding:0;font-family:'Roboto';font-weight:700;font-size:25px;color:#fff;line-height:35px;text-align:center;overflow:hidden;background-color:#367ffa;border-radius:35px;}
		.TransList_text h3.TransList_h3{display:block;margin:14px 0 5px;padding:2px 0 4px;font-family:'NotoSansMedium';font-weight:500;font-size:40px;color:#222;line-height:50px;letter-spacing:-0.025em;}/* (modify)20210208 */
		.TransList_text .TransList_li{margin:0 0 5px;}
		.TransList_text .TransList_li ul{}
		.TransList_text .TransList_li ul > li{display:block;position:relative;margin:10px 0 0;padding:0 0 0 18px;font-family:'NotoSansLight';font-weight:300;font-size:18px;color:#666;line-height:26px;word-break:keep-all;background-image:url(../img/serPro/ic_li.png);background-repeat:no-repeat;background-position:1px 11px;}/* (modify)20210208 */
		.TransList_text .TransList_li ul > li strong{display:block;margin:0;padding:0;font-family:'NotoSansRegular';font-weight:400;font-size:18px;color:#222;line-height:26px;}/* (add)20210701 */
		.TransList_text .TransList_li > p{display:block;margin:10px 0 0;padding:0;font-family:'NotoSansLight';font-weight:300;font-size:18px;color:#666;word-break:keep-all;line-height:26px;}
		.TransList_text .TransList_li p.poAbsolute{top:0;left:125px;}/* (add)20210208 */
		.TransList_text .TransList_li ul.TransList_li_subList{margin:8px 0 0 18px;}/* (add)20210208 */
		.TransList_text .TransList_li ul.TransList_li_subList > li{display:block;position:relative;margin:0;padding:0 0 0 12px;font-family:'NotoSansLight';font-weight:300;font-size:16px;color:#666;line-height:26px;word-break:keep-all;background-image:url(../img/serPro/ic_li2.png);background-repeat:no-repeat;background-position:1px 12px;}/* (add)20210208 */
		.TransList_text .TransList_li ul > li p{margin:5px 0 0;padding:0 0 0 23px;font-family:'NotoSansLight';font-weight:300;font-size:18px;color:rgba(102,102,102,0.5);line-height:28px;text-indent:-23px;}/* (add)20210701 */

	.TransList .TransList_img{display:table-cell;width:500px;margin:0;padding:0 0 0 20px;vertical-align:top;}
/* //(add)20210130 */

/* (add)20210216 */
/****************************************************************************************************
ㄴ경비지출 주요기능
****************************************************************************************************/
.mnFunc_wrap{margin:60px 0 0;}
.mnFuncs{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;}
.mnFuncs > li{width:380px;height:280px;margin:0 10px 20px;border:1px solid #a3a3a3;border-radius:4px;background-color:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 8px 10px 0 rgba(0, 0, 0, 0.05);-moz-box-shadow:0 8px 10px 0 rgba(0, 0, 0, 0.05);box-shadow:0 8px 10px 0 rgba(0, 0, 0, 0.05);}
.mnFuncs > li:hover{border-color:#222;-webkit-box-shadow:0 8px 10px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 8px 10px 0 rgba(0, 0, 0, 0.25);box-shadow:0 8px 10px 0 rgba(0, 0, 0, 0.25);}
.mnFuncs > li dl{padding:32px 0 30px;}
.mnFuncs > li dl dt{height:128px;margin:0 0 20px;text-align:center;line-height:0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;}
.mnFuncs > li dl dd p{padding:4px 0 6px;text-align:center;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:29px;color:#222;}
/* //(add)20210216 */

/* (add)20210222 */
/* exRep_group */
.exRep_group{padding:5px 0 100px;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:flex-start;align-items:flex-start;-webkit-box-sizing:border-box;box-sizing:border-box;}
.exRep_group > div{-webkit-box-sizing:border-box;box-sizing:border-box;}
.exRep_group .tx_Rept{width:456px;-webkit-box-sizing:border-box;box-sizing:border-box;}
.exRep_group .tx_Rept h4{margin:0 0 15px;padding:3px 0 4px;font-family:'NotoSansBold';font-weight:700;font-size:28px;line-height:40px;color:#333;letter-spacing:-1px;}
.exRep_group .tx_Rept p{margin:0 0 25px;padding:3px 0 4px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:32px;color:#333;letter-spacing:-1px;}
.exRep_group .colL .tx_Rept{padding:50px 0 0 76px;}
.exRep_group .colR .tx_Rept{padding:50px 0 0 20px;}
/* //(add)20210222 */

/* (add)20210315 */
/****************************************************************************************************
ㄴ제휴카드소개
****************************************************************************************************/
.aCard_wrap{position:relative;display:block;margin:0 auto;padding:0;background-color:#009591;}
.aCard_wrap .aCard_inner{display:block;width:1200px;height:575px;margin:0 auto;padding:155px 0 0;background-image:url("../img/aCard/bgTitle_aCard.png");background-repeat:no-repeat;background-position:50% 0;}
	.aCard_tit{display:block;width:1200px;margin:0 44px;}/* (modify)20210817 */
	.aCard_tit > .tit_h2{margin:0;padding:0 0 4px;font-family:'NotoSansBold';font-weight:700;font-size:48px;color:#fff;line-height:62px;text-align:left;letter-spacing:-0.035em;}/* (modify)20210817 */
	.aCard_dsc{display:block;margin:25px 44px 0;}/* (modify)20210817 */
	.aCard_dsc > p{margin:10px 0 0;padding:3px 0 4px;font-family:'NotoSansRegular';font-size:20px;color:#fff;line-height:32px;text-align:left;letter-spacing:-0.025em;}/* (modify)20210817 */
	.aCard_dsc > p:first-child{margin:0;}

.aCardSection_wrap{position:relative;}
.aCardSection_inrBox{display:block;width:1200px;margin:-105px auto 90px;padding:0;}/* (modify)20210701 */
.aCardSection{margin:105px 0 0;padding:0;}
.aCardSection.first{margin:0 45px;padding:30px 45px;border:1px solid #dfe7f4;border-radius:8px;-moz-radius:8px;-ms-radius:8px;-o-radius:8px;background-color:#fff;box-shadow:0 12px 30px rgba(134,134,134,0.13);-webkit-box-shadow:0 12px 30px rgba(134,134,134,0.13);-moz-box-shadow:0 12px 30px rgba(134,134,134,0.13);box-sizing:border-box;}
/* //(add)20210315 */
/* (start)20220429 */
.aCard_wrap.type2{position:relative;display:block;margin:0 auto;padding:0;background-color:transparent;background-image:url("../img/aCard/bg_bCard.png");background-repeat:no-repeat;background-position:50% 0;background-size:cover;}
.aCard_wrap.type2 .aCard_inner{display:block;width:100%;height:546px;margin:0 auto;padding:188px 0 0;text-align:center;background-image:url("../img/aCard/bgTitle_bCard.png?v=20230912");background-repeat:no-repeat;background-position:50% 0;}
.aCard_wrap.type2 .aCard_tit{display:block;width:1200px;margin:0 auto 25px;}
.aCard_wrap.type2 .aCard_tit > .tit_h2{display:inline-block;margin:0;padding:0 0 9px;font-family:'NotoSansBlack';font-weight:900;font-size:48px;color:#fff;line-height:66px;text-align:center;letter-spacing:-0.035em;background:#68E0CF;background:linear-gradient(to left, #68E0CF 0%, #28A5FA 50%, #68E0CF 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.aCard_wrap.type2 .aCard_dsc{position:relative;display:block;width:1200px;margin:0 auto;}
.aCard_wrap.type2 .aCard_dsc > p{display:block;margin:0;padding:0;font-family:'NotoSansRegular';font-weight:400;font-size:20px;color:#fff;line-height:36px;text-align:center;letter-spacing:-0.025em;}
.aCard_wrap.type2 .tx_bizCard{padding:88px 45px 0 0;text-align:right;}
.aCard_wrap.type2 .tx_bizCard > p{font-family:'NotoSansMedium';font-weight:500;font-size:16px;color:#6590cf;line-height:28px;}
/* //(end)20220429 */



/* (add)20210517 */
/****************************************************************************************************
ㄴ비즈플레이 파트너스
****************************************************************************************************/
/* tabs_header */
.tabs_wrap.type3 .tab_cnt_wrap{width:1192px;}
.tabs_header.type3{width:1184px;margin:0 auto;}
.tabs_header.type3 ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:0;border:1px solid #d9d9d9;}
.tabs_header.type3 ul li{position:relative;width:25%;height:59px;margin:0;border:0;}
.tabs_header.type3 ul li::after{content:'';position:absolute;left:0;bottom:0;right:0;height:5px;margin-bottom:-1px;background-color:#063f97;opacity:0;}
.tabs_header.type3 ul li:first-child::after{margin-left:-1px;}
.tabs_header.type3 ul li:last-child::after{margin-right:-1px;}
.tabs_header.type3 ul li.on::after,
.tabs_header.type3 ul li:hover::after{opacity:1;}
.tabs_header.type3 ul li a{display:block;height:59px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:59px;color:#222;text-align:center;}
.tabs_header.type3 ul li.on a,
.tabs_header.type3 ul li:hover a{font-family:'NotoSansBold';font-weight:700;color:#063f97;}

.bx2_wrap{width:1192px;margin:0 auto;padding:40px 0 50px;overflow:hidden;}
	.tit_wrap.type1 h4{height:64px;padding:4px 0;font-family:'NotoSansRegular';font-weight:400;font-size:21px;line-height:32px;color:#222;text-align:center;letter-spacing:-1px;}

.partner_list_wrap{width:1192px;overflow:hidden;}
.partner_list_wrap .partner_list ul{margin:0;}
.partner_list_wrap .partner_list ul li{float:left;display:inline-block;width:298px;height:148px;margin:0;padding:0;vertical-align:top;overflow:hidden;}

.partner_detailGo{position:relative;width:1184px;height:79px;margin:0 auto;background-color:#d9d9d9;overflow:hidden;}
.partner_detailGo p{position:relative;display:block;font-family:'NotoSansRegular';font-weight:400;font-size:21px;line-height:79px;color:#222;text-align:center;}
.partner_detailGo p a{display:inline-block;margin-left:20px;padding-right:20px;font-family:'NotoSansMedium';font-weight:500;line-height:22px;color:#063f97;text-decoration:underline;background-image:url("../img/icon/icon_read_more_03.png");background-repeat:no-repeat;background-position:100% 50%;}
/* //(add)20210517 */



/* (add)20210714 */
/****************************************************************************************************
ㄴ비플뉴스 Ticker
****************************************************************************************************/
.tickerNews{position:relative;width:1120px;height:78px;margin:-40px auto 0;border:1px solid #063a8b;background-color:#fff;border-radius:4px;overflow:hidden;cursor:default;}
.tickerNews_inner{position:relative;width:100%;overflow:hidden;}
.tickerNews_slide{position:relative;overflow:hidden;padding-right:76px;}
.tickerNews_slide .slick-list{position:relative;overflow:hidden;}
.tickerNews dl dt{float:left;display:inline-block;width:154px;height:78px;font-family:"NotoSansBold";font-size:24px;color:#222;line-height:78px;text-align:center;background:url("../img/bg/bg_tickerNews_line.png") no-repeat 100% 50%;}
.tickerNews dl dd{float:left;display:block;width:966px;}
.tickerNews dl dd .tickerNews_lst{width:890px;}
.tickerNews dl dd .tickerNews_lst a{display:block;height:78px;padding:0 35px;font-family:"NotoSansBold";font-size:24px;color:#222;line-height:78px;text-align:left;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
.tickerNews dl dd .tickerNews_lst a:hover{color:#184397;text-decoration:underline;}
.tickerNews dl dd .slick-arrow{position:absolute;right:25px;display:block;width:24px;height:18px;font-size:0;background:url("../img/btn/btn_tickerNews_slide_arw.png") no-repeat 0 0;z-index:222;}
.tickerNews dl dd .slick-prev{top:20px;}
.tickerNews dl dd .slick-next{bottom:20px;background-position:0 -18px;}
/* //(add)20210714 */



/* (add)20210714 */
/****************************************************************************************************
ㄴ가입문의
****************************************************************************************************/
/* survey_titWrap */
.survey_titWrap{position:relative;margin:0 0 35px;padding:0 0 75px;border-bottom:1px solid #000;}
.survey_titWrap .right{position:absolute;bottom:5px;right:0;}
.survey_titWrap .right p{padding:6px 0;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#000;line-height:normal;letter-spacing:-1px;}
.survey_titWrap em.point{display:inline-block;width:5px;height:6px;margin-right:5px;background:url(../img/bul/bul_red.png) no-repeat 0 0;vertical-align:2px;}

/* tbl_survey */
.tbl_survey{padding:0 60px;}
.tbl_survey th,
.tbl_survey td{vertical-align:middle;}
.tbl_survey th > div{min-height:44px;padding:16px 0 0;font-family:'NotoSansRegular';font-weight:400;font-size:17px;color:#000;line-height:normal;text-align:left;letter-spacing:-1px;}
.tbl_survey td > div{padding:10px 0 10px 0;font-family:'NotoSansLight';font-weight:300;font-size:17px;color:#000;line-height:17px;text-align:left;letter-spacing:-1px;}
.tbl_survey td > div input[type=text],
.tbl_survey td > div input[type=number],
.tbl_survey td > div input[type=tel],
.tbl_survey td > div input[type=email],
.tbl_survey td > div input[type=password]{height:32px;padding:3px 0 3px;margin:0;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#000;line-height:29px;border-top:1px solid transparent;border-bottom:1px solid #bec1cc;border-left:0;border-right:0;outline:none;background-color:transparent;box-sizing:border-box;}
.tbl_survey td > div select{height:32px;padding:3px 0 3px;margin:0;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#000;line-height:29px;border-top:1px solid transparent;border-bottom:1px solid #bec1cc;border-left:0;border-right:0;outline:none;background-color:transparent;box-sizing:border-box;}/* (add)20210405 */
.tbl_survey td > div textarea{padding:9px 14px;font-family:'NotoSansRegular';font-weight:400;font-size:15px;color:#000;line-height:20px;border:1px solid #bec1cc;outline:none;resize:none;overflow:auto;box-sizing:border-box;}
.tbl_survey td > div .tx_unit{font-family:'NotoSansRegular';font-weight:400;font-size:17px;color:#000;line-height:17px;text-align:left;letter-spacing:-1px;}
.tbl_survey th > div em.point{display:inline-block;width:5px;height:6px;margin-left:5px;background:url(../img/bul/bul_red.png) no-repeat 0 0;vertical-align:3px;}




/* (start)20220506 */
/* 제휴카드소개 */
.section_wrap .section.sec9_sub1 .section_inner{padding:0 0 117px;}

/* (start)20240619 */
.kebhanaCard_info_msg{display:block;width:924px;margin:0 auto 80px;padding:35px 40px;background-color:#f8f8f8;}
.kebhanaCard_info_msg .inner{text-align:left;}
.kebhanaCard_info_msg .inner ul li{position:relative;margin:10px 0 0;padding-left:16px;font-family:'NotoSansLight';font-size:18px;font-weight:300;line-height:26px;color:#000;}
.kebhanaCard_info_msg .inner > ul > li:first-child{margin-top:0;}
.kebhanaCard_info_msg .inner ul li.strong{font-family:'NotoSansMedium';color:#000;}
.kebhanaCard_info_msg .inner ul li::after{content:"";display:block;position:absolute;top:11px;left:0;width:4px;height:4px;background-color:#333;}
.kebhanaCard_info_msg .inner ul li dl dt{position:relative;padding-left:23px;}
.kebhanaCard_info_msg .inner ul li dl dt::after{content:"※";display:block;position:absolute;top:0;left:0;font-size:18px;line-height:26px;color:#333;}
.kebhanaCard_info_msg .inner ul li dl dt{}
.kebhanaCard_info_msg .inner ul li dl,
.kebhanaCard_info_msg .inner ul li dl p{display:block;margin-top:10px;font-size:18px;line-height:26px;color:#333;}
.kebhanaCard_info_msg .inner ul li dd li{position:relative;padding-left:34px;}
.kebhanaCard_info_msg .inner ul li dd li::after{content:"";display:block;position:absolute;top:12px;left:25px;width:5px;height:2px;background-color:#333;}
/* //(end)20240619 */

/* banner_wrap sub5 */
.banner_wrap.sub5{position:relative;padding:70px 0 36px;background-color:#edf0f0;}
.banner_wrap.sub5::after{content:'';position:absolute;bottom:0;left:0;right:0;height:126px;background-color:#e1e6e6;z-index:1;}
.banner_wrap.sub5 .banner_inner .banner_tit{background-color:transparent;}
.banner_wrap.sub5 .banner_inner .banner_tit > .tit_h2{margin:0 0 4px;padding:0;font-family:'NotoSansBold';font-size:44px;color:#2a65ce;font-weight:700;line-height:63px;text-align:center;white-space:nowrap;}
.banner_wrap.sub5 .banner_inner .banner_dsc{display:block;margin:0 auto;background-color:transparent;}
.banner_wrap.sub5 .banner_inner .banner_dsc > p{width:1200px;margin:0 auto;padding:2px 0 3px;font-family:'NotoSansLight';font-size:22px;color:#222;font-weight:300;line-height:36px;text-align:center;white-space:nowrap;}
.banner_wrap.sub5 .banner_im{position:relative;z-index:22;}

/* tabs_header type5 */
.tabs_wrap.type5 .tab_cnt_wrap{width:1200px;}
.tabs_header.type5{width:924px;margin:0 auto;}
.tabs_header.type5 ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:0;border-bottom:2px solid #f1f2f4;}
.tabs_header.type5 ul li{position:relative;width:33%;height:80px;margin:0;border:0;}
.tabs_header.type5 ul li:first-child{width:34%;}
.tabs_header.type5 ul li::after{content:'';position:absolute;left:0;bottom:0;right:0;height:4px;margin-bottom:-2px;background-color:#2a65ce;opacity:0;}
.tabs_header.type5 ul li.on::after,
.tabs_header.type5 ul li:hover::after{opacity:1;}
.tabs_header.type5 ul li a{display:block;height:80px;font-family:'NotoSansRegular';font-weight:400;font-size:26px;line-height:80px;color:#d1d4d9;text-align:center;}
.tabs_header.type5 ul li.on a,
.tabs_header.type5 ul li:hover a{font-family:'NotoSansBold';font-weight:700;color:#2a65ce;}

/* tabs_header type6 */
.tabs_wrap.type6 .tab_cnt_wrap{width:1200px;}
.tabs_header.type6{width:924px;margin:0 auto;}
.tabs_header.type6 ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:0;border-bottom:2px solid #f1f2f4;}
.tabs_header.type6 ul li{position:relative;width:33%;height:80px;margin:0;border:0;}
.tabs_header.type6 ul li:first-child{width:34%;}
.tabs_header.type6 ul li::after{content:'';position:absolute;left:0;bottom:0;right:0;height:4px;margin-bottom:-2px;background-color:#009591;opacity:0;}
.tabs_header.type6 ul li.on::after,
.tabs_header.type6 ul li:hover::after{opacity:1;}
.tabs_header.type6 ul li a{display:block;height:80px;text-align:center;}
.tabs_header.type6 ul li a span{font-family:'NotoSansRegular';font-weight:400;font-size:26px;line-height:80px;color:#d1d4d9;text-align:center;letter-spacing:-2px;}
.tabs_header.type6 ul li.on a span,
.tabs_header.type6 ul li:hover a span{font-family:'NotoSansBold';font-weight:700;color:#009591;}

/* bizCardServ_wrap */
.bizCardServ_wrap{width:924px;margin:0 auto;overflow:hidden;}
.bizCardServ_tit{padding:66px 0 40px;}
.bizCardServ_tit h3{padding:2px 0 0;font-family:'NotoSansRegular';font-weight:400;font-size:36px;line-height:52px;color:#333;text-align:center;letter-spacing:-1px;}

.bizCardServ_wrap.type2 .bizCardServ_grp dt{padding-bottom:13px;border-bottom:1px solid #dfe7f4;}
.bizCardServ_wrap.type2 .bizCardServ_grp h4{height:auto;margin:0;padding:4px 0 6px;font-family:'NotoSansMedium';font-weight:500;font-size:24px;line-height:32px;color:#333;text-align:center;border-radius:0;vertical-align:middle;letter-spacing:-1px;background-color:transparent;}
.bizCardServ_wrap.type2 .bizCardServ_grp h4 > span{display:inline-block;font-family:'NotoSansMedium';font-weight:500;font-size:24px;color:#009591;}
.bizCardServ_wrap.type2 .bizCardServ_grp h4::before{content:'';display:inline-block;width:6px;height:22px;margin:-5px 8px 0 0;vertical-align:middle;background-color:#009591;}

/* bizCardServ_tbl */
.bizCardServ_tbl{margin-bottom:10px;border-top:1px solid #333;border-bottom:1px solid #d1d4d9;}
.bizCardServ_tbl th,
.bizCardServ_tbl td{padding:11px 0;border-top:1px solid #e1e4e9;}
.bizCardServ_tbl tr:first-child th,
.bizCardServ_tbl tr:first-child td{border-top:0;}
.bizCardServ_tbl td{padding:10px 40px;}
.bizCardServ_tbl th{background-color:#f2f5fa;}
.bizCardServ_tbl th > div{padding:4px 0 2px;font-family:'NotoSansBold';font-weight:700;font-size:20px;line-height:32px;color:#333;letter-spacing:-1px;}
.bizCardServ_tbl td > div{padding:4px 0 2px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:32px;color:#333;letter-spacing:-1.6px;}

.bizCardServ_tbl .info ul > li{padding-left:9px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:37px;color:#333;letter-spacing:-1px;background-image:url("../img/aCard/dot_info_01.png");background-repeat:no-repeat;background-position:0 18px;}
.bizCardServ_tbl .info ul > li > p{font-family:'NotoSansRegular';font-weight:400;font-size:18px;line-height:28px;color:#717479;}
.bizCardServ_tbl .info ul > li > p:last-child{margin:0 0 5px;}

/* bizCardServ_grp_wrap */
.bizCardServ_grp_wrap{margin-bottom:10px;padding:44px 70px;border:1px solid #dfe7f4;}
.bizCardServ_grp h4{display:inline-block;height:44px;margin:0 0 20px;padding:0 20px;font-family:'NotoSansBold';font-weight:700;font-size:20px;line-height:45px;color:#fff;border-radius:44px;background-color:#2a65ce;}
.bizCardServ_grp.c_009591 h4{background-color:#009591;}
.bizCardServ_grp .indent_15{padding:0 0 0 15px;}

/* bizCardServ_tbl type2 */
.bizCardServ_tbl.type2 th{border-left:1px solid #e8e9ec;}
.bizCardServ_tbl.type2 th:first-child{border-left:0;}
.bizCardServ_tbl.type2 td{padding:10px 28px;}
.bizCardServ_tbl.type2 td:first-child{border-right:1px solid #e8e9ec;}
.bizCardServ_tbl.type2 td:last-child{border-left:1px solid #e8e9ec;}
.bizCardServ_tbl.type2 .info ul > li{padding-left:9px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:37px;color:#333;letter-spacing:-1px;background-image:url("../img/aCard/dot_info_02.png");background-repeat:no-repeat;background-position:0 16px;}
.bizCardServ_tbl.type2 .info.type2 ul > li{padding-left:9px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:37px;color:#333;letter-spacing:-1.9px;background-image:url("../img/aCard/dot_info_01.png");background-repeat:no-repeat;background-position:0 18px;}

/* bizCardServUsage */
.bizCardServUsage h5{padding:4px 0 2px;font-family:'NotoSansBold';font-weight:700;font-size:20px;line-height:32px;color:#333;}
.bizCardServUsage ol li{margin:5px 0 0;text-indent:-22px;padding:3px 0 4px 22px;font-family:'NotoSansRegular';font-weight:400;font-size:18px;line-height:28px;color:#333;letter-spacing:-1px;}
.bizCardServUsage ol li:first-child{margin:0;}
.bizCardServUsage ol li > a{display:inline-block;text-indent:-22px;padding:0 5px 0 22px;font-family:'NotoSansRegular';font-weight:400;font-size:18px;color:#2a65ce;}
.bizCardServUsage ol li > a.type2{color:#009591;}

/* bizCardServ_dsc_list */
.bizCardServ_dsc_list ul > li{padding-left:9px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:37px;color:#333;letter-spacing:-1px;background-image:url("../img/aCard/dot_info_02.png");background-repeat:no-repeat;background-position:0 16px;}

/* bizCardServ_dsc_list2 */
.bizCardServ_dsc_list2{margin-bottom:13px;}
.bizCardServ_dsc_list2 .tit h5{padding:2px 0 0;font-family:'NotoSansBold';font-weight:700;font-size:20px;line-height:36px;color:#222;letter-spacing:-1px;}
.bizCardServ_dsc_list2 .bd{padding-left:20px;}
.bizCardServ_dsc_list2 ul li{padding:2px 0 0 17px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;line-height:36px;color:#222;letter-spacing:-1px;background-image:url("../img/aCard/dot_info_03.png");background-repeat:no-repeat;background-position:0 16px;}
/*.bizCardServ_dsc_list2 .type2{margin:22px 0 0 15px;}*/
/* //(end)20220506 */

/* (start)20220518 */
/* 비즈플레이 파트너스(Renewal) */
.banner_wrap.sub6 *,
.tabs_header.type7 *,
.partner2_wrap *,
.partner2_info_wrap *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}

/* section_wrap sub_page type3 */
.section_wrap.sub_page.type3 .section .section_inner{margin-top:-68px;padding:0 0 110px;}
.section_wrap.sub_page.type3 .tabs_body_wrap{position:relative;background-color:#fff;z-index:22;}

/* (start)20230707 */
/* banner_wrap[sub6] */
.banner_wrap.sub6{height:500px;background-image:-moz-linear-gradient( 127deg, rgb(11,65,154) 0%, rgb(27,88,189) 40%,rgb(43,111,223) 100%);background-image:-webkit-linear-gradient( 127deg, rgb(11,65,154) 0%, rgb(27,88,189) 40%, rgb(43,111,223) 100%);background-image:-ms-linear-gradient( 127deg, rgb(11,65,154) 0%, rgb(27,88,189) 40%, rgb(43,111,223) 100%);}
.banner_wrap.sub6 .banner_inner{display:block;min-width:1200px;height:500px;margin:0 auto;padding:0;background-image:url("../img/partner/im_banner_sub6.png");background-repeat:no-repeat;background-position:50% 50%;}
.banner_wrap.sub6 .banner_inner .banner_tit{display:block;width:1200px;margin:0 auto;padding:115px 0 0 0;text-align:center;background-color:transparent;}
.banner_wrap.sub6 .banner_inner .banner_tit > .tit_h2{margin:20px 0 0;padding:4px 0 5px;font-family:'NotoSansBold';font-size:48px;color:#fff;font-weight:700;line-height:normal;text-align:center;white-space:nowrap;}
.banner_wrap.sub6 .banner_inner .banner_tit > span{display:inline-block;padding:0 0 4px;font-family:'NotoSansBold';font-size:18px;color:#9df0ff;font-weight:700;line-height:normal;text-align:center;}
.banner_wrap.sub6 .banner_inner .banner_dsc{display:block;width:1200px;margin:0 auto;padding:0;background-color:transparent;}
.banner_wrap.sub6 .banner_inner .banner_dsc > p{margin:10px 0 0;padding:2px 0 1px 0;font-family:'NotoSansRegular';font-size:18px;color:#fff;font-weight:400;line-height:34px;text-align:center;white-space:nowrap;}
/* //(end)20230707 */

/* partner2_wrap */
.partner2_wrap{padding:70px 0 0;}

.tabs_wrap.type7 .tab_cnt_wrap{width:1120px;padding-bottom:10px;}
/* tabs_header type7 */
.tabs_header.type7{width:1200px;margin:0 auto;}
.tabs_header.type7 ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:0 -6px;}
.tabs_header.type7 ul li{flex:1;width:33%;height:68px;margin:0 6px;border:0;border-radius:12px 12px 0 0;background-color:#819dcc;opacity:0.96;}
.tabs_header.type7 ul li:first-child{width:34%;}
.tabs_header.type7 ul li a{display:block;height:68px;text-align:center;}
.tabs_header.type7 ul li a span{display:block;font-family:'NotoSansBold';font-weight:700;font-size:22px;line-height:68px;color:#1a32d8;text-align:center;letter-spacing:-0.035em;}
.tabs_header.type7 ul li.on,
.tabs_header.type7 ul li:hover{-webkit-box-shadow:0 -15px 20px 0 rgba(9, 52, 123, 0.6);box-shadow:0 -15px 20px 0 rgba(9, 52, 123, 0.6);background-color:#fff;opacity:1;}
.tabs_header.type7 ul li.on a span,
.tabs_header.type7 ul li:hover a span{color:#1a32d8;}

/* tabs_header type8 */
.tabs_wrap.type8 .tab_cnt_wrap2{width:1120px;}
/*.tabs_header.type8{width:1120px;margin:0 auto;padding:0 0 30px;}*/
.tabs_header.type8{width:1120px;margin:38px auto 0;padding:0 0 30px;}
.tabs_header.type8:first-child{margin-top:0;}
.tabs_header.type8 ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:0 -10px;padding:10px 0;}
.tabs_header.type8 ul li{width:160px;height:56px;margin:0 10px;border:0;border-radius:56px;background-color:#e7e9ee;}
.tabs_header.type8 ul li a{display:block;height:56px;text-align:center;}
.tabs_header.type8 ul li a span{display:block;font-family:'NotoSansBold';font-weight:700;font-size:20px;line-height:56px;color:#000;text-align:center;letter-spacing:-0.035em;opacity:0.2;}
.tabs_header.type8 ul li.on,
.tabs_header.type8 ul li:hover{background-color:#1a32d8;}
.tabs_header.type8 ul li.on a span,
.tabs_header.type8 ul li:hover a span{color:#fff;opacity:1;}

/* partner2_list_wrap */
.partner2_list{margin:0;}
.partner2_list ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:0 -6px;}
.partner2_list ul li{display:inline-block;margin:0 6px 12px;border:1px solid #e4e6ea;border-radius:8px;}
.partner2_list ul li img{max-width:269px;}

/* banner101_wrap */
.banner101_wrap{width:1120px;height:128px;margin:0 auto;background-image:url("../img/partner/im_banner101.png?v=20230901");background-repeat:no-repeat;background-position:50% 50%;background-size:cover;}
.banner101_inner{position:relative;padding-top:23px;}
.banner101_wrap p{font-family:'NotoSansMedium';font-weight:500;font-size:24px;line-height:40px;color:#fff;text-align:center;letter-spacing:-0.035em;}
.banner101_wrap a{position:absolute;top:36px;right:60px;display:inline-block;height:56px;padding:0 55px 0 29px;border-radius:56px;-webkit-box-shadow:0 10px 10px 0 rgba(11, 65, 154, 0.2);-moz-box-shadow:0 10px 10px 0 rgba(11, 65, 154, 0.2);box-shadow:0 10px 10px 0 rgba(11, 65, 154, 0.2);background-image:url("../img/partner/ic_bt_more.png");background-repeat:no-repeat;background-position:100% 50%;background-color:#fff;}
.banner101_wrap a > span{display:block;font-family:'NotoSansBold';font-weight:700;font-size:20px;line-height:57px;color:#1a32d8;text-align:center;letter-spacing:-0.035em;}

/* partner2_info_wrap */
.partner2_info_wrap{padding:90px 0 0;}

/*.partner2_info_wrap > .partner2_info_grp{margin:0 0 110px;}*/
.partner2_info_wrap > .partner2_info_grp{margin:0 0 30px;}
/*.partner2_info_title{margin:90px 0 0;}*/
.partner2_info_title{margin:0;}
.partner2_info_title .tit_wrap h3{padding:0 0 2px;font-family:'NotoSansRegular';font-weight:400;font-size:40px;line-height:54px;color:#1a32d8;letter-spacing:-0.025em;}
.partner2_info_title .tit_wrap h3 > strong{position:relative;display:inline-block;font-family:'NotoSansBold';font-weight:700;font-size:40px;color:#1a32d8;z-index:22;}
.partner2_info_title .tit_wrap h3 > strong::after{content:'';position:absolute;bottom:2px;left:0;right:0;height:12px;background-color:#d8f9ff;z-index:-1;}
.partner2_info_title .desc p{margin-top:16px;padding:1px 0 2px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;color:#868a8e;line-height:36px;}
.partner2_info_grp .tit_wrap h4{padding:0 0 1px;font-family:'NotoSansBold';font-weight:700;font-size:24px;line-height:41px;color:#1a32d8;letter-spacing:-0.025em;}

/* affScope_list */
.affScope_list{margin:26px 0 0;}
.affScope_list ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:center;align-items:flex-start;}
.affScope_list ul li{flex:1;text-align:center;}
.affScope_list dl dt p img{border-radius:80px;-webkit-box-shadow:0 12px 48px 0 rgba(43, 111, 223, 0.12);box-shadow:0 12px 48px 0 rgba(43, 111, 223, 0.12);}
.affScope_list dl dd{margin:28px 0 0;}
.affScope_list dl dd h4{padding:1px 0 3px;font-family:'NotoSansBold';font-weight:700;font-size:22px;line-height:normal;color:#222;letter-spacing:-0.025em;}
.affScope_list dl dd p{margin:0;padding:4px 0 5px;font-family:'NotoSansRegular';font-weight:400;font-size:18px;line-height:28px;color:#868a8e;letter-spacing:-0.035em;}

/* banner201_wrap */
.banner201_wrap{width:1120px;height:128px;margin:0 auto;background-image:url("../img/partner/im_banner201.png");background-repeat:no-repeat;background-position:50% 50%;background-size:cover;}
.banner201_inner{position:relative;padding-top:23px;}
.banner201_inner p{font-family:'NotoSansMedium';font-weight:500;font-size:24px;line-height:40px;color:#fff;text-align:center;letter-spacing:-0.035em;}

/* ben_list */
.ben_list{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:center;align-items:flex-start;}
.ben_item{position:relative;width:560px;margin:70px 0 0;}
.ben_item:last-child{padding-left:60px;border-left:1px solid #ebebeb;}
.ben_item dl dd{display:inline-block;margin:42px 0 0;}
.ben_item dl dd h5{padding:0 0 1px;font-family:'NotoSansBold';font-weight:700;font-size:22px;line-height:32px;color:#222;letter-spacing:-0.025em;}
.ben_item dl dd p{margin:0;padding:4px 0 5px;font-family:'NotoSansRegular';font-weight:400;font-size:18px;line-height:28px;color:#868a8e;letter-spacing:-0.035em;}
.ben_item .right{position:absolute;top:3px;right:80px;}
.ben_item .right p > img{vertical-align:middle;}
.ben_item .right p > em{display:inline-block;margin-left:10px;padding:3px 0 8px;/*font-family:'NotoSansMedium';*/font-family:'GmarketSansMedium';font-weight:700;font-size:48px;line-height:56px;color:#1a32d8;vertical-align:middle;letter-spacing:-0.035em;}

/* affCase_list */
.affCase_list{padding-bottom:10px;}
.affCase_list ul{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:flex-start;margin:0 -10px;}
.affCase_list ul li{width:360px;margin:0 10px;text-align:center;border-radius:12px;-webkit-box-shadow:0 12px 30px 0 rgba(43, 111, 223, 0.12);box-shadow:0 12px 30px 0 rgba(43, 111, 223, 0.12);background-color:#fff;}
.affCase_list dl dt p img{border-radius:12px 12px 0 0;}
.affCase_list dl dd{padding:25px 0 32px;}
.affCase_list dl dd h5{padding:0 0 1px;font-family:'NotoSansBold';font-weight:700;font-size:22px;line-height:normal;color:#222;letter-spacing:-0.025em;}
.affCase_list dl dd p{margin:7px 0 0;font-family:'NotoSansRegular';font-weight:400;font-size:18px;line-height:28px;color:#868a8e;letter-spacing:-0.035em;}

/* partner2_info_grp */
/*.partner2_info_grp{margin:75px 0 0;}*/
.partner2_info_grp{margin:0;padding:70px 0 0;}
.partner2_info_grp .tit_wrap.bd{position:relative;padding:0 0 14px;border-bottom:1px solid #ebebeb;}
.partner2_info_grp .tit_wrap .right{position:absolute;top:12px;right:0;}
.partner2_info_grp .tit_wrap .right p{padding:0 0 1px;font-family:'NotoSansRegular';font-weight:400;font-size:16px;line-height:23px;color:#868a8e;}
.partner2_info_grp .tit_wrap .right p > .point{display:inline-block;margin:7px 0 0;width:8px;height:7px;font-size:0;line-height:0;vertical-align:top;background-image:url("../img/partner/ic_point.png");background-repeat:no-repeat;background-position:0 0;}

/* tbl_partner2 */
.tbl_partner2 th{padding:10px 0;vertical-align:middle;}
.tbl_partner2 th > div{min-height:48px;font-family:'NotoSansBold';font-weight:700;font-size:20px;line-height:48px;color:#222;text-align:left;}
.tbl_partner2 th > div .point{display:inline-block;margin:15px 0 0;vertical-align:top;width:8px;height:7px;font-size:0;line-height:0;background-image:url("../img/partner/ic_point.png");background-repeat:no-repeat;background-position:50%;}
.tbl_partner2 td{padding:10px 0;}
.tbl_partner2 select{position:relative;padding:0 0 0 20px;height:48px;font-family:'NotoSansRegular';font-weight:400;font-size:18px;line-height:normal;color:#222;border:1px solid #e4e6ea;background-color:#fff;border-radius:6px;box-sizing:border-box;background-image:url("../img/partner/ic_selct_down.png");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-repeat:no-repeat;background-position:100% 50%;}
.tbl_partner2 select:focus{border-color:#1a32d8;outline:0;background-image:url("../img/partner/ic_selct_up.png");background-repeat:no-repeat;background-position:100% 50%;}
.tbl_partner2 select::-ms-expand{display:none;}
.tbl_partner2 input[type=text]{width:100%;padding:0 20px;height:48px;font-family:'NotoSansRegular';font-weight:400;font-size:18px;color:#222;line-height:48px;border:1px solid #e5e7eb;border-radius:6px;box-sizing:border-box;background-color:#fff;}
.tbl_partner2 input:focus{border-color:#1a32d8;outline:0;}
.tbl_partner2 textarea{width:100%;padding:7px 20px 0;height:174px;font-family:'NotoSansRegular';font-weight:400;font-size:18px;line-height:32px;color:#222;border:1px solid #e4e6ea;border-radius:6px;box-sizing:border-box;text-align:left;resize:none;overflow:hidden;}
.tbl_partner2 textarea:focus{border-color:#1a32d8;outline:0;}

/* placeholder */
.tbl_partner2 input::-webkit-input-placeholder{color:#e4e6ea;}
.tbl_partner2 input::-moz-placeholder{color:#e4e6ea;}
.tbl_partner2 input:-ms-input-placeholder{color:#e4e6ea;}
.tbl_partner2 input:-moz-placeholder{color:#e4e6ea;}

/*	.tab_cnt_wrap .tbl_partner2 select:required:invalid{color:#e4e6ea;}*/
.tbl_partner2 textarea::-webkit-input-placeholder{color:#e4e6ea;}
.tbl_partner2 textarea::-moz-placeholder{color:#e4e6ea;}
.tbl_partner2 textarea:-ms-input-placeholder{color:#e4e6ea;}
.tbl_partner2 textarea:-moz-placeholder{color:#e4e6ea;}

/* partner2_agree_grp */
.partner2_agree_list{padding:15px 30px 15px;border-radius:6px;background-color:#f7f7f9;}
.partner2_agree_grp dl dt{padding:1px 0;font-family:'NotoSansRegular';font-weight:400;font-size:18px;line-height:normal;color:#222;}
.partner2_agree_grp ol{margin:5px 0 0;}
.partner2_agree_grp ol li{font-family:'NotoSansRegular';font-weight:400;font-size:17px;line-height:28px;color:#868a8e;}

/* partner2_agree_check */
.partner2_agree_check label{position:relative;display:inline-block;padding-left:40px;vertical-align:middle;}
.partner2_agree_check input[type=checkbox]{position:absolute;top:7px;left:0;height:24px;width:24px;vertical-align:middle;cursor:pointer;-webkit-appearance:none;outline-style:none;border-radius:none;opacity:0;z-index:2;}
.partner2_agree_check input[type=checkbox] + i{position:absolute;top:7px;left:0;width:24px;height:24px;background:url("../img/partner/ic_chck.png");background-repeat:no-repeat;background-position:0 0;}
.partner2_agree_check input[type=checkbox]:checked + i{background-position:0 -24px;}
.partner2_agree_check span{display:inline-block;padding:1px 0 0;font-family:'NotoSansRegular';font-weight:400;font-size:18px;line-height:36px;color:#222;vertical-align:middle;}
.partner2_agree_check span > em{display:inline-block;font-family:'NotoSansRegular';font-weight:400;font-size:18px;color:#ff3737;}

/* ㄴtype4 */
.quick_menu.type4{position:fixed;right:15px;bottom:inherit;width:auto;margin-top:0;z-index:888;box-sizing:border-box;}
.quick_menu.type4 ul li{margin:12px 0 0;}
.quick_menu.type4 ul li a{display:block;min-width:104px;width:104px;min-height:25px;padding:60px 0 0;border-radius:8px;background-color:#1659c9;}
.quick_menu.type4 ul li a{background-repeat:no-repeat;}
.quick_menu.type4 ul li a{box-shadow:inset 0 -4px 10px 1px rgba(11, 65, 154, 0.4), inset 0 4px 10px 1px rgba(255,255,255,0.3), 0 8px 24px rgba(11,65,154,0.4);}
.quick_menu.type4 ul li a > span{display:block;margin:0;padding:0;font-family:'NotoSansRegular';font-weight:400;font-size:14px;line-height:17px;color:#fff;letter-spacing:-0.025em;}
.quick_menu.type4 ul li a.btn_partnership{background-image:url("../img/partner/bt_partnership.png");background-position:0 16px;}
.quick_menu.type4 ul li a.btn_partnerWhitePaper{background-image:url("../img/partner/bt_partnerWhitePaper.png");background-position:0 16px;}
.quick_menu.type4 ul li a.btn_partnership:hover{background-position:-104px 16px;}
.quick_menu.type4 ul li a.btn_partnership:hover span{color:#9df0ff !important;}
.quick_menu.type4 ul li a.btn_partnerWhitePaper:hover{background-position:-104px 16px;}
.quick_menu.type4 ul li a.btn_partnerWhitePaper:hover span{color:#9df0ff !important;}

/* btn */
.btn_blue3{display:inline-block;width:324px;height:72px;font-family:"NotoSansBold";font-weight:700;font-size:24px;color:#fff !important;text-align:center;line-height:72px;border-radius:72px;background-color:#09347b;}
.btn_blue3.disable{cursor:pointer;background-color:#e7e9ee;}
.btn_blue4{display:inline-block;width:160px;height:56px;font-family:"NotoSansBold";font-weight:700;font-size:20px;color:#fff !important;text-align:center;line-height:56px;border-radius:56px;background-color:#1a32d8;}

/* modal */
.modal.type3{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:none;z-index:2000;box-sizing:border-box;}
.modal.type3 .modal_inner{box-sizing:border-box;width:520px;height:296px;padding:42px 0 0;border-radius:12px;-webkit-box-shadow:0 12px 40px 0 rgba(11, 65, 154, 0.36);box-shadow:0 12px 40px 0 rgba(11, 65, 154, 0.36);background-color:#fff;}
.modal.type3 .msg_bx{text-align:center;}
.modal.type3 .msg_bx strong{display:inline-block;padding:2px 0 1px;font-family:'NotoSansRegular';font-weight:400;font-size:36px;color:#1a32d8;line-height:normal;}
.modal.type3 .msg_bx p{margin:3px 0 0;padding:5px 0 3px;font-family:'NotoSansRegular';font-weight:400;font-size:20px;color:#868a8e;line-height:30px;}

.js_animated1{opacity:0;animation-delay:0.1s;-webkit-animation-delay:0.1s;-moz-animation-delay:0.1s;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both;}
.fadeInUp2{animation-name:fadeInUp2;-webkit-animation-name:fadeInUp2;}
@keyframes fadeInUp2{
	from{opacity:0;-webkit-transform:translate3d(0,80px,0);transform:translate3d(0,80px,0);}
	to{opacity:1;-webkit-transform:translate3d(0,0,0);-webkit-font-smoothing:antialiased;transform:translate3d(0,0,0);}
}
/* //(end)20220518 */

/* (start)20220531 */
/* ㄴtype5 */
.quick_menu.type5{position:fixed;left:50%;transform:translate(-50%,0);bottom:inherit;width:360px;margin-top:0;z-index:888;box-sizing:border-box;}
.quick_menu.type5 ul li a{display:block;min-width:360px;width:360px;height:80px;padding:0;text-align:center;border-radius:12px;background-color:#1659c9;}
.quick_menu.type5 ul li a{box-shadow:inset 0 -4px 10px 1px rgb(11 65 154 / 40%),inset 0 4px 10px 1px rgb(255 255 255 / 30%), 0 8px 24px rgb(11 65 154 / 40%);}
.quick_menu.type5 ul li a > span{display:inline-block;margin:0;padding:0;font-family:'NotoSansBold';font-weight:700;font-size:26px;line-height:80px;color:#fff;letter-spacing:-0.025em;}
.quick_menu.type5 ul li .btn_affiliate_offer > span::after{content:'';display:inline-block;width:12px;height:20px;margin:0 0 0 15px;background:url("../img/partner/ic_bt_arrow_05.png");background-repeat:no-repeat;background-position:0 0;}
.quick_menu.type5 ul li:hover .btn_affiliate_offer > span{color:#9df0ff;}
.quick_menu.type5 ul li:hover .btn_affiliate_offer > span::after{background-position:0 -20px;}
/* //(end)20220531 */

/* (start)20220714 */
/* 소개자료 신청페이지 */
/* title_sub5 */
.sub5_tit_wrap{padding-top:70px;}
.sub5_tit_wrap .sub5_tit_inner{display:block;max-width:980px;margin:0 auto;text-align:center;}
.sub5_tit_wrap .sub5_tit_inner .sec_tit > .tit_h3{padding:0 0 2px;font-family:'NotoSansMedium';font-size:36px;font-weight:500;color:#1a32d8;line-height:51px;}
.sub5_tit_wrap .sub5_tit_inner .sec_dsc > p{padding:2px 0 3px;font-family:'NotoSansLight';font-size:18px;font-weight:300;color:#222;line-height:normal;}

/* app_introduction */
.app_introduction{display:block;max-width:980px;margin:0 auto;padding:30px 0 120px;}
.app_introduction .right{text-align:right;}
.app_introduction .right p{display:inline-block;padding:0 0 1px;font-family:'NotoSansRegular';font-size:15px;font-weight:400;color:#585e66;line-height:normal;}
.app_introduction .right p > .point{display:inline-block;width:7px;height:7px;margin:6px 5px 0 0;vertical-align:top;background:url("../img/bul/bul_bluePoint.png");background-repeat:no-repeat;background-position:0 0;}

/* frm_control_grp */
.frm_control_grp{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row wrap;justify-content:flex-start;align-items:center;margin:0;padding:16px 24px 40px;box-sizing:border-box;border-radius:6px;-webkit-box-shadow:0 8px 56px 0 rgba(0, 77, 204, 0.16);box-shadow:0 8px 56px 0 rgba(0, 77, 204, 0.16);background-color:#fff;}

.frm_control2{width:50%;padding:14px 24px 0;box-sizing:border-box;}

.frm_control2 label{display:inline-block;padding:0 0 1px;font-family:'NotoSansMedium';font-size:17px;font-weight:500;color:#222;line-height:34px;}
.frm_control2 label > .point{display:inline-block;width:7px;height:7px;margin:10px 0 0 5px;vertical-align:top;background:url("../img/bul/bul_bluePoint.png");background-repeat:no-repeat;background-position:100% 0;}
.frm_control2 input{padding:0 18px;width:100%;height:44px;font-family:'NotoSansRegular';font-size:16px;font-weight:400;line-height:inherit;color:#585e66;border:1px solid #f5f7fc;border-radius:4px;box-sizing:border-box;background-color:#f5f7fc;}
.frm_control2 input[type=text]:focus{border:1px solid #0066ff;outline:none;}
.frm_control2 input::placeholder{color:rgba(88,94,102,.4) !important;}

.frm_control2 select{display:block;width:100%;height:44px;padding:0 18px;font-family:'NotoSansRegular';font-size:16px;font-weight:400;line-height:inherit;color:rgba(88,94,102,1);border:1px solid #f5f7fc;border-radius:4px;box-sizing:border-box;appearance:none;background-image:url("../img/icon/ic_select_down.png");background-repeat:no-repeat;background-position:100% 50%;background-color:#f5f7fc;}
.frm_control2 select:focus{border:1px solid #0066ff;outline:none;background-image:url("../img/icon/ic_select_up.png");}
.frm_control2 select::-ms-expand{display:none;}
.frm_control2 option{color:rgba(88,94,102,1);}

/* frm_grp */
.frm_grp{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;flex-flow:row nowrap;justify-content:space-between;align-items:center;margin:60px 0 0;}
.frm_grp .agr_head{position:relative;display:block;width:100%;padding:0 0 0 40px;}
.frm_grp .agr_head input[type=checkbox]{position:absolute;top:50%;transform:translate(0,-50%);left:0;width:24px;height:24px;padding:0;vertical-align:middle;border:none;outline:none;cursor:pointer;opacity:0;z-index:2;}
.frm_grp .agr_head input[type=checkbox] + i{display:block;position:absolute;top:50%;transform:translate(0,-50%);left:0;width:24px;height:24px;border-radius:1px;background-image:url("../img/icon/ic_checkbox.png");background-repeat:no-repeat;background-position:0 0;background-size:24px auto;z-index:1;}
.frm_grp .agr_head input[type=checkbox]:checked + i{border-radius:1px;background-position:0 -24px;}
.frm_grp .agr_head a{display:inline-block;padding:1px 0 1px;font-family:'NotoSansMedium';font-size:17px;font-weight:400;line-height:22px;color:#222;vertical-align:middle;}
.frm_grp .agr_head span{display:inline-block;font-family:'NotoSansMedium';font-size:17px;font-weight:500;line-height:22px;color:#0066ff;}

.frm_grp p{display:block;margin:0;padding:0 0 1px;font-family:'NotoSansRegular';font-size:13px;font-weight:400;line-height:19px;color:#585e66;}/* (add)20230808 */
.frm_grp .usage_agr{display:block;width:100%;padding:15px 24px;border:1px solid #e5ebf3;border-radius:6px;}
.frm_grp .usage_agr dt{margin:0;padding:1px 0;font-family:'NotoSansRegular';font-size:15px;font-weight:400;line-height:23px;color:#222;}
.frm_grp .usage_agr ol li{position:relative;margin:4px 0 0 80px;font-family:'NotoSansRegular';font-size:14px;font-weight:400;line-height:23px;color:#585e66;}
.frm_grp .usage_agr ol li > strong{position:absolute;display:block;top:0;left:-80px;width:76px;font-family:'NotoSansRegular';font-size:14px;font-weight:400;line-height:23px;color:#585e66;}
.frm_grp .usage_agr ol li > strong::before{content:':';display:block;position:absolute;top:0;right:0;font-family:'NotoSansRegular';font-size:14px;font-weight:400;line-height:23px;color:#585e66;}
/* (start)20250214 */
.frm_grp .usage_agr ol li.strong > strong{font-family:'NotoSansBold';font-weight:700;}
.frm_grp .usage_agr ol li.strong{font-family:'NotoSansBold';font-weight:700;}
/* //(end)20250214 */

.app_introduction .btn_wrap{}
.app_introduction .btn_wrap a{display:inline-block;width:248px;height:60px;ont-family:'NotoSansBold';font-size:22px;font-weight:700;line-height:60px;color:#fff;text-align:center;border-radius:6px;background-color:#1a32d8;}
.app_introduction .btn_wrap a.disable{background-color:#e2e4e9;}
/* //(end)20220714 */

/* (start)20230109 */
.partner_wrap.type3{padding:120px 0 107px;}
.partner_wrap.type3 .partner_inner{width:1200px;}
.partner_wrap.type3 .slider1.type3{width:1200px;height:324px;margin:0 auto 73px;}/* (modify)20230705 */
.partner_wrap.type3 .slider1.type3 .slider_container .slick-list{width:972px;}
.partner_wrap.type3 .magaLst{}
.partner_wrap.type3 .magaLst > li{width:280px;height:280px;margin:22px;border-radius:20px;box-shadow:0 8px 10px 0 rgba(0, 0, 0, 0.05);background-color:rgba(225, 225, 225,1);}
/*.partner_wrap.type3 .magaLst > li:first-child{margin-left:0;}*/
.partner_wrap.type3 .magaLst > li a{display:block;width:280px;height:280px;border-radius:20px;overflow:hidden;}
.partner_wrap.type3 .magaLst > li a img{width:100%;height:100%;line-height:0;border:none;}

.partner_wrap.type3 .slider1.type3 .slick-prev{left:10px;width:68px;height:68px;box-shadow:none;background-image:url("../img/btn/btn_prev_bizmag_main.png");}
.partner_wrap.type3 .slider1.type3 .slick-next{right:10px;width:68px;height:68px;box-shadow:none;background-image:url("../img/btn/btn_next_bizmag_main.png");}
.partner_wrap.type3 .slider1.type3 .slick-prev,
.partner_wrap.type3 .slider1.type3 .slick-next{margin-top:-34px;}

.parter_service{margin:0 auto;padding:17px 0 0;}/* (modify)20230705 */
.parter_service .parter_service_inn dl{display:flex;justify-content:center;align-items:center;}
.parter_service .parter_service_inn dl dt h4{font-family:'NotoSansBold';font-weight:700;font-size:36px;letter-spacing:-2px;}
.parter_service .parter_service_inn dl dd ul{display:flex;justify-content:flex-start;padding:0 0 0 78px;align-items:center;}
.parter_service .parter_service_inn dl dd ul li a{display:block;min-width:116px;margin:0 0 0 55px;text-align:center;}
.parter_service .parter_service_inn dl dd ul li a h5{margin:10px 0 0;padding:0 0 1px;font-family:'NotoSansBold';font-weight:700;font-size:18px;color:#1f1f1f;line-height:26px;}
.parter_service .parter_service_inn dl dd ul li a:hover h5{color:#286bfb;}
.parter_service .parter_service_inn span.ic_sevice{display:block;height:38px;padding:5px 0;background-image:url("../img/icon/ic_sevice_sp.png");background-repeat:no-repeat;text-align:center;}
.parter_service .parter_service_inn a span.ic_sevice.ic_01{background-position:50% 0;}
.parter_service .parter_service_inn a span.ic_sevice.ic_02{background-position:50% -48px;}
.parter_service .parter_service_inn a span.ic_sevice.ic_03{background-position:50% -96px;}
.parter_service .parter_service_inn a span.ic_sevice.ic_04{background-position:50% -144px;}
.parter_service .parter_service_inn a:hover span.ic_sevice.ic_01{background-position:50% -192px;}
.parter_service .parter_service_inn a:hover span.ic_sevice.ic_02{background-position:50% -240px;}
.parter_service .parter_service_inn a:hover span.ic_sevice.ic_03{background-position:50% -288px;}
.parter_service .parter_service_inn a:hover span.ic_sevice.ic_04{background-position:50% -336px;}
/* //(end)20230109 */





/* (start)20230808 */
/****************************************************************************************************
ㄴ출장관리 소개페이지
****************************************************************************************************/
.quick_menu.type4{position:fixed;top:50%;right:19px;bottom:inherit;width:96px;height:244px;margin-top:-122px;z-index:10000;box-sizing:border-box;}
.quick_menu.type4{border-radius:96px;background-color:#fff;box-shadow:0 0 20px rgba(40,107,251,0.2);}
.quick_menu.type4 > img{border-radius:96px;overflow:hidden;}

.businessTrip{}

.businessTrip .serProDes_header{height:200px;}
.businessTrip .serProDes_tit{padding:52px 0 0;}
.businessTrip .serProDes_tit .serProDes_h2{margin:0;padding:0 0 3px;font-size:40px;line-height:49px;}
.businessTrip .serProDes_dsc > p{margin:9px 0 0 0;}
.businessTrip .imSPD1220{background-image:url(../img/businessTrip/businessTrip_topBg.png);}/* 출장관리 */

.businessTrip .bus_trips{position:relative;min-height:248px;padding:370px 0 0;background-image:url("../img/businessTrip/businessTrip_topSection1.png");background-repeat:no-repeat;background-position:center;background-size:cover;}
.businessTrip .bus_trips ol{display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;gap:10px;}
.businessTrip .bus_trips li{display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;flex:0 0 330px;min-height:172px;padding:0;background-color:#fff;border-radius:12px;box-shadow:0 10px 30px 0 rgba(34, 34, 34, 0.15);box-sizing:border-box;}
.businessTrip .bus_trips dt{text-align:center;}
.businessTrip .bus_trips dt strong{padding:0 0 3px;font-family:'NotoSansBlack';font-size:24px;font-weight:900;color:#000;line-height:normal;text-align:center;}
.businessTrip .bus_trips dd{margin:4px 0 0;text-align:center;}
.businessTrip .bus_trips dd span{padding:1px 0 0;font-family:'NotoSansRegular';font-size:24px;font-weight:400;color:#222;line-height:32px;text-align:center;}
.businessTrip .bus_trips dd p{font-family:'NotoSansBold';font-size:24px;font-weight:700;color:#ff492b;text-align:center;}

.businessTrip .all_Inoneservice{min-height:400px;padding:560px 0 120px;background-color:#f3f3f3;background-image:url("../img/businessTrip/businessTrip_topSection2.png");background-repeat:no-repeat;background-position:0 100px;background-size:auto;}
.businessTrip .all_Inoneservice .tit_wrap{margin:45px 0 0;}
.businessTrip .all_Inoneservice .tit_h3{padding:0 0 1px;font-family:'NotoSansBlack';font-size:40px;font-weight:900;color:#ff492b;line-height:normal;text-align:center;}
.businessTrip .all_Inoneservice .tit_h3 + div{margin:21px 0 0;}
.businessTrip .all_Inoneservice .tit_h3 + div{padding:0 0 2px;font-family:'NotoSansMedium';font-size:24px;font-weight:500;color:#222;line-height:36px;text-align:center;}
.businessTrip .all_Inoneservice .serv_lst{margin:53px 0 0;}
.businessTrip .all_Inoneservice ul{display:flex;flex-flow:row nowrap;justify-content:center;align-items:center;gap:20px;}
.businessTrip .all_Inoneservice li{display:flex;justify-content:center;align-items:flex-start;flex:0 0 184px;min-height:194px;padding-top:42px;background-color:#fff;border-radius:12px;}
.businessTrip .all_Inoneservice dt{height:95px;text-align:center;}
.businessTrip .all_Inoneservice dd{margin:15px 0 0;padding:0 0 1px;font-family:'NotoSansMedium';font-size:18px;font-weight:500;color:#222;line-height:24px;text-align:center;}

.businessTrip .TransList{width:1200px;padding:0;}
.businessTrip .TransList .TransList_text{width:600px;padding:0;}
.businessTrip .TransList_text .bandage{width:80px;height:30px;font-family:'NotoSansBold';font-size:18px;line-height:30px;background-color:#222;border-radius:30px;}
.businessTrip .TransList_text h3.TransList_h3{margin:26px 0 20px;padding:3px 0 5px;font-family:'NotoSansBold';font-weight:700;}
.businessTrip .TransList_text .TransList_li ul > li{margin:0;padding:3px 0 4px;font-family:'NotoSansRegular';font-weight:400;font-size:18px;color:#222;line-height:30px;background-image:none;}

.banner301_wrap{display:flex;flex-flow:column wrap;justify-content:center;align-items:center;width:1200px;height:250px;margin:0;text-align:center;background-image:url("../img/businessTrip/businessTrip_bannerBg.png");background-repeat:no-repeat;background-position:50% 50%;background-size:cover;}
	.banner301_inner{}
	.banner301_inner p{padding:2px 0 5px;font-family:'NotoSansMedium';font-weight:500;font-size:40px;line-height:50px;color:#fff;text-align:center;letter-spacing:-0.035em;}
	.banner301_inner a{position:relative;display:inline-block;height:60px;margin:16px auto 0;padding:0 70px 0 48px;border-radius:60px;background-color:#fff;background-image:url("../img/businessTrip/businessTrip_bannerBt_more.png");background-repeat:no-repeat;background-position:calc(100% - 46px) 50%;}
	.banner301_inner a span{font-family:'NotoSansMedium';font-size:25px;font-weight:500;color:#222;line-height:60px;}
/* //(end)20230808 */
