﻿/* 레이아웃 */
#header {
    max-height: 100px;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 99;
}

#footer {
    background: #383a40;
    z-index: 99;
}

#page_title {
    margin-top: 100px;
    position: relative;
    height: 150px;
}

#page_root {
    height: 60px;
    background: #fff;
    position: relative;
}

#page_contents {
    overflow: hidden;
    height: 100%;
}

#modal_wrap {
    display: none;
}

.position_rel {
    position: relative;
}

main {
    width: 100%;
}

/* 헤더 */
.header_inner {
    max-width: 1600px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    clear: both;
}
.header_inner .logo {
    float: left;
    width: 140px;
    height: 100%;
    position: relative;
}
.header_inner .logo a {
    display: block;
    position: absolute;
    top: 50%;
    max-width: 110px;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

#nav {
    float: right;
    font-size: 0;
}

/* 메뉴 */

.menu {
    display: block;
}
.menu li {
    display: inline-block;
    position: relative;
    z-index: 100;
    padding: 0;
}
.menu li:nth-last-child(2) a::after,
.menu li:last-child a::after {
    background: none;
}
.menu li a {
    display: block;
    color: #2a2b31;
    font-size: 20px;
    line-height: 20px;
    padding: 39px 90px;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out 0s; /* 크롬, 사파리 하위 버전에 transition 속성을 적용합니다. */
    -moz-transition: all 0.2s ease-in-out 0s; /* 파이어폭스 하위 버전에 transition 속성을 적용합니다. */
    -o-transition: all 0.2s ease-in-out 0s; /* 익스플로러 하위 버전에 transition 속성을 적용합니다. */
    transition: all 0.2s ease-in-out 0s;
}
.menu li a.on {
    color: #2593d1;
}
.menu > li > a {
    font-family: GmarketSansMedium;
}
.menu li > a::after {
    display: inline-block;
    content: "";
    background: #e3e3e3;
    width: 1px;
    height: 18px;
    position: absolute;
    top: 41px;
    right: 0;
}
.menu li a:hover,
.menu li:hover > a {
    color: #2593d1;
}
.menu ul {
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 5px 0;
    width: 254px;
    position: absolute;
    left: 0px;
    background: #fff;
    z-index: 99;
    border: 1px solid #d2d2d2;
    margin-top: -5px;
    -webkit-transform: translate(0, 20px);
    -moz-transform: translate(0, 20px);
    -ms-transform: translate(0, 20px);
    -o-transform: translate(0, 20px);
    transform: translate(0, 20px);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.menu ul::after {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-width: 6px;
    margin-left: -6px;
}
.menu ul::before {
    display: block;
    content: "";
    background: url(../img/sub_menu_line.jpg) no-repeat left top;
    background-size: 100% 100%;
    width: 5px;
    height: calc(100% + 2px);
    position: absolute;
    left: -1px;
    top: -1px;
    z-index: 1000;
}
.menu ul li {
    display: block;
    float: none;
    background: none;
}
.menu ul li a {
    font-size: 16px;
    display: block;
    color: #2a2b31;
    background: #fff;
    padding: 10px 0;
    text-align: left;
    padding-left: 15px;
    position: relative;
}

.menu ul li a.dep3::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 10px;
    top: 17px;
    -webkit-transform: translate(2.5px, 0) rotate(-45deg);
    -moz-transform: translate(2.5px, 0) rotate(-45deg);
    -ms-transform: translate(2.5px, 0) rotate(-45deg);
    -o-transform: translate(2.5px, 0) rotate(-45deg);
    transform: translate(0, 2.5px) rotate(-45deg);
}

.menu ul li a.dep3::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 10px;
    top: 17px;
    -webkit-transform: translate(-2.5px, 0) rotate(45deg);
    -moz-transform: translate(-2.5px, 0) rotate(45deg);
    -ms-transform: translate(-2.5px, 0) rotate(45deg);
    -o-transform: translate(-2.5px, 0) rotate(45deg);
    transform: translate(0, -2.5px) rotate(45deg);
}

.menu ul li a:hover,
.menu ul li:hover > a {
    background: #2593d1;
    color: #fff;
}
.menu li:hover > ul {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.menu ul ul {
    left: 254px;
    top: 5px;
    visibility: hidden;
    opacity: 0;
    width: auto;
    white-space: nowrap;
    -webkit-transform: translate(20px, 20px);
    -moz-transform: translate(20px, 20px);
    -ms-transform: translate(20px, 20px);
    -o-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.menu ul ul a {
    padding-right: 10px;
}

.menu ul ul:after {
    left: -8px;
    top: 19px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 8px;
    margin-top: -8px;
}

#nav .all_btn {
    vertical-align: middle;
    margin-top: -10px;
    width: 42px;
    height: 40px;
}

#nav .all_btn a {
    display: block;
    height: 38px;
    line-height: 38px;
    border: 1px solid #e3e3e3;
    padding: 0;
}

#nav .all_btn a span {
    font-size: 0;
    line-height: 0;
    background: #2a2b31;
    width: 14px;
    height: 2px;
    display: block;
    margin: 12px 0 0 13px;
}

#nav .all_btn a span::after {
    content: "";
    background: #2a2b31;
    width: 14px;
    height: 2px;
    display: block;
    position: absolute;
    top: 19px;
    left: 14px;
}

#nav .all_btn a span::before {
    content: "";
    background: #2a2b31;
    width: 14px;
    height: 2px;
    display: block;
    position: absolute;
    top: 25px;
    left: 14px;
}

#nav .all_btn a:hover {
    background: #2593d1;
    border: 1px solid #2593d1;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

#nav .all_btn a:hover span {
    background: #fff;
}

#nav .all_btn a:hover span::after {
    background: #fff;
}

#nav .all_btn a:hover span::before {
    background: #fff;
}

/* 레이아웃 - 메인*/
main > section {
    height: 100vh;
    background-size: 100% 100%;
    width: 100%;
    overflow: hidden;
}

main > section > .container {
    position: relative;
    height: 100vh;
}

.main_section_inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.main_dot {
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 10;
    transform: translatey(-50%);
}

.main_dot li {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
    margin: 8px;
    transition: box-shadow 0.3s ease;
}

.main_dot li a {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.main_dot li.active {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
}

.main_dot li.active a {
    transform: scale(0.4);
}

.main_dot li a em {
    display: none;
}

/* 기본버튼 */
.btn {
    background: #383a40;
    color: #fff;
    font-family: GmarketSansMedium;
    text-align: center;
}

.btn:active {
    background: #18191d;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.2s ease;
}

/* 파일 아이콘 이미지 */
i.ic_zip {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 5px;
    background-size: 100% 100%;
    vertical-align: middle;
    background: url(/img/IC_FILE_ZIP.png);
}

i.ic_hwp {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 5px;
    background-size: 100% 100%;
    vertical-align: middle;
    background: url(/img/IC_FILE_HAN.png);
}

i.ic_ppt,
i.ic_pptx {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 5px;
    background-size: 100% 100%;
    vertical-align: middle;
    background: url(/img/IC_FILE_PPT.png);
}

i.ic_pdf {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 5px;
    background-size: 100% 100%;
    vertical-align: middle;
    background: url(/img/IC_FILE_PDF.png);
}

i.ic_doc,
i.ic_xls,
i.ic_docx,
i.ic_xlsx {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 5px;
    background-size: 100% 100%;
    vertical-align: middle;
    background: url(/img/IC_FILE_OFFICE.png);
}

/* 컨테이너 */
.container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.row {
    overflow: hidden;
    clear: both;
}

.topMenuFixed {
    position: fixed !important;
    top: 0px;
    max-height: 80px !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e3e3e3;
}

.topMenuFixed .menu > li > a {
    padding-top: 31px;
    padding-bottom: 31px;
}

.topMenuFixed .menu li a::after {
    top: 31px;
}

/* 사이트맵 */
.full_menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    left: 0;
    top: 0;
    z-index: 999999;
    display: none;
    overflow-y: scroll;
}

.full_menu > .container {
    position: relative;
}

.full_menu > .container > h1 {
    font-size: 30px;
    font-family: GmarketSansMedium;
    line-height: 100px;
}

.full_menu > .container > ul {
    overflow: hidden;
    clear: both;
}

.full_menu > .container > ul > li {
    float: left;
    width: calc(33.3% - 30px);
    height: 100%;
    padding: 0 15px;
}

.full_menu > .container > ul > li:nth-child(3) {
    min-height: 600px;
}

.full_menu > .container > ul > li:nth-child(4) {
    min-height: 500px;
}

.full_menu > .container > ul > li > a {
    display: block;
    text-align: center;
    font-size: 20px;
    font-family: GmarketSansMedium;
    margin-bottom: 15px;
    background: url(../img/bg_btn.jpg);
    color: #fff;
    background-size: 100% 100%;
    padding: 10px 0 7px 0;
    border-radius: 2px;
}

.full_menu > .container > ul > li > ul > li > a {
    display: block;
    text-align: center;
    border-bottom: 1px dotted #e4e4e4;
    padding: 5px 0;
}

.full_menu > .container > ul > li > ul > li > ul {
    background: #f9f9fa;
    padding: 10px 0;
}

.full_menu > .container > ul > li > ul > li > ul > li {
    display: block;
}

.full_menu > .container > ul > li > ul > li > ul > li > a {
    display: block;
    font-size: 14px;
    color: #7d858d;
    text-align: center;
    line-height: 26px;
    height: 26px;
}

/* 사이트맵 - 닫기 버튼*/
.full_menu .all_btn_close {
    position: absolute;
    right: 0;
    top: 20px;
}

.full_menu .all_btn_close span {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    font-size: 0;
    line-height: 0;
}

.full_menu .all_btn_close span::after {
    display: block;
    content: "";
    font-size: 0;
    line-height: 0;
    height: 3px;
    width: 40px;
    background: #2a2b31;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: translate(6px, 23px) rotate(45deg);
}

.full_menu .all_btn_close span::before {
    display: block;
    content: "";
    font-size: 0;
    line-height: 0;
    height: 3px;
    width: 40px;
    background: #2a2b31;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: translate(6px, 23px) rotate(-45deg);
}

/* 메인 섹션 타이틀 */
.main_title {
    font-family: GmarketSansMedium;
    text-align: center;
    margin-bottom: 50px;
}

.main_title span {
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    display: block;
}

.main_title h2 {
    color: #fff;
    font-size: 46px;
    line-height: 60px;
}

/* 메인 섹션01 */
/* 메인 섹션01 - 타이틀*/
.main_section01 .main_title span {
    color: #80fbff;
    position: relative;
    margin-bottom: 15px;
    line-height: 45px;
    font-size: 25px;
}

.main_section01 .main_title span::after {
    display: block;
    content: "";
    background: #fff;
    width: 40px;
    height: 3px;
    position: absolute;
    left: 50%;
    margin: 0;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
}

.main_section01 .main_title h2 strong {
    font-size: 54px;
    display: block;
    font-weight: 400;
}

/* 메인 섹션01 - 검색&퀵메뉴 */
.main_search_quick {
    padding: 0;
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.main_search_quick .search_box {
    height: 50px;
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    background: #fff;
}

.main_search_quick .search_box i {
    display: block;
    width: 25px;
    height: 25px;
    background: url(../img/ic_serarch2.png) no-repeat left top;
    padding-right: 10px;
    border-right: 1px solid #e3e3e3;
    position: absolute;
    left: 12px;
    top: 12px;
}

.main_search_quick .search_box .form_input {
    width: calc(100% - 70px);
    height: 100%;
    border: none;
    outline: none;
    margin-left: 50px;
    padding-left: 20px;
}

.main_search_quick .search_box .form_input:focus {
    background: #f8f8f8;
    transition: all 0.5s ease-in-out;
}

.main_search_quick .search_box .m_search_btn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: #383a40;
    width: 100px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 20px;
    text-align: center;
}

.main_search_quick .search_box .m_search_btn:active {
    background: #18191d;
    transition: all 0.2s ease;
}

.m_quickbox {
    max-width: 125px;
    width: 100%;
    position: relative;
    display: block;
    margin: 0 auto;
    background: #fff;
}

.m_quickbox:hover {
    background: #f8fafe;
    transition: all 0.3s ease;
}

.m_quickbox span {
    display: none;
    font-family: GmarketSansMedium;
    font-size: 12px;
    color: #fff;
    padding: 4px;
    line-height: 12px;
    background: #e2173d;
    border-radius: 2px;
    text-transform: uppercase;
    position: absolute;
    left: 5px;
    top: 5px;
}

.m_quickbox span.active {
    display: block;
}

.m_quickbox figure {
    padding: 15px 0 0 0;
}

.m_quickbox figure img {
    max-width: 50px;
    margin: 10px auto;
}

.m_quickbox figcaption {
    height: 55px;
    position: relative;
}

