/* CSS Document */
@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&display=swap");
@import url("https://fonts.googleapis.com/css?family=Nanum+Gothic:400,700,800");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@import url('https://cdn.rawgit.com/innks/NanumSquareRound/master/nanumsquareround.min.css');


/******************
	etc
******************/
/*	ime-mode		*/
.ime-d,
.TEL,
.HP,
.EMAIL,
.Number {
    ime-mode: disabled;
}

.ime-a {
    ime-mode: active;
}

/*	button	*/
button {
    cursor: pointer;
}

a {
    color: #0c7697;
}

a:hover,
a:active,
a:focus {
    color: #0c7697;
    outline: none;
    text-decoration: none;
}

p {
    margin-bottom: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin: 0 0 30px 0;
}

hr {
    border-top: 1px solid #ddd;
}

::-webkit-selection {
    color: #fff;
    background: #0c7697;
}

::-moz-selection {
    color: #fff;
    background: #0c7697;
}

::selection {
    color: #fff;
    background: #0c7697;
}

/*
::-webkit-scrollbar { display:none; }
*/
/*	animate	*/
a {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

table caption {
    position: absolute;
    left: -200%;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.input-inline-block {
    display: inline-block;
}

/******************
	bootstrap 호환
******************/
.form-horizontal {
    margin: 30px auto;
}

.form-inline {
    margin: 30px auto;
}

.page-header {
    margin-top: 0;
    padding-top: 40px;
}

html {
    height: 100%;
}


/******************
	font
******************/
body {
    color: #000;
    font-family: "Noto Sans KR", "Nanum Gothic", sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "NanumSquareRound", "Noto Sans KR", "Nanum Gothic", sans-serif;
    font-weight: 900;
}

.font_bold {
    font-weight: bold;
}

.text-lg {
    font-size: 12pt;
}

.text-md {
    font-size: 10pt;
}

.text-sm {
    font-size: 9pt;
}

@media (min-width: 768px) {
    .text-lg {
        font-size: 18pt;
    }

    .text-md {
        font-size: 14pt;
    }

    .text-sm {
        font-size: 9pt;
    }
}

@media (min-width: 992px) {
    .text-lg {
        font-size: 18pt;
    }

    .text-md {
        font-size: 14pt;
    }

    .text-sm {
        font-size: 9pt;
    }
}

@media (min-width: 1200px) {
    .text-lg {
        font-size: 18pt;
    }

    .text-md {
        font-size: 14pt;
    }

    .text-sm {
        font-size: 9pt;
    }
}

/******************
	font color
******************/

.page_content .page_body *,
.page_content .list_dl {
    color: #818181;
}



/******************
	z-index
******************/
#header {
    z-index: 4000;
}

#topSubContainer {
    z-index: 500;
}

#nav-toggle {
    z-index: 8000;
}

#loginWrapper {
    z-index: 9990;
}

#Content {
    z-index: 1;
}

footer {
    z-index: 1000;
}

.modal {
    z-index: 9995;
}

.popover {
    z-index: 9998;
}

/******************
	layout
******************/
#wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
}

/*	header	*/
#header {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-bottom: solid 1px #2b90a3;
}

/*	sticky_header	*/
/*  2021-04-29 상시 고정으로 변경 */
#header.sticky_header {
    position: fixed;
    background: #fff;
}

#content {
    margin-top: 80px !important;
}

#header.sticky_header {
    margin-bottom: 0px;
}

#header.sticky_header .navbar {
    border-bottom: none;
}

.sticky_header.sticky {
    position: fixed;
    color: #000;
    background-color: #fff;
    transform: translateY(0px);
    top: -100px;
    left: 0;
    right: 0;
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
}

#header.sticky_header .navbar-default {
    color: #fff;
    background-color: transparent;
}

.sticky_header.sticky .navbar-default {
    color: #000;
    background-color: #fff;
}

.sticky_header.sticky .navbar-collapse {
    background-color: rgba(255, 255, 255, 1);
}

/*	header nav	*/
#header .navbar {
    margin: 0;
    min-height: 80px;
    border-bottom: solid 3px;
    position: relative;
}

header .nav-header {
    min-height: 80px;
}

header .nav-header .navbar-toggle {
    margin-top: 18px;
}

header .nav-header .navbar-toggle {
    background-color: #fff;
}

header .navbar .navbar-brand {
    margin: 14px 10px 0 0;
    padding: 0;
}

/*	header nav logo	*/
header .navbar .navbar-brand .topNavlogo {
    height: 48px;
}

/*
header .navbar .navbar-brand .topNavlogo { display: none; }
header.sticky .navbar .navbar-brand .topNavlogo {display: block; }
.black header .navbar .navbar-brand .topNavlogo {display: block; }
.black header.sticky .navbar .navbar-brand .topNavlogo {display: block; }
*/

header .navbar-fixed-top .navbar-collapse {
    max-height: none;
    width: 100vw;
    height: 100vh;
}

header .navbar-fixed-top .navbar-collapse {
    background-color: rgba(255, 255, 255, 1);
}

#navbar-collapse-header {
    overflow-y: scroll;
    height: calc(100vh - 80px);
}

#navbar-collapse-header .navbar-nav {
    margin: 0;
}

#navbar-collapse-header .navbar-nav li a {
    color: #000;
    position: relative;
    text-align: center;
}

#navbar-collapse-header .navbar-nav li a .caretm {
    transform: rotate(90deg);
    transition: all ease 0.5s;
    color: #2b90a3;
    position: absolute;
    right: 0;
    top: 7px;
}

#navbar-collapse-header .navbar-nav li.open a .caretm {
    transform: rotate(0deg);
    font-size: 20px;
}

header .navbar-fixed-top .navbar-collapse .navbar-nav {}

header .navbar .navbar-nav>li {
    margin-top: 7px;
    padding-bottom: 7px;
    width: auto;
    border-bottom: 1px solid #e2e4e8;
}

header .navbar .navbar-nav>li.open .dropdown-menu {
    background: #fff;
    border-top: 1px solid #ececec;
    height: auto;
}

header .navbar .navbar-nav>li .dropdown-menu {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    height: 0%;
}

header .navbar .navbar-nav>li a {
    font-size: 16px;
    cursor: pointer;
    line-height: 1.3666;
    text-transform: uppercase;
    padding-top: 8px;
    padding-bottom: 8px;
}

header .navbar .navbar-nav>li a .caretm {
    display: inline-block;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
}

#header.sticky_header.sticky .navbar-default .navbar-nav>li>a {
    color: #000;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    color: #00c0cb;
    background-color: transparent;
}

header .navbar .navbar-right>ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header .navbar .navbar-right>ul>li>a {
    color: #fff;
}

header .navbar .navbar-right>ul>li>a:hover {
    color: #00c0cb;
}

header .navbar .navbar-right .btn {
    padding: 6px 16px;
}

header .navbar .navbar-right .btn-black {
    color: #000;
    background-color: transparent;
    border-color: #000;
}

header .navbar .navbar-right .btn-black:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

#header.sticky_header.sticky .navbar-right>ul>li>a {
    color: #000;
}

#header .navbar-right li.sns {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: none;
}

#header .navbar-right .sns_menu li {
    display: inline-block;
    width: 49%;
    text-align: right;
    padding: 0 5px;
}

#header .navbar-right .sns_menu li+li {
    text-align: left;
}

#header .navbar-right li .sns_menu img {
    width: 50px;
    height: auto;

}




#header.nav-up {
    top: -77px;
}

#header .scroll-progress {
    border-top: solid 3px #1e6f80;
    position: absolute;
    bottom: -3px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

header .navbar .navbar-nav>li.TopMenuNotice {
    display: block;
}

header .navbar .navbar-nav>li.cusMenu {
    display: block;
}

/*	header nav text color black */
.black .navbar-default .navbar-nav>li>a {
    color: #000 !important;
}

@media (min-width: 768px) {
    header .nav-header {
        min-height: 0;
    }

    header .navbar-fixed-top .navbar-collapse {
        background-color: transparent;
    }

    header .navbar-fixed-top .navbar-collapse {
        width: 100%;
    }

    header .navbar-fixed-top .navbar-collapse .navbar-nav {
        height: auto;
    }

    #navbar-collapse-header .navbar-nav>li>a {
        font-weight: bold;
        font-size: 9pt;
        text-align: center;
    }

    header .navbar .navbar-nav>li.TopMenuNotice {
        display: none;
    }

    header .navbar .navbar-nav>li.cusMenu {
        display: none;
    }

    header .navbar .navbar-nav>li {
        margin-top: 21px;
        width: auto;
        border-bottom: none;
    }

    header .navbar .navbar-nav>li a {
        font-size: 9pt;
        cursor: pointer;
        line-height: 1.3666;
        text-transform: uppercase;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    header .navbar .navbar-nav>li a .caretm {
        display: none;
    }

    header.new .navbar .navbar-nav>li .dropdown-menu {
        height: 0px;
        display: none;
    }

    #header .navbar-right li.sns {
        width: 70px;
        margin-top: 25px;
        margin-bottom: 0;
    }

    #header .navbar-right .sns_menu li {
        display: inline;
        width: 30px;
        padding: 0;
    }

    #header .navbar-right li .sns_menu img {
        width: 30px;
        height: auto;
    }

}

@media (min-width: 992px) {
    header .navbar .navbar-nav>li {
        margin-top: 21px;
        width: 120px;
    }

    #navbar-collapse-header .navbar-nav>li>a {
        font-weight: bold;
        font-size: 11pt;
    }

    header .navbar .navbar-nav>li a {
        font-size: 11pt;
    }

    header .navbar .navbar-nav>li.TopMenuNotice {
        display: block;
    }

    header .navbar .navbar-nav>li.cusMenu {
        display: none;
    }
}

@media (min-width: 1200px) {
    header .navbar .navbar-nav>li {
        margin-top: 21px;
        width: 150px;
    }

    #navbar-collapse-header .navbar-nav>li>a {
        font-weight: bold;
        font-size: 13pt;
    }

    header .navbar .navbar-nav>li a {
        font-size: 13pt;
    }

    header .navbar .navbar-nav>li.TopMenuNotice {
        display: block;
    }

    header .navbar .navbar-nav>li.cusMenu {
        display: block;
    }
}

/*
    new sub nav

*/
#topSubContainer {
    display: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

@media (min-width: 768px) {
    #topSubContainer {
        display: block;
        position: fixed;
        top: -100vh;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding-top: 15px;
        border: solid 1px #e3e3e3;
        box-shadow: 0 6px 12px rgb(0 0 0 / 10%);
        padding-left: 0;
        padding-right: 0;
        border-radius: 0 0 20px 20px;
    }

    body.openSub #topSubContainer {
        top: 70px;
    }

    #topSubNav {
        padding: 10px 0 0 0;
    }

    #topSubNav #topSubMenus {
        margin: 0;
        padding: 0;
        display: table;
    }

    #topSubNav #topSubMenus>li {
        display: table-cell;
    }

    #topSubNav #topSubMenus>li.tsimg {
        width: 175px;
        background: url("/images/nav/navbg2.png") bottom left;
        background-size: cover;
        background-repeat: no-repeat;
    }

    #topSubNav #topSubMenus>li.tsmenu {
        width: 87px;
        padding-bottom: 15px;
    }

    #topSubNav #topSubMenus>li.tsmenu.loginm {
        width: 90px;
        padding-left: 30px;
    }

    #topSubNav #topSubMenus>li>ul {
        margin: 0;
        padding: 0 5px;
    }

    #topSubNav #topSubMenus>li>ul>li {
        padding: 5px 0;
    }

    #topSubNav #topSubMenus>li>ul>li+li {
        border-top: dotted 1px #e3e3e3;
    }

    #topSubNav #topSubMenus>li>ul>li>a {
        display: block;
        text-align: center;
        font-size: 8pt;
        background-color: #ffffff;
        padding: 5px 0;
        color: #1b798a;
    }
    #topSubNav #topSubMenus>li>ul>li>a:hover {
        background-color: #1b798a;
        color: #ffffff;
    }

}

@media (min-width: 992px) {
    #topSubNav #topSubMenus>li.tsimg {
        width: 175px;
    }

    #topSubNav #topSubMenus>li.tsmenu {
        width: 120px;
    }

    #topSubNav #topSubMenus>li.tsmenu.loginm {
        width: 125px;
        padding-left: 0px;
    }

    #topSubNav #topSubMenus>li>ul>li>a {
        font-size: 9pt;
    }
    
}


@media (min-width: 1200px) {
    #topSubNav #topSubMenus>li.tsimg {
        width: 175px;
    }

    #topSubNav #topSubMenus>li.tsmenu {
        width: 150px;
    }

    #topSubNav #topSubMenus>li.tsmenu.loginm {
        width: 200px;
        padding-left: 0px;
    }

    #topSubNav #topSubMenus>li>ul>li>a {
        font-size: 11pt;
    }

}

/*
	sticky header submenu
    2021-04-17
*/

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    text-decoration: none;
    background-color: #c8e3fa;
    outline: 0;
}

