@charset "UTF-8";
@import url(font.css);

/* // 기본형 검색 박스 // */
#searchFormBasic {
    border-radius: 25px;
    background: #f9f9f9;
    padding: 2em 3em;
}

#searchFormBasic>ul {
    gap: 1em 2em;
    padding-bottom: 2em;
    margin-bottom: 2em;
    border-bottom: 1px solid #DDDDDD;
}

#searchFormBasic .item.w2p {
    width: calc((100% - 2em) / 2);
}

#searchFormBasic .item.w1p {
    width: 100%;
}

#searchFormBasic .item {
    display: flex;
    align-items: center;
}

#searchFormBasic .item .form-tit {
    width: 30%;
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.03375rem;
}

#searchFormBasic .item .form-inner {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

#searchFormBasic .item .form-inner .input_search {
    width: 100%;
}

/* 검색 관련 버튼 */
.search_inputs {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.search_inputs .btn.btn_reset {
    border: 1px solid #274071;
    background: #F9F9F9;
    color: #274071;
}

.search_inputs .btn.btn_reset:hover {
    border-color: #000;
    color: #000;
}

.search_inputs .btn.btn_search {
    color: #fff;
    background: url(../images/common/ico_search_wh.svg) left 27px top 13px no-repeat #274071;
    padding-left: 19px;
}

.search_inputs .btn.btn_search:hover {
    background: url(../images/common/ico_search_wh.svg) left 27px top 10px no-repeat #000;
}

.search_inputs .btn.btn_search.lineNavy {
    border: 1px solid #274071;
    color: #274071;
    background: #fff;
    padding: 0 10px;
}

.search_inputs .btn.btn_search.lineNavy:hover {
    background: #e6edf8;
}

.search_inputs .btn.btn_search.Navy {
    color: #fff;
    background: #274071;
    padding: 0 10px;
}

.search_inputs .btn.btn_search.Navy:hover {
    background: #000;
}

.listOrder .btn-mid {
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.ico_order {
    max-height: 20px;
}

@media screen and (max-width: 860px) {
    #searchFormBasic {
        padding: 1.5em 2em;
    }

    #searchFormBasic .item.w2p {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.5em 0;
    }

    #searchFormBasic .item .form-tit {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #searchFormBasic .search_inputs .btn.btn_search {
        background-size: 13%;
        background-position: left 27px top 11px;
    }

    #searchFormBasic .search_inputs .btn.btn_search:hover {
        background: url(../images/common/ico_search_wh.png) left 27px top 8px no-repeat #000;
        background-size: 13%;
    }
}

@media screen and (max-width:430px) {
    #searchFormBasic .search_inputs .btn.btn_search {
        background-position: left 20px top 8px;
        background-size: 15%;
    }

    #searchFormBasic .search_inputs .btn.btn_search:hover {
        background: url(../images/common/ico_search_wh.png) left 20px top 6px no-repeat #000;
        background-size: 15%;
    }
}


/* // 데이터셋 검색 박스 // */
#searchForm .search_box_wrap {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

#searchForm .search_box_wrap.scrollOn {
    padding-bottom: 20px;
}

/* 데이터셋 검색 박스 - 타이틀 */
#searchForm .search_box_wrap .search_box_tit {
    background: #126BDA;
    padding: 1em 3em;
}

#searchForm .search_box_wrap .search_box_tit>span {
    color: #FFF;
    font-size: 1.4375rem;
    font-weight: 600;
    letter-spacing: -0.04313rem;
    position: relative;
    padding-left: 40px;
}

#searchForm .search_box_wrap .search_box_tit>span:before {
    content: '';
    position: relative;
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 28px;
    background: url(../images/common/ico_search_box_tit_bf.png) no-repeat center center #2ac6a6;
    left: 0;
    top: 1px;
}

@media screen and (max-width: 1080px) {
    #searchForm .search_box_wrap .search_box_tit>span {
        padding-left: 35px;
    }

    #searchForm .search_box_wrap .search_box_tit>span:before {
        transform: scale(0.8);
        top: -1px;
    }
}