.m_quickbox figcaption em {
    display: block;
    text-align: center;
    width: 80%;
    word-break: keep-all;
    line-height: 1.3em;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.ic_slider {
    width: 530px;
    margin: 0 auto;
}

.ic_slider .slick-prev,
.ic_slider .slick-next {
    position: absolute;
    top: 50%;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: block;
    font-size: 0;
    line-height: 0;
    background: #383a40;
    border-radius: 50%;
    transform: translateY(-50%);
}

.ic_slider .slick-prev {
    left: -60px;
}

.ic_slider .slick-prev:active {
    background: #18191d;
    transition: all 0.3s ease;
}

.ic_slider .slick-prev::before {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(16px) translateY(6px) rotate(45deg);
    -moz-transform: translateX(16px) translateY(6px) rotate(45deg);
    -ms-transform: translateX(16px) translateY(6px) rotate(45deg);
    -o-transform: translateX(16px) translateY(6px) rotate(45deg);
    transform: translateX(16px) translateY(6px) rotate(45deg);
}

.ic_slider .slick-prev::after {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(16px) translateY(-6px) rotate(-45deg);
    -moz-transform: translateX(16px) translateY(-6px) rotate(-45deg);
    -ms-transform: translateX(16px) translateY(-6px) rotate(-45deg);
    -o-transform: translateX(16px) translateY(-6px) rotate(-45deg);
    transform: translateX(16px) translateY(-6px) rotate(-45deg);
}

.ic_slider .slick-next {
    right: -60px;
}

.ic_slider .slick-next:active {
    background: #18191d;
    transition: all 0.3s ease;
}

.ic_slider .slick-next::before {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(20px) translateY(6px) rotate(-45deg);
    -moz-transform: translateX(20px) translateY(6px) rotate(-45deg);
    -ms-transform: translateX(20px) translateY(6px) rotate(-45deg);
    -o-transform: translateX(20px) translateY(6px) rotate(-45deg);
    transform: translateX(20px) translateY(6px) rotate(-45deg);
}

.ic_slider .slick-next::after {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(20px) translateY(-6px) rotate(45deg);
    -moz-transform: translateX(20px) translateY(-6px) rotate(45deg);
    -ms-transform: translateX(20px) translateY(-6px) rotate(45deg);
    -o-transform: translateX(20px) translateY(-6px) rotate(45deg);
    transform: translateX(20px) translateY(-6px) rotate(45deg);
}

/* 메인 섹션01 - 연구 데이터 건수 */
.datae_num {
    background: #222935;
    height: 110px;
    bottom: 0;
    left: 0;
    width: 100%;
}

.datae_num .container {
    height: 100%;
}

.datae_num ul {
    overflow: hidden;
    clear: both;
    height: 100%;
}

.datae_num li {
    width: 25%;
    position: relative;
    height: 100%;
    float: left;
}

.datae_num li::after {
    display: block;
    content: "";
    background: #393f4a;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
}

.datae_num li:first-child::before {
    display: block;
    content: "";
    background: #393f4a;
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

.datae_num h4 {
    font-size: 15px;
    line-height: 15px;
    color: #fff;
    margin: 30px 0 0 50px;
}

.datae_num span {
    font-size: 36px;
    line-height: 40px;
    color: #fff;
    font-family: MontserratRegular;
    margin: 0 0 0 50px;
    display: block;
}

.datae_num span em {
    font-size: 16px;
    padding-left: 5px;
}

.mouse_motion_Fixed {
    margin: -120px auto 0 auto !important;
}

.mouse_motion_Fixed2 {
    bottom: 310px;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

/* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .datae_num {
        /* position: fixed; */
    }
}

/* 메인 섹션02 */
.main_section02 .main_cont > ul {
    overflow: auto;
    clear: both;
    position: relative;
}

.main_section02 .main_cont > ul > li {
    float: left;
    width: 100%;
    height: 100%;
}

.main_section02 .main_cont > ul > li:first-child {
    max-width: 320px;
    margin-right: 20px;
}

.main_section02 .main_cont > ul > li:nth-child(2) {
    max-width: 520px;
    margin-right: 20px;
}

.main_section02 .main_cont > ul > li:last-child {
    max-width: 320px;
}

.main_section02 .main_cont > ul > li > div {
    background: #fff;
}

.main_section02 .column01 {
    height: 600px;
}

.main_section02 .column02 {
    height: 240px;
    margin-bottom: 20px;
}

.main_section02 .column03 {
    height: 240px;
}

.main_section02 .column04 {
    height: 150px;
    margin-bottom: 20px;
}

.main_section02 .column05 {
    height: 63px;
    margin-bottom: 20px;
}

.main_section02 .column06 {
    height: 63px;
    margin-bottom: 20px;
}

.main_section02 .column07 {
    height: 63px;
}

.main_section02 .column01 h3 {
    background: #f3f6f9;
    font-family: GmarketSansMedium;
    font-size: 24px;
    color: #383a40;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
}

.main_section02 .column01 h3::before {
    display: inline-block;
    content: "";
    width: 30px;
    height: 31px;
    background: url(../img/ic_medal2.png) no-repeat left top;
    vertical-align: middle;
}

.main_section02 .column01 h3 strong {
    font-size: 30px;
    display: block;
    line-height: 30px;
}

.main_section02 .column01 p {
    font-size: 15px;
    line-height: 22px;
    color: #969ea7;
    text-align: center;
    margin-bottom: 20px;
}

.main_section02 .column02,
.main_section02 .column03 {
    padding: 25px 30px;
    position: relative;
}

.main_section02 .column02 .btn,
.main_section02 .column03 .btn {
    position: absolute;
    right: 30px;
    top: 25px;
    width: 90px;
    height: 40px;
    line-height: 40px;
}

.main_section02 .column02 h2,
.main_section02 .column03 h2 {
    font-family: GmarketSansMedium;
    font-size: 25px;
    margin-bottom: 15px;
}

.main_section02 .column02 ul li,
.main_section02 .column03 ul li {
    border-bottom: 1px dotted #b1b6bc;
    padding-bottom: 11px;
    margin-bottom: 11px;
}

.main_section02 .column02 ul li:last-child,
.main_section02 .column03 ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.main_section02 .column02 ul li a,
.main_section02 .column03 ul li a {
    display: block;
}

.main_section02 .column02 ul li a span,
.main_section02 .column03 ul li a span {
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: #272e2d;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main_section02 .column02 ul li a em,
.main_section02 .column03 ul li a em {
    display: inline-block;
    width: 55px;
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    text-overflow: ellipsis;
    background: #2d6eba;
    text-align: center;
    border-radius: 4px;
    margin-right: 10px;
}

/* 메인 과제정보 */
.task_info {
    padding: 25px 30px;
    height: 240px;
    background: #fff;
}
.task_info ul li {
    position: relative;
}
.task_info ul > li > a > h2 {
    font-size: 25px;
    line-height: 40px;
    color: #9aa3ac;
    font-family: GmarketSansMedium;
    position: relative;
    margin-bottom: 15px;
    float: left;
    margin-right: 40px;
    position: relative;
}
.task_info ul > li:first-child > a > h2::after {
    display: inline-block;
    content: "";
    background: #c0c0c0;
    width: 1px;
    height: 20px;
    position: absolute;
    top: 7px;
    right: -20px;
}
.task_info ul > li:last-child > a > h2 {
    margin-right: 0;
}
.task_info ul > li.active > a > h2 {
    color: #272e2d;
}
.task_info ul > li > ul {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
}
.task_info ul > li > ul li {
    border-bottom: 1px dotted #b1b6bc;
    padding-bottom: 11px;
    margin-bottom: 11px;
    height: 26px;
}
.task_info ul > li > ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.task_info ul > li > ul li a {
    display: block;
}
.task_info ul > li > ul li a em {
    display: inline-block;
    width: 55px;
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    text-overflow: ellipsis;
    background: #2d6eba;
    text-align: center;
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: top;
}
.task_info ul > li > ul li a span {
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: #272e2d;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: calc(100% - 70px);
}

.task_info .btn {
    display: block;
    width: 90px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 16px;
    text-align: center;
    float: right;
}

.main_section02 .column04 {
    padding: 25px 30px;
}

.main_section02 .column04 h2 {
    font-size: 25px;
    font-family: GmarketSansMedium;
    line-height: 27px;
    margin-bottom: 15px;
}

.main_section02 .column04 ul {
    font-size: 0;
    line-height: 0;
}

.main_section02 .column04 ul li {
    display: inline-block;
    width: 25%;
}

.main_section02 .column04 ul li i {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px auto;
}

.main_section02 .column04 ul li i.data_ic01 {
    background: url(../img/ic_main_q01.png) no-repeat center 13px #f2f6f9;
}

.main_section02 .column04 ul li i.data_ic02 {
    background: url(../img/ic_main_q02.png) no-repeat center 12px #f2f6f9;
}

.main_section02 .column04 ul li i.data_ic03 {
    background: url(../img/ic_main_q03.png) no-repeat center 13px #f2f6f9;
}

.main_section02 .column04 ul li i.data_ic04 {
    background: url(../img/ic_main_q04.png) no-repeat center 10px #f2f6f9;
}

.main_section02 .column04 ul li span {
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    display: block;
}

/* 메인 - 오늘의 일정  */

.calender_slider {
    position: relative;
}
.calender_slider a {
    display: block;
    clear: both;
    overflow: hidden;
}
.calender_slider a .date {
    float: left;
    width: 25%;
    text-align: left;
    padding-top: 9px;
}
.calender_slider a .date span {
    display: inline-block;
    background: #2d6eba;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-family: GmarketSansMedium;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
}
.calender_slider a .date em {
    display: inline-block;
    width: 50px;
    word-break: keep-all;
    line-height: 18px;
    text-align: center;
    font-size: 15px;
}
.calender_slider a .schedule {
    float: left;
    width: calc(75% - 14px);
    padding: 10px 4px 10px 10px;
    background: #f3f6f9;
}
.calender_slider a .schedule h3 {
    font-size: 17px;
}
.calender_slider a .schedule p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 15px;
}
.calender_slider a .schedule span {
    display: block;
    font-size: 14px;
    line-height: 18px;
}
.calender_slider a .schedule span em {
    color: #2d6eba;
}

.calender_slider .slick-prev {
    position: absolute;
    right: 32px;
    top: -45px;
    z-index: 1000;
    width: 30px;
    height: 30px;
    display: block;
    font-size: 0;
    line-height: 0;
    background: #383a40;
}
.calender_slider .slick-prev:hover {
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.calender_slider .slick-prev::before {
    content: "";
    background: #fff;
    width: 10px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(10px) translateY(4px) rotate(45deg);
    -moz-transform: translateX(10px) translateY(4px) rotate(45deg);
    -ms-transform: translateX(10px) translateY(4px) rotate(45deg);
    -o-transform: translateX(10px) translateY(4px) rotate(45deg);
    transform: translateX(10px) translateY(4px) rotate(45deg);
}
.calender_slider .slick-prev::after {
    content: "";
    background: #fff;
    width: 10px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(10px) translateY(-4px) rotate(-45deg);
    -moz-transform: translateX(10px) translateY(-4px) rotate(-45deg);
    -ms-transform: translateX(10px) translateY(-4px) rotate(-45deg);
    -o-transform: translateX(10px) translateY(-4px) rotate(-45deg);
    transform: translateX(10px) translateY(-4px) rotate(-45deg);
}

.calender_slider .slick-next {
    position: absolute;
    right: 0;
    top: -45px;
    z-index: 1000;
    width: 30px;
    height: 30px;
    display: block;
    font-size: 0;
    line-height: 0;
    background: #383a40;
}
.calender_slider .slick-next:hover {
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.calender_slider .slick-next::before {
    content: "";
    background: #fff;
    width: 10px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(11px) translateY(4px) rotate(-45deg);
    -moz-transform: translateX(11px) translateY(4px) rotate(-45deg);
    -ms-transform: translateX(11px) translateY(4px) rotate(-45deg);
    -o-transform: translateX(11px) translateY(4px) rotate(-45deg);
    transform: translateX(11px) translateY(4px) rotate(-45deg);
}

.calender_slider .slick-next::after {
    content: "";
    background: #fff;
    width: 10px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(11px) translateY(-4px) rotate(45deg);
    -moz-transform: translateX(11px) translateY(-4px) rotate(45deg);
    -ms-transform: translateX(11px) translateY(-4px) rotate(45deg);
    -o-transform: translateX(11px) translateY(-4px) rotate(45deg);
    transform: translateX(11px) translateY(-4px) rotate(45deg);
}

.main_section02 .column05 {
    padding: 25px 10px 25px 100px;
    /* background: url(../img/bg_main_link01.jpg) no-repeat left top #fff !important; */
    background: url(../img/bg_main_link04.jpg) no-repeat left top #fff !important;
}

.main_section02 .column05 h2 {
    font-size: 22px;
    font-family: GmarketSansMedium;
    line-height: 22px;
    margin-bottom: 5px;
    position: relative;
}

.main_section02 .column05 h2::before {
    content: "";
    background: #8191a4;
    width: 10px;
    height: 2px;
    display: block;
    position: absolute;
    left: 92px;
    top: 8px;
    -webkit-transform: translateY(-3px) rotate(45deg);
    -moz-transform: translateY(-3px) rotate(45deg);
    -ms-transform: translateY(-3px) rotate(45deg);
    -o-transform: translateY(-3px) rotate(45deg);
    transform: translateY(-3px) rotate(45deg);
}

.main_section02 .column05 h2::after {
    content: "";
    background: #8191a4;
    width: 10px;
    height: 2px;
    display: block;
    position: absolute;
    left: 92px;
    top: 8px;
    -webkit-transform: translateY(3px) rotate(-45deg);
    -moz-transform: translateY(3px) rotate(-45deg);
    -ms-transform: translateY(3px) rotate(-45deg);
    -o-transform: translateY(3px) rotate(-45deg);
    transform: translateY(3px) rotate(-45deg);
}

.main_section02 .column05 p {
    color: #969ea7;
    font-size: 15px;
    line-height: 20px;
}

.main_section02 .column06 {
    padding: 25px 10px 25px 100px;
    background: url(../img/bg_main_link02.jpg) no-repeat left top #fff !important;
}

.main_section02 .column06 h2 {
    font-size: 22px;
    font-family: GmarketSansMedium;
    line-height: 22px;
    margin-bottom: 5px;
    position: relative;
    letter-spacing: -1px;
}

.main_section02 .column06 h2::before {
    content: "";
    background: #8191a4;
    width: 10px;
    height: 2px;
    display: block;
    position: absolute;
    left: 195px;
    top: 8px;
    -webkit-transform: translateY(-3px) rotate(45deg);
    -moz-transform: translateY(-3px) rotate(45deg);
    -ms-transform: translateY(-3px) rotate(45deg);
    -o-transform: translateY(-3px) rotate(45deg);
    transform: translateY(-3px) rotate(45deg);
}

.main_section02 .column06 h2::after {
    content: "";
    background: #8191a4;
    width: 10px;
    height: 2px;
    display: block;
    position: absolute;
    left: 195px;
    top: 8px;
    -webkit-transform: translateY(3px) rotate(-45deg);
    -moz-transform: translateY(3px) rotate(-45deg);
    -ms-transform: translateY(3px) rotate(-45deg);
    -o-transform: translateY(3px) rotate(-45deg);
    transform: translateY(3px) rotate(-45deg);
}

.main_section02 .column06 p {
    color: #969ea7;
    font-size: 15px;
    line-height: 20px;
}

.main_section02 .column07 {
    padding: 25px 10px 25px 100px;
    background: url(../img/bg_main_link03.jpg) no-repeat left top #fff !important;
}

.main_section02 .column07 h2 {
    font-size: 22px;
    font-family: GmarketSansMedium;
    line-height: 22px;
    margin-bottom: 5px;
    position: relative;
    letter-spacing: -1px;
}

.main_section02 .column07 h2::before {
    content: "";
    background: #8191a4;
    width: 10px;
    height: 2px;
    display: block;
    position: absolute;
    left: 195px;
    top: 8px;
    -webkit-transform: translateY(-3px) rotate(45deg);
    -moz-transform: translateY(-3px) rotate(45deg);
    -ms-transform: translateY(-3px) rotate(45deg);
    -o-transform: translateY(-3px) rotate(45deg);
    transform: translateY(-3px) rotate(45deg);
}

.main_section02 .column07 h2::after {
    content: "";
    background: #8191a4;
    width: 10px;
    height: 2px;
    display: block;
    position: absolute;
    left: 195px;
    top: 8px;
    -webkit-transform: translateY(3px) rotate(-45deg);
    -moz-transform: translateY(3px) rotate(-45deg);
    -ms-transform: translateY(3px) rotate(-45deg);
    -o-transform: translateY(3px) rotate(-45deg);
    transform: translateY(3px) rotate(-45deg);
}

.main_section02 .column07 p {
    color: #969ea7;
    font-size: 15px;
    line-height: 20px;
}

/* 메인 섹션02 - 우수 연구자 */
.reseacher_slider {
    width: 270px;
    margin: 0 auto 0 auto;
}

.reseacher_slider .slick-slide {
    max-height: 700px;
    height: 100%;
    overflow: hidden;
    padding-top: 10px;
}

.reseacher_slider .slick-prev {
    position: absolute;
    left: -25px;
    top: 65px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: block;
    font-size: 0;
    line-height: 0;
    background: #383a40;
    border-radius: 50%;
}

.reseacher_slider .slick-prev:hover {
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.reseacher_slider .slick-prev::before {
    content: "";
    background: #fff;
    width: 16px;
    height: 1px;
    display: block;
    -webkit-transform: translateX(15px) translateY(6px) rotate(45deg);
    -moz-transform: translateX(15px) translateY(6px) rotate(45deg);
    -ms-transform: translateX(15px) translateY(6px) rotate(45deg);
    -o-transform: translateX(15px) translateY(6px) rotate(45deg);
    transform: translateX(15px) translateY(6px) rotate(45deg);
}

.reseacher_slider .slick-prev::after {
    content: "";
    background: #fff;
    width: 16px;
    height: 1px;
    display: block;
    -webkit-transform: translateX(15px) translateY(-6px) rotate(-45deg);
    -moz-transform: translateX(15px) translateY(-6px) rotate(-45deg);
    -ms-transform: translateX(15px) translateY(-6px) rotate(-45deg);
    -o-transform: translateX(15px) translateY(-6px) rotate(-45deg);
    transform: translateX(15px) translateY(-6px) rotate(-45deg);
}

.reseacher_slider .slick-next {
    position: absolute;
    right: -25px;
    top: 65px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: block;
    font-size: 0;
    line-height: 0;
    background: #383a40;
    border-radius: 50%;
}

.reseacher_slider .slick-next:hover {
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.reseacher_slider .slick-next::before {
    content: "";
    background: #fff;
    width: 16px;
    height: 1px;
    display: block;
    -webkit-transform: translateX(18px) translateY(7px) rotate(-45deg);
    -moz-transform: translateX(18px) translateY(7px) rotate(-45deg);
    -ms-transform: translateX(18px) translateY(7px) rotate(-45deg);
    -o-transform: translateX(18px) translateY(7px) rotate(-45deg);
    transform: translateX(18px) translateY(6px) rotate(-45deg);
}

.reseacher_slider .slick-next::after {
    content: "";
    background: #fff;
    width: 16px;
    height: 1px;
    display: block;
    -webkit-transform: translateX(18px) translateY(-7px) rotate(45deg);
    -moz-transform: translateX(18px) translateY(-7px) rotate(45deg);
    -ms-transform: translateX(18px) translateY(-7px) rotate(45deg);
    -o-transform: translateX(18px) translateY(-7px) rotate(45deg);
    transform: translateX(18px) translateY(-6px) rotate(45deg);
}

.reseacher_mainbox {
    position: relative;
}
.reseacher_mainbox figure {
    width: 170px;
    margin: 0 auto 40px auto;
}
.reseacher_mainbox .month {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    left: 30px;
    top: -10px;
    background: #2d6eba;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: 50%;
    z-index: 99999;
}

.reseacher_mainbox figcaption {
    margin: 0 auto;
}

.reseacher_mainbox figcaption div {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.reseacher_mainbox figcaption div span {
    background: #2d6eba;
    padding: 3px 0px;
    font-size: 15px;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.reseacher_mainbox figcaption div em {
    font-size: 16px;
    margin-left: 5px;
}

.reseacher_mainbox figcaption ul li {
    color: #7c7e80;
    font-size: 15px;
    position: relative;
    padding-left: 10px;
}

.reseacher_mainbox figcaption ul li::before {
    display: block;
    content: "";
    width: 5px;
    height: 2px;
    background: #2d6eba;
    position: absolute;
    left: 0;
    top: 10px;
}

.main_section03 .container {
    width: 100%;
    overflow: hidden;
}

.main_section03 .main_title {
    -webkit-text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
    -moz-text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
    -ms-text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
    -o-text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
    text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
}

.main_section03 .main_title span {
    color: #fff;
}

.main_section03 .main_title h2 {
    color: #fff;
}

.perform_slider {
    width: 100%;
    margin: 0 auto 50px auto;
}

.perform_slider .slick-slide {
    max-height: 700px;
    height: 100%;
    overflow: hidden;
}

.perform_slider .slick-prev {
    position: absolute;
    left: 20%;
    top: 140px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: block;
    font-size: 0;
    line-height: 0;
    background: #383a40;
    border-radius: 50%;
}

.perform_slider .slick-prev:hover {
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.perform_slider .slick-prev::before {
    content: "";
    background: #fff;
    width: 16px;
    height: 1px;
    display: block;
    -webkit-transform: translateX(15px) translateY(6px) rotate(45deg);
    -moz-transform: translateX(15px) translateY(6px) rotate(45deg);
    -ms-transform: translateX(15px) translateY(6px) rotate(45deg);
    -o-transform: translateX(15px) translateY(6px) rotate(45deg);
    transform: translateX(15px) translateY(6px) rotate(45deg);
}

.perform_slider .slick-prev::after {
    content: "";
    background: #fff;
    width: 16px;
    height: 1px;
    display: block;
    -webkit-transform: translateX(15px) translateY(-6px) rotate(-45deg);
    -moz-transform: translateX(15px) translateY(-6px) rotate(-45deg);
    -ms-transform: translateX(15px) translateY(-6px) rotate(-45deg);
    -o-transform: translateX(15px) translateY(-6px) rotate(-45deg);
    transform: translateX(15px) translateY(-6px) rotate(-45deg);
}

.perform_slider .slick-next {
    position: absolute;
    right: 20%;
    top: 140px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: block;
    font-size: 0;
    line-height: 0;
    background: #383a40;
    border-radius: 50%;
}

.perform_slider .slick-next:hover {
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.perform_slider .slick-next::before {
    content: "";
    background: #fff;
    width: 16px;
    height: 1px;
    display: block;
    -webkit-transform: translateX(18px) translateY(7px) rotate(-45deg);
    -moz-transform: translateX(18px) translateY(7px) rotate(-45deg);
    -ms-transform: translateX(18px) translateY(7px) rotate(-45deg);
    -o-transform: translateX(18px) translateY(7px) rotate(-45deg);
    transform: translateX(18px) translateY(6px) rotate(-45deg);
}

.perform_slider .slick-next::after {
    content: "";
    background: #fff;
    width: 16px;
    height: 1px;
    display: block;
    -webkit-transform: translateX(18px) translateY(-7px) rotate(45deg);
    -moz-transform: translateX(18px) translateY(-7px) rotate(45deg);
    -ms-transform: translateX(18px) translateY(-7px) rotate(45deg);
    -o-transform: translateX(18px) translateY(-7px) rotate(45deg);
    transform: translateX(18px) translateY(-6px) rotate(45deg);
}

.perform_mainbox {
    display: block;
    overflow: hidden;
    clear: both;
    height: 350px;
    max-width: 900px;
    margin: 0 auto;
}

.perform_mainbox figure {
    float: left;
    height: 100%;
    width: 360px;
}

.perform_mainbox figcaption {
    float: left;
    background: url(../img/bg_main01.jpg) no-repeat right bottom #fff;
    width: calc(100% - 360px);
    height: 100%;
    position: relative;
}

.perform_mainbox figcaption h3 {
    font-size: 26px;
    line-height: 34px;
    color: #383a40;
    font-family: GmarketSansMedium;
    margin: 40px 30px 10px 40px;
}

.perform_mainbox figcaption h3 span {
    padding: 10px;
    background: #2d6eba;
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
    font-family: AritaDotumMedium;
    display: inline-block;
}

.perform_mainbox figcaption p {
    font-size: 16px;
    line-height: 22px;
    color: #969ea7;
    margin-left: 40px;
    margin-bottom: 10px;
    margin-right: 40px;
    word-break: keep-all;
}

.perform_mainbox figcaption .tag_name {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    background: #f9fafb;
    color: #df1478;
    padding: 5px 0;
}

.main_section03 .btn {
    display: block;
    margin: 0 auto;
    line-height: 70px;
    font-size: 26px;
    max-width: 400px;
    width: 100%;
}

.main_section04 .main_title {
    -webkit-text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
    -moz-text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
    -ms-text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
    -o-text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
    text-shadow: 0 0 6px rgba(19, 112, 112, 0.3);
}

.main_section04 .main_title span {
    color: #fff;
}

.main_section04 .main_title h2 {
    color: #fff;
}

.main_section04 .main_cont dl {
    height: 350px;
    background: #fff;
    overflow: hidden;
    clear: both;
}

.main_section04 .main_cont dl dt {
    float: left;
    width: 22%;
    height: 100%;
    background: url(../img/bg_main02.jpg) no-repeat right bottom;
}

.main_section04 .main_cont dl dt h2 {
    font-size: 40px;
    line-height: 47px;
    font-family: GmarketSansMedium;
    margin: 40px 0 0 45px;
}

.main_section04 .main_cont dl dt h2 strong {
    display: block;
}

.main_section04 .main_cont dl dt h2 span {
    display: block;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
}

.main_section04 .main_cont dl dd {
    float: left;
    width: 26%;
    height: 100%;
    background-size: 100% 100%;
    cursor: pointer;
}

.main_section04 .main_cont dl dd:nth-child(2) {
    background-image: url(../img/bg_main03.jpg);
}

.main_section04 .main_cont dl dd:nth-child(3) {
    background-image: url(../img/bg_main04.jpg);
}

.main_section04 .main_cont dl dd:nth-child(4) {
    background-image: url(../img/bg_main05.jpg);
}

.main_section04 .main_cont dl dd h3 {
    font-size: 26px;
    line-height: 30px;
    font-family: GmarketSansMedium;
    margin: 40px 0 10px 45px;
    overflow: hidden;
    clear: both;
}

.main_section04 .main_cont dl dd h3 span {
    float: right;
    margin-right: 40px;
}

.main_section04 .main_cont dl dd p {
    margin: 0 0 0 45px;
    color: #494e53;
    line-height: 22px;
}

.main_section04 .main_cont dl dd:nth-child(3) h3 {
    color: #fff;
}

.main_section04 .main_cont dl dd:nth-child(3) p {
    color: #fff;
}

/* 푸터 */
#footer .footer_wide {
    border-bottom: 1px solid #53555c;
    width: 100%;
}

#footer address {
    background: #2e3035;
    color: #fff;
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
    font-family: MontserratRegular;
}

#footer address a {
    color: #fff;
    font-weight: normal;
}

#footer address a strong {
    font-weight: normal;
    color: #e5e5e5;
}

.footer_info {
    overflow: hidden;
    clear: both;
    text-align: center;
    padding: 10px 0;
}

.footer_info h2 {
    display: block;
    float: left;
    color: #fff;
    line-height: 44px;
}

.footer_info .info_set {
    display: block;
    float: right;
}

.footer_info .info_set ul {
    display: inline-block;
    font-size: 0;
    line-height: 0;
}

.footer_info .info_set li {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    white-space: nowrap;
    color: #fff;
    font-size: 0;
    line-height: 0;
}

.footer_info .info_set li:before {
    content: "";
    width: 1px;
    height: 12px;
    background-color: #52545b;
    position: absolute;
    left: 0;
    top: 6px;
}

.footer_info .info_set li:first-child:before {
    width: 0;
}

.footer_info .info_set li a {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    display: block;
}

.footer_info .info_set li a:hover {
    color: #2698cb;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.favorit_site select.ui_select {
    height: 100%;
    padding: 7px 10px;
    outline: 0;
    width: 100%;
    border: none;
}

.favorit_site select.ui_select::-ms-expand {
    display: none;
}

.footer_address {
    overflow: hidden;
    clear: both;
}

.footer_address .Column {
    width: calc(25% - 60px);
    padding: 25px 30px;
    float: left;
    color: #fff;
    min-height: 220px;
    height: 100%;
    position: relative;
}

.footer_address .Column:first-child {
    width: calc(25% - 30px);
    padding: 25px 30px 25px 0;
    word-break: keep-all;
}

.footer_address .Column::after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #53555c;
}

.footer_address .Column:nth-child(4)::after {
    display: none;
}

.footer_address .Column h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer_address .Column ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer_address .Column ul li span {
    margin-right: 20px;
}

.footer_address .Column ul li em {
    line-height: 18px;
}

.footer_address .Column ul li em.add_full {
    display: block;
}

.footer_address .Column ul li a {
    color: #fff;
}

.footer_address .Column ul li a:hover {
    text-decoration: underline;
}

.footer_address .Column p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.footer_address .Column button {
    display: block;
    border: 1px solid #fff;
    background: none;
    width: 100%;
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
}

.footer_address .Column .copyright_btn {
    height: 100%;
}

.footer_address .Column .copyright_btn li {
    border: 1px solid #57585c;
    margin-bottom: 5px;
}

.footer_address .Column .copyright_btn li a {
    display: block;
    padding: 5px 10px;
}

.visit_set li span {
    background: #fff;
    border-radius: 5px;
    display: inline-block;
    color: #18191d;
    padding: 0 5px;
    margin-right: 0 !important;
}

/* 서브페이징 타이틀 */
#page_title {
    background-size: 100%;
    background-position: center 50%;
}

#page_title h1 {
    font-family: GmarketSansMedium;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#page_title h1 em {
    display: block;
    font-size: 40px;
    color: #fff;
    line-height: 40px;
    text-align: center;
}

.page_bg01 {
    background: url(../img/bg_page01.jpg) no-repeat;
}

.page_bg02 {
    background: url(../img/bg_page02.jpg) no-repeat;
}

.page_bg03 {
    background: url(../img/bg_page03.jpg) no-repeat;
}

.page_bg04 {
    background: url(../img/bg_page04.jpg) no-repeat;
}

.page_bg05 {
    background: url(../img/bg_page05.jpg) no-repeat;
}

.page_bg06 {
    background: url(../img/bg_page06.jpg) no-repeat;
}

.page_bg07 {
    background: url(../img/bg_page07.jpg) no-repeat;
}

.page_bg08 {
    background: url(../img/bg_page08.jpg) no-repeat;
}

.page_bg09 {
    background: url(../img/bg_page09.jpg) no-repeat;
}

/* 서브페이징 경로 */
#page_root {
    background: url(../img/bg_page_root.jpg) no-repeat left top;
    background-size: 100% 100%;
}

#page_root .container {
    position: relative;
    height: 60px;
}

#page_root .container::before {
    display: block;
    content: "";
    width: 1px;
    height: 60px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.25;
}

#page_root a.btn_home {
    display: block;
    width: 58px;
    height: 100%;
    position: relative;
    float: left;
}

#page_root a.btn_home i {
    display: block;
    width: 28px;
    height: 26px;
    background: url(../img/ic_home.png) no-repeat left top;
    background-size: 100% 100%;
    position: absolute;
    top: 16px;
    left: 15px;
}

#page_root a.btn_home::before {
    content: "";
    background: #fff;
    width: 36px;
    height: 1px;
    display: block;
    position: absolute;
    right: -20px;
    top: 30px;
    opacity: 0.3;
    -webkit-transform: translate(0, 15px) rotate(-55deg);
    -moz-transform: translate(0, 15px) rotate(-55deg);
    -ms-transform: translate(0, 15px) rotate(-55deg);
    -o-transform: translate(0, 15px) rotate(-55deg);
    transform: translate(0, 15px) rotate(-55deg);
}

#page_root a.btn_home::after {
    content: "";
    background: #fff;
    width: 36px;
    height: 1px;
    display: block;
    position: absolute;
    right: -20px;
    top: 30px;
    opacity: 0.3;
    -webkit-transform: translate(0, -15px) rotate(55deg);
    -moz-transform: translate(0, -15px) rotate(55deg);
    -ms-transform: translate(0, -15px) rotate(55deg);
    -o-transform: translate(0, -15px) rotate(55deg);
    transform: translate(0, -15px) rotate(55deg);
}

#page_root > .container > ul > li {
    display: inline-block;
    line-height: 60px;
    margin-left: 20px;
    padding-right: 20px;
    position: relative;
}

#page_root > .container > ul > li::before {
    content: "";
    background: #fff;
    width: 36px;
    height: 1px;
    display: block;
    position: absolute;
    right: -20px;
    top: 30px;
    opacity: 0.3;
    -webkit-transform: translate(0, 15px) rotate(-55deg);
    -moz-transform: translate(0, 15px) rotate(-55deg);
    -ms-transform: translate(0, 15px) rotate(-55deg);
    -o-transform: translate(0, 15px) rotate(-55deg);
    transform: translate(0, 15px) rotate(-55deg);
}

#page_root > .container > ul > li::after {
    content: "";
    background: #fff;
    width: 36px;
    height: 1px;
    display: block;
    position: absolute;
    right: -20px;
    top: 30px;
    opacity: 0.3;
    -webkit-transform: translate(0, -15px) rotate(55deg);
    -moz-transform: translate(0, -15px) rotate(55deg);
    -ms-transform: translate(0, -15px) rotate(55deg);
    -o-transform: translate(0, -15px) rotate(55deg);
    transform: translate(0, -15px) rotate(55deg);
}

#page_root > .container > ul > li > a {
    display: block;
    padding: 0 20px 0 20px;
    position: relative;
    color: #fff;
}

