/* sitecon */
.sitecon .dashed {
    height: 13px;
    width: 2px;
    background-color: rgba(255,255,255,.5);
    transform: skew(15deg);
    margin: 0 10px;
    display: inline-block;
}
/* subTop */
#subTop {
    position: relative;
    max-width: 1860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
#subTop .subTopBg {
    border-radius: 30px;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
}
#subTop .subtabs {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    border-radius: 40px 0 0 0;
    background-color: #fff;
    z-index: 5;
}
@media (min-width:767px) {
    #subTop .subtabs::before {
        position: absolute;
        content: "";
        width: 40px;
        height: 40px;
        left: 0;
        bottom: 0;
        transform: translate3d(-100%, 0%, 0);
        background: url(../img/stop_deco1.png) center center no-repeat;
    }
    #subTop .subtabs::after {
        position: absolute;
        content: "";
        width: 40px;
        height: 40px;
        left: 100%;
        top: 0;
        transform: translate3d(-100%, -100%, 0);
        background: url(../img/stop_deco1.png) center center no-repeat;
    }
}
@media (max-width:768px) {
    #subTop {
        display: block;
    }
    #subTop .subTopBg {
        height: 200px;
        border-radius: 0px;
    }
    #subTop .subtabs {
        width: 100%;
        border-radius: 0 0 0 0;
        position: relative;
        margin-top: 10px;
    }
}

/* site_config */
#site_config {
    position: relative;
    z-index: 30;
    display: inline-block;
    border-radius: 100px;
}
#site_config .site .home {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .slashed {
    width: 2px;
    vertical-align: middle;
    background-color: #c2c2c2;
    display: inline-block;
    height: 16px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    /* transform: skewX(-15deg); */
    vertical-align: middle;
    margin: 0 5px;
}
#site_config .site .home.home2,
#site_config .site .home.home3 {
    position: relative;
}
#site_config .site .home.act:before {
    content: "";
    position:absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-bottom: 0px;
}
#site_config .site .home .site_toggle i {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home.act .site_toggle i {
    transform: rotate(180deg);
}
#site_config .site .home.home1 {
    text-align: center;
}
#site_config .site .home > span {
    display: inline-block;
    line-height: 1em;
    padding: 0px 10px;
    cursor: pointer;
    position: relative;
    z-index: 3;
    color: #999;
}
#site_config .site .home.home3 > span {
    color: #333;
    font-weight: 800;
}
#site_config .site .home > ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    border-top: 0px;
    padding: 12px 8px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: translateY(10px);
}
#site_config .site .home > ul li a {
    display: block;
    text-decoration: none;
    font-size: 17px;
    line-height: 1em;
    padding: 10px;
    color: #666;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#site_config .site .home > ul li a.act {
    color: #333;
}
#site_config .site .home > ul li a:hover{
    color: #111;
    text-decoration: underline;
    font-weight: 700;
}
#site_config .site .home > ul li:hover a:after {
    width: 100%;
    left: 0%;
}
@media (max-width:992px) {
    #site_config .site .home {
        line-height: 50px;
        font-size: 15px;
    }
}
@media (max-width:768px) {
    #site_config .site .home {
        line-height: 40px;
        font-size: 12px;
    }
    #site_config .site .home.home2:after,
    #site_config .site .home.home3:after {
        right: 10px;
        width: 10px;
        background-size: 100%;
    }
    #site_config .site .home > span {
        padding: 0px 5px;
    }
}

/* subtabs */
.subtabs ul {
    display: flex;
    gap: 2.5vw;
    padding: 20px 40px;
}
.subtabs ul a {
    font-size: 18px;
    text-decoration: none;
    display: block;
    color: #aaa;
    padding: 0 0 10px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transform: translateY(1px);
}
.subtabs ul a.act {
    color: #1fa846;
    border-color: #1fa846;
    font-weight: 700;
}
@media (max-width:768px){
    .subtabs {
        border-bottom: 0px;
    }
    .subtabs ul {
        gap: 20px;
        row-gap: 5px;
        flex-wrap: wrap;
        padding: 10px 0px;
        justify-content: center;
    }
    .subtabs ul a {
        font-size: 15px;
        padding: 4px 0;
    }
}


/* com1_bg */
.com1_bg {
    background: url(../img/com1_bg.jpg) center center no-repeat;
    height: 400px;
}
@media (min-width:991px){
    .com1_bg {
        background-attachment: fixed;
    }
}
@media (max-width:768px) {
    .com1_bg {
        height: 200px;
        background-size: cover !important;
    }
}

/* company1 */
#company1 .sec1 .dft .lg {
    font-size: 1.4em;
}

/* memItem */
.memItem .memTit {
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}
@media (max-width:768px) {
    .memItem {
        margin-bottom: 20px;
        padding: 20px 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
    }
    .memItem .memTit {
        padding: 15px 0;
        margin-bottom: 15px;
    }
}