@media screen and (max-width: 520px) {
    #searchForm .search_box_wrap {
        border-radius: 20px;
    }

    #searchForm .search_box_wrap .search_box_tit {
        padding: 1em 1.5em;
    }

    #searchForm .search_box_wrap .search_box_tit>span {
        font-size: 1.2rem;
        padding-left: 30px;
    }

    #searchForm .search_box_wrap .search_box_tit>span:before {
        transform: scale(0.7);
        top: -4px;
    }
}

@media screen and (max-width: 430px) {
    #searchForm .search_box_wrap .search_box_tit {
        padding: 1em 1em;
    }

    #searchForm .search_box_wrap .search_box_tit>span {
        padding-left: 25px;
    }

    #searchForm .search_box_wrap .search_box_tit>span:before {
        transform: scale(0.6);
        top: -6px;
    }
}

@media screen and (max-width: 390px) {
    #searchForm .search_box_wrap .search_box_tit>span {
        font-size: 1em;
    }

    #searchForm .search_box_wrap .search_box_tit>span:before {
        transform: scale(0.5);
        top: -7px;
    }
}

@media screen and (max-width: 320px) {
    #searchForm .search_box_wrap .search_box_tit>span {
        padding-left: 0;
        display: block;
        text-align: center;
    }

    #searchForm .search_box_wrap .search_box_tit>span:before {
        display: none;
    }
}

/* 데이터셋 검색 박스 - 컨텐츠 부분 */
#searchForm .search_box_wrap .search_check_wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start !important;
    gap: 0;
    width: 100%;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

#searchForm .search_box_wrap .search_check_wrap .search_check {
    position: relative;
    border-right: 1px solid #ddd;
    padding-bottom: 1.5em;
    background: #fff;
    white-space: nowrap;
    box-sizing: border-box;
    width: initial;
    flex-grow: 1;
}

#searchForm .search_box_wrap .search_check_wrap .search_check.wdFix {
    max-width: 280px;
    /* step 5 - 온실 규모 width 지정 */
    white-space: normal;
}

#searchForm .search_box_wrap .search_check_wrap .search_check:last-child {
    border-right: none;
}

/* 데이터셋 검색 박스 - 컨텐츠 부분 - step 타이틀 */
#searchForm .search_box_wrap .search_check_wrap .search_check .ck_tit {
    position: relative;
    background: #EEF2F5;
    padding: 15px;
    text-align: center;
    color: #000;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.03375rem;
    border-bottom: solid 4px #979CA6;
}

#searchForm .search_box_wrap .search_check_wrap .search_check .ck_tit:after {
    content: '';
    width: 38px;
    height: 14px;
    position: absolute;
    background: url(../images/common/ico_search_box_ck_tit_bf.svg) no-repeat center center;
    left: 50%;
    transform: translateX(-50%);
    bottom: -13.5px;
}

#searchForm .search_box_wrap .search_check_wrap .search_check .ck_tit p {
    color: #515C72;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.02813rem;
}

/* 데이터셋 검색 박스 - 컨텐츠 부분 - 인풋 영역 */
#searchForm .search_box_wrap .search_check_wrap .search_check .ck_cont {
    padding: 5px 1.5em;
    height: 293px;
    overflow-y: auto;
    font-size: 13px;
    margin-top: 1.6em;
    box-sizing: border-box;
}

#searchForm .search_box_wrap .search_check_wrap .search_check .ck_cont ul li {
    margin-bottom: 6px;
    line-height: 24px;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
    /* 1.5rem */
    width: 100%;
}

#searchForm .search_box_wrap .search_check_wrap .search_check .ck_cont>ul>li {
    margin-bottom: 15px;
}

#searchForm .search_box_wrap .search_check_wrap .search_check .ck_cont>ul>li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width:430px) {
    #searchForm .search_box_wrap .search_check_wrap .search_check .ck_cont {
        height: 260px;
    }
}