#page_root > .container > ul > li > a::before {
    content: "";
    background: #fff;
    width: 8px;
    height: 2px;
    display: block;
    position: absolute;
    right: 0;
    top: 30px;
    -webkit-transform: translate(2.5px, 0) rotate(-45deg);
    -moz-transform: translate(2.5px, 0) rotate(-45deg);
    -ms-transform: translate(2.5px, 0) rotate(-45deg);
    -o-transform: translate(2.5px, 0) rotate(-45deg);
    transform: translate(2.5px, 0) rotate(-45deg);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#page_root > .container > ul > li > a::after {
    content: "";
    background: #fff;
    width: 8px;
    height: 2px;
    display: block;
    position: absolute;
    right: 0;
    top: 30px;
    -webkit-transform: translate(-2.5px, 0) rotate(45deg);
    -moz-transform: translate(-2.5px, 0) rotate(45deg);
    -ms-transform: translate(-2.5px, 0) rotate(45deg);
    -o-transform: translate(-2.5px, 0) rotate(45deg);
    transform: translate(-2.5px, 0) rotate(45deg);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#page_root > .container > ul > li > a.on::before {
    -webkit-transform: translate(2.5px, 0) rotate(45deg);
    -moz-transform: translate(2.5px, 0) rotate(45deg);
    -ms-transform: translate(2.5px, 0) rotate(45deg);
    -o-transform: translate(2.5px, 0) rotate(45deg);
    transform: translate(2.5px, 0) rotate(45deg);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#page_root > .container > ul > li > a.on::after {
    -webkit-transform: translate(-2.5px, 0) rotate(-45deg);
    -moz-transform: translate(-2.5px, 0) rotate(-45deg);
    -ms-transform: translate(-2.5px, 0) rotate(-45deg);
    -o-transform: translate(-2.5px, 0) rotate(-45deg);
    transform: translate(-2.5px, 0) rotate(-45deg);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#page_root > .container > ul > li > ul {
    display: none;
    position: absolute;
    left: 0;
    top: 60px;
    background: #fff;
    z-index: 99;
    width: 240px;
    -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
}

#page_root > .container > ul > li > ul.active {
    display: block;
}

#page_root > .container > ul > li > ul > li {
    width: 100%;
    line-height: 20px;
    border-bottom: 1px dotted #e3e3e3;
}

#page_root > .container > ul > li > ul > li:last-child {
    border: none;
}

#page_root > .container > ul > li > ul > li > a {
    display: block;
    padding: 10px 20px;
    word-break: keep-all;
}

#page_root > .container > ul > li > ul > li > a:hover {
    background: #2698cb;
    color: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* 서브 콘텐츠 */
#page_contents .container {
    overflow: hidden;
    clear: both;
    height: 100%;
}

#page_contents .container::before {
    display: block;
    content: "";
    background: #e5e9ed;
    width: 4px;
    height: 100%;
    position: absolute;
    right: 87px;
    top: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

#page_contents .container .container_inner {
    float: left;
    width: calc(85% - 50px);
    margin-right: 50px;
    padding: 80px 0;
    height: 100%;
}

#page_contents .container .right_menu_wrap {
    float: left;
    width: 15%;
    padding: 80px 0;
    position: relative;
    height: 100%;
}

.right_menu {
    background: #f2f5f8;
    z-index: 999;
    display: block;
    position: fixed !important;
    width: 180px;
    top: 390px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.right_menu h1 {
    height: 70px;
    line-height: 70px;
    background: url(../img/bg_rightmenu.jpg) no-repeat left top;
    background-size: 100% 100%;
    font-family: GmarketSansMedium;
    font-size: 22px;
    color: #fff;
    text-align: center;
}

.right_menu ul {
    position: relative;
}

.right_menu ul li {
    border-bottom: 1px dotted #d2d7dc;
}

.right_menu ul li:last-child {
    border-bottom: 0;
}

.right_menu ul li a {
    display: block;
    padding: 12px 15px;
    position: relative;
}

.right_menu ul li a:hover {
    background: #74afce;
    color: #fff;
    padding-left: 22px;
}

.right_menu ul li a.on {
    background: #2698cb;
    color: #fff;
}

.right_menu > ul > li > ul > li {
    background: #758392;
    border-bottom: 1px dotted #8b99a7;
}

.right_menu > ul > li > ul > li > a {
    font-size: 14px;
    line-height: 18px;
    word-break: keep-all;
    padding: 10px 15px 10px 25px;
    color: #fff;
}

.right_menu > ul > li > ul > li > a::before {
    content: "-";
    display: block;
    position: absolute;
    left: 15px;
    top: 10px;
}

.right_menu > ul > li > ul > li > a:hover {
    background: #546271;
    color: #fff;
    padding-left: 22px;
}

.right_menu > ul > li > ul > li > a.on {
    background: #546271;
    color: #fff;
    padding-left: 22px;
}

.right_menu > ul > li > ul > li > a.on:hover {
    background: #546271;
}

.right_menu .btn_top {
    display: block;
    width: 50px;
    height: 50px;
    background: #5c5c5c;
    position: absolute;
    left: 50%;
    bottom: -70px;
    margin-left: -25px;
}

.right_menu .btn_top:hover {
    background: #414141;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.right_menu .btn_top em {
    display: block;
    font-family: MontserratRegular;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    padding-top: 20px;
    position: relative;
    margin: 0 auto 0 auto;
    text-align: center;
}

.right_menu .btn_top em::before {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    position: absolute;
    left: 17px;
    top: 12px;
    -webkit-transform: translate(-5px, 0) rotate(-45deg);
    -moz-transform: translate(-5px, 0) rotate(-45deg);
    -ms-transform: translate(-5px, 0) rotate(-45deg);
    -o-transform: translate(-5px, 0) rotate(-45deg);
    transform: translate(-5px, 0) rotate(-45deg);
}

.right_menu .btn_top em::after {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    position: absolute;
    left: 17px;
    top: 12px;
    -webkit-transform: translate(5px, 0) rotate(45deg);
    -moz-transform: translate(5px, 0) rotate(45deg);
    -ms-transform: translate(5px, 0) rotate(45deg);
    -o-transform: translate(5px, 0) rotate(45deg);
    transform: translate(5px, 0) rotate(45deg);
}

.sub_bottom_btn .sub_b_btn {
    display: block;
    line-height: 70px;
    text-align: center;
    max-width: 310px;
    width: 100%;
    font-family: GmarketSansMedium;
    font-size: 26px;
    color: #fff;
    background: url(../img/bg_btn.jpg);
    background-size: 100% 100%;
    margin: 0 auto;
}

.rightMenuFixed {
    position: fixed !important;
    top: 200px;
    z-index: 99;
    width: 180px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* 보드 통합 검색 */
.board_search {
    text-align: center;
    padding: 15px 0;
    border: 1px solid #ececec;
    background: #f9f9fa;
    margin-bottom: 30px;
}

.board_search .form_select {
    display: inline-block;
    max-width: 100px;
    width: 100%;
    border: 1px solid #d2d2d2;
    vertical-align: top;
}

.board_search .form_select .ui_select {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    border: none;
}

.board_search .form_input {
    display: inline-block;
    max-width: 300px;
    width: 100%;
    border: 1px solid #d2d2d2;
    vertical-align: top;
    position: relative;
}

.board_search .form_input .input_text {
    display: block;
    width: calc(100% - 20px);
    height: 38px;
    line-height: 38px;
    border: none;
    padding: 0 10px;
}

.board_search .b_search_btn {
    display: inline-block;
    vertical-align: top;
    background: #383a40;
    width: 100px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 18px;
    text-align: center;
}

.board_search .b_search_btn:active {
    background: #18191d;
    transition: all 0.2s ease;
}

.word_search {
    display: none;
    position: absolute;
    left: -1px;
    top: 39px;
    border: 1px solid #d2d2d2;
    background: #fff;
    padding: 10px 20px;
    width: calc(100% - 40px);
    height: 150px;
    overflow-y: scroll;
    z-index: 50;
}

.word_search.active {
    display: block;
}

.word_search li {
    height: 38px;
    line-height: 38px;
    border-bottom: 1px dashed #d2d2d2;
    text-align: left;
}

.word_search li a {
    text-align: left;
}

.word_search li a em {
    background: #e21358;
    color: #fff;
}

/* 보드 테이블 */
.table {
    display: table;
    border-collapse: collapse;
    position: relative;
    margin-bottom: 40px;
    width: 100%;
}
.table::before {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background: url(../img/sub_blue_line.jpg) no-repeat left top;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.table th {
    background: #f9f9fa;
    color: #383a40;
    min-height: 60px;
    line-height: 60px;
    border-right: 0;
    border-bottom: 1px solid #e3e3e3;
}
.table td {
    padding: 15px 10px;
    color: #575859;
    word-break: keep-all;
    text-align: center;
    border-bottom: 1px solid #e3e3e3;
}
.table td.left_ellipsis {
    display: table-cell;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.table td.left {
    text-align: left;
}

.table td a.blue {
    color: #3675cd;
    text-decoration: underline;
}

.table .ic_new {
    display: block;
    width: 50px;
    height: 30px;
    line-height: 30px;
    background: #3675cd;
    color: #fff;
    text-transform: uppercase;
    border-radius: 2px;
    margin: 0 auto;
    text-align: center;
}

/* 보드 테이블 - 페이징 */
.paging_wrap {
    text-align: center;
}

.tb_paging {
    display: inline-block;
    margin: 0 auto;
    overflow: hidden;
    clear: both;
    border-left: 1px solid #e2e2e2;
}

.tb_paging li {
    display: block;
    width: 39px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #e2e2e2;
    border-left: 0;
    float: left;
}

.tb_paging li a {
    display: block;
}

.tb_paging li a:hover {
    background: #3675cd;
    color: #fff;
}

.tb_paging li.btn_first {
    font-size: 0;
    text-indent: -9999px;
    display: block;
    position: relative;
}

.tb_paging li.btn_prv {
    font-size: 0;
    text-indent: -9999px;
    display: block;
    position: relative;
}

.tb_paging li.btn_next {
    font-size: 0;
    text-indent: -9999px;
    display: block;
    position: relative;
}

.tb_paging li.btn_last {
    font-size: 0;
    text-indent: -9999px;
    display: block;
    position: relative;
}

/* 보드 테이블 - 페이징 - btn_first*/
.tb_paging li.btn_first::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 13px;
    top: 19px;
    -webkit-transform: translate(0, 2.5px) rotate(45deg);
    -moz-transform: translate(0, 2.5px) rotate(45deg);
    -ms-transform: translate(0, 2.5px) rotate(45deg);
    -o-transform: translate(0, 2.5px) rotate(45deg);
    transform: translate(0, 2.5px) rotate(45deg);
}

.tb_paging li.btn_first:hover::before {
    background: #fff;
}

.tb_paging li.btn_first::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 13px;
    top: 19px;
    -webkit-transform: translate(0, -2.5px) rotate(-45deg);
    -moz-transform: translate(0, -2.5px) rotate(-45deg);
    -ms-transform: translate(-2.5px, 0) rotate(-45deg);
    -o-transform: translate(0, -2.5px) rotate(-45deg);
    transform: translate(0, -2.5px) rotate(-45deg);
}

.tb_paging li.btn_first:hover::after {
    background: #fff;
}

.tb_paging li.btn_first a::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 18px;
    top: 19px;
    -webkit-transform: translate(0, 2.5px) rotate(45deg);
    -moz-transform: translate(0, 2.5px) rotate(45deg);
    -ms-transform: translate(0, 2.5px) rotate(45deg);
    -o-transform: translate(0, 2.5px) rotate(45deg);
    transform: translate(0, 2.5px) rotate(45deg);
}

.tb_paging li.btn_first a:hover::before {
    background: #fff;
}

.tb_paging li.btn_first a::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 18px;
    top: 19px;
    -webkit-transform: translate(0, -2.5px) rotate(-45deg);
    -moz-transform: translate(0, -2.5px) rotate(-45deg);
    -ms-transform: translate(-2.5px, 0) rotate(-45deg);
    -o-transform: translate(0, -2.5px) rotate(-45deg);
    transform: translate(0, -2.5px) rotate(-45deg);
}

.tb_paging li.btn_first a:hover::after {
    background: #fff;
}
/* 보드 테이블 - 페이징 - btn_prv*/
.tb_paging li.btn_prv a::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 16px;
    top: 19px;
    -webkit-transform: translate(0, 2.5px) rotate(45deg);
    -moz-transform: translate(0, 2.5px) rotate(45deg);
    -ms-transform: translate(0, 2.5px) rotate(45deg);
    -o-transform: translate(0, 2.5px) rotate(45deg);
    transform: translate(0, 2.5px) rotate(45deg);
}

.tb_paging li.btn_prv a:hover::before {
    background: #fff;
}

.tb_paging li.btn_prv a::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 16px;
    top: 19px;
    -webkit-transform: translate(0, -2.5px) rotate(-45deg);
    -moz-transform: translate(0, -2.5px) rotate(-45deg);
    -ms-transform: translate(-2.5px, 0) rotate(-45deg);
    -o-transform: translate(0, -2.5px) rotate(-45deg);
    transform: translate(0, -2.5px) rotate(-45deg);
}

.tb_paging li.btn_prv a:hover::after {
    background: #fff;
}
/* 보드 테이블 - 페이징 - btn_next*/
.tb_paging li.btn_next::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 16px;
    top: 19px;
    -webkit-transform: translate(0, 2.5px) rotate(-45deg);
    -moz-transform: translate(0, 2.5px) rotate(-45deg);
    -ms-transform: translate(0, 2.5px) rotate(-45deg);
    -o-transform: translate(0, 2.5px) rotate(-45deg);
    transform: translate(0, 2.5px) rotate(-45deg);
}

.tb_paging li.btn_next:hover::before {
    background: #fff;
}

.tb_paging li.btn_next::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 16px;
    top: 19px;
    -webkit-transform: translate(0, -2.5px) rotate(45deg);
    -moz-transform: translate(0, -2.5px) rotate(45deg);
    -ms-transform: translate(-2.5px, 0) rotate(45deg);
    -o-transform: translate(0, -2.5px) rotate(45deg);
    transform: translate(0, -2.5px) rotate(45deg);
}

.tb_paging li.btn_next:hover::after {
    background: #fff;
}
/* 보드 테이블 - 페이징 - btn_last*/
.tb_paging li.btn_last::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 13px;
    top: 19px;
    -webkit-transform: translate(0, 2.5px) rotate(-45deg);
    -moz-transform: translate(0, 2.5px) rotate(-45deg);
    -ms-transform: translate(0, 2.5px) rotate(-45deg);
    -o-transform: translate(0, 2.5px) rotate(-45deg);
    transform: translate(0, 2.5px) rotate(-45deg);
}

.tb_paging li.btn_last:hover::before {
    background: #fff;
}

.tb_paging li.btn_last::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 13px;
    top: 19px;
    -webkit-transform: translate(0, -2.5px) rotate(45deg);
    -moz-transform: translate(0, -2.5px) rotate(45deg);
    -ms-transform: translate(-2.5px, 0) rotate(45deg);
    -o-transform: translate(0, -2.5px) rotate(45deg);
    transform: translate(0, -2.5px) rotate(45deg);
}

.tb_paging li.btn_last:hover::after {
    background: #fff;
}

.tb_paging li.btn_last a::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 18px;
    top: 19px;
    -webkit-transform: translate(0, 2.5px) rotate(-45deg);
    -moz-transform: translate(0, 2.5px) rotate(-45deg);
    -ms-transform: translate(0, 2.5px) rotate(-45deg);
    -o-transform: translate(0, 2.5px) rotate(-45deg);
    transform: translate(0, 2.5px) rotate(-45deg);
}

.tb_paging li.btn_last a:hover::before {
    background: #fff;
}

.tb_paging li.btn_last a::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 18px;
    top: 19px;
    -webkit-transform: translate(0, -2.5px) rotate(45deg);
    -moz-transform: translate(0, -2.5px) rotate(45deg);
    -ms-transform: translate(-2.5px, 0) rotate(45deg);
    -o-transform: translate(0, -2.5px) rotate(45deg);
    transform: translate(0, -2.5px) rotate(45deg);
}

.tb_paging li.btn_last a:hover::after {
    background: #fff;
}
.tb_paging li .active {
    background: #3675cd;
    color: #fff;
}

/* 테이블 - 타이틀 */
.table2 {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    margin-bottom: 10px;
    border: 1px solid #e3e3e3;
}

.table2 td,
.table2 th {
    border-bottom: 1px solid #e3e3e3;
    text-align: center;
    line-height: 22px;
    padding: 13px 5px;
    border-right: 1px solid #e3e3e3;
}

.table2 th {
    background: #f9f9fa;
    color: #383a40;
    font-weight: normal;
}

.table2 td {
    color: #575859;
    word-break: keep-all;
    background: #fff;
}

.table2 td.left {
    text-align: left;
}

.table2 td span.blue {
    color: #fff;
    background: #3675cd;
    padding: 3px 5px;
    border-radius: 4px;
}

/* 보드 뷰페이지 - 타이틀 */
.view_title {
    border: 1px solid #e3e3e3;
    position: relative;
    margin-bottom: 20px;
}

.view_title::before {
    display: block;
    content: "";
    width: calc(100% + 2px);
    height: 3px;
    background: url(../img/sub_menu_line.jpg) no-repeat left top;
    background-size: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
}

.view_title h3 {
    padding: 20px 30px;
    border-bottom: 1px solid #e3e3e3;
}

.view_title h3 span {
    background: #3675cd;
    border-radius: 2px;
    color: #fff;
    padding: 7px 12px;
    text-transform: uppercase;
    margin-right: 10px;
}

.view_title ul {
    padding: 20px 30px;
    overflow: hidden;
    clear: both;
}

.view_title ul li {
    color: #575859;
    display: block;
    width: 30%;
    float: left;
}

.view_title ul li:last-child {
    width: 40%;
    text-align: right;
    float: right;
}

.view_title ul li span {
    color: #383a40;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}

.view_title ul li span::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #e3e3e3;
}

.view_table {
    margin-bottom: 40px;
}

.view_table td {
    text-align: left;
}

.file_atta li {
    border-bottom: 1px dotted #e3e3e3;
    line-height: 26px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    text-align: left;
}

.file_atta li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.editor_area {
    padding-bottom: 40px;
}

.move_post {
    border-top: 2px solid #93959a;
    border-bottom: 2px solid #93959a;
    line-height: 58px;
    overflow: hidden;
    clear: both;
    margin-bottom: 40px;
}

.move_post .prev_post {
    display: block;
    text-align: left;
    position: relative;
    float: left;
    padding-left: 20px;
}

.move_post .prev_post::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    top: 28px;
    -webkit-transform: translate(0, 2.5px) rotate(45deg);
    -moz-transform: translate(0, 2.5px) rotate(45deg);
    -ms-transform: translate(0, 2.5px) rotate(45deg);
    -o-transform: translate(0, 2.5px) rotate(45deg);
    transform: translate(0, 2.5px) rotate(45deg);
}

.move_post .prev_post::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    top: 28px;
    -webkit-transform: translate(0, -2.5px) rotate(-45deg);
    -moz-transform: translate(0, -2.5px) rotate(-45deg);
    -ms-transform: translate(-2.5px, 0) rotate(-45deg);
    -o-transform: translate(0, -2.5px) rotate(-45deg);
    transform: translate(0, -2.5px) rotate(-45deg);
}

.move_post .next_post {
    display: block;
    text-align: right;
    position: relative;
    float: right;
    padding-right: 20px;
}

.move_post .next_post::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 0;
    top: 28px;
    -webkit-transform: translate(0, 2.5px) rotate(-45deg);
    -moz-transform: translate(0, 2.5px) rotate(-45deg);
    -ms-transform: translate(0, 2.5px) rotate(-45deg);
    -o-transform: translate(0, 2.5px) rotate(-45deg);
    transform: translate(0, 2.5px) rotate(-45deg);
}

.move_post .next_post::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: 0;
    top: 28px;
    -webkit-transform: translate(0, -2.5px) rotate(45deg);
    -moz-transform: translate(0, -2.5px) rotate(45deg);
    -ms-transform: translate(-2.5px, 0) rotate(45deg);
    -o-transform: translate(0, -2.5px) rotate(45deg);
    transform: translate(0, -2.5px) rotate(45deg);
}

.view_page_wrap {
    text-align: center;
}

.view_page_wrap .list_btn {
    display: inline-block;
    vertical-align: top;
    background: #383a40;
    width: 100px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 18px;
    text-align: center;
}

.view_page_wrap .list_btn:active {
    background: #18191d;
    transition: all 0.2s ease;
}

.view_page_wrap .newsletter_btn {
    display: inline-block;
    vertical-align: top;
    background: #f24538;
    width: 200px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 18px;
    text-align: center;
}

.view_page_wrap .newsletter_btn:active {
    background: #d82f22;
    transition: all 0.2s ease;
}

/* 탭메뉴 */
.tab_menu {
    overflow: hidden;
    margin-bottom: 30px;
}

.tab_menu li {
    float: left;
    list-style: none;
    text-align: center;
}

.tab_menu li a {
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    display: block;
    background: #f4f4f4;
    line-height: 20px;
    padding: 15px 10px;
}

.tab_menu li:first-child a {
    border-left: 1px solid #e3e3e3;
}

.tab_menu li a.active {
    background: url(../img/bg_reasher.jpg);
    color: #fff;
    background-size: 100%;
}

.tab_3set li {
    width: 33.33%;
}

.tab_2set li {
    width: 50%;
}

.tab_2set li:last-child a {
    border-right: 0;
}

.tab_4set li {
    width: 25%;
}

.tab_content {
    display: block;
}

/* input - radio */
.input_radio {
    position: relative;
}

.input_radio input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.input_radio input[type="radio"] + label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input_radio input[type="radio"] + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 21px;
    height: 21px;
    text-align: center;
    background: #fafafa;
    border: 1px solid #cacece;
    border-radius: 100%;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
}

.input_radio input[type="radio"] + label:active:before,
.input_radio input[type="radio"]:checked + label:active:before {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.input_radio input[type="radio"]:checked + label:before {
    background: #e9ecee;
    border-color: #adb8c0;
}

.input_radio input[type="radio"]:checked + label:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 13px;
    height: 13px;
    background: #f76026;
    border-radius: 100%;
}

/* input - check */
.input_checks input {
    display: none;
}

.input_checks .icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 2px solid #5f6269;
    position: relative;
    cursor: pointer;
}

.input_checks .icon::before,
.input_checks .icon::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 0;
    background-color: #d22f70;
    position: absolute;
    transform-origin: left top;
}