/* mapbox */
.mapbox .cont {
    display: none !important;
}
.mapbox .root_daum_roughmap {
	border: 0px !important;
	padding: 0px !important;
}
.mapbox .root_daum_roughmap .map_border {
    opacity: 0;
}
.mapbox .root_daum_roughmap .wrap_map,
.mapbox iframe {
    height: 500px !important;
}
@media (max-width:768px) {
	.mapbox .root_daum_roughmap .wrap_map,
	.mapbox iframe {
		height: 250px !important;
	}
}

/* comInfos */
.comInfos .ifItem {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.comInfos .ifItem .cc {
    display: flex;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f7f7f7;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #111;
}
@media (max-width:768px) {
    .comInfos .ifItem {
        border-radius: 10px;
        padding: 20px;
    }
    .comInfos .ifItem .cc {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* table_loc */
.table_loc {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.table.table_loc tr th,
.table.table_loc tr td {
    vertical-align: middle;
    padding: 30px 20px;
}
.table.table_loc tr th {
    border-left: 0px;
    text-align: center;
}
.table.table_loc tr td {
    border-right: 0px;
    border-left: 1px solid #ddd;
}
.table.table_loc .methWrp {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.table.table_loc .dvd {
    display: inline-block;
    margin: 0 5px;
    height: 12px;
    width: 1px;
    background-color: #ddd;
}
.table.table_loc .meth,
.table.table_loc .meth > strong {
    display: flex;
    align-items: center;
    gap: 4px;
}
.table.table_loc .meth strong {
    color: #1324a7;
}
.table.table_loc .meth .n {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #1324a7;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: .7em;
}
.table.table_loc .meth.meth2 strong {
    color: #5f6c21;
}
.table.table_loc .meth.meth2 .n {
    background-color: #5f6c21;
    color: #fff;
}
.table.table_loc .meth.meth3 strong {
    color: #1fa846;
}
.table.table_loc .meth.meth3 .n {
    background-color: #1fa846;
    color: #fff;
}
@media (max-width:768px) {
    .table.table_loc tr th,
    .table.table_loc tr td {
        padding: 20px 12px;
    }
    .table.table_loc .methWrp {
        display: block;
    }
    .table.table_loc .dvd {
        height: 0;
        margin: 0;
    }
    .table.table_loc .meth {
        display: block;
    }
    .table.table_loc .meth .n {
        width: 18px;
        height: 18px;
    }
}

/* sv_tabs */
.sv_tabs .item {
    display: block;
    padding: 60px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    position: relative;
    
    transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
.sv_tabs .item .addItem {
    position: absolute;
    left: 50%;
    top: 0;
    width: 40px;
    height: 40px;
    padding-right: 2px;
    font-weight: 700;
    background-color: #1fa846;
    border-radius: 50%;
    color: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    
    transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
}
@media (min-width:767px) {
    .sv_tabs .item:hover .addItem {
        opacity: 1;
    }
    .sv_tabs .item:hover {
        border-color: #1fa846;
    }
}
@media (max-width:768px) {
    .sv_tabs .item {
        border-radius: 5px;
        padding: 30px 15px;
    }
    .sv_tabs .item .img img {
        width: 50px;
    }
}

/* tabs */
.tabs {
    
}
.tabs .nav-tabs {
	display: flex;
	align-items: center;
}
.tabs .nav-tabs::before,
.tabs .nav-tabs::after {
    display: none;
}
.tabs .nav-tabs li {
    flex-basis: 33.33333%;
    flex-grow: 1;
    text-align: center;
}
.tabs .nav-tabs li a {
    font-size: 20px;
    margin: 0;
    border: 1px solid #ddd !important;
    background-color: #fff;
    border-radius: 0%;
    padding: 15px 10px;
    color: #999 !important;
    font-weight: 400;
    margin-right: -1px;
}
.tabs .nav-tabs li:not(:last-child) a {
    border-right: 0px !important;
}
.tabs .nav-tabs li.active {
    position: relative;
    z-index: 2;
}
.tabs .nav-tabs li.active a {
    color: #1fa846 !important;
    border: 1px solid #1fa846 !important;
    border-bottom-color: transparent !important;
}
.tabs .tab-content {
	border: 0;
	padding: 0;
	box-shadow: 0 0 0;
}
@media (max-width:768px) {
    .tabs .nav-tabs li a {
        font-size: 13px;
        padding: 10px;
    }
}

/* bsFbox */
.bsFbox {
    padding: 40px 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.bsFbox .bsTit {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bsFbox .bsTit .n {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #1fa846;
    color: #fff;
    font-size: .7em;
}
@media (max-width:768px) {
    .bsFbox {
        padding: 30px 15px;
        border-radius: 5px;
    }
    .bsFbox .img {
        margin-top: 15px;
    }
    .bsFbox .bsTit .n {
        width: 22px;
        height: 22px;
    }
}

/* rstItem */
.rstItem {
    padding: 60px 0;
    border-top: 1px solid #ddd;
}
.rstItem + .rstItem,
.rstItem:last-child {
    border-bottom: 1px solid #ddd;
}
@media (max-width:768px) {
    .rstItem {
        padding: 20px 0;
    }
    .rstItem > div {
        width: 100%;
    }
    .rstItem > .img {
        order: 1;
        margin-bottom: 10px;
    }
    .rstItem > .img img {
        width: 50px;
    }
    .rstItem > .txt {
        order: 2;
    }
}

/* methoodsOuter */
.methoodsOuter .methoodsHead {
    background-color: #1fa846;
    border-radius: 20px 20px 0 0 ;
    padding: 15px;
    text-align: center;
}
.methoodsOuter .methoodsBody {
    padding: 30px;
    border: 2px solid #1fa846;
    border-radius: 0 0 20px 20px;
}
@media (min-width:768px) {
    #business2 #tab1 .methoodsOuter .methoodsBody .methoodsBodyTop {
        min-height: 200px;
    }
}
@media (min-width:1400px) {
    #business2 #tab1 .methoodsOuter .methoodsBody .methoodsBodyBt .btCon {
        min-height: 410px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    #business2 #tab2 .methoodsOuter .methoodsBody .methoodsBodyBt .btCon {
        min-height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    #business4 #tab1 .methoods .item .bdCon {
        min-height: 400px;
    }
    #business4 #tab2 .methoods .item .bdCon {
        min-height: 470px;
    }
}
@media (max-width:768px) {
    .methoodsOuter .methoodsHead {
        border-radius: 10px 10px 0 0 ;
        padding: 10px;
    }
    .methoodsOuter .methoodsBody {
        padding: 20px 15px;
        border: 1px solid #1fa846;
        border-radius: 0 0 10px 10px;
    }
}
/* methoods */
.methoods .item .topName {
    padding: 12px 15px 10px;
    border-radius: 20px 20px 0 0 ;
    background-color: #6abf4b;
    text-align: center;
}
.methoods .item .bdCon {
    padding: 30px 20px;
    border: 1px solid #ddd;
    border-top: 0px;
    border-bottom: 0px;
}
.methoods .item .bdCon.hasBd {
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 20px 20px;
}
.methoods .item .btCon {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 0 0 20px 20px ;
}
.methoods .item .btCon img {
    border-radius: 15px;
}
#business4 #tab1 .methoods .item .bdCon {
    border: 1px solid #ddd;
    border-top: 0px;
    border-radius: 0 0 20px 20px ;
}
@media (min-width:768px) {
    .methoods.fxMethoods .item .bdCon {
        display: flex;
    }
    .methoods.fxMethoods .item .bdCon > div {
        width: 100%;
    }
}
@media (min-width:1400px) {
    #business2 #tab2 .methoods.fxMethoods .item .bdCon {
        min-height: 420px;
    }
}
@media (max-width:768px) {
    .methoods .item .topName {
        border-radius: 5px 5px 0 0 ;
        padding: 10px;
    }
    .methoods .item .bdCon.hasBd {
        border-radius: 0 0 5px 5px;
    }
    .methoods .item .bdCon {
        padding: 20px 15px;
        border-radius: 0 0 5px 5px ;
    }
    .methoods .item .btCon {
        padding: 15px;
    }
    .methoods .item .btCon img {
        border-radius: 5px;
    }
}
/* business2 */
#business2 .hisSwiper .hisSwiperItem.hisSwiperItem23 {
    background: #6abf4b;
}
#business2 .hisSwiper .hisSwiperItem.hisSwiperItem24 {
    background: #23bb3e;
}
#business2 .hisSwiper .hisSwiperItem.hisSwiperItem25 {
    background: #069930;
}
#business2 .hisSwiper .hisSwiperItem .btLogo {
    border: 1px solid #eee;
    text-align: center;
}
@media (min-width: 768px) {
    #business2 .hisSwiper .hisSwiperItem .bt {
        padding: 40px 30px;
    }
}
/* stepMark */
.stepMark {
    display: flex;
    align-items: center;
    gap: 6px;
}
.stepMark img {
    width: 40px;
}
@media (max-width:768px){
    .stepMark img {
        width: 30px;
    }
}
/* business3 */
#business3 .orgList {
    display: flex;
    flex-wrap: wrap;
}
#business3 .orgList .noLine {
    width: 100%;
}
#business3 .orgList .Line {
    width: 33.33333%;
}
#business3 .orgList .orgItem {
    padding: 25px 0;
    position: relative;
    line-height: 0px;
}
#business3 .orgList li:not(:first-child) .orgItem:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0%;
    height: 25px;
    width: 1px;
    background-color: #72c114;
}
#business3 .orgList .orgItem:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0%;
    height: 25px;
    width: 1px;
    background-color: #72c114;
}
#business3 .orgList .orgItem .tt strong {
    background-color: #06842a;
    display: block;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    color: #fff;
    border-radius: 90px;
    font-weight: 700;
}
#business3 .orgList .orgItem .itemCon {
    padding: 0 10px;
}
#business3 .orgList .orgItem .itemCon .c_wrp {
    background-color: #72c114;
    border-radius: 15px 15px 0 0;
}
#business3 .orgList .orgItem .itemCon .c_wrp h5 {
    line-height: 1.2em;
    padding: 0 10px;
}
#business3 .orgList .orgItem .itemCon .cc {
    text-align: left;
    padding: 20px;
    border: 2px solid #72c114;    
    border-radius: 0 0 15px 15px;
    text-align: center;
}
@media (min-width:992px) {
    #business3 .orgList .orgItem .itemCon .c_wrp {
        height: 90px;
    }
    #business3 .orgList li.Line .orgItem:after {
        left: calc(50% + 1px);
    }
    #business3 .orgList li.Line .orgItem:before {
        display: none;
    }
    #business3 .orgList li.Line .orgItem .itemCon:before {
        content: "";
        position: absolute;
        background-color: #72c114;
        bottom: auto;
        top: 0px;
        width: 50%;
        left: calc(50% + 1px);
        height: 1px;
    }
    #business3 .orgList li.Line.LineCt .orgItem .itemCon:after {
        content: "";
        position: absolute;
        background-color: #72c114;
        bottom: auto;
        top: 0px;
        width: 50%;
        right: calc(50% - 1px);
        height: 1px;
    }
    #business3 .orgList li.Line.LineRt .orgItem .itemCon:before {
        left: auto;
        right: calc(50% - 1px);
    }
}
@media (max-width:992px){
    #business3 .orgList .orgItem {
        padding: 10px 0;
    }
    #business3 .orgList li:not(:first-child) .orgItem:after,
    #business3 .orgList .orgItem:before {
        height: 10px;
    }
    #business3 .orgList li:last-child .orgItem::before {
        display: none;
    }
    #business3 .orgList .Line {
        width: 100%;
    }
    #business3 .orgList .orgItem .itemCon .c_wrp {
        padding: 10px;
    }
    #business3 .orgList .orgItem .itemCon .c_wrp {
        border-radius: 5px 5px 0 0;
    }
    #business3 .orgList .orgItem .itemCon .cc {
        padding: 15px; 
        border-radius: 0 0 5px 5px;
    }
}