/* 데이터셋 검색 박스 - 컨텐츠 부분 - 인풋 영역 - 하위 선택 항목 있는 경우 (품목, 지역) */
.treeItem,
.treeZip {
    margin-top: 10px;
    margin-bottom: 10px;
}

.treeItem li,
.treeZip li {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid #B0B0B0;
    min-height: 23px;
    line-height: 20px;
    margin-left: 10px;
}

.treeItem li::before,
.treeZip li::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 14px;
    height: 0;
    border-bottom: 1px solid #B0B0B0;
}

.treeItem li:last-child::after,
.treeZip li:last-child::after {
    content: '';
    position: absolute;
    left: -1px;
    bottom: 0;
    top: 55%;
    width: 1px;
    background: #fff;
    z-index: 10;
}

/* 데이터셋 검색 박스 - 컨텐츠 부분 - 인풋 영역 - 스크롤바 */
#searchForm .search_box_wrap .search_check_wrap .search_check .ck_cont::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

#searchForm .search_box_wrap .search_check_wrap .search_check .ck_cont::-webkit-scrollbar-track {
    background: #F1F1F1;
}

#searchForm .search_box_wrap .search_check_wrap .search_check .ck_cont::-webkit-scrollbar-thumb {
    background: #C4C6C8;
}

/* 데이터셋 검색 박스 - 타이틀 - 검색버튼 */
#searchForm .search_box_wrap .search_box_tit.hasBtn {
    padding: 0 0 0 3em;
}

#searchForm .search_box_wrap .search_box_tit_right {
    gap: 1em;
    height: 100%;
}

#searchForm .search_box_wrap .search_box_tit_right .search_box_btn button {
    width: 80px;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5em 0;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

#searchForm .search_box_wrap .search_box_tit_right .search_box_btn button:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* 데이터셋 검색 박스 - 스와이퍼 페이지네이션 / 내비게이션 */
#searchForm .search_box_wrap .search_box_swiper_ctrl {
    display: flex;
    gap: 13px;
    display: none;
}

#searchForm .search_box_wrap .search_box_swiper_ctrl .btn button {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

#searchForm .search_box_wrap .search_box_swiper_ctrl .btn button:hover {
    background: rgba(0, 0, 0, 0.5);
}

#searchForm .search_box_wrap .swiper-pagination {
    display: none;
    position: relative;
    width: 70%;
    height: 5px;
    background: #D3D3D3;
    margin: 0 auto;
    margin-top: 10px;
}

#searchForm .search_box_wrap .swiper-pagination-progressbar-fill {
    display: block;
    height: 100%;
    background: #333333;
    transform-origin: left;
}

@media screen and (max-width: 680px) {
    #searchForm .search_box_wrap .search_box_tit {
        justify-content: flex-end;
        gap: 0.5em 0;
    }

    #searchForm .search_box_wrap .search_box_tit>span {
        width: 100%;
        /* order: 2; */
    }

    #searchForm .search_box_wrap .search_box_swiper_ctrl {
        text-align: right;
        gap: 5px;
        /* order: 1; */
    }

    #searchForm .search_box_wrap .search_box_swiper_ctrl .btn button {
        width: 24px;
        height: 24px;
    }

    #searchForm .search_box_wrap .search_box_tit.hasBtn {
        padding: 1em 1.5em;
    }

    #searchForm .search_box_wrap .search_box_tit_right .search_box_btn button {
        width: 24px;
        height: 24px;
        padding: 0;
        padding-bottom: 2px;
        box-sizing: border-box;
        border-radius: 8px;
        background: #fff;
    }

    #searchForm .search_box_wrap .search_box_tit_right .search_box_btn button img {
        width: 50%;
        filter: brightness(0.2);
    }

    #searchForm .search_box_wrap .search_box_tit_right .search_box_btn button span.txt {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    #searchForm .search_box_wrap .search_box_swiper_ctrl .btn button {
        width: 20px;
        height: 20px;
        border-radius: 6px;
        font-size: 1rem;
    }

    #searchForm .search_box_wrap .search_box_tit_right .search_box_btn button {
        width: 20px;
        height: 20px;
        border-radius: 6px;
    }
}