.input_checks .icon::before {
    top: 5px;
    left: -3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.input_checks .icon::after {
    top: 15px;
    left: 8px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.input_checks input:checked ~ .icon {
    border-color: #be849b;
}

.input_checks input:checked ~ .icon::before {
    height: 15px;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.input_checks input:checked ~ .icon::after {
    height: 20px;
    -webkit-transition: all 0.35s ease 0.35s;
    -moz-transition: all 0.35s ease 0.35s;
    -o-transition: all 0.35s ease 0.35s;
    transition: all 0.35s ease 0.35s;
}

.accordion_table .hide {
    display: none;
}

.accordion_table .show {
    display: table-row;
    background: #f9f9fa;
}

.accordion_table .show > td {
    padding: 20px 30px;
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px 5px inset rgba(0, 0, 0, 0.05);
}

.accordion_table .item td {
    cursor: pointer;
}

.busi_table_tip li {
    color: #575859;
    font-size: 15px;
    padding-left: 17px;
    position: relative;
}
.busi_table_tip li.red {
    color: #d4044a;
}

.busi_table_tip li::before {
    display: block;
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

/* 모달창 */
.tingle-modal {
    z-index: 99999 !important;
}

.tingle-modal-box {
    max-width: 800px;
}

.tingle-modal-box__content {
    position: relative;
    padding: 80px 40px 40px 40px !important;
}

.tingle-modal-box__content h1 {
    background: #4e5268;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 18px;
    padding: 15px 40px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px 2px 0 0;
    width: 100%;
}

.tingle-modal-box__content .empha_txt {
    padding: 10px 10px 10px 45px;
    background: #f2f2f2;
    color: #eb124b;
    position: relative;
    margin-bottom: 25px;
}

.tingle-modal-box__content .empha_txt::before {
    display: block;
    content: "";
    width: 24px;
    height: 28px;
    background: url(../img/ic_caution.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 8px;
    left: 10px;
}

.tingle-modal-box__content h2 {
    color: #383a40;
    margin-bottom: 15px;
}

.tingle-modal-box__content ul {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #e3e3e3;
}

.tingle-modal-box__content ul.last {
    border-bottom: none;
}

.tingle-modal-box__content ul li {
    padding-left: 12px;
    position: relative;
}

.tingle-modal-box__content ul li::before {
    display: block;
    content: "";
    background: #2c85e0;
    width: 5px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 10px;
}

/* sub01_01 - 인사말 */
.sub01_01 dl {
    overflow: hidden;
    clear: both;
}

.sub01_01 dt {
    font-family: GmarketSansMedium;
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 20px;
}

.sub01_01 dt span {
    color: #2b54a2;
    position: relative;
    display: inline-block;
}

.sub01_01 dd {
    float: left;
}

.sub01_01 dd.note {
    width: calc(65% - 45px);
    margin-right: 45px;
}

.sub01_01 dd.note p {
    margin-bottom: 20px;
    text-align: justify;
    line-height: 30px;
}

.sub01_01 dd.G_Manager {
    width: 35%;
}

.sub01_01 dd.G_Manager figcaption {
    text-align: right;
}

.sub01_01 dd.G_Manager figcaption em {
    display: block;
}

.sub01_01 dd.G_Manager figcaption span {
    display: inline-block;
}

.sub01_01 dd.G_Manager figcaption img {
    max-width: 130px;
}

/* sub01_02 - 연혁 */
.tab_year {
    overflow: hidden;
    clear: both;
    margin-bottom: 40px;
    width: 100%;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.tab_year ul {
    border-top: 1px solid #e3e3e3;
    text-align: center;
    font-size: 0;
    line-height: 0;
    margin-bottom: 10px;
    background: #ffffff;
}

.tab_year ul li {
    display: inline-block;
    border-bottom: 1px solid #e3e3e3;
    width: 10%;
    position: relative;
}

.tab_year ul li::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 19px;
    background: #e3e3e3;
    width: 1px;
    height: 18px;
}

.tab_year ul li a {
    display: block;
    font-size: 16px;
    line-height: 58px;
    font-family: MontserratRegular;
    position: relative;
}

.tab_year ul li a.on {
    color: #2b4695;
}

.tab_year ul li a.on::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #2b4695;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.tab_year span {
    float: right;
}

.tab_year span::before {
    content: "\f0a6";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 18px;
    margin-right: 10px;
    margin-left: -25px;
}

.history_wrap {
    position: relative;
}

.history_wrap::before {
    display: block;
    content: "";
    position: absolute;
    left: 175px;
    top: 0;
    background: #d9edf1;
    width: 4px;
    height: 100%;
}

.year_set {
    margin-bottom: 60px;
    position: relative;
}

.year_set h3 {
    display: block;
    width: 200px;
    font-family: MontserratRegular;
    font-size: 50px;
    line-height: 70px;
    font-weight: bold;
    background: #9196bc;
    color: #fff;
    position: absolute;
    left: 0;
    border-left: 8px solid #64688e;
    text-align: center;
}

.year_set ul {
    padding-left: 240px;
}

.year_set ul li {
    overflow: hidden;
    clear: both;
    border-bottom: 1px solid #e8e8e8;
    line-height: 24px;
    padding: 15px 0;
}

.year_set ul li span {
    display: block;
    float: left;
    color: #9a9a9b;
    width: 80px;
}

.year_set ul li .note {
    float: left;
    width: calc(100% - 80px);
}

.year_set ul li .note em {
    line-height: 24px;
}

.historyMenuFixed {
    position: fixed !important;
    top: 80px;
    z-index: 99;
    width: 100%;
    left: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.historyMenuFixed ul {
    border-bottom: 1px solid #e3e3e3;
}

.historyMenuFixed ul li {
    width: auto;
    border-bottom: 0;
}

.historyMenuFixed ul li a {
    padding-left: 15px;
    padding-right: 15px;
}

.historymargintop {
    margin-top: 194px;
}

.basic_list ul li {
    position: relative;
    padding-left: 10px;
    text-align: left;
}

.basic_list ul li::before {
    display: block;
    content: "";
    background: #2d499c;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 10px;
}

/* sub01_03 - 오시는길 */
/* sub01_03 - 조직도 */
.org_img {
    margin-bottom: 40px;
}

.org_search {
    padding: 15px 30px;
    border: 1px solid #ececec;
    background: #f9f9fa;
    margin-bottom: 30px;
    text-align: right;
    clear: both;
    overflow: hidden;
}

.org_search h3 {
    display: block;
    font-size: 22px;
    line-height: 38px;
    color: #383a40;
    font-family: GmarketSansMedium;
    float: left;
}

.org_search .form_input {
    display: inline-block;
    max-width: 300px;
    width: 100%;
    border: 1px solid #d2d2d2;
    vertical-align: top;
    position: relative;
}

.org_search .form_input .input_text {
    display: block;
    width: calc(100% - 20px);
    height: 38px;
    line-height: 38px;
    border: none;
    padding: 0 10px;
}

.org_search .b_search_btn {
    display: inline-block;
    vertical-align: top;
    background: #383a40;
    width: 100px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 18px;
    text-align: center;
}

.org_search .b_search_btn:active {
    background: #18191d;
    transition: all 0.2s ease;
}

.org_category {
    border: 1px solid #ececec;
    padding: 25px;
    overflow: hidden;
    clear: both;
    margin-bottom: 30px;
}

.org_category .category {
    display: block;
    width: calc(20% - 1px);
    float: left;
    border-right: 1px dotted #ececec;
    height: 280px;
}

.org_category .category::-webkit-scrollbar {
    width: 10px;
}

.org_category .category::-webkit-scrollbar-thumb {
    background-color: #c8c8c8;
}

.org_category .category::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

.org_category .category li {
    line-height: 30px;
    padding-left: 10px;
}

.org_category .category li.on {
    background: url(../img/sub01_05_bg01.png);
}

.org_category .category li.on a {
    color: #fff;
}

.org_category .category li a {
    display: inline-block;
    position: relative;
}

.org_category .category li a::before {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: -16px;
    top: 14px;
    -webkit-transform: translate(0, 2.5px) rotate(-45deg);
    -moz-transform: translate(0, 2.5px) rotate(-45deg);
    -ms-transform: translate(0, 2.5px) rotate(-45deg);
    -o-transform: translate(0, 2.5px) rotate(-45deg);
    transform: translate(0, 2.5px) rotate(-45deg);
}

.org_category .category li a:hover::before {
    background: #2698cb;
}

.org_category .category li.on a::before {
    background: #fff;
}

.org_category .category li a::after {
    content: "";
    background: #77787f;
    width: 8px;
    height: 1px;
    display: block;
    position: absolute;
    right: -16px;
    top: 14px;
    -webkit-transform: translate(0, -2.5px) rotate(45deg);
    -moz-transform: translate(0, -2.5px) rotate(45deg);
    -ms-transform: translate(-2.5px, 0) rotate(45deg);
    -o-transform: translate(0, -2.5px) rotate(45deg);
    transform: translate(0, -2.5px) rotate(45deg);
}

.org_category .category li a:hover::after {
    background: #2698cb;
}

.org_category .category li.on a::after {
    background: #fff;
}

.org_category .sub_category {
    display: block;
    width: calc(80% - 21px);
    float: left;
    padding-left: 20px;
}

.org_category .sub_category ul {
    overflow: hidden;
    clear: both;
    height: 280px;
}

.org_category .sub_category ul::-webkit-scrollbar {
    width: 10px;
}

.org_category .sub_category ul::-webkit-scrollbar-thumb {
    background-color: #c8c8c8;
}

.org_category .sub_category ul::-webkit-scrollbar-track {
    background-color: #f0f0f0;
}

.org_category .sub_category ul li {
    width: calc(20% - 12px);
    line-height: 38px;
    background: #f9f9fa;
    float: left;
    border: 1px solid #ececec;
    margin: 5px 5px;
}

.org_category .sub_category ul li.on {
    background: url(../img/sub01_05_bg01.png);
}

.org_category .sub_category ul li.on a {
    color: #fff;
}

.org_category .sub_category ul li a {
    display: block;
    text-align: center;
}

.org_list h3 {
    margin-bottom: 20px;
    background: url(../img/title_line.png) repeat-x right 10px;
}

.org_list h3 span {
    font-size: 30px;
    line-height: 30px;
    height: 30px;
    color: #0f5897;
    font-family: GmarketSansMedium;
    background: #fff;
    padding-right: 10px;
}

.org_list > ul {
    overflow: hidden;
    clear: both;
}

.org_list > ul > li {
    width: calc(50% - 10px);
    float: right;
    margin-bottom: 20px;
}

.org_list > ul > li:nth-child(odd) {
    float: left;
}

.org_member {
    padding: 20px;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    clear: both;
}

.org_member h4 {
    color: #383a40;
    font-family: GmarketSansMedium;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
}

.org_member .member_pic {
    width: 110px;
    height: 120px;
    background: url(../img/sub01_03_img01.png) no-repeat left top;
    float: left;
    margin-bottom: 20px;
    overflow: hidden;
}

.org_member .member_info {
    float: left;
    width: calc(100% - 5px);
    padding-left: 5px;
    margin-bottom: 20px;
    font-size: 15px;
}

.org_member .member_info li {
    color: #575859;
    margin-bottom: 5px;
    width: 100%;
    display: inline-block;
}

.org_member .member_info li:last-child {
    margin-bottom: 0;
}

.org_member .member_info li span {
    color: #383a40;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}

.org_member .member_info li span::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #e3e3e3;
}

.org_member .member_title {
    padding: 5px 10px 5px 10px;
    display: inline-block;
    background: url(../img/sub01_05_bg01.png);
    text-align: center;
    color: white;
    margin-right: 10px;
}

.org_member .work_list {
    float: left;
    width: 100%;
}

.org_member .work_list h4 {
    color: #383a40;
    font-family: GmarketSansMedium;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
}

.org_member .work_list ul {
    background: #f9f9fa;
    padding: 15px;
    overflow-y: scroll;
    height: 150px;
}

.org_member .work_list ul li {
    position: relative;
    padding-left: 10px;
}

.org_member .work_list ul li::before {
    display: block;
    content: "";
    background: #2d499c;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 10px;
}

/* sub01_04 - 오시는길 */
.container.sub01_05 {
    padding: 30px 0 80px 0 !important;
}

.map_api {
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.map_api img {
    min-height: 600px;
}

.map_api .cal_add {
    line-height: 50px;
    background: url(../img/bg_reasher.jpg) repeat-x left top;
    color: #fff;
    width: 1200px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.map_contents {
    border: 1px solid #e3e3e3;
    padding: 30px 30px 30px 200px;
    position: relative;
    margin-bottom: 20px;
}

.map_contents::after {
    display: block;
    content: "";
    position: absolute;
    left: 160px;
    top: 30px;
    background: #e3e3e3;
    width: 1px;
    height: calc(100% - 60px);
}

.map_contents::before {
    display: block;
    position: absolute;
    left: 30px;
    top: 10px;
    padding-right: 30px;
}

.map_contents h3 {
    font-size: 26px;
    line-height: 24px;
    color: #34383e;
    margin-bottom: 15px;
    font-family: GmarketSansMedium;
}

.map_contents ul li {
    position: relative;
    margin-bottom: 5px;
    padding-left: 12px;
}

.map_contents ul li:last-child {
    margin-bottom: 0;
}

.map_contents ul li::before {
    display: block;
    content: "";
    background: #2d499c;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 10px;
}

.map_ic01::before {
    content: url(../img/sub01_05_ic01.png);
}

.map_ic02::before {
    content: url(../img/sub01_05_ic02.png);
}

.map_ic03::before {
    content: url(../img/sub01_05_ic03.png);
    top: 22px;
}

.map_ic04::before {
    content: url(../img/sub01_05_ic04.png);
}

.map_ic03 ul {
    overflow: hidden;
    clear: both;
}

.map_ic03 ul li {
    width: calc(50% - 20px);
    float: left;
}

.map_ic04 ul {
    overflow: hidden;
    clear: both;
}

.map_ic04 ul li {
    width: calc(50% - 20px);
    float: left;
}

.map_contests2 {
    border: 1px solid #e3e3e3;
    padding: 30px;
    position: relative;
    overflow: hidden;
    clear: both;
}

.map_contests2 h3 {
    font-size: 26px;
    line-height: 26px;
    color: #34383e;
    margin-bottom: 15px;
    font-family: GmarketSansMedium;
}

.map_contests2 ul {
    float: left;
    width: calc(50% - 30px);
    padding-right: 30px;
}

.map_contests2 ul li {
    border-bottom: 1px dotted #e3e3e3;
    position: relative;
    padding-left: 30px;
    padding: 17px 0 17px 30px;
}

.map_contests2 ul li::before {
    display: block;
    position: absolute;
    left: 0;
    top: 16px;
}

.map_contests2 ul li:first-child::before {
    content: url(../img/sub01_05_blit01.png);
}

.map_contests2 ul li:nth-child(2)::before {
    content: url(../img/sub01_05_blit02.png);
}

.map_contests2 ul li:nth-child(3)::before {
    content: url(../img/sub01_05_blit03.png);
}

.map_contests2 ul li:nth-child(4)::before {
    content: url(../img/sub01_05_blit04.png);
}

.map_contests2 ul li:last-child::before {
    content: url(../img/sub01_05_blit05.png);
}

.map_contests2 .map_img {
    float: left;
    width: calc(50% - 1px);
    text-align: center;
    border-left: 1px solid #e3e3e3;
}

.map_contests2 .map_img img {
    max-width: 424px;
}

/* sub03 - 연구지원 */
.research_top {
    border: 1px solid #e3e3e3;
    padding: 25px 30px;
    position: relative;
    margin-bottom: 50px;
}

.research_top::before {
    display: block;
    content: "";
    width: calc(100% + 2px);
    height: 3px;
    background: url(../img/sub_blue_line.jpg) no-repeat left top;
    background-size: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
}

.research_top h3 {
    font-size: 24px;
    line-height: 24px;
    font-family: GmarketSansMedium;
    margin-bottom: 3px;
}

.research_top p {
    color: #575859;
}

.research_top ul li {
    font-size: 16px;
    line-height: 20px;
    position: relative;
    margin-bottom: 5px;
    padding-left: 10px;
    overflow: hidden;
    clear: both;
}

.research_top ul li:last-child {
    margin-bottom: 0;
}

.research_top ul li::before {
    display: block;
    content: "";
    background: #2d499c;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 8px;
}

.research_cont {
    margin-bottom: 60px;
}

.research_cont h3 {
    margin-bottom: 30px;
    background: url(../img/title_line.png) repeat-x right 10px;
}

.research_cont h3 span {
    font-size: 30px;
    line-height: 30px;
    height: 30px;
    color: #0f5897;
    font-family: GmarketSansMedium;
    background: #fff;
    padding-right: 10px;
}

.sub_cont {
    margin-bottom: 30px;
}

.sub_cont h4 {
    font-size: 17px;
    line-height: 19px;
    color: #324a63;
    font-family: GmarketSansMedium;
    position: relative;
    padding-left: 10px;
    margin-bottom: 15px;
}

.sub_cont h4::before {
    display: block;
    content: "";
    width: 3px;
    height: 17px;
    background: #3675cd;
    position: absolute;
    left: 0;
    top: 0;
}

.list_cont ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.list_cont ul li::before {
    display: block;
    content: "";
    background: #3675cd;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 10px;
}

.reference_tip li {
    color: #575859;
    font-size: 15px;
    padding-left: 17px;
    position: relative;
}

.reference_tip li::before {
    display: block;
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

/* sub03 - 사업 절차 */
.busi_flow > ul {
    font-size: 0;
    line-height: 0;
}

.busi_flow > ul > li {
    border: 1px solid #ced8e1;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    vertical-align: top;
    border-radius: 12px 0 0 0;
}

.busi_flow > ul > li::after {
    display: block;
    content: url(../img/ic_arrow.png);
    position: absolute;
    top: 50%;
    margin-top: -14px;
}

.flow_box > span {
    display: block;
    background: #545b97;
    border-radius: 12px;
    width: 35px;
    height: 32px;
    line-height: 32px;
    font-family: MontserratRegular;
    color: #fff;
    position: absolute;
    left: -1px;
    top: -1px;
    font-size: 18px;
    z-index: 99;
    text-align: center;
}

.flow_box > .flow_txt {
    background: #f6f9fc;
    font-size: 17px;
    line-height: 21px;
    height: 120px;
    position: relative;
}

.flow_box > .flow_txt em {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    word-break: keep-all;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.flow_box > .flow_subtxt {
    background: #fff;
    line-height: 20px;
    height: 100px;
    position: relative;
}

.flow_box > .flow_subtxt em {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 16px;
    word-break: keep-all;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.add_file_btn_wrap {
    z-index: 999;
    position: relative;
}

.add_file_btn_wrap > .add_file_btn {
    width: 120px;
    height: 25px;
    background: #545b97;
    color: #fff;
    font-size: 14px;
    border-radius: 2px;
    position: absolute;
    top: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.add_file_btn_wrap > .add_file_btn:active {
    background: #353b6e;
}

.add_file_btn_wrap > .add_file_btn::before {
    display: inline-block;
    content: "\f019";
    font: normal normal normal 14px/1 FontAwesome;
    margin-right: 5px;
    vertical-align: text-bottom;
}

.add_file_btn_wrap > .add_file_list {
    background: #fff;
    padding: 10px;
    display: none;
    position: absolute;
    top: 13px;
    left: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(0);
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
}

.add_file_btn_wrap > .add_file_list.active {
    display: block;
}

.add_file_btn_wrap > .add_file_list li {
    font-size: 14px;
    line-height: 26px;
    text-align: left;
    white-space: nowrap;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #ced8e1;
}

.add_file_btn_wrap > .add_file_list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.add_file_btn_wrap > .add_file_list li a {
    display: block;
}

.add_file_btn_wrap > .add_file_list li a:hover {
    text-decoration-line: underline;
}

.add_file_btn_wrap > .add_file_list li i {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-right: 5px;
    background-size: 100% 100%;
    vertical-align: text-bottom;
    margin-bottom: -2px;
    vertical-align: middle;
}

.flow_3set > ul > li {
    width: calc(33.333% - 56px);
    margin-right: 80px;
}

.flow_3set > ul > li:nth-child(3n) {
    margin-right: 0;
}

.flow_3set > ul > li:nth-child(3n)::after {
    display: none;
}

.flow_3set > ul > li:last-child::after {
    display: none;
}

.flow_3set > ul > li::after {
    right: -55px;
}

.flow_4set > ul > li {
    width: calc(25% - 62px);
    margin-right: 80px;
}

.flow_4set > ul > li:nth-child(4) {
    margin-right: 0;
}

.flow_4set > ul > li:nth-child(4)::after {
    display: none;
}

.flow_4set > ul > li:last-child::after {
    display: none;
}

.flow_4set > ul > li::after {
    right: -55px;
}

.flow_long_set > ul > li {
    width: calc(100% - 2px);
    text-align: left;
    margin-bottom: 50px;
}

.flow_long_set > ul > li > .flow_txt {
    width: 30%;
    display: inline-block;
}

.flow_long_set > ul > li > .flow_subtxt {
    width: 70%;
    display: inline-block;
    vertical-align: top;
}

.flow_long_set > ul > li > .flow_subtxt em {
    left: 30px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.flow_long_set > ul > li > .flow_subtxt {
    min-height: 120px;
    height: 100%;
}

.flow_long_set > ul > li > .flow_subtxt em h5 {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 8px;
}

.flow_long_set > ul > li.h200 > .flow_txt {
    height: 200px;
}

.flow_long_set > ul > li.h200 > .flow_subtxt {
    height: 200px;
}

.flow_long_set > ul > li:last-child {
    margin-bottom: 0;
}

.flow_subtxt_list li {
    font-size: 16px;
    line-height: 20px;
    position: relative;
    margin-bottom: 5px;
    padding-left: 10px;
    color: #919191;
}

.flow_subtxt_list li:last-child {
    margin-bottom: 0;
}

.flow_subtxt_list li::before {
    display: block;
    content: "";
    background: #2d499c;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 8px;
}

.flow_subtxt_list2 li {
    font-size: 16px;
    line-height: 26px;
    position: relative;
    margin-bottom: 5px;
    padding-left: 10px;
    text-align: left;
}

.flow_subtxt_list2 li:last-child {
    margin-bottom: 0;
}

.flow_subtxt_list2 li::before {
    display: block;
    content: "";
    background: #2d499c;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 14px;
}

.flow_subtxt_list2 li span {
    background: #545f97;
    color: #fff;
    padding: 3px 5px;
    border-radius: 4px;
}

.flow_subtxt_list2 li.tip_line {
    padding-left: 30px;
    line-height: 22px;
}

.flow_subtxt_list2 li.tip_line::before {
    content: "※";
    position: absolute;
    left: 10px;
    top: 0;
    background: none;
    width: auto;
    height: auto;
}

.flow_long_set > ul > li::after {
    left: 140px;
    top: auto;
    bottom: -40px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.flow_long_set > ul > li:last-child::after {
    display: none;
}

.flow_long_set .add_file_btn_wrap {
    width: 30%;
}

/* 사업소개 - 서식 다운로드 */

.all_file_download ul li {
    border: 1px solid #e3e3e3;
    position: relative;
    margin-bottom: 10px;
}

.all_file_download ul li::before {
    display: block;
    content: url(../img/sub03_ic01.png);
    position: absolute;
    left: 20px;
    top: 18px;
    border-right: 1px solid #e3e3e3;
    padding-right: 10px;
}

.all_file_download ul li a {
    display: block;
    padding: 20px 20px 20px 80px;
}

.all_file_download ul li a span {
    display: block;
    width: 90px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #545b97;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.management_cont ul {
    overflow: hidden;
    clear: both;
}

.management_cont ul li {
    text-align: center;
    width: calc(33.333% - 22px);
    margin-right: 30px;
    border: 1px solid #ced8e1;
    background: #f6f9fc;
    float: left;
    padding: 20px 0;
    min-height: 270px;
}

.management_cont ul li:last-child {
    margin-right: 0;
}

.management_cont ul li i {
    display: inline-block;
    background: url(../img/icon_01.png) no-repeat;
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.management_cont ul li:nth-of-type(2) i {
    background: url(../img/icon_02.png) no-repeat;
}

.management_cont ul li:nth-of-type(3) i {
    background: url(../img/icon_03.png) no-repeat;
}

.management_cont ul li h5 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 10px;
    font-family: GmarketSansMedium;
}

.management_cont ul li p {
    line-height: 24px;
}

/* 페이지 만족도 조사 */
.satisfac_box {
    background: #f9f9fa;
    border: 1px solid #e3e3e3;
    padding: 30px;
}

.satisfac_box .conacnt_info {
    margin-bottom: 10px;
}

.satisfac_box .conacnt_info ul {
    line-height: 34px;
    margin-bottom: 5px;
}

.satisfac_box .conacnt_info ul li {
    display: inline-block;
}

.satisfac_box .conacnt_info ul li span {
    padding: 8px 15px;
}

.satisfac_box .conacnt_info ul li em {
    border: 1px solid #e3e3e3;
    background: #fff;
    padding: 8px 12px;
}

.satisfac_box .conacnt_info ul li:first-child span {
    background: #467ac2;
    color: #fff;
}

.satisfac_box .conacnt_info ul li:first-child em {
    border-left: 0;
}

.satisfac_box .satisfac_level {
    margin-bottom: 20px;
}

.satisfac_box .satisfac_level h4 {
    border-bottom: 1px dashed #e3e3e3;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
}

.satisfac_box .satisfac_level ul li {
    display: inline-block;
    margin-right: 20px;
}

.satisfac_textarea {
    overflow: hidden;
    clear: both;
}

.satisfac_textarea textarea {
    display: block;
    width: calc(100% - 140px);
    float: left;
    height: 100px;
    outline: 0;
    border: 1px solid #e3e3e3;
    padding: 5px 10px;
}

.satisfac_textarea .textarea_btn {
    display: block;
    float: right;
    background: #383a40;
    width: 110px;
    height: 110px;
    line-height: 110px;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 20px;
    text-align: center;
}

.checks {
    position: relative;
}

.checks input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.checks input[type="radio"] + label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checks input[type="radio"] + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 21px;
    height: 21px;
    text-align: center;
    background: #fafafa;
    border: 1px solid #cacece;
    border-radius: 100%;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
}

.checks input[type="radio"] + label:active:before,
.checks input[type="radio"]:checked + label:active:before {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.checks input[type="radio"]:checked + label:before {
    background: #e9ecee;
    border-color: #adb8c0;
}

.checks input[type="radio"]:checked + label:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 13px;
    height: 13px;
    background: #f76026;
    border-radius: 100%;
}

/* 연구비 부당집행 신고하기 */
.wrong_exec_top {
    border: 1px solid #e3e3e3;
    padding: 30px 30px 30px 95px;
    position: relative;
    margin-bottom: 50px;
}
.wrong_exec_top::before {
    display: block;
    content: "";
    width: calc(100% + 2px);
    height: 3px;
    background: url(../img/sub_menu_line.jpg) no-repeat left top;
    background-size: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
}
.wrong_exec_top h3 {
    font-size: 24px;
    line-height: 24px;
    font-family: GmarketSansMedium;
    margin-bottom: 3px;
}
.wrong_exec_top p {
    color: #575859;
}
.wrong_exec_top p span {
    color: #dc521c;
}

.ethics_txt {
    position: absolute;
    right: 0;
    bottom: -30px;
}

.ethics_txt a:hover {
    text-decoration: underline;
}

.ethics_txt a em {
    display: inline-block;
    background: #7e4591;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    color: #fff;
    text-align: center;
    font-family: GmarketSansMedium;
    margin-right: 5px;
}

.ethics_txt a:hover em {
    background: #2698cb;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.icon_wrong_exec {
    display: block;
    width: 50px;
    height: 50px;
    background: url(../img/ic_wrong.png);
    position: absolute;
    left: 30px;
    top: 30px;
}

.wrong_exec_tip {
    border-bottom: 1px dashed #e3e3e3;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.wrong_exec_tip li {
    color: #575859;
    padding-left: 17px;
    position: relative;
}

.wrong_exec_tip li::before {
    display: block;
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

.wrong_exec_cont {
    border: 1px solid #e3e3e3;
    padding: 30px;
    margin-top: -30px;
    margin-bottom: 50px;
}
.wrong_contact {
    overflow: hidden;
    clear: both;
    border-bottom: 1px dashed #e3e3e3;
    margin-bottom: 20px;
    padding-bottom: 5px;
}
.wrong_contact > div {
    float: left;
    width: calc(50% - 25px);
    margin-bottom: 15px;
}
.wrong_contact .input_name {
    width: 100%;
}
.wrong_contact .input_name .input_text {
    width: calc(50% - 153px);
}
.wrong_contact > span {
    display: block;
    float: left;
    line-height: 40px;
    margin: 0 10px;
}
.wrong_contact label {
    display: inline-block;
    max-width: 100px;
    width: 100%;
    vertical-align: middle;
}
.wrong_contact .input_text {
    display: inline-block;
    width: calc(100% - 128px);
    height: 38px;
    line-height: 38px;
    padding: 0 10px;
    border: 1px solid #d2d2d2;
}
.wrong_contact .input_password_check {
    margin-left: 49px;
}

.wrong_contact .input_select {
    display: inline-block;
    max-width: 156px;
    width: 100%;
    border: 1px solid #d2d2d2;
}
.wrong_contact .input_select_last {
    display: inline-block;
    max-width: 156px;
    width: 100%;
    border: 1px solid #d2d2d2;
}
.wrong_contact .input_select .ui_select {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    border: none;
}
.wrong_contact .input_select_last .ui_select {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    border: none;
}

.wrong_contact .input_phone2 {
    margin-left: 49px;
}
.wrong_contact .input_approval {
    margin-left: 49px;
}
.wrong_contact .input_busitrip {
    margin-left: 49px;
}
.wrong_contact .input_approval .input_select {
    max-width: 320px;
}

.wrong_contact .input_busicon {
    width: calc(100% - 1px);
}

.wrong_contact .input_busiperiod .input_text {
    width: calc(100% - 301px);
}

.wrong_cont_search {
    border-bottom: 1px dashed #e3e3e3;
    margin-bottom: 20px;
    padding-bottom: 5px;
}
.wrong_cont_search > .input_search {
    width: 100%;
    margin-bottom: 15px;
}
.wrong_cont_search label {
    display: inline-block;
    max-width: 160px;
    width: 100%;
    vertical-align: middle;
}
.wrong_cont_search .input_text {
    display: inline-block;
    width: calc(100% - 294px);
    height: 38px;
    line-height: 38px;
    padding: 0 10px;
    border: 1px solid #d2d2d2;
}
.wrong_cont_search button {
    display: inline-block;
    background: #383a40;
    width: 100px;
    height: 38px;
    line-height: 38px;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 18px;
    text-align: center;
}

.wrong_cont_search .table::before {
    display: none;
}
.wrong_cont_search .table th {
    border-top: 1px solid #e3e3e3;
    line-height: 40px;
    height: 40px;
}
.wrong_cont_search .table td {
    padding: 7px 10px;
}
.wrong_cont_search .table tbody tr:hover {
    background: #072e8f;
}
.wrong_cont_search .table tbody tr:hover td {
    color: #fff;
    cursor: pointer;
}

.wrong_note {
    border-bottom: 1px dashed #e3e3e3;
    margin-bottom: 20px;
    padding-bottom: 15px;
}
.wrong_note label {
    display: inline-block;
    max-width: 100px;
    width: 100%;
    vertical-align: top;
    word-break: keep-all;
}

.wrong_note textarea {
    display: inline-block;
    width: calc(100% - 128px);
    height: 170px;
    line-height: 24px;
    padding: 10px 10px;
    border: 1px solid #d2d2d2;
}

.policy_box {
    border-bottom: 1px dashed #e3e3e3;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.policy_box > h3 {
    font-family: GmarketSansMedium;
    font-size: 18px;
    padding: 5px 15px;
    background: #2e3035;
    color: #fff;
}

.policy_box .policy_txt {
    border: 1px solid #e3e3e3;
    padding: 20px;
    height: 150px;
    overflow-y: scroll;
    margin-bottom: 10px;
}

.checks {
    line-height: 22px;
    height: 22px;
    display: block;
}

.checks em {
    line-height: 22px;
    vertical-align: top;
}

/* 체크박스 */
.checks input {
    display: none;
}

.checks .icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 2px solid #5f6269;
    position: relative;
    cursor: pointer;
}

.checks .icon::before,
.checks .icon::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 0;
    background-color: #d22f70;
    position: absolute;
    transform-origin: left top;
}

.checks .icon::before {
    top: 5px;
    left: -3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checks .icon::after {
    top: 15px;
    left: 8px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.checks input:checked ~ .icon {
    border-color: #be849b;
}

.checks input:checked ~ .icon::before {
    height: 15px;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.checks input:checked ~ .icon::after {
    height: 20px;
    -webkit-transition: all 0.35s ease 0.35s;
    -moz-transition: all 0.35s ease 0.35s;
    -o-transition: all 0.35s ease 0.35s;
    transition: all 0.35s ease 0.35s;
}

.wrong_file_add label {
    display: inline-block;
    max-width: 100px;
    width: 100%;
    vertical-align: top;
}

.wrong_file_add .wfileadd {
    display: inline-block;
    width: calc(100% - 106px);
}

.wrong_file_add .wfileadd > span {
    display: block;
    font-size: 15px;
    padding-top: 5px;
}

.wrong_file_add .dropzone {
    border: 2px dashed #2868c6;
}

.wrong_file_add .dropzone .dz-message {
    margin: 2.5em 0;
}

.wrong_file_add .dropzone .dz-message .dz-button {
    color: #072e8f;
}

.wrong_exec_img {
    min-height: 120px;
    background: url(../img/bg_top01.jpg) center top;
    text-align: center;
    overflow: hidden;
    font-family: GmarketSansMedium;
    font-size: 22px;
    color: #fff;
    vertical-align: middle;
    -webkit-text-shadow: 0 0 6px rgba(19, 112, 112, 0.5);
    -moz-text-shadow: 0 0 6px rgba(19, 112, 112, 0.5);
    -ms-text-shadow: 0 0 6px rgba(19, 112, 112, 0.5);
    -o-text-shadow: 0 0 6px rgba(19, 112, 112, 0.5);
    text-shadow: 0 0 6px rgba(19, 112, 112, 0.5);
}

.wrong_exec_img i {
    display: inline-block;
    content: "";
    background: url(../img/ic_img01.png) no-repeat;
    width: 123px;
    height: 107px;
    margin-right: 10px;
    vertical-align: middle;
    margin-top: 15px;
}

.wrong_exec_img span {
    color: #fcffd7;
}

.dropzone .dz-preview .dz-remove {
    background: #383a40;
    color: #fff;
    border-radius: 2px;
}

.wrong_login {
    padding: 10% 20%;
}

.wrong_login .wrong_login_inner {
    display: inline-block;
    width: calc(100% - 21%);
}

.wrong_login .wrong_login_inner > div {
    margin-bottom: 10px;
}

.wrong_login .wrong_login_inner label {
    display: inline-block;
    max-width: 130px;
    width: 100%;
    vertical-align: top;
    line-height: 38px;
}

.wrong_login .wrong_login_inner .input_text {
    display: inline-block;
    width: calc(100% - 158px);
    height: 38px;
    line-height: 38px;
    padding: 0 10px;
    border: 1px solid #d2d2d2;
}

.wrong_login .confirm_btn {
    background: url(../img/bg_btn.jpg);
    color: #fff;
    font-family: GmarketSansMedium;
    height: 140px;
    line-height: 140px;
    width: 19%;
    vertical-align: top;
}

.accordion_table .hide {
    display: none;
}

.accordion_table .show {
    display: table-row;
    background: #f9f9fa;
}

.accordion_table .show > td {
    padding: 20px 30px;
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 10px 5px inset rgba(0, 0, 0, 0.05);
}

.accordion_table .item td {
    cursor: pointer;
}

.anwer_box {
    display: block;
    text-align: left;
}

.anwer_box h3 {
    font-size: 18px;
    border-bottom: 2px solid #6a6c75;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.anwer_box_cont {
    border: 1px solid #e3e3e3;
    background: #fff;
    padding: 20px 25px;
    margin-bottom: 10px;
}

.anwer_box_cont ul {
    padding-bottom: 10px;
    border-bottom: 1px dashed #e3e3e3;
    margin-bottom: 10px;
    font-size: 0;
    line-height: 0;
}

.anwer_box_cont ul li {
    display: inline-block;
    line-height: 16px;
    width: 28%;
    font-size: 16px;
}

.anwer_box_cont ul li:first-child {
    width: 15%;
}

.anwer_box_cont ul li span {
    color: #383a40;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #e3e3e3;
}

.anwer_box_cont dl {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e3e3e3;
}

.anwer_box_cont dl dt {
    margin-bottom: 5px;
}

.anwer_box_cont dl dd {
    background: #f8f8f8;
    padding: 20px;
    white-space: normal;
}

.anwer_box_cont .download_file {
    color: #223364;
    line-height: 16px;
}

.anwer_box_cont .download_file a {
    display: inline-block;
    color: #2698cb;
    text-decoration: underline;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #e3e3e3;
}

.anwer_status dd {
    overflow: hidden;
    clear: both;
}

.anwer_status dd i {
    display: block;
    background: #8fb6cd;
    color: #fff;
    padding: 10px;
    margin-right: 10px;
    max-height: 150px;
    float: left;
}

.anwer_status dd .note {
    display: block;
    float: left;
    width: calc(100% - 170px);
}

/* 상단검색 */
.Integ_search {
    border: 1px solid #e3e3e3;
    position: relative;
    overflow: hidden;
    clear: both;
    margin-bottom: 40px;
}

.Integ_search::before {
    display: block;
    content: "";
    width: calc(100% + 2px);
    height: 3px;
    background: url(../img/sub_menu_line.jpg) no-repeat left top;
    background-size: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
}

.Integ_search h3 {
    font-family: GmarketSansMedium;
    color: #324a63;
    font-size: 17px;
    width: 180px;
    float: left;
    text-align: center;
    background: #f9f9fa;
    min-height: 116px;
    word-break: keep-all;
}

.Integ_search h3 i {
    display: block;
    margin: 14px auto;
    width: 46px;
    height: 46px;
    background: url(../img/ic_serarch.png) no-repeat;
}

.Integ_search_inner {
    float: left;
    padding: 25px 30px;
    width: calc(100% - 60px);
    font-size: 0;
    line-height: 0;
}

.Integ_search_inner p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 16px;
}

.Integ_search_inner .form_input {
    display: inline-block;
    width: calc(100% - 102px);
    border: 1px solid #d2d2d2;
    vertical-align: top;
    position: relative;
}

.Integ_search_inner .form_input.selinput {
    width: calc(100% - 259px);
}

.Integ_search_inner .form_input .input_text {
    display: block;
    width: calc(100% - 20px);
    height: 38px;
    line-height: 38px;
    border: none;
    padding: 0 10px;
}

.Integ_search_inner .btn {
    width: 100px;
    line-height: 40px;
}

.Integ_search_inner .sbtn {
    width: 100px;
    line-height: 30px;
    background: #383a40;
    color: #fff;
}

.Integ_search_inner .sbtn.blue {
    background: #245fa9;
}

.Integ_search_inner .sbtn.green {
    background: #24a9a4;
}

.Integ_search_inner .sbtn.green2 {
    background: #a1a610;
}

.Integ_search_inner .morth_btn_set {
    border-top: 1px dashed #e3e3e3;
    padding-top: 10px;
    margin-top: 10px;
}

.Integ_search_inner .morth_btn_set button {
    width: calc(8.37% - 5px);
    line-height: 30px;
    background: #383a40;
    color: #fff;
    margin-right: 5px;
}

.Integ_search_inner .morth_btn_set button:last-child {
    margin-right: 0;
}

.Integ_search_inner .form_select {
    display: inline-block;
    max-width: 150px;
    width: 100%;
    border: 1px solid #d2d2d2;
    vertical-align: top;
    margin-right: 5px;
}

.Integ_search_inner .form_select .ui_select {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    border: none;
}

.morth_search h3 {
    min-height: 167px;
}

.morth_search h3 i {
    margin: 38px auto 14px auto;
}

/* 명예의 전당 */
.hall_fame_top {
    margin-bottom: 20px;
}

.hall_fame_top h2 {
    text-align: center;
    margin-bottom: 15px;
}

.hall_fame_top h2 img {
    max-width: 368px;
}

.hall_fame_top p {
    text-align: center;
}

.HallofFame_wrap {
    background: url(../img/bg_hallfame.jpg) no-repeat;
    padding: 50px 140px;
    margin-bottom: 50px;
}

.hall_card {
    border: 1px solid #e3e3e3;
    position: relative;
    background: #fff;
    font-size: 0;
    line-height: 0;
}

.hall_card h2 {
    background: #f9f9fa;
    padding: 12px 20px;
}

.hall_card h2 img {
    max-width: 75px;
}

.menber_info {
    font-size: 0;
    line-height: 0;
    display: inline-block;
    width: 100%;
    max-width: 325px;
    overflow: hidden;
    clear: both;
    padding: 20px 20px 20px 25px;
    border-right: 1px dotted #e3e3e3;
    margin-right: 20px;
}

.menber_info figure {
    width: 140px;
    height: 140px;
    border-radius: 45%;
    background: url(../img/bg_men.jpg) no-repeat;
    display: block;
    margin-right: 20px;
    float: left;
}

.menber_info figure img {
    border-radius: 45%;
    max-width: 170px;
    max-height: 170px;
    width: 100%;
    height: 100%;
}

.menber_info figcaption {
    display: block;
    float: left;
    width: calc(100% - 160px);
    margin-top: 20px;
}

.menber_info figcaption strong {
    display: block;
    font-size: 26px;
    line-height: 26px;
    font-family: GmarketSansMedium;
    font-weight: normal;
    border-bottom: 1px dotted #e3e3e3;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.menber_info figcaption strong span {
    font-family: AritaDotumMedium;
    font-size: 14px;
    line-height: 16px;
    display: block;
    color: #575859;
}

.menber_info figcaption > span {
    font-size: 13px;
    line-height: 13px;
    display: block;
    color: #575859;
    margin-bottom: 8px;
}

.menber_info figcaption > em {
    color: #245fa9;
    font-size: 17px;
    line-height: 17px;
    font-family: GmarketSansMedium;
}

.study_info {
    display: inline-block;
    width: calc(40% - 2px);
    vertical-align: top;
    padding-top: 25px;
}

.study_info dt {
    font-size: 16px;
    line-height: 16px;
    color: #383a40;
    margin-bottom: 10px;
}

.study_info dd {
    background: #f9f9fa;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 24px;
    height: 100px;
    overflow-y: scroll;
}

.hall_card_tit {
    background: #245fa9;
    font-size: 0;
    line-height: 0;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 0px;
    border-radius: 2px;
    padding: 10px 20px;
    overflow: hidden;
    clear: both;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.hall_card_tit.r_class {
    background: #245fa9;
}
.hall_card_tit.s_class {
    background: #24a9a4;
}
.hall_card_tit.a_class {
    background: #a1a610;
}

.hall_card_tit div {
    border-right: 1px dotted #e3e3e3;
    font-family: MontserratRegular;
    color: #fff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 36px;
    float: left;
    text-transform: uppercase;
    margin-right: 10px;
}

.hall_card_tit span {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 16px; /* float: left; */
    text-align: center;
}

.hall_card_tit span em {
    font-size: 18px;
    line-height: 20px;
    display: block;
}

.hall_slider .slick-prev {
    position: absolute;
    left: -90px;
    top: 110px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: inline-block;
    font-size: 0;
    line-height: 0;
    background: #383a40;
    border-radius: 50%;
}

.hall_slider .slick-prev:active {
    background: #18191d;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hall_slider .slick-prev::before {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(18px) translateY(6px) rotate(45deg);
    -moz-transform: translateX(18px) translateY(6px) rotate(45deg);
    -ms-transform: translateX(18px) translateY(6px) rotate(45deg);
    -o-transform: translateX(18px) translateY(6px) rotate(45deg);
    transform: translateX(18px) translateY(6px) rotate(45deg);
}

.hall_slider .slick-prev::after {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(18px) translateY(-6px) rotate(-45deg);
    -moz-transform: translateX(18px) translateY(-6px) rotate(-45deg);
    -ms-transform: translateX(18px) translateY(-6px) rotate(-45deg);
    -o-transform: translateX(18px) translateY(-6px) rotate(-45deg);
    transform: translateX(18px) translateY(-6px) rotate(-45deg);
}

.hall_slider .slick-next {
    position: absolute;
    right: -90px;
    top: 110px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: inline-block;
    font-size: 0;
    line-height: 0;
    background: #383a40;
    border-radius: 50%;
}

.hall_slider .slick-next:active {
    background: #18191d;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hall_slider .slick-next::before {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(18px) translateY(6px) rotate(-45deg);
    -moz-transform: translateX(18px) translateY(6px) rotate(-45deg);
    -ms-transform: translateX(18px) translateY(6px) rotate(-45deg);
    -o-transform: translateX(18px) translateY(6px) rotate(-45deg);
    transform: translateX(18px) translateY(6px) rotate(-45deg);
}

.hall_slider .slick-next::after {
    content: "";
    background: #fff;
    width: 15px;
    height: 2px;
    display: block;
    -webkit-transform: translateX(18px) translateY(-6px) rotate(45deg);
    -moz-transform: translateX(18px) translateY(-6px) rotate(45deg);
    -ms-transform: translateX(18px) translateY(-6px) rotate(45deg);
    -o-transform: translateX(18px) translateY(-6px) rotate(45deg);
    transform: translateX(18px) translateY(-6px) rotate(45deg);
}

.hall_card_list {
    overflow: hidden;
    clear: both;
    margin-bottom: 40px;
}

.hall_card_list li {
    width: calc(50% - 10px);
    margin-right: 20px;
    float: left;
    margin-bottom: 30px;
}

.hall_card_list li:nth-child(2n) {
    margin-right: 0;
}

.hall_card_length {
    border: 1px solid #e3e3e3;
    position: relative;
    background: #fff;
    font-size: 0;
    line-height: 0;
}

.hall_card_length h2 {
    background: #f9f9fa;
    padding: 12px 20px;
}

.hall_card_length h2 img {
    max-width: 75px;
}

.hall_card_length .hall_card_tit {
    width: 50%;
}

.hall_card_length h2 {
    padding: 60px 20px 12px 20px;
    text-align: center;
}

.hall_card_length h2 img {
    width: 60px;
}

.hall_card_length .menber_info {
    border-right: 0;
    max-width: calc(100% - 45px);
    margin-right: 0;
}

.hall_card_length .study_info {
    padding: 0 20px 20px 20px;
    width: calc(100% - 42px);
}

.hall_card_length .study_info dd {
    height: 100px;
    overflow-y: scroll;
    font-size: 14px;
}

.month_btn_set {
    border-top: 1px dashed #d0d3d6;
    padding-top: 10px;
    margin-top: 10px;
}

.month_btn_set button {
    width: calc(7.37% - 1px);
    line-height: 30px;
    background: #383a40;
    color: #fff;
    margin-right: 5px;
}

.month_btn_set button:last-child {
    margin-right: 0;
}

.excell_list li {
    margin-bottom: 20px;
}

.excell_box {
    border: 1px solid #d6d7d9;
    background: #fff;
    font-size: 0;
    line-height: 0;
}

.excell_box h3 {
    background: #eff2f6;
    font-size: 16px;
    line-height: 16px;
    position: relative;
}

.excell_box h3 span {
    padding: 15px;
    background: #245fa9;
    color: #fff;
    display: inline-block;
    margin-right: 15px;
}

.excell_box h3::after {
    display: block;
    content: "";
    width: 51px;
    height: 63px;
    position: absolute;
    top: 15px;
    right: 20px;
    background: url(../img/ic_medal.png);
}

.excell_box figure {
    display: inline-block;
    margin: 20px;
    vertical-align: top;
    position: relative;
}

.excell_box figure img {
    max-width: 170px;
    border-radius: 50%;
}

.excell_box figure span {
    display: block;
    background: #545b97;
    border-radius: 35%;
    width: 50px;
    height: 45px;
    line-height: 45px;
    font-family: GmarketSansMedium;
    color: #fff;
    position: absolute;
    left: -1px;
    top: -1px;
    font-size: 16px;
    z-index: 99;
    text-align: center;
}

.excell_box figcaption {
    display: inline-block;
    margin: 20px 20px 10px 0;
    vertical-align: top;
    width: calc(100% - 230px);
    padding-bottom: 10px;
    overflow: hidden;
    clear: both;
}

.excell_box figcaption .left {
    width: calc(25% - 16px);
    float: left;
    border-right: 1px dashed #d0d3d6;
    height: 170px;
    padding-right: 15px;
}

.excell_box figcaption .right {
    width: calc(75% - 60px);
    float: left;
    height: 140px;
    background: #eef0f2;
    padding: 15px 20px;
    margin-left: 20px;
}

.excell_box figcaption h4 {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.excell_box figcaption h4 strong {
    font-size: 26px;
    line-height: 28px;
    font-family: GmarketSansMedium;
    font-weight: normal;
    margin-right: 5px;
}

.excell_box figcaption h4 span {
    display: block;
    font-size: 16px;
    line-height: 16px;
    font-family: AritaDotumMedium;
    background: #245fa9;
    padding: 5px 10px;
    color: #fff;
    margin-bottom: 10px;
    width: 120px;
    text-align: center;
}

.excell_box figcaption h4 em {
    font-size: 16px;
    line-height: 16px;
}

.excell_box figcaption .part span {
    display: block;
    font-size: 16px;
    line-height: 16px;
    font-family: AritaDotumMedium;
    background: #245fa9;
    padding: 5px 10px;
    color: #fff;
    margin-bottom: 10px;
    width: 120px;
    text-align: center;
}

.excell_box figcaption .part em {
    font-size: 18px;
    line-height: 18px;
}

.excell_box figcaption ul li {
    font-size: 16px;
    line-height: 20px;
    position: relative;
    margin-bottom: 5px;
    padding-left: 10px;
    overflow: hidden;
    clear: both;
}

.excell_box figcaption ul li::before {
    display: block;
    content: "";
    background: #2d499c;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 8px;
}

.excell_box figcaption p {
    font-size: 16px;
    line-height: 24px;
    background: #f9f9fa;
    padding: 15px 20px;
}

.ROP_list ul {
    overflow: hidden;
    clear: both;
    width: calc(100% + 20px);
    margin-left: -10px;
}

.ROP_list ul li {
    width: calc(33.33% - 20px);
    float: left;
    padding: 10px;
}

.ROP_box figure {
    position: relative;
    font-size: 0;
    line-height: 0;
}

.ROP_box figure img {
    width: 100%;
}

.ROP_box figure span {
    display: block;
    width: 90px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #545b97;
    color: #fff;
    font-family: GmarketSansMedium;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ROP_box figcaption {
    border: 1px solid #e3e3e3;
    border-top: none;
    padding: 15px 20px;
    height: 160px;
    position: relative;
}

.ROP_box figcaption h3 {
    font-family: GmarketSansMedium;
    font-size: 20px;
    line-height: 24px;
}

.ROP_box figcaption .tag_shape {
    color: #df1478;
}

.ROP_box figcaption .Professor {
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    font-size: 15px;
    line-height: 20px;
    padding: 10px 0;
    border-top: 1px dashed #e3e3e3;
}

.ROP_slider .slick-dots {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 10px;
}

.ROP_slider .slick-dots li {
    width: 30px;
    height: 4px;
    text-indent: 99999px;
    background: #d9e0e6;
    display: inline-block;
    margin: 0 5px;
}

.ROP_slider .slick-dots li.slick-active {
    background: #2b54a2;
}

.ROP_info {
    border: 1px solid #e3e3e3;
    padding: 20px 25px;
    margin-bottom: 50px;
}

.ROP_info li {
    overflow: hidden;
    clear: both;
    border-bottom: 1px dashed #e3e3e3;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.ROP_info li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.ROP_info li span {
    float: left;
    width: 20%;
    font-family: GmarketSansMedium;
}

.ROP_info li em {
    float: left;
    width: 80%;
    color: #6a6e73;
}

.newletter_down {
    border: 1px solid #e3e3e3;
    padding: 20px 125px 20px 125px;
    margin-bottom: 30px;
    background: url(../img/ic_newsletter.jpg) no-repeat 25px 20px;
    position: relative;
    min-height: 80px;
}

.newletter_down h4 {
    font-family: GmarketSansMedium;
    font-size: 20px;
    margin-top: 10px;
}

.newletter_down .btn {
    position: absolute;
    right: 20px;
    top: 25px;
    line-height: 70px;
    width: 80px;
    border-radius: 2px;
}

/* sub05_02 - 산학협력단 규정집 */
.sub05_02 .tab_content h2 {
    font-family: GmarketSansMedium;
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 15px;
    background: #f2f2f2;
}

.regul_book_list > ul {
    overflow: hidden;
    clear: both;
    width: calc(100% + 10px);
    margin-left: -5px;
}

.regul_book_list > ul > li {
    width: calc(33.33% - 10px);
    float: left;
    padding: 5px;
}

.regul_book_box h3 {
    font-family: GmarketSansMedium;
    font-size: 18px;
    background: #545b97;
    text-align: center;
    color: #fff;
    padding: 10px 0 8px 0;
}

.regul_book_box ul {
    border: 1px solid #e3e3e3;
    border-top: 0;
    padding: 15px;
    height: 150px;
    overflow-y: auto;
}

.regul_book_box ul li {
    position: relative;
    padding-left: 40px;
    line-height: 20px;
    border-bottom: 1px dashed #e3e3e3;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.regul_book_box ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.regul_book_box ul li::before {
    display: block;
    content: "URL";
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    background: #2b54a2;
    font-family: MontserratRegular;
    font-weight: bold;
    letter-spacing: -1px;
    font-size: 12px;
    line-height: 12px;
    border-radius: 4px;
    padding: 4px 6px;
}

.regul_book_box ul li a:hover {
    text-decoration: underline;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#header.sub05_02_view {
    height: auto !important;
}

#header.sub05_02_view h1 {
    background: url(../img/bg_page_root.jpg) no-repeat left top;
    background-size: 100% 100%;
    color: #fff;
    font-family: GmarketSansMedium;
    padding: 10px 15px;
    margin-bottom: 0;
}

#header.sub05_02_view button {
    display: block;
    position: absolute;
    right: 20px;
    top: 9px;
    background: none;
    text-indent: -99px;
    overflow: hidden;
    width: 30px;
    height: 30px;
}

#header.sub05_02_view button::before {
    content: "";
    background: #fff;
    width: 30px;
    height: 4px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateY(12px) rotate(45deg);
    -moz-transform: translateY(12px) rotate(45deg);
    -ms-transform: translateY(12px) rotate(45deg);
    -o-transform: translateY(12px) rotate(45deg);
    transform: translateY(12px) rotate(45deg);
}

#header.sub05_02_view button::after {
    content: "";
    background: #fff;
    width: 30px;
    height: 4px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateY(12px) rotate(-45deg);
    -moz-transform: translateY(12px) rotate(-45deg);
    -ms-transform: translateY(12px) rotate(-45deg);
    -o-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
}

#page_contents.sub05_02_view {
    position: relative;
}

.regul_btn_set {
    text-align: right;
    position: fixed;
    top: 60px;
    right: 20px;
}

.regul_btn_set button {
    background: #383a40;
    color: #fff;
    font-family: GmarketSansMedium;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}
.regul_btn_set a {
    display: inline-block;
    background: #383a40;
    color: #fff;
    font-family: GmarketSansMedium;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.regul_btn_set button::before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    margin-right: 5px;
    vertical-align: middle;
}
.regul_btn_set a::before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    margin-right: 5px;
    vertical-align: middle;
}

.regul_btn_set button.regul_btn01::before {
    content: "\f02f";
}

.regul_btn_set a.regul_btn02::before {
    content: "\f1e0";
}

.regul_btn_set button.regul_btn03::before {
    content: "\f02e";
}

.regul_btn_set button:active {
    background: #18191d;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.2s ease;
}

.regul_cont {
    padding: 20px;
}

.newsletter_top {
    border: 1px solid #e3e3e3;
    margin-bottom: 40px;
    padding: 20px 25px;
}

.newsletter_top h3 {
    font-family: GmarketSansMedium;
    font-size: 20px;
}

.newsletter_cont {
    border: 1px solid #e3e3e3;
    padding: 30px;
    margin-top: -30px;
    margin-bottom: 50px;
}

.newsletter_exec_tip {
    border-bottom: 1px dashed #e3e3e3;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.newsletter_exec_tip li {
    color: #575859;
    padding-left: 17px;
    position: relative;
}

.newsletter_exec_tip li::before {
    display: block;
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

.newsletter_contact > div {
    width: 100%;
    margin-bottom: 15px;
}

.newsletter_contact .input_name {
    width: 100%;
}

.newsletter_contact .input_name .input_text {
    width: calc(100% - 128px);
}

.newsletter_contact > span {
    display: block;
    line-height: 40px;
    margin: 0 10px;
}

.newsletter_contact label {
    display: inline-block;
    max-width: 100px;
    width: 100%;
}

.newsletter_contact .input_text {
    display: inline-block;
    width: calc(100% - 128px);
    height: 38px;
    line-height: 38px;
    padding: 0 10px;
    border: 1px solid #d2d2d2;
}

span.btn {
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    background: #545b97;
    padding: 4px 12px;
    margin-left: 10px;
}

.btn_file_delete {
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    background: #18191d;
    padding: 4px 12px;
    margin-left: 10px;
}

.preview .download_pop {
    font-size: 14px;
    line-height: 14px;
    color: #fff;
    background: #18191d;
    padding: 4px 12px;
    margin-left: 10px;
}

.text-danger {
    display: block;
    padding-top: 3px;
    padding-left: 110px;
    width: 100%;
    font-size: 12px;
    color: red;
    z-index: 2;
}

.search_result_top {
    border: 1px solid #e3e3e3;
    padding: 20px 25px;
    background: #fff;
    font-family: GmarketSansMedium;
    font-size: 20px;
    margin-bottom: 40px;
}

.search_result_top span {
    color: #e8123a;
}

.search_result_cont h3 {
    font-size: 20px;
    border-bottom: 2px solid #353535;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.search_result_cont h3 strong {
    color: #0f5897;
}

.search_result_cont ul {
    margin-bottom: 30px;
}

.search_result_cont ul li {
    overflow: hidden;
    clear: both;
    border-bottom: 1px dotted #d6d7d9;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.search_result_cont ul li span {
    float: left;
    width: 35%;
}

.search_result_cont ul li em {
    float: left;
    width: 65%;
}

.search_result_cont ul li em strong {
    color: #e8123a;
}

.search_result_cont button {
    display: block;
    background: #383a40;
    color: #fff;
    font-family: GmarketSansMedium;
    text-align: center;
    line-height: 40px;
    width: 150px;
    margin: 0 auto;
}
.search_result_cont .more {
    display: block;
    background: #383a40;
    color: #fff;
    font-family: GmarketSansMedium;
    text-align: center;
    line-height: 40px;
    width: 150px;
    margin: 0 auto;
}
.all_search {
    padding-top: 80px;
    padding-bottom: 80px;
}
.container.all_search::before {
    display: none !important;
}

.center_busi_top {
    text-align: center;
    margin-bottom: 50px;
}
.center_busi_top h2 {
    font-size: 40px;
    line-height: 40px;
    color: #125fa1;
    font-family: GmarketSansMedium;
    letter-spacing: -1px;
    margin-bottom: 30px;
}
.center_busi_top h2 span {
    font-size: 26px;
    color: #3a444d;
    line-height: 26px;
    display: block;
    margin-bottom: 10px;
}
.center_busi_top h2 span::before {
    display: inline-block;
    content: "";
    background: url(../img/blit_left.png) no-repeat;
    width: 12px;
    height: 12px;
    padding-right: 10px;
    vertical-align: middle;
}
.center_busi_top h2 span::after {
    display: inline-block;
    content: "";
    background: url(../img/blit_right.png) no-repeat top right;
    width: 12px;
    height: 12px;
    padding-left: 10px;
    vertical-align: middle;
}
.center_busi_top p {
    margin-bottom: 15px;
}
.center_busi_top ul {
    overflow: hidden;
    clear: both;
    border: 1px solid #e3e3e3;
    padding: 25px 0;
}
.center_busi_top ul li {
    float: left;
    width: calc(50% - 2px);
    border-right: 1px dashed #e3e3e3;
}
.center_busi_top ul li:last-child {
    border-right: 0;
}
.center_busi_top ul li span {
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    background: #245fa9;
    border-radius: 15px;
    padding: 5px 10px;
    color: #fff;
    margin-bottom: 10px;
}
.center_busi_top ul li em {
    display: block;
}
.center_box {
    margin-bottom: 15px;
    border: 1px solid #e3e3e3;
    padding: 25px 30px;
    cursor: pointer;
}
.center_box h3 {
    font-size: 22px;
    font-family: GmarketSansMedium;
    border-bottom: 2px dotted #e3e3e3;
    line-height: 26px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.center_box h3 span {
    font-size: 16px;
    color: #fff;
    font-family: AritaDotumMedium;
    background: #245fa9;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 2px;
}
.center_box ul li {
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    margin-right: 50px;
}
.center_box ul li:last-child {
    margin-right: 0;
}
.center_box ul li span {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #e3e3e3;
}
.center_box2 {
    margin-bottom: 15px;
    border: 1px solid #e3e3e3;
    padding: 25px 30px;
}
.center_box2 h3 {
    font-size: 22px;
    font-family: GmarketSansMedium;
    border-bottom: 2px dotted #e3e3e3;
    line-height: 26px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.center_box2 h3 span {
    font-size: 16px;
    color: #fff;
    font-family: AritaDotumMedium;
    background: #245fa9;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 2px;
}

.center_box2 ul li {
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    width: calc(50% - 5px);
    overflow: hidden;
    clear: both;
    vertical-align: top;
}

.center_box2 ul li span {
    display: block;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 10px;
}

.center_box2 ul li em {
    display: block;
    word-break: keep-all;
    background: #f8f8f8;
    padding: 20px;
    line-height: 22px;
    min-height: 44px;
}

.center_view_title {
    border: 1px solid #e3e3e3;
    padding: 25px;
    position: relative;
    margin-bottom: 20px;
}

.center_view_title::before {
    display: block;
    content: "";
    width: calc(100% + 2px);
    height: 3px;
    background: url(../img/bg_page_root.jpg) no-repeat left top;
    background-size: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
    z-index: 10;
}

.center_view_title h3 {
    font-family: GmarketSansMedium;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #383a40;
}

.center_view_title h3 span {
    background: #245fa9;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    border-radius: 2px;
    padding: 3px 10px 1px 10px;
    vertical-align: bottom;
}

.center_view_title ul {
    font-size: 0;
    line-height: 0;
}

.center_view_title ul li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    width: 50%;
}

.center_view_title ul li span {
    color: #383a40;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #e3e3e3;
}

.center_view_title ul li:nth-child(5),
.center_view_title ul li:nth-child(6) {
    margin-bottom: 0;
}

.pic_cont ul {
    clear: both;
    overflow: hidden;
}
.pic_cont ul li {
    width: 50%;
    float: left;
}

.application_wrap {
    padding: 0 20px;
    width: 210mm;
    height: 297mm;
}
.app_header {
    clear: both;
    overflow: hidden;
}
.app_header > div {
    float: left;
    line-height: 120px;
    text-align: center;
}
.app_header .logo_L {
    width: 15%;
}
.app_header .logo_L img {
    width: 80px;
    vertical-align: middle;
}
.app_header .logo_txt {
    width: 70%;
    font-size: 36px;
    font-family: GmarketSansMedium;
}
.app_header .logo_R {
    width: 15%;
}
.app_header .logo_R img {
    width: 80px;
    vertical-align: middle;
}

.application_approval {
    clear: both;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
    border-bottom: 1px solid #a3a3a3;
}
.application_approval > .application_approval_inner {
    display: block;
    width: 400px;
    float: right;
}
.application_approval > .application_approval_inner .approval_table {
    display: table;
    border-collapse: collapse;
    word-break: keep-all;
    text-align: center;
    width: 100%;
    margin-left: -1px;
}
.application_approval > .application_approval_inner .approval_table th {
    background: #e8e8e9;
    padding: 0 10px;
    color: #383a40;
    line-height: 60px;
    height: 60px;
    border-bottom: 1px solid #a3a3a3;
    border-right: 1px solid #a3a3a3;
    border-top: 1px solid #a3a3a3;
}
.application_approval > .application_approval_inner .approval_table td {
    padding: 0 10px;
    color: #575859;
    line-height: 60px;
    border-bottom: 1px solid #a3a3a3;
    border-right: 1px solid #a3a3a3;
}
.application_approval > .application_approval_inner .approval_table .tit {
    border-bottom: none;
    border-left: 1px solid #a3a3a3;
}
.application_approval > .application_approval_inner .approval_table .border_none {
    border-bottom: 0;
}
.application_approval > .application_approval_inner .approval_table button {
    padding: 5px 10px;
    background: #363672;
    border-radius: 4px;
    color: #fff;
}

.app_title {
    font-size: 50px;
    font-family: GmarketSansMedium;
    text-align: center;
    margin-bottom: 80px;
}

.application_data .data_table01 {
    display: table;
    border-collapse: collapse;
    word-break: keep-all;
    text-align: center;
    width: 100%;
    margin-left: -1px;
    margin-bottom: 30px;
}
.application_data .data_table01 th {
    background: #e8e8e9;
    padding: 30px 10px;
    color: #383a40;
    line-height: 24px;
    border-bottom: 1px solid #a3a3a3;
    border-right: 1px solid #a3a3a3;
    border-top: 1px solid #a3a3a3;
}
.application_data .data_table01 th.first {
    border-left: 1px solid #a3a3a3;
}
.application_data .data_table01 td {
    padding: 50px 10px;
    color: #575859;
    line-height: 24px;
    border-bottom: 1px solid #a3a3a3;
    border-right: 1px solid #a3a3a3;
}
.application_data .data_table01 td.first {
    border-left: 1px solid #a3a3a3;
}

.application_data .data_table02 {
    display: table;
    border-collapse: collapse;
    word-break: keep-all;
    text-align: center;
    width: 100%;
    margin-left: -1px;
    margin-bottom: 30px;
}
.application_data .data_table02 th {
    background: #e8e8e9;
    padding: 30px 10px;
    color: #383a40;
    line-height: 24px;
    border-bottom: 1px solid #a3a3a3;
    border-right: 1px solid #a3a3a3;
    border-top: 1px solid #a3a3a3;
}
.application_data .data_table02 th.first {
    border-left: 1px solid #a3a3a3;
}
.application_data .data_table02 td {
    padding: 50px 10px;
    color: #575859;
    line-height: 24px;
    border-bottom: 1px solid #a3a3a3;
    border-right: 1px solid #a3a3a3;
    border-top: 1px solid #a3a3a3;
}

.application_bottom {
    text-align: center;
    width: 210mm;
    margin-top: -200px;
}
.application_bottom button {
    padding: 15px 20px;
    background: #363672;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
}

#assign_calender {
    margin-bottom: 40px;
}
#assign_calender em {
    display: block;
    height: 600px;
    background: #8fb6cd;
    text-align: center;
    font-size: 20px;
    line-height: 600px;
}

.assign_calender_table tbody tr:hover {
    background: #0f5897;
}
.assign_calender_table tbody tr:hover td {
    color: #fff;
    cursor: pointer;
}

/* mediaquery ============================================================================================================================*/
/* =======================================================================================================================================*/
/* =======================================================================================================================================*/
/* =======================================================================================================================================*/
/* =======================================================================================================================================*/

/* 화면 너비 0~1610px */
@media (max-width: 1600px) {
    .menu li a {
        padding: 39px 69px;
    }
}

/* 화면 너비 0~1340px */
@media (max-width: 1340px) {
    .menu li a {
        padding: 39px 49px;
    }
}

/* 화면 너비 0~1220px */
@media (max-width: 1220px) {
    /* 레이아웃 */
    .container {
        width: 100%;
    }

    /* 메뉴 */
    .menu li a {
        padding: 39px 37px;
    }
    .sub-menu ul li ul li ul li a::before {
        display: none;
    }

    /* 서브 레이아웃 */
    #page_contents .container .right_menu_wrap {
        display: none;
    }

    #page_contents .container::before {
        display: none;
    }

    #page_contents .container .container_inner {
        width: 100%;
        margin-right: 0;
    }
}

/* 화면 너비 0~1024px */
@media (max-width: 1024px) {
    /* 메뉴 */
    .menu li a {
        padding: 39px 29px;
    }
    .main-menu li {
        width: 18%;
    }

    .sub-menu > ul > li {
        width: 18%;
    }

    /* 사이트맵 */
    .full_menu > .container > ul > li {
        padding: 0 5px;
        width: calc(33.3% - 10px);
    }

    /* 명예의 전당 */
    .HallofFame_wrap {
        background-size: 100% 100%;
    }

    .study_info {
        width: calc(40% - 2px);
    }

    .menber_info {
        max-width: max-content;
    }
}

/* 화면 너비 0~960px */
@media (max-width: 960px) {
    /* 메뉴 */
    .menu li {
        display: none;
    }

    #nav .all_btn {
        display: block;
        position: absolute;
        right: 10px;
        top: 40px;
    }

    .menu:hover > .sub-menu_warp {
        display: none;
    }

    /* sub01_02 */
    .year_set ul li span {
        width: 100%;
    }

    .year_set ul li {
        line-height: 36px;
        padding-bottom: 5px;
    }

    .year_set ul li .note {
        line-height: 24px;
    }

    .year_set ul li .note img {
        margin-top: 10px;
    }
}

/* 화면 너비 0~900px */
@media (max-width: 900px) {
}

/* 화면 너비 0~768px */
@media (max-width: 768px) {
    /* 레이아웃 */
    #header {
        height: 60px;
    }

    .header_inner .logo {
        width: 100%;
        height: 100%;
        float: initial;
        border-bottom: 1px solid #e3e3e3;
    }
    .header_inner .logo a {
        top: 0;
        max-width: 88px;
        left: 50%;
        -webkit-transform: translate(-60px, 0);
        -moz-transform: translate(-60px, 0);
        -ms-transform: translate(-60px, 0);
        -o-transform: translate(-60px, 0);
        transform: translate(-60px, 0);
    }

    main > section {
        height: inherit;
        height: 100%;
        background-size: 400%;
        background-position: center;
    }

    main > section > .container {
        height: inherit;
        height: 100%;
    }

    .main_section_inner {
        position: static;
        height: 100%;
        left: inherit;
        top: inherit;
        transform: inherit;
        padding: 80px 0;
    }

    .main_dot {
        display: none;
    }

    /* 메뉴 */
    .mainWrap {
        width: auto;
        padding: 50px 20px;
    }
    .menu {
        position: absolute;
        top: 61px;
        left: 0;
        width: 100%;
        display: none;
        background: #fff;
    }
    .menu ul {
        top: 37px;
        transition: none;
    }
    .menu li a {
        font-size: 16px;
        padding: 20px 0;
        border-bottom: 1px solid #dbdbdb;
    }
    .responsive-menu {
        display: block !important;
    }
    nav {
        margin: 0;
        background: none;
    }
    .menu li {
        display: block;
        margin: 0;
    }
    .sub-menu > li::before {
        position: absolute;
        content: "";
        background: #2d4c9e;
        width: 3px;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 3;
    }
    .menu li a {
        background: #fff;
        color: #797979;
        transition: none;
    }
    .menu li.on > a {
        background: #2593d1;
        color: #fff;
    }
    .menu ul {
        top: 0;
        left: 0;
        width: 100%;
        transform: initial;
        border: none;
        padding: 0;
        margin-top: 0;
        display: none;
        position: inherit;
    }
    .menu ul::before {
        display: none;
    }
    .menu ul li a {
        padding: 15px 10px;
    }

    .menu ul ul {
        left: 0;
        transform: initial;
        width: 100%;
        background: #edeef1;
        top: 0;
        z-index: 9999;
        position: inherit;
        display: none;
    }

    .menu ul ul a {
        background: #f4f5f9;
    }

    .menu ul ul:after {
        display: none;
    }

    .menu li > ul ul.on {
        transform: initial;
    }
    .sub-menu li ul li a::before {
        content: "-";
        padding-right: 5px;
    }

    #nav .all_btn {
        display: none;
    }

    nav {
        height: 60px;
        float: none;
    }

    .menu li > a::after {
        background: none;
    }

    .mouse_motion {
        display: none;
    }

    .main_title h2 {
        font-size: 34px;
        line-height: 40px;
        word-break: keep-all;
    }

    .main_section01 .main_title h2 strong {
        font-size: 38px;
    }

    .main_search_quick .search_box {
        width: 95%;
        margin: 0 auto 40px auto;
    }

    .main_search_quick .search_box .form_input::placeholder {
        color: #fff;
    }

    .reseacher_slider {
        padding-bottom: 30px;
    }

    .ic_slider .slick-prev {
        left: 5px;
    }

    .ic_slider .slick-next {
        right: 5px;
    }

    .ic_slider .slick-prev,
    .ic_slider .slick-next {
        top: inherit;
        bottom: -75px;
    }

    .datae_num {
        height: 60px;
    }

    .datae_num h4 {
        margin: 10px 0 0 0;
        text-align: center;
    }

    .datae_num span {
        margin: 0 0 0 0;
        font-size: 20px;
        text-align: center;
        line-height: 28px;
    }

    .main_section02 .main_cont > ul > li {
        float: inherit;
        max-width: calc(100% - 20px) !important;
        margin: 0 10px;
    }

    .main_section02 .main_cont > ul > li > div {
        height: 100% !important;
    }

    .main_section02 .column01 {
        margin-bottom: 10px;
    }

    .main_section02 .column02,
    .main_section02 .column03,
    .main_section02 .column04 {
        padding: 15px 20px;
    }

    .main_section02 .column02 .btn,
    .main_section02 .column03 .btn {
        top: 15px;
        right: 20px;
    }

    .main_section02 .column02 ul li a span,
    .main_section02 .column03 ul li a span {
        white-space: inherit;
    }

    .main_section02 .column02,
    .main_section02 .column03,
    .main_section02 .column04,
    .main_section02 .column05,
    .main_section02 .column06 {
        margin-bottom: 10px;
    }

    .perform_slider {
        width: 85%;
        margin: 0 auto 40px auto;
    }

    .perform_slider .slick-prev {
        left: -25px;
    }

    .perform_slider .slick-next {
        right: -25px;
    }

    .perform_mainbox {
        height: auto;
        max-width: 100%;
        overflow: inherit;
        clear: inherit;
    }

    .perform_mainbox figure {
        height: auto;
        display: block;
        width: 100%;
    }

    .perform_mainbox figcaption {
        height: auto;
        width: 100%;
        background: #fff;
        display: block;
        padding-bottom: 40px;
    }

    .perform_mainbox figcaption h3 {
        margin: 10px;
        text-align: center;
        word-break: keep-all;
    }

    .perform_mainbox figcaption h3 span {
        display: block;
        width: 50%;
        margin: 0 auto;
        height: 18px;
        line-height: 18px;
        margin-bottom: 10px;
        padding: 5px;
    }

    .perform_mainbox figcaption h3 br {
        display: none;
    }

    .perform_mainbox figcaption p {
        text-align: center;
        margin: 10px !important;
        display: block;
        word-break: keep-all;
    }

    .main_section03 .btn {
        width: 85%;
    }

    .main_section04 .main_title span {
        width: 80%;
        word-break: keep-all;
        margin: auto;
    }

    .main_section04 .main_cont dl {
        width: 85%;
        margin: 0 auto;
        height: auto;
    }

    .main_section04 .main_cont dl dt {
        width: 100%;
        height: 200px;
    }

    .main_section04 .main_cont dl dd {
        width: 100%;
        height: 300px;
    }

    .footer_address .Column:first-child {
        width: calc(100% - 60px);
        padding: 25px 30px;
    }

    .footer_address .Column {
        width: calc(100% - 60px);
        border-bottom: 1px solid #53555c;
        min-height: auto;
    }

    #page_root > .container > ul > li::before {
        display: none;
    }

    #page_root > .container > ul > li::after {
        display: none;
    }
    .main_section02 .column05 p img {
        max-width: 200px;
    }

    .main_section02 .main_cont > ul > li > div.task_info {
        min-height: 250px;
        margin-bottom: 10px;
    }
    .task_info ul > li > a > h2 {
        font-size: 21px;
    }
    .task_info .btn {
        display: none !important;
    }

    /* 서브 레이아웃 */
    #page_title {
        margin-top: 60px;
        height: 100px;
        background-size: 200%;
    }

    #page_title h1 {
        width: 80%;
    }

    #page_title h1 em {
        font-size: 30px;
        line-height: 34px;
    }

    #page_root > .container > ul > li {
        display: none;
    }

    #page_root > .container > ul > li:last-child {
        display: block;
        margin-left: 0;
    }

    #page_root a.btn_home {
        display: none;
    }

    #page_root > .container > ul > li > ul {
        width: 100%;
    }

    #page_contents .container {
        padding: 0 10px;
        width: calc(100% - 20px);
    }

    /* sub01_01 - 인사말*/
    .sub01_01 dt {
        font-size: 28px;
        line-height: 34px;
        word-break: keep-all;
    }

    .sub01_01 dt span::before {
        display: none;
    }

    .sub01_01 dd.note {
        width: 100%;
        margin-right: 0;
    }

    .sub01_01 dd.note p {
        line-height: 26px;
    }

    .sub01_01 dd.G_Manager {
        width: 80%;
        margin: 0 auto;
        float: none;
    }

    .sub01_01 dd.G_Manager figcaption {
        text-align: center;
    }

    /* sub01_02 - 연혁*/
    .tab_year {
        position: fixed;
        width: 70px;
        overflow-y: scroll;
        left: 0;
    }

    .tab_year::-webkit-scrollbar {
        width: 2px !important;
    }

    .tab_year ul li {
        display: block;
        width: 70px;
        border-bottom: 1px solid #e3e3e3;
    }

    .tab_year ul li::after {
        display: none;
    }

    .tab_year span {
        display: none;
    }

    .tab_year.historyMenuFixed {
        position: fixed !important;
        left: 0;
        top: 0;
        height: 100%;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .history_wrap {
        margin-left: 60px;
    }

    .history_wrap::before {
        left: 0;
    }

    .year_set {
        padding: 0;
    }

    .year_set h3 {
        font-size: 60px;
        padding: 10px 0 0 20px;
        position: static;
        margin-left: 0;
    }

    .year_set h3::before {
        left: -6px;
        width: 80px;
        height: 5px;
    }

    .year_set ul {
        padding-left: 20px;
    }

    /* sub01_03 - 조직도*/
    .org_img {
        overflow-y: scroll;
    }

    .org_img img {
        width: 970px;
    }

    .org_table tr td:nth-of-type(1):before {
        content: "소속";
    }

    .org_table tr td:nth-of-type(2):before {
        content: "성명";
    }

    .org_table tr td:nth-of-type(3):before {
        content: "직위/지급";
    }

    .org_table tr td:nth-of-type(4):before {
        content: "담당업무";
    }

    .org_table tr td:nth-of-type(5):before {
        content: "전화번호";
    }

    .org_table tr td:nth-of-type(6):before {
        content: "이메일";
    }

    /* 보드 통합 검색 */
    .board_search {
        padding: 15px;
        width: calc(100% - 30px);
    }

    .board_search .form_select {
        max-width: 30%;
    }

    .board_search .form_input {
        max-width: calc(70% - 10px);
    }

    .board_search .b_search_btn {
        width: 100%;
        margin-top: 5px;
    }

    /* 기본 테이블 */
    .table,
    .table thead,
    .table tbody,
    .table th,
    .table td,
    .table tr {
        display: block;
        white-space: normal;
    }

    .table thead tr {
        display: none;
    }

    .table tr {
        border: 1px solid #e3e4e6;
        margin-bottom: 10px;
    }

    .table td {
        border: none;
        border-bottom: 1px solid #e3e4e6;
        position: relative;
        padding-left: 25%;
        text-align: left;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .table td:before {
        position: absolute;
        top: 50%;
        left: 0;
        width: 20%;
        text-align: center;
        white-space: nowrap;
        border-right: 1px solid #e3e3e3;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .table td.left_ellipsis {
        display: block;
        text-overflow: initial;
    }

    .table .ic_new {
        margin: 0;
        text-align: center;
    }

    /* 과제공고(일반) */
    .board_table td:nth-of-type(1):before {
        content: "NO";
    }

    .board_table td:nth-of-type(2):before {
        content: "제목";
    }

    .board_table td:nth-of-type(3):before {
        content: "작성자";
    }

    .board_table td:nth-of-type(4):before {
        content: "작성일";
    }

    .board_table td:nth-of-type(5):before {
        content: "조회";
    }

    /* 상세페이지 */
    .view_title h3 {
        padding: 15px;
    }

    .view_title h3 span {
        padding: 3px 4px;
        margin-right: 5px;
    }

    .view_title ul {
        padding: 15px;
    }

    .view_title ul li {
        width: 100%;
    }

    .view_title ul li:last-child {
        width: 100%;
        float: left;
        text-align: left;
    }

    /* 기본 테이블 2번째*/
    .table2,
    .table2 thead,
    .table2 tbody,
    .table2 th,
    .table2 td,
    .table2 tr {
        display: block;
    }

    .table2 thead tr {
        display: none;
    }

    .table2 tr th {
        display: none;
    }

    .table2 td {
        border: none;
        border-bottom: 1px solid #e3e4e6;
        position: relative;
        padding: 15px;
        text-align: left;
    }

    .table2 td:before {
        display: block;
        width: 100%;
        height: 100%;
        line-height: 18px;
        background: #f9f9fa;
        text-align: center;
        padding: 10px 15px;
        border-bottom: 1px dotted #e5e9ed;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translate(-15px, -15px);
    }

    /* 과제공고(일반) - 상세페이지*/
    .view_table tr:nth-of-type(1) td:before {
        content: "부처명";
    }

    .view_table tr:nth-of-type(2) td:before {
        content: "공고명";
    }

    .view_table tr:nth-of-type(3) td:before {
        content: "공고일";
    }

    .view_table tr:nth-of-type(3) td:nth-of-type(2):before {
        content: "접수마감일";
    }

    .view_table tr:nth-of-type(4) td:before {
        content: "관련URL";
    }

    .view_table tr:nth-of-type(5) td:before {
        content: "첨부파일";
    }

    .flow_long_set .add_file_btn_wrap {
        width: 100%;
    }

    .flow_long_set > ul > li::after {
        left: 50%;
    }

    .flow_long_set > ul > li::after {
        bottom: -40px;
        top: auto;
        margin-left: -14px;
    }

    .flow_long_set > ul > li > .flow_txt {
        width: 100%;
        height: 100px;
    }

    .flow_long_set > ul > li > .flow_subtxt {
        width: calc(100% - 20px);
        height: auto;
    }

    .flow_long_set > ul > li > .flow_subtxt em {
        left: 10px;
    }

    .flow_long_set > ul > li > .flow_subtxt em h5 {
        line-height: 20px;
    }

    .flow_box > .flow_subtxt {
        padding: 10px;
    }

    .flow_box > .flow_subtxt em {
        position: initial;
    }

    .flow_3set > ul > li {
        width: calc(50% - 22px);
        margin-right: 40px;
    }

    .flow_3set > ul > li:nth-child(even) {
        margin-right: 0;
    }

    .flow_3set > ul > li:nth-child(even)::after {
        display: none;
    }

    .flow_3set > ul > li::after {
        right: -36px;
    }

    .flow_3set > ul > li:nth-child(3) {
        margin-right: 40px;
    }

    .flow_3set > ul > li:nth-child(3)::after {
        display: block;
    }

    .flow_4set > ul > li {
        width: calc(50% - 22px);
        margin-right: 40px;
    }

    .flow_4set > ul > li:nth-child(2) {
        margin-right: 0;
    }

    .flow_4set > ul > li:nth-child(2)::after {
        display: none;
    }

    .flow_4set > ul > li::after {
        right: -36px;
    }

    .all_file_download ul li {
        margin-bottom: 20px;
    }

    .all_file_download ul li::before {
        display: none;
    }

    .all_file_download ul li a {
        padding: 15px 15px 25px 15px;
        text-align: center;
        line-height: 24px;
        position: relative;
    }

    .all_file_download ul li a span {
        top: auto;
        bottom: -15px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
        transform: translateX(50%);
    }

    .satisfac_box {
        padding: 20px;
    }

    .satisfac_box .conacnt_info ul li:first-child span.depart {
        padding: 8px 12px;
        width: 40%;
    }

    .satisfac_box .conacnt_info ul li:first-child em {
        width: calc(60% - 55px);
    }

    .satisfac_box .conacnt_info ul li {
        display: block;
        margin-bottom: 5px;
    }

    .satisfac_box .conacnt_info ul li span {
        display: inline-block;
        line-height: 20px;
        padding: 8px 15px 8px 0;
        width: 50px;
    }

    .satisfac_box .conacnt_info ul li em {
        display: inline-block;
        line-height: 20px;
        width: calc(100% - 97px);
    }

    .satisfac_box .satisfac_level ul li {
        margin-bottom: 5px;
    }

    .busi_table01 td:nth-of-type(1):before {
        content: "구분";
    }

    .busi_table01 td:nth-of-type(2):before {
        content: "기본 지원 (KCI 이상 결과물 제출)";
    }

    .busi_table01 td:nth-of-type(3):before {
        content: "추가 지원 (국제급 이상 결과물 제출)";
    }

    .busi_table02 td:nth-of-type(1):before {
        content: "계열";
    }

    .busi_table02 td:nth-of-type(2):before {
        content: "결과물(논문) 등급";
    }

    .busi_table02 td:nth-of-type(3):before {
        content: "제출기한";
    }

    .busi_table03 td:nth-of-type(1):before {
        content: "연간연구비(현물제외)";
    }

    .busi_table03 td:nth-of-type(2):before {
        content: "계열";
    }

    .busi_table03 td:nth-of-type(3):before {
        content: "결과물(논문) 등급";
    }

    .busi_table04 td:nth-of-type(1):before {
        content: "구분";
    }

    .busi_table04 td:nth-of-type(2):before {
        content: "구분";
    }

    .busi_table04 td:nth-of-type(3):before {
        content: "SCI/SSCI/A&HCI, SCIE/SCOPUS";
    }

    .busi_table04 td:nth-of-type(4):before {
        content: "한국연구재단등재지";
    }

    .busi_table04 tr:nth-of-type(2) td:nth-of-type(2):before,
    .busi_table04 tr:nth-of-type(3) td:nth-of-type(3):before,
    .busi_table04 tr:nth-of-type(4) td:nth-of-type(2):before {
        content: "SCI/SSCI/A&HCI, SCIE/SCOPUS, 한국연구재단등재지";
    }

    .busi_table05 td:nth-of-type(1):before {
        content: "구분";
    }

    .busi_table05 td:nth-of-type(2):before {
        content: "자연계열";
    }

    .busi_table05 td:nth-of-type(3):before {
        content: "인문·사회계열";
    }

    .busi_table05 tr:nth-of-type(2) td:nth-of-type(2):before,
    .busi_table05 tr:nth-of-type(3) td:nth-of-type(2):before {
        content: "자연계열 | 인문·사회계열";
    }

    .busi_table06 td:nth-of-type(1):before {
        content: "공통 프로그램";
    }

    .busi_table07 td:nth-of-type(1):before {
        content: "건강검진";
    }

    .busi_table07 td:nth-of-type(3):before {
        content: "추가 항목";
    }

    .busi_table07 td:nth-of-type(4):before,
    .busi_table07 tr:nth-of-type(2) td:nth-of-type(3):before {
        content: "비고";
    }

    .busi_table07 tr:nth-of-type(2) td:nth-of-type(2):before {
        content: "추가 항목";
    }

    .busi_table08 tr:nth-of-type(1) td:nth-of-type(1):before {
        content: "구분";
    }

    .busi_table08 tr:nth-of-type(1) td:nth-of-type(3):before {
        content: "대상 품목";
    }

    .busi_table08 tr:nth-of-type(2) td:nth-of-type(2):before {
        content: "구분";
    }

    .busi_table08 tr:nth-of-type(4) td:nth-of-type(1):before {
        content: "기술관련 경영지원과 함께하는 이전방식";
    }

    .busi_table08 tr:nth-of-type(5) td:nth-of-type(1):before {
        content: "기술자문";
    }

    .busi_table08 tr:nth-of-type(6) td:nth-of-type(1):before {
        content: "기타";
    }

    .busi_table09 td:nth-of-type(1):before {
        content: "기술매매(양수, 양도)";
    }

    .busi_table09 tr:nth-of-type(2) td:nth-of-type(1):before,
    .busi_table09 tr:nth-of-type(3) td:nth-of-type(1):before {
        content: "자연과학·공학·의학";
    }

    .busi_table09 tr:nth-of-type(2) td:nth-of-type(2):before {
        display: none;
    }

    .busi_table09 tr:nth-of-type(4) td:nth-of-type(1):before {
        content: "기술관련 경영지원과 함께하는 이전방식";
    }

    .busi_table09 tr:nth-of-type(5) td:nth-of-type(1):before {
        content: "기술자문";
    }

    .busi_table09 tr:nth-of-type(6) td:nth-of-type(1):before {
        content: "기타";
    }

    .management_cont ul li {
        width: calc(100% - 2px);
        margin-bottom: 10px;
    }

    /* 신고센터 */
    .wrong_exec_top {
        padding: 20px;
    }

    .icon_wrong_exec {
        display: none;
    }

    .wrong_contact .input_name .input_text {
        width: calc(100% - 128px);
    }

    .wrong_contact > div {
        width: 100%;
    }

    .wrong_contact > span {
        width: 100%;
        margin: -15px 0 0 0;
        text-align: center;
    }

    .wrong_exec_cont {
        padding: 20px;
    }

    .wrong_exec_cont label {
        display: none;
    }

    .wrong_exec_img i {
        display: none;
    }

    .wrong_exec_img {
        line-height: 26px;
        padding: 20px 10px;
        min-height: auto;
    }

    .wrong_contact .input_name .input_text {
        width: calc(100% - 22px);
    }

    .wrong_contact .input_text {
        width: calc(100% - 22px);
    }

    .wrong_contact .input_password_check {
        margin-left: 0;
    }

    .wrong_note textarea {
        width: calc(100% - 22px);
    }

    .wrong_file_add .wfileadd {
        width: 100%;
    }

    .wrong_login {
        padding: 10% 0;
    }

    .wrong_login .wrong_login_inner {
        width: 100%;
    }

    .wrong_login .confirm_btn {
        width: 100%;
        background-size: 100% 100%;
        height: 60px;
        line-height: 60px;
    }

    .accordion_table .item td {
        padding: 8px 10px 8px 30%;
        min-height: 16px;
    }

    .wrong_table td:nth-of-type(1):before {
        content: "순번";
    }

    .wrong_table td:nth-of-type(2):before {
        content: "접수일";
    }

    .wrong_table td:nth-of-type(3):before {
        content: "접수내용";
    }

    .wrong_table td:nth-of-type(4):before {
        content: "접수파일";
    }

    .wrong_table td:nth-of-type(5):before {
        content: "접수담당자";
    }

    .wrong_table td:nth-of-type(6):before {
        content: "처리결과";
    }

    .wrong_table tr.show td:nth-of-type(1):before {
        display: none;
    }

    .anwer_box_cont ul li:first-child {
        width: 100%;
        margin-bottom: 5px;
    }

    .anwer_box_cont ul li {
        width: 100%;
        margin-bottom: 5px;
    }

    .anwer_status dd .stat {
        width: 100%;
        height: 30px;
    }

    .anwer_status dd .stat_anw {
        width: 100%;
        padding: 0;
    }

    .anwer_box_cont {
        padding: 0;
    }

    .anwer_box_cont ul li {
        text-align: center;
    }

    .anwer_box_cont ul li span {
        display: block;
        padding: 5px;
        background: #f9f9fa;
        border-right: 0;
        border-bottom: 1px dashed #e3e3e3;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .anwer_box_cont dl dt {
        text-align: center;
    }

    .anwer_box_cont .download_file {
        text-align: center;
        padding-bottom: 10px;
    }

    .Integ_search h3 {
        line-height: 26px;
        min-height: auto;
        height: auto;
        width: 100%;
        padding: 10px 0;
    }

    .Integ_search h3 i {
        display: inline-block;
        width: 24px;
        height: 24px;
        background-size: 100% 100%;
        margin: 0;
        vertical-align: text-bottom;
        margin-right: 10px;
    }

    .Integ_search_inner {
        padding: 15px 20px;
        width: calc(100% - 40px);
    }

    .Integ_search_inner .form_select {
        max-width: 100%;
        margin-bottom: 5px;
    }

    .Integ_search_inner .form_input.selinput {
        width: calc(100% - 102px);
    }

    .Integ_search_inner .sbtn {
        width: 23%;
    }

    .Integ_search_inner .form_input {
        width: calc(100% - 2px);
        margin-bottom: 5px;
    }

    .Integ_search_inner .btn {
        width: 100%;
    }

    .Integ_search_inner .form_input.selinput {
        width: 100%;
    }

    .wrong_contact .input_password_check {
        margin-left: 0;
    }

    /* 센터&연구소 */
    .center_rnd_table td:nth-of-type(1):before {
        content: "NO";
    }

    .center_rnd_table td:nth-of-type(2):before {
        content: "센터명";
    }

    .center_rnd_table td:nth-of-type(3):before {
        content: "설립연월일";
    }

    .center_rnd_table td:nth-of-type(4):before {
        content: "센터장";
    }

    .center_rnd_table td:nth-of-type(5):before {
        content: "연락처";
    }

    .center_rnd_table td:nth-of-type(6):before {
        content: "공간";
    }

    /* MOU현황 */
    .mou_table td:nth-of-type(1):before {
        content: "구분";
    }

    .mou_table td:nth-of-type(2):before {
        content: "협약일자";
    }

    .mou_table td:nth-of-type(3):before {
        content: "협약기간";
    }

    .mou_table td:nth-of-type(4):before {
        content: "주요내용";
    }

    /* 산학협력 입주기업 */
    .IACOC_table td:nth-of-type(1):before {
        content: "NO";
    }

    .IACOC_table td:nth-of-type(2):before {
        content: "업체명";
    }

    .IACOC_table td:nth-of-type(3):before {
        content: "입주일";
    }

    .IACOC_table td:nth-of-type(4):before {
        content: "대표자";
    }

    .IACOC_table td:nth-of-type(5):before {
        content: "전입교원";
    }

    .IACOC_table td:nth-of-type(6):before {
        content: "공간";
    }

    /* 계약학과 */
    .contracts_table td:nth-of-type(1):before {
        content: "NO";
    }

    .contracts_table td:nth-of-type(2):before {
        content: "업체명";
    }

    .contracts_table td:nth-of-type(3):before {
        content: "입주일";
    }

    .contracts_table td:nth-of-type(4):before {
        content: "대표자";
    }

    .contracts_table td:nth-of-type(5):before {
        content: "전입교원";
    }

    .contracts_table td:nth-of-type(6):before {
        content: "공간";
    }

    /* 학교기업 */
    .school_table td:nth-of-type(1):before {
        content: "NO";
    }

    .school_table td:nth-of-type(2):before {
        content: "업체명";
    }

    .school_table td:nth-of-type(3):before {
        content: "입주일";
    }

    .school_table td:nth-of-type(4):before {
        content: "대표자";
    }

    .school_table td:nth-of-type(5):before {
        content: "전입교원";
    }

    .school_table td:nth-of-type(6):before {
        content: "공간";
    }

    /* 명예의 전당 */
    .HallofFame_wrap {
        padding: 50px 30px;
    }

    .hall_card_list li:nth-child(2n) {
        margin-right: 0;
    }

    .hall_card_list li:nth-child(even) {
        margin-right: 0;
    }

    .menber_info {
        display: block;
        border-right: none;
        margin: 0 auto;
    }

    .study_info {
        display: block;
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 20px 25px;
    }

    .hall_card_list li {
        width: 100%;
    }

    .month_btn_set button {
        width: 14.5%;
        margin-bottom: 5px;
    }

    .excell_box figure {
        display: block;
        margin: 20px auto;
    }

    .excell_box figure span {
        left: 50%;
        margin-left: -100px;
    }

    .excell_box figure img {
        display: block;
        margin: 20px auto;
    }

    .excell_box figcaption {
        display: block;
        width: calc(100% - 40px);
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .excell_box figcaption .left {
        width: 100%;
        border-right: none;
        height: auto;
        margin-bottom: 20px;
    }

    .excell_box figcaption .right {
        width: 100%;
        height: auto;
    }

    .excell_box figcaption h4 {
        text-align: center;
        padding-bottom: 0;
    }

    .excell_box figcaption h4 span {
        width: calc(100% - 20px);
    }

    .excell_box figcaption .part {
        text-align: center;
    }

    .excell_box figcaption .part span {
        width: calc(100% - 20px);
    }

    .excell_box figcaption .right {
        margin-left: 0;
        width: calc(100% - 40px);
    }

    /* 공지사항 */
    .notice_table td:nth-of-type(1):before {
        content: "첨부파일";
    }

    /* 연구수주성과 */
    .ROP_list ul li {
        width: calc(100% - 20px);
    }

    .ROP_info li span {
        width: 100%;
        margin-bottom: 5px;
        font-size: 18px;
    }

    .ROP_info li em {
        width: 100%;
    }

    /* 각종서식 */
    .docum_form_table td:nth-of-type(1):before {
        content: "NO";
    }

    .docum_form_table td:nth-of-type(2):before {
        content: "제목";
    }

    .docum_form_table td:nth-of-type(3):before {
        content: "다운로드";
    }

    .docum_form_table td:nth-of-type(4):before {
        content: "조회";
    }

    /* 뉴스레터 */
    .newsletter_table td:nth-of-type(1):before {
        content: "NO";
    }

    .newsletter_table td:nth-of-type(2):before {
        content: "발행일";
    }

    .newsletter_table td:nth-of-type(3):before {
        content: "제목";
    }

    .newsletter_table td:nth-of-type(4):before {
        content: "작성자";
    }

    .newsletter_table td:nth-of-type(4):before {
        content: "작성일";
    }

    .newsletter_table td:nth-of-type(4):before {
        content: "조회";
    }

    /* 출장신청 */
    .newsletter_table td:nth-of-type(1):before {
        content: "NO";
    }
    .newsletter_table td:nth-of-type(2):before {
        content: "발행일";
    }
    .newsletter_table td:nth-of-type(3):before {
        content: "제목";
    }
    .newsletter_table td:nth-of-type(4):before {
        content: "작성자";
    }
    .newsletter_table td:nth-of-type(4):before {
        content: "작성일";
    }
    .newsletter_table td:nth-of-type(4):before {
        content: "조회";
    }

    .newletter_down {
        padding: 15px;
        background: none;
    }

    .newletter_down h4 {
        line-height: 28px;
        margin-bottom: 5px;
        margin-top: 0;
        font-size: 24px;
    }

    .newletter_down p {
        margin-bottom: 10px;
    }

    .newletter_down .btn {
        right: auto;
        top: auto;
        position: inherit;
        line-height: 50px;
        height: 50px;
        width: 100%;
    }

    /* 산학협력단 규정집 */
    .regul_book_list > ul > li {
        width: calc(100% - 10px);
    }

    .tab_4set li {
        width: 50%;
        border-bottom: 1px solid #e3e3e3;
    }

    .tab_4set li:last-child a {
        border-right: 1px solid #e3e3e3;
    }

    /* 뉴스레터 구독신청 */
    .newsletter_cont {
        padding: 20px;
    }

    .checks em {
        display: inline-block;
        width: 90%;
    }

    .checks {
        height: auto;
    }

    .center_box ul li {
        width: calc(100% - 5px);
    }

    .center_box {
        padding: 15px 20px;
    }

    /* sub01_03 - 조직도 */
    .org_search {
        text-align: center;
    }

    .org_search h3 {
        display: none;
    }

    .org_category .category {
        width: calc(100% - 1px);
        height: 230px;
        margin-bottom: 15px;
        border: 1px solid #e3e3e3;
        overflow-y: auto;
    }

    .org_category .sub_category {
        width: calc(100% - 1px);
        padding-left: 0;
    }

    .org_category .sub_category ul li {
        width: calc(32% - 12px);
    }

    .org_list > ul > li {
        width: calc(100%);
    }

    .org_member .work_list ul {
        height: auto;
        overflow-y: auto;
    }

    .wrong_contact .input_select {
        max-width: calc(50% - 5px);
    }
    .wrong_contact .input_select_last {
        max-width: calc(100% - 2px);
        margin-top: 10px;
    }
    .wrong_contact .input_approval {
        margin-left: 0;
    }
    .wrong_contact .input_approval .input_select {
        max-width: calc(100% - 2px);
    }
    .wrong_contact .input_phone2 {
        margin-left: 0;
    }
    .wrong_contact .input_busiperiod .input_text {
        width: calc(50% - 34px);
    }
    .wrong_contact .input_busitrip {
        margin-left: 0;
    }

    .wrong_cont_search .input_text {
        width: calc(100% - 128px);
    }

    /* 과제명 책임자 검색 결과 테이블 */
    .wsearch_table td:nth-of-type(1):before {
        content: "연구책임자";
    }
    .wsearch_table td:nth-of-type(2):before {
        content: "과자명";
    }
    .table.wsearch_table td:before {
        width: 28%;
    }
    .table.wsearch_table td {
        padding-left: 31%;
    }

    /* 과제일정 캘린더 테이블 */
    .assign_calender_table td:nth-of-type(1):before {
        content: "과제명";
    }
    .assign_calender_table td:nth-of-type(2):before {
        content: "내용";
    }
    .assign_calender_table td:nth-of-type(3):before {
        content: "일시";
    }
    .assign_calender_table td:nth-of-type(4):before {
        content: "장소";
    }
    .assign_calender_table td:nth-of-type(5):before {
        content: "대상";
    }
}

/* 화면 너비 0~600px */
@media (max-width: 600px) {
    .ic_slider {
        width: 100%;
    }
}

/* 화면 너비 0~480px */
@media (max-width: 480px) {
}

/* 화면 너비 0~320px */
@media (max-width: 320px) {
}

.main_keyvisual_wrap {
    position: relative;
    background: #ebebeb;
    margin-top: 100px;
}
.main_keyvisual_wrap > .inner {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.slider-controls {
    position: absolute;
    left: 12%;
    top: calc(50% + 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 220px;
}
.slider-controls .custom-prev {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.125rem;
}
.slider-controls .custom-next {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.125rem;
}
.slider-controls .slick-dots {
    position: initial;
}
.slider-controls .slick-dots.my-custom-dots {
    display: flex !important;
    justify-content: center;
}

.slider-controls .slick-dots.my-custom-dots li {
    display: none;
    width: auto;
    height: auto;
}
.slider-controls .slick-dots.my-custom-dots button {
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    padding: 10px 10px 0px;
    width: auto;
    height: auto;
}
.slider-controls .slick-dots.my-custom-dots button span {
    font-size: 2.5rem;
    margin-right: 10px;
}
.slider-controls .slick-dots.my-custom-dots button em {
    margin-left: 10px;
}
.slider-controls .slick-dots.my-custom-dots li.slick-active {
    display: block;
}
.slider-controls .slick-dots.my-custom-dots button::before {
    display: none;
}

.main_searchbar_wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to right, rgba(36, 51, 148, 0.97), rgba(60, 138, 153, 0.97));
}
.main_searchbar_wrap .inner {
    max-width: 1460px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main_searchbar_wrap .inner h3 em {
    display: block;
    color: #fff;
    opacity: 0.8;
    font-size: 1.125rem;
}
.main_searchbar_wrap .inner h3 span {
    display: block;
    color: #fff;
    font-size: 1.25rem;
}

.main_searchbar_wrap .search_box {
    max-width: 560px;
    width: 100%;
    position: relative;
}
.main_searchbar_wrap .search_box .form_input {
    background: none;
    color: #fff;
    border: none;
    width: 100%;
    border-bottom: 1px solid #fff;
    height: 50px;
}
.main_searchbar_wrap .search_box .form_input::placeholder {
    color: #fff;
}
.main_searchbar_wrap .search_box .m_search_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 26px;
    height: 26px;
    background: none;
    color: #fff;
    font-size: 1.25rem;
}

.main_searchbar_wrap .keyword {
    display: flex;
    align-items: center;
}
.main_searchbar_wrap .keyword h4 {
    color: #fff;
    font-size: 1.125rem;
    margin-right: 20px;
    word-break: keep-all;
}
.main_searchbar_wrap .keyword ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.main_searchbar_wrap .keyword ul li a {
    color: #fff;
    opacity: 0.8;
    font-size: 1rem;
    word-break: keep-all;
}

.main_slider .slick-slide {
    font-size: 0;
    line-height: 0;
}
.main_slider .slick-slide .pc {
    display: block;
}
.main_slider .slick-slide .mobile {
    display: none;
}

.main_slider.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.main_service_wrap {
    background: #f2f5fa;
    background-image: url("../img/BG_PATTERN01.png"), url("../img/BG_PATTERN02.png");
    background-repeat: no-repeat, no-repeat; /* 필요에 따라 반복 여부 설정 */
    background-position: left top, right bottom; /* 이미지 위치 조절 */
}
.main_service_wrap .inner {
    max-width: 1460px;
    margin: 0 auto;
    height: 100%;
    padding: 100px 0;
}
.main_service_wrap .inner .title {
    text-align: center;
    margin-bottom: 30px;
}
.main_service_wrap .inner .title span {
    font-size: 1.25rem;
    display: block;
    font-weight: 600;
}
.main_service_wrap .inner .title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ff4c01;
}
.main_service_wrap .inner .title h2 em {
    color: #295199;
}
.main_service_wrap .inner ul {
    display: flex;
    gap: 50px;
}
.main_service_wrap .inner ul li {
    flex: 1;
    overflow: hidden;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
}
.main_service_wrap .inner ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.main_service_box {
    position: relative;
}
.main_service_box .box_tit {
    background: #295199;
    color: #fff;
    position: absolute;
    left: -4px;
    top: 30px;
    padding: 5px 15px;
    border-radius: 4px;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
}
.main_service_box .img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    aspect-ratio: 456/303;
    background: #484b51;
}
.main_service_box .img img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}
.main_service_box .cont {
    background: #fff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    aspect-ratio: 456/200;
    padding: 20px 30px;
}
.main_service_box .cont .sub_desc {
    border-bottom: 1px dashed #b5b5b5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.main_service_box .cont .sub_desc .left .txt {
    font-size: 0.9375rem;
}
.main_service_box .cont .sub_desc .right .txt em {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    font-weight: 600;
}
.main_service_box .cont .sub_desc .right .txt span {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.125rem;
}
.main_service_box .cont .sub_desc .tit {
    font-size: 1.25rem;
    font-weight: 600;
    word-break: keep-all;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

.main_service_box .cont .dsec h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap; /* 한 줄로 표시 */
    overflow: hidden; /* 넘치는 내용 숨김 */
    text-overflow: ellipsis; /* 말줄임 표시 (… ) */
    width: 100%;
}
.main_service_box .cont .dsec p {
    display: block;
    font-size: 1rem;
    color: #4a4a4a;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

.main_board_wrap {
    background: #fff;
}
.main_board_wrap .inner {
    max-width: 1460px;
    margin: 0 auto;
    height: 100%;
    padding: 100px 0;
}
.main_board_wrap .inner .title {
    text-align: center;
    margin-bottom: 30px;
}
.main_board_wrap .inner .title span {
    font-size: 1.25rem;
    display: block;
    font-weight: 600;
}
.main_board_wrap .inner .title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ff4c01;
}
.main_board_wrap .inner .title h2 em {
    color: #295199;
}
.main_board_wrap .inner .cont {
    display: flex;
    gap: 60px;
}