/* tab2 */
.imgBorder,
.bsFbox .img img {
    border-radius: 15px;
}
@media (max-width:768px){
    .imgBorder,
    .bsFbox .img img {
        border-radius: 5px;
    }
}

/* logoItem */
.logoItems .logoItem {
    border: 1px solid #ddd;
    text-align: center;
}
/* imBorder */
.imBorder {
    border: 1px solid #ddd;
}

/* btCopy */
.btCopy {
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    line-height: 1.5em !important;
    background-color: #f7f7f7;
    font-weight: 200 !important;
    opacity: .9;
    letter-spacing: -0.01em;
}

/* underline */
.underlined {
    display: inline-block;
    position: relative;
}
.underlined:after {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;
    width: 100%;
    height: 50%;
    background: rgba(0, 163, 63, 0.3);
}
.underlined.lightGreen:after {
    background: rgba(175, 221, 0, 0.3);
}
.underlined.skyblue:after {
    background: rgba(84, 194, 240, 0.3);
}
.underlined.orange:after {
    background: rgba(255, 131, 0, 0.3);
}
.underlined span {
    display: inline-block;
    z-index: 3;
    position: relative;
    padding: 0 30px;
}

/* com5_top */
.com5_top {
    background: rgba(217, 231, 147, 0.27);
    border-radius: 40px;
}