@media (min-width: 768px) {
    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active {
        display: block;
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        width: 100%;
        height: 45px;
        margin: 0 auto;
        text-align: center;
        z-index: auto;
    }

    body.openSub #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active {
        display: none;
    }

    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu>li {
        display: inline-block;
        width: 140px;
    }

    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active a {
        font-weight: normal;
        font-size: 8pt;
        color: #1b798a;
    }

    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active .active a {
        background-color: #1b798a;
        color: #ffffff;
    }



}

@media (min-width: 992px) {
    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu>li {
        display: inline-block;
        width: 160px;
    }
    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active {
        height: 48px;
    }
    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active2 {
        width: 970px;
    }

    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active a {
        font-size: 9pt;
    }


}

@media (min-width: 1200px) {

    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu>li {
        display: inline-block;
        width: 200px;
    }
    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active {
        height: 50px;
    }
    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active a {
        font-size: 11pt;
    }
    #header.sticky #navbar-collapse-header>.navbar-nav .dropdown-menu.active2 {
        width: 1170px;
    }
}

/*	Content	*/
#content {
    width: 100%;
    min-height: 400px;
    position: relative;
    margin: 0;
}

/*
#Content { -webkit-transition:0.5s; -o-transition:0.5s; transition:0.5s; }
*/

/*	footer	*/
#marquee {
    display: none;
}

@media (min-width: 768px) {
    #marquee {
        display: block;
    }

    #marquee {
        border-top: solid 1px #e3e3e3;
        margin: 0;
        padding: 6px 0;
        background-color: #f9f7f7;
    }

    #marquee .marquee {
        height: 52px;
        width: 100%;
        overflow: hidden;
        position: relative;
        margin: 0 -15px;
    }

    #marquee .marquee ul {
        margin: 0;
        padding: 0;
        list-style: none;
        position: absolute;
        top: 0;
        left: 0;
    }

    #marquee .marquee ul li {
        display: table-cell;
        padding: 5px;
        margin: 0;
        width: 180px;
        height: 52px;
        overflow: hidden;
    }

    #marquee .marquee ul li a {
        display: block;
        height: 100%;
        width: 100%;
        cursor: pointer;
        text-align: center;
        padding: 5px;
        border: 1px solid #e3e3e3;
        border-radius: 5px;
        vertical-align: middle;
        background-color: #FFF;
    }

    #marquee .marquee ul li a img {
        max-width: 100%;
        max-height: 100%;
        width: auto !important;
        height: auto;
    }

    #footerMarqueeControles {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        height: 52px;
        width: 125px;
        background-color: #f9f7f7;
    }

    #footerMarqueeControles .fmc_box {
        padding: 10px 0px;
        text-align: right;
    }

    #footerMarqueeControles .fmc_box a {
        display: inline-block;
        margin: 2px 0 0 3px;
        border: 1px solid #e3e3e3;
        padding: 4px;
        background-color: #fff;
        text-align: center;
        width: 30px;
        height: 30px;
        font-size: 14px;
        overflow: hidden;
        cursor: pointer;
    }

    #footerMarqueeControles .fmc_box a.pause i.fa-pause {
        display: none;
    }

    #footerMarqueeControles .fmc_box a.play i.fa-play {
        display: none;
    }

    #footerMarqueeControles .fmc_box a i {
        transform: rotate(180deg);
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

footer {
    display: block;
    width: 100%;
    padding: 20px 0 30px 0;
    background-color: #1f1f1f;
    position: relative;
    color: #ebfbff;
    font-size: 9pt;
}

footer a {
    color: #fff;
}

footer .container {
    position: relative;
}

footer #footer_logo {
    display: none;
}

footer #footer {
    padding: 0;
}

footer #footer dl {
    display: table;
    margin-bottom: 8px;
}

footer #footer dl dt,
footer #footer dl dd {
    display: table-cell;
}

footer #footer dl dt {
    padding-right: 8px;
}



footer #footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer #footer ul li {
    display: inline-block;
}

footer #footer_nav {
    margin-bottom: 15px;
    text-align: left;
}

footer #footer_nav li {
    width: 49%;
}

footer #footer_nav a {
    display: block;
    padding: 4px 20px 4px 0;
    font-size: 1.2em;
}

footer #footer .footerinfo {
    font-size: 9pt;
}

footer #footer .footerinfo p {
    margin-bottom: 8px;
    font-size: 9pt;
    line-height: 1.6em;
    color: #c4c4c4;
}

footer #footer small {
    margin: 8px 0;
}

@media (min-width: 768px) {
    footer #footer_logo {
        position: absolute;
        left: 15px;
        top: 7px;
        display: block;
        width: 150px;
    }

    footer #footer {
        padding: 7px 0 0 150px;
    }

    footer #footer_nav {
        text-align: left;
    }

    footer #footer_nav li {
        width: auto;
    }

    footer #footer .footer_sns {
        text-align: right;
    }
}

@media (min-width: 992px) {
    footer #footer_logo {
        position: absolute;
        left: 15px;
        top: 7px;
        display: block;
        width: 150px;
    }

    footer #footer {
        padding: 7px 0 0 150px;
    }

    footer #footer_nav {
        text-align: left;
    }

    footer #footer_nav li {
        width: auto;
    }

    footer #footer .footer_sns {
        text-align: right;
    }

}

@media (min-width: 1200px) {
    footer #footer_logo {
        position: absolute;
        left: 15px;
        top: 7px;
        display: block;
        width: 150px;
    }

    footer #footer {
        padding: 7px 0 0 150px;
    }

    footer #footer_nav {
        text-align: right;
    }

    footer #footer_nav li {
        width: auto;
    }

    footer #footer .footer_sns {
        text-align: right;
    }
}

/**********************************
	공통 세션
**********************************/
.section,
.section-fluid,
.section-emphasis {
    padding-top: 50px;
    padding-bottom: 70px;
    position: relative;
}

.section {
    background-color: #fff;
}

.section-fluid {
    background-color: #f4f5f7;
}

.section-fluid hr {
    border-top: 1px solid #ccc;
}

.section-emphasis {
    background-color: #242d37;
    color: #fff;
}

.section-emphasis hr {
    border-top: 1px solid #fff;
}

.section h1 {
    margin-bottom: 50px;
}

.title-section {
    padding-top: 70px;
    padding-bottom: 90px;
}

.title-section h2 {}

/**********************************
	메인
**********************************/
/*	Content	*/
.main #Content section {
    padding-top: 70px;
    padding-bottom: 70px;
}

#Content .padding0 {
    padding: 0;
}

.main .main-content {
    padding: 0;
}

.main .main-content-top {
    background-color: #f6f9ff;
}

/*  메인 베너   */

.main .main-content-top #Main_Banner {
    width: 100vw;
    margin: 0 -15px;
    overflow: hidden;
    height: 300px;
}

.main .main-content-top #Main_Banner ul {
    margin: 0;
    padding: 0;
    width: 200%;
    height: 100%;
    list-style: none;
    position: relative;
    overflow: hidden;
}

.main .main-content-top #Main_Banner ul li {
    display: inline-block;
    padding: 0;
    width: 50%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    -webkit-transition: 1.5s;
    -o-transition: 1.5s;
    transition: 1.5s;
}

.main .main-content-top #Main_Banner ul li .bn_box {
    position: absolute;
    top: 0;
    width: 200vw;
    left: -50vw;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

.main .main-content-top #Main_Banner ul li .bn_box img {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.main .main-content-top #Main_Banner ul li .bn_box a {
    position: absolute;
    top: 140px;
    left: -150px;
    display: block;
    width: 300px;
    height: 80px;
}

.main .main-content-top #Main_Banner #Main_Banner_Arrow {
    height: 0;
    position: relative;
    opacity: 0;
    -webkit-transition: 1.5s;
    -o-transition: 1.5s;
    transition: 1.5s;
}

.main .main-content-top #Main_Banner:hover #Main_Banner_Arrow {
    opacity: 0.5;
}

.main .main-content-top #Main_Banner #Main_Banner_Arrow a.right {
    top: -180px;
    position: absolute;
    cursor: pointer;
}

.main .main-content-top #Main_Banner #Main_Banner_Arrow a.left {
    left: 20px;
}

.main .main-content-top #Main_Banner #Main_Banner_Arrow a.right {
    right: 20px;
}

@media (min-width: 768px) {
    .main .main-content {
        padding: 50px 0;
    }

    .main .main-content-top #Main_Banner {
        width: 100%;
        margin: 0;
        overflow: hidden;
        height: 400px;
        margin-bottom: 20px;
    }

    .main .main-content-top #Main_Banner ul li .bn_box {
        width: 750px;
        left: 0;
    }

    .main .main-content-top #Main_Banner #Main_Banner_Arrow a.left,
    .main .main-content-top #Main_Banner #Main_Banner_Arrow a.right {
        top: -275px;
    }
}

@media (min-width: 992px) {
    .main .main-content-top #Main_Banner {
        height: 400px;
        margin-bottom: 0;
    }

    .main .main-content-top #Main_Banner ul li .bn_box {
        width: 635px;
    }

    .main .main-content-top #Main_Banner #Main_Banner_Arrow a.left,
    .main .main-content-top #Main_Banner #Main_Banner_Arrow a.right {
        top: -275px;
    }
}

@media (min-width: 1200px) {
    .main .main-content-top #Main_Banner {
        height: 400px;
    }

    .main .main-content-top #Main_Banner ul li .bn_box {
        width: 750px;
    }

    .main .main-content-top #Main_Banner #Main_Banner_Arrow a.left,
    .main .main-content-top #Main_Banner #Main_Banner_Arrow a.right {
        top: -275px;
    }
}

.main .main-content-top #main-notice {
    margin: 0 -15px;
    background-color: #ffffff;
    min-height: 200px;
    padding: 25px 15px;
    border: 1px solid #e3e3e3;
}

.main .main-content-top #main-notice .main-notice-title h4 {
    color: #2b90a3;
    font-weight: bold;
    padding: 0 5px 10px 5px;
    border-bottom: solid 1px #2b90a3;
    margin-bottom: 5px;
    position: relative;
}

.main .main-content-top #main-notice .main-notice-title h4 a {
    display: inline-block;
    float: right;
}

.main #main-notices {
    padding: 5px;
}

.main #main-notices ul {
    list-style-type: disc;
}

.main #main-notices ul li {
    padding: 2px 0;
    position: relative;
}

.main #main-notices ul li.notice_7,
.main #main-notices ul li.notice_6,
.main #main-notices ul li.notice_5,
.main #main-notices ul li.notice_4,
.main #main-notices ul li.notice_3 {
    display: none;
}

.main #main-notices a {
    color: #999999;
}

.main #main-notices>ul>li>a {
    color: #999999;
    font-weight: normal;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.main #main-notices>ul>li>span.writeDate {
    font-size: small;
    color: #616161;
    text-align: left;
    display: block;
    width: auto;

}

@media (min-width: 768px) {
    .main .main-content-top #main-notice {
        background-color: #ffffff;
        min-height: 200px;
        padding: 15px;
        margin: 0;
    }

    .main #main-notices ul li {
        padding: 5px 0;
        display: block;
    }

    .main .main-content-top #main-notice .main-notice-title h4 {
        color: #2b90a3;
        font-weight: bold;
        padding: 0 5px 15px 5px;
        border-bottom: solid 3px #2b90a3;
        margin-bottom: 15px;
        position: relative;
    }

    .main #main-notices>ul>li>a {
        padding-right: 80px;
    }

    .main #main-notices>ul>li>span.writeDate {
        position: absolute;
        right: 0;
    }
}

@media (min-width: 992px) {

    .main #main-notices ul li.notice_7,
    .main #main-notices ul li.notice_6,
    .main #main-notices ul li.notice_5,
    .main #main-notices ul li.notice_4,
    .main #main-notices ul li.notice_3 {
        display: block;
    }

    .main #main-notices>ul>li>a {
        padding-right: 0px;
    }

    .main #main-notices>ul>li>span.writeDate {
        display: none;
        position: absolute;
        right: 0;
    }
}

@media (min-width: 1200px) {
    .main #main-notices ul li {
        padding-bottom: 15px;
    }

    .main #main-notices>ul>li>a {
        padding-right: 0px;
    }

    .main #main-notices>ul>li>span.writeDate {
        display: block;
        position: absolute;
        left: 0;
        top: -13px;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
    }
}

/*주요 서비스*/
.main .main-content-services {
    background-color: #8dd5e3;
    border-top: 1px solid #2b90a3;
    border-bottom: 1px solid #2b90a3;
    padding: 5px 0;
}

.main .main-content-advertise {
    background-color: #ffffff;
    padding: 35px 0;
}

.main .main-content-news {
    background-color: #f6f9ff;
    padding: 35px 0;
}

.main .main-content-directions {
    background-color: #ffffff;
    padding: 35px 0;
}

.main .main-content .main-content-title-box {
    border-bottom: solid 1px #2b90a3;
    text-align: center;
    width: 100%;
    margin: 0 auto 15px auto;
}

.main .main-content .main-content-title-box h3 {
    color: #2b90a3;
    margin-bottom: 13px;
    font-size: 18px;
    text-align: left;
    position: relative;
}

.main .main-content.main-content-services .main-content-title-box {
    border-bottom: solid 3px #ffffff;
}

.main .main-content.main-content-services .main-content-title-box h3 {
    color: #ffffff;
    font-size: 20pt;
}