.main_board {
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
    padding: 25px 30px;
    flex: 1;
    overflow: hidden;
}
.main_board .tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #d1d3d9;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.main_board .tit h3 {
    font-size: 1.375rem;
    font-weight: 600;
}
.main_board .tit .btn {
    font-size: 0.8125rem;
    background: #295199;
    border-radius: 2px;
    padding: 5px 10px;
}
.main_board:nth-child(2) .main_list .date {
    background: #3b9ca2;
}
.main_board .main_list {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px dashed #afafaf;
    padding-bottom: 10px;
}
.main_board .main_list .date {
    width: 100px;
    height: 100px;
    border-radius: 45%;
    background: #295199;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.main_board .main_list .date span {
    display: block;
    text-align: center;
    font-size: 2.8125rem;
    font-weight: 600;
    line-height: 1;
}
.main_board .main_list .date em {
    display: block;
    text-align: center;
    font-size: 0.8125rem;
}
.main_board .main_list .txt {
    flex: 1;
    overflow: hidden;
}
.main_board .main_list .txt span {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    white-space: nowrap; /* 한 줄로 표시 */
    overflow: hidden; /* 넘치는 내용 숨김 */
    text-overflow: ellipsis; /* 말줄임 표시 (… ) */
}
.main_board .main_list .txt em {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
    color: #4a4a4a;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.main_board ul {
}
.main_board ul li {
    border-bottom: 1px dashed #afafaf;
}
.main_board ul li:last-child {
    border-bottom: none;
}
.main_board ul li a {
    display: block;
    padding: 10px 0;
    white-space: nowrap; /* 한 줄로 표시 */
    overflow: hidden; /* 넘치는 내용 숨김 */
    text-overflow: ellipsis; /* 말줄임 표시 (… ) */
}

