@charset "UTF-8";

.board {
    position: relative;
}


/* ** board support ** */
.board_support {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 16px;
}
.board_count {
    display: inline-flex;
}
.board_count > li{
    font-weight: 500;
}
.board_count > li + li {
    margin-left: 17px;
    position: relative;
}
.board_count > li + li::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%; left: -8px;
    transform: translateY(-50%);
    width: 1px; height: 10px;
    background-color: #C6C6C6;
}
.board_count li > span:not(.all_num){
    color: #003985;
    font-weight: 700;
}
.board_Search {
    display: flex;
    align-items: center;
    gap: 8px;
}
.board_Search .select {
    height: 43px;
}
.board_Search .search {
    position: relative;
    display: flex;
}
.board_Search .search .inputText > input {
    width: 294px;
    height: 45px;
    border-radius: 8px 0px 0px 8px;
    padding: 12px 16px;
    color: #717171;
    border-right: none;
    border: 1px solid #D8D8D8;
    border-right: none;
    font-size: 14px;
}
.board_Search .search .inputText > input:focus{
    outline: none;
}
.board_Search .search .searchBtn {
    display: block;
    width: 45px; height: 45px;
    background-color: #10BB98;
    padding: 10px;
    border-radius: 0px 8px 8px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.board_Search .search .searchBtn  > .ico_btn{
    display: inline-block;
    width: 21px;
    height: 21px;
    background-image: url(../images/sub/board/ico_search.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* select box */
.select {
    width: 93px; height: 45px;
}
.select .selectbox > button {
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid #D8D8D8;
}
.select .selectbox > button:has(+ .show) {
    border-radius: 12px 12px 0 0;
}
.select .selectbox > button:after {
    min-width: 16px;
    width: 16px; height: 16px;
}
.select .selectbox .option {
    border-radius: 12px;
    bottom: 1px; left: 0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    border: 1px solid #D8D8D8;
    background: #fff;
}
.select .selectbox .option ul > li.active button {
    background: #F8F8F8;
}
.select .selectbox .option ul > li button:hover,
.select .selectbox .option ul > li button:focus-visible {
    color: #1d1d1d;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.select.scroll .scroll {
    right: 8px;
}
/* select box */
@media screen and (max-width: 767px) {
    .board_Search {
        width: 100%;
    }
    .board_Search .search{
        width: calc(100% - 101px);
    }
    .board_Search .search .inputText,
    .board_Search .search .inputText > input {
        width: 100%;
    }
}


/* ** board list ** */
.board_list {
    table-layout: fixed;
    width: 100%;
}
.board_list th {
    vertical-align: middle;
    padding: 16px;
    background: #F8F8F8;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #1D1D1D;
    border-top: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
}
.board_list td {
    vertical-align: middle;
    padding: 16px;
    border-bottom: 1px solid #D8D8D8;
    text-align: center;
}
.board_list td span {
    color: #1D1D1D;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
/* board subject */
.board_list td.subject {
    text-align: left;
    font-weight: 500;
}
.board_list td.subject > a {
    display: flex;
    width: 100%;
    max-width: 100%;
}
.board_list td.subject > a > span{
    font-weight: 500;
}
.board_list tr:not(.board_null):hover,
.board_list tr:not(.board_null):focus-visible{
    background: #F6FDFF;
}
.board_list tr:hover td.subject span,
.board_list tr:focus-visible td.subject span{
    color: #1C1C1C;
    text-decoration: underline;
    text-underline-offset: 3px;
}
/* board notice */
.board_list tr.notice td.num{
    padding: 16px 0;
}
.board_list tr.notice td.num span {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    width: 54px; height: 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    padding-right: 4px;
    background: #003985 url(../images/sub/board/ico_notice.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
}
/* board file */
.board_list td.file .fileCon {
    display: block;
    width: 24px; height: 24px;
    margin: 0 auto;
    background-image: url(../images/sub/board/ico_file.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
/* board status */
.board_list td.status span{
    border-radius: 8px;
    background: #F0F0F0;
    display: block;
    width: 73px;
    height: 32px;
    line-height: 32px;
    font-weight: 500;
}
.board_list td.status.complete > span{
    background: #DFF5F1;
}
@media screen and (max-width:1279px) {
    .board_list {
        display: block;
    }
    .board_list colgroup {
        display: none;
    }
    .board_list thead {
        display: none;
    }
    .board_list tbody {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        border-top: 2px solid #003985;
    }
    .board_list tbody tr {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 4px;
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #D8D8D8;
    }
    .board_list tbody td {
        position: relative;
        display: inline-flex;
        padding: 0;
        border: 0;
    }
    .board_list tbody td span {
        font-size: 14px;
    }
    .board_list tr:not(.notice) td.num{
        display: none;
        order: 1;
    }
    .board_list tr.notice td.num{
        padding: 0;
        margin-right: 4px;
    }
    .board_list tr.notice td.num + td.subject {
        width: calc(100% - 66px);
        padding-top: 2px;
    }
    .board_list td.subject {
        width: 100%;
        order: 2;
    }
    .board_list td.writer {
        order: 3;
        width: 100%;
    }
    .board_list td.file {
        order: 4;
    }
    .board_list td.file:not(:has(.fileCon)) {
        display: none;
    }
    .board_list td.file .fileCon {
        width: 20px; height: 20px;
    }
    .board_list td.date {
        order: 5;
        width: 100%;
    }
    .board_list td.view{
        order: 6;
        width: 100%;
    }
    .board_list tbody td:not(.subject, .num){
        padding-left: 55px;
        position: relative;
    }
    .board_list tbody td:not(.subject , .num)::after{
        content: 'tit';
        position: absolute;
        top: 50%; left: 0;
        transform: translateY(-50%);
        display: block;
        font-size: 14px;
        letter-spacing: -0.7px;
    }
    .board_list tbody td.writer::after{
        content: '작성자';
    }
    .board_list tbody td.file::after{
        content: '첨부';
    }
    .board_list tbody td.date::after{
        content: '등록일';
    }
    .board_list tbody td.view::after{
        content: '조회';
    }
    .board_list tbody td:not(.subject, .num)::before{
        content: '';
        position: absolute;
        top: 50%; left: 47px;
        transform: translateY(-50%);
        display: block;
        width: 1px; height: 10px;
        background-color: #C6C6C6;
    }
    /* board status */
    .board_list td.status {
        order: 7;
    }
    .board_list.qna tbody td.status::after{
        content: '진행현황';
    }
    .board_list.qna tbody td:not(.subject, .num)::before{
        left: 58px;
    }
    .board_list.qna tbody td:not(.subject, .num){
        padding-left: 66px;
    }
    .board_list.qna tbody tr.board_null td{
        padding-left: 0px;
    }
}

/* ** board list ** */

/* ** board list - photo ** */
.img_list>ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
}
.img_list>ul>li>.inbox .imgbox {
    border: 1px solid #D8D8D8;
    background: #F0F0F0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding-bottom: 66.67%;
}
.img_list>ul>li>.inbox .imgbox::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66.592px;
    height: 65px;
    background-image: url(../images/sub/board/img_nodata_photo.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}
.img_list>ul>li>.inbox .imgbox .img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.img_list>ul>li>.inbox .txtbox {
    margin-top: 16px;
}
.img_list>ul>li>.inbox .txtbox .title {
    color:#555;
    font-weight: 700;
    width: 100%;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.img_list>ul>li>.inbox .txtbox .sub_info{
    margin-top: 4px;
}
.img_list>ul>li>.inbox .txtbox .sub_info .date {
    color: #555555;
}
.img_list:not(.product)>ul>li>.inbox:hover .txtbox .title,
.img_list:not(.product)>ul>li>.inbox:focus-visible .txtbox .title{
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #003985 ;
}
@media screen and (max-width:1279px) {
    .img_list>ul {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:767px) {
    .img_list>ul {
        grid-template-columns: 1fr;
    }
}
/* ** board list - photo ** */



/* ** board null ** */
.board_list tbody tr.board_null{
    padding: 0;
}
.board_list tbody tr.board_null td{
    padding: 60px 16px;
    width: 100%;
}
.board_list tbody tr.board_null td > span {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding-left: 28px;
    position: relative;
}
.board_list tbody tr.board_null td > span::before{
    content: '';
    display: block;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    background-image: url(../images/sub/board/ico_nodata.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.img_list .nodata{
    border-top: solid 2px #003985;
    border-bottom: solid 1px #D8D8D8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 16px;
}
.img_list .nodata span {
    letter-spacing: -0.7px;
    padding-left: 28px;
    position: relative;
}
.img_list .nodata li span::before{
    content: '';
    display: block;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    background-image: url(../images/sub/board/ico_nodata.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
@media screen and (max-width:1279px) {
    .board_list tbody tr.board_null td{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .board_list tbody tr.board_null td:before,
    .board_list tbody tr.board_null td:after{
        display: none;
    }
}
/* ** board null ** */



/* ** pagination ** */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    margin-top: 40PX;
}
.pagination .page-navi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-indent: -9999px;
    overflow: hidden;
}
.pagination .page-navi.prev {
    background-image: url(../images/sub/board/ico_page_prev.svg);
}
.pagination .page-navi.first {
    background-image: url(../images/sub/board/ico_page_first.svg);
}
.pagination .page-navi.next {
    background-image: url(../images/sub/board/ico_page_next.svg);
}
.pagination .page-navi.last {
    background-image: url(../images/sub/board/ico_page_last.svg);
}
.pagination .page-navi.prev:hover,
.pagination .page-navi.prev:focus-visible,
.pagination .page-navi.prev:active{
    transition: all 0.3s;
    background-image: url(../images/sub/board/ico_page_prev_line.svg);
}
.pagination .page-navi.first:hover,
.pagination .page-navi.first:focus-visible,
.pagination .page-navi.first:active{
    transition: all 0.3s;
    background-image: url(../images/sub/board/ico_page_first_line.svg);
}
.pagination .page-navi.next:hover,
.pagination .page-navi.next:focus-visible,
.pagination .page-navi.next:active{
    transition: all 0.3s;
    background-image: url(../images/sub/board/ico_page_next_line.svg);
}
.pagination .page-navi.last:hover,
.pagination .page-navi.last:focus-visible,
.pagination .page-navi.last:active{
    transition: all 0.3s;
    background-image: url(../images/sub/board/ico_page_last_line.svg);
}
.pagination .page-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
    margin: 0 8px;
}
.pagination .page-links .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    color: #555555;
    width: 32px;
    height: 32px;
    padding: 6px 0;
    font-weight: 400;
    line-height: 150%;
}
.pagination .page-links .page-link:hover,
.pagination .page-links .page-link:focus-visible,
.pagination .page-links .page-link:active,
.pagination .page-links .page-link.active {
    font-weight: 700;
    color: #1D1D1D;
    border-bottom: 2px solid #FF8A00;
    transition: all 0.3s;
}
@media screen and (max-width:767px) {
    .pagination .page-links{
        flex-wrap: wrap;
    }
    .pagination{
        margin-top: 24px;
    }
}
/* ** pagination ** */



/* ** board read ** */
.board_read .title {
    padding: 24px;
    border-radius: 16px;
    background: #F8F8F8;
}
.board_read .title .tit {
    max-width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #1D1D1D;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 150%;
    -webkit-line-clamp: 2;
}
.board_read .info {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #C6C6C6;
}
.board_read .info > span {
    display: inline-flex;
    gap: 8px;
    position: relative;
    font-size: 16px;
    color: #717171;
    font-weight: 400;
    line-height: 150%;
}
.board_read .info > span > span + span {
    color: #1D1D1D;
    position: relative;
}
.board_read .info > span > span + span::before {
    content: '';
    display: block;
    position: absolute;
    right: -16px; top: 3px;
    width: 1px; height: 16px;
    background-color: #D8D8D8;
}
.board_read .info > span:last-child > span + span::before {
    display: none;
}
.board_read .detail {
    word-break: break-all;
    min-height: 300px;
    padding: 40px 0;
    color: #1D1D1D;
    font-weight: 400;
    font-size: 16px;
}
.board_read .detail > * {
    max-width: 100%;
}
.board_read .detail .imgbox{
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 53.19%;
    margin: 40px 0;
}
.board_read .detail .imgbox .img{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
/* answer */
.board_read .answer{
    padding: 24px;
    border-radius: 16px;
    background: #EDF7FA;
    margin-bottom: 40px;
}
.board_read .answer article{
    display: block;
}
.board_read .answer .title{
    padding: 0;
    background: none;
}
.board_read .answer .title > h1{
    font-size: 18px;
    font-weight: 700;
    line-height: 26px; /* 144.444% */
    padding-left: 30px;
    position: relative;
}
.board_read .answer .title > h1::before{
    content: '';
    position: absolute;
    left: 0px; top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 10px;
    background-image: url(../images/sub/ico_subtit_l.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.board_read .answer .info{
    margin-top: 16px;
    padding: 8px 20px;
    border: none;
    border-bottom: 1px solid #D8D8D8;
    background: #FFF;
    gap: 20px;
    border-radius: 12px 12px 0 0;
}
.board_read .answer .info > span{
    color:  #555;
    font-weight: 400;
    letter-spacing: -0.8px;
}
.board_read .answer .info > span.date{
    position: relative;
}
.board_read .answer .info > span.date::before{
    position: absolute;
    content: '';
    width: 1px;
    height: 10px;
    background: #C6C6C6;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}
.board_read .answer .detail{
    background-color: #fff;
    padding: 16px 20px;
    min-height: auto;
    border-radius: 0 0 12px 12px;
}
.board_read .answer .detail p{
    color: #1D1D1D;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
}
.board_read .answer .detail > .attach{
    margin: 0px;
    margin-top: 16px;
}
.board_read .answer .detail > .attach{
    padding: 20px;
}
/* answer */

/* ** board read ** */


/* ** board attach ** */
.board_read .attach {
    background: #fff;
    margin-bottom: 40px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #D8D8D8;
}
.board_read .attach .attact-tit{
    padding-bottom: 20px;
    border-bottom: 1px solid #C6C6C6;
    display: flex;
    align-items: center;
    gap: 4px;
}
.board_read .attach .attact-tit span.ico_file{
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/sub/board/ico_file.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.board_read .attach .attact-tit span.tit{
    color: #1D1D1D;
    font-size: 16px;
    font-weight: 700;
}
.board_read .attach .attach-list {
    padding-top: 20px;
}
.board_read .attach .attach-list li {
    display: flex;
    flex-wrap: nowrap;
}
.board_read .attach .attach-list li > a {
    display: inline-flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center left;
    width: calc(100% - 112px);
    padding-right: 16px;
}
.board_read .attach .attach-list li + li {
    margin-top: 16px;
}
.board_read .attach .attach-list li span {
    overflow: hidden;
    color: #1D1D1D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.board_read .attach .attach-list li .name {
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-left: 24px;
    position: relative;
    padding-right: 5px;
}
.board_read .attach .attach-list li .name::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
}
.board_read .attach .attach-list li .name.pdf::before{
    background-image: url(../images/sub/board/ico_pdf.svg);
}
.board_read .attach .attach-list li .name.hwp::before{
    background-image: url(../images/sub/board/ico_hwp.svg);
}
.board_read .attach .attach-list li .name.word::before{
    background-image: url(../images/sub/board/ico_word.svg);
}
.board_read .attach .attach-list li .name.ppt::before{
    background-image: url(../images/sub/board/ico_ppt.svg);
}
.board_read .attach .attach-list li .name.xlsx::before{
    background-image: url(../images/sub/board/ico_xlsx.svg);
}
.board_read .attach .attach-list li .name.zip::before{
    background-image: url(../images/sub/board/ico_zip.svg);
}
.board_read .attach .attach-list li .name.otherfile::before{
    background-image: url(../images/sub/board/ico_otherfile.svg);
}
.file_down_box{
    display: flex;
    align-items: center;
}
.file_down_box > button,
.download.file{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96px;
    height: 100%;
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid #D8D8D8;
    background: #fff;
    font-size: 14px;
}
.file_down_box > button > span,
.download.file > span{
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/sub/board/ico_download.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.attach-list > li > a > span.name:hover,
.attach-list > li > a > span.name:focus-visible{
    text-decoration: underline;
    text-underline-offset: 3px;
}
.file_down_box > button:hover,
.file_down_box > button:focus-visible,
.download.file:hover,
.download.file:focus-visible{
    text-decoration: underline;
    text-underline-offset: 3px;
    background: #F3FCFE;
}
.download.file{
    margin: auto;
}
/* ** board attach ** */

/* ** board write ** */
.board_read.write .qnaBox + .qnaBox{
    margin-top: 16px;
}
.qna_tit,
.qna_text,
.qna_file{
    border-radius: 16px;
    background: #F8F8F8;
    padding: 16px;
}
.qna_tit > .subtit_m,
.qna_text > .subtit_m{
    margin-top: 0px;
}
.qna_tit > input{
    margin-top: 16px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #D8D8D8;
    background: #FFF;
}
.qna_text > textarea{
    width: 100%;
    height: 300px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #D8D8D8;
    background: #FFF;
    resize: none;
    margin-top: 16px;
}
.qna_tit > input::placeholder,
.qna_text > textarea::placeholder{
    color: #8E8E8E;
}
/* file */
.qna_file > div{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.fileBox{
    display: flex;
    align-items: center;
    gap: 10px;
}
.fileBox > .btn_search_file{
    border-radius: 12px;
    background: #00937F;
    display: flex;
    width: 96px;
    height: 43px;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    color: #fff;
    font-size: 18px;
}
.fileBox > .txt_file{
    color: #717171;
    font-size: 14px;
}
.file_inputs{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #C6C6C6;
}
.file_inputs > .file_name_box{
    display: flex;
    align-items: center;
    gap: 6px;
}
.file_inputs > .file_name_box > .file_name_txt{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 14px;
    max-width: calc(100% - 20px);
}
.file_inputs > .file_name_box > .btn_remove{
    width: 14px;
    height: 14px;
    position: relative;
}
.file_inputs > .file_name_box > .btn_remove > .img{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background: url(../images/sub/board/ico_removebtn.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.file_inputs > .file_name_box :hover{
    text-decoration: underline;
    text-underline-offset: 3px;
}
/* ** board write ** */

@media screen and (max-width:767px) {
    .board_read .title .tit{
        font-size: 20px;
    }
    .board_read .info {
        gap: 8px 16px;
        flex-wrap: wrap;
    }
    .board_read .info > span > span + span::before {
        right: -8px;
    }
    .board_read .detail{
        padding : 24px 0;
    }
    .board_read .detail .imgbox{
        margin: 24px 0;
    }
    .board_read .answer{
        padding: 16px;
        margin-bottom: 24px;
    }
    .board_read .attach{
        padding: 20px;
        margin-bottom: 24px;
    }
    .board_read .attach .attach-list li{
        flex-wrap: wrap;
    }
    .board_read .attach .attach-list li > a{
        width: 100%;
        padding-right: 0px;
    }
    .file_down_box{
        margin-top: 12px;
    }
}

/* ** tbl pager ** */
.tbl-pager {
    table-layout: fixed;
    border-collapse: separate;
    width: 100%;
    border: 1px solid #D8D8D8;
    border-radius: 16px;
    overflow: hidden;
}
.tbl-pager tr{
    display: flex;
}
.tbl-pager th{
    padding: 16px 24px;
    height: 100%;
    vertical-align: middle;
}
.tbl-pager th span {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    display: inline-block;
    vertical-align: middle;
    color: #1D1D1D;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 24px;
    padding-left: 56px;
}
.tbl-pager .prev th span {
    background-image: url(../images/sub/board/ico_pager_arrowUp.svg);
}
.tbl-pager .next th span {
    background-image: url(../images/sub/board/ico_pager_arrowDown.svg);
}
.tbl-pager .prev.nodata th span {
    background-image: url(../images/sub/board/ico_pager_Nodata_arrowDown.svg);
}
.tbl-pager .next.nodata th span {
    background-image: url(../images/sub/board/ico_pager_Nodata_arrowUp.svg);
}
.tbl-pager td {
    position: relative;
    overflow: hidden;
    padding: 16px 0px;
    padding-right: 16px;
    width: 100%;
}
.tbl-pager td span {
    overflow: hidden;
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
.tbl-pager tr td a {
    display: inline-flex;
    align-items: center;
    width: 100%;
}
.tbl-pager tr+tr th,
.tbl-pager tr+tr td {
    border-top: 1px solid #D8D8D8;
}
.tbl-pager tr:not(.nodata):hover,
.tbl-pager tr:not(.nodata):focus-visible{
    background-color: #F8F8F8;
}
.tbl-pager tr:not(.nodata):hover td > a > span,
.tbl-pager tr:not(.nodata):focus-visible td > a > span{
    text-decoration: underline;
    text-underline-offset: 3px;
}
.tbl-pager .next.nodata th span,
.tbl-pager .next.nodata td span,
.tbl-pager .prev.nodata th span,
.tbl-pager .prev.nodata td span{
    color: #8E8E8E;
}
@media screen and (max-width:767px) {
    .tbl-pager th {
        padding: 16px 16px;
    }
    .tbl-pager th span{
        padding-left: 32px;
        background-size: 20px;
    }

}
/* ** tbl pager ** */


/* ** btn group ** */
.board_read > .btn-group {
    margin-top: 40px;
}
.board_read > .btn-group > .btn-group-inr > .btn.list{
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background-color: #003985;
    color: #fff;
    margin: auto;
}
.board_read > .btn-group > .btn-group-inr > .btn.list:hover,
.board_read > .btn-group > .btn-group-inr > .btn.list:focus-visible{
    background-color: #002455;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.board_read > .btn-group > .btn-group-inr > .btn.list:active{
    background: #002455;
}
/* btn - write */
.btn{
    display: flex;
    align-items: center;
    /* margin-top: 24px; */
}
.btn.end{
    justify-content: flex-end;
}
.btn .write,
.btn .btn-apply{
    border-radius: 12px;
    border: 1px solid #003985;
    background: #FFF;
    display: flex;
    padding: 8px 16px;
    align-items: center;
}
.btn .delete{
    border-radius: 12px;
    border: 1px solid #FF0000;
    background: #FFF;
    display: flex;
    padding: 8px 16px;
    align-items: center;
}
.btn .delete > span.tit{
    color: #FF0000;
    font-weight: 400;
}
.btn > .write > span.ico,
.btn .btn-apply > span.ico{
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url(../images/sub/board/ico_write.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.btn > .write > span.tit,
.btn .btn-apply > span.tit{
    color: #003985;
    font-weight: 400;
}
.btn .write:hover,
.btn .write:focus-visible,
.btn .write:active,
.btn .btn-apply:hover,
.btn .btn-apply:focus-visible,
.btn .btn-apply:active{
    background: #EDF7FA;
}
.btn .write:hover:not(:active) span.tit,
.btn .write:focus-visible:not(:active) span.tit,
.btn .btn-apply:hover:not(:active) span.tit,
.btn .btn-apply:focus-visible:not(:active) span.tit{
    text-decoration: underline;
    text-underline-offset: 3px;
}
/* btn - space_between */
.btn.space_between.board_write{
    margin-top: 40px;
}
.btn.space_between{
    justify-content: space-between;
}
.board_write > a{
    display: flex;
    width: 100px;
    height: 40px;
    justify-content: center;
    align-items: center;
}
.board_write > .list{
    border-radius: 12px;
    background: #003985;
    color: #fff;
}
.board_write > .list:hover,
.board_write > .list:focus-visible,
.board_write > .list:active{
    background: #002455;
}
.board_write > .list:hover:not(:active) span,
.board_write > .list:focus-visible:not(:active) span{
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media screen and (max-width: 767px) {
    .btn > .write{
        width: 100%;
        justify-content: center;
    }
    .btn.space_between.board_write{
        margin-top: 24px;
    }
    .btn.space_between{
        justify-content: center;
        gap: 16px;
    }
    .board_write > .write{
        width: 100px;
        height: 40px;
    }
    .board_write > .none{
        display: none;
    }
    .w100{
        width: 100%;
        justify-content: center;
    }
}
/* ** btn group ** */



/* ** search ** */
/* 검색 상단 */
.total-search-top-box {
    position: relative;
}
.total-search-top-box::after {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    content: "";
    width: 100%;
    height: 100%;
    background-color: #F8F8F8;
    border-radius: 16px;
}
.total-search-top-box > .inner {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 24px;
}
.total-search-top-box > .inner .sch-form-wrap {
    display: flex;
}
.total-search-top-box > .inner .sch-form-wrap input{
    padding: 12px 16px;
    width: 294px;
    height: 45px;
    border: 1px solid #D8D8D8;
    border-right: none;
    border-radius: 12px 0px 0px 12px;
}
.total-search-top-box > .inner .sch-form-wrap button{
    width: 45px;
    height: 45px;
    padding: 10px;
    background: #10BB98;
    border-radius: 0px 12px 12px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.total-search-top-box > .inner .sch-form-wrap button > span{
    display: inline-block;
    width: 21px;
    height: 21px;
    background: url(../images/sub/ico_search.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* 검색 상단 */

/* 검색 txt */
.search_info_box{
    text-align: center;
    margin: 40px 0;
}
.search_info_box > p{
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -1px;
}
.search_info_box > p > span{
    color: #003985;
    font-weight: 700;
}
.search_info_box > p > span > em {
    color: #003985;
    font-weight: 700;
    letter-spacing: -0.8px;
    font-size: 16px;
}
/* 검색 txt */

/* 리스트 상단 */
.tab-conts-wrap .search-list-top{
    margin-top: 60px;
}
.tab-conts-wrap .search-list-top.first{
    margin-top: 40px;
}
.tab-conts-wrap .search-list-top .sch-info{
    display: flex;
    color: #00937F;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px; /* 130% */
    letter-spacing: -1px;
}
.tab-conts-wrap .search-list-top .sch-info > h3{
    color: #1D1D1D;
    margin-right: 4px;
}
/* 리스트 상단 */

/* 통합검색 : 결과 리스트 */
.total-search-list .li .keyword {
    color: #172D9D;
}
.total-search-list .li {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border: 1px solid #D8D8D8;
    background-color: #fff;
    border-radius: 16px;
    margin-top: 16px;
}
.total-search-list.menu .li {
    padding: 16px 24px;
}
.total-search-list .info-body .tit {
    font-weight: 700;
    text-overflow: ellipsis;
    line-height: 150%;
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    letter-spacing: -0.8px;
}
.total-search-list .info-body .in{
    margin-top: 10px;
}
.total-search-list .info-body .txt {
    color: #555555;
    font-weight: 500;
    letter-spacing: -0.8px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 48px;
}
.total-search-list .info-btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.total-search-list .info-btm .i-cate {
    display: flex;
    align-items: center;
    gap: 24px;
}
.total-search-list .info-btm .i-cate li {
    display: inline-flex;
    align-items: center;
    position: relative;
}
.total-search-list .info-btm .i-cate li:not(:first-child)::before {
    display: inline-flex;
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(../images/sub/ico_search_arrow_right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
}
.total-search-list .info-btm .i-cate .span {
    font-weight: 500;
    color: #555555;
}
.news_date{
    color: #555555;
    letter-spacing: -0.8px;
}
.total-search-list.menu .li .i-cate a{
    margin-right: 24px;
    position: relative;
}
.total-search-list.menu .li .i-cate a:not(:first-child)::before{
    display: inline-flex;
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(../images/sub/ico_search_arrow_right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: -20px;
    top: 2px;
}
/*  통합검색 - No Data */
.total-search-list.nodata .li{
    padding: 60px 16px;
    align-items: center;
    gap: 4px;
}
.total-search-list.nodata .li > .img_box{
    width: 60px;
    height: 60px;
}
.total-search-list.nodata .li > .img_box > .img{
    width: 100%;
    height: 100%;
    background-image: url(../images/board/ico_search_nodata.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.total-search-list.nodata .li .text > p{
    font-size: 14px;
    letter-spacing: -0.7px;
}
/* 통합검색 : 결과 리스트 */

.total-search-list:not(.nodata) .li:hover,
.total-search-list:not(.nodata) .li:focus-visible{
    background-color: #F8F8F8;
    cursor: pointer;
}
.total-search-list:not(.nodata) .li:hover .tit,
.total-search-list:not(.nodata) .li:focus-visible .tit,
.total-search-list:not(.nodata).menu .li:hover .i-cate a:last-child {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media screen and (max-width: 767px) {
    .total-search-top-box > .inner .sch-form-wrap input{
        width: 100%;
    }
    .search_info_box{
        margin: 32px 0;
    }
    .tab-conts-wrap .search-list-top,
    .tab-conts-wrap .search-list-top.first{
        margin-top: 32px;
    }
    .tab-conts-wrap .search-list-top .sch-info{
        font-size: 18px;
    }
    .total-search-list .li {
        gap: 16px;
        padding: 20px;
    }
    .total-search-list .info-body .in{
        margin-top: 6px;
    }
    .total-search-list .info-btm{
        flex-direction: column;
        align-items: start;
        gap: 10px;
    }

}
/* ** search ** */


/* datepicker */
.form_container .form_inr .form-group input.datepicker{
    width: 100%;
    height: 45px;
    padding: 12px;
    border-radius: 12px !important;
    border: 1px solid #D8D8D8;
    background: #FFF;
    background-image: url(../images/sub_e/sub_01/ico_calendar.svg);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}
.datepicker:focus{
    outline: none;
}
.datepicker::placeholder{
    color: #717171;
    font-size: 14px;
}
.form_container .form_inr .form-group .input_box.mgb8{
    margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
    .form_container .form_inr:not(.btn_wrap){
        flex-direction: column;
    }
    .form_container .form_inr .form-group{
        width: 100%;
    }
    .form_container .form_inr .form-group .input_box{
        height: auto !important;
    }
    .form_container .form_inr .form-group.flex_row{
        flex-direction: column;
        gap: 20px;
    }
    .form-group.flex_row > div,
    .form-group.flex_row > div:first-child{
        width: 100%;
    }
    .form_container .form_inr .form-group .input_box.calendar{
        flex-direction: column;
    }
    .form_container .form_inr .form-group .input_box.calendar span{
        display: none;
    }
    .titleBox{
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ** 기간제 교원 지원서 등록 ** */


/* ** 공구 대여 ** */
.img_list.product > ul:not(.nodata) > li{
    border: 1px solid #D8D8D8;
    border-radius: 16px;
    background: #FFF;
    overflow: hidden;
}
.img_list.product>ul>li>.inbox .imgbox {
    border-radius: 16px 16px 0px 0px;
    border: none;
    border-bottom: 1px solid #D8D8D8;
}
.img_list.product>ul>li>.inbox .txtbox {
    margin-top: 0px;
    padding: 16px 20px;
}
.img_list.product>ul>li>.inbox .txtbox .sub_info{
    margin-top: 8px;
}
.img_list.product>ul>li>.inbox .txtbox .sub_info p + p{
    margin-top: 4px;
}
.img_list.product>ul>li>.inbox .txtbox .sub_info p span{
    color: #555;
}
.img_list.product>ul>li>.inbox .txtbox .sub_info p .tit{
    display: inline-block;
    width: 45px;
    margin-right: 17px;
    position: relative;
}
.img_list.product>ul>li>.inbox .txtbox .sub_info p .tit::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 12px;
    background: #D8D8D8;
    top: 50%;
    right: -9px;
    transform: translateY(-50%);
}
.img_list.product>ul>li>.inbox:hover .imgbox .img,
.img_list.product>ul>li>.inbox:focus-visible .imgbox .img{
    transform: translate(-50%, -50%) scale(1.05);
    transition: all 0.3s ease;
}
.img_list.product>ul>li>.inbox:hover .imgbox .img::before,
.img_list.product>ul>li>.inbox:focus-visible .imgbox .img::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4 );
    transition: all 0.3s ease;
}
/* ** 공구 대여 ** */


/* ** 마이페이지 ** */

/*  검색 상단 - search */
.total-search-top-box.type_search{
    margin-bottom: 40px;
}
.total-search-top-box.type_search::after {
    background-color: #F6FDFF;
    border: 1px solid #D8D8D8;
}
@media screen and (max-width: 767px) {
    .total-search-top-box.type_search > .inner{
        padding: 16px;
    }
    .total-search-top-box.type_search{
        margin-bottom: 24px;
    }
    .type_search .board_Search{
        flex-direction: column;
    }
    .type_search .board_Search .select{
        width: 100%;
    }
    .type_search .board_Search .search {
        width: 100%;
    }
}
/*  검색 상단 - search */


/* ** 기간제 교원 지원서 등록  ** */
.board_list td.application_View a{
    border-radius: 8px;
    background: #003985;
    display: block;
    width: 73px;
    height: 32px;
    line-height: 32px;
    font-weight: 500;
    color: #fff;
    display: block;
}
.board_list td.application_View a:hover,
.board_list td.application_View a:focus-visible{
    background: #002455;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.board_list td.application_View a:active{
    background: #002455;
}
@media screen and (max-width:1279px) {
    .board_list.type_mypage tbody td{
        width: 100%;
    }
    .board_list.type_mypage tbody td{
        padding-left: 77px;
    }
    .board_list.type_mypage tbody td::before{
        left: 68px;
    }
    .board_list.type_mypage tbody td.date{
        order: 1;
    }
    .board_list.type_mypage tbody td.field{
        order: 2;
    }
    .board_list.type_mypage tbody td.school{
        order: 3;
    }
    .board_list.type_mypage tbody td.education_subject{
        order: 4;
    }
    .board_list.type_mypage tbody td.status{
        order: 5;
    }
    .board_list.type_mypage tbody td.application_View{
        order: 6;
    }
    .board_list.type_mypage tbody td.date::after{
        content: "제 출 일";
    }
    .board_list.type_mypage tbody td.field::after{
        content: "지원 분야";
    }
    .board_list.type_mypage tbody td.school::after{
        content: "지원 학교";
    }
    .board_list.type_mypage tbody td.education_subject::after{
        content: "과  목";
    }
    .board_list.type_mypage tbody td.status::after{
        content: "진행 현황";
    }
    .board_list.type_mypage tbody td.application_View::after{
        content: "지원서 조회";
    }
    /* 배움터지킴이 */
    .board_list.type_mypage tbody td.event_title{
        order: 2;
    }
    .board_list.type_mypage tbody td.activity_area{
        order: 3;
    }
    .board_list.type_mypage tbody td.education_level{
        order: 4;
    }
    .board_list.type_mypage tbody td.event_title::after{
        content: "활 동 명";
    }
    .board_list.type_mypage tbody td.activity_area::after{
        content: "활동 지역";
    }
    .board_list.type_mypage tbody td.education_level::after{
        content: "학교급";
    }
}
/* ** 기간제 교원 지원서 등록  ** */

/* 기간제 교원 지원서 조회 */
.table_data_row th:has(.imgBox.use_photo){
    padding: 0;
}
.imgBox.use_photo{
    width: 100%;
    height: 100%;
    border: solid 1px #D8D8D8;
    border-top: none;
    border-bottom: none;
    background-color: #FFF;
    min-height: 192px;
    background-image: url();
}
.subtit_l_con .text{
    padding-left: 20px;
}
.btn-group.btns{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.btn-group.btns a{
    width: 87px;
    display: flex;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 14px;
    margin-top: 0;
}
.btn-group.btns a.edit{
    border: 1px solid #003985;
    background: #FFF;
    color: #003985;
}
.btn-group.btns a.cancel{
    background: #003985;
    color: #fff;
}
.btn-group.btns.long a{
    width: 129px;
}
.btn-group.btns a:hover:not(:active),
.btn-group.btns a:focus-visible:not(:active){
    text-decoration: underline;
    text-underline-offset: 3px;
}
.board_read .attach.margin{
    margin-bottom: 0px;
    margin-top: 16px;
}
.btn-group.btns a.edit:hover,
.btn-group.btns a.edit:focus-visible{
    background: #EDF7FA;
}
.btn-group.btns a.cancel:hover,
.btn-group.btns a.cancel:focus-visible{
    background: #002455;
}
/* 기간제 교원 지원서 조회 */

/* ** 마이페이지 ** */

/* 기간제 교원 채용 */
.info_box{
    border-radius: 16px;
    border: 2px solid rgba(0, 147, 127, 0.30);
    /* background:  #FFF; */
    display: flex;
    padding: 32px;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 40px;
    background-image: url(../images/sub/img_info_bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
}
.info_box .img_box{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(0, 147, 127, 0.16);
    background: #EBF8F5;
    position: relative;
}
.info_box .img_box .img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-image: url(../images/sub/ico_info.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.info_box .text_box{
    width: calc(100% - 70px);
}
.info_box .text_box .tit{
    font-size: 24px;
    font-weight: 700;
}
.subtit_s.col_orange::before{
    background-color: #FF8A00;
}
.total-search-top-box.type_03,
.total-search-top-box.type_04{
    margin-bottom: 40px;
}
.total-search-top-box.type_03::after,
.total-search-top-box.type_04::after{
    background-color: #F6FDFF;
    border: 1px solid #D8D8D8;
}
.select.type_03,
.select.type_04{
    width: 160px;
}
/* board_list */
.board_list.type_03 th {
    padding: 16px 12px;
    font-size: 14px;
}
.board_list.type_03 td{
    padding: 16px 12px;
}
.board_list.type_03 td span{
    -webkit-line-clamp: 3;
    white-space: normal;
    font-size: 14px;
}
.board_list.type_03 td.recruit_status span,
.board_list.type_03 td.column_application_status span,
.board_list.type_03 td.column-application-status span{
    display: flex;
    width: 54px;
    height: 29px;
    line-height: 29px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: 500;
}
.board_list.type_03 td.column_application_status span,
.board_list.type_03 td.recruit_status span,
.board_list.type_03 td.column-application-status span{
    background: #DFF5F1;
    margin: auto;
}
.board_list.type_03 td.column-application-status.pending span{
    background: #F0F0F0;
}
.board_list.type_03 td.recruit_status.closed span{
    background: #E4E4E4;
}
.board_list.type_03 td.recruit_status.upcoming span{
    background: #DDF3FF;
}
.board_list.type_03 tbody td.recruit_status.open:has(.btn-apply) span{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #DDF3FF;
    margin: auto;
}
.board_list.type_03 tbody td.recruit_status.open:has(.btn-apply) span > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.board_list.type_03 tbody td.recruit_status.open:has(.btn-apply) span > a:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/board/ico_recStatusApply.svg);
    background-repeat: no-repeat;
    background-position: top 2px center;
    background-size: cover;
}
.board_list.type_03 .check input[type="checkbox"]{
    display: none;
}
.board_list.type_03 .check .check_box{
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 1px solid #C6C6C6;
    background: #FFF;
    display: flex;
}
.board_list.type_03 .check input[type="checkbox"]:checked + .check_box {
    border: 1px solid #003985;
    background-image: url(../images/sub/board/ico_check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px 7px;
}
.board_Search.type_03 .select_box{
    display: flex;
    gap: 8px;
}
.board_list.type_03.swimming td span{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media screen and (max-width: 1279px) {
    .board_Search.type_03{
        flex-direction: column;
        width: 100%;
    }
    .board_Search.type_03 .select_box{
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 8px;
    }
    .board_Search.type_03 .select.type_03{
        width: 33%;
    }
    .board_Search.type_03 .search .inputText{
        width: 100%;
    }
    .board_Search.type_03 .search .inputText > input{
        width: 100%;
    }
    .board_list.type_03 tbody tr{
        position: relative;
        padding: 16px 0;
    }
    .board_list.type_03 tbody td{
        padding: 0;
        padding-left: 158px;
        width: 100%;
    }
    .board_list.type_03 tbody td.check{
        position: absolute;
        left: 0;
        top: 16px;
        padding: 0;
        z-index: 1;
        width: 18px;
    }
    .board_list.type_03 tbody td.check::after,
    .board_list.type_03 tbody td.check::before{
        display: none;
    }
    .board_list.type_03 tbody td::after{
        left: 34px;
    }
    .board_list.type_03 tbody td::before{
        left: 149px;
    }
    .board_list.type_03 tbody td.num {
        display: inline-flex;
        order: 1;
    }
    .board_list.type_03 tbody td.school_grade {
        order: 2;
    }
    .board_list.type_03 tbody td.school_name {
        order: 3;
    }
    .board_list.type_03 tbody td.education_subject {
        order: 4;
    }
    .board_list.type_03 tbody td.recruit_qualification {
        order: 5;
    }
    .board_list.type_03 tbody td.recruit_period {
        order: 6;
    }
    .board_list.type_03 tbody td.recruit_number {
        order: 7;
    }
    .board_list.type_03 tbody td.recruit_status {
        order: 8;
    }
    .board_list.type_03 tbody td.recruit_status > span {
        margin: initial;
    }
    .board_list.type_03 tbody td.recruit_status.open:has(.btn-apply) span {
        margin: initial;
    }
    .board_list.type_03 tbody td.num::after{
        content: '연번';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        font-size: 14px;
        letter-spacing: -0.7px;
        left: 34px;
    }
    .board_list.type_03 tbody td.num::before{
        content: '';
        position: absolute;
        top: 50%;
        left: 149px;
        transform: translateY(-50%);
        display: block;
        width: 1px;
        height: 10px;
        background-color: #C6C6C6;
    }
    .board_list.type_03 tbody td.school_grade::after{
        content: '학교급';
    }
    .board_list.type_03 tbody td.school_name::after{
        content: '학교명';
    }
    .board_list.type_03 tbody td.education_subject::after{
        content: '자격·교과';
    }
    .board_list.type_03 tbody td.recruit_qualification::after{
        content: '지원가능자격(교과)';
    }
    .board_list.type_03 tbody td.recruit_period::after{
        content: '채용기간';
    }
    .board_list.type_03 tbody td.recruit_number::after{
        content: '모집인원';
    }
    .board_list.type_03 tbody td.recruit_status::after{
        content: '접수현황';
    }
    .board_list.type_03 tbody td.column_region::after{
        content: '접수현황';
    }
    .board_list.type_03 tbody td.column_school_count::after{
        content: '활동지구';
    }
    .board_list.type_03 tbody td.column_recruitment_count::after{
        content: '학교 수';
    }
    .board_list.type_03 tbody td.column_application_status::after{
        content: '접수 현황';
    }
    .board_list.type_03 tbody td.recruit_status:has(.btn-apply)::after{
        content: '접수';
    }
    .board_list.type_03 td.column_application_status span,
    .board_list.type_03 td.recruit_status.open span,
    .board_list.type_03 td.column-application-status span{
        margin: 0px;
    }
    .board_list.pgl_101 tbody td{
        padding-left: 101px;
    }
    .board_list.pgl_101 tbody td::before{
        left: 92px;
    }
    .board_list.pgl_101 tbody td.column_number{
        display: none;
    }
    .board_list.swimming tbody td.column-index{
        display: none;
    }
    .board_list.swimming tbody td{
        padding-left: 108px;
    }
    .board_list.type_03.swimming td.column-certification span{
        -webkit-line-clamp: 1;
        text-align: start;
    }
    .board_list.swimming tbody td::before{
        left: 99px;
    }
    .board_list.swimming tbody td.column-name::after{
        content: '성명';
    }
    .board_list.swimming tbody td.column-birth-year::after{
        content: '출생년도';
    }
    .board_list.swimming tbody td.column-gender::after{
        content: '성별';
    }
    .board_list.swimming tbody td.column-certification::after{
        content: '자격증/특기사항';
    }
    .board_list.swimming tbody td.column-contact::after{
        content: '연락처';
    }
    .board_list.swimming tbody td.column-date::after{
        content: '제출일';
    }
    .board_list.swimming tbody td.column-hiring-status::after{
        content: '채용 여부';
    }
    .board_list.swimming tbody td.column-application-status::after{
        content: '승인 상태';
    }
    .board_list.swimming tbody td::after{
        left: 0;
    }
}
@media screen and (max-width: 767px) {
    .info_box{
        margin-bottom: 24px;
    }
    .info_box .img_box{
        display: none;
    }
    .info_box .text_box{
        width: 100%;
    }
    .board_support{
        margin-bottom: 16px;
    }
    .total-search-top-box > .inner{
        padding: 16px;
    }
    .board_Search.type_03 .select_box{
        flex-direction: column;
    }
    .board_Search.type_03 .select.type_03{
        width: 100%;
    }
    .board_Search.type_03 .search{
        width: 100%;
    }
    .total-search-top-box.type_mypage{
        margin-bottom: 24px;
    }
    /* 배움터지킴이 선발 */
    .board_Search.type_04{
        flex-direction: column;
    }
    .select.type_04{
        width: 100%;
    }
    .board_Search.type_04 .search {
        width: 100%;
    }
}
/* 기간제 교원 채용 */


/* 기간제 교원 지원서 등록 */
.applicationInput {
}
.applicationInput table {
    width: 100%;
    width: calc(100% + 32px);
    table-layout: fixed;
    border-spacing: 16px;
    margin: -16px -16px 32px;
}
.applicationInput table tbody {
}
.applicationInput table tbody tr {
}
.applicationInput table tbody tr td {
    padding: 16px;
    background-color: #F8F8F8;
    border-radius: 16px;
    flex: 1;
}
.applicationInput .apc_wrap p.tit{
    color: #1D1D1D;
    font-weight: 500;
    margin-bottom: 8px;
}
.inputText{
    min-height: 43px;
    display: flex;
    align-items: center;
}
.inputText > input {
    border: 1px solid #D8D8D8;
    padding: 12px 16px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    color: #1D1D1D;
}
.inputText > input::placeholder{
    color: #8E8E8E;
}
.inputText > input:focus{
    outline-color: #717171;
    outline-width: 1px;
}
/*  인적 사항 - 성별 + 취업지원대상자 여부 + 학생보호인력 활동 유/무 + 안내문구 + 현재 채용상태 + 장애인 여부*/
.genderCheck,
.eligibility_checkbox,
.presenceCheck,
.infoMessage,
.statusCheck,
.disabilityCheck{
    display: flex;
    align-items: center;
    gap: 16px;
}
label.radio{
    color: #212121;
    font-size: 14px;
    font-weight: 400;
    padding-left: 28px;
    position: relative;
}
label.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
input[type="radio"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
}
label span.checkbox{
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    border: solid 1px #C6C6C6;
    background-color: #FFF;
}
label.radio input:checked ~ span.checkbox:after{
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/sub_e/sub_01/ico_check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/*  인적 사항 - 생년월일 */
.applicationInput .apc_wrap .yyyymmdd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.applicationInput .apc_wrap .yyyymmdd .select-group {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.applicationInput .apc_wrap .yyyymmdd .select {
    width: 107px;
}
.applicationInput .apc_wrap .yyyymmdd .select[data-group='sl_year'] {
    width: calc( 100% - 214px);
}
/*  인적 사항 - 주소 */
.applicationInput .apc_wrap .adress {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.applicationInput .apc_wrap .adress .adress_row {
    width: 100%;
}
.applicationInput td[colspan="1"] .apc_wrap .adress {
    width: 100%;
}
.applicationInput .apc_wrap .adress .adress_row .inputText {
    width: 100%;
    height: 45px;
    position: relative;
}
.applicationInput .apc_wrap .adress .adress_row .inputText.adress_search {
    display: flex;
    align-items: center;
}
.applicationInput .apc_wrap .adress .adress_row .inputText.adress_search input{
    width: calc(100% - 97px);
}
.applicationInput .apc_wrap .adress .adress_row .inputText input {
    width: 100%;
}
.applicationInput .apc_wrap .adress .adress_row .inputText.adress_search .btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 89px;
    height: 45px;
    border-radius: 12px;
    background: #00937F;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-weight: 500;
}
.photo .input_box{
    display: flex;
    align-items: center;
    gap: 8px;
}
.photo .input_box .imgBox{
    width: 93px;
    height: 100px;
    border-radius: 12px;
    background-color: #fff;
    border: solid 1px #D8D8D8;
    background-image: url(../images/sub_e/sub_01/img_photo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.photo .input_box .imgBox .img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.photo .input_box .textbox{
    width: calc(100% - 93px);
}
.photo .input_box .textbox .photo_btn{
    border-radius: 12px;
    padding: 8px 16px;
    background: #00937F;
    color: #FFF;
    font-size: 18px;
    margin-bottom: 8px;
}
.photo .input_box .textbox span{
    color: #717171;
    font-size: 14px;
}
/* 인적 사항 - 휴대전화 + 집전화 */
.applicationInput .apc_wrap .phoneInput,
.applicationInput .apc_wrap .homephoneInput {
    display: flex;
    align-items: center;
    gap: 8px;
}
.applicationInput .apc_wrap .phoneInput .select,
.applicationInput .apc_wrap .homephoneInput .select {
    margin-top: 0;
    width: 33%;
}
.applicationInput .apc_wrap .phoneInput .inputText,
.applicationInput .apc_wrap .homephoneInput .inputText{
    width: 33%;
    height: 45px;
}
/* 학력 - 학력 */
.inputText .select[data-group="sl_education"] ,
.inputText .select[data-group="sl_education_status"] {
    width: 100%;
}
.textArea .inputText .textarea_box{
    border:solid 1px #D8D8D8;
    width: 100%;
    padding: 12px 8px 12px 16px;
    background: #FFF;
    border-radius: 12px;
}
.textArea .inputText textarea{
    width: 100%;
    height: 127px;
    resize: none;
    border: none;
    background: #FFF;
    padding-right: 8px;
}
.textArea .inputText textarea:focus{
    outline: none;
}
.inputText .file_wrap{
    width: 100%;
    /* min-height: 151px; */
}
.inputText .file_wrap .fileBox{
    margin-bottom: 16px;
}
.title_box.application{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.title_box.application .btn_wrap{
    display: flex;
    gap: 12px;
}
.title_box.application .btn_wrap .btn{
    border-radius: 8px;
    border: 1px solid #D8D8D8;
    background: #FFF1F3;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 500;
}
.title_box.application .btn_wrap .btn.btn_add{
    background: #E9F2FB;
}
.title_box.application .btn_wrap .btn .ico{
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.title_box.application .btn_wrap .btn.btn_delete .ico{
    background-image: url(../images/sub_e/sub_99/ico_delete.svg);
}
.title_box.application .btn_wrap .btn.btn_add .ico{
    background-image: url(../images/sub_e/sub_99/ico_add.svg);
}
.extra_box{
    border:solid 1px black;
    border-radius: 20px;
    border: 1px solid #C6C6C6;
    padding: 16px 32px;
}
.extra_box table{
    margin: -16px -16px 0px;
}
.extra_box .table + .table{
    margin-top: 32px;
    padding-top: 32px;
    border-top: solid 1px #C6C6C6;
}
/* 경력 */
.title_box.application div{
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.title_box.application div .subnoti_red{
    margin-top: 0;
    transform: translateY(-3px);
}
.inputText .select[data-group="sl_teacher_type"]{
    width: 100%;
}
.work_period .apc_wrap{
    float: left;
}
.work_period .apc_wrap + .apc_wrap{
    margin-left: 40px;
    position: relative;
}
.work_period .apc_wrap + .apc_wrap::before{
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    background-color: #D8D8D8;
}
.inputText .calendar{
    display: flex;
    align-items: center;
    gap: 6px;
}
.inputText .calendar span{
    font-size: 14px;
    color: #1C1C1C;
}
.calendar .datepicker{
    width: 200px;
    height: 45px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid #D8D8D8;
    background: #FFF;
    background-image: url(../images/sub_e/sub_99/ico_calendar.svg);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}
.inputText .select[data-group="work_hours"]{
    width: 200px;
}
.work_period .apc_wrap.calculated_experience{
    height: 77px;
    width: calc(100% - 720px) ;
}
.work_period .apc_wrap.calculated_experience .inputText{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.work_period .apc_wrap.calculated_experience .inputText p{
    display: inline-block;
    color: #1C1C1C;
}
.work_period .apc_wrap.calculated_experience .inputText p.tit{
    font-weight: 500;
    padding-top: 4px;
}
.work_period .apc_wrap.calculated_experience .inputText p .num{
    font-size: 24px;
    font-weight: 700;
}
/* 자격증 */
.inputText .select[data-group="sl_certificate"],
.inputText .select[data-group="sl_certificate_02"],
.inputText .select[data-group="sl_major_selection"],
.inputText .select[data-group="sl_certificate_selection"],
.inputText .select[data-group="sl_certificate_level"]{
    width: 100%;
}
.certificate_date .inputText .calendar .datepicker{
    width: 50%;
}
.textArea.introduction .inputText textarea{
    width: 100%;
    height: 312px;
    resize: none;
    border: none;
    background: #FFF;
    padding-right: 8px;
}
.textArea.introduction span.txt{
    margin-top: 8px;
    font-size: 14px;
    justify-self: flex-end;
    display: block;
}
.apc_wrap.confirmation{
    margin-top: 16px;
    padding-top: 16px;
    border-top: solid 1px #D8D8D8;
}
.apc_wrap.confirmation.__w{
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    min-height: 157px;
}
.apc_wrap.confirmation .txt{
    font-weight: 500;
    font-size: 14px;
}
.apc_wrap.confirmation .txt span{
    font-weight: 400;
}
.inputText .confirmation label{
    display: flex;
    align-items: center;
    gap: 8px;
    height: 43px;
    margin-top: 8px;
}
.confirmation input[type="checkbox"]{
    display: none;
}
.confirmation .check_box{
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 1px solid #C6C6C6;
    background: #FFF;
    display: flex;
}
.confirmation input[type="checkbox"]:checked + .check_box {
    border: 1px solid #003985;
    background-image: url(../images/sub/board/ico_check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 9px 7px;
}
.h_125{
    min-height: 125px;
}
.btn-group.table{
    margin-top: 50px;
}
.btn-group .btn-group-inr{
    display: flex;
    justify-content: center;
    gap: 8px;
}
.btn-group .btn-group-inr a{
    display: flex;
    width: 126px;
    height: 41px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 14px;
}
.btn-group .btn-group-inr a.white{
    border: 1px solid #003985;
    background: #FFF;
    color: #003985;
}
.btn-group .btn-group-inr a.blue{
    background: #003985;
    color: #fff;
}
.btn-group .btn-group-inr a.white:hover,
.btn-group .btn-group-inr a.white:focus-visible{
    background: #EDF7FA;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.btn-group .btn-group-inr a.white:active{
    background: #EDF7FA;
}
.btn-group .btn-group-inr a.blue:hover,
.btn-group .btn-group-inr a.blue:focus-visible{
    background: #002455;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.btn-group .btn-group-inr a.blue:active{
    background: #002455;
}
.btn-group .btn-group-inr a.link{
    gap: 4px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    width: 195px;
    padding: 10px 0;
}
.btn-group .btn-group-inr a.link .ico_arrow_right{
    width: 20px;
    height: 20px;
    background-image: url(../images/sub_e/sub_99/ico_arrow_right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* 주요경력 */
.careerdate .inputText .calendar .datepicker{
    width: 50%;
}
.h_93{
    min-height: 117px;
}
.h_157{
    min-height: 157px;
}
.h_189{
    min-height: 189px;
}
.h_file:has(.file_inputs) > td .apc_wrap {
    min-height: 189px;
}
.qualification_date .datepicker{
    width: 50% ;
}
@media screen and (max-width: 1279px) {
    .work_period .inputText .calendar{
        flex-direction: column;
        width: 100%;
    }
    .work_period .inputText .calendar span{
        display: none;
    }
    .work_period .apc_wrap,
    .work_period .apc_wrap.calculated_experience {
        height: 130px;
        width: 30%;
    }
    .calendar .datepicker,
    .inputText .select[data-group="work_hours"]{
        width: 100%;
    }
}
@media screen and (max-width: 920px) {
    .work_period .apc_wrap,
    .work_period .apc_wrap.calculated_experience {
        width: 29%;
    }
}
@media screen and (max-width: 767px) {
    .applicationInput table tbody tr td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .applicationInput table tbody tr td:not(:first-child){
        margin-top: 16px;
    }
    .extra_box{
        padding: 12px 24px;
    }
    .extra_box .table + .table {
        margin-top: 24px;
        padding-top: 24px;
    }
    .work_period .apc_wrap {
        float: none;
        width: 100%;
    }
    .work_period .apc_wrap + .apc_wrap{
        margin-left: 0px;
        margin-top: 20px;
    }
    .work_period .apc_wrap + .apc_wrap::before{
        display: none;
    }
    .work_period .apc_wrap,
    .work_period .apc_wrap.calculated_experience{
        height: auto;
    }
    .work_period .apc_wrap.calculated_experience{
        width: 100%;
    }
    .work_period .apc_wrap.calculated_experience .inputText{
        width: 100%;
    }
    .inputText .calendar{
        width: 100%;
    }
    .certificate_date .inputText .calendar{
        flex-direction: column;
    }
    .certificate_date .inputText .calendar span{
        display: none;
    }
    .certificate_date .inputText .calendar .datepicker{
        width: 100%;
    }
    .h_file:has(.file_inputs) > td .apc_wrap{
        min-height: auto;
    }
    .apc_wrap.confirmation.__w,
    .h_93 ,
    .h_125:not(.file_inputs),
    .h_157:not(.file_inputs),
    .h_189:not(.file_inputs){
        min-height: auto;
    }
}
/* 기간제 교원 지원서 등록 */



/* 배움터 지킴이 지원서 등록 */
.certificateDate .apc_wrap .certificate_date .select-group {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.certificateDate .certificate_date .select{
    width: 107px;
}
.certificateDate .certificate_date .select[data-group='sl_certificate_date_year'] {
    width: calc(100% - 214px);
}
.flex_start{
    display: flex;
    align-items: flex-start;
}
.inputText .select[data-group="sl_school_selector"]{
    width: 100%;
}
.board_r{
    border-right: 1px solid #D8D8D8;
}
.btn_mgt_40{
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .title_box.application{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .title_box.application div{
        flex-direction: column;
        align-items: flex-start;
    }
    .inputText .calendar{
        width: 100%;
    }
    .inputText .calendar{
        flex-direction: column;
    }
    .inputText .calendar span{
        display: none;
    }
    .inputText .calendar .datepicker,
    .careerdate .inputText .calendar .datepicker{
        width: 100%;
    }
    .btn_mgt_40{
        margin-top: 24px;
    }
}
/* 배움터 지킴이 지원서 등록 */


/* 생존수영 보조인력 인력풀 */
.inputText .select[data-group="sl_in_selector"]{
    width: 100%;
}
.btn_file_download{
    border-radius: 12px;
    border: 1px solid #00937F;
    background: #FFF;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0 16 px;
}
.btn_file_download p{
    font-size: 18px;
    color: #00937F;
}
.btn_file_download span.ico_download{
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/sub_e/sub_99/ico_download.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
/* 생존수영 보조인력 인력풀 */


/* fullcalendar */

/* calendar toolbar */
.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 24px;
}
.fc .fc-button-group{
    transform: translateY(17px);
    z-index: 10;
}
.fc .fc-button-group .select{
    width: 119px;
    height: 45px;
}
.calView .fc .fc-toolbar .fc-toolbar-chunk > div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.fc .fc-button-primary{
    border: 0;
}
.calView .fc .fc-button {
    background-color: #fff;
    display: inline-block;
    border-radius: 0;
    padding: 0px;
}
.calView .fc .fc-button.fc-next-button,
.calView .fc .fc-button.fc-prev-button {
    width: 20px;
    height: 20px;
}
.calView .fc .fc-button .fc-icon {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.calView .fc .fc-button .fc-icon-chevron-left {
    background-image: url(../images/sub/board/ico_cal_prev.svg);
}
.calView .fc .fc-button .fc-icon-chevron-right{
    background-image: url(../images/sub/board/ico_cal_next.svg);
}
.calView .fc .fc-button .fc-icon::before {
    display: none;
}
.calView .fc .fc-toolbar-title {
    font-size: 32px;
    font-weight: 700;
    /* padding-bottom: 32px; */
}
.calView .fc .fc-button:active{
    background-color: #fff;
    border:none;
}
.calView .fc .fc-button .fc-icon:active{
    background-color: #fff;
    border:none;
}
/* calendar toolbar */


/* calendar calendarGuide */
.fc .fc-view-harness {
    order: 3;
}
.calendarGuide {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    order: 5;
    margin-top: 24px;
}
.guideText{
    order: 3;
    margin-bottom: 24px;
}
.calendarGuide .statusList {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 15px 20px;
    border: 1px solid #E4E4E4;
    border-radius: 12px;
}
.calendarGuide .statusList > li {
    padding-left: 20px;
    position: relative;
    color: #1D1D1D;
    font-size: 14px;
}
.calendarGuide .statusList > li::before {
    content: '';
    display: block;
    position: absolute;
    top: 5px; left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.calendarGuide .statusList > li.comp::before {
    background-color: #97ECDC;
}
.calendarGuide .statusList > li.wait::before {
    background-color: #98DBFF;
}
.calendarGuide .statusList > li.rejected::before {
    background-color: #FFBEBE;
}
.calendarGuide .guideText {
    font-size: 18px;
    color: #1C1C1C;
}
/* calendar calendarGuide */


/* 캘린더  view  */
/* table css */
.calView .guideText {
    transform: initial;
    margin-top: 8px;
    margin-bottom: 0px;
    margin-left: 0px !important;
    margin-right: 0px;
}
.calView .fc .fc-scrollgrid{
    border: 1px solid #E4E4E4;
    border-radius: 12px;
    overflow: hidden;
}
.calView .fc .fc-day-sun .fc-daygrid-day-number {
    color: #EA0000 ;
}
.calView .fc .fc-day-sat .fc-daygrid-day-number {
    color: #0076CC;
}
.calView .fc .fc-col-header{
    background-color: #00937F;
}
.fc-theme-standard th{
    border-right: 1px solid #008573;
}
.calView .fc th:last-child {
    /* border-right: 0; */
    border-right: 1px solid #00937F;
}
.calView .fc .fc-col-header-cell-cushion {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 150%;
}
.fc-theme-standard td{
    background: rgba(217, 217, 217, 0.01);
    border: solid 1px #E4E4E4;
    /* overflow: hidden; */
}
.calView .fc-theme-standard td:hover {
    cursor: pointer;
}
.fc-theme-standard td:last-child{
    border-right: 0;
    border-bottom: 0;
}
.fc-day-sun.fc-daygrid-day,
.fc-day-sat.fc-daygrid-day{
    background: rgba(217, 217, 217, 0.20);
}
/* table css */

/* 오늘날짜 */
.calView .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-frame {
    /* border: none */
}
/* 오늘날짜 */
.calView .fc .fc-daygrid-day .fc-daygrid-day-frame {
    border: none;
    box-sizing: border-box;
    height: 156px;
}
.calView .fc .fc-daygrid-day-top {
    flex-direction: initial;
    justify-content: space-between;
}
.calView .fc .fc-daygrid-day-number {
    display: inline-block;
    padding: 12px;
    padding-bottom: 16px;
    color: #1D1D1D;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}
/* .calView .fc .fc-daygrid-event-harness + .fc-daygrid-event-harness {
	padding-top: 10px;
} */
.calView .fc .fc-daygrid-day-events {
    margin-top: 0;
    /* overflow: hidden; */
    padding: 0 12px;
    margin-bottom: 0px;
}
.calView .fc .fc-daygrid-day-events .custom-cell-content {
    height: 30px;
}
.calView .fc .fc-daygrid-day-events .custom-cell-content + .custom-cell-content {
    margin-top: 8px;
}
.calView .fc .fc-daygrid-day-events .custom-cell-content > span {
    display: -webkit-inline-box;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: center;
    color: #1D1D1D;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.7px;
    border-radius: 8px;
    padding: 4px 8px;
    background: #97ECDC;
    max-width: 100%;
}
.calView .fc .fc-daygrid-day-bg {
    padding: 0 14px;
}
.calView .fc .fc-daygrid-day-bg .fc-day-count-badge {
    color: #003985;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.7px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    min-height: unset;
}
.calView  .fc .fc-daygrid-day-frame {
    /* cursor: pointer; */
}
.calView .fc .fc-event-count {
    display: none;
}
a.fc-event {
    position: relative;
    padding-left: 31px;
}
a.fc-event:hover,
a.fc-event:focus-visible {
    background-color: initial;
}
.calView .fc .fc-daygrid-event-harness:has(.koHolidays) {
    position: absolute;
    top: -38px;
    left: 20px;
    display: none;
}
.calView .fc .fc-daygrid-event-harness:has(.koHolidays) + .fc-daygrid-event-harness {
    padding-top: 0;
}
.calView .fc .fc-daygrid-event-harness:has(.koHolidays):nth-of-type(n+2) {
    display: none;
}

.calView .fc .fc-daygrid-event-harness .koHolidays {
    background-color: initial;
    padding-left: 0;
    border: 0;
}
.calView .fc .fc-daygrid-event-harness .koHolidays .fc-event-main {
    font-size: 0;
}
.calView .fc .fc-daygrid-event-harness:has(.koHolidays) .fc-event-list {
    position: relative;

}
.calView .fc .fc-daygrid-event-harness:has(.koHolidays) .fc-event-list::before {
    content: '공휴일';
    display: block;
    color: #FF0000;
    font-size: 14px;
}
.calView .fc .fc-daygrid-event-harness .koHolidays::before {
    display: none;
}
.fc .fc-daygrid-event-harness{
    /* padding-left: 12px; */
}
.calView .fc .fc-event{
    color: #1D1D1D;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.7px;
    display: inline-block;
    padding: 0px 0px;
    border-radius: 8px;
    margin-top: 0px;

    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.calView .fc .fc-event span {
    font-size: 14px;
}
.calView .fc .fc-event:hover,
.calView .fc .fc-event:focus-visible{
    text-decoration: underline;
    text-underline-offset: 3px;
}
.calView .fc .fc-event:has(.fc-event-main):hover{
    background-color: #3788d8;
}
.calView .fc .fc-daygrid-event-harness + .fc-daygrid-event-harness{
    /* padding-top: 4px; */
}
/* .calView .fc .fc-event:has(.wait) span{
	background-color: #98DBFF;
	margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}
.calView .fc .fc-event:has(.comp) span{
	background-color: #97ECDC;
	margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}
.calView .fc .fc-event:has(.rejected) span{
	background-color: #FFBEBE;
	margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
} */

.calView .fc .fc-event span.wait{
    background-color: #98DBFF;
    margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}
.calView .fc .fc-event span.comp{
    background-color: #97ECDC;
    margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}
.calView .fc .fc-event span.rejected{
    background-color: #FFBEBE;
    margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}
.calView .calendarDate .reservationList > li > span.title.wait > span {
    background-color: #98DBFF;
    margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}
.calView .calendarDate .reservationList > li > span.title.comp > span {
    background-color: #97ECDC;
    margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}
.calView .calendarDate .reservationList > li > span.title.rejected > span {
    background-color: #FFBEBE;
    margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}

.calView .fc .fc-event-list {
    position: relative;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.fc-daygrid-event-harness:has(.wait) ~ .fc-daygrid-event-harness:has(.wait){
    display: none;
}
.fc-daygrid-event-harness:has(.comp) ~ .fc-daygrid-event-harness:has(.comp){
    display: none;
}
.fc-daygrid-event-harness:has(.rejected) ~ .fc-daygrid-event-harness:has(.rejected){
    display: none;
}

.fc .fc-daygrid-day.fc-day-today {
    /* background: unset; */
}

/* 캘린더 팝업 */
.calView .calendarDate {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(calc(-50% + 200px),-50%);
    z-index: 1000;
    width: 600px;
    height: auto;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    flex-direction: column;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.3);
}
.calView .calendarDate .cal_tit_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #C6C6C6;
}
.calView .calendarDate .cal_tit_box > span{
    display: inline-block;
}
.calView .calendarDate .cal_tit_box .day {
    color: #1D1D1D;
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
}
.calView .calendarDate .cal_tit_box .close_btn{
    width: 40px;
    height: 40px;
    background-image: url(../images/sub/board/ico_close.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
}
.calView .calendarDate .statusList {
    margin-top: 16px;
    display: flex;
    flex-direction: column;

    height: 300px;
    overflow: auto;
    padding: 0px 7px 0px 0px;
}
.calView .calendarDate .statusList::-webkit-scrollbar {
    width: 4px;
}
.calView .calendarDate .statusList::-webkit-scrollbar-thumb {
    background: #8E8E8E;
    border-radius: 10px;
}
.calView .calendarDate .statusList::-webkit-scrollbar-thumb:hover {
    background: #8E8E8E;
}

.calView .calendarDate .statusList li:first-child .reservationList li:first-child {
    margin-top: 0px;
}
.calView .calendarDate .reservationList{
    display: flex;
    flex-direction: column;
}
.calView .calendarDate .reservationList > li{
    display: flex;
    align-items: flex-start;
    margin-top: 8px;
}
.calView .calendarDate .reservationList > li.title_m{
    display: none;
}
.calView .calendarDate .reservationList > li > span{
    color: #1D1D1D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.calView .calendarDate .reservationList > li > span:not(.status){
    padding-top: 2px;
}
.calView .calendarDate .reservationList > li > span + span{
    margin-left: 18px;
    position: relative;
}
.calView .calendarDate .reservationList > li > span + span::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    position: absolute;
    top: 9px;
    left: -9px;
    background: #C6C6C6;
}
.calView .calendarDate .reservationList > li > span.status{
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
}
.calView .calendarDate .reservationList > li > span.title{
    /* width: calc(100% - 180px); */
    font-weight: 700;
}
.calView .calendarDate .comp .reservationList > li > span.status{
    background: #97ECDC;
}
.calView .calendarDate .wait .reservationList > li > span.status{
    background: #98DBFF;
}
.calView .calendarDate .rejected .reservationList > li > span.status{
    background: #FFBEBE;
}
.calView .fc .fc-daygrid-day-bg .fc-row-count {
    display: none;
}

.calView .calendarDate .reservationList > li > span.title{
    width: 100%;
    margin-bottom: 4px;
}
.calView .calendarDate .reservationList > li {
    flex-wrap: wrap;
}
/* tablet */
@media screen and (max-width: 1279px) {
    /* 캘린더 팝업 */
    .calView .calendarDate {
        transform: translate(-50% ,-50%);
    }
}
/* mobile */
@media screen and (max-width: 767px) {
    /* 20241011 */
    .calendarGuide{
        margin-top: 16px;
    }
    .calView .fc .fc-col-header-cell-cushion{
        padding: 8px 0;
    }
    .calView .fc .fc-daygrid-day .fc-daygrid-day-frame{
        height: 81px;
    }
    .calView .fc .fc-daygrid-day-number{
        padding: 4px 0px 4px 8px;
    }
    .calView .fc .fc-event-status{
        padding: 0 8px;
    }
    .calView .fc .fc-event-status > li span{
        color: rgba(217, 217, 217, 0.01);
    }
    .calView .fc .fc-event  > span{
        display: none;
    }
    .calView .fc .fc-event{
        line-height: 12px;
        margin: 0;
        padding: 0;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block;
    }
    .calView .fc .fc-daygrid-event-harness:has(.koHolidays) .fc-event-list::before{
        display: none;
    }
    .fc .fc-daygrid-event-harness{
        /* padding-left: 8px; */
    }
    .calView .calendarDate .cal_tit_box .day{
        line-height: 36px;
    }
    /* .calView .calendarDate .reservationList > li:not(.title_m) > span.title{
        display: none;
    }
    .calView .calendarDate .reservationList > li.title_m{
        display: block;
        padding-left: 50px;
        margin-top: 0;
    } */
    .calView .fc .fc-daygrid-day-events:has(.custom-cell-content) {
        padding: 0 4px;
    }
    .calView .fc .fc-daygrid-day-events .custom-cell-content {
        height: 22px;
    }
    .calView .fc .fc-daygrid-day-events .custom-cell-content > span {
        padding: 2px 4px;
        border-radius: 4px;
        font-size: 12px;
    }
    .calView .fc .fc-daygrid-day-events .custom-cell-content + .custom-cell-content {
        margin-top: 4px;
    }

    .calView .fc .fc-toolbar-title {
        font-size: 24px;
    }
    .calView .cont_box p {
        font-size: 14px;
    }
    .calView .select .selectbox > button,
    .calView .select .selectbox > button span {
        font-size: 14px;
    }
    .calView .select .selectbox .option ul > li button,
    .calView .select .selectbox .option ul > li button span {
        font-size: 14px;
    }

    .fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
        display: none;
    }
    .calView .fc .fc-daygrid-day-bg {
        padding: 0 8px;
    }
    .calView .fc .fc-daygrid-day-bg .fc-row-count {
        display: block;
    }

}

@media screen and (max-width: 767px) {

}
.hidden {
    display: none !important;
}
.calView .fc .fc-button.fc-yearSelect-button,
.calView .fc .fc-button.fc-monthSelect-button{
    width: 119px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid  #D8D8D8;
    background: #FFF;
    color: #1C1C1C;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%; /* 21px */
    letter-spacing: -0.7px;
    text-align: left;
    background-image: url(../images/sub/board/ico_cal_select.svg);
    background-repeat: no-repeat;
    background-position: center right 12px;
    background-size: 16px;
}
@media screen and (max-width: 767px) {
    .fc .fc-toolbar{
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0px;
    }
    .fc .fc-toolbar.fc-header-toolbar{
        margin-bottom: 16px;
    }
    .fc .fc-toolbar.fc-header-toolbar .fc-toolbar-chunk {
        text-align: center;
    }
    .fc .fc-button-group {
        transform: translateY(0px);
    }
    .guideText{
        margin-bottom: 0px;
        transform: translateY(-75px);
        text-align: center;
    }
    .calView .fc .fc-button.fc-yearSelect-button,
    .calView .fc .fc-button.fc-monthSelect-button{
        width: 134px;
    }
}

/** type1 */
.calView.type1 .gh_span,
.calView.type1 .gh_span_cal {
    padding-left: 0px;
}
.calView.type1 .gh_span.comp::before,
.calView.type1 .gh_span_cal.comp::before {
    background-color: unset;
}
.calView.type1 .gh_span.wait::before,
.calView.type1 .gh_span_cal.wait::before {
    background-color: unset;
}
.calView.type1 .gh_span.rejected::before,
.calView.type1 .gh_span_cal.rejected::before {
    background-color: unset;
}
.calView.type1 .fc .fc-event span.wait {
    color: #8E8E8E;
}
.calView.type1 .calendarDate .reservationList > li > span.wait {
    color: #8E8E8E;
}
.calView.type1 .fc .fc-event:has(.wait) span,
.calView.type1 .fc .fc-event:has(.comp) span,
.calView.type1 .fc .fc-event:has(.rejected) span{
    background-color: unset;
    margin-bottom: unset;
    border-radius: unset;
    padding: unset;
}
.calView.type1 .calendarDate .reservationList > li > span.title {
    background: unset;
}
/** type1 */

/* fullcalendar */



/* 250804 calendar date layout */
.gh_span,
.gh_span_cal {
    position: relative;
    padding-left: 12px;
}
.gh_span::before {
    content: '';
    display: block;
    position: absolute;
    top: 9px; left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.gh_span_cal::before {
    content: '';
    display: block;
    position: absolute;
    top: 7px; left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.gh_span.comp::before,
.gh_span_cal.comp::before {
    /* background-color: #97ECDC; */
}
.gh_span.wait::before,
.gh_span_cal.wait::before {
    /* background-color: #98DBFF; */
}
.gh_span.rejected::before,
.gh_span_cal.rejected::before {
    /* background-color: #FFBEBE; */
}
.gh_span.wait {
    background-color: #98DBFF;
    margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}
.gh_span.comp {
    background-color: #97ECDC;
    margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}
.gh_span.rejected {
    background-color: #FFBEBE;
    margin-bottom: 4px;
    border-radius: 8px;
    padding: 4px 8px;
}


@media screen and (max-width: 767px) {
    .inputText .calendar.gh_calendar {
        flex-direction: row;
    }
    .inputText .calendar.gh_calendar span {
        display: unset;
    }
}
@media screen and (max-width: 640px) {
    .calView .calendarDate {
        width: 300px;
    }
    .calView .calendarDate .reservationList > li {
        flex-wrap: wrap;
    }
    .calView .calendarDate .reservationList > li > span.title {
        width: 100%;
    }
    .calView .calendarDate .reservationList > li > span.count {
        margin-left: 0;
    }
    .calView .calendarDate .reservationList > li > span {
        font-size: 14px;
    }
    .calView .calendarDate .cal_tit_box {
        padding-bottom: 8px;
    }
    .calView .calendarDate .cal_tit_box .day {
        font-size: 18px;
    }
    .calView .calendarDate .cal_tit_box .close_btn {
        width: 30px;
        height: 30px;
    }
    .calView .calendarDate .reservationList > li > span.title.wait {
        background-color: #98DBFF;
        margin-bottom: 4px;
        border-radius: 8px;
        padding: 4px 8px;
    }
    .calView .calendarDate .reservationList > li > span.title.comp {
        background-color: #97ECDC;
        margin-bottom: 4px;
        border-radius: 8px;
        padding: 4px 8px;
    }
    .calView .calendarDate .reservationList > li > span.title.rejected {
        background-color: #FFBEBE;
        margin-bottom: 4px;
        border-radius: 8px;
        padding: 4px 8px;
    }
    .calView .calendarDate .reservationList > li > span.title.wait > span {
        background-color: unset;
        margin-bottom: unset;
        border-radius: unset;
        padding: unset;
    }
    .calView .calendarDate .reservationList > li > span.title.comp > span {
        background-color: unset;
        margin-bottom: unset;
        border-radius: unset;
        padding: unset;
    }
    .calView .calendarDate .reservationList > li > span.title.rejected > span {
        background-color: unset;
        margin-bottom: unset;
        border-radius: unset;
        padding: unset;
    }
}
/* 250804 calendar date layout */

/* 250804 file download button */
.gh_btn {
    align-items: center;
    justify-content: flex-end;
    margin-top: 24px;
    margin-bottom: 40px;
}
.gh_file_download_box {
    display: flex;
    gap: 10px;
}
.gh_file_download_box .btn-type1 {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;

    border-radius: 12px;
    border: 1px solid #C6C6C6;
    background: #FFF;
}
.gh_file_download_box .btn-type1 .down_ico_pdf {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/sub/board/ico_pdf.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.gh_file_download_box .btn-type1 .down_ico_hwp {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/sub/board/ico_hwp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
@media screen and (max-width: 767px) {
    .gh_btn {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
    .gh_file_download_box {
        flex-direction: column;
        width: 100%;
    }
}
/* 250804 file download button */