@media screen and (max-width: 320px) {
    #searchForm .search_box_wrap .search_box_tit {
        justify-content: center;
    }

    #searchForm .search_box_wrap .search_box_tit.hasBtn>span {
        text-align: left;
    }

    #searchForm .search_box_wrap .search_box_tit_right {
        width: 100%;
        justify-content: flex-end;
    }
}



/* // 갤러리형 리스트 // */
.sub_cnt_galley {
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 40px 0;
}

.sub_cnt_galley.bbNone {
    border-bottom: none;
}

.gallery {
    gap: 2em;
    justify-content: flex-start;
}

.gallery.gap {
    gap: 2.5em 2em;
}

.gallery.li2>li {
    width: calc((100% - 2em) / 2);
}

.gallery.li3>li {
    width: calc((100% - 4em) / 3);
}

.gallery.li4>li {
    width: calc((100% - 6em) / 4);
}

.gallery > li,
.gallery > li .shadowBox {
    position: relative;
}

.gallery > li:hover .shadowBox {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
}

.gallery > li:hover .shadowBox img {
    transform: scale(1.03);
}

@media screen and (max-width: 1380px) {
    .gallery.li4>li {
        width: calc((100% - 6em) / 3);
    }
}

@media screen and (max-width: 991px) {
    .gallery.li3>li,
    .gallery.li4>li {
        width: calc((100% - 2em) / 2);
    }
}

@media screen and (max-width: 620px) {
    .gallery.li2>li,
    .gallery.li3>li,
    .gallery.li4>li {
        width: 100%;
    }
}

/* 타이틀 */
.galley_li_tit {
    color: #3b3b3b;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 130%; /* 1.54375rem */
    letter-spacing: -0.0475rem;
    padding: 0.7em 0.2em;
    border-bottom: 1px solid #274071;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.galley_li_tit span.category {
    font-weight: 600;
    margin-right: 10px;
    color: #274071;
}

.galley_li_tit span.date {
    display: block;
    color: #696969;
    font-weight: 400;
    font-size: 0.9rem;
    text-align: right;
    margin-top: 5px;
}

/* 자료실 - 홍보동영상 */
.gallery .play_btn {
    width: 56px;
    height: 56px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -23px 0 0 -23px;
    cursor: pointer;
}

.gallery > li:hover .shadowBox.innerVid .play_btn img {
    transform: scale(1.1);
}

/* 자료실 - 카드뉴스 */
.gallery.cardNews > li .shadowBox img {
    /* 종횡비 정사각형으로 고정 */
    aspect-ratio: 1;
    /* 이미지 찌그러지게 설정하려면 object-fit: initial; 사용 */
    /* object-fit: initial; */
}

.gallery.cardNews .galley_li_tit {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    padding: 0.9em 0.2em 0.7em 0.2em;
    border-bottom: none;
}