.main_quick_wrap {
    background-image: url(../img/img_mian_quick.png);
    background-size: cover;
}
.main_quick_wrap .inner {
    max-width: 1460px;
    margin: 0 auto;
    height: 100%;
    padding: 100px 0;
}
.main_quick_wrap .inner .title {
    margin-bottom: 10px;
    color: #bbe7fe;
    font-size: 1.25rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.main_quick_wrap .inner .title span {
    font-weight: 600;
    color: #fff;
}
.main_quick_wrap .inner .title::after {
    position: absolute;
    left: 157px;
    top: 50%;
    content: "";
    width: 100%;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
}

.main_quick_wrap .inner .cont ul {
    display: grid;
    gap: 28px;
    grid-template-columns: 2fr 2fr 2fr 1fr 1fr 2fr;
    grid-template-rows: 190px 190px;
}
.main_quick_wrap .inner .cont ul li {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.16);
    background-repeat: no-repeat;
    background-position: right bottom;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e4f0fb 100%);
}
.main_quick_wrap .inner .cont ul li:first-child {
    grid-row: 1 / span 2;
}
.main_quick_wrap .inner .cont ul li:nth-child(2) {
    grid-column: 2 / span 2;
}
.main_quick_wrap .inner .cont ul li:nth-child(3) {
    grid-column: 4 / span 2;
}
.main_quick_wrap .inner .cont ul li:nth-child(6) {
    grid-column: 3 / span 2;
}
.main_quick_wrap .inner .cont ul li:nth-child(7) {
    grid-column: 5 / span 2;
}

