/* ============================ */
/*      서브 공통 컨텐츠 영역     */
/* ============================ */

/* 상단 이미지 */
.subtop{
    width: 100%;
    aspect-ratio: 8/1;
    position: relative;
}
.subtop h1{
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    color: #fff;
    font-size: 38px;
    font-weight: 600;
    z-index: 1;
    text-shadow: 0px 0px 10px #424242;
}
.subtop img{
    width: 100%;
    height: 100%;
}



/* 페이지 경로 */
.pagenav_wrap{
    width: 100%;
    background-color: #003169;
    margin-bottom: 50px;
}
.pagenav{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.pagenav .left>ul{
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 29;
}
.pagenav .left>ul>li{
    height: 100%;
    position: relative;
}
.sub_depth_title,
.sub_depth3_title{
    width: 250px;
    display: block;
    color: #fff;
    font-size: 16px;
    padding: 12px;
    box-sizing: border-box;
    border-right: 1px solid #839bb8;
    letter-spacing: -1px;
}
.sub_depth3_title{
    border-right: 0;
    width: auto;
}
.sub_depth_title::after{
    content: "";
    position: absolute;
    right: 12PX;
    top: 50%;
    width: 12px;
    height: 12px;
    background: url(/public/imges/sub/dropdown_icon.png) no-repeat center / 12px;
    transform: translateY(-50%);
    transition: all 0.4s;
}
.sub_depth_title.on::after {
    transform: translateY(-50%) rotate(180deg);
}
.pagenav_home{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    border-left: 1px solid #839bb8;
    border-right: 1px solid #839bb8;
}
.pagenav_home img{
    width: 20px;
}
.depth1_dropdown,
.depth2_dropdown{
    width: 250px;
    position: absolute;
    top: 100%;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    display: none;
}
.depth1_dropdown.on,
.depth2_dropdown.on{
    display: block;
}
.depth1_dropdown li,
.depth2_dropdown li{
    border-bottom: 1px solid #dddddd;
    background-color: #ffffff;
}
.depth1_dropdown li :hover,
.depth2_dropdown li :hover{
    background-color: #ebf5ff;
    transition: all 0.2s;
}
.depth1_dropdown a,
.depth2_dropdown a{
    display: block;
    padding: 10px 12px;
    color: #222;
    font-size: 16px;
    letter-spacing: -1px;
}
.pagenav_wrap .right{
    display: flex;
    align-items: center;
    gap: 5px;
}
.pagenav .right button{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 0;
}
.pagenav .right button img{
    width: 20px;
}


/* 페이지 제목 */
.page_title_wrap {
    width: 100%;
    margin-bottom: 40px;
}
.page_title {
    width: 1200px;
    margin: 0 auto;
}
.page_title h1 {
    text-align: center;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: -1px;
    color: #333;
}
.page_title h1 br{
    display: none;
}
.page_title p{
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
    color: #555;
}
.page_title p b{
    font-size: 20px;
}


/* 리스트 페이지 */
.list_btn_wrap, .list_wrap{
    width: 100%;
}
.list_txt{
    font-size: 17px;
    width: 1200px;
    margin: 0 auto;
}
.list_btn{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: end;
    gap: 5px;
}
.list_btn button{
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.list_search_wrap{
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 10px;
    display: flex;
}
.list_search_table{
    width: 90%;
}
.list_search_wrap table{
    width: 100%;
    border-collapse: collapse;
}
.list_search_wrap table th,
.list_search_wrap table td{
    padding: 8px;
    background-color: #fff;
    box-sizing: border-box;
}
.list_search_wrap table.list_date th{
    background-color: #d1e8ff;
    width: 110px;
}
.list_search_wrap table.list_date td{
    border: 1px solid #eee;
}
.list_search_wrap table.list_date{
    table-layout: fixed;
}
.list_search_wrap table.list_date td.period{
    display: flex;
    gap: 8px;
}
.list_search_wrap table.list_date input{
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    outline: none;
    cursor: pointer;
}
.list_search_wrap table.list_date td.period input{
    width: 48%;
}
.list_search_wrap table.list_search td{
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.list_search_wrap table.list_search td:first-child{
    min-width: 150px;
}
.list_search_wrap table.list_search td:last-child{
    width: 80%;
    border-right: 1px solid #eee;
}
.list_search_wrap table.list_search select,
.list_search_wrap table.list_search input{
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    outline: none;
    box-sizing: border-box;
}
.list_search_wrap table.list_search select{
    cursor: pointer;
}
.list_search_wrap button{
    width: 10%;
    min-width: 120px;
    font-size: 20px;
}
.list_search_wrap table.list_search.only td{
    border-top: 1px solid #eee;
}
.list_wrap {
    margin-bottom: 35px;
}
.list{
    width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
}
.list thead{
    background-color: #e9e9e9;
}
.list thead th{
    padding: 12px 0px;
    color: #111;
    font-size: 16px;
    border-top: 1px solid #ddd;
    border-top: 1px solid #ddd;
    letter-spacing: -1px;
    box-sizing: border-box;
}
.list tbody td{
    text-align: center;
    margin: 0 auto;
    border-bottom: 1px solid #ddd;
    padding: 12px 0px;
    font-size: 16px;
    letter-spacing: -1px;
    color: #333;
    box-sizing: border-box;
}
.list tbody td img{
    width: 22px;
    cursor: pointer;
    
}
.list tbody td button{
    padding: 5px 8px;
    box-sizing: border-box;
    border-radius: 5px;
}
.list tbody input[type='checkbox']{
    cursor: pointer;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
}
.list .print{
    background-color: transparent;
    border: none;
}
.list .print img{
    width: 25px;
}
.mobile_list{
    display: none;
}
.list .goview{
    transition: all 0.2s;
    cursor: pointer;
}
.list .goview:hover{
    color: #0073df;
}


/* 페이지네이션 */
.pagination_wrap{
    width: 100%;
    margin-top: 35px;
    margin-bottom: 70px;
}
.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.page{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.pagination a{
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    border-bottom: 2px solid transparent;
}
.page a.on{
    color: #0075E3;
    border-bottom: 2px solid #0075E3;
}


/* 테이블 */
.table_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.table_box{
    width: 1200px;
    margin: 0 auto;
}
.table_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.table_top h4,
.table_top p{
    font-size: 18px;
    letter-spacing: -1px;
    color: #111;
    font-weight: 600;
}
.table_top button{
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 14px;
}
.table_bottom {
    margin-top: 5px;
}
.table_bottom p{
    letter-spacing: -1px;
    color: #0075E3;
    font-size: 15px;
}
.table_basic{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.table_basic tr.yes_answer{
    display: none;
}
.table_basic tr.record {
    height: 350px;
}
.table_basic th{
    background-color: #eeeeee;
    border: 1px solid #fff;
    padding: 15px 10px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    letter-spacing: -1px;
    text-align: start;
    vertical-align: middle;
}
.table_basic th.sub_th{
    text-align: center;
    background-color: #d1e8ff;
}
.table_basic th br{
    display: none;
}
.table_basic td{
    min-height: 45px;
    background-color: #fff;
    border: 1px solid #eeeeee;
    padding: 8px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;
    color: #888;
    letter-spacing: -1px;
}
.table_basic td.amount_li{
    text-align: right;
}
.table_basic input,
.business_box input,
.table_basic select,
.deta_flex select{
    height: 100%;
    border:1px solid #f1f1f1;
    padding: 5px;
    box-sizing: border-box;
    outline: 2px solid transparent;
    color: #222;
}
.table_basic input:focus,
.table_basic select:focus,
.table_basic textarea:focus,
.business_box input:focus,
.deta_flex select:fo{
    outline: 2px solid #0075E3;
}
.table_basic input[type='radio']:focus,
.table_basic input[type='checkbox']:focus,
.business_box input[type='radio']:focus{
    outline: 2px solid transparent;
}
.table_basic input::placeholder,
.business_box input::placeholder,
.table_basic textarea::placeholder{
    color: #aaaaaa;
    letter-spacing: -1.5px;
}
.table_basic textarea{
    resize: none;
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    border:1px solid #f1f1f1;
    padding: 5px;
    box-sizing: border-box;
    outline: 2px solid transparent;
    color: #222;
    letter-spacing: -1px;
    font-size: 13px;
    border-radius: 0;
}
/* td안에 태그가 2개 이상일 시 ul로 묶음 처리 */
.table_basic ul{
    display: flex;
    gap: 20px;
}
.table_basic ul li{
    display: flex;
    align-items: center;
    gap: 5px;
}
.table_basic ul.table_detail{
    flex-direction: column;
    gap: 2px;
}
.table_basic ul.table_detail:last-child{
    margin-top: 10px;
}
.table_basic ul li.table_detail_title{
    color: #222;
}
.table_basic ul li.table_detail_txt{
    margin-left: 10px;
}
.table_basic ul.company{
    flex-direction: column;
    gap: 5px;
}
.table_basic ul.company label{
    width: 40px;
}
.table_basic button{
    padding: 8px;
}
.table_basic input::-webkit-file-upload-button{
   background-color: #bdbdbd;
   border: 0;
   font-size: 13px;
   letter-spacing: -1px;
   padding: 5px;
   cursor: pointer;
   color: #fff;
}
.table_basic ul .search{
    width: 24px;
    cursor: pointer;
}
.table_basic ul .delete_wrap{
    margin-left: auto;
    cursor: pointer;
}
.table_basic ul .delete{
    width: 16px;
}
.table_basic .coverage_wrap {
    display: grid;
    grid-template-columns: 1fr 12px;
    grid-template-rows: auto auto;
    gap: 8px;
}
.table_basic ul.coverage:first-child {
    grid-column: 1;
    grid-row: 1;
}
.table_basic .coverage_wrap ul.coverage:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}
.table_basic .coverage_wrap ul.coverage:last-child{
    grid-column: 2;
    grid-row: 1 / span 2;
}
.table_basic ul.coverage{
    gap: 8px;
}
.table_basic ul.coverage:first-child li:nth-child(2){
    width: 100%;
}
.table_basic span.file_link{
    color: #0073df;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}
.table_basic span.file_link:hover{
    border-bottom: 1px solid #0073df;
}
.table_btn_wrap{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 70px;
}
.table_btn_wrap button{
    width: calc(16.66666% - 10px);
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    letter-spacing: -1px;
}


/* 팝업 */
.popup_wrap {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000091;
    z-index: 1000;
    padding: 20px;
    align-items: center;
    justify-content: center;
    display: none;
}
.popup_wrap.on {
    display: flex;
}
.popup {
    width: 100%;
    max-width: 770px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.popup_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    box-sizing: border-box;
    background-color: #009edd;
}
.popup_title {
    font-size: 25px;
    color: #ffffff;
    font-weight: 500;
}
.popup_delete {
    width: 20px;
    cursor: pointer;
}
.popup_middle {
    padding: 20px;
}
.popup_bottom {
    width: 100%;
    padding-bottom: 20px;
}
.popup_bottom .pagination_wrap {
    margin-top: 0;
    margin-bottom: 0;
}
.popup_bottom .button_wrap {
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.popup_bottom button {
    width: calc(16.66666% - 8px);
    font-size: 16px;
    padding: 8px 12px;
    font-size: 15px;
    letter-spacing: -1px;
    box-sizing: border-box;
    border-radius: 5px;
}


/* 1921px 이상 시 */
@media screen and (min-width: 1921px){
    .pagenav,
    .page_title,
    .list_btn,
    .list_search_wrap,
    .list,
    .table_box,
    .table_btn_wrap,
    .list_txt {
        width: 63%;
    }
}
@media screen and (max-width: 1200px){
    .pagenav,
    .page_title,
    .list_btn,
    .list_search_wrap,
    .list,
    .table_box,
    .table_btn_wrap,
    .list_txt{
        width: 90%;
    }
    .nonebr{
        display: none;
    }
}

/* 1024px 이하 시 */
@media screen and (max-width: 1024px){
    /* 상단 이미지 */
    .subtop {
        display: none;
    }

    /* 페이지 경로 */
    .pagenav_wrap {
        display: none;
    }

    /* 페이지 제목 */
    .page_title_wrap {
        border-top: 1px solid #ddd;
        padding-top: 30px;
    }
    .page_title h1{
        font-weight: 600;
        font-size: 34px;
    }


    /* 페이지 경로 */
    .sub_depth_title,
    .sub_depth3_title{
        width: 200px;
        font-size: 15px;
        padding: 10px;
    }
    .pagenav_home{
        padding: 10px;
    }
    .pagenav_home img{
        width: 16px;
    }
    .depth1_dropdown,
    .depth2_dropdown{
        width: 200px;
    }
    .depth1_dropdown a,
    .depth2_dropdown a{
        font-size: 15px;
        padding: 12px;
    }
    .pagenav .right button{
        width: 25px;
        height: 25px;
    }
    .pagenav .right button img{
        width: 16px;
    }


    /* 리스트 페이지 */
    .list_txt{
        font-size: 16px;
    }
    .list_search_wrap select{
        font-size: 14px;
    }
    .list{
        border-top: 2px solid #222;
    }
    .list thead{
        display: none;
    }
    .list tbody td{
        display: none;
    }
    .list td.mobile_list{
        padding: 16px 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.2s;
    }
    .mobile_list_box{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .mobile_list_box p{
        font-size: 14px;
    }
    .mobile_list_box .list_title{
        font-size: 18px;
        color: #111;
        cursor: pointer;
    }
    .mo_list_top,
    .mo_list_bottom{
        display: flex;
        align-items: center;
        gap: 8px;
        text-align: start;
    }
    .mo_list_bottom p{
        color: #777;
    }
    .mo_list_bottom p.w160px{
        width: 160px;
    }
    .mo_list_bottom p:last-child:after{
        display: none;
    }
    .mo_list_bottom span{
        font-weight: 600;
        color: #444;
        margin-right: 3px;
    }


    /* 테이블 */
    .table_top{
        margin-bottom: 5px;
    }
    .table_top h4
    .table_top p{
        font-size: 16px;
    }
    .table_top button{
        font-size: 13px;
        padding: 5px;
        letter-spacing: -1px;
    }
    .list_search_wrap{
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .list_search_table{
        width: 100%;
    }
    .list_search_wrap table.list_date tr{
        display: flex;
        flex-wrap: wrap;
    }
    .list_search_wrap table.list_date th{
        width: 20%;
        line-height: 30px;
    }
    .list_search_wrap table.list_date th:first-child{
        border-bottom: 1px solid #fff;
    }
    .list_search_wrap table.list_date td{
        width: 80%;
    }
    .list_search_wrap table.list_date td:first-child{
        border-bottom: none;
    }
    .list_search_wrap table.list_date td:last-child{
        border-top: none;
    }
    .list tbody td img {
        width: 16px;
    }
    .list_search_wrap button{
        padding: 8px;
        min-width: 90px;
        font-size: 18px;
        border-radius: 5px;
        letter-spacing: -1px;
    }
    .table_bottom p{
        font-size: 14px;
    }
    .table_basic{
        border-spacing: 0;
        border-collapse: separate;
    }
    .table_basic colgroup{
        display: none;
    }
    .table_basic tbody.item01 tr:nth-child(even) td{
        background-color: #f0f7ff;
        border: 1px solid #dae9ff;
    }
    .table_basic tbody.item01 tr:nth-child(even) td input{
        border: 1px solid #dae9ff;
    }
    .table_basic tr{
        display: flex;
        flex-wrap: wrap;
    }
    .table_basic tr.item01tr{
        display: grid;
        grid-template-columns: 30px 1fr;
        grid-template-rows: repeat(4, auto);
    }
    tr.item01tr > td:first-child {
        grid-row: 1 / span 4;
        grid-column: 1 / 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    tr.item01tr > td:not(:first-child) {
        grid-column: 2 / 3;
    }
    .item01tr > td:nth-child(2) {
        grid-row: 1 / 2; /* 사고발생일자 */
    }
    .item01tr > td:nth-child(3) {
        grid-row: 2 / 3; /* 지급금액 */
    }
    .item01tr > td:nth-child(4) {
        grid-row: 3 / 4; /* 사고내용 */
    }
    .item01tr > td:nth-child(5) {
        grid-row: 4 / 5; /* 재발방지조치 */
    }
    .table_basic th,
    .table_basic td{
        display: flex;
        align-items: center;
        justify-content: start;
        font-size: 15px;
    }
    .table_basic th{
        flex: 0 0 30%;
        border: none;
        border-top: 1px solid #fff;
    }
    .table_basic tr:last-child th{
        border-bottom: 1px solid #fff;
    }
    .table_basic th.question_th{
        flex: 0 0 75%;
    }
    .table_basic th.sub_th{
        display: none;
    }
    .table_basic th.no_sub_th{
        flex: 0 0 100%;
        padding: 10px 5px;
    }
    .table_basic th.no_sub_th br{
        display: none;
    }
    .table_basic td{
        flex: 0 0 70%;
        border: none;
        border-top: 1px solid #eeeeee;
        border-right: 1px solid #eeeeee;
        border-bottom: none;
    }
    .table_basic td.w100{
        flex: 0 0 100%;
        border-left: 1px solid #eeeeee;
    }
    .table_basic td[data-label]{
        position: relative;
        padding-left: 6.1em;
    }
    .table_basic td[data-label = "제조"],
    .table_basic td[data-label = "수입"],
    .table_basic td[data-label = "합계"]{
        padding-left: 3em;
    }
    .table_basic td[data-label]::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 5.1em;  /* 적당한 공간 확보 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 600;
        font-size: 15px;
        color: #555;
    }
    .table_basic tr:last-child td:not([class*="mo_td_delete"]),
    .table_basic tr:last-child td:last-child,
    .table_basic tr:not([class*="yes_answer"]) td {
        border-bottom: 1px solid #eeeeee;
    }
    .table_basic td.mo_td_delete{
        display: none;
    }
    .table_basic td.question_td{
        flex: 0 0 25%;
    }
    .table_basic tr.view_yes_answer td,
    .table_basic td.no_sub_td{
        flex: 0 0 100%;
        border-left: 1px solid #eeeeee;
    }
    .table_basic td.no_sub_td{
        text-align: left !important;
    }
    .table_basic td.table_detail_wrap{
        display: block;
    }
    .table_btn_wrap{
        flex-wrap: wrap;
    }
    .table_btn_wrap button{
        width: calc(50% - 10px);
        font-size: 16px;
    }
    .table_basic .coverage_wrap{
        width: 100%;
    }
    .table_basic ul .search{
        width: 20px;
    }
    .table_basic ul .delete{
        width: 12px;
    }
    .table_basic ul.company span{
        display: block;
    }
    .table_basic .gridbody {
        display: grid;
        grid-template-columns: 30% 1fr;
        grid-template-rows: repeat(2, auto);
        align-items: start;
    }
    .table_basic .gridbody tr {
        display: contents;
    }
    .table_basic .gridbody th {
        height: 100%;
        grid-row: 1 / span 2;
        grid-column: 1 / 2;
        align-self: start;
        padding-right: 12px;
    }
    .table_basic .gridbody>tr:first-child>td {
        grid-row: 1 / 2;
    }

    .table_basic .gridbody>tr:last-child>td {
        grid-row: 2 / 3;
    }
}

/* 992px 이하 시 */
@media screen and (max-width: 992px){
    /* 테이블 */
    .table_basic .coverage_wrap ul.coverage{
        flex-direction: column;
    }
    .table_basic .coverage_wrap ul.coverage:last-child{
        justify-content: center;
    }
}

/* 768px 이하 시 */
@media screen and (max-width: 768px){
    /* 페이지 제목 */
    .page_title h1{
        font-size: 30px;
    }
    .page_title h1 br{
        display: block;
    }
    .page_title p{
        font-size: 16px;
        letter-spacing: -1px;
    }

    /* 테이블 */
    .table_wrap{
        gap: 30px;
    }
    .table_basic ul{
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2px;
    }
    .table_basic th br{
        display: block;
    }
    .table_basic ul :not(.delete_wrap){
        grid-column: 1;
    }
    .table_basic ul .delete_wrap {
        grid-column: 2;
        grid-row: 1 / span 2; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* .coverage_wrap{
        width: 100%;
    } */
    .file_li{
        flex-direction: column;
    }
    .file_li input[type = 'file']{
        width: 100%;
    }
    .file_li button{
        width: 100%;
    }

    /* 팝업 */
    .popup_title{
        font-size: 20px;
    }
    .popup_delete{
        width: 18px;
    }
    .popup_bottom button{
        width: calc(25% - 8px);
    }
}

/* 500px 이하 시 */
@media screen and (max-width: 500px){
    /* 페이지 제목 */
    .page_title_wrap{
        margin-bottom: 30px;
    }

    /* 리스트 */
    .list_txt{
        font-size: 15px;
        letter-spacing: -1px;
    }
    .list_btn button{
        padding: 8px;
        font-size: 15px;
    }
    .list_search{
        width: 100%;
    }
    .list_search input{
        padding: 5px;
    }
    .list_search img{
        width: 26px;
    }
    .mo_list_top {
        width: 100%;
        gap: 5px;
        flex-direction: column;
        align-items: start;
        margin-bottom: 5px;
    }
    .mo_list_bottom {
        width: 100%;
        flex-direction: column;
        align-items: start;
        gap: 5px;
    }
    .mobile_list_box .list_title {
        font-weight: 700;
        font-size: 17px;
        margin-bottom: 5px;
    }

    /* 테이블 */
    .table_top{
        flex-direction: column;
        align-items: start;
        gap: 8px;
    }
    .table_top button{
        padding: 3px;
    }
    .table_basic .gridbody {
        grid-template-columns: 25% 1fr;
    }
    .table_basic th{
        flex: 0 0 25%;
        padding: 5px;
    }
    .table_basic td{
        flex: 0 0 75%;
        padding: 5px;
    }
    .table_basic td[data-label]::before {
        font-size: 14px;
        left: 5px;
    }
    .table_basic .coverage_wrap,
    .table_basic ul.coverage {
        gap: 5px;
    }
    .table_basic ul li{
        gap: 3px;
    }
    .table_basic ul .search{
        width: 16px;
    }
    .table_basic ul .delete{
        width: 10px;
    }
    .table_btn_wrap{
        margin-top: 30px;
        gap: 6px;
    }
    .table_btn_wrap button{
        width: calc(50% - 6px);
        font-size: 14px;
        padding: 8px 14px;
    }

    /* 팝업 */
    .popup_top{
        padding: 15px;
    }
    .popup_title{
        font-size: 20px;
    }
    .popup_delete{
        width: 14px;
    }
    .popup_middle{
        padding: 15px ;
    }
    .popup_bottom button{
        width: calc(33.33333% - 8px);
    }
}

/* 420px 이하 시 */
@media screen and (max-width: 420px){
    /* 페이지 제목 */
    .page_title_wrap{
        border-top: 1px solid #ddd;
        padding-top: 25px;
    }
    .page_title h1{
        font-size: 25px;
    }

    /* 테이블 */
    .table_top h4,
    .table_top p{
        font-size: 16px;
    }
    .list_search_wrap table th,
    .list_search_wrap table td{
        padding: 5px;
    }
    .list_search_wrap table.list_date th{
        width: 30%;
        line-height:normal;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .list_search_wrap table.list_date td{
        width: 70%;
    }
    .list_search_wrap table.list_date td.period{
        flex-direction: column;
        gap: 3px;
        align-items: center;
    }
    .list_search_wrap table.list_date td.period input{
        width: 100%;
    }
    .list_search_wrap table.list_search tr{
        display: flex;
        flex-wrap: wrap;
    }
    .list_search_wrap table.list_search td {
        width: 100%;
        border-right: 1px solid #eee;
    }
    .list_search_wrap table.list_search td:last-child{
        width: 100%;
    }
    .list_search_wrap button{
        padding: 5px;
    }

    .table_basic th,
    .table_basic td{
        font-size: 13px;
    }

    /* 리스트 페이지 */

    /* 페이지네이션 */
    .page{
        gap: 2px;
    }

    /* 테이블 */
    .table_basic .coverage_wrap ul.coverage:nth-child(2) li{
        display: flex;
        flex-direction: column;
        align-items: start;
    }
}

/* =================== */
/*   서브 페이지별 css   */
/* =================== */

/* 로그인(login) */
.login_page_wrap{
    width: 1200px;
    margin: 0 auto;
}
.login_page{
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 70px;
    border-radius: 20px;
}
.login_txt{
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}
.login_box_wrap{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login_box{
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0px 15px;
    background-color: #fff;
}
.login_box input{
    width: 100%;
    height: 100%;
    padding: 15px 0px;
    box-sizing: border-box;
    border: none;
}
.login_box input::placeholder{
    color: #B9B9B9;
    font-weight: 400;
    font-size: 16px;
}
.login_box input:focus{
    outline: none;
}
.login_btn{
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 18px;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    transition: all 0.2s;
    font-weight: 700;
    background-color: #0075E3;
}
.login_btn:hover {
    background-color: #288eec;
}
.login_page_join,
.find_wrap a{
    color: #111;
    font-size: 15px;
    transition: all 0.2s;
}
.login_page_join:hover,
.find_wrap a:hover{
    color: #0075E3;
}
.login_bottom{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.login_bottom_txt{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.login_bottom_txt li{
    color: #555;
    font-size: 15px;
    letter-spacing: -1px;
}
.login_bottom_txt li::before{
    display: inline-block;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #0073df;
    margin-bottom: 5px;
    margin-right: 3px;
}

/* 1921px 이하 시 */
@media screen and (min-width: 1921px) {
    .login_page_wrap {
        width: 63%;
    }
}

/* 1200px 이하 시 */
@media screen and (max-width: 1200px) {
    .login_page_wrap {
        width: 90%;
    }
}

/* 500px 이하 시 */
@media screen and (max-width: 420px) {
    .login_txt {
        font-size: 15px;
    }
    .login_box input{
        padding: 12px 0px;
    }
    .login_box input::placeholder{
        font-size: 14px;
        letter-spacing: -1px;
    }
    .login_btn{
        font-size: 16px;
        padding: 12px;
    }
    .login_page_join,
    .find_wrap a{
        font-size: 14px;
        letter-spacing: -1px;
    }
}


/* 사이트맵(sitemap) */
.sitemap_wrap{
    width: 100%;
    margin-bottom: 70px;
}
.sitemap{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px 50px;
}
.sitemap_box{
    width: calc(33.333333% - 50px);
    padding-bottom: 20px;
    border-bottom: 1px solid #a8a8a8;
}
.sitemap_box h1{
    text-align: left;
    font-size: 24px;
    padding: 10px;
    box-sizing: border-box;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #222;
    color: #3480d6;
}
.sitemap_box ul{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 10px;
}
.sitemap_box li::before{
    display: inline-block;
    content: '';
    width: 5px;
    height: 5px;
    background-color: #ddd;
    border-radius: 50%;
    margin-right: 5px;
    margin-bottom: 2px;
}
.sitemap_box a{
    display: inline-block;
    font-size: 18px;
    color: #333;
    letter-spacing: -1px;
    transition: all 0.2s;
}
.sitemap_box li:hover a{
    color: #0075E3;
}

/* 1921px 이상 시 */
@media screen and (min-width: 1921px) {
    .sitemap {
        width: 63%;
    }
}

/* 1200px 이하 시 */
@media screen and (max-width: 1300px) {
    .sitemap {
        width: 90%;
    }
}

/* 1024px 이하 시 */
@media screen and (max-width: 1024px) {
    .sitemap_box{
        width: calc(50% - 50px);

    }
    .sitemap_box h1{
        font-size: 22px;
    }
}

/* 768px 이하 시 */
@media screen and (max-width: 768px) {
    .sitemap_box {
        width: 100%;
    }
}

/* 420px 이하 시 */
@media screen and (max-width: 420px){
    .sitemap{
        gap: 50px;
    }
    .sitemap_box h1{
        font-size: 20px;
        padding: 5px;
        margin-bottom: 10px;
    }
    .sitemap_box ul{
        gap: 10px;
    }
    .sitemap_box a{
        font-size: 16px;
    }
}



/* 협회소개 - 인사말 (greeting) */
.greeting_wrap {
    width: 100%;
    margin-bottom: 70px;
}
.greeting{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 50px;
}
.greeting .left,
.greeting .right{
    width: 50%
}
.greeting .left img {
    aspect-ratio: 6 / 7;
    width: 80%;
    margin: 0 auto;
    display: block;
}
.greeting .left h1{
    display: none;
    color: #0075E3;
}
.greeting .right .right_top{
    font-size: 20px;
    letter-spacing: -1px;
    color: #111;
}
.greeting .right .right_bottom{
    text-align: right;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-top: 40px;
}


/* 1200px 이하 시 */
@media screen and (max-width: 1200px) {
    .greeting {
        width: 90%;
    }
}

/* 1024px 이하 시 */
@media screen and (max-width: 1024px) {
    .greeting {
        flex-direction: column;
        gap: 30px;
    }
    .greeting .left,
    .greeting .right{
        width: 100%;
    }
    .greeting .left img {
        display: none;
    }
    .greeting .left h1{
        font-size: 22px;
        display: block;
    }
    .greeting .right .right_top{
        font-size: 16px;
    }
    .greeting .right .right_bottom{
        font-size: 20px;
    }
}
/* 420px 이하 시 */
@media screen and (max-width: 420px){
    .greeting .right .right_top{
        font-size: 15px;
    }
    .greeting .right .right_bottom{
        font-size: 18px;
    }
}



/* 협회소개 - 협회소개 (introduction) */
.introduction_wrap{
    width: 100%;
    margin-bottom: 70px;
}
.introduction{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.introduction>div h1{
    font-size: 36px;
    color: #111;
    margin-bottom: 20px;
}
.introduction>div h1 span{
    color: #0075E3;
}
.intro_box01{
    display: flex;
    gap: 30px;
}
.intro_box01 .left{
    width: 50%;
}
.intro_box01 p{
    font-size: 18px;
    color: #111;
    line-height: 26px;
}
.intro_box01 .right{
    width: 50%;
}
.intro_box01 .right img{
    width: 100%;
    aspect-ratio: 3/2;
    display: block;
    border-radius: 20px;
}
.intro_box02 p{
    font-size: 18px;
    color: #111;
    margin-bottom: 20px;
}
.intro_box02 ul{
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.intro_box02 li{
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #111;
}
.intro_box02 li::before{
    display: flex;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #0075E3;
    margin-right: 5px;
}
.intro_box02 li span{
    color: #0075E3;
    font-weight: 600;
    margin-right: 10px;
}
.history>li{
    display: flex;
    align-items: start;
}
.history>li .left{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: end;
}
.history>li .left h2{
    color: #0075E3;
    font-size: 30px;
}
.history_circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    vertical-align: middle;
    margin-left: 10px;
    margin-top: 1px;
}
.history_circle::after{
    display: inline-block;
    content: '';
    width: 98px;
    height: 1px;
    background-color: #ddd;
    vertical-align: middle;
    margin-top: -12px;
}
.history>li .right{
    width: 70%;
    border-left: 1px solid #ddd;
    margin-left: 90px;
}
.history_txt{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 100px;
    margin-top: 5px;
}
.history>li:last-child .history_txt{
    padding-bottom: 0;
}
.history_txt li{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
}
.history_txt li::before{
    display: flex;
    content: '';
    width: 40px;
    height: 1px;
    background-color: #ddd;
}
.history_txt li span{
    font-size: 18px;
    letter-spacing: -1px;
}
.history_txt .date{
    color: #000;
    width: 20%;
    font-weight: 600;
    margin-left: -20px;
}
.history_txt .date::before{
    display: inline-block;
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #0075E3;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: -3px;
}
.history_txt .txt{
    width: 80%;
    color: #666;
}

/* 1921px 이상 시 */
@media screen and (min-width: 1921px) {
    .introduction {
        width: 63%;
    }
}

/* 1200px 이하 시 */
@media screen and (max-width: 1200px) {
    .introduction {
        width: 90%;
    }
}

/* 1150px 이하 시 */
@media screen and (max-width: 1150px) {
    .history>li .left h2{
        font-size: 20px;
    }
    .history_txt li{
        margin-top: -1px;
    }
    .history_txt li span{
        font-size: 16px;
    }
}

/* 1024px 이하 시 */
@media screen and (max-width: 1024px) {
    .intro_box01{
        flex-direction: column;
    }
    .intro_box01 .left{
        width: 100%;
    }
    .intro_box01 .right{
        width: 100%;
    }
    .introduction>div h1{
        font-size: 30px;
    }
    .intro_box01 p{
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -1px;
    }
    .intro_box02 p{
        font-size: 16px;
        letter-spacing: -1px;
    }
    .intro_box02 li{
        font-size: 15px;
    }
    .history>li{
        flex-direction: column;
    }
    .history>li .left{
        width: 100%;
        justify-content: start;
        border-bottom: 1px solid #ddd;
        margin-bottom: 5px;
        padding-bottom: 10px;
    }
    .history>li .left h2{
        font-size: 24px;
    }
    .history>li .right{
        border-left: 0;
        width: 100%;
        margin-left: 0;
    }
    .history_circle,
    .history_circle::after,
    .history_txt .date::before,
    .history_txt li::before {
        display: none;
    }
    .history_txt{
        gap: 15px;
        padding-bottom: 50px;
    }
    .history_txt li{
        gap: 0;
        align-items: start;
        margin-top: 0px;
    }
    .history_txt li::before{
        display: inline-block;
        content: '';
        width: 5px;
        height: 5px;
        background-color: #ddd;
        border-radius: 50%;
        margin-right: 10px;
        margin-top: 5px;
    }
    .history_txt .date{
        margin-left: 0px;
        max-width: 100px;
        min-width: 100px;
    }
    .history_txt .txt{
        width: auto;
    }
}

/* 768px 이하 시 */
@media screen and (max-width: 768px){
    .introduction>div h1{
        font-size: 26px;
    }
    .history>li .left h2{
        font-size: 20px;
    }
    .history_txt li::before{
        display: none;
    }
}

/* 500px 이하 시 */
@media screen and (max-width: 500px){
    .intro_box01 .right img{
        border-radius: 10px;
    }
}

/* 420px 이하 시 */
@media screen and (max-width: 420px){
    .introduction{
        gap: 50px;
    }
    .introduction>div h1{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .intro_box01 p{
        font-size: 15px;
        line-height: 22px;
    }
    .intro_box01 p br.mobile_none{
        display: none;
    }
    .intro_box02 p{
        font-size: 15px;
    }
    .history_txt{
        padding-bottom: 30px;
        gap: 10px;
    }
    .history>li .left h2{
        font-size: 18px;
    }
    .history_txt li span{
        font-size: 15px;
    }
    .history_txt .date{
        max-width: 85px;
        min-width: 85px;
    }
}


/* 협회소개 - 오시는 길 (directions)*/
.directions_wrap{
    width: 100%;
    margin-bottom: 70px;
}
.directions{
    width: 1200px;
    margin: 0 auto;
}
.directions .map{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}
.directions .root_daum_roughmap{
    width: 100%;
}
.root_daum_roughmap .wrap_controllers {
    display: none;
}
.root_daum_roughmap .cont .section.section_address.lst {
    display: none;
}
.direc_box_wrap{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.direc_box h2{
    margin-bottom: 10px;
    color: #0075E3;
    font-size: 24px;
}
.direc_box ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.direc_box li{
    font-size: 18px;
    color: #111;
    font-weight: 500;
}
.direc_box li span{
    width: 60px;
    display: inline-block;
    color: #222;
    font-weight: 600;
}

/* 1921px 이상 시 */
@media screen and (min-width: 1921px){
    .directions {
        width: 63%;
    }
}

/* 1200px 이하 시 */
@media screen and (max-width: 1200px){
    .directions {
        width: 90%;
    }
}

/* 1024px 이하 시 */
@media screen and (max-width: 1024px){
    .direc_box h2{
        font-size: 22px;
    }
    .direc_box li{
        font-size: 16px;
        letter-spacing: -1px;
    }
}

/* 420px 이하 시 */
@media screen and (max-width: 420px){
    .direc_box h2{
        font-size: 20px;
    }
    .direc_box li span{
        display: block;
    }
}


/* 공제사업소개 관련 페이지 */
.business_wrap{
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 70px;
}
.business{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.business_box h2{
    font-size: 22px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.business_box h2 img{
    width: 18px;
}
.business_box h2 span{
    color: #0073df;
}
.business_box ul{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.business_box .sub_ul{
    gap: 6px;
    margin-top: 5px;
}
.business_box .none_dot{
    margin-top: 15px;
}
.business_box .flex_box{
    width: 96%;
    flex-direction: row;
    gap: 0px;
    margin: 0 auto;
    margin-top: 30px;
}
.business_box .flex_box>li{
    width: 25%;
    border-left: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
}
.business_box .flex_box>li:last-child{
    border-right: 2px solid #ccc;
}
.business_box .flex_box .step{
    box-sizing: border-box;
    border-radius: 20px;
    font-size: 16px;
    padding: 5px 8px;
    background-color: #003169;
    color: #ffffff;
    width: 120px;
    letter-spacing: -1px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
}
.business_box .flex_box .img_wrap{
    width: 60%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 15px;
    border: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.business_box .flex_box .img_wrap img{
    width: 50%;
}
.business_box .flex_box .company{
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
    color: #0073df;
}
.business_box .flex_box .top_txt{
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}
.business_box .flex_box p{
    font-size: 16px;
    letter-spacing: -1px;
    color: #111;
}
.business_box .flex_box .bg{
    font-size: 15px;
    color: #fff;
    background-color: #0075E3;
    display: inline-block;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 3px;
}
.business_box .flex_box .sub_ul{
    margin-top: 0;
    margin-bottom: 5px;
}
.business_box .none_dot_flex{
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 20px;
    margin-top: 20px;
}
.business_box .none_dot_flex li{
    font-size: 16px;
    letter-spacing: -1px;
}
.business_box .flex_box .bn8_title{
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
}
.business_box .flex_box .bn8_sub{
    text-align: center;
    color: #fff;
    font-size: 16px;
    background-color: #3595ee;
    padding: 3px;
    box-sizing: border-box;
}
.business_box p,
.business_box li{
    font-size: 18px;
    align-items: center;
    gap: 5px;
}
.business_box li{
    position: relative;
    padding-left: 12px;
}
.business_box li::before {
    display: block;
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #0073df;
    border-radius: 50%;
}
.business_box p span.dul{
    position: absolute;
    top: 0;
    left: 0;
}
.business_box p img{
    width: 18px;
    vertical-align: middle;
}
.business_box p.bg_yellow{
    display: inline-block;
}
.business_box .sub_ul{
    margin-left: 44px;
}
.business_box .sub_ul li{
    font-size: 18px;
}
.business_box .none_dot li{
    font-size: 18px;
}
.business_box p.dulwrap {
    position: relative;
    padding-left: 22px;
    margin-bottom: 5px;
}
.business_box .sub_ul li::before,
.business_box .none_dot li::before,
.business_box .flex_box li::before,
.business_box .none_dot_flex li::before{
    display: none;
}
.business_box .table_wrap{
    width: 96%;
    margin: 0 auto;
    margin-bottom: 10px;
}
.business_box table{
    border-collapse: collapse;
}
.business_box thead th{
    background-color: #003169;
    border: 2px solid #003169;
    padding: 8px;
    box-sizing: border-box;
    color: #fff;
    font-size: 18px;
}
.business_box tbody th{
    border: 2px solid #87bfff;
    background-color: #d1e8ff;
    padding: 8px;
    box-sizing: border-box;
    font-size: 18px;
    color: #111;
}
.business_box tbody th br{
    display: none;
}
.business_box tbody td{
    border: 2px solid #cccccc;
    padding: 8px;
    box-sizing: border-box;
    font-size: 18px;
    color: #111;
    text-align: center;
    word-break: break-all;
}
.business_box tbody td h4{
    margin-bottom: 10px;
    font-size: 18px;
}
.business_sub_box{
    margin-top: 10px;
    background-color: #f1f1f1;
    padding: 10px;
}
.business_box p,
.business_box h2,
.business_box span,
.business_box ul,
.business_box li,
.business_box b {
    min-width: 0;
    word-break: keep-all;
}
/* 1921px 이상 시 */
@media screen and (min-width: 1921px){
    .business_wrap{
        width: 100%;
    }
    .business{
        width: 63%;
        margin: 0 auto;
    }
}
/* 1200px 이하 시 */
@media screen and (max-width: 1200px){
    .business_wrap{
        width: 100%;
    }
    .business {
        width: 90%;
        margin: 0 auto;
    }
    .business_box{
        width: 100%;
    }
}

/* 1024px 이하 시 */
@media screen and (max-width: 1024px){
    .business_box p,
    .business_box li,
    .business_box .sub_ul li,
    .business_box thead th,
    .business_box tbody th,
    .business_box tbody td,
    .business_box tbody td h4{
        font-size: 16px;
        letter-spacing: -1px;
    }
    .business_box .flex_box{
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .business_box .flex_box>li{
        width: 50%;
    }
    .business_box .flex_box>li:nth-child(2){
        border-right: 2px solid #ccc;
    }
    .business_box .flex_box>li:nth-child(3),
    .business_box .flex_box>li:nth-child(4){
        border-top: none;
    }
}

/* 500px 이하 시 */
@media screen and (max-width: 500px){
    .business{
        gap: 30px;
    }
    .business_box h2{
        font-size: 20px;
        letter-spacing: -1px;
    }
    .business_box h2 img {
        width: 16px;
    }
    .business_box .flex_table colgroup{
        display: none;
    }
    .business_box .flextbody{
        display: flex;
    }
    .business_box .flextbody tr{
        display: flex;
        flex-direction: column;
    }
    .business_box .flextbody tr:first-child{
        flex: 0 0 35%;
    }
    .business_box .flextbody tr:last-child{
        flex: 0 0 65%;
    }
    .business_box .flextbody th{
        padding: 10px;
    }
    .business_box .flextbody td.txtcen{
        padding: 10px;
        text-align: start;
    }
    .business_box .flextr{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .business_box .flextr th,
    .business_box .flextr td{
        display: flex;
        align-items: center;
    }
    .business_box .flextr th{
        flex: 0 0 35%;
        justify-content: center;
    }
    .business_box .flextr td{
        flex: 0 0 65%;
    }
    .business_box tbody th,
    .business_box tbody td{
        padding: 5px;
    }
    .business_box tbody th br{
        display: block;
    }
    .business_box .flex_box>li {
        width: 100%;
    }
    .business_box .flex_box>li{
        border-right: 2px solid #ccc;
    }
    .business_box .flex_box>li:nth-child(1){
        border-bottom: none;
    }
    .business_box .flex_box .img_wrap{
        width: 40%;
    }
}

/* 420px 이하 시 */
@media screen and (max-width: 420px){
    .business_wrap{
        margin-bottom: 40px;
    }
    .business_box h2{
        font-size: 18px;
        margin-bottom: 6px;
    }
    .business_box h2 img {
        width: 15px;
    }
    .business_box p,
    .business_box li,
    .business_box .sub_ul li{
        font-size: 15px;
    }
    .business_box thead th,
    .business_box tbody th,
    .business_box tbody td,
    .business_box tbody td h4{
        font-size: 15px;
    }
    .business_box .flex_box>li{
        padding: 15px;
    }
    .business_box .flex_box .step{
        width: 100px;
        margin-bottom: 15px;
        font-size: 15px;
    }
    .business_box .flex_box .img_wrap{
        width: 50%;
    }
    .business_box .flex_box .company{
        font-size: 20px;
    }
    .business_box .flex_box .top_txt{
        font-size: 16px;
    }
    .business_box .flex_box p{
        font-size: 15px;
    }
    .business_box .flex_box .bn8_title{
        font-size: 18px;
    }
    .business_box .flex_box .bn8_sub{
        font-size: 15px;
    }
}


/* 공제신청 - 견적 신청 - 가입 구분 (contract_E1) */
.join_type_wrap{
    width: 100%;
    margin-bottom: 70px;
}
.join_type{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.join_type>div{
    width: calc(33.3333333% - 30px);
    border-radius: 20px;
    aspect-ratio: 3/2;
    padding: 30px;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
}
.join_new{
    background-color: #1f8f57;
}
.servey_join{
    background-color: #ffc400;
}
.join_renew {
    background-color: #009edd;
}
.join_type>div a{
    width: 100%;
    height: 100%;
    display: block;
}
.join_type h1{
    text-align: start;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.join_type>div img{
    width: 21%;
    position: absolute;
    right: 30px;
    bottom: 30px;
    transition: all 0.2s;
}
.join_type>div:hover img {
    width: 23%;
}
.join_type p{
    text-align: start;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -1px;
}
.join_type>div .moreview{
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #000;
    font-size: 16px;
    background-color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    box-sizing: border-box;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.join_type>div.join_new .moreview{
    border: 2px solid #044927;
}
.join_type>div.join_new:hover .moreview {
    border: 2px solid transparent;
    background-color: #044927;
    color: #fff;
}
.join_type>div.servey_join .moreview{
    border: 2px solid #d69d00;
}
.join_type>div.servey_join:hover .moreview {
    border: 2px solid transparent;
    background-color: #d69d00;
    color: #fff;
}
.join_type>div.join_renew .moreview {
    border: 2px solid #004e6d;
}
.join_type>div.join_renew:hover .moreview {
    border: 2px solid transparent;
    background-color: #004e6d;
    color: #fff;
}

/* 1921px 이상 시 */
@media screen and (min-width: 1921px){
    .join_type_wrap{
        width: 100%;
    }
    .join_typ{
        width: 63%;
    }
}

/* 1200px 이하 시 */
@media screen and (max-width: 1200px){
    .join_type{
        width: 90%;
        gap: 20px;
    }
    .join_type>div{
        padding: 25px;
    }
    .join_type h1{
        font-size: 24px;
    }
    .join_type>div img{
        right: 25px;
        bottom: 25px;
    }
    .join_type>div .moreview{
        left: 25px;
        bottom: 25px;
    }
}

/* 1024px 이하 시 */
@media screen and (max-width: 1024px) {
    .join_type{
        flex-direction: column;
    }
    .join_type>div{
        width: 100%;
        aspect-ratio: 4/1;
    }
    .join_type h1{
        font-size: 28px;
    }
    .join_type>div img{
        width: 12%;
    }
    .join_type>div:hover img {
        width: 14%;
    }
}

/* 768px 이하 시 */
@media screen and (max-width: 768px){
    .join_type>div{
        width: 100%;
        aspect-ratio: 3/1;
    }
}

/* 500px 이하 시 */
@media screen and (max-width: 500px){
    .join_type>div{
        aspect-ratio: 2/1;
    }
    .join_type h1{
        font-size: 24px;
    }
    .join_type>div img{
        width: 18%;
    }
    .join_type>div:hover img {
        width: 20%;
    }
    .join_type p{
        font-size: 14px;
    }
}

/* 420px 이하 시 */
@media screen and (max-width: 420px) {
    .join_type>div {
        width: 100%;
        aspect-ratio: 1.5/1;
    }
    .join_type>div img{
        width: 22%;
    }
    .join_type>div:hover img {
        width: 24%;
    }
}

/* 320px 이하 시 */
@media screen and (max-width: 320px) {
    .join_type>div {
        padding: 18px;
    }
    .join_type>div img{
        right: 18px;
        bottom: 18px;
    }
    .join_type>div .moreview{
        left: 18px;
        bottom: 18px;
    }
}



/* 공제신청 - 견적 신청 - 견적서 (contract_E2) */

/* 부보대상 추가 > 담보 품목 조회 팝업 */
.inquiry_search{
    display: flex;
    padding: 10px;
    gap: 10px;
    box-sizing: border-box;
    background-color: #eeeeee;
    margin-bottom: 20px;
}
.inquiry_search h4{
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #222;
}
.inquiry_search h4 img{
    width: 20px;
}
.inquiry_select{
    width: 70%;
    display: flex;
    align-items: center;
    gap: 5px;
}
.inquiry_select select{
    width: 20%;
    height: 100%;
    border-radius: 0;
    outline: none;
    cursor: pointer;
    border: 1px solid #ddd;
    background-color: #fff;
}
.inquiry_select input{
    width: 80%;
    height: 100%;
    border-radius: 0;
    padding: 5px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #ddd;
}
.inquiry_search button{
    padding: 0px 8px;
}
.inquiry_content{
    max-height: 50vh;
    overflow-y: auto;
    border-top: 2px solid #003169;
}
.inquiry_content table{
    width: 100%;
    border-collapse: collapse;
}
.inquiry_content table thead{
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.inquiry_content table tbody tr{
    cursor: pointer;
    transition: all 0.2s;
}
.inquiry_content table tbody tr:hover{
    background-color: #f0f0f0;
}
.inquiry_content table th{
    padding: 10px 5px;
    background-color: #ebf5ff;
    border-right: 1px solid #fff;
    color: #003169;
    font-size: 16px;
    box-sizing: border-box;
    letter-spacing: -1px;
}
.inquiry_content table th:last-child{
    border-right: none;
}
.inquiry_content table td{
    padding: 10px 5px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    letter-spacing: -1px;
    text-align: center;
}

/* 768px 이하 시 */
@media screen and (max-width: 768px){
    .inquiry_search{
        flex-direction: column;
        gap: 5px;
    }
    .inquiry_search h4{
        width: 100%;
        justify-content: start;
    }
    .inquiry_select{
        width: 100%;
    }
    .inquiry_select select{
        padding: 4px;
    }
    .inquiry_search button{
        padding: 5px;
    }
    .inquiry_content table th{
        font-size: 14px;
        padding: 8px 3px;
    }
    .inquiry_content table td{
        font-size: 13px;
        padding: 8px 3px;
    }
}

/* 500px 이하 시 */
@media screen and (max-width: 500px){
    .inquiry_select{
        flex-direction: column;
    }
    .inquiry_select select{
        width: 100%;
    }
    .inquiry_select input{
        width: 100%;
    }
}


/* 공제신청 - 가입신청 - 설문서 작성 (survey_E) */

/* 개인(신용)정보 동의 */
.privacy_wrap{
    max-height: 50vh;
    overflow-y: auto;
    padding: 12px;
    background-color: #f7f7f7;
}
.privacy{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.privacy_box{
    margin-bottom: px;
}
.privacy_title{
    color: #fff;
    font-size: 16px;
    background-color: #003169;
    text-align: center;
    padding: 10px 0px;
    box-sizing: border-box;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.privacy_box p{
    font-size: 14px;
    letter-spacing: -1px;
    color: #333;
}
.privacy_sub_title{
    font-size: 16px;
    color: #054894;
    margin-bottom: 5px;
    letter-spacing: -1px;
}
.agree_box{
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 5px;
    box-sizing: border-box;
    margin-bottom: 5px;
}
.agree_box h2{
    font-size: 15px;
    letter-spacing: -1px;
}
.agree_box p{
    font-size: 14px;
    letter-spacing: -1px;
}
.agree{
    border-top: 1px solid #ddd;
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 5px;
}
.agree li{
    display: flex;
    align-items: center;
    gap: 1px;
}
.agree p{
    padding: 0px 10px 0px 0px;
    border-right: 1px solid #ddd;
}
.agree input[type='checkbox']{
    vertical-align: middle;
    margin-top: 3px;
}
.matter_box{
    margin-bottom: 5px;
}
.matter_box h2{
    font-size: 15px;
    margin-bottom: 2px;
    color: #111;
    letter-spacing: -1px;
}
.matter_box p{
    margin-left: 12px;
    font-size: 14px;
    letter-spacing: -1px;
    color: #333;
}
.sign_box{
    border-top: 2px dotted #333;
    margin-top: 5px;
    padding-top: 10px;
}
.sign_box p{
    font-size: 15px;
    font-weight: 600;
    color: #111;
    letter-spacing: -1px;
    margin-bottom: 5px;
}
.sign_date_box{
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.sign_box_bottom{
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sign_box_bottom li{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sign_box_bottom h3,
.sign_box_bottom p{
    font-size: 15px;
    color: #888;
}
.sign_box_bottom span{
    color: #111;
    font-size: 15px;
}
.president{
    font-size: 18px;
    color: #111;
    text-align: center;
    letter-spacing: -1px;
    margin-top: 10px;
}
.sign_box p.agree_txt{
    font-size: 14px;
    color: #555;
    font-weight: 500;
    letter-spacing: -1px;
}
/* 수정내용 */
.survey_cha{
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}
/* 알아두실 사항 */
.survey_cha.box {
    padding: 15px 0px;
    background-color: #ffffe3;
}
.survey_cha.box li.list_none{
    list-style-type: none;
}
.survey_cha.box ul.ul_sub{
    margin-left: 15px;
}
.survey_cha.box ul li {
    list-style: disc;
    margin-left: 15px;
}
/* 알아두실 사항 end */
.survey_cha.hidden {
    display: none;
}
.survey_cha h4{
    font-size: 20px;
}
.survey_cha textarea{
    width: 100%;
    border-radius: 0;
    border: 3px solid #ff0000;
    padding: 15px;
    box-sizing: border-box;
    font-size: 16px;
    letter-spacing: -1px;
    font-weight: 900;
}
.survey_cha textarea:focus{
    border-radius: 0;
    outline: 1px solid transparent;
}
.surbtn{
    width: 150px;
}
@media screen and (min-width: 1921px) {
    .survey_cha {
        width: 63%;
    }
}
@media screen and (max-width: 1200px) {
    .survey_cha {
        width: 90%;
    }
}
@media screen and (max-width: 1024px){
    .survey_cha textarea{
        padding: 8px;
    }
}
@media screen and (max-width: 768px){
    .survey_cha h4 {
        letter-spacing: -1px;
    }
}
@media screen and (max-width: 420px) {
    .survey_cha h4 {
        font-size: 16px;
    }
}

/* 계약조회 - 가입내역 (details_L) */

/* 업로드 - 청약서 (협회) 전송 팝업 */
.send_wrap{
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #e7e7e7;
    padding: 20px;
    box-sizing: border-box;
}
.send_wrap h2{
    font-size: 20px;
    color: #333;
}
.send_wrap input{
    width: 70%;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 8px;
    box-sizing: border-box;
}
.send_wrap input::-webkit-file-upload-button {
    background-color: #bdbdbd;
    border: 0;
    font-size: 13px;
    letter-spacing: -1px;
    padding: 5px;
    cursor: pointer;
    color: #fff;
}

@media screen and (max-width: 1024px){
    .send_wrap{
        flex-direction: column;
        align-items: start;
        gap: 4px;
    }
    .send_wrap input{
        width: 100%;
    }
}
@media screen and (max-width: 768px){
    .send_wrap h2{
        font-size: 18px;
    }
}


/* 알림마당 - 자주하는 질문(question) */
.question_wrap{
    width: 100%;
}
.question{
    width: 1200px;
    margin: 0 auto;
    border-top: 2px solid #0073df;
}
.question>div{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 18px;
}
.question>div span.front{
    height: 100%;
    display: block;
    font-weight: bold;
    font-size: 20px;
}
.question>div.question_btn{
    position: relative;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.2s;
}
.question_btn:hover{
    background-color: #ebf5ff;
}
.question_btn span.front{
    color: #0073df;
}
.question_btn span.txt{
    width: 90%;
    display: block;
    color: #333;
    font-weight: 500;
}
.question_btn img{
    width: 16px;
    position: absolute;
    right: 20px;
    transition: all 0.3s;
    transform: rotate(360deg);
    margin-left: 10px;
}
.question_btn img.on{
    transform: rotate(180deg);
}
.question>div.answer{
    display: none;
    background-color: #f3f3f3;
    color: #333;
}
.question>div.answer.on{
    display: flex;
}
.answer span.front{
    color: #777777;
}


/* 1921px 이상 시 */
@media screen and (min-width: 1921px){
    .question {
        width: 63%;
    }
}

/* 1200px 이하 시 */
@media screen and (max-width: 1200px){
    .question {
        width: 90%;
    }
}

/* 1024px 이하 시 */
@media screen and (max-width: 1024px){
    .question>div{
        font-size: 17px;
    }
}

/* 768px 이하 시 */
@media screen and (max-width: 768px){
    .question>div{
        padding: 10px;
        font-size: 16px;
    }
    .question>div span.front{
        font-size: 18px;
    }
    .question_btn span.txt{
        width: 87%;
    }
    .question_btn img{
        width: 14px;
        right: 10px;
    }
}

/* 420px 이하 시 */
@media screen and (max-width: 420px){
    .question>div{
        font-size: 15px;
        letter-spacing: -1px;
    }
    .question>div span.front{
        font-size: 17px;
    }
    .question_btn span.txt{
        width: 84%;
    }
    .question_btn img{
        width: 12px;
    }
}


/* 알림마당 - 공제약관(condition) */
.condition_wrap{
    width: 100%;
    margin-bottom: 70px;
}
.condition{
    width: 1200px;
    margin: 0 auto;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}
.condi_top{
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}
.revision{
    display: flex;
    align-items: center;
    gap: 8px;
}
.revision h3{
    font-size: 20px;
    color: #222;
}
.revision select{
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #eee;
    outline: none;
    cursor: pointer;
    font-size: 16px;
}
.condi_top button{
    padding: 10px 15px;
    font-size: 16px;
    letter-spacing: -1px;
    border-radius: 5px;
}
.condi_img{
    width: 45%;
    margin: 0 auto;
    aspect-ratio: 1/1.414;
    border: 1px solid #eee;
}
.condi_img img{
    width: 100%;
    height: 100%;
}

/* 1921px 이하 시 */
@media screen and (min-width: 1921px){
    .condition {
        width: 63%;
    }
}

/* 1200px 이하 시 */
@media screen and (max-width: 1200px){
    .condition{
        width: 90%;
    }
}

/* 1024px 이하 시 */
@media screen and (max-width: 1024px){
    .condi_img{
        width: 70%;
    }
}

/* 768px 이하 시 */
@media screen and (max-width: 768px){
    .revision{
        gap: 3px;
    }
    .revision h3{
        font-size: 18px;
    }
    .revision select{
        font-size: 15px;
    }
    .condi_top button{
        padding: 8px;
        font-size: 15px;
    }
}

/* 500px 이하 시 */
@media screen and (max-width: 500px){
    .condi_img{
        width: 80%;
    }
}

/* 420px 이하 시 */
@media screen and (max-width: 420px){
    .revision{
        flex-direction: column;
        align-items: start;
    }
    .revision h3{
        font-size: 16px;
        color: #222;
    }
    .revision select{
        font-size: 15px;
        letter-spacing: -1px;
    }
    .condi_top button{
        font-size: 14px;
    }
}


/* 팝업 */

/* 개인정보처리방침 */
.footer_txt_wrap {
    max-height: 50vh;
    overflow-y: scroll;
    padding: 12px;
}

.footer_txt_wrap p {
    font-size: 15px;
    letter-spacing: -1px;
    color: #444;
    font-weight: 600;
}

.footer_txt_wrap p.txt {
    color: #111;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer_box {
    margin-top: 20px;
}

.footer_box h2 {
    font-size: 18px;
    color: #0073df;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.footer_box h3 {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer_box ul {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer_box li {
    font-size: 15px;
    letter-spacing: -1px;
    color: #333;
}

/* 계약조회>가입내역(청약서 기입사항 입력) */

.detail_box_wrap{
    max-height: 50vh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.detail_box .table_basic th br{
    display: none;
}
.detail_box h2{
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.deta_sub p{
    font-size: 16px;
    letter-spacing: -1px;
}
.deta_sub p.account{
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
}
.deta_sub .account br{
    display: none;
}
.deta_flex{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
.deta_flex p{
    letter-spacing: -1px;
}
.deta_flex select{
    cursor: pointer;
}
.deta_sub .table_basic th{
    width: 20%;
}
.deta_sub .table_basic td {
    width: 80%;
}
.deta_sub .table_basic td p{
    /* width: 110px; */
    text-align: end;
}

@media screen and (max-width: 1024px){
    .detail_box .table_basic th {
        flex: 0 0 60%;
    }
    .detail_box .table_basic td {
        flex: 0 0 40%;
    }
    .detail_box .deta_sub .table_basic th{
        flex: 0 0 20%;
    }
    .detail_box .deta_sub .table_basic td{
        flex: 0 0 80%;
    }
}
@media screen and (max-width: 768px){
    .deta_sub .account br{
        display: block;
    }
    .detail_box .deta_sub .table_basic th{
        flex: 0 0 30%;
    }
    .detail_box .deta_sub .table_basic td{
        flex: 0 0 70%;
    }
}
@media screen and (max-width: 500px){
    .detail_box_wrap{
        gap: 15px;
    }
    .detail_box h2{
        margin-bottom: 4px;
    }
    .deta_sub p.account{
        font-size: 16px;
    }
    .deta_sub p{
        font-size: 15px;
    }
    .detail_box .deta_sub .table_basic td ul{
        display: flex;
    }
    .detail_box .deta_sub .table_basic td li{
        flex-direction: column;
        align-items: start;
    }
    .detail_box .deta_sub .table_basic td input[type='date']{
        width: 100%;
    }
    .deta_sub .table_basic td p{
        width: auto;
        text-align: start;
    }
}
@media screen and (max-width: 420px){
    .detail_box .table_basic th br{
        display: block;
    }
    .detail_box .table_basic th {
        flex: 0 0 45%;
    }
    .detail_box .table_basic td {
        flex: 0 0 55%;
    }

}

/* 갱신 버튼 누를 시 */
/* .renewal_popup_wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000091;
    z-index: 1000;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
} */