.main .main-content .main-content-title-box h3 a {
    position: absolute;
    right: 5px;
}

/*주요서비스*/
.main #main-service-list {
    margin: 15px -15px;
}

.main #main-service-list .service-box {
    height: auto;
    padding: 5px 0;
    margin: 0 -10px;
    text-align: center;
}

.main #main-service-list .xs-bar {
    border-left: 1px solid #ffffff8f;
    border-right: 1px solid #ffffff8f;
    ;
}

.main #main-service-list .service-box .service-icon img {
    margin-bottom: 5px;
    width: 100%;
}

.main #main-service-list .service-box .service-title {
    font-size: 9pt;
    color: #000
}

@media (min-width: 768px) {
    .main .main-content-top #main-notice {
        background-color: #ffffff;
        padding: 30px;
    }

    .main .main-content-services {
        padding: 15px 0;
    }

    .main .main-content .main-content-title-box {
        border-bottom: solid 3px #2b90a3;
        text-align: center;
        width: 20%;
        margin: 0 auto 50px auto;
    }

    .main .main-content .main-content-title-box h3 {
        color: #2b90a3;
        margin-bottom: 13px;
        text-align: center;
        position: static;
        font-size: 24px;
    }

    .main .main-content.main-content-services .main-content-title-box {
        border-bottom: solid 3px #ffffff;
    }

    .main .main-content.main-content-services .main-content-title-box h3 {
        color: #ffffff;
        font-size: 20pt;
    }

    .main .main-content .main-content-title-box h3 a {
        position: absolute;
        right: 5px;
    }

    .main #main-service-list li {
        width: 50%;
    }

    .main #main-service-list .service-box {
        padding: 20px;
        background-color: #ffffff;
        text-align: center;
        border-radius: 15px;
        margin: 15px 0;
        border: 1px solid #2b90a3;
    }

    .main #main-service-list .service-box .service-icon {
        padding-bottom: 5px;
    }

    .main #main-service-list .service-box .service-title {
        font-weight: bold;
        font-size: 9pt;
        color: #1b798a;
    }

    .main .main-content-advertise {
        background-color: #ffffff;
        padding: 50px 0;
    }
}

@media (min-width: 992px) {
    .main .main-content-top #main-notice {
        height: 400px;
    }

    .main #main-service-list li {
        width: 50%;
    }

    .main #main-service-list .service-box .service-title {
        font-weight: bold;
        font-size: 9pt;
        color: #1b798a;
    }
}

@media (min-width: 1200px) {
    .main #main-service-list li {
        width: 20%;
    }

    .main #main-service-list .service-box .service-title {
        font-weight: bold;
        font-size: 13pt;
        color: #1b798a;
    }

}

/* 구인공고 리스트 */
#emitem-list {
    display: block;
}

#emitem-list>div {
    padding-top: 4px;
    margin-bottom: 4px;
    border-bottom: 1px solid #f5f5f5;
}

#emitem-list .emitem-box {
    text-align: left;
    margin: 0 -15px 10px -15px;
    position: relative;
    padding-left: 40%;
    font-size: 11pt;
    height: 60px;
}

#emitem-list .emitem-box>a {
    display: block;
    position: absolute;
    left: 0;
    width: 30%;
    height: 60px;
    overflow: hidden;
    border: solid 1px #e3e3e3;
    padding: 0px;
}

#emitem-list .emitem-box .emitem-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

#emitem-list .emitem-box .emitem-img .IsComplet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
    color: #ffffffbd;
    font-size: 30px;
    font-weight: 700;
    line-height: 300%;
}

#emitem-list .emitem-box .emitem-img img {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    margin: auto;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

#emitem-list .emitem-box:hover .emitem-img img {
    width: 110%;
}

#emitem-list .emitem-box .emitem-title {
    padding: 4px 0;
    font-weight: bold;
    max-height: 41px;
    overflow: hidden;
    white-space: nowrap;
}

#emitem-list .emitem-box .emitem-text {
    padding: 0px;
    font-size: 0.9em;
    color: #313131;
    max-height: 45px;
    overflow: hidden;
    white-space: nowrap;
}

.employ .searchBox {
    height: 40px;
    border: solid 3px #1e6f80;
    border-radius: 20px;
    padding: 2px 15px;
    position: relative;
    margin-bottom: 15px;
}

.employ .searchBox #queryForm {
    width: 100%;
}

.employ .searchBox #queryForm .search-field {
    width: 100%;
    padding-right: 40px;
    border: none;
    font-size: 9pt;
}

.employ .searchBox #queryForm .search-field:hover,
.employ .searchBox #queryForm .search-field:focus,
.employ .searchBox #queryForm .search-field:active {
    border: none;
    outline: none;
    text-decoration: none;
}

.employ .searchBox #queryForm #bt_getList {
    position: absolute;
    top: 5px;
    right: 10px;
    border: none;
    background: none;
}

.employ .employ_button {
    text-align: center;
    margin: 5px 0;
}


@media (min-width: 768px) {
    .employ .searchBox #queryForm .search-field {
        font-size: 10pt;
    }

    .employ .employ_button {
        text-align: right;
        margin: 5px 0;
    }

    #emitem-list {
        display: block;
    }

    #emitem-list>div {
        padding-top: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

    #emitem-list .emitem-box {
        text-align: center;
        cursor: pointer;
        font-size: 11pt;
        padding-left: 0;
        margin: 0 0 40px 0;
        height: auto;
    }

    #emitem-list .emitem-box>a {
        display: block;
        position: relative;
        width: 100%;
        height: 160px;
        overflow: hidden;
        border: solid 1px #e3e3e3;
        padding: 5px;
    }

    #emitem-list .emitem-box .emitem-img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        -webkit-transform: translate(50%, 50%);
        -ms-transform: translate(50%, 50%);
        transform: translate(50%, 50%);
    }

    #emitem-list .emitem-box .emitem-img img {
        position: absolute;
        top: 0;
        left: 0;
        height: auto;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        margin: auto;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
    }

    #emitem-list .emitem-box:hover .emitem-img img {
        width: 110%;
    }

    #emitem-list .emitem-box .emitem-title {
        padding: 8px 0;
        font-weight: bold;
        max-height: 41px;
        overflow: hidden;
        white-space: nowrap;
    }

    #emitem-list .emitem-box .emitem-text {
        padding: 0 5px;
        font-size: 0.9em;
        color: #313131;
        max-height: 45px;
        overflow: hidden;
        white-space: nowrap;
    }
}

/* 상세 이전 다음 **/
.detail_page .page_nav {
    margin: 25px 0;
    border-top: solid 1px #e3e3e3;
    padding-top: 25px;
}

.detail_page .page_nav a {
    padding: 7px;
    font-size: 10pt;
    border: solid 1px #e3e3e3;
    background-color: #f1f1f1;
    border-radius: 5px;
    display: block;
    min-width: 80px;
}

@media (min-width: 768px) {
    .detail_page .page_nav a {
        padding: 10px 15px;
        font-size: 14pt;
        display: inline-block;
    }

}

/* 상세 첨부파일 **/
.detail_page #attachedFiles {
    border: solid 1px #e3e3e3;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 7px 15px;
}

.detail_page #attachedFiles li {
    display: inline-block;
    padding: 7px 35px 7px 7px;
}

.detail_page #attachedFiles li a i {
    color: #01aee8;

}

/* 센터뉴스 */
.main #newsletters {
    display: block;
}

.main #newsletters ul {
    list-style: none;
}

.main #newsletters ul li {
    width: 50%;
    display: table-cell;
    vertical-align: top;
    margin: 0;
    padding: 5px;
}

.main #newsletters ul li .news-box {
    display: block;
    width: 100%;
    overflow: hidden;
}

.main #newsletters ul li .news-box .news-title-img {
    background-color: #ffffff;
    border: solid 1px #e3e3e3;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 80px;
}

.main #newsletters ul li .news-box .news-title-img img {
    width: 100%;
    margin: auto;
}

.main #newsletters ul li .news-box .news-title {
    padding: 5px 5px 0 5px;
    color: #525252;
    font-weight: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    text-align: left;
    font-size: 11pt;
    height: 55px;
}

.main #newsletters ul li .news-box .news-date {
    padding: 0 5px 5px 5px;
    color: #616161;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    text-align: left;
    font-size: 10pt;
}


@media (min-width: 768px) {
    .main #newsletters ul li {
        width: 25%;
        display: inline-block;
        margin: 0;
        padding: 5px;
    }

    .main #newsletters ul li .news-box {
        display: block;
        width: 100%;
        overflow: hidden;
        padding: 15px;
    }

    .main #newsletters ul li .news-box .news-title-img {
        background-color: #ffffff;
        border: solid 1px #e3e3e3;
        margin: 0;
        overflow: hidden;
        height: 120px;
        width: 100%;
    }

    .main #newsletters ul li .news-box .news-title-img img {
        width: 100%;
        margin: auto;
    }

    .main #newsletters ul li .news-box .news-title {
        padding: 5px 5px 0 5px;
        color: #525252;
        font-weight: normal;
        display: inline-block;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        width: 100%;
        height: auto;
    }
}

/**********************************
	오시는길
**********************************/
#main-map {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

#main-map img {
    padding: 0;
}

.waytitle {
    text-align: center;
}

.waytitle h2 {
    font-size: 11pt;
}

.waytitle p {
    font-size: 8pt;
}

.way {
    text-align: center;
    margin: 0;
}

.way p {
    text-align: center;
    font-size: 10pt;
}

.way>div {
    border-top: 1px dotted #0080c330;
    padding-top: 20px;
    padding-bottom: 20px;
}

.way h4 {
    margin-bottom: 10px;
}

.way h4>i {
    font-size: 60px;
    color: #0080c3;
}

#contact {
    background-color: #f4f5f7;
    padding: 45px 0;
    color: #4b525d;
}

#contact .row>div {
    padding: 10px 0;
}

#contact h5,
#contact p {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 0;
}

#contact h5 {
    width: 40%;
    text-align: right;
    margin-right: 20px;
}

/**
*   오시는길
**/
.ontheway {
    min-height: 20px;
    padding: 0;
    margin-bottom: 20px;
    background-color: #dbf3ff;
    /*
    border: 0px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%);
    */
}

.ontheway h4 {
    font-size: 12pt;
    background-color: #93d8f7;
    margin: 0px !important;
    padding: 15px 25px;
    color: #030000;
}

.ontheway h4 i {
    margin-right: 8px;
    color: #55595C;
}

.ontheway p {
    font-size: 10pt;
    padding: 14px 25px;
    margin-bottom: 0;
}

.ontheway p+p {
    padding-top: 0px;
}

.ontheway p strong {
    display: block;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .way h4 {
        margin-bottom: 20px;
    }

    .way>div+div {
        border-left: 1px dotted #0080c330;
    }

    #contact h5 {}

    #contact p {}

    #contact .row>div {
        padding: 20px 0;
    }

    #contact .row>div+div {
        border-left: 1px solid #e3e3e3;
    }

    .ontheway {
        min-height: 20px;
        margin-bottom: 20px;
    }

    .ontheway h4 {
        font-size: 13pt;
    }

    .ontheway p {
        font-size: 11pt;
        line-height: 1.6em;
    }

}

@media (min-width: 992px) {
    .ontheway h4 {
        font-size: 13pt;
    }

    .ontheway p {
        font-size: 11pt;
    }
}

@media (min-width: 1200px) {
    .ontheway h4 {
        font-size: 13pt;
    }

    .ontheway p {
        font-size: 11pt;
    }
}




/**********************************
	Sub pages
**********************************/
.subpages {}

.bradcam_area {
    padding: 20px 0;
}

.bradcam_area h3 {
    font-size: 25pt;
    font-family: "NanumSquareRound", "Noto Sans KR", "Nanum Gothic", sans-serif;
    font-weight: 900;

    /*
    font-size: 30pt;
    font-weight: 400;
    font-family: "Nanum Pen Script", cursive;
    */
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    text-transform: capitalize;
    text-shadow: 1px 1px black;
}

@media (min-width: 768px) {
    .bradcam_area {
        padding: 60px 0 30px 0;
    }

    .bradcam_area h3 {
        font-size: 25pt;
        text-align: left;
        padding-left: 20px;
    }

    .bradcam_area .h3 {
        font-size: 40pt;
        text-align: left;
        padding-left: 20px;
    }
}

@media (min-width: 992px) {
    .bradcam_area {
        padding: 80px 0 40px 0;
    }

    .bradcam_area h3 {
        font-size: 30pt;
        text-align: left;
        padding-left: 20px;
    }

    .bradcam_area .h3 {
        font-size: 45pt;
        text-align: left;
        padding-left: 20px;
    }
}

@media (min-width: 1200px) {
    .bradcam_area {
        padding: 100px 0 60px 0;
    }

    .bradcam_area h3 {
        font-size: 35pt;
        text-align: left;
        padding-left: 25px;
    }

    .bradcam_area .h3 {
        font-size: 50pt;
        text-align: left;
        padding-left: 25px;
    }
}

/*
    본문 영역
*/
.bradcam_area::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #1f1f1fb3;
    opacity: .4;
    z-index: -1;
    content: '';
}

.service_area {
    padding-top: 30px;
    padding-bottom: 0px;
}