.main_quick_wrap .inner .cont ul li:after {
    font-family: "Font Awesome 6 pro";
    font-size: 7.5rem;
    font-weight: 300;
    position: absolute;
    right: -10px;
    bottom: -10px;
    color: #176299;
    opacity: 0.1;
    line-height: 1;
}
.main_quick_wrap .inner .cont ul li:first-child:after {
    content: "\f5fd";
}
.main_quick_wrap .inner .cont ul li:nth-child(2):after {
    content: "\f51c";
}
.main_quick_wrap .inner .cont ul li:nth-child(3):after {
    content: "\f873";
}
.main_quick_wrap .inner .cont ul li:nth-child(4):after {
    content: "\e0bb";
}
.main_quick_wrap .inner .cont ul li:nth-child(5):after {
    content: "\e45f";
}
.main_quick_wrap .inner .cont ul li:nth-child(6):after {
    content: "\e4f3";
}
.main_quick_wrap .inner .cont ul li:nth-child(7):after {
    content: "\e5d2";
}

.main_quick_wrap .inner .cont ul li a {
    display: block;
    height: calc(100% - 50px);
    padding: 25px 30px;
    position: relative;
}
.main_quick_wrap .inner .cont ul li a h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #295199;
    margin-bottom: 6px;
}
.main_quick_wrap .inner .cont ul li a p {
    font-size: 0.875rem;
    line-height: 1.4;
    color: #616161;
}
.main_quick_wrap .inner .cont ul li a .ic_arrow {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px dashed #b4c1d8;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.main_quick_wrap .inner .cont ul li a .ic_arrow i {
    color: #295199;
    font-size: 1.25rem;
}