/* futureList */
.futureList {
    margin: 0 -20px;
}
.futureList > li {
    padding: 20px;
}
.futureList .ftItem {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    padding: 50px 80px;
    border-radius: 50px;
    background: #F2F2F4;
    box-shadow: 0px 4px 20px 0px #00000026;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.futureList .ftItem:hover {
    background: rgba(0, 163, 63, 0.05);
    box-shadow: 0px 4px 15px 0px #00000040 inset;

}
.futureList .ftItem .rt {
    width: 200px;
    padding-left: 20px;
    text-align: right;
}
.futureList .ftItem .lft {
    width: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
}
.futureList .ftItem .lft .pList .dft {
    color: #717171;
}
.futureList .ftItem .lft .top .tt {
    color: #44732F;
}
.futureList .ftItem .lft .top .cc {
    color: #363636;
}
@media (max-width:768px) {
    .futureList {
        margin: 0 -12px;
    }
    .futureList > li {
        padding: 12px;
    }
    .futureList .ftItem {
        padding: 30px;
        border-radius: 30px;
        box-shadow: 0px 4px 20px 0px #0000000D;
    }
    .futureList .ftItem .rt {
        width: 100px;
    }
    .futureList .ftItem .lft {
        height: auto;
        width: calc(100% - 100px);
    }
    .futureList .ftItem .lft .top {
        margin-bottom: 25px;
    }
}