.page_content {
    margin-bottom: 20px;
}

.page_content .content_text .content_img {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    padding-top: 60px;
}

.page_content .content_text .content_img img {
    width: 100%;
    padding: 0 15px;
}

.page_content .text-md {
    padding: 0 15px;
}

.page_content .page_body {
    min-height: 60px;
    padding: 0 0 30px 0;
}

.page_content .page_body .text-md {
    margin-bottom: 0.5em;

}

.page_content .page_body h5 {
    font-size: 11pt;
}

.page_content .page_body .well {
    padding: 15px;
}

@media (min-width: 768px) {
    .service_area {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .page_content {
        margin-bottom: 30px;
    }

    .page_content .text-md {
        padding: 0;
    }

    .page_content .page_body {
        min-height: 60px;
        padding: 0 0 30px 15px;
    }

    .page_content .content_text .content_img {
        width: 100%;
        margin-bottom: 30px;
    }

    .page_content .content_text .content_img img {
        width: 100%;
        margin: 0;
        padding: 0;
    }

}

@media (min-width: 992px) {
    .service_area {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .page_content {
        margin-bottom: 40px;
    }

    .page_content .page_body {
        min-height: 70px;
        padding: 0 0 30px 15px;
    }

    .page_content .content_text .content_img {
        width: 100%;
        margin-bottom: 30px;
    }

}

@media (min-width: 1200px) {
    .service_area {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .page_content {
        margin-bottom: 50px;
    }

    .page_content .page_body {
        min-height: 80px;
        padding: 0 0 30px 15px;
    }

    .page_content .content_text .content_img {
        width: 100%;
        margin-bottom: 30px;
    }

}












/*	회원가입	*/

/*	패스워드 찾기	*/
body.lostid {
    padding: 15px;
    margin: 15px;
}


.regi-box {
    padding: 5px;
    border: none;
    background-color: #FFF;
}

.ScroleDIV {
    margin-bottom: 15px;
    padding: 15px;
    height: 200px;
    overflow-y: scroll;
    border: solid 1px #e3e3e3;
}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

/**********************************
	UI Element
**********************************/

/*-------------------------
	Dropbox Element
--------------------------*/
.uploadBox {
    background-color: #e3e3e3;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 100px;
    overflow: hidden;
    width: 100%;
    border: dashed 1px #f39b2a;
    text-align: center;
}

.uploadBox img {
    max-width: 100%;
    height: auto;
}

.uploadBox .message {
    font-size: 13pt;
    text-align: center;
    padding-top: 100px;
    display: block;
    color: #f00606;
}

.uploadBox:before {
    border-radius: 3px 3px 0 0;
}

/*-------------------------
	Image Previews
--------------------------*/
.uploadBox .preview {
    width: 100%;
    height: 100%;
    float: left;
    margin: 0;
    position: relative;
    text-align: center;
}

.uploadBox .preview img {
    max-width: 100%;
    max-height: 100%;
    border: none;
    display: block;
}

.uploadBox .imageHolder {
    display: inline-block;
    position: relative;
}

.uploadBox .uploaded {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("/dist/html5-file-upload/img/done.png") no-repeat center center rgba(255, 255, 255, 0.5);
    display: none;
}

.uploadBox .preview.done .uploaded {
    display: none;
}

/*-------------------------
	Progress Bars
--------------------------*/
.uploadBox .progressHolder {
    position: absolute;
    background-color: #252f38;
    height: 12px;
    width: 100%;
    left: 0;
    bottom: 0;

    box-shadow: 0 0 2px #000;
}

.uploadBox .progress {
    background-color: #2586d0;
    position: absolute;
    height: 100%;
    left: 0;
    width: 0;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.4) inset;
    -moz-transition: 0.25s;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
}

.uploadBox .preview.done .progress {
    width: 100% !important;
}

/*	큰 설명글	*/
.explanation {
    font-size: 12pt;
    margin-bottom: 30px;
}

/*	폼그룸 하위 라벨	*/
form label+label {
    margin-left: 15px;
}

/*	well 안에 form	*/
.well form {
    margin: 0;
}

/*	Tooltip		*/
.Tooltip_Wrapper {
    position: absolute;
    display: none;
    z-index: 10001;
}

.Tooltip {
    display: inline-block;
    position: absolute;
    max-width: 200px;
    width: 200px;
}

.up .Tooltip {
    bottom: 10px;
}

.down .Tooltip {
    top: 10px;
}

#TooltipText {
    background-color: #000;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: 12px;
    text-shadow: 0 1px 0 #000000;
    max-width: 200px;
    width: auto;
    line-height: 1.4em;
}

#Tooltip .Tooltip_arrow {
    height: 0;
    position: absolute;
    width: 0;
    left: 60px;
}

.up .Tooltip_arrow {
    bottom: -5px;
    border-bottom: 0 solid transparent;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.8);
    border-top: 5px solid #000;
}

.down .Tooltip_arrow {
    top: -5px;
    border-bottom: 5px solid rgba(0, 0, 0, 0.8);
    border-bottom: 5px solid #000;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 0 solid transparent;
}

/*-------------------------------	*/
/*	Alert */

.toast-bottom-center {
    top: 50%;
    text-align: center;
}

.alert.alert-danger,
.alert.alert-info,
.alert.alert-success {
    position: relative;
    padding: 70px 15px 15px 15px;
    min-height: 100px;
}

.alert.alert-danger:before {
    position: absolute;
    left: 15px;
    top: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f071";
    font-size: 36px;
    color: #ee8588;
}

.alert.alert-info:before {
    position: absolute;
    left: 15px;
    top: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f05a";
    font-size: 36px;
    color: #7ecaf2;
}

.alert.alert-success:before {
    position: absolute;
    left: 15px;
    top: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f058";
    font-size: 36px;
    color: #8abd8b;
}

.alert.alert-danger2 {
    padding: 15px;
    min-height: 30px;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

@media (min-width: 768px) {

    .alert.alert-danger,
    .alert.alert-info,
    .alert.alert-success {
        padding: 15px 15px 15px 100px;
        min-height: 80px;
    }

    .alert.alert-danger:before {
        position: absolute;
        left: 20px;
        top: 5px;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f071";
        font-size: 48px;
        color: #ee8588;
    }

    .alert.alert-info:before {
        position: absolute;
        left: 20px;
        top: 5px;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f05a";
        font-size: 48px;
        color: #7ecaf2;
    }

    .alert.alert-success:before {
        position: absolute;
        left: 20px;
        top: 5px;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f058";
        font-size: 48px;
        color: #8abd8b;
    }
}

/* h2 아이콘 <i class="fas fa-file-download"></i>	*/
h2 {
    position: relative;
}

h2 svg {
    position: absolute;
    top: -50%;
    right: 0;
    color: rgba(126, 202, 242, 0.5);
}

/*	Step	*/
.step {
    margin-bottom: 30px;
}

.step h2 {}

.step ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.step ul li {
    display: inline-block;
    margin-right: -4px;
    vertical-align: top;
    border: solid 1px #ddd;
    background-color: #f4f5f7;
    padding: 30px;
    position: relative;
    height: 100%;
}

.step ul li h3 {
    margin: 0;
    color: #01afe8;
    font-weight: bold;
    display: inline-block;
}

.step ul li h3 small {
    color: #01afe8;
    font-size: 85%;
    font-weight: 600;
    color: #01afe8;
    margin-left: 15px;
}

.step ul li h4 {
    margin: 0 0 0 15px;
    display: inline-block;
}

.step ul li p {
    margin: 15px 0 0 0;
}

.step ul li .arrow {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #f4f5f7;
    border-right: 0;
}

.step ul li .arrow.arrow-color {
    right: -500%;
    top: 32px;
    position: absolute;
    z-index: 800;
}

.step ul li .arrow.arrow-border {
    right: -500%;
    top: 32px;
    border-left-color: #ddd;
    position: absolute;
    z-index: 799;
}

.step ul li.active {
    background-color: #e4e5e6;
}

.step ul li.active .arrow {
    border-left: 15px solid #e4e5e6;
}

.step ul li.active .arrow.arrow-color {}

.step ul li.active .arrow.arrow-border {
    border-left-color: #e4e5e6;
}

.step.step2 ul li {
    width: 100%;
}

.step.step3 ul li {
    width: 100%;
}

.step.step4 ul li {
    width: 100%;
}

.step.step5 ul li {
    width: 100%;
}

@media (min-width: 768px) {
    .step ul li h3 {
        margin: 0;
        color: #01afe8;
        font-weight: bold;
        display: block;
    }

    .step ul li h4 {
        margin: 20px 0 0 0;
        display: block;
    }

    .step ul li .arrow.arrow-color {
        right: -15px;
    }

    .step ul li .arrow.arrow-border {
        right: -17px;
    }

    .step.step2 ul li {
        width: 50%;
    }

    .step.step3 ul li {
        width: 33.33%;
    }

    .step.step4 ul li {
        width: 25%;
    }

    .step.step5 ul li {
        width: 20%;
    }
}

@media (min-width: 992px) {
    .step.step2 ul li {
        width: 50%;
    }

    .step.step3 ul li {
        width: 33.33%;
    }

    .step.step4 ul li {
        width: 25%;
    }

    .step.step5 ul li {
        width: 20%;
    }
}

@media (min-width: 1200px) {}

/*	priceTable 	*/
.tablePrice {
    border: none;
    font-size: 9pt;
    margin-bottom: 50px;
}

.tablePrice thead {
    background-color: #fff;
}

.tablePrice thead th {
    padding: 15px 0;
    font-size: 2em;
    color: #333;
}

.tablePrice thead th.student {
    border-bottom: solid 5px #0c6;
}

.tablePrice thead th.adult {
    border-bottom: solid 5px #01afe8;
}

.tablePrice thead td {
    font-weight: 400;
}

.tablePrice tbody {
    border-top: solid 3px #ddd;
}

.tablePrice tbody tr {}

.tablePrice tbody th {}

.tablePrice tbody td {
    border-left: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    font-weight: 400;
}

.tablePrice tbody th,
.tablePrice tbody td {
    padding: 15px 5px;
}

.tablePrice thead th,
.tablePrice thead td,
.tablePrice tbody th,
.tablePrice tbody td,
.tablePrice tfoot td,
.tablePrice tfoot th {
    text-align: center;
}

.tablePrice tfoot {
    border-top: solid 3px #ddd;
}

.tablePrice tfoot tr {}

.tablePrice tfoot th {}

.tablePrice tfoot td {}

.tablePrice tfoot th,
.tablePrice tfoot td {
    padding: 15px 5px;
}

.tablePrice tbody .won {
    font-weight: 600;
    color: #333;
}

.tablePrice tbody .fa-check {
    font-size: 1.2em;
    color: #01afe8;
}

.tablePrice tbody .fa-times {
    font-size: 1.2em;
    color: #999;
}

.tablePrice tfoot .buttonRow {
    display: none;
}

.tablePrice tfoot .won {
    color: #01afe8;
    font-weight: 600;
    font-size: 1.3em;
}

/*	정보 Table 	*/
.table_info {
    font-size: 9pt;
    margin-bottom: 50px;
}

.table_info th,
.table_info td {
    padding: 15px 10px !important;
}

.table-sm,
.table-sm tbody {
    font-size: 9pt;
}

.table-md,
.table-md tbody {
    font-size: 10pt;
}

.table-lg,
.table-lg tbody {
    font-size: 11pt;
}

/* 완료 정보 */
.table tbody tr.Complet {
    background-color: #e1e9eb;
}

/*  문서 테이블 */
.noscrole {
    position: relative;
}

.noscrole::-webkit-scrollbar {
    display: none;
}

/*  스크롤바 숨기기 */

.noscrole::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    text-align: center;

    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f337";
    font-size: 100px;
    color: #5db2ff59;
    padding-top: 60px;
}

.noscrole.noarrow::before {
    display: none;
}

.table-document {
    font-size: 10pt;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.table-document th {
    padding: 5px;
}

.table-document td {
    padding: 5px;
}

.table-document thead th {
    text-align: center;
    vertical-align: middle !important;
    background-color: #f4f4f4;
    border-bottom: 2px;
    border-left: solid 1px #ddd;
}

.table-document tbody th {
    background-color: #f4f4f4;
}

.table-document tbody td,
.table-document tbody th {
    text-align: center;
    vertical-align: middle !important;
    border-left: solid 1px #ddd;
}

@media (min-width: 768px) {
    .noscrole::before {
        display: none;
    }

    .tablePrice {
        font-size: 10pt;
    }

    .tablePrice tfoot .buttonRow {
        display: table-row;
    }

    .tablePrice tfoot td .btn {
        padding: 5px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3333333;
        border-radius: 3px;
    }

    .table_info {
        font-size: 10pt;
    }

    .table-document {
        font-size: 11pt;

    }

    .table-document th {
        padding: 8px 7px;
    }

    .table-document td {
        padding: 8px 7px;
    }

    .table-document thead th {
        text-align: center;
        vertical-align: middle !important;
        border-bottom: 2px;
        border-left: solid 1px #ddd;
    }

    .table-document tbody td,
    .table-document tbody th {
        text-align: center;
        vertical-align: middle !important;
        border-left: solid 1px #ddd;
    }
}

@media (min-width: 992px) {
    .tablePrice {
        font-size: 11pt;
    }

    .tablePrice tfoot td .btn {
        padding: 10px 16px;
        font-size: 18px;
        border-radius: 6px;
    }

    .table_info {
        font-size: 11pt;
    }
}

@media (min-width: 1200px) {
    .tablePrice {
        font-size: 12pt;
    }

    .table_info {
        font-size: 12pt;
    }
}

/* 버튼 xs 사이즈에서는 블럭	*/
.btn-auto {
    display: block;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-auto {
        display: inline-block;
        width: auto;
    }
}

/*	list-check	*/
.list-check {
    list-style: none;
    font-size: 12pt;
}

.list-check li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    margin-left: -30px;
    width: 29px;
    display: inline-block;
    color: #7ebd38;
}