.footer_new {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1460px;
    margin: 0 auto;
    padding: 30px 0;
}
.footer_new .logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer_new .logo .txt {
    color: #c6c6c6;
}
.footer_new .logo .txt span {
    display: block;
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.2;
}
.footer_new .logo .txt em {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
}
.footer_new address {
    flex: 1;
    background: none !important;
    text-align: left !important;
}
.footer_new address ul.link {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.footer_new address ul.link li {
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
}
.footer_new address ul.link li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #707070;
}
.footer_new address ul.link li:last-child:after {
    display: none;
}
.footer_new address ul.link li a {
    display: inline-block;
}
.footer_new address .add {
    color: #c6c6c6;
}
.footer_new address .copy {
    color: #c6c6c6;
}

/* mediaquery ============================================================================================================================*/
/* =======================================================================================================================================*/
/* =======================================================================================================================================*/
/* =======================================================================================================================================*/
/* =======================================================================================================================================*/

/* 화면 너비 0~1300px */
@media (max-width: 1300px) {
    .main_searchbar_wrap {
        height: auto;
        position: inherit;
    }
    .main_searchbar_wrap .inner {
        display: block;
        padding: 15px 0;
    }
    .main_searchbar_wrap .inner h3 {
        text-align: center;
    }
    .main_searchbar_wrap .inner h3 em {
        display: inline-block;
    }
    .main_searchbar_wrap .inner h3 span {
        display: inline-block;
    }
    .main_searchbar_wrap .search_box {
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .main_searchbar_wrap .keyword {
        justify-content: center;
    }
    .main_service_wrap .inner ul {
        gap: 30px;
    }
    .main_board_wrap .inner .cont {
        gap: 1.25rem;
    }
}

/* 화면 너비 0~768px */
@media (max-width: 768px) {
    .main_keyvisual_wrap {
        margin-top: 60px;
    }
    .main_slider .slick-slide .pc {
        display: none;
    }
    .main_slider .slick-slide .mobile {
        display: block;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 14px;
    }
    body,
    input,
    textarea,
    select,
    button,
    table {
        font-size: 14px;
    }
    html,
    body,
    div,
    ul,
    li,
    dl,
    dd,
    dt,
    ol,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    input,
    fieldset,
    legend,
    p,
    select,
    table,
    th,
    td,
    tr,
    textarea,
    button,
    form,
    figure,
    figcaption {
        font-size: 14px;
    }
    .main_service_wrap .inner {
        padding: 1rem;
    }
    .main_service_wrap .inner .title span {
        font-size: 1rem;
        word-break: keep-all;
    }
    .main_service_wrap .inner .title h2 {
        font-size: 1.3rem;
        word-break: keep-all;
    }
    .main_service_wrap .inner ul {
        display: block;
    }
    .main_service_wrap .inner ul li {
        margin-bottom: 15px;
    }
    .main_service_box {
        display: flex;
    }
    .main_searchbar_wrap .inner h3 em {
        font-size: 1rem;
    }
    .main_searchbar_wrap .inner h3 span {
        font-size: 1rem;
    }
    .main_searchbar_wrap .keyword h4 {
        font-size: 1rem;
    }
    .main_searchbar_wrap .inner {
        padding-left: 15px;
        padding-right: 15px;
    }
    .main_searchbar_wrap .keyword ul {
        flex-wrap: wrap;
    }
    .main_service_box .box_tit {
        font-size: 1rem;
        padding: 2px 5px;
        top: -5px;
    }
    .main_service_box .cont {
        padding: 5px 10px;
    }
    .main_service_box .cont .sub_desc .right .txt em {
        font-size: 1rem;
    }
    .main_service_box .cont .sub_desc .right .txt span {
        font-size: 1rem;
    }
    .main_service_box .cont .sub_desc {
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .main_service_box .img {
        border-radius: 4px 0 0 4px;
        aspect-ratio: 1/1;
        width: 35%;
    }
    .main_service_box .cont {
        flex: 1;
        aspect-ratio: auto;
    }
    .main_service_box .cont .dsec h5 {
        font-size: 1rem;
        margin-bottom: 0;
    }
    .main_service_box .cont .dsec p {
        font-size: 0.9rem;
    }
    .main_service_wrap .inner ul li {
        overflow: visible;
    }
    .main_service_wrap .inner .title {
        margin-bottom: 10px;
    }

    .main_board_wrap .inner {
        padding: 1rem;
    }
    .main_board_wrap .inner .title {
        margin-bottom: 10px;
    }
    .main_board_wrap .inner .title span {
        font-size: 1rem;
    }
    .main_board_wrap .inner .title h2 {
        font-size: 1.3rem;
    }
    .main_board_wrap .inner .cont {
        display: block;
    }
    .main_board {
        padding: 15px;
        margin-bottom: 15px;
    }
    .main_board .main_list .date {
        width: 60px;
        height: 60px;
    }
    .main_board .main_list .date span {
        font-size: 2rem;
    }
    .main_quick_wrap .inner {
        padding: 1rem;
    }
    .main_quick_wrap .inner .cont ul {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 190px 190px 190px 190px;
        gap: 10px;
    }
    .main_quick_wrap .inner .cont ul li a {
        padding: 15px;
        height: calc(100% - 30px);
    }
    .main_quick_wrap .inner .cont ul li:first-child {
        grid-row: auto;
    }
    .main_quick_wrap .inner .cont ul li:nth-child(2) {
        grid-column: auto;
    }
    .main_quick_wrap .inner .cont ul li:nth-child(3) {
        grid-column: auto;
    }
    .main_quick_wrap .inner .cont ul li:nth-child(6) {
        grid-column: auto;
    }
    .main_quick_wrap .inner .cont ul li:nth-child(7) {
        grid-column: auto;
    }
    .main_quick_wrap .inner .cont ul li a h4 {
        word-break: keep-all;
        line-height: 1.4;
        font-size: 1.2rem;
    }
    .main_quick_wrap .inner .cont ul li a .ic_arrow {
        left: 15px;
        bottom: 15px;
    }
    .footer_new {
        display: block;
    }
    .footer_new .logo {
        justify-content: center;
    }
    .footer_new .logo .img {
        width: 90px;
    }
    .footer_new address ul.link {
        justify-content: center;
    }
    .footer_new address .add {
        text-align: center;
    }
    .footer_new address .copy {
        text-align: center;
    }
}

/* 화면 너비 0~480px */
@media (max-width: 480px) {
    .main_searchbar_wrap .keyword {
        display: block;
        text-align: center;
    }
    .main_searchbar_wrap .keyword ul {
        justify-content: center;
    }
}