/* company5 */
#company5 .sec3 {
    background: rgba(20, 175, 156, 0.05);
}
#company5 .sec3 .fbox.content {
    align-items: flex-start;
}
#company5 .sec3 .fbox.content .lft {
    height: 100%;
    width: 500px;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#company5 .sec3 .fbox.content .lft .ft_ic {
    width: 180px;
}
#company5 .sec3 .fbox.content .rt {
    width: calc(100% - 500px);
}
@media (max-width:992px) {
    #company5 .sec3 .fbox.content .lft {
        width: 300px;
        height: 600px;
    }
    #company5 .sec3 .fbox.content .rt {
        width: calc(100% - 300px);
    }
}
@media (max-width:768px) {
    #company5 .sec3 .fbox.content .lft {
        width: 100%;
        height: auto;
        margin-bottom: 60px;
    }
    #company5 .sec3 .fbox.content .lft .ft_ic {
        order: 1;
        width: 85px;
        margin-bottom: 10px;
    }
    #company5 .sec3 .fbox.content .lft .dft {
        order: 2;
    }
    #company5 .sec3 .fbox.content .rt {
        width: 100%;
    }
}
/* con_obj */
.con_obj .top_tt {
    color: #888784;
}
.con_obj .top_cc span {
    color: #14AF9C;
    border-bottom: 1px solid #80C342;
    display: inline-block;
    padding-right: 30px;
    position: relative;
}
.con_obj .top_cc span .ic_pen {
    position: absolute;
    bottom: 0;
    left: 100%;
}
@media (max-width:768px) {
    .con_obj .top_cc span .ic_pen {
        width: 25px;
    }
}

/* hisSwiper */
.hisSwiper .swiper-slide {
    padding: 15px 15px 20px;
}
.hisSwiper .hisSwiperItem {
    border-radius: 50px;
    background: #5DCBF1;
}
.hisSwiper .hisSwiperItem .top {
    padding: 13px 50px 10px;
}
.hisSwiper .hisSwiperItem .bt {
    background: #FFFFFF;
    border-radius: 50px;
    padding: 40px 60px;
    background-color: #fff;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
}
.hisSwiper .hisSwiperItem .bt .inner {
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hisSwiper .hisSwiperItem .bt .inner .btLogo {
    text-align: right;
}
@media (max-width:768px){
    .hisSwiper .hisSwiperItem {
        border-radius: 30px;
    }
    .hisSwiper .hisSwiperItem .top {
        padding: 13px 30px 10px;
    }
    .hisSwiper .hisSwiperItem .bt {
        border-radius: 30px;
        padding: 30px 25px 15px;
        box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1);
    }
    .hisSwiper .hisSwiperItem .bt .inner {
        height: 160px;
    }
    .hisSwiper .hisSwiperItem .bt .inner .btLogo img {
        width: 100px;
    }
}