/*	TapNav	*/
.TapNav {
    margin-top: 30px;
    background-color: #FFFFFF01;
}

.TapNav .nav-tabs>li>a {
    position: relative;
    display: block;
    padding: 13px 15px;
    margin-right: 2px;
    line-height: 1.6;
    border: 0 solid transparent;
    border-radius: 0;
    color: #000;
    font-size: 14px;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
}

.TapNav .nav-tabs>li.active>a {
    padding-bottom: 0;
}

.TapNav .nav-tabs>li>a:hover {
    background-color: transparent;
}

.TapNav .nav-tabs>li.active>a,
.TapNav .nav-tabs>li.active>a:hover,
.TapNav .nav-tabs>li.active>a:focus {
    color: #01aee8;
    background-color: transparent;
    border: 0 solid #ddd;
    border-bottom-color: transparent;
    cursor: default;
    font-weight: 600;
}

.TapNav .nav-tabs>li.active>a:after {
    content: "";
    height: 3px;
    background-color: #14b5e9;
    display: block;
    margin-top: 10px;
}

.tab-content {
    margin-top: 0px;
}

/*	SubTapNav	*/
.sub_tab {
    margin-top: 5px;
    background-color: #FFFFFFF01;
}

.sub_tab .nav-tabs>li>a {
    position: relative;
    display: block;
    padding: 13px 15px;
    margin-right: 2px;
    line-height: 1.6;
    border: 0 solid transparent;
    border-radius: 0;
    color: #000;
    font-size: 14px;
    -webkit-transition: 0s;
    -o-transition: 0s;
    transition: 0s;
}

.sub_tab .nav-tabs>li.active>a {
    padding-bottom: 0;
}

.sub_tab .nav-tabs>li>a:hover {
    background-color: transparent;
}

.sub_tab .nav-tabs>li.active>a,
.sub_tab .nav-tabs>li.active>a:hover,
.sub_tab .nav-tabs>li.active>a:focus {
    color: #01aee8;
    background-color: transparent;
    border: 0 solid #ddd;
    border-bottom-color: transparent;
    cursor: default;
    font-weight: 600;
}

.sub_tab .nav-tabs>li.active>a:after {
    content: "";
    height: 3px;
    background-color: #14b5e9;
    display: block;
    margin-top: 10px;
}

.sub_tab .container {
    padding-left: 25px;
    padding-right: 25px;
}

/*	특징	feature	col 하단에 div 사용하면 않됨	*/
.feature {
    margin-top: 50px;
}

.feature>div+div {
    border-left: 1px solid #e2e4e8;
    padding-left: 20px;
    padding-top: 30px;
}

.feature>div h4 {
    text-align: center;
}

.feature>div h4 img {
    display: block;
}

.feature>div h4 img,
.feature>div h4 svg,
.feature>div h4 .svg-inline--fa {
    font-size: 60px !important;
    color: #0080c3;
    margin-bottom: 30px;
}

.feature>div h4 {}

.feature>div p {
    color: #4b525d;
}

.feature .featureText {
    font-size: 18px;
    padding: 25px;
}

.feature .featureText p {
    margin-bottom: 8px;
}

.feature .featureImg {
    margin-bottom: 50px;
}

.feature .featureText.orange i,
.feature .featureText.orange svg,
.feature .featureText.orange strong,
.feature .featureText.orange q strong {
    color: #f39b2a;
}

.feature .featureText.orange q strong {
    color: #fff;
    background: #f39b2a;
}

.feature .featureText.blue i,
.feature .featureText.blue svg,
.feature .featureText.blue strong,
.feature .featureText.blue q strong {
    color: #26a6de;
}

.feature .featureText.blue q strong {
    color: #fff;
    background: #26a6de;
}

.feature+.row {
    margin-top: 50px;
}

@media (min-width: 768px) {
    .feature>div+div {
        border-left: 1px solid #e2e4e8;
        padding-left: 20px;
        padding-top: 0;
    }

    .feature>div h4 {
        text-align: left;
    }

    .feature .featureText {
        min-height: 250px;
    }
}

/*	classflow	흐름	*/
.classflow {
    margin-top: 50px;
    padding: 0;
    list-style: none;
}

.classflow li {
    margin-bottom: 20px;
}

.classflow li h4 {
    display: block;
    width: 100%;
    padding-top: 10px;
    margin-bottom: 15px;
}

.classflow li h4 small {
    display: inline-block;
    margin-left: 20px;
    padding-top: 15px;
}

.classflow li>div {
    display: block;
    border-left: none;
    border-top: dotted 2px #0080c3;
    padding-bottom: 30px;
    padding-top: 20px;
}

.classflow .classflowsub {}

.classflow .classflowsub li {
    margin-bottom: 15px;
}

.classflow .classflowsub li h5 {
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .classflow li h4 {
        display: table-cell;
        width: 150px;
        padding-top: 10px;
    }

    .classflow li h4 small {
        display: block;
        padding-top: 15px;
        margin-left: 0;
    }

    .classflow li>div {
        display: table-cell;
        border-left: dotted 2px #0080c3;
        border-top: none;
        padding-bottom: 30px;
        padding-top: 10px;
        padding-left: 40px;
    }

    .classflow li>div>ul,
    .classflow li>div>ol {
        padding: 0;
    }
}

/*	CircleList	*/
.CircleList {
    margin-bottom: 50px;
}

.CircleList ul,
.CircleList ol {
    list-style: none;
    text-align: center;
    padding: 0;
}

.CircleList ul li,
.CircleList ol li {
    display: inline-block;
    height: 100px;
    width: 100px;
    border: solid 15px #01afe8;
    border-radius: 50%;
    padding: 10px;
    margin: 0 -9px;
}

/*	border right, left, top, bottom	*/
.border-right {
    border-right: 1px solid #efefef;
}

.border-left {
    border-left: 1px solid #efefef;
}

.border-top {
    border-top: 1px solid #efefef;
}

.border-bottom {
    border-bottom: 1px solid #efefef;
}

/*	padding box	*/
.padingBox3020 {
    padding: 30px 20px;
}

/*	debulULList	*/
.debulULList>ul {
    padding: 0;
    list-style: none;
}

.debulULList>ul>li {
    margin-bottom: 30px;
}

.debulULList>ul>li h4 {
    margin-bottom: 15px;
}

.debulULList>ul>li>ul {
    padding-left: 20px;
}

/*	verticalDotlineList	*/
.verticalDotlineList {
    margin-bottom: 50px;
    padding: 0;
    border-left: dotted 4px #d2d2d2;
}

.verticalDotlineList li {
    margin-left: 7px;
    padding-left: 10px;
}

/**********************************

	class_items

***********************************/
/*
.class_items {
	display: block; position: relative; overflow: hidden;
	margin-bottom: 30px;
}

.class_items .class_items_list {}
.class_items .class_items_list .item_link { }
.class_items .class_items_list .item_box { margin-bottom: 25px; padding: 10px; overflow: hidden;}
.class_items .class_items_list .item_box .item_img { margin-bottom: 10px; border: solid 1px #e3e3e3;}
.class_items .class_items_list .item_box .item_img img { width: 100%; height: auto;}
.class_items .class_items_list .item_box .item_title { color: #202020; font-size: 1.4em; font-weight: 400;}
.class_items .class_items_list .item_box .item_schedule { color: rgb(68, 68, 68); font-size: 1em; font: normal;}
.class_items .class_items_list .item_box .item_title ,
.class_items .class_items_list .item_box .item_schedule { text-align: center;}

.class_items .class_items_list .item_link:hover { }
.class_items .class_items_list .item_link:hover .item_box .item_img img { transform: scale(1.1); transition: transform 500ms ease; -webkit-transition: transform 500ms ease; }


@media (min-width:768px) {
	.class_items .class_items_list .item_box .item_title ,
	.class_items .class_items_list .item_box .item_schedule { text-align: left;}

}
*/
/**********************************

	관리자

***********************************/
#admin_dummy {
    height: 0px;
}

.admin_location {
    margin: 15px 0;
}

.admin_location ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin_location ul li {
    display: inline-block;
    margin-right: 5px;
}

.admin_location ul li a {
    color: #202020;
}

.admin_location+.section {
    padding-top: 0;
}

/*  관리자 메인 */
.am_box {
    border: solid 1px #e3e3e3;
    padding: 0;
    margin-bottom: 50px;
}

.am_box .am_box_title,
.am_box .am_box_body {
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.am_box .am_box_body svg,
.am_box .am_box_body i {
    font-size: 80px;
    position: absolute;
    top: 30px;
    left: 20px;
    opacity: 0.2;
}

.am_box .am_box_title {
    width: 100%;
    padding: 25px;
    margin: 0;
    border: none;
    color: #ffffff;
}

.am_box .am_box_title h4 {
    margin: 0;
    padding: 0;
    display: block;
}

.am_box.blue .am_box_title {
    background-color: #1391d4;
}

.am_box.red .am_box_title {
    background-color: #c30000;
}

.am_box.green .am_box_title {
    background-color: #07c300;
}

.am_box.purple .am_box_title {
    background-color: #9602a3;
}

.am_box.blue .am_box_body svg,
.am_box.blue .am_box_body i {
    color: #1391d4;
}

.am_box.red .am_box_body svg,
.am_box.red .am_box_body i {
    color: #c30000;
}

.am_box.green .am_box_body svg,
.am_box.green .am_box_body i {
    color: #07c300;
}

.am_box.purple .am_box_body svg,
.am_box.purple .am_box_body i {
    color: #9602a3;
}

.am_box .am_box_body {
    background-color: #ffffff;
}

.am_box .am_box_body span {
    font-size: 30pt;
    font-weight: bold;
    text-align: right;
    display: block;
}

.am_box.blue .am_box_body span {
    color: #1391d4;
}

.am_box.red .am_box_body span {
    color: #c30000;
}

.am_box.green .am_box_body span {
    color: #07c300;
}

.am_box.purple .am_box_body span {
    color: #9602a3;
}

/*  공지사항 리스트 */
.am_notice {
    margin-bottom: 50px;
    padding: 15px;
    min-height: 250px;
    border: solid 1px #e3e3e3;
}

.am_notice h4 {
    color: #2b90a3;
    font-weight: bold;
    padding: 0 5px 15px 5px;
    border-bottom: solid 3px #2b90a3;
    margin-bottom: 10px;
    position: relative;
}

.am_notice #main-notices {
    padding: 5px;
}

.am_notice #main-notices ul {
    list-style-type: disc;
}

.am_notice #main-notices>ul>li {
    padding: 5px 0;
    position: relative;
}

.am_notice #main-notices>ul>li>a {
    color: #999999;
    font-weight: normal;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

/* new icon */
.newicon {
    display: inline-block;
    margin-right: 5px;
    padding: 2px;
    background-color: orange;
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    text-align: center;
}

/*  빈칸    */
.Blank {
    padding: 100px 0;
    margin-bottom: 50px;
    min-height: 250px;
    border: solid 1px #e3e3e3;
    background-color: #f0f0f0;
    text-align: center;
    color: #01aee8;
}

/*  접속 카운터 테이블  */
#chartTable {
    margin: 30px 0;
}

#chartTable thead th,
#chartTable tbody td {
    text-align: center;
    font-size: 9pt;
}

#chartTable thead th {
    background-color: #eee;
}

#logCountBox {
    margin-bottom: 30px;
    margin-top: 10px;
}

#logCountBox .totalText {}

#logCountBox #totalCount {
    color: orange;
    font-weight: bold;
}

.main_color_mint {
    background-color: #00c0cb;
    color: #fff;
}

.main_color_pink {
    background-color: #ed3092;
    color: #fff;
}

.main_color_yellow {
    background-color: #ffc600;
    color: #fff;
}

body {
    margin: 0 0;
    padding: 0 0;
}

#menu {
    position: fixed;
    width: 200px;
    height: 100%;
    border-right: solid 1px #ccc;
    padding: 40px 20px;
    box-sizing: border-box;
    background-color: #fff;
}

#menu .logo {
    margin: auto;
    margin-bottom: 25px;
    width: 160px;
    height: auto;
}

#menu ul {
    list-style: none;
    padding: 0 0;
    width: 160px;
    margin: 0 0;
}

#menu ul a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

#menu ul .menu_text1 {
    display: block;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-bottom: 25px;
    border-bottom: solid 1px #ccc;
}

#menu ul .menu_text1 span {
    color: #ccc;
    display: none;
    float: right;
    padding-right: 10px;
}

