.main_top {
    width: 100%;
    position: relative;
}

.main_top ul li {
    width: 100%;
    height: 650px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main_top .cont {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    text-align: center;
    padding-top: 50px;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.4) 0%, rgba(123,116,123,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.4) 0%,rgba(123,116,123,0) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0.4) 0%,rgba(123,116,123,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#007b747b',GradientType=0 );
}

.main_top .cont .search_wrap {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_top .cont .search_wrap > div {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #707070;
}

.main_top .cont .search_wrap > div input[type=text] {
    background-color: #fff;
    width: 560px;
    height: 68px;
    padding-left: 38px;
    padding-right: 110px;
    font-size: 18px;
    border: none;
}

.main_top .cont .search_wrap > div input[type=text] + label {
    display: none;
}

.main_top .cont .search_wrap > div .btn_keyboard {
    width: 70px;
    height: 68px;
    background-image: url(/img/assets/ico-keyboard.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px auto;
    position: absolute;
    top: 0;
    right: 70px;
}

.main_top .cont .search_wrap > div .btn_search {
    width: 70px;
    height: 68px;
    background-color: #33B5B4;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(/img/assets/ico-search-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 22px auto;
}

.main_top .cont .search_wrap .btn_modal {
    width: 86px;
    height: 70px;
    border: 1px solid #239695;
    background-color: #33B5B4;
    border-radius: 5px;
    margin-left: 4px;
    font-size: 12px;
    color: #fff;
    font-family: 'NanumSquareNeoBold';
}




.main_top .cont .keyword_wrap {
    max-width: 642px;
    margin: 0 auto;
    margin-top: 19px;
    font-size: 0;
    padding-left: 107px;
    position: relative;
}

.main_top .cont .keyword_wrap dt {
    display: inline-block;
    vertical-align: top;
    width: 102px;
    height: 40px;
    line-height: 40px;
    background-color: #E63950;
    border-radius: 40px;
    font-size: 12px;
    color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
}

.main_top .cont .keyword_wrap dd {
    width: 100%;
    text-align: left;
}

.main_top .cont .keyword_wrap dd a {
    display: inline-block;
    margin-right: 6px;
    font-size: 12px;
    color: #FFFFFF;
    padding: 0 15px;
    border-radius: 37px;
    line-height: 35px;
    border: 1px solid #FFFFFF;
    margin-bottom: 5px;
    background-color: rgba(0,0,0,0.2);
}

.main_top .cont .keyword_wrap dd a:hover {
    outline: solid 2px #fff;
    background-color: rgba(0,0,0,1);
}

.main_top .cont .nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 1200px;
}

.main_top .cont .nav button {
    width: 85px;
    height: 85px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.main_top .cont .nav button.nav_prev {
    left: 0;
    background-image: url(/img/assets/ico-angle-slide-prev.svg);
}

.main_top .cont .nav button.nav_next {
    right: 0;
    background-image: url(/img/assets/ico-angle-slide-next.svg);
}

section {
    position: relative;
    z-index: 1;
}

section .wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

section .sec_tit {
    text-align: center;
}

section .sec_tit h2 {
    font-size: 56px;
    line-height: 64px;
    color: #212121;
    font-family: 'NanumSquareNeoExtraBold';
}

section .sec_tit.light h2 {
    color: #FFFFFF;
}

section .sec_tit p {
    font-size: 20px;
    line-height: 30px;
    color: #212121;
    margin-top: 17px;
}

section .sec_tit.light p {
    color: #FFFFFF;
}

section.sec01 {
    background-color: #E6E5E5;
}

section.sec01 .couter_wrap {
    display: flex;
    transform: translateY(-60px);
}

section.sec01 .couter_wrap .tit {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    background-color: #212121;
    padding: 24px;
}

section.sec01 .couter_wrap .tit h2 {
    font-size: 18px;
    line-height: 30px;
    color: #C5C5C5;
    font-family: 'NanumSquareNeoBold';
}

section.sec01 .couter_wrap ul {
    display: flex;
    flex: 1;
    background-color: #3F4242;
    padding: 10px 0;
}

section.sec01 .couter_wrap ul li {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
}

section.sec01 .couter_wrap ul li + li {
    border-left: 1px solid #BACECE;
}

section.sec01 .couter_wrap ul li a {
    display: block;
    font-size: 40px;
    color: #FFFFFF;
    text-align: right;
    font-family: 'NanumSquareNeoBold';
}

section.sec01 .couter_wrap ul li span {
    margin-top: 13px;
    font-size: 18px;
    color: #838383;
    text-align: right;
    display: block;
    position: relative;
    font-family: 'NanumSquareNeoBold';
}

section.sec01 .couter_wrap ul li span::before {
    content: "";
    display: block;
    width: 7px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/img/assets/ico-arrow-count.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

section.sec01 .couter_wrap .btn_link {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    padding: 0 15px;
    line-height: 26px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 26px;
    color: #fff;
    font-size: 13px;
}

section.sec01 .couter_wrap .btn_link::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 12px;
    height: 24px;
    margin-left: 6px;
    background-image: url(/img/assets/ico-open-window.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

section.sec01 .couter_wrap .btn_link:hover {
    background-color: #FAD925;
    color: #000000;
}

section.sec01 .couter_wrap .btn_link:hover::after {
    background-image: url(/img/assets/ico-open-window-colored.svg);
}

section.sec02 {
    background-color: #E6E5E5;
    padding-top: 50px;
    padding-bottom: 120px;

}

section.sec02 .type_list {
    margin-top: 60px;
    
}

section.sec02 .type_list ul {
    font-size: 0;
    background-repeat: no-repeat;
    background-size: 30%;
    background-position-x: right;
    background-position-y: bottom;
}

section.sec02 .type_list ul li {
    display: inline-block;
    vertical-align: top;
    width: calc((100% - 88px) / 3 - 0.1px);
}

section.sec02 .type_list ul li + li {
    margin-left: 44px;
}

section.sec02 .type_list ul li:nth-child(3n+1) {
    margin-left: 0;
}


section.sec02 .type_list ul li:nth-child(n+4) {
    margin-top: 60px;
}


section.sec02 .type_list ul li .thumb {
    width: 100%;
    border: 1px solid #707070;
    border-radius: 7px;
    overflow: hidden;
}

section.sec02 .type_list ul li:hover .thumb {
    outline: solid 2px #000;
}


section.sec02 .type_list ul li .thumb > div {
    width: 100%;
    padding-top: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.sec02 .type_list ul li .info {
    margin-top: -15px;
    text-align: center;
    position: relative;
    z-index: 1;
}

section.sec02 .type_list ul li .info span {
    display: inline-block;
    width: 100px;
    line-height: 30px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    border-radius: 30px;
}

section.sec02 .type_list ul li .info p {
    margin-top: 16px;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
    color: #212121;
}

section.sec03 {
    padding-top: 120px;
    padding-bottom: 180px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.sec03 .tab_wrap {
    margin-top: 85px;
}

section.sec03 .tab_wrap .tab_btn {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

section.sec03 .tab_wrap .tab_btn ul {
    display: flex;
}

section.sec03 .tab_wrap .tab_btn ul li {
    flex: 1;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    overflow: hidden;
}

section.sec03 .tab_wrap .tab_btn ul li:first-child {
    border-left: 1px solid #fff;
    border-radius: 6px 0 0 6px;
}

section.sec03 .tab_wrap .tab_btn ul li:last-child {
    border-right: 1px solid #fff;
    border-radius: 0 6px 6px 0;
}

section.sec03 .tab_wrap .tab_btn ul li + li {
    border-left: 1px solid #fff;
}

section.sec03 .tab_wrap .tab_btn ul li button {
    height: 46px;
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    color: #fff;
    width: 100%;
    text-align: center;
}

section.sec03 .tab_wrap .tab_btn ul li button.current {
    color: #212121;
    background-color: #fff;
}

section.sec03 .tab_wrap .tab_cont {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 137px;
}

section.sec03 .tab_wrap .tab_cont .tab_item {
    display: none;
    animation: showUp 0.3s forwards;
}

section.sec03 .tab_wrap .tab_cont .tab_item.current {
    display: block;
}

section.sec03 .tab_wrap .tab_cont .tab_item ul {
    font-size: 0;
}


section.sec03 .tab_wrap .tab_cont .tab_item ul li {
    display: inline-block;
    vertical-align: top;
    width: calc((100% - 81px) / 4);
    border-radius: 7px;
    overflow: hidden;
    background-color: #E5E5E5;
}



section.sec03 .tab_wrap .tab_cont .tab_item ul li + li {
    margin-left: 27px;
}

section.sec03 .tab_wrap .tab_cont .tab_item ul li .thumb {
    width: 100%;
}

section.sec03 .tab_wrap .tab_cont .tab_item ul li .thumb > div {
    width: 100%;
    padding-top: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

section.sec03 .tab_wrap .tab_cont .tab_item ul li .info {
    padding: 0 26px 34px;
    margin-top: -10px;
    z-index: 1;
    position: relative;
}

section.sec03 .tab_wrap .tab_cont .tab_item ul li .info p {
    font-size: 28px;
    line-height: 32px;
    color: #333333;
    font-family: 'NanumSquareNeoBold';
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

section.sec03 .tab_wrap .tab_cont .tab_item ul li .info span {
    display: block;
    margin-top: 12px;
    line-height: 19px;
    font-size: 13px;
    color: #777777;
    height: 38px;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

section.sec03 .tab_wrap .tab_cont .tab_item ul li:nth-child(2n) {
    transform: translateY(60px);
}

section.sec04 {
    padding-top: 120px;
    padding-bottom: 120px;
}

section.sec04 .grid_list {
    margin-top: 90px;
}

section.sec04 .grid_list ul {
    font-size: 0;
}

section.sec04 .grid_list ul + ul {
    margin-top: 45px;
}

section.sec04 .grid_list ul li {
    display: inline-block;
    vertical-align: top;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 10px 20px 60px rgba(0,0,0,0.1);
}

section.sec04 .grid_list ul li + li {
    margin-left: 44px;
}

section.sec04 .grid_list ul.col3 li {
    width: calc((100% - 88px) / 3 - 0.1px);
}

section.sec04 .grid_list ul.col3 li .thumb {
    width: 100%;
}

section.sec04 .grid_list ul.col3 li .thumb > div {
    width: 100%;
    padding-top: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.sec04 .grid_list ul.col3 li .info {
    padding: 25px;
}

section.sec04 .grid_list ul li .info span {
    display: inline-block;
    font-size: 13px;
    background-color: #000;
    color: #FFFFFF;
    line-height: 20px;
    border-radius: 18px;
    width: 58px;
    text-align: center;
}

section.sec04 .grid_list ul li .info p {
    font-size: 28px;
    line-height: 32px;
    color: #333333;
    font-family: 'NanumSquareNeoBold';
    margin-top: 12px;
    word-break: keep-all;
    height: 34px;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-shadow: 0 0 4px rgba(255,255,255,0.4);
}

section.sec04 .grid_list ul.col2 li {
    width: calc((100% - 44px) / 2);
    position: relative;
}

section.sec04 .grid_list ul.col2 li .thumb {
    width: 100%;
}

section.sec04 .grid_list ul.col2 li .thumb > div {
    width: 100%;
    padding-top: 37.7816291161%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.sec04 .grid_list ul.col2 li .info {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    width: 100%;
    height: 100%;
}

.modal_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out;
}

.modal_wrap.open {
    opacity: 1;
    pointer-events: visible;
}

.modal_wrap .inner {
    width: 100%;
    max-width: 440px;
    background-color: #fff;
    position: relative;
    display: none;
    animation: showUp 0.3s forwards;
}

.modal_wrap.open .inner {
    display: block;
}

.modal_wrap .inner .head {
    width: 100%;
    height: 40px;
    align-items: center;
    display: flex;
    padding: 0 4px;
    position: relative;
    border-bottom: 1px solid #000000;
}

.modal_wrap .inner .head img {
    width: 204px;
}

.modal_wrap .inner .head button {
    width: 40px;
    height: 40px;
    background-color: #000;
    background-image: url(/img/assets/ico-close-modal.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px;
    position: absolute;
    top: 0;
    right: 0;
}

.modal_wrap .inner .cont {
    padding: 40px 40px 25px;
}

.modal_wrap .inner .cont .form_wrap .form_row {
    display: flex;
}

.modal_wrap .inner .cont .form_wrap .form_row .col_label {
    width: 100px;
    height: 30px;
    display: flex;
    align-items: center;
}

.modal_wrap .inner .cont .form_wrap .form_row .col_label p {
    font-size: 15px;
    color: #000000;
    font-weight: bold;
    border-left: 2px solid #33B5B4;
    padding-left: 5px;
    line-height: 16px;
}

.modal_wrap .inner .cont .form_wrap .form_row .col_field {
    flex: 1;
}

.modal_wrap .inner .cont .form_wrap .form_row + .form_row {
    margin-top: 15px;
}

.modal_wrap .inner .cont .form_wrap .form_row .col_field input[type=text] {
    border: 1px solid #CDCDCD;
    background-color: #fff;
    padding: 0 10px;
    height: 30px;
    width: 100%;
    font-size: 13px;
}



.modal_wrap .inner .cont .form_wrap .form_row .col_field textarea {
    border: 1px solid #CDCDCD;
    background-color: #fff;
    padding: 10px;
    height: 100px;
    width: 100%;
    resize: vertical;
    font-size: 11px;
}

.modal_wrap .inner .cont .form_wrap .form_row .col_field input[type=text] + label {
    display: none;
}

.modal_wrap .inner .cont .form_wrap .form_row .col_field select {
    border: 1px solid #CDCDCD;
    background-color: #fff;
    padding: 0 10px;
    height: 30px;
    width: 100%;
    background-image: url(/img/assets/ico-angle-select-modal.svg);
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    background-size: 10px auto;
    font-size: 13px;
}

.modal_wrap .inner .cont .form_wrap .form_row .col_field input[type=text]:focus,
.modal_wrap .inner .cont .form_wrap .form_row .col_field select:focus {
    outline: solid 1px #000;
}

.modal_wrap .inner .cont .btn_wrap {
    text-align: center;
    font-size: 0;
    margin-top: 40px;
}

.modal_wrap .inner .cont .btn_wrap > * + * {
    margin-left: 10px;
}



/* 11.22 */

/* sub */
.scd_visual_area {
    position: relative;
    height: 151px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.scd_visual_area .content-inner {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 285px;
}

.scd_visual_area:before,
.scd_visual_area .content-inner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
}

.scd_visual_area:before {
    background: #FFB812;
    z-index: 1;
}
.scd_visual_area .content-inner:before {
    background: #7254C9;
    z-index: 0;
}
.scd_visual_area .page-title {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-size: 28px;
    padding-bottom: 38px;
}
.scd_visual_area .page-title:before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url(/img/assets/ico-slash.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 14px;
}


/* sub page content */
.scd-content-wrap { padding-bottom: 104px; }
.scd-content-wrap .content-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.scd-content-wrap .cont {
    flex-grow: 1;
    padding: 40px 20px;
}

.scd-content-wrap .page-menu-area {
    position: relative;
    flex-shrink: 0;
    width: 240px;
    margin-right: 50px;
}








/* depth */
.page-menu-area .menu-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
    background: #7254C9;
    border-radius: 0px 10% 0px 0px;
    margin-top: -150px;
    border-bottom: 4px solid #707070;
}
.page-menu-area .menu-title span {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
}



.page-menu-area .menu {
    position: sticky;
    top: 80px;
    left: 0;
    font-size: 14px;
}
.page-menu-area .menu .mobile-trigger {
    display: none;
}
.page-menu-area .depth-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.page-menu-area .depth .subject-txt {  
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}


.page-menu-area .depth .subject-txt span:last-child {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex-shrink: 0;
}
.page-menu-area .depth a { display: block; }


.page-menu-area .depth .subject-txt span:first-child {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex-shrink: 0;
}


.depth-02 span,
.depth-03 li.active > a,
.depth-03 li.active > .depth-head span,
.depth-04 li.active > a,
.depth-05 li.active > a { color: #121212; }


.depth-03 > li.active > a,
.depth-03 li.active > .depth-head span,
.depth-04 li.active > a { font-weight: 900; }


.depth-03 .subject-txt span,
.depth-03 a,
.depth-04 a,
.depth-05 a,
.depth-06 a,
.depth-07 a { color: #838383; }



.depth-04 > li a, .depth-04 > li > .depth-head,
.depth-05 > li a, .depth-05 > li > .depth-head,
.depth-06 > li a, .depth-06 > li > .depth-head,
.depth-07 > li a, .depth-07 > li > .depth-head{

} 



.depth-02 > li {
    position: relative;
}
.depth-02 > li:before  {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #7254C9;
    opacity: 0;
}


.depth-02 > li > .depth-head {
    height: 67px;
    border-bottom: 1px solid #707070;
    cursor: pointer;
    padding: 0 25px;
}
.depth-02 > li > .depth-head:after {
    flex-shrink: 0;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/img/assets/ico-plus-mono.svg);
    margin-left: 10px;
}
.depth-02 > li.active > .depth-head {
    background: #F0F0F0;
}
.depth-02 > li.active > .depth-head:after {
    background-image: url(/img/assets/ico-minus-mono.svg);
}
.depth-02 > li > .depth {
    max-height: 240px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding-top: 3px;
}
.depth-02 > li > .depth::-webkit-scrollbar {
    width: 9px;
    background: transparent;
}

.depth-02 > li > .depth::-webkit-scrollbar-thumb {
    background-color: #C6C6C6;
}

.depth-02 > li > .depth::-webkit-scrollbar-track {
    background-color: #F0F0F0;
}





.depth-02 > li > .depth-search-tit:after {
    flex-shrink: 0;
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/img/assets/ico-search-gnb-right_mono.svg)!important;
    margin-left: 10px;
}
.depth-02 > li.active > .depth-search-tit {
    background: #F0F0F0;
}
.depth-02 > li.active > .depth-search-tit:after {
    background-image: url(/img/assets/ico-search-gnb-right.svg)!important;
}










.depth-03 { border-bottom: 1px solid #F5F5F5 }

.depth-03 > li a {
    padding: 10px 10px 10px 24px;
}


.depth-03 > li > .depth-head {
    padding: 10px 10px 10px 24px;
}

li > .depth-head .subject-txt > a,
.depth-04 > li > .depth-head .subject-txt > a,
.depth-03 > li > .depth-head .subject-txt > a {
    padding: 0px;
}

depth-03 > li  > .depth-head > a,
.depth-04 > li  > .depth-head > a,
.depth-05 > li  > .depth-head > a
.depth-06 > li  > .depth-head > a
{
    padding: 0px;
}



.depth-03 > li > .depth-head:after {
    flex-shrink: 0;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/img/assets/ico-plus-sq.svg);
    margin-left: 10px;
}
.depth-03 > li > .depth-head .subject-txt {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    line-height: 1.3em;
}


.depth-03 > li a {
    /* max-width: calc(100% - 24px); */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.depth-03 > li > a:before {
    flex-shrink: 0;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #D5D5D5;
    margin-right: 10px;
    display: inline-flex;

}

.depth-03 > li.active > a:before {
    background: #7254C9;
    border-color: #7254C9;
}

.depth-03 > li > a.active:before {
    background: #7254C9;
    border-color: #7254C9;
}


.depth-03 > li > .depth-head .subject-txt:before {
    flex-shrink: 0;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #D5D5D5;
    margin-right: 10px;

}

.depth-03 > li > .depth-head .subject-txt span {
    max-width: calc(100% - 24px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.depth-02 > li.active:before { opacity: 1; }
.depth-02 > li.active > .depth-head:after { background-image: url(/img/assets/ico-minus-mono.svg); }


.depth-04 > li.active .depth-head:after,
.depth-05 > li.active .depth-head:after,
.depth-06 > li.active .depth-head:after,
.depth-07 > li.active .depth-head:after,
.depth-08 > li.active .depth-head:after,
.depth-03 > li.active .depth-head:after { background-image: url(/img/assets/ico-minus-sq.svg); }


.depth-04 > li.active:before,
.depth-05 > li.active:before,
.depth-06 > li.active:before,
.depth-07 > li.active:before,
.depth-08 > li.active:before { opacity: 1; }

.depth-05 > li > .depth-head:after,
.depth-06 > li > .depth-head:after,
.depth-07 > li > .depth-head:after,
.depth-08 > li > .depth-head:after,
.depth-04 > li > .depth-head:after {
    flex-shrink: 0;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/img/assets/ico-plus-sq.svg)!important ;
    margin-left: 5px;
}


.depth-04 > li.active > .depth-head:after,
.depth-05 > li.active > .depth-head:after,
.depth-06 > li.active > .depth-head:after,
.depth-07 > li.active > .depth-head:after,
.depth-08 > li.active > .depth-head:after {
    background-image: url(/img/assets/ico-minus-sq.svg)!important ;
}




.depth-04 > li > .depth-head:after {
    flex-shrink: 0;
    content: "";
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/img/assets/ico-plus-sq.svg);
    margin-left: 10px;
}


.depth-03 > li.active  > .depth-head .subject-txt:before  {
    background: #7254C9;
    border-color: #7254C9;
}




.depth-04 > li a {  
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 48px;
    padding-right: 20px;
}




.depth-04 > li a:before {
    content: "-";
    margin-right: 5px;

} 


/* 12.14 */
/* 230406 수정 */
.depth-04 > li a:before {
    content: "";
    margin-right: 7px;
    display: inline-block;
    vertical-align:middle;
    width: 14px;
    height: 14px;
    background-image: url(/img/assets/ico-note-gnb.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

}

.depth-04 > li a:hover {
    background: #F0F0F0;
}
.depth-05 > li a:hover {
    background: #F0F0F0;
}

.depth-03,
.depth-04 { display: none; }
.depth-05 { display: none; }
.depth-06 { display: none; }
.depth-07 { display: none; }
.depth-08 { display: none; }




.depth-03 li.active > .depth-head span,
.depth-04 li.active > .depth-head span,
.depth-05 li.active > .depth-head span,
.depth-06 li.active > .depth-head span,
.depth-07 li.active > .depth-head span,
.depth-08 li.active > a { font-weight: 900; }

.depth-03,
.depth-03 .subject-txt span,
.depth-04 a,
.depth-05 a { color: #838383; }


.depth-05 > li a {  
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 64px;
    padding-right: 20px;
    word-break: break-all;
}
.depth-head .subject-txt-depht05 .depth-05 > li a:before {
    content: "-";
}


.depth-04 > li > .depth-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 48px;
    padding-right: 20px;
}



.depth-04 > li > .depth-head:hover {
    background: #F0F0F0;
}

.depth-03
.depth-03 .subject-txt span,
.depth-04 a { color: #838383; }
.depth-04 > li > .depth-head .subject-txt {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    line-height: 1.3em;
}


/* 230406 수정 */
.depth-04 > li > .depth-head .subject-txt a:before {
    content: "";
    margin-right: 7px;
    display: inline-block;
    vertical-align:middle;
    width: 14px;
    height: 14px;
    background-image: url(/img/assets/ico-note-gnb.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.depth-04 > li > .depth-head .subject-txt span {
    max-width: calc(100% - 24px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}



.depth-05 > li > .depth-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 64px;
    padding-right: 20px;
}



.depth-05 > li > .depth-head .subject-txt {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    line-height: 1.3em;

}

.depth-05 > li a:before,
.depth-05 > li > .depth-head .subject-txt a:before {
    content: "";
    margin-right: 7px;
    display: inline-block;
    vertical-align:middle;
    width: 10px;
    height: 10px;
    background-image: url(/img/assets/ico-sort-gnb.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

}
.depth-05 > li > .depth-head .subject-txt span {
    max-width: calc(100% - 24px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}



.depth-06 > li a {  
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 74px;
    padding-right: 20px;
    word-break: break-all;
}

.depth-06 > li > .depth-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 74px;
    padding-right: 20px;
}



.depth-06 > li > .depth-head .subject-txt {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    line-height: 1.3em;
}

.depth-06 > li a:before,
.depth-06 > li > .depth-head .subject-txt a:before {
    content: "";
    margin-right: 7px;
    display: inline-block;
    vertical-align:middle;
    width: 10px;
    height: 10px;
    background-image: url(/img/assets/ico-sub-arrow-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.depth-06 > li > .depth-head .subject-txt span {
    max-width: calc(100% - 24px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}


.depth-07 > li a {  
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 80px;
    padding-right: 20px;
    word-break: break-all;

}


.depth-07 > li > .depth-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 80px;
    padding-right: 20px;

}

.depth-07 > li > .depth-head .subject-txt {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    line-height: 1.3em;
}


.depth-07 > li a:before,
.depth-07 > li > .depth-head .subject-txt a:before {
    content: "";
    margin-right: 7px;
    display: inline-block;
    vertical-align:middle;
    width: 10px;
    height: 10px;

    background-image: url(/img/assets/ico-arrow_right-gnb.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.depth-07 > li > .depth-head .subject-txt span {
    max-width: calc(100% - 24px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.depth-08 > li a {  
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 95px;
    padding-right: 20px;
    word-break: break-all;
}


.depth-08 > li > .depth-head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding: 8px 90px;
    padding-right: 20px;
}

.depth-08 > li > .depth-head .subject-txt {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    line-height: 1.3em;
}


.depth-08 > li a:before,
.depth-08 > li > .depth-head .subject-txt a:before {
    content: "-";
    margin-right: 7px;
    display: inline-block;
    vertical-align:middle;
    width: 10px;
    height: 10px;
    background-image: url();
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.depth-08 > li > .depth-head .subject-txt span {
    max-width: calc(100% - 24px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}











/* sub content */
.content-head-area { 
    padding-left: 26px;
    border-left: 4px solid #fff;
}
.content-head-area.yellow { border-color: #FFB812; }
.content-head-area.navy { border-color: #23408E; }
.content-head-area .title { font-size: 40px; }
.content-head-area .title div:first-child { font-family: 'NanumBarunGothic-YetHangul'; }
.content-head-area .keyword-area { font-size: 28px; }
.content-head-area .keyword-area .keyword { font-size: 40px; font-family: 'NanumBarunGothic-YetHangul'; }
.content-head-area .keyword-area .count { color: #E63950; }
.content-head-area .keyword-area .mds { display: none; }

/* table */
.table-content-area {}
.table-content-area + .table-content-area {
    margin-top: 60px;
}
.table-contet-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    margin-top: 24px;
}
.table-contet-head .title-area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: #333333;
}
.table-contet-head .title-area:before {
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/img/assets/icon-navigation-chevron_right.svg);
    margin-right: 10px;
}
.table-contet-head .moreBtn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    color: #838383;
}
.table-contet-head .moreBtn:after {
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/img/assets/icon-navigation-chevron_right_mono.svg);
    margin-left: 4px;
}


.table-content-area table {
    position: relative;
    width: 100%;
    table-layout: auto;
    border: 1px solid #E2E2E3;
    border-top: 2px solid #707070;
    border-bottom: 2px solid #707070;

}
.table-content-area table th,
.table-content-area table td {
    height: 60px;
    font-size: 14px;
    padding: 8px;
    white-space: nowrap;
}

.table-content-area table thead {
    position: sticky;
    top: 65px;
}
.table-content-area table thead th {
    background: #F9FAFB;
    border-bottom: 2px solid #E2E2E3;
    font-weight: 700;
    white-space: nowrap;
}
.table-content-area table td {
    text-align: center;
    border-top: 1px solid #E2E2E3;

}
.table-content-area table .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121212;
    border: 1px solid #000;
    width: 70px;
    height: 35px;
    margin: 0 auto;
}


.table-content-area  table tbody tr td .link_attach.ico_img{
    background-image:url(/img/assets/ico-image.svg)}



    .table-content-area  table tbody tr td .link_attach {
        display: inline-block;
        vertical-align: middle;
        width: 18px;
        height: 18px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .blind {
        display: none !important;
    }

    .table-content-area table .btn:hover {
        text-decoration: none;
    }
    .table-content-area a { color: #7254C9; }
    .table-content-area a:hover { text-decoration: underline; text-underline-position: under; }






/* 추가 css
검색 하이라이트, 검색 내용 -서지- 등의 내용 
*/
    .table-content-area table tbody tr td em {
        color: #673AB7;
        background: #ece1ff;
    }

    .table-content-area table tbody tr td  {

    }



    .table-content-area table .data_han {
        text-align: left;
        height: 60px;
        font-size: 13px;
        color:#777;
        padding: 15px;
        line-height: 1.4em;
        white-space: inherit;
        word-break: auto-phrase;
        font-family: 'NanumBarunGothic-YetHangul';
    }

    .table-content-area table .yet-hangul > *{
        font-family: 'NanumBarunGothic-YetHangul' !important;
    }
    
    .table-content-area table .yet-hangul > a > em{
        font-family: 'NanumBarunGothic-YetHangul' !important;
    }







/* page nation */
.table-paging-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    flex-wrap: wrap;
}
.table-paging-area ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 26px;
}
.table-paging-area ul li + li {
    margin-left: 6px;
}
.table-paging-area .btn { 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    font-size: 12px;
    color: #585858; 
    border: 1px solid #464646;
}
.table-paging-area .btn:hover {
    background-color: #F0F0F0;
}
.table-paging-area .btn.active {
    color: #fff;
    background: #464646;
}
.table-paging-area .firstBtn,
.table-paging-area .lastBtn,
.table-paging-area .prevBtn,
.table-paging-area .nextBtn {
    background-repeat: no-repeat;
    background-position: center;
}
.table-paging-area .firstBtn { background-image: url(/img/assets/page-firstBtn.svg); }
.table-paging-area .lastBtn { background-image: url(/img/assets/page-lastBtn.svg); }
.table-paging-area .prevBtn { background-image: url(/img/assets/page-prevBtn.svg); }
.table-paging-area .nextBtn { background-image: url(/img/assets/page-nextBtn.svg); }

.table-paging-area .index-paging {  
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 11px;
    flex-shrink: 0;
    margin: 10px 0;
}
.table-paging-area .index-paging input,
.table-paging-area .index-paging .btn {
    text-align: center;
    width: 31px;
    height: 31px;
    border: 1px solid #979797;
}
.table-paging-area .index-paging .btn {
    background: #585858;
    border-color: #585858;
    color: #fff;
}
.table-paging-area .index-paging .total {
    margin-left: 6px;
    color: #BABABA;
}

.table-tool-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 12px;
    border: 1px solid #707070;
    padding: 12px 20px;
    font-size: 13px;
}

.table-tool-area .search-resualt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
    font-weight: 700;
}
.table-tool-area .search-resualt:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
    margin-right: 6px;
}
.table-tool-area .search-resualt .count { font-weight: 800; color: #E63950; margin-left: 4px; }
.table-tool-area .serach-form-area {  
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
}
.table-tool-area .serach-form-area .searchBtn {
    background: #212121;
    color: #fff;
    width: 80px;
    height: 35px;
    margin-left: 10px;
}
.table-tool-area .search-field {
    display: flex;
    justify-content: flex-start;
    align-items: center;
} 
.table-tool-area .search-field + .search-field  {
    margin-left: 30px;
}

.table-tool-area .search-field input,
.table-tool-area .search-field select {
    border: 1px solid #E0E0E0;
    height: 35px;
    padding: 5px 12px;
}
.table-tool-area .search-field select {
    background-image: url(/img/assets/ico-select-down.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
    line-height: 1.3em;
}
.table-tool-area .search-field > select + select {
    margin-left: 10px;
}

.table-tool-area .field-gorup {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    border: 1px solid #E0E0E0;
}
.table-tool-area .field-gorup input,
.table-tool-area .field-gorup select {
    border: none;
}

.mobie-depth-area {
    position: relative;
    display: none;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: hidden;
    border-top: 4px solid #eee;
    border-bottom: 4px solid #eee;
}
.mobie-depth-area:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: #fff;
    box-shadow: 0px 10px 10px 10px rgba(255,255,255,0.8);
}
.mobie-depth-area > .btn {
    flex-shrink: 0;
    width: fit-content;
    height: 36px;
    background: #7254C9;
    color: #fff;
    padding: 0 10px;
}
.mobie-depth-area .menu {
    flex-flow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: scroll;
    padding-left: 10px;
    display: none;
}
.mobie-depth-area .menu:after {
    flex-shrink: 0;
    content: "";
    width: 20px;
    height: 35px;
}
.mobie-depth-area .menu::-webkit-scrollbar {
    width: 0px;
    height: 0;
    background: transparent;
}

.mobie-depth-area .menu::-webkit-scrollbar-thumb {
    background: transparent;
}

.mobie-depth-area .menu::-webkit-scrollbar-track {
    background: transparent;
}

.mobie-depth-area .menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    margin-right: 10px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.mobie-depth-area .menu li + li {
}
.mobie-depth-area .menu li a {
    font-size: 12px;
    padding: 6px 8px;
    /*border: 1px solid #ccc;*/
    white-space: nowrap;
    border-radius: 16px;
}
.mobie-depth-area .menu li.active {
    border-bottom: 2px solid #121212;
}
.mobie-depth-area .menu li.active a {
    /*background: #7254C9;
    border-color: #7254C9;
    color: #fff;*/
    font-weight: 700;
}



.serach-filter-area {}
.serach-filter-area .filter-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 28px;
    font-size: 13px;
}
.serach-filter-area .filter-wrap .filter-item {
    flex: 1;
}
.serach-filter-area .filter-wrap .filter-item + .filter-item  {
    margin-left: 11px;
}

.filter-item .filter-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    padding-left: 29px;
    background: #3F4242;
    color: #fff;
}
.filter-item .filter-list {
    margin-top: 3px;
    padding-top: 3px;
    border-top: 1px solid #DEDEDE;
}
.filter-item .filter-list ul {
    border: 1px solid #707070;
    background: #F0F0F0;
    height: 125px;
    overflow-y: scroll;
    padding: 11px 0;
}
.filter-item .filter-list ul li {
    padding: 9px 29px;
    cursor: pointer;
}
.filter-item .filter-list ul li.active,
.filter-item .filter-list ul li:hover {
    background: #ddd;
}

.filter-item .filter-list ul::-webkit-scrollbar {
    width: 9px;
    background: transparent;
}

.filter-item .filter-list ul::-webkit-scrollbar-thumb {
    background-color: #C6C6C6;
}

.filter-item .filter-list ul::-webkit-scrollbar-track {
    background-color: #838383;
}


.border-line {
    margin: 16px 0;
    width: 100%;
    height: 1px;
    background: #F0F0F0;
    border: 0;
}
.error-form-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 14px;
    margin-top: 15px;
}
.error-form-area span:nth-child(1) { width: 30%; }
.error-form-area span:nth-child(2) { flex-grow: 1; }
.error-form-area .btn { 
    flex-shrink: 0;
    background: #212121;
    width: 86px;
    height: 33px;
    line-height: 31px;
    color: #fff;
    border-radius: 33px;
}

.content-details-area {
    padding-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}
.content-details-area .preview {
    flex-shrink: 0;
    width: 400px;
}
.content-details-area .preview .subject {
    font-size: 28px;
    font-weight: 900;
}
.content-details-area .preview .info li {
    margin-top: 26px;
    font-size: 14px;
}
.content-details-area .viewer-thumb-area {
    width: 260px;
}
.content-details-area .viewer-thumb-area .thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230px;
    border: 1px solid #707070;
}
.content-details-area .viewer-thumb-area .thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.content-details-area .viewer-thumb-area .btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 27px;
}
.content-details-area .viewer-thumb-area .btn-area .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 35px;
    border-radius: 20px;
    background: #707070;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.content-details-area .viewer-thumb-area .btn-area .btn:hover {
    background: #212121;
}
.content-details-area .detials-bot-area {
    margin-top: 20px;
    width: 100%;
    flex-shrink: 0;
}
.content-details-area .detials-bot-area .table-subject {
    font-size: 16px;
    font-weight: 800;
    padding: 12px;
}
.content-details-area .detials-bot-area table {
    table-layout: auto;
    border-top: 2px solid #000;
}
.content-details-area .detials-bot-area table td {
    height: 48px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #D5D5D5;
    line-height: 1.5em;
}
.content-details-area .detials-bot-area table td:nth-child(1) {
    width: 120px;
    font-weight: 400;
}


.details-table-area {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.details-table-area .table-area {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(50% - 2%);
    margin-bottom: 50px;
}
.details-table-area .table-area + .table-area {
    margin-bottom: 36px;
}
.details-table-area .table-subject {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 800;
    border-top: 2px solid #23408E;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 48px;
    margin-right: 19px;
} 
.details-table-area .table-area table {
    table-layout: auto;
    flex-grow: 1;
    border-top: 2px solid #000;
}
.details-table-area .table-area table td {
    font-size: 14px;
    height: 48px;
    padding: 8px 0;
    padding-left: 28px;
    border-bottom: 1px solid #D5D5D5;
}
.details-table-area .table-area table td .btn {
    border: 1px solid #707070;
    background: #fff;
    padding: 8px 16px;
    font-weight: 700;
}
.details-table-area .table-area table td:nth-child(1) { width: 100px; }
.details-table-area .table-area table td:nth-child(2) { font-weight: 700; line-height: 1.5em; }
.details-table-area .table-area:nth-child(2) table td:nth-child(1) { width: 80px; }






/* 12.15 */

/* 메인화면 효과 및 추가내용 */



section.sec02 .type_list ul li:hover .thumb div{
 transition: all 0.2s linear;
 transform: scale(1.1);

}




section.sec04 .grid_list ul li .info p.item-loc {
    margin-top: 12px;
    line-height: 19px;
    font-size: 16px;
    color: #777777;
    font-family: 'NanumSquareNeo';
    word-break: keep-all;
    height: 34px;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-shadow: 0 0 4px rgba(255,255,255,0.4);
}



section.sec04 .grid_list ul.col2 li{
    width: calc((100% - 44px) / 2 - 0.1px);}


    section.sec04 .grid_list ul.col4 li{
        width: calc((100% - 88px) / 2 - 0.1px);}





        section.sec04 .grid_list ul li {
            display: inline-block;
            vertical-align: top;
            border-radius: 7px;
            overflow: hidden;
            box-shadow: 10px 20px 60px rgb(0 0 0 / 10%);
        }



        section.sec04 .grid_list ul.col3-2 li {
            width: calc((100% - 44px) / 2);
            position: relative;
        }

        section.sec04 .grid_list ul.col3-2 li .thumb {
            width: 100%;
        }

        section.sec04 .grid_list ul.col3-2 li .thumb > div {
            width: 100%;
            padding-top: 37.7816291161%;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        section.sec04 .grid_list ul.col3-2 li .info{
            padding: 25px;
        }

        





/* layout.css */

#footer .btm .logo > .kogl {
    padding: 0 18px;
}

#footer .btm .wrapper .logo > .kogl img {
    width: 100px;
}


#footer .btm p.kogl > img{
    width: 120px;
    margin-left: 200px;
    font-size: 14px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 1;
}



/* mobile.css */



@media screen and (max-width: 1023px){
    #footer .btm p.kogl > img {
        margin-left: 0;
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 20px;
        width: 120px;
    }



    #footer .btm .kogl > img{
        width: 120px; 
        margin-left: 64px;
        font-size: 14px;
        line-height: 24px;
        color: #FFFFFF;
        opacity: 1;
    }
}


@media screen and (max-width: 767px){
    section.sec04 .grid_list ul.col3-2 li, section.sec04 .grid_list ul.col2 li {
        width: 100%;
    }

}
@media screen and (max-width: 767px){
    section.sec04 .grid_list ul.col3-2 li + li, section.sec04 .grid_list ul.col2 li + li {
        margin-left: 0;
        margin-top: 20px;
    }


}










/* 23.01.05 */
.indexing{}

.indexingGroup {
    border: 1px solid #dfdfdf;
    background-color: #f9f9f9;
    border-radius: 3px;

    text-align: center;

}

.indexing {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom:10px;
    border-bottom: 1px solid #707070;
}


.indexing li {
    margin: 5px;
}

.indexing li a {
    display: inline-block;
    border: 1px solid #ebebeb;
    background-color: #fff;

    font-size: 13px;
    color: #999999;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;

}


.indexing li a.on {
    border: 1px solid #7254c9;
    color: #fff;
    background-color: #7254c9;
}

.indexing > li a:hover {
    border: 1px solid #7254c9;
    background-color: #7254c9;
    color: #fff;
}

.indexingGroup > div > .search-txt {
    height: 36px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    padding: 0 25px;
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.indexingGroup > div > .search-txt span:before {
    flex-shrink: 0;
    content: "";
    width: 33px;
    height: 33px;
    background-image: url(/img/assets/ico-search.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px auto;
    margin-right: 0px;
    padding: 10px 30px;
}


.btn_imgon {
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #707070;
    min-width: 86px;
    height: 33px;
    line-height: 31px;
    color: #707070;
    text-align: center;
}

.btn_imgon > a {
    flex-shrink: 0;
    background: #7254C9;
    border: 1px solid #7254C9;
    min-width: 86px;
    line-height: 31px;
    color: #fff;
    padding: 8px 25px;
    text-align: center;
}



#header .btm .site_menu_wrap .menu_block .indexing_top > li {
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 14 - 0.1px);
    padding: 10px;
}


.indexing_top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #707070;
}



.indexing_top li a {
    display: inline-block;
    border: 1px solid #ebebeb;
    background-color: #fff;
    margin: 0 5px;
    font-size: 13px;
    color: #999999;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
}


.mbmtop-txt {display: none;}



.table-subject-txt {
    font-family: 'NanumBarunGothic-YetHangul';
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #777;
}



.table-subject__more-btn {
    appearance: none;
    padding: 0.5em;
    cursor: pointer;
    margin: 0.5rem 0 0;
    font-size: 11px;
    background-color: #e9e9e9;
}

.table-subject__more-btn::before {
    content: '+ 더보기';
}

.table-subject__more-btn:checked::before {
  content: '- 접기';
}

.table-subject-txt:has(+ .table-subject__more-btn:checked) {
  -webkit-line-clamp:unset
}






/* 상세페이지 */

.content .detail_block .detail_img_story_cont .tx{font-weight: normal;font-size: 14px;line-height: 26px;text-align: justify;background: #fff; position: relative; padding: 16px; border-top: 1px solid #D2D2D2; min-height: 60px; border-bottom: 1px solid #D2D2D2; background: #fafafa;
}
.content .detail_block .detail_story .tit01{position: relative;padding: 16px;padding-left: 300px;border-top: 1px solid #D2D2D2; min-height: 140px;}
.content .detail_block .detail_img_story_cont .tx>p{padding-bottom: 0px;color: #222;letter-spacing: -0.02em;line-height: 26px;}
.content .detail_block .detail_img_story_cont .tx .cont_p01{
  font-size: 14px; font-weight: 800;  background: linear-gradient(to top, #2d2d2d 100%, transparent 50%);
  width: fit-content;  padding: 5px 20px;  margin-bottom: 20px;  color: #fff;  line-height: 24px; border-radius: 33px;
}
.content .detail_block .detail_img_story_cont .tx .cont_p00{  width: 5px; bottom: 2px; height: 16px; background-color: #FFDC00;}
.content .detail_block .detail_img_story_cont .tx_stoty {font-weight: normal; font-size: 14px; line-height: 26px; text-align: justify; position: relative; padding: 16px; border-top: 1px solid #D2D2D2; min-height: 140px; border-bottom: 1px solid #D2D2D2; background: #fff;
}
.content .detail_block .detail_img_story_cont .tx_stoty>p{padding-bottom: 20px;color: #222;letter-spacing: -0.02em;line-height: 26px;text-indent: 10px; /* 2 */}
.content .detail_block .detail_img_story_cont .tx_stoty>p>a,sup{font-weight: 800;}
.content .detail_block .detail_img_story_cont .tx_stoty .cont_p01{font-size: 16px;font-weight: 800;}
.content .detail_block .detail_img_story_cont .tx_stoty .cont_p00{width: 5px;bottom: 2px;height: 16px;background-color: #FFDC00;}
.content .detail_block .detail_img_story_cont .tx_stoty .table_ti{padding-bottom: 5px;color: #222;letter-spacing: -0.02em;line-height: 26px;text-indent: 10px; /* 2 */}
.content .detail_block .tit .highlight {background: linear-gradient(to top, yellow 50%, transparent 50%);width: fit-content;}

.markdown { font-size: 13px;background-color: #f9f9f9;border-left: 5px solid #9e753c;margin: 1rem;padding: 0.8rem 1rem 0.8rem 1.3rem;}
.markdown>p{line-height: 24px;}


.content .detail_block .tit h4::before{content:"";width:16px;height:100%;position:absolute;top:0;left:0;background-image:url(/img/assets/ico-tit-dot.svg);background-position:bottom center;background-repeat:no-repeat;background-size:16px auto}
.content .detail_block .cont .detail_img_top{font-size:0;border-top:3px solid #707070;padding-top:20px}
.content .detail_block .cont .detail_img_top .thumb_wrap{width:100%;display:inline-block;vertical-align:top;padding:0 20px;position:relative}
.data_table{display:inline-block;vertical-align:top;width:100%}
.content .detail_block .cont .detail_img_top .data_table{width:60%}
.content .detail_block .cont .detail_img_top .thumb_wrap .thumb{max-width:98%;padding-top:100%;border:1px solid #EAEAEA;position:relative; overflow: hidden;}
.content .detail_block .cont .detail_img_top .thumb_wrap .thumb > div{width:100%;padding-top:100%;background-position:center;background-repeat:no-repeat;background-size:contain;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}
.content .detail_block .cont .detail_img_top .thumb_wrap .btn_modal_viewer{width:147px;height:37px;background-color:#526558;color:#fff;font-family:'NanumSquareNeoBold';position:absolute;bottom:15px;left:50%;transform:translateX(-50%)}




.btn_area {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}


.btn_list {
    height: 34px;
    padding: 0 25px;
    line-height: 34px;
    display: inline-block;
    background-color: #1B1C1D;
    font-weight: bold;
    text-decoration: none;
    vertical-align: middle;
    font-size: 11px;
    color: #fff;
    font-family: 'NanumSquareNeoBold';
    position: relative;
    padding-left: 23px;
}

.btn_list:hover{
    background-color: #4d4d4e;

}








/* 검색페이지 리스트 */

.detail_block .list_tit {
    margin-bottom: 5px;
    position: relative;
}

.detail_block .list_tit h5 {
    font-size: 18px;
    line-height: 30px;
    color: #222;
    font-family: 'NanumSquareNeoExtraBold';
}


.detail_block .list_tit a {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    line-height: 30px;
    color: #002955;
    padding-right: 17px;
}

.detail_block .list_tit a::after {
    content: "";
    width: 14px;
    height: 100%;
    background-image: url(/img/assets/ico-btn-more.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
}




.detail_block .board_filter > div.filter_date{display:inline-flex;;
}
.detail_block .board_filter > div.filter_date::before,.detail_block .board_filter > div.filter_date::after{content:"";height:35px;width:10px;background-image:url(/img/assets/ico-sep.svg);background-position:center;background-repeat:no-repeat;background-size:contain;margin:0 7px}
.detail_block .board_filter > div.filter_date p{font-size:13px;color:#1F1F1F;line-height:35px;margin-right:11px}
.detail_block .board_filter > div.filter_date input{width:130px;height:35px;border:1px solid #E0E0E0;background-color:#FBFBFB;font-size:12px;padding:0 10px}
.detail_block .board_filter > div.filter_date input + label{display:none}
.detail_block .board_filter > div.filter_date .date_field + p{margin:0 6px}
.detail_block .board_filter > div.filter_date .date_field{position:relative}
.detail_block .board_filter > div.filter_date .date_field::after{content:"";width:15px;height:100%;position:absolute;top:0;right:15px;background-image:url(/img/assets/ico-date.svg);background-position:center;background-repeat:no-repeat;background-size:contain}
.detail_block .board_filter > div.filter_date input[type="date"]{position:relative}
.detail_block .board_filter > div.filter_date input[type="date"]::-webkit-clear-button,.detail_block .board_filter > div.filter_date input[type="date"]::-webkit-inner-spin-button{display:none}
.detail_block .board_filter > div.filter_date input[type="date"]::-webkit-calendar-picker-indicator{position:absolute;top:0;left:0;width:100%;height:100%;background:transparent;color:transparent;cursor:pointer;z-index:1
}


.detail_block .filter_search {
    padding-right: 53px;
}



.detail_block .board_filter {
    text-align: right;
    position: relative;
    margin-bottom: 16px;
    font-size: 0;
}


.detail_block .board_filter > div {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    position: relative;
}


.detail_block .filter_search .search_field {
    border: 1px solid #E0E0E0;
    font-size: 0;
    white-space: nowrap;
}

.detail_block .filter_search .search_field input[type=text] {
    width: 160px;
    height: 33px;
    border: none;
    padding-left: 10px;
}

.detail_block .select_box {
    border: 1px solid #E0E0E0;
    position: relative;
    margin-left: 10px;
}

.detail_block .select_box select {
    padding: 0 27px 0 12px;
    height: 33px;
    border: none;
}

.detail_block .select_box::after {
    content: "";
    position: absolute;
    top: 0;
    right: 10px;
    width: 9px;
    height: 100%;
    background-image: url(/img/assets/ico-angle-select.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}


.detail_block .filter_search button {
    width: 42px;
    height: 35px;
    background-color: #585858;
    border-radius: 2px;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 12px;
}


.detail_block .board_filter > div {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    position: relative;
}










.content .detail_block .detail_story_list ul li{position:relative;padding:16px 0;padding-left:16px;border-top:1px solid #D2D2D2;min-height:140px}
.content .detail_block .detail_story_list ul li:last-child{border-bottom:1px solid #D2D2D2}
.content .detail_block .detail_story_list ul li .thumb{display: none;}
.content .detail_block .detail_story_list ul li .thumb > div{width:100%;padding-top:57.08661417%;background-position:center;background-repeat:no-repeat;background-size:cover}
.content .detail_block .detail_story_list ul li .info{padding:10px 0}
.content .detail_block .detail_story_list ul li .info p{font-size:20px;line-height:22px;color:#222;font-family:'NanumSquareNeoExtraBold';display:inline-block;vertical-align:top;position:relative;padding-right:44px}
.content .detail_block .detail_story_list ul li .info p button{position:absolute;top:0;right:0;white-space:nowrap;line-height:22px;font-size:11px;color:#333}
.content .detail_block .detail_story_list ul li .info p button::after{content:"";width:12px;height:22px;display:inline-block;vertical-align:top;margin-left:4px;background-image:url(/img/assets/ico-window.svg);background-position:center;background-repeat:no-repeat;background-size:contain}
.content .detail_block .detail_story_list ul li .info i{display:block;font-size:14px;line-height:16px;color:#A9A9A9;margin-top:26px;margin-bottom:15px;font-family:'NanumSquareNeoLight'}
.content .detail_block .detail_story_list ul li .info span{font-size:13px;line-height:22px;font-family:'NanumSquareNeoLight'
}


.content .detail_block .detail_story_list ul li .infotit p {
    font-size: 20px;
    line-height: 22px;
    color: #009082;
    font-family: 'NanumSquareNeoExtraBold';
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-right: 44px;

}

.content .detail_block .detail_story_list ul li .infotit i {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #222;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'NanumSquareNeoLight';
    font-weight: 800;

}

.content .detail_block .detail_story_list ul li .searchinfo span{
    font-size: 11px;
    line-height: 16px;
    font-family: 'NanumSquareNeoLight';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}



.content .detail_block .searchbox ul li:hover{
   background-color: #f0f0f0;
}




.content .board_list {
    margin-top: 50px;
}



/* content 20230313 수정 */


.content .detail_block .detail_media_list ul li{position:relative;padding:16px 0;padding-left:300px;border-top:1px solid #D2D2D2;min-height:180px}
.content .detail_block .detail_media_list ul li:last-child{border-bottom:1px solid #D2D2D2}
.content .detail_block .detail_media_list ul li .thumb{position:absolute;top:16px;left:16px;width:254px}
.content .detail_block .detail_media_list ul li .thumb > div{width:100%;padding-top:57.08661417%;background-position:center;background-repeat:no-repeat;background-size:cover}
.content .detail_block .detail_media_list ul li .info{padding:10px 0}
.content .detail_block .detail_media_list ul li .info p{font-size:20px;line-height:22px;color:#222;font-family:'NanumSquareNeoExtraBold';display:inline-block;vertical-align:top;position:relative;padding-right:44px}
.content .detail_block .detail_media_list ul li .info p button{position:absolute;top:0;right:0;white-space:nowrap;line-height:22px;font-size:11px;color:#333}
.content .detail_block .detail_media_list ul li .info p button::after{content:"";width:12px;height:22px;display:inline-block;vertical-align:top;margin-left:4px;background-image:url(/img/assets/ico-window.svg);background-position:center;background-repeat:no-repeat;background-size:contain}
.content .detail_block .detail_media_list ul li .info i{display:block;font-size:14px;line-height:16px;color:#A9A9A9;margin-top:26px;margin-bottom:15px;font-family:'NanumSquareNeoLight'}
.content .detail_block .detail_media_list ul li .info span{font-size:13px;line-height:22px;font-family:'NanumSquareNeoLight'
}


.content .detail_block .detail_media_list ul li .infotit p {
    font-size: 20px;
    line-height: 22px;
    color: #009082;
    font-family: 'NanumSquareNeoExtraBold';
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-right: 44px;

}

.content .detail_block .detail_media_list ul li .infotit i {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #222;
    margin-top: 20px;
    margin-bottom: 15px;
    font-family: 'NanumSquareNeoLight';
    font-weight: 800;

}

.content .detail_block .detail_media_list ul li .searchinfo span{
    font-size: 11px;
    line-height: 16px;
    font-family: 'NanumSquareNeoLight';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}






#footer .wrapper .footer_kogl img {
    height: 25px;
}