/* hisSwiper */
.hisSwiper,
.tresBtnWrp {
    width: 100%;
    padding-left: calc(100vw * (290 / 1920));
    box-sizing: border-box;
}
.hisSwiper {
    margin-bottom: 80px;
}
.hisSwiper .swiper-slide .item {
    text-decoration: none;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
@media (min-width:1024px){
    .hisSwiper .swiper-slide {
        width: 360px;
    }
}
@media (max-width:1370px){
    .tresBtnWrp,
    .hisSwiper {
        padding-left: 0
    }
    .tresBtnWrp {
        padding: 0 30px;
    }
    /* .tresBtnWrp .tresBtn {
        margin-left: auto;
        margin-right: auto;
    } */
}
@media (max-width:992px){
    .hisSwiper {
        padding: 0 15px;
        margin-bottom: 40px;
    }
}
@media (max-width:768px){
    .hisSwiper .swiper-slide {
        width: 70vw;
    }
    .hisSwiper .swiper-slide .item {
        border-radius: 5px;
    }
}

/* tresBtn */
.tresBtn {
    display: flex;
    width: 160px;
    border-radius: 100px;
    background-color: #eee;
    justify-content: center;
    padding: 8px 0;
    text-decoration: none !important;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.tresBtn:hover {
    background-color: #5DCBF1;
    color: #fff !important;
}
@media (max-width:768px){
    .tresBtn {
        width: 130px;
    }
}

/* ppBox */
.ppBox .top {
    position: relative;
}
.ppBox .top:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
    border-radius: 90px;
    background: rgba(242, 242, 244, 0.6);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
}
.ppBox .top .inner,
.ppBox .top .people {
    position: relative;
    z-index: 5;
}
.ppBox .top .inner {
    padding: 0 60px 50px;
}
.ppBox .top .people {
    text-align: center;
}
@media (max-width:768px) {
    .ppBox .bt {
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* sec7 */
#company5 .sec7 {
    background: #F9F9F9;
}
#company5 .sec7 .contentBox {
    background: #F9F9F9;
    align-items: flex-start;
}
#company5 .sec7 .contentBox .lft {
    width: 280px;
}
#company5 .sec7 .contentBox .lft .topTxt {
    text-transform: uppercase;
    display: flex;
    gap: 8px;
    align-items: center;
}
#company5 .sec7 .contentBox .lft .topTxt .lined {
    display: inline-block;
    height: 3px;
    background-color: #9ED8F5;
    width: 25px;
}
#company5 .sec7 .contentBox .rt {
    width: calc(100% - 280px);
}
#company5 .sec7 .contentBox {
    width: 100%;
    padding-left: calc(100vw * (290 / 1920));
    box-sizing: border-box;
}
@media (max-width:1200px){
    #company5 .sec7 .contentBox .lft {
        padding-left: 15px
    }
}
@media (max-width:1370px){
    #company5 .sec7 .contentBox {
        padding-left: 0
    }
}
@media (max-width:1370px){
    #company5 .sec7 .contentBox {
        flex-wrap: wrap;
    }
    #company5 .sec7 .contentBox .lft,
    #company5 .sec7 .contentBox .rt {
        width: 100%;
    }
    #company5 .sec7 .contentBox .lft {
        margin-bottom: 25px;
        padding-left: 45px;
    }
    #company5 .sec7 .contentBox .rt {
        padding: 0 15px;
    }
}

/* newsSwiper */
.newsSwiper .swiper-slide {
    padding-bottom: 30px;
}
.newsSwiper .swiper-slide a {
    text-decoration: none;
    display: block;
    box-shadow: 0px 16px 20px 0px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    padding: 45px 0 0 50px;
    border-radius: 50px;
    overflow: hidden;
}
.newsSwiper .swiper-slide .tt {
    position: relative;
}
.newsSwiper .swiper-slide .tt .dft {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding-left: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsSwiper .swiper-slide .con {
    padding: 0 40px;
}
.newsSwiper .swiper-slide .con .n_subject {
    position: relative;
}
.newsSwiper .swiper-slide .con .n_subject:after {
    content: "";
    position: absolute;
    left: -30px;
    width: 7px;
    top: 10%;
    height: 80%;
    background: #00B2EF;
    border-radius: 10px;
}
@media (min-width:1024px){
    .newsSwiper .swiper-slide {
        width: 480px;
    }
}
@media (max-width:500px){
    .newsSwiper .swiper-slide a {
        padding: 40px 0 0 30px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
    }
    .newsSwiper .swiper-slide .tt {
        padding-right: 30px;
        width: 100%;
    }
    .newsSwiper .swiper-slide .con {
        width: calc(100% - 140px);
        padding: 0 15px 20px 30px;
    }
    .newsSwiper .swiper-slide .con .n_subject {
        font-size: 15px;
    }
    .newsSwiper .swiper-slide .con .n_content {
        font-size: 10px;
    }
    .newsSwiper .swiper-slide .imgCon {
        width: 140px;
        overflow: hidden;
    }
    .newsSwiper .swiper-slide .imgCon img {
        height: 192px;
        width: auto;
        max-width: max-content;
    }
}
/* solFbox */
.fbox.solFbox {
    border: 1px solid #ddd;
    border-radius: 10px;
}
.fbox.solFbox .txt {
    padding: 20px 40px 20px 60px;
}
@media (min-width:992px) {
    .fbox.solFbox {
        min-height: 450px;
    }
}
@media (max-width:992px) {
    .fbox.solFbox {
        flex-wrap: wrap;
    }
    .fbox.solFbox > div {
        width: 100% !important;
    }
    .fbox.solFbox .txt {
        padding-top: 40px;
    }
}
@media (max-width:768px) {
    .solFbox .txt {
        padding: 40px 20px 20px !important;
    }
}

/* solInfo */
.solInfo {
    display: flex;
    align-items: flex-start;
}
.solInfo + .solInfo {
    margin-top: 12px;
}
.solInfo .tt {
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    background-color: #1fa846;
    color: #fff;
    font-size: .85em;
    font-weight: 600;
}
.solInfo .cc {
    color: #666;
}
@media (min-width:768px) {
    .solInfo .tt {
        width: 95px;
    }
    .solInfo .cc {
        width: calc(100% - 95px);
        padding-left: 15px;
    }
}
@media (max-width:768px) {
    .solInfo {
        flex-direction: column;
    }
    .solInfo .tt {
        padding: 6px 12px;
        line-height: 1.1em;
        margin-bottom: 4px;
    }
}

/* business5 */
#business5 .smallTxt {
    font-size: .5em;
    font-weight: 500;
    color: #42b346;
}
#business4 .smallTxt {
    font-size: .5em;
    font-weight: 500;
    letter-spacing: -0.02em;
}
#business5 #tab1 .sec2,
#business5 #tab2 .sec2,
#business5 #tab3 .sec2 {
    background-color: #fafcf8;
}
#business5 #tab2 .topTxt .tt span {
    display: inline-block;
    background-color: #0b9432;
    color: #fff;
    padding: 5px 30px;
    border-radius: 50px;
}