.gallery .cardNews_down {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.gallery .cardNews_down button {
    width: 100%;
    justify-content: center;
}


/* // 아코디언 // */
.faqWr {
    border-top: 2px solid #126BDA;
}

.faqWr .accordionWrap {
    border-bottom: 1px solid #A7A9B9;
}

.faqWr .accordionWrap .accordionTit {
    padding: 1em;
    cursor: pointer;
    color: #212121;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: -0.03375rem;
}

.faqWr .accordionWrap .accordionTit .fa-angle-down {
    color: #717485;
}

.faqWr .accordionWrap .accordionTit.on .fa-angle-down {
    transform: rotate(180deg);
}

.faqWr .accordionWrap .accordionTit > span {
    display: flex;
    align-items: center;
    gap: 1em;
    max-width: 95%;
}

.faqWr .accordionWrap .accordionTit > span .ico_faqQ {
    display: block;
    width: 32px;
    height: 32px;
    min-width: 25px;
    background: url(../images/content/sub05/ico_Q_off.svg) no-repeat;
    background-size: contain;
}

.faqWr .accordionWrap .accordionTit.on > span .ico_faqQ {
    background: url(../images/content/sub05/ico_Q_on.svg) no-repeat;
    background-size: contain;
}

.faqWr .accordionWrap .accordionCnt {
    padding: 1em 1em 1em 2.5em;
    background: #F6FAFF;
    border-top: 1px solid #DDDDDD;
    display: flex;
    justify-content: space-between;
    display: none;
}

.faqWr .accordionWrap .accordionCnt p {
    color: #555;
    font-size: 1rem;
    font-weight: 400;
    line-height: 170%;
    display: flex;
    gap: 1em;
}

.faqWr .accordionWrap .accordionCnt p .ico_faqA {
    display: block;
    width: 32px;
    height: 32px;
    min-width: 25px;
    background: url(../images/content/sub05/ico_A.svg) no-repeat;
    background-size: contain;
}

@media screen and (max-width:480px) {
    .faqWr .accordionWrap .accordionTit > span {
        max-width: 85%;
    }
}




/* // 기업정보 관리 // */
#companyInfoManage {
    gap: 2em 3em;
    align-items: flex-start;
    flex-wrap: wrap;
}

#companyInfoManage .company_logo {
    width: 250px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15); */
    padding: 1em;
    box-sizing: border-box;
    border: 1px solid #A7A9B9;
}

#companyInfoManage .company_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#companyInfoManage .companyInfo_inputs {
    width: calc((100% - 3em) - 250px);
}

#companyInfoManage .companyInfo_inputs>ul {
    gap: 1em 2em;
}

#companyInfoManage .item.w1p {
    width: 100%;
}

#companyInfoManage .item {
    display: flex;
    align-items: center;
}

#companyInfoManage .item .form-tit {
    width: 15%;
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.03375rem;
}

#companyInfoManage .item.alignT {
    align-items: flex-start;
}

#companyInfoManage .item.alignT .form-tit {
    margin-top: 5px;
}

#companyInfoManage .item .form-inner {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

#companyInfoManage .item .form-inner .input_txt {
    width: 100%;
}

#companyInfoManage .item .form-inner .input_file {
    width: 100%;
    max-width: 100%;
    padding: 0.2em 0.8em;
    height: 36px;
    border: 1px solid #CACBDA;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #50505F;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#companyInfoManage .item .form-inner .input_file .btn_file {
    font-size: 0.9rem;
}

#companyInfoManage .item .form-inner .input_file .btn_file::file-selector-button {
    padding: 0.2em 0.8em;
    font-size: 0.8rem;
}


@media screen and (max-width: 991px) {
    #companyInfoManage .company_logo {
        width: 100%;
        height: 110px;
    }

    #companyInfoManage .companyInfo_inputs {
        width: 100%;
    }
}


@media screen and (max-width: 680px) {
    #companyInfoManage .item {
        flex-wrap: wrap;
        gap: 0.5em 0;
        ;
    }

    #companyInfoManage .item .form-tit {
        width: 100%;
    }
}


/* // 서비스 정보관리 // */
#serviceDetailModification>ul {
    gap: 1em 2em;
}

#serviceDetailModification .item.w1p {
    width: 100%;
}

#serviceDetailModification .item {
    display: flex;
    align-items: center;
}

#serviceDetailModification .item .form-tit {
    width: 15%;
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.03375rem;
}

#serviceDetailModification .item.alignT {
    align-items: flex-start;
}

#serviceDetailModification .item.alignT .form-tit {
    margin-top: 5px;
}

#serviceDetailModification .item .form-inner {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}

#serviceDetailModification .item .form-inner .input_txt {
    width: 100%;
}

#serviceDetailModification .item .form-inner .input_file {
    width: 100%;
    max-width: 100%;
    padding: 0.2em 0.8em;
    height: 36px;
    border: 1px solid #CACBDA;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #50505F;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#serviceDetailModification .item .form-inner .input_file .btn_file {
    font-size: 0.9rem;
}