#menu ul .menu_text1:hover span {
    display: block;
}

#menu ul .menu_text2 {
    display: none;
    border-bottom: solid 1px #ccc;
    padding-bottom: 10px;
}

#menu ul .menu_text2 a {
    display: block;
    margin: 14px;
    font-size: 14px;
}

#menu .sns {
    margin-top: 30px;
}

#menu .sns a {
    margin-right: 3px;
}

#menu .mobile_hidden {
    display: none;
}

#mobile_menu {
    width: 100%;
    height: 70px;
    padding: 10px 20px;
    border-bottom: solid 1px #cccccc;
    box-sizing: border-box;
    display: none;
    text-align: center;
}

#mobile_menu .menu_icon {
    float: left;
    margin-top: 10px;
}

#nav {
    padding-left: 200px;
}

#nav_menu {
    width: 100%;
    height: 39px;
    font-size: 14px;
    border-bottom: solid 1px #ccc;
}

#nav_menu span {
    display: block;
    color: #000;
    padding-top: 13px;
    padding-left: 20px;
    float: left;
}

#nav_menu span a {
    color: #000;
    text-decoration: none;
    margin: 0 10px;
}

#nav_menu .nav_box {
    width: 150px;
    height: 100%;
    float: right;
    text-align: center;
    padding-top: 13px;
    box-sizing: border-box;
}

#nav_menu .nav_box a {
    color: #fff;
    text-decoration: none;
}

#main_banner {
    width: 100%;
    height: 600px;
    background-image: url("/images/mainpage/main_banner_pc.jpg");
    background-size: cover;
    background-position: center;
}

#shortcuts {
    width: 770px;
    height: 120px;
    background-color: #fff;
    margin: -120px auto 0;
    padding: 0 0;
}

#shortcuts .shortcuts_nav {
    width: 25%;
    float: left;
    text-align: center;
}

#shortcuts .shortcuts_nav_img {
    width: 50px;
    height: auto;
    margin: 20px auto 10px;
}

#shortcuts .shortcuts_nav_img img {
    width: 100%;
    height: auto;
}

#shortcuts a {
    text-decoration: none;
    color: #403b7b;
    font-size: 18px;
}

#shortcuts a:hover span {
    text-decoration: underline;
}

#content1 {
    width: 100%;
    height: 630px;
    padding: 0;
}

#content1 .content_box {
    width: 33.3333%;
    padding: 0;
    float: left;
}

#content1 .img_box {
    width: 100%;
    height: 370px;
    background-position: center;
}

#content1 .text_box {
    width: 100%;
    height: 260px;
    text-align: center;
    padding: 40px;
    box-sizing: border-box;
}

#content1 .text_box .content_line {
    background-color: #fff;
    width: 50px;
    height: 2px;
    margin: 0 auto 30px;
}

#content1 .text_box span {
    font-size: 35px;
}

#content1 .text_box a {
    text-decoration: none;
    color: #fff;
}

#content1 .text_box a:hover .content_btn {
    background-color: #fff;
    color: #404040;
}

#content1 .text_box .content_btn {
    width: 170px;
    height: 50px;
    border: solid 1px #fff;
    padding: 16px;
    margin: 25px auto 0;
    box-sizing: border-box;
    transition: all 0.5s ease-in-out;
}

#content2 {
    width: 100%;
    height: 600px;
    padding: 0;
}

#content2 .content2_box {
    width: 50%;
    height: 600px;
    float: left;
}

#content2 .content2_box1 {
    background-position: center;
    text-align: center;
    color: #fff;
    line-height: 24px;
}

#content2 .content2_box1 img {
    display: block;
    margin: 190px auto 0;
}

#content2 .content2_box1 span {
    font-size: 35px;
    display: block;
    margin: 20px auto;
}

#content2 .content2_box2 .notice_box {
    height: 300px;
    width: 100%;
    float: left;
    padding: 50px;
    box-sizing: border-box;
}

#content2 .content2_box2 .notice {
    border: solid 1px #ccc;
}

#content2 .content2_box2 .notice ul li a {
    color: #666;
}

#content2 .content2_box2 .main_color_pink ul li a {
    color: #fff;
}

#content2 .content2_box2 .notice_box .font_bold {
    font-size: 25px;
    display: block;
    margin-bottom: 20px;
}

#content2 .content2_box2 .notice_box ul {
    list-style: none;
    padding: 0 0;
    margin: 0 0;
}

#content2 .content2_box2 .notice_box ul li a {
    font-size: 17px;
    text-decoration: none;
    line-height: 34px;
}

#content2 .content2_box2 .notice_box ul li a span {
    float: right;
}

#call_box {
    width: 100%;
    height: 260px;
    padding: 90px 0 0;
    background-color: #ffc600;
    color: #2b3141;
    box-sizing: border-box;
    text-align: center;
    font-weight: bold;
    font-size: 35px;
    background-image: url("/images/mainpage/consulting_pc.jpg");
    background-position: center;
}

@media screen and (max-width: 970px) {
    #menu {
        padding: 40px 10px;
        z-index: 99999;
        margin-left: -200px;
    }

    .mobile_menu_bg {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.7);
        width: 100%;
        height: 100%;
        display: none;
    }

    #menu .mobile_hidden {
        display: block;
    }

    #menu .pc_logo {
        display: none;
    }

    #menu .top_menubar {
        width: 200px;
        padding: 10px;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #2b3141;
        color: #fff;
    }

    #menu .top_menubar .mobile_login {
        text-decoration: none;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        border: solid 1px #fff;
        font-size: 12px;
        float: left;
    }

    #menu .top_menubar .mobile_close {
        text-decoration: none;
        color: #fff;
        float: right;
        font-size: 20px;
        margin-top: 5px;
    }

    #menu .mobilemenu_icon {
        margin-top: 30px;
    }

    #menu .mobilemenu_icon .nav_icon {
        display: block;
        padding: 0 0 20px;
        box-sizing: border-box;
        width: 50%;
        float: left;
        text-align: center;
        color: #000;
        font-size: 13px;
        text-decoration: none;
        border-bottom: solid 1px #ccc;
        margin-bottom: 20px;
    }

    #menu .mobilemenu_icon .nav_icon img {
        margin-bottom: 10px;
    }

    #menu ul {
        width: 170px;
    }

    #menu ul .menu_text1 {
        margin-top: 15px;
        margin-bottom: 10px;
        padding-bottom: 15px;
    }

    #menu ul .menu_text2 {
        padding-bottom: 5px;
    }

    #nav_menu {
        display: none;
    }

    #mobile_menu {
        display: block;
    }

    #main_banner {
        background-image: url("/images/mainpage/main_banner_tablet.jpg");
    }

    #shortcuts {
        width: 100%;
        font-size: 16px;
    }

    #nav {
        padding: 0 0;
    }

    #content1 {
        width: 100%;
        height: 780px;
    }

    #content1 .content_box {
        width: 100%;
    }

    #content1 .img_box {
        width: 50%;
        height: 260px;
        float: left;
    }

    #content1 .text_box {
        width: 50%;
        height: 260px;
        float: left;
        padding: 40px;
        box-sizing: border-box;
    }

    #content1 .text_box .content_line {
        background-color: #fff;
        width: 50px;
        height: 2px;
        margin: 0 auto 30px;
    }

    #content1 .text_box span {
        font-size: 28px;
    }

    #content1 .text_box .content_btn {
        width: 170px;
        height: 50px;
        padding: 16px;
        margin: 25px auto 0;
    }

    #content2 {
        height: 800px;
    }

    #content2 .content2_box {
        width: 100%;
        height: 300px;
    }

    #content2 .content2_box1 {
        padding: 30px 20px;
        line-height: 24px;
        box-sizing: border-box;
    }

    #content2 .content2_box1 img {
        margin: 0 auto;
    }

    #content2 .content2_box1 span {
        font-size: 26px;
        margin: 10px auto;
    }

    #content2 .content2_box2 .notice_box {
        height: 250px;
        width: 100%;
        padding: 30px 20px;
    }

    #content2 .content2_box2 .notice_box .font_bold {
        font-size: 26px;
        margin-bottom: 20px;
    }

    #content2 .content2_box2 .notice_box ul li a {
        font-size: 17px;
        line-height: 34px;
    }

    #content2 .content2_box2 .notice_box ul li a span {
        float: right;
    }

    #call_box {
        height: 160px;
        padding: 40px 0 0;
        font-size: 24px;
        background-image: url("/images/mainpage/consulting_tablet.jpg");
    }
}

@media screen and (max-width: 670px) {
    #main_banner {
        background-image: url("/images/mainpage/main_banner_mobile.jpg");
    }

    #call_box {
        height: 140px;
        padding: 40px 0 0;
        font-size: 20px;
        background-image: url("/images/mainpage/consulting_mobile.jpg");
    }
}

@media screen and (max-width: 500px) {
    #content1 .text_box .content_btn {
        width: 100%;
        padding: 10px;
        height: auto;
    }
}

/*
    메인
*/
.main-content-box h4 {
    margin-bottom: 10px;
    font-size: 12pt;
}

/*
	구인 리스트
*/

#employ_list_table .e_img {
    width: 100px;
}

#employ_list_table .e_img img {
    width: 100%;
    height: auto;
}

/* 
    구인 상세보기
*/
.corp_well {
    padding: 15px;
    font-size: 9pt;
}

.detail_page {
    color: #6a6a6a;
}



.detail_page .detail_employ_img {
    padding: 10px;
    margin: 0 0 20px 0;
    text-align: center;
}

.detail_page .detail_employ_img img {
    border: solid 1px #e3e3e3;
    padding: 5px;
    margin: 0 auto;
    max-width: 100%;
}

.detail_page .e_title {
    margin-bottom: 10px;
    text-align: left;
    font-size: 11pt;
}

.detail_page label {
    font-weight: 600;
    color: #424242;
    font-size: 9pt;
}

.detail_page p,
.detail_page .form-group div {
    font-size: 9pt;
}

.detail_page .form-group {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.detail_page .form-control-static {
    padding-top: 0;
    min-height: 26px;
}

.detail_page .form-group .col-xs-4 {
    clear: left;
}

.detail_page .form-group .col-xs-8 {
    min-height: 26px;
}

.detail_page .form-group>label,
.detail_page .form-group>label+div {
    border-bottom: 1px solid none;
}


/** 상세 요강   **/
#employContent {
    padding: 0 15px;
    word-break: break-word;
}

#employContent img {
    max-width: 100%;
    height: auto !important;
}

@media (min-width: 768px) {
    .corp_well {
        padding: 15px;
        font-size: 9pt;
    }

    .detail_page .detail_employ_img {
        padding: 20px;
        margin: 0 0 20px 0;
        text-align: center;
    }

    .detail_page .detail_employ_img img {
        border: solid 1px #e3e3e3;
        padding: 15px;
        margin: 0 auto;
    }

    .detail_page .e_title {
        margin-bottom: 30px;
        text-align: center;
    }

    .detail_page label {
        font-weight: 600;
    }

    .detail_page label {
        font-size: 11pt;
    }

    .detail_page .form-group {
        margin-bottom: 15;
        margin-left: 0;
        margin-right: 0;
    }

    .detail_page p,
    .detail_page .form-group div {
        font-size: 11pt;
    }

    .detail_page .form-group .col-xs-4 {
        clear: none;
    }

    .detail_page .form-control-static {
        padding-top: 7px;
    }


}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}





/*
    컨텐츠 페이지
*/

.page_content .help-block {
    color: #8c0c0c;
    font-size: 10pt;
}

.page_content .content_text,
.page_content .content_text * {
    line-height: 1.6em;
}

.page_content .content_text h4.page_title {
    padding: 0 0 5px 15px;
    margin: 0 0 15px 0;
    border-left: solid 5px #0080c3;
    border-bottom: solid 1px #e8e8e8;
    font-size: 14pt;
}

.page_content .content_text h5 {
    margin-bottom: 16px;
}

.page_content .content_text h5.table-head {
    font-size: 11pt;
    position: relative;
}

.page_content .content_text h5.table-head small {
    position: relative;
    display: block;
    text-align: left;
    right: 0;
    bottom: 0;
    font-size: 10pt;
    padding-left: 15px;
}

.page_content .content_text .help-block {}

.page_content .content_text .list-ul {
    font-size: 10pt;
}

.page_content .content_text .list-ul>li {
    margin-bottom: 30px;
}

.page_content .content_text .list-ul>li>ol {
    margin: 0 0 15px 0;
    padding-left: 15px;
}

.page_content .content_text .list-ul>li>ol>li {
    margin-bottom: 8px;
}

.page_content .content_text .list-ul>li>ol>li>p {
    padding-left: 15px;
    margin-bottom: 0;
}

.page_content .content_text .list-ul>li>ol>li>ul {
    margin: 0 0 15px 0;
    padding-left: 15px;
}

.page_content .content_text .list-ul>li>ul {
    margin: 0 0 15px 0;
    padding-left: 15px;
}

.page_content .content_text .list-ul>li>ul>li {
    margin-bottom: 15px;
}