/* bsn5_mrt */
.bsn5_mrt_wrp {
    display: inline-block;
}
.bsn5_mrt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    border-radius: 200px;
    border: 1px dashed #06842a;
    flex-wrap: wrap;
}
.bsn5_mrt .mrtCircle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #daf5e3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.bsn5_mrt .mrtCircle:nth-child(even) {
    background-color: #e2f7d7;
}
.bsn5_mrt .mrtCircle .sChk {
    background-color: #0b9432;
    border-radius: 50px;
    display: inline-block;
    padding: 0 5px;
}
.bsn5_mrt .mrtCircle.point {
    background-color: #0b9432;
    box-shadow: 15px 15px 20px rgba(11, 148, 50, 0.4);
}
.bsn5_mrt .mrtCircle.point .sChk {
    background-color: #fff;
}
@media (max-width:1200px) {
    .bsn5_mrt {
        max-width: 80vw;
    }
}
@media (max-width:992px) {
    .bsn5_mrt {
        gap: 10px;
        padding: 20px;
        border-radius: 15px;
    }
    .bsn5_mrt .mrtCircle {
        width: 30%;
        border-radius: 20px;
        height: auto;
        padding: 20px;
    }
    .bsn5_mrt .mrtCircle .sChk img {
        width: 15px;
    }
    .bsn5_mrt .mrtCircle h4 {
        line-height: 1.2em;
    }
}

/* gu_sol */
.gu_sol .item .mainTxt {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #0b9432;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 10px solid #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}
.gu_sol .item .bt {
    margin-top: 15px;
    position: relative;
    padding-top: 8px;
}
.gu_sol .item .bt:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -25px;
    height: 25px;
    border-left: 1px dashed #06842a;
}
.gu_sol .item .bt p {
    margin-top: 8px;
    line-height: 1.2em;
}
@media (max-width:768px) {
    .gu_sol .item {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 8px 0;
    }
    .gu_sol .item .mainTxt {
        width: 30vw;
        height: 30vw;
        margin: 0;
    }
    .gu_sol .item .bt {
        width: 50vw;
        padding-left: 40px;
        text-align: left;
    }
    .gu_sol .item .bt:after {
        left: 0%;
        top: 50%;
        height: 0;
        width: 25px;
        border-left: 0px dashed #06842a;
        border-top: 1px dashed #06842a;
    }
}

/* table_detail */
.table.table_detail {
    border-top: 1px solid #333;
}
.table.table_detail tr.topTr {
    border-top: 1px solid #666;
}
.table.table_detail tr th,
.table.table_detail tr td {
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    color: #222;
    border: 1px solid #ddd;
    padding: 11px 15px;
    vertical-align: middle;
    background-color: #fff;
}
.table.table_detail thead tr th {
    font-size: 18px;
    font-weight: 500;
}
.table.table_detail.two thead tr th {
    border-width: 2px;
    border-color: #222 !important;
}
.table.table_detail tr th:first-child,
.table.table_detail tr td:first-child {
    border-left: 0px;
}
.table.table_detail tr th:last-child,
.table.table_detail tr td:last-child {
    border-right: 0px;
}
.table.table_detail tr th {
    font-weight: 500;
}
.table.table_detail thead tr th {
    background-color: #fff;
    border-bottom: 1px solid #333;
}
.table.table_detail thead tr .imp {
    border: 3px solid #ff5400;
    border-bottom: 2px solid #333;
    color: #ff5400;
}
.table.table_detail tr td.imp {
    background-color: #fff9e9;
    border-left: 3px solid #ff5400;
    border-right: 3px solid #ff5400;
    font-weight: 500;
}
.table.table_detail tr:last-child td.imp {
    border-bottom: 3px solid #ff5400;
}
.table.table_detail tr td p span:not(.noColored) {
    display: inline-block;
    line-height: 30px;
    padding: 0 10px;
    font-weight: 600;
    background-color: #fff8b7;
    border-radius: 4px;
    margin-bottom: 5px;
}
.table.table_detail tr td p span.tit2 {
    background-color: #ffebeb;
}
.table.table_detail tr td p span.tit3 {
    background-color: #ebffce;
}
.table.table_detail tr th.text-left,
.table.table_detail tr td.text-left {
    text-align: left !important
}
.table.table_detail thead tr th .c_pt {
    font-size: .85em;
    line-height: 1.2em;
}
@media (max-width:768px) {
    .table.table_detail tr th,
    .table.table_detail tr td {
        font-size: 13px;
        padding: 8px 5px;
        word-break: keep-all;
    }
    #edu_01 .table.table_detail tr th,
    #edu_01 .table.table_detail tr td {
        word-break: break-all;
    }
    .table.table_detail thead tr th {
        font-size: 15px;
    }
}
@media (max-width:992px){
    .oft {
        overflow-x: scroll;
    }
    .oft .table.table_detail {
        width: 700px;
    }
}