#serviceDetailModification .item .form-inner .input_file .btn_file::file-selector-button {
    padding: 0.2em 0.8em;
    font-size: 0.8rem;
}

.input_file_container {
    width: 100%;
    min-height: 100px;
    height: auto;
    border: 1px solid #CACBDA;
    border-radius: 6px;
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    gap: 35px 10px;
    padding: 10px;
    box-sizing: border-box;
    padding-bottom: 35px;
}

.input_file_container_list {
    min-height: 50px;
    padding-bottom: 10px;
    gap: 10px;
    align-items: center;
}

.input-img-thumbnail-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 6px;
}

.input-img-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.input-img-delete-btn {
    position: absolute;
    bottom: -25px;
    right: 0;
    background-color: #CF0034;
    color: #fff;
    border: none;
    border-radius: 50px;
    width: 80px;
    height: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.input-img-delete-btn:hover {
    background-color: #a30029;
}

.input-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
    height: fit-content;
}

.input-file-name {
    flex: 1;
    margin-right: 10px;
}

.file-del-delete-btn {
    background-color: #CF0034;
    color: #fff;
    border: none;
    border-radius: 50px;
    width: 50px;
    height: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.file-del-delete-btn:hover {
    background-color: #a30029;
}


@media screen and (max-width: 991px) {
    #serviceDetailModification .company_logo {
        width: 100%;
        height: 110px;
    }

    #serviceDetailModification .companyInfo_inputs {
        width: 100%;
    }
}


@media screen and (max-width: 680px) {
    #serviceDetailModification .item {
        flex-wrap: wrap;
        gap: 0.5em 0;
        ;
    }

    #serviceDetailModification .item .form-tit {
        width: 100%;
    }
}


/* 공지사항 등 기본형 상세화면 - 테이블 아닌 스타일 */
.sub_cnt_board_tit {
    border-top: 2px solid #274071;
    border-bottom: 1px solid rgba(166, 166, 166, 0.52);
}

.sub_cnt_board_tit .sub_cnt_tit_m {
    font-weight: 500;
    padding: 0.5em;
    margin-bottom: 0;
}

.sub_cnt_board_tit .sub_cnt_tit_info {
    padding: 0.9em;
    display: flex;
    gap: 1.5em;
    background: #FBFBFB;
    border-top: 1px dashed rgba(227, 227, 227, 0.52);
    color: #4B4B4B;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 172.046%; /* 1.9355rem */
    letter-spacing: -0.00563rem;
}

.sub_cnt_board_tit .sub_cnt_tit_info > div {
    position: relative;
}

.sub_cnt_board_tit .sub_cnt_tit_info > div:first-child:before {
    content: '';
    position: absolute;
    right: -15px;
    top: 4px;
    width: 1px;
    height: 70%;
    background: #ccc;
}   

.sub_cnt_board_txt {
    padding: 0.9em;
}

@media screen and (max-width: 1080px) {
    .sub_cnt_board_tit .sub_cnt_tit_info > div:first-child:before {
        top: 2px;
        right: -13px;
    } 
}

@media screen and (max-width: 480px) {
    .sub_cnt_board_tit .sub_cnt_tit_info > div:first-child:before {
        right: -11px;
    } 
}


/* 공지사항 등 기본형 상세화면 - 테이블일 때 */
.tableWr .table_st02.table_board {
    min-width: unset !important;
}

.table_board .some_download {
    font-size: 1rem;
    color: #333;
    margin-left: 0;
}

.table_board .some_download img {
    margin-bottom: 2px;
}

@media screen and (max-width: 480px) {
    .table_board tr,
    .table_board th,
    .table_board td {
        display: block;
        width: 100% !important;
    }

    .tableWr .table_st02.table_board th {
        border-top: 1px solid #D8D8D8;
        padding: 0.7em;
    }

    .tableWr .table_st02.table_board tbody>tr {
        border-bottom: none;
    }
}