/* ***** 서브메뉴 ***** */
.sub-nav{
    width: 100%;
    background-color:#113892
}
.sub-nav .cinner{
    position:relative;
    padding: 0;
}
.sub-nav .sub-1ul{display:flex;align-items:center}
.sub-nav .sub-1li{position:relative;height:80px}
.sub-nav .sub-1li:after{position:absolute;width:1px;height:45px;content:"";background-color:rgba(255,255,255,.5);top:50%;transform:translateY(-50%);right:0}
.sub-nav .sub-1li:last-child:after{display:none}
.sub-nav .sub-1li.home{
    position: relative;
    width: 80px;
}
.sub-nav .sub-1li.home::after{
    font-family: "Font Awesome 5 Pro";content:"\f80a";
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    background: none;
    font-size: 28px;
    font-weight: 300;
    right: unset;
    width: unset;
    height: unset;
    pointer-events: none;
}
.sub-nav .sub-1li.home .sub-1item{
    width:80px;
    background:#397dce;
    min-width:auto;
    text-indent:-999%
}
.sub-nav .sub-1li.home .sub-1item:after{display:none}
.sub-nav .sub-1item{
    position:relative;display:flex;align-items:center;height:100%;color:#fff;padding-left:30px;
    margin-right: 30px; min-width:340px;font-size: 1.4em;
}
.sub-nav .sub-1item:after{
    position:absolute;right:0;
    font-family: "Font Awesome 5 Pro";content:"\f054";
    top:50%;transform:translateY(-50%);transition:.3s;
    transform: translateY(-50%) rotate(90deg);
    font-size: 18px;
    font-weight: 300;
}
.sub-nav .sub-2ul{
    display:none;
    position:absolute;
    top:80px;
    border:1px solid #cac9c9;
    min-width:100%;
    background-color:#fff;
    z-index:10;
    border-radius:0 0 15px 15px;
    padding:20px;
}
.sub-nav .sub-2item{display:block;border-bottom:1px solid #f1f1f1;padding:15px;font-size:1.3em;color:#333;}
.sub-nav .sub-2item:hover{background-color:#ebf4ff;color:#0066d8}
.sub-nav .sub-2li:last-child .sub-2item{border: 0;}
@media (max-width:1200px){
    .sub-nav .sub-1li{height: 60px;}
    .sub-nav .sub-1li.home{
        width: 60px;}
    .sub-nav .sub-2ul{top: 60px;}
    .sub-nav .sub-1li.home .sub-1item{width: 60px;}
}
@media (max-width:1024px){
    .sub-nav .cinner {padding: 0 20px;}
    .sub-nav .sub-1item{font-size: 16px; min-width: 200px;}
    .sub-nav .sub-2item{font-size: 15px;}
    .sub-nav .sub-1item:after{font-size: 12px;}
}
@media (max-width:768px){
    .sub-nav .sub-1li {
        display: none;
        height: 50px;
    }
    .sub-nav .sub-1li.home{
        width: 50px;
    }
    .sub-nav .sub-1li:first-child,
    .sub-nav .sub-1li:last-child {display: block;}
    .sub-nav .sub-2ul{top: 50px;padding: 10px;}
    .sub-nav .sub-1li.home .sub-1item{width: 50px;}
    .sub-nav .sub-1li:last-child{width: calc(100% - 50px);}
    #nav3 a.sub-1item {width: 100%;}
    .sub-nav .sub-1item:after{right: 0;}
    .sub-nav .sub-2item{padding: 10px;}
}
/* ***** //서브메뉴 ***** */



/* ***** 서브페이지공통 ***** */
.c_box{
    margin-bottom: 60px;
}
.c_box:last-child{
    margin-bottom: 0;
}
.c_box .grayBox {
    margin: 10px 0 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    box-sizing: border-box;
    line-height: 1.7em;
}
.dotList{}
.dotList li{
    position: relative;
    padding-left: 10px;
}
.dotList li::before{
    content: '';
    width: 4px;
    height: 4px;
    background: #222;
    position: absolute;
    left: 0;
    top: 12px;
    border-radius: 50%;
}
h5.h5_tit{
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
}
h5.h5_tit::before{
    position: absolute;
    top: 10px;
    left: 0;
    margin-top: -6px;
    width: 14px;
    height: 14px;
    border: 3px solid #1779ff;
    border-radius: 50%;
    content: '';
}
h5.h5_tit::after{
    position: absolute;
    top: 10px;
    left: -2px;
    margin-top: -8px;
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #ef5f5f;
    content: '';
}
/* ***** //서브페이지공통 ***** */







/* ***** 체크박스 디자인 ***** */
input[type=radio] {
    margin: 0px 5px 0 0;
}
[type="radio"] {
    display: inline-block;
    vertical-align: middle;
    background: lightgray;
    appearance: none;
    width: 1.25em;
    height: 1.25em;
}
[type="radio"]:checked {
    background: #fff;
    border: 0.4em solid #1777e1;
}
[type="radio"]:focus-visible {
    outline-offset: max(2px, 0.1em);
    outline: max(2px, 0.1em) dotted #1777e1;
}
[type="radio"]:hover {
    box-shadow: 0 0 0 max(4px, 0.2em) #e8e8e8;
    cursor: pointer;
}
[type="radio"]:disabled {
    background-color: lightgray;
    box-shadow: none;
    opacity: 0.7;
    cursor: not-allowed;
}
[type="radio"]:disabled + span {
    opacity: 0.7;
    cursor: not-allowed;
}
[type="checkbox"] {
    margin: 0px 3px 0 0!important;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background: #E8E8E8;
    appearance: none;
    width: 1.5em;
    height: 1.5em;
}
[type="checkbox"]::after {
    color:#707070;
    position: absolute;
    right: 4px;
    font-size: 0.8em;
    cursor: pointer;
    top: 4px;
    left: 9px;
    box-sizing: border-box;
    width: 6px;
    height: 12px;
    transform: rotate(45deg);
    border-width: 2px;
    border-style: solid;
    border-color: #e8e8e8;
    border-top: 0;
    content: " ";
    border-left: 0;
    transition: all 200ms ease-in;
}
[type="checkbox"]:checked {
    border-color: #1777e1;
    background: #1777e1 !important;
}
[type="checkbox"]:checked + label{
    color: #333333;
}
[type="checkbox"]:checked::after {
    border-color: #fff
}
[type="checkbox"]:focus-visible {
    outline-offset: max(2px, 0.1em);
    outline: max(2px, 0.1em) dotted 002C6D;
}
[type="checkbox"]:hover {
    box-shadow: 0 0 0 max(4px, 0.2em) #e8e8e8;
    cursor: pointer;
}
[type="checkbox"]:disabled {
    background-color: lightgray;
    box-shadow: none;
    opacity: 0.7;
    cursor: not-allowed;
}
[type="checkbox"]:disabled + span {
    opacity: 0.7;
    cursor: not-allowed;
}




/* area_top */
.area_top {
    margin-bottom: 60px;
    position: relative;
}
.area_top h3{
    font-size: 2em;
    line-height: 1.6em;
    margin-bottom: 10px;
}
.area_top p {
    font-size: 4em;
    line-height: 0.8em;
    margin-left: -4px;
    opacity: 0.1;
    text-transform: uppercase;
}
@media (max-width:768px){
    .area_top p{
        font-size: 2em;
        word-break: keep-all;
    }
}



/* table공통 */
.table table{
    width: 100%;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
}
.table th, .table td{ padding: 10px 15px; }
.table tbody th,
.table td{ border-top: 1px solid #c9c9c9;}
.table.px tr:nth-child(even) td { border-top: 1px solid #ECECEC;}
.table tr td:last-child{border-right: 0}
.table td{ border-right: 1px solid #ECECEC;}
.table tr:nth-child(odd) td{background-color: #FBFBFB;}
.table th{font-weight: 800; font-size: 1.1em; text-align: left; border-bottom: 1px solid #707070; color: #373844;}
.table .text_center{text-align: center;}
.table .text_left{text-align: left;}
.table .text_right{text-align: right;}
.table td > a {display: block}
@media (max-width:768px){
    .table th, .table td{ padding: 6px 8px; }
}




/* 회사소개 */
/* 회사소개 */
.overview{}
.overview strong{
    font-weight: 500;
    color: #113892;
}

/* 조직도 */
.orga{}
.orga .imgBox{
    text-align: center;
}
.orga .imgBox img{
    max-width: 100%;
}

/* 등록면허 */
.izs{}
.izs ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.izs li{
    width: 32%;
}
.izs .imgBox{
    border: 1px solid #ddd;
}
.izs .imgBox img{
    width: 100%;
}
.izs p{
    text-align: center;
    padding: 10px 0;
}
@media (max-width:768px){
    .izs li {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* //회사소개 */








/* 사업분야 */
/* 사업분야 공통 */
.imgBoxes{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    justify-content: center;
    /* justify-content: space-between; */
    margin: 20px 0;
    align-items: flex-start;
}
.imgBoxes > div{
    position: relative;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
}
.imgBoxes img{
    width: 100%;
    height: 100%;
    height: calc(100% - 50px);
    /*object-fit: cover;*/
    object-position: center bottom;
    object-fit: contain; /* 준 이미지 그대로 쓰려면.. */
}
.imgBoxes .t_box{
    /*position: absolute;
    bottom: 0;
    left: 0;*/
    width: 100%;
    color: #fffdef;
    background-color: #113892;
    text-align: center;
    padding: 10px;
}
.imgBoxes_2 > div{
    /*width: 49.3%;*/
    width: calc((100% - 20px) / 2);
}
.imgBoxes_3 > div{
    /*width: 32.4%;*/
    width: calc((100% - 40px) / 3);
}
.imgBoxes_4 > div{
    /*width: 23.9%;*/
    width: calc((100% - 60px) / 4);
}
.imgBoxes_21{
    display: grid;
    grid-template-columns: 1fr 2fr; /* 두 개의 div를 1:1 비율로 나눔 */
    gap: 20px; /* 간격 조절 */
    align-items: stretch; /* 높이를 동일하게 맞춤 */
}
.imgBoxes_21 > div:nth-child(1){
    display: flex;
    flex-direction: column;
    gap: 20px; /* 이미지 간 간격 */
}
.imgBoxes_21 > div img{
    border-radius: 10px;
}
.imgBoxes_21 > div img {
    height: 100%;
    object-fit: cover; /* 이미지 비율 유지하면서 div에 맞춤 */
}
@media (max-width:768px){
    .imgBoxes_2 > div,
    .imgBoxes_3 > div,
    .imgBoxes_4 > div{
        width: 100%;
        margin-bottom: 10px;
    }
    .imgBoxes_21,
    .imgBoxes_21 > div:nth-child(1){
        display: block;
    }
    .imgBoxes_21 > div img{
        margin-bottom: 10px;
    }
}
/* //사업분야 */











/* 사업실적 */
.performance{}
.performance .tab_menu{
    display: flex;
    flex-wrap: wrap;
}
.performance .tab_menu li{
    position: relative;
    display: inline-block;
    padding: 0 20px;
    font-size: 14px;
    line-height: 39px;
    text-align: center;
    background-color: #fff;
    margin-right: 4px;
    margin-bottom: 4px;
    border: 1px solid #a9a9a9;
    /*border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;*/
}
.performance .tab_menu li.active{
    background-color: #113892;
    border-color: #113892;
    /*border-right: 1px solid #060606;
    border-left: 1px solid #060606;
    border-top: 1px solid #060606;
    line-height: 40px;
    border-bottom: 0;*/
}
/*.performance .tab_menu li.active::after{
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
}*/
.performance .tab_menu li a{
    display: block;
    color: #a9a9a9;
    font-size: 1.25em;
    font-weight: 500;
}
.performance .tab_menu li.active a{
    color: #fff;
}
.performance .tab_cont{
    /*border: 1px solid #060606;*/
    padding: 40px 20px;
}
.performance .tab_cont > li{
    display: none;
}
.performance .tab_cont > li.active{
    display: unset;
}

@media (max-width:768px){
    .performance .table colgroup{display: none;}
    .performance .table th:nth-child(1){width: 92px;}
}
/* //사업실적 */