/* partnershipCons */
.partnershipCons .nav-tabs {
    border-bottom: 0px;
}
.partnershipCons .nav-tabs.nav-tabs-top {
    display: block;
}
.partnershipCons .nav-tabs.nav-tabs-top li {
    display: block;
    float: left;
}
.partnershipCons .nav-tabs.nav-tabs-top li a.ptnspItem {
    border: 1px solid #ddd;
    border-right: 1px solid #ddd !important;
    border-radius: 30px;
    padding: 0;
    box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    display: block;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.partnershipCons .nav-tabs.nav-tabs-top li.active a.ptnspItem {
    border: 1px solid #1fa846 !important;
    box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.15);
}
.partnershipCons .nav-tabs.nav-tabs-top li .ptnspItem .lg {
    padding: 15px 10px;
    background-color: rgba(247, 247, 247, 0.4);
}
.partnershipCons .nav-tabs.nav-tabs-top li .ptnspItem .txt  {
    border-top: 1px solid #eee;
    padding: 15px 5px;
}
@media (min-width:767px) {
    .partnershipCons .nav-tabs.nav-tabs-top li .ptnspItem:hover {
        border-color: #1fa846;
        box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.15);
    }
}
@media (max-width:768px) {
    .partnershipCons .nav-tabs.nav-tabs-top li {
        padding: 0 5px;
    }
    .partnershipCons .nav-tabs.nav-tabs-top li a.ptnspItem {
        border-radius: 8px;
    }
}


/* funcList */
.funcList .dft {
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 3px;
    background-color: #fafcf8;
}
.funcList .dft i {
    color: #fff !important;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: .8em;
    background-color: #1fa846;
}
.funcList .dft > span {
    width: calc(100% - 31px);
    padding-left: 15px;
}
@media (max-width:768px){
    .funcList .dft {
        border-radius: 4px;
        padding: 10px 10px;
    }
    .funcList .dft i {
        width: 23px;
        height: 23px;
    }
    .funcList .dft > span {
        width: calc(100% - 6px);
        padding-left: 12px;
    }
}

/* XCYCLE_img */
.XCYCLE_img {
    border: 1px solid #ddd;
}


/* grBox */
.grBox {
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #fafcf8;
    border: 1px dashed #dfe7d7;
}

/* ppProfile */
.ppProfile {
    display: flex;
    align-items: center;
    padding: 60px 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.ppProfile .img {
    width: 400px;
}
.ppProfile .txt {
    width: calc(100% - 400px);
    padding-right: 40px;
}
@media (max-width:768px) {
    .ppProfile {
        padding: 30px 15px;
        border-radius: 5px;
        flex-wrap: wrap;
    }
    .ppProfile .img {
        width: 100%;
        border: 1px solid #eee;
        text-align: center;
        order: 1;
        border-radius: 10px;
    }
    .ppProfile .img img {
        max-width: 50vw;
    }
    .ppProfile .txt {
        order: 2;
        width: 100%;
        padding-right: 0;
        padding-top: 30px;
    }
}

/* subtitle */
.subtitle {
    position: relative;
    padding-left: 15px;
}
.subtitle:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background-color: #06842a;
}

/* jipyong */
.jipyong .img {
    width: 35%;
    text-align: center;
}
.jipyong .img img {
    border: 1px solid #ddd;
    border-radius: 15px;
}
.jipyong .txt {
    width: 65%;
}
@media (min-width:768px) {
    .jipyong .img img {
        padding: 20px 0;
    }
}
@media (max-width:768px) {
    .jipyong .img {
        width: 100%;
        text-align: center;
    }
    .jipyong .img img {
        border-radius: 8px;
    }
    .jipyong .txt {
        width: 100%;
        padding-top: 15px;
    }
}

/* jpLink */
.jpLink {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    height: 250px;
    background: url(../img/jpLink.jpg) center center no-repeat;
    text-align: center;
}
.jpLink .btnItem {
    border: 1px solid #fff;
    line-height: 1em;
    padding: 10px;
    width: 160px;
    display: inline-block;
    text-align: center;
    color: #fff;
    opacity: .8;
}