.page_content .content_text .list-ul>li>ul>li>p {
    padding-left: 15px;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .page_content .help-block {
        color: #8c0c0c;
        font-size: 13pt;
    }

    .page_content .content_text h4.page_title {
        padding: 0 0 5px 25px;
        margin: 0 0 30px 0;
        border-left: solid 5px #0080c3;
        border-bottom: solid 1px #e8e8e8;
        font-size: 18pt;
    }

    .page_content .content_text h5 {
        margin-bottom: 16px;
    }

    .page_content .content_text h5.table-head {
        font-size: 14pt;
        position: relative;
    }

    .page_content .content_text h5.table-head small {
        position: absolute;
        right: 0;
        bottom: 0;
        font-size: 11pt;
    }

    .page_content .content_text .list-ul {
        padding-left: 15px;
        font-size: 14pt;
    }

    .page_content .content_text .list-ul>li {
        margin-bottom: 30px;
    }

    .page_content .content_text .list-ul>li>ol {
        margin: 0 0 15px 0;
        padding-left: 15px;
    }

    .page_content .content_text .list-ul>li>ol>li {
        margin-bottom: 8px;
    }

    .page_content .content_text .list-ul>li>ol>li>p {
        padding-left: 15px;
        margin-bottom: 0;
    }

    .page_content .content_text .list-ul>li>ol>li>ul {
        margin: 0 0 15px 0;
        padding-left: 15px;
    }

    .page_content .content_text .list-ul>li>ul {
        margin: 0 0 15px 0;
        padding-left: 15px;
    }

    .page_content .content_text .list-ul>li>ul>li {
        margin-bottom: 15px;
    }

    .page_content .content_text .list-ul>li>ul>li>p {
        padding-left: 15px;
        margin-bottom: 0;
    }


}

.list_dl {
    display: block;
    padding-left: 15px;
    margin-bottom: 50px;
    font-size: 10pt;
}

.list_dl dl {
    margin-bottom: 20px;
}

.list_dl dl dt,
.list_dl dl dd {
    display: block;
}

.list_dl dl dt {
    width: 100%;
    vertical-align: top;
    margin-bottom: 5px;
}

.list_dl dl dd {
    border-left: none;
    padding-left: 15px;
}

.list_dl dl dd p {
    margin-bottom: 6px;
    font-size: 10pt;
}

.list_dl dl dd .table-document tbody td,
.list_dl dl dd .table-document tbody th {
    text-align: left;
}

.list_dl dl dd .table-document tbody.text-center td,
.list_dl dl dd .table-document tbody.text-center th {
    text-align: center;
}

.line_dl {
    display: block;
    padding-left: 15px;
    margin-bottom: 50px;
    font-size: 10pt;
}

.line_dl dl {
    margin-bottom: 7px;
}

.line_dl dl dt,
.line_dl dl dd {
    display: table-cell;
}

.line_dl dl dt {
    width: 60px;
    text-align: right;
}

.line_dl dl dd {
    padding-left: 15px;
}

.list_dl small,
.line_dl small {
    font-weight: 400;
}

@media (min-width: 768px) {
    .list_dl {
        display: block;
        padding-left: 15px;
        margin-bottom: 50px;
        font-size: 14pt;
    }

    .list_dl dl {
        margin-bottom: 30px;
    }

    .list_dl dl dd p {
        margin-bottom: 6px;
        font-size: 14pt;
    }

    .list_dl dl dd .table-document {
        font-size: 14pt;
    }

    .list_dl dl dd .table-document tbody td {
        text-align: left;
    }

    .list_dl dl dd .table-document tbody th {
        text-align: center;
    }

    .line_dl {
        font-size: 14pt;
    }

    .line_dl dl dt {
        width: 86px;
    }
}

.feature h4 {
    display: block;
}

.feature h4 img {
    width: 100%;
    height: auto;
}

.feature h4 img.img_50 {
    width: 50%;
}

.feature h4 img.img_70 {
    width: 70%;
}

.feature h4 p {
    text-align: left;
    font-weight: bold;
    font-size: 1.2em;
}

ol.num_ol {
    display: block;
    padding: 15px;
    margin: 0;
}

ol.num_ol li {
    display: block;
    padding: 0;
    position: relative;
    border: solid 1px #e3e3e3;
    border-radius: 10px;
    margin-bottom: 30px;
}

ol.num_ol li::after {
    display: block;
    position: absolute;
    bottom: -28px;
    left: 50%;
    text-align: center;
    margin: 0 0 0 -14px;
    padding: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    font-size: 40px;
    color: #b3dbfe;
}

ol.num_ol li:last-child::after {
    content: " ";
}

ol.num_ol li div.title {
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background-color: aliceblue;
    font-size: 11pt;
}

ol.num_ol li div.title+div {
    border-top: solid 1px #e3e3e3;
    margin: 0;
}

ol.num_ol li div.title+div .col-xs-6,
ol.num_ol li div.title+div .col-xs-12 {
    text-align: center;
    padding: 5px 10px;
    margin: 10px 0;
    border-right: solid 1px #e3e3e3;
    font-size: 10pt;
}

ol.num_ol li div.title+div .col-xs-6+.col-xs-6 {
    border-right: none;
}

@media (min-width: 768px) {
    ol.num_ol {
        display: block;
        padding: 15px;
        margin: 0;
    }

    ol.num_ol li {
        display: block;
        padding: 0;
        position: relative;
        border: solid 1px #e3e3e3;
        border-radius: 10px;
        margin-bottom: 80px;
    }

    ol.num_ol li::after {
        display: block;
        position: absolute;
        bottom: -55px;
        left: 50%;
        text-align: center;
        margin: 0 0 0 -20px;
        padding: 0;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f107";
        font-size: 60px;
        color: #b3dbfe;
    }

    ol.num_ol li:last-child::after {
        content: " ";
    }

    ol.num_ol li div.title {
        font-weight: bold;
        text-align: center;
        padding: 20px;
        background-color: aliceblue;
        font-size: 16pt;
    }

    ol.num_ol li div.title+div {
        border-top: solid 1px #e3e3e3;
        margin: 0;
    }

    ol.num_ol li div.title+div .col-xs-6,
    ol.num_ol li div.title+div .col-xs-12 {
        text-align: center;
        padding: 5px 10px;
        margin: 20px 0;
        border-right: solid 1px #e3e3e3;
        font-size: 14pt;
    }

    ol.num_ol li div.title+div .col-xs-6+.col-xs-6 {
        border-right: none;
    }

}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}





/*
    연혁
*/
.chronology_img {
    display: none;
}

.chronology {
    padding-left: 15px;
}

.timeline {
    position: relative;
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ddd;
    left: 31px;
    margin: 0;
    border-radius: 2px;
}

.timeline>li {
    position: relative;
    margin-right: 10px;
    margin-bottom: 30px;
}

.timeline>li:after {
    clear: both;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>.time-label {
    margin-bottom: 15px;
}

.timeline>.time-label>span {
    font-weight: 600;
    display: inline-block;
    background-color: #00c0cb;
    border-radius: 4px;
    padding: 8px 15px;
    color: #fff;
    font-size: 11pt;
}

.timeline>li>.fa,
.timeline>li>.fas,
.timeline>li>.glyphicon,
.timeline>li>.ion {
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    color: #00c0cb;
    background: #d2d6de;
    border-radius: 50%;
    text-align: center;
    left: 18px;
    top: 0;
}

.timeline>li>.timeline-item {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin-top: 0;
    background: #eaeaef;
    color: #444;
    margin-left: 60px;
    margin-right: 15px;
    padding: 15px;
    position: relative;
}

.timeline>li>.timeline-item .timeline-header {
    color: #000;
    font-size: 10pt;
}

.timeline>li>.timeline-item .timeline-body {
    color: #666;
    padding-left: 5px;
    font-size: 9pt;
}

.timeline>li.time-end>.fas {
    background: #c3c5c7;
    color: #ddd;
}

.timeline>li.time-end>.fas.fa-circle:before {
    content: "\f017";
}




.timeline2 {
    position: relative;
    width: 100%;
    min-height: 180px;
    margin: 0 0 60px 0;
    padding: 0 0 0 120px;
    list-style: none;
}

.timeline2:before {
    content: "";
    position: absolute;
    top: 16px;
    left: 30px;
    width: 100%;
    height: 4px;
    background: #ddd;
    margin: 0;
    border-radius: 2px;
}

.timeline2>li {
    position: relative;
    display: block;
    max-width: 25%;
    float: left;
}
.timeline2>li.time-label {
    width: 120px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    left: 0px;
    top: 0;
    text-align: center;
}
.timeline2>li.time-label>span {
    font-weight: 600;
    display: inline-block;
    background-color: #00c0cb;
    border-radius: 4px;
    padding: 8px 15px;
    color: #fff;
}
.timeline2>li.time-end {
    width: 0px;
    height: 0px;
    position: absolute;
    right: -30px;
    top: 5px;
    text-align: center;
}
.timeline2>li.time-end i {
    display: block;
}
.timeline2>li.time-end>.fas {
    background: #c3c5c7;
    color: #ddd;
}
.timeline2>li.time-end>.fas.fa-circle:before {
    content: "\f017";
}
.timeline2>li .timeline-item {
    margin-top: 50px;
    padding-left: 15px;
}
.timeline2>li .timeline-item .timeline-header {
    background-color: #00c0cb;
    color: #fff;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 9pt;
    position: absolute;
    top: 0;
    left: 0;
}
.timeline2>li .timeline-item .timeline-header .y {
    display: none;
}

.timeline2>li .timeline-item .timeline-body {
    border: solid 1px #e3e3e3;
    background-color: #e3e3e3;
    border-radius: 0 15px 15px 15px;
    padding: 15px;
    font-size: 10pt;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.timeline2>li .timeline-item .timeline-body::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -10px;
    left: 0;
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-left: 5px solid #e3e3e3;
    border-bottom: 5px solid #e3e3e3 ;
}

.timeline2>li i {
    display: none;
}


@media (min-width: 768px) {
    .chronology_img {
        display: block;
    }

    .chronology {
        padding-left: 30px;
    }

    .timeline>.time-label>span {
        padding: 8px 15px;
        font-size: 14pt;
    }

    .timeline>li>.timeline-item .timeline-header {
        font-size: 12pt;
    }

    .timeline>li>.timeline-item .timeline-body {
        padding-left: 15px;
        font-size: 11pt;
    }

}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}






/*
    사이트 맵
*/
.sitmap .clearfix {
    clear: left;
}

.treeList {
    position: relative;
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}

.treeList:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #ddd;
    left: 50%;
    margin: 0 0 0 -2px;
}

.treeList>li {
    position: relative;
    margin-bottom: 30px;
}

.treeList>li:after {
    clear: both;
}

.treeList>li:before,
.treeList>li:after {
    content: " ";
    display: table;
}

.treeList>.treeList-label {
    margin-bottom: 15px;
}

.treeList>.treeList-label>span {
    font-weight: 600;
    display: inline-block;
    background-color: #1e6f80;
    border-radius: 4px;
    padding: 18px 5px;
    color: #fff;
    font-size: 10pt;
    width: 100%;
    text-align: center;
}

.treeList>li>.treeList-item {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    border: solid 1px #1e6f80;
    margin-top: 0;
    background: #eaeaef;
    color: #444;
    margin-left: 0px;
    margin-right: 0px;
    padding: 15px;
    text-align: center;
    position: relative;
}

.treeList>li>.treeList-item a {
    color: #1e6f80;
    font-size: 9pt;
    font-weight: bold;
}

@media (min-width: 768px) {
    .sitmap .clearfix {
        clear: none;
    }

    .treeList {
        position: relative;
        margin: 0 0 30px 0;
        padding: 0;
        list-style: none;
    }

    .treeList:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #ddd;
        left: 50%;
        margin: 0 0 0 -2px;
    }

    .treeList>li {
        position: relative;
        margin-bottom: 30px;
    }

    .treeList>li:after {
        clear: both;
    }

    .treeList>li:before,
    .treeList>li:after {
        content: " ";
        display: table;
    }

    .treeList>.treeList-label {
        margin-bottom: 15px;
    }

    .treeList>.treeList-label>span {
        font-weight: 600;
        display: inline-block;
        background-color: #1e6f80;
        border-radius: 4px;
        padding: 18px 5px;
        color: #fff;
        font-size: 14pt;
        width: 100%;
        text-align: center;
    }

    .treeList>li>.treeList-item {
        -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        border-radius: 3px;
        border: solid 1px #1e6f80;
        margin-top: 0;
        background: #eaeaef;
        color: #444;
        margin-left: 0px;
        margin-right: 0px;
        padding: 15px;
        text-align: center;
        position: relative;
    }

    .treeList>li>.treeList-item a {
        color: #1e6f80;
        font-size: 11pt;
        font-weight: bold;
    }

}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}



/*
    오시는 길
*/
.page_content .jumbotron address {
    padding: 0;
    margin: 0;
}

.page_content .bus_info {
    position: relative;
    padding-left: 80px;
    margin: 20px 0;
    min-height: 100px;
}

.page_content .bus_info img {
    position: absolute;
    left: 0;
    top: 0;
}

.page_content .bus_info p {
    margin-bottom: 7px;
}

.page_content .well h5 {
    margin-bottom: 0;
}

.page_content .well hr {
    margin: 10px 0;
}

.page_content .well .text-tel {
    margin: 7px 0 0 0;
    font-weight: bold;
}

