/* 서브페이지 공통 */
.sub_banner{
    width: 100%;
    min-width: 1400px;
    height: 300px;
    overflow: hidden;
    position: relative;
}
.sub_banner_text{
    font-size: 48px;
    color: aliceblue;
    position: absolute;
    left: 260px;
    bottom: 50px;
}
.inner_nav{
    margin: 25px auto;
    width: 1200px;
    display: flex;
    justify-content: end;
}
.inner_menu{

    display: flex;
}
.inner_menu li{
    margin: 0 5px;
}
.inner_menu li a{
    color: gray;
}
.inner_menu li a.active{
    font-weight: 500;
    color: black;
}
.sub_tab_menu{
    margin: 50px auto;
    display: flex;
    width: 1400px;
    justify-content: center;
}
.sub_tab_menu .tab{
    margin: 15px;
    position: relative;
    text-align: center;
    min-width: 100px;
    line-height: 60px;
    border-bottom: 2px solid #ccc;
}
.sub_tab_menu .tab a{
    cursor: pointer;
    font-size: 18px;
    font-weight: 300;
    display: block;
    color: black;
    
}
.sub_tab_menu .tab:hover,.sub_tab_menu .tab.active{
    border-bottom: 2px solid rgb(18, 27, 56);
}
.content_wrap{
    width: 100%;
    min-width: 1400px;
}
.content{
    width: 1200px;
    margin: 0 auto;
}
.con_title{
    text-align: center;
    font-size: 42px;
    margin: 150px 0 100px 0;
}
.con_title2{
    text-align: center;
    font-size: 42px;
    margin-top: 150px;
}
.con_sub{
    font-size: 18px;
    margin-top: 0;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 100px;
}
.con_2_table{
    margin: 25px 0 50px 0;
    border-collapse: collapse;
    border-top: 2px solid grey;
    line-height: 50px;
    width: 100%;
}
.con_2_table tr{
    border-bottom: 1px solid #ccc;
}
.con_2_table td{
    padding-left: 25px;
}

.table_tag{
    background-color: #eee;
    width: 15%;
    font-weight: 500;
}

.con_3_table{
    table-layout: fixed;
    text-align: center;
    margin: 25px 0 50px 0;
    border-collapse: collapse;
    border-top: 2px solid grey;
    line-height: 50px;
    width: 100%;
}
.table_tag2{
    font-weight: 500;
}
.con_3_table td, .con_3_table th{
    border-right: 1px solid #ccc;
}
.con_3_table td:last-child, .con_3_table th:last-child{
    border-right: none;
}
.con_3_table th{
    background-color: #f1f1f1;
}
.con_3_table tr{
    border-bottom: 1px solid #ccc;
}

.sub_banner img{
    width: 100%;
}