.page_content .alert-fix:before {
    top: 25px;
}

/*
    구직신청서 등록 폼
*/

#s_disabile_type_box>label,
#s_disabile_kit_box>label {
    display: inline-block;
    width: 150px;
}

#s_disabile_type_box>label+label,
#s_disabile_kit_box>label+label {
    margin-left: 0 !important;
}

#e_disabile_type_box>label,
#e_disabile_kit_box>label {
    display: inline-block;
    width: 150px;
}

#e_disabile_type_box>label+label,
#e_disabile_kit_box>label+label {
    margin-left: 0 !important;
}

/*
    마이페이지
*/
#mypages {
    display: block;
}

#mypages .nav-tabs>li {
    min-width: 200px;
}

#mypages .nav-tabs>li>a {
    text-align: center;
    font-size: 14pt;
    font-weight: bold;
    padding: 15px;
    color: #1e6f80;
}

#mypages .nav-tabs>li.active>a {
    border-top: solid 5px #1e6f80;
}

/*
    인사말
*/
.img_row {
    margin-bottom: 30px;
}

.img_row .img_block {
    float: none;
    margin: 0;
    display: block;
}

.img_row .img_block img {
    width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

@media (min-width: 768px) {
    .img_row {
        margin-bottom: 1em;
    }

    .img_row .img_block {
        float: right;
        margin: 10px 0 10px 50px;
        display: table;
    }

    .img_row .img_block img {
        width: 200px;
        height: auto;
        margin: 0;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

/****************
  약관 문서
****************/
.document {
    display: block;
}

.document * {
    font-size: 9pt;
    line-height: 1.6em;
}

.document h2 {
    font-size: 16pt;
    margin-bottom: 15px;
}

.document h3 {
    font-size: 13pt;
    margin-bottom: 15px;
}

.document h4 {
    font-size: 12pt;
}

.document .jo {
    margin-bottom: 20px;
}

.document .jo h4 {
    margin-bottom: 8px;
}

.document .jo p {
    margin-bottom: 8px;
}

.document .jo .text {
    padding-left: 8px;
}

.document .jo .text p {
    margin-bottom: 8px;
    color: #1f1f1f;
}

.document .jo .text>ul {
    margin-left: 20px;
}

.document .jo .text>ul li {
    padding-bottom: 8px;
    list-style-type: disc;
}

.document .jo .text>ul>li>ul {
    margin-top: 8px;
    margin-left: 15px;
}

.document .jo .text .ho {
    margin-left: 8px;
}

.document .jo .text .ho li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 12px;
}

.document .jo .text .ho li::before {
    content: "\f111";
    display: block;
    height: 5px;
    margin-top: -5px;
    pointer-events: none;
    position: absolute;
    left: 0px;
    top: 10px;
    transition: all 0.15s ease-in-out;
    width: 5px;
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
}

.document .jo .text .ho li .hang {
    margin-bottom: 10px;
    margin-top: 5px;
}

.document table {
    width: 100%;
}

.document table col {
    width: 100px;
}

.document table col+col {
    width: auto;
}

.document .table-responsive {
    border: none;
    overflow: visible;
}

@media (min-width: 768px) {
    .document * {
        font-size: 9pt;
        line-height: 1.6em;
    }

    .document h3 {
        font-size: 13pt;
    }

    .document h4 {
        font-size: 12pt;
    }

    .document .jo {
        margin-bottom: 50px;
    }

    .document .jo h4 {
        margin-bottom: 15px;
    }

    .document .jo .text {
        padding-left: 15px;
    }

    .document .jo .text p {
        margin-bottom: 8px;
        color: #1f1f1f;
    }

    .document .jo .text .ho {
        margin-left: 15px;
    }

    .document .jo .text .ho li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 20px;
    }

    .document .jo .text .ho li::before {
        content: "\f111";
        display: block;
        height: 5px;
        margin-top: -5px;
        pointer-events: none;
        position: absolute;
        left: 0px;
        top: 10px;
        transition: all 0.15s ease-in-out;
        width: 5px;
        font-family: "Font Awesome 5 Free";
        font-size: 10px;
    }

    .document .jo .text .ho li .hang {
        margin-bottom: 10px;
        margin-top: 5px;
    }

    .document table col {
        width: 200px;
    }

    .document table col+col {
        width: auto;
    }

}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}




/* DL, DT, DD */
.document dl {
    display: table;
    margin-bottom: 6px;
}

.document dl dt,
.document dl dd {
    display: table-cell;
}

.document dl dt {
    width: 160px;
    padding: 0 15px;
}

.document dl dd {}





/* 테이블 타입 */
.table-type1 {
    margin: 10px 15px 15px 0;
}

.table-type1 thead {
    padding-bottom: 20px;
}

.table-type1 thead tr {}

.table-type1 thead tr th,
.table-type1 tbody tr th {
    text-align: center;
    color: #1f1f1f;
    background-color: #f6f6f6;
    width: 80px;
}

.table-type1 thead tr th {
    border-bottom: solid 2px #ccc;
}

.table-type1 tbody {}

.table-type1 tbody tr {}

.table-type1 tbody tr th {}

.table-type1 tbody tr td {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .table-type1 {
        margin: 10px 15px 15px 0;
    }

    .table-type1 thead {
        padding-bottom: 20px;
    }

    .table-type1 thead tr {}

    .table-type1 thead tr th,
    .table-type1 tbody tr th {
        text-align: center;
        color: #1f1f1f;
        background-color: #f6f6f6;
    }

    .table-type1 thead tr th {
        border-bottom: solid 2px #ccc;
    }

    .table-type1 tbody {}

    .table-type1 tbody tr {}

    .table-type1 tbody tr th {}

    .table-type1 tbody tr td {
        padding-left: 15px;
        padding-right: 15px;
    }

}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}





/*  미션    */
.missionText {
    display: block;
    height: auto;
    text-align: center;
    padding: 15px 0;
}

.missionText h2 {
    font-size: 14pt;
}

.vision-text {
    margin-left: 40px;
    margin-right: 20px;
}

.vision-text .text-md {
    padding: 0;
}

@media (min-width: 768px) {
    .missionText {
        display: table-cell;
        height: 150px;
        vertical-align: middle;
    }

    .missionText h2 {
        font-size: 24pt;
    }

}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}






/*  게시판 리스트 헤더 중앙정렬 요청    */
#list_table thead th {
    text-align: center;
}



/* pagination */
#pagination {
    text-align: center;
}

.pagination {
    max-width: 100%;
    height: auto;
    margin: 0;
    color: #1e6f80;
    font-size: 9pt;
}

.pagination ul {
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */
    *zoom: 1;
    margin-left: 0;
    color: #ffffff;
    margin-bottom: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination li {
    display: inline;
    color: #1e6f80;
}

.pagination a {
    float: left;
    padding: 0 14px;
    line-height: 34px;
    color: #1e6f80;
    text-decoration: none;
    border: 1px solid #ddd;
    border-left-width: 0;
}

.pagination a:hover,
.pagination .active a {
    background-color: #1e6f80;
    color: #ffffff;
}

.pagination a:focus {
    background-color: #1e6f80;
    color: #ffffff;
}

.pagination .active a {
    color: #ffffff;
    cursor: default;
}

.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
    color: #999999;
    background-color: transparent;
    cursor: default;
}

.pagination li:first-child a {
    border-left-width: 1px;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.pagination li:last-child a {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.pagination-centered {
    text-align: center;
}

.pagination-right {
    text-align: right;
}

@media (min-width: 768px) {
    #pagination {
        text-align: left;
    }

    .pagination {
        width: 100%;
        height: 36px;
        margin: 18px auto;
        color: #1e6f80;
    }

    .pagination ul {
        display: inline-block;
        *display: inline;
        /* IE7 inline-block hack */
        *zoom: 1;
        margin-left: 0;
        color: #ffffff;
        margin-bottom: 0;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .pagination li {
        display: inline;
        color: #1e6f80;
    }

    .pagination a {
        float: left;
        padding: 0 14px;
        line-height: 34px;
        color: #1e6f80;
        text-decoration: none;
        border: 1px solid #ddd;
        border-left-width: 0;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}


/*******************
    유관기관
*******************/
#agencys {
    display: block;
}

#agencys h5 {
    text-align: left;
    padding-left: 10px;
}

#agencys ul {
    margin-bottom: 30px;
    padding: 0 10px;
}

#agencys ul li {
    margin-bottom: 15px;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    display: block;
    width: 100%;
}

#agencys ul li .agencybox {
    padding: 15px;
    font-size: 10pt;
}

#agencys ul li .agencybox .ag_title {
    font-size: 11pt;
    font-weight: bold;
    border-bottom: 1px solid #e3e3e3;
    padding: 5px 15px;
    margin: -15px -15px 10px -15px;
    background-color: #f9f9f9;
}

#agencys ul li .agencybox .ag_url {
    display: block;
    margin-bottom: 5px;
}

#agencys ul li .agencybox .ag_address,
#agencys ul li .agencybox .ag_tel {
    display: inline-block;
    font-size: 9pt;
}

#agencys ul li .agencybox .ag_address {
    text-align: left;
    width: 64%;
    font-size: 8pt;
}

#agencys ul li .agencybox .ag_tel {
    text-align: right;
    width: 34%;
    font-size: 8pt;
}

@media (min-width: 768px) {
    #agencys h5 {
        text-align: left;
    }

    #agencys ul {
        margin-bottom: 50px;
    }

    #agencys ul li {
        display: inline-table;
        width: 46%;
        margin: 0 1.5% 15px 1.5%;
    }

    #agencys ul li .agencybox {
        font-size: 11pt;
    }

    #agencys ul li .agencybox .ag_address,
    #agencys ul li .agencybox .ag_tel {
        font-size: 9pt;
    }

}

@media (min-width: 992px) {
    #agencys h5 {
        text-align: left;
    }

    #agencys ul {
        margin-bottom: 50px;
    }

    #agencys ul li {
        display: inline-table;
        width: 46%;
        margin: 0 1.5% 15px 1.5%;
    }

    #agencys ul li .agencybox {
        font-size: 11pt;
    }

    #agencys ul li .agencybox .ag_address,
    #agencys ul li .agencybox .ag_tel {
        font-size: 10pt;
    }

}

@media (min-width: 1200px) {
    #agencys h5 {
        text-align: left;
    }

    #agencys ul {
        margin-bottom: 50px;
    }

    #agencys ul li {
        display: inline-table;
        width: 30%;
        margin: 0 1.5% 15px 1.5%;
    }

    #agencys ul li .agencybox {
        font-size: 11pt;
    }

    #agencys ul li .agencybox .ag_address,
    #agencys ul li .agencybox .ag_tel {
        font-size: 10pt;
    }

}

/*******************
    로그인
*******************/
#signinForm .single_text {
    padding: 10px;
}

@media (min-width: 768px) {}


/*******************
    조직도
*******************/
.OrganizationChart_top {
    height: auto;
    background-image: none;
}

.OrganizationChart_top .container img {
    width: 100%;
}

table.OrganizationChart_table {
    font-size: 10pt;
    color: #6f5f60;
    margin-bottom: 0;
}

table.OrganizationChart_table th,
table.OrganizationChart_table td {
    text-align: center;
}

table.OrganizationChart_table td.text-left {
    text-align: left;
}

table.OrganizationChart_table thead th {
    background-color: #ffebb6;
    color: #2b1f05;
}

.OrganizationChart-responsive,
.OrganizationChart_table,
.OrganizationChart_table>tbody>tr>td,
.OrganizationChart_table>tbody>tr>th,
.OrganizationChart_table>tfoot>tr>td,
.OrganizationChart_table>tfoot>tr>th,
.OrganizationChart_table>thead>tr>td,
.OrganizationChart_table>thead>tr>th {
    border: 1px solid #4d4d4d;
}
.OrganizationChart_table>tbody>tr>td,
.OrganizationChart_table>tbody>tr>th,
.OrganizationChart_table>tfoot>tr>td,
.OrganizationChart_table>tfoot>tr>th,
.OrganizationChart_table>thead>tr>td,
.OrganizationChart_table>thead>tr>th {
    padding: 15px 10px;
}

.OrganizationChart_table>tbody>tr>td {
    vertical-align: middle;
}
.OrganizationChart_table .lineblock {
    display: block;
    float: left;
    margin-right: 30px;
}
.OrganizationChart_table .lineblock::before {
    content: "\f111";
    display: inline-block;
    width: 14px;
    font-family: "Font Awesome 5 Free";
    font-size: 8pt;
}
.OrganizationChart_table td.text-left :last-child {
    
}


@media (min-width: 768px) {
    .OrganizationChart_top {
        margin-bottom: 15px;
    }

    .OrganizationChart_top .container img {
        height: 417px;
        width: auto;
        margin: 0 auto;
    }

    .OrganizationChart-responsive {
        border: none;
    }

    table.OrganizationChart_table {
        font-size: 11pt;
    }

}

@media (min-width: 992px) {

    table.OrganizationChart_table {
        font-size: 11pt;
    }
}

@media (min-width: 1200px) {

    table.OrganizationChart_table {
        font-size: 11pt;
    }

}




.full_image img {
    max-width: 100%;
    height: auto;
}

