@charset "utf-8";

/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
mobile : 767px ~
         480px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/


/* Font
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* 본고딕 */
@font-face {
    font-family: 'Noto Sans KR';
    font-weight: 300;
    src: url('/tpl/webfont/NotoSansKR-Light.eot');
    src: url('/tpl/webfont/NotoSansKR-Light.eot?#iefix') format('embedded-opentype'),
        url('/tpl/webfont/NotoSansKR-Light.woff') format('woff'),
        url('/tpl/webfont/NotoSansKR-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-weight: 400;
    src: url('/tpl/webfont/NotoSansKR-Regular.eot');
    src: url('/tpl/webfont/NotoSansKR-Regular.eot?#iefix') format('embedded-opentype'),
        url('/tpl/webfont/NotoSansKR-Regular.woff') format('woff'),
        url('/tpl/webfont/NotoSansKR-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-weight: bold;
    src: url('/tpl/webfont/NotoSansKR-Bold.eot');
    src: url('/tpl/webfont/NotoSansKR-Bold.eot?#iefix') format('embedded-opentype'),
        url('/tpl/webfont/NotoSansKR-Bold.woff') format('woff'),
        url('/tpl/webfont/NotoSansKR-Bold.ttf') format('truetype');
}

/* 출처 : 이 사이트에는 네이버에서 제공한 나눔글꼴이 적용되어 있습니다. */
/* 나눔스퀘어 */
@font-face {
    font-family: 'Nanum Square';
    src: url('/tpl/webfont/NanumSquareR.eot');
    src: url('/tpl/webfont/NanumSquareR.eot?#iefix') format('embedded-opentype'),
        url('/tpl/webfont/NanumSquareR.woff') format('woff'),
        url('/tpl/webfont/NanumSquareR.ttf') format('truetype');
}

@font-face {
    font-family: 'Nanum Square';
    font-weight: bold;
    src: url('/tpl/webfont/NanumSquareB.eot');
    src: url('/tpl/webfont/NanumSquareB.eot?#iefix') format('embedded-opentype'),
        url('/tpl/webfont/NanumSquareB.woff') format('woff'),
        url('/tpl/webfont/NanumSquareB.ttf') format('truetype');
}




/* Reset
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans KR", sans-serif;
}

dl,
ul,
ol,
menu,
li {
    list-style: none;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #555;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:focus {
    outline: 0 !important;
}

iframe {
    border: none;
    width: 100%;
}

a {
    font-family: "Noto Sans KR", sans-serif;
    color: inherit;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
    color: #555;
}

a:hover,
a:active {
    text-decoration: none;
    color: #1766b6;
}

img {
    max-width: 100%;
}

textarea {
    max-width: 100%;
    resize: none;
}

@media only screen and (min-width: 320px) {
    body {
        min-width: 320px;
        overflow-x: hidden;
    }
}

.hidden {
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

#divWMSSLLoading {
    display: none;
}

/* Parallax
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.parallax {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}


/* Preloader
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.animationload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}

.loader {
    width: 200px;
    height: 200px;
    font-size: 24px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(/images/basic_resp/img/preloader.gif);
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}


/* Back to top (탑 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.back-to-top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 10px;
    right: 20px;
    display: none;
    text-align: center;
    z-index: 10000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #222;
}

.back-to-top i {
    color: #fff;
    font-size: 15px;
    display: block;
    line-height: 33px;
}


/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
    position: relative;
    min-width: 1200px;
    overflow-x: hidden;
}

#header {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    height: 90px;
    background: none;
    transition: all .2s ease-out;
}

#header.header-bg {
    background: #222;
    box-shadow: 2px 3px 15px rgba(0, 0, 0, 0.2);
}

.header-area {
    padding: 0 25px;
    margin: 0 auto;
    width: 1200px;
    box-sizing: border-box;
}

#L_SITE_LOGO {
    float: left;
}

#L_SITE_LOGO h1 {
    margin: 0;
}

#L_SITE_LOGO a {
    line-height: 85px;
}

#L_SITE_LOGO img {
    vertical-align: middle;
}

@media only screen and (max-width:1590px) {
    #header {
        height: auto;
    }
}

@media only screen and (max-width: 1200px) {
    #wrapper {
        min-width: 320px;
    }

    .header-area {
        width: 100%;
    }
}

@media only screen and (max-width: 980px) {
    .header-area {
        position: relative;
        padding: 0;
        height: 65px;
    }

    #L_SITE_LOGO {
        padding: 0 25px;
    }

    #L_SITE_LOGO a {
        display: block;
        line-height: 60px;
    }

    #L_SITE_LOGO img {
        width: 160px;
    }
}

@media only screen and (max-width: 767px) {
    .header-area {
        height: 50px;
    }

    #L_SITE_LOGO {
        padding: 0 20px;
    }

    #L_SITE_LOGO a {
        line-height: 45px;
    }

    #L_SITE_LOGO img {
        width: 130px;
    }
}


/* Navigation (상단 메뉴)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#gnb {
    z-index: 999;
}

.navigation .menu-item > a {
    display: inline-block;
    font-family: "Arial";
    font-size: 16px;
    color: #fff;
}

.navigation .menu-item.on > a {
    color: #038151;
}

.navigation .menu-item > a:hover,
.navigation .menu-item > a:active,
.navigation .menu-item > a:focus {
    text-decoration: none;
    color: #038151;
}

@media only screen and (min-width: 980px) {
    #menuArea {
        float: right;
    }

    #gnb {
        display: block !important;
    }

    .navigation {
        margin: 40px 0 0;
    }

    .navigation:after {
        content: "";
        display: block;
        clear: both;
    }

    .navigation .menu-item {
        position: relative;
        float: left;
        font-size: 14px;
    }

    .navigation .menu-item:before {
        display: inline-block;
        margin: 0 25px;
        content: "\00B7";
        color: #fff;
    }

    .navigation .menu-item:first-child:before {
        display: none;
    }

    .navigation .menu-item > a {
        letter-spacing: 0.2px;
    }
}

@media only screen and (max-width: 980px) {
    #gnb {
        display: none;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        background: #fff;
    }

    #gnb {
        position: absolute;
        top: 65px;
        border-bottom: 1px solid #ddd;
    }

    #gnb .navigation .menu-item:last-child a {
        border-bottom: 0;
    }

    #menuArea {
        width: 100%;
        height: 100%;
    }

    nav [data-type='menu-btn'] {
        z-index: 1000;
        position: absolute;
        right: 25px;
        top: calc(50% - 12px);
        width: 24px;
        height: 24px;
        border-radius: 5px;
        cursor: pointer;
        transition: .4s all linear;
    }

    nav [data-type='menu-btn'] span {
        display: block;
        position: absolute;
        left: 1px;
        width: 22px;
        height: 3px;
        transition: .3s all linear;
        background: #fff;
    }

    nav [data-type='menu-btn'] span:nth-child(1) {
        top: 4px;
        transform: rotate(0deg);
    }

    nav [data-type='menu-btn'] span:nth-child(2),
    nav [data-type='menu-btn'] span:nth-child(3) {
        top: 11px;
        transform: rotate(0deg);
    }

    nav [data-type='menu-btn'] span:nth-child(4) {
        top: 18px;
    }

    nav.open [data-type='menu-btn'] span:nth-child(1) {
        left: 50%;
        width: 0;
    }

    nav.open [data-type='menu-btn'] span:nth-child(2) {
        transform: rotate(45deg);
    }

    nav.open [data-type='menu-btn'] span:nth-child(3) {
        transform: rotate(-45deg);
    }

    nav.open [data-type='menu-btn'] span:nth-child(4) {
        left: 50%;
        width: 0;
    }

    .navigation .menu-item > a {
        padding: 0 25px;
        text-align: center;
        width: 100%;
        line-height: 40px;
        font-size: 15px;
        transition: none;
        border-bottom: 1px solid #ddd;
        color: #000;
    }

    .navigation .menu-item:first-child > a {
        border-top: 1px solid #ddd;
    }

    .navigation .menu-item.on > a {
        color: #fff;
    }
}

@media only screen and (max-width: 767px) {
    #gnb {
        top: 50px;
    }

    #btnMenuOpen {
        right: 20px;
    }

    nav [data-type='menu-btn'] {
        right: 20px;
    }

    .navigation .menu-item > a {
        padding: 0 20px;
    }
}


/* Button (공통 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.btn {
    font-family: "Malgun Gothic", sans-serif;
    text-transform: uppercase;
    border-radius: 0;
    line-height: 24px;
}

.btn:focus,
.btn:active {
    outline: none;
    color: #fff;
}

.btn-custom {
    border-radius: 3px;
    padding: 0.8em 1.8em;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-transform: uppercase;
    background-color: #003aaf;
    border-color: #003aaf;
    color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: #00208e;
    border-color: #00208e;
    color: #fff;
}

.btn-custom-outline {
    border-radius: 3px;
    padding: 0.8em 1.8em;
    color: #fff;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    text-transform: uppercase;
    background-color: transparent;
    border-color: #fff;
}

.btn-custom-outline:hover,
.btn-custom-outline:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, .5);
}

.btn-bar a {
    margin-right: 10px;
}

.form-control {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 3px;
    height: 38px;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-color: #003aaf;
}



/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
    padding: 30px 0px;
    width: 100%;
}

.footer-area {
    margin: 0 auto;
    padding: 0 50px;
    width: 1200px;
    box-sizing: border-box;
}

.footer-area:after {
    content: "";
    display: block;
    clear: both;
}

.foot-logo {
    float: left;
    padding: 0 40px 80px 0;
    width: 250px;
    box-sizing: border-box;
}

.footer-info {
    float: right;
    width: calc(100% - 250px);
}

.footer-menu {
    margin-bottom: 15px;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
    padding-left: 20px;
    line-height: 10px;
    border-left: 1px solid #ddd;
}

.footer-menu li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.footer-menu li a {
    line-height: 10px;
    font-weight: 400;
    font-size: 14px;
    color: #555;
}

.footer-menu li.privacy a {
    color: #038151;
}

.footer-info,
.footer-info a {
    color: #999;
}

.footer-info p:nth-of-type(1) {
    margin-bottom: 10px;
}

.footer-info span {
    color: #ddd;
}

@media only screen and (max-width:1200px) {
    .footer-area {
        width: 100%;
    }
}

@media only screen and (max-width:980px) {
    .footer-area {
        padding: 0 25px;
    }
}

@media only screen and (max-width:767px) {
    .footer-area {
        padding: 0 20px;
    }

    .foot-logo {
        float: none;
        padding: 0;
        margin: 0 auto 20px;
    }

    .footer-info {
        float: none;
        width: 100%;
        text-align: center;
    }

    .footer-menu {
        margin-bottom: 10px;
    }

    .footer-menu li {
        margin-left: 10px;
        padding-left: 10px;
    }

    .footer-menu li a {
        font-size: 12px;
    }

    .footer-info,
    .footer-info a {
        font-size: 12px;
    }

    .footer-info p:nth-of-type(1) {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width:480px) {}



/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#mainContents {
    z-index: 88;
}

#mainContents .section-title {
    font-family: 'Nanum Square';
}

#mainContents h2 {
    margin-bottom: 10px;
    font-family: 'Arial';
    font-weight: bold;
    line-height: 1;
    font-size: 40px;
}

#mainContents h2 + p {
    font-size: 15px;
}

/* ABOUT */
.section02 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem 0;
    width: 100%;
    background: url(/images/kor01r-17-0386/img_bg_section02.jpg) repeat-x center;
    background-size: 100% 100%;
}

.section02:before {
    z-index: 0;
    content: '';
    position: absolute;
    left: 0;
    top: 45rem;
    width: 100%;
    height: 41.1rem;
    background: url(/images/kor01r-17-0386/img_obj_section02.png) repeat-x center;
}

.section02 div._in {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto 10rem;
}

.section02 .pic-box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.section02 h2 {
    color: #333;
}

.section02 h2 + p {
    color: #777;
}

.section02 .section-title {
    margin-bottom: 5rem;
}

.section02 .img-area {
    background: url('/images/kor01r-17-0386/section02_img.jpg') no-repeat center center/cover
}

.section02 .txt-area {
    z-index: 1;
    padding: 0 5rem;
    width: 50%;
    font-size: 1.6rem;
}

.section02 .txt-area .slogan {
    margin-bottom: 30px;
    font-family: 'Nanum Square';
    font-weight: bold;
    line-height: 1.3;
    font-size: 125%;
    color: #038151;
}

.section02 .txt-area p {
    margin-bottom: 15px;
    color: #0b3727;
    font-weight: 400;
    font-size: 100%;
    line-height: 1.5;
}

.section02 .txt-area div._sign {
    display: inline-flex;
    flex-direction: column;
    margin-top: 1rem;
    color: #0b3727;
    font-weight: 400;
    font-size: 100%;
}

.section02 .txt-area div._sign span._date {
    font-size: 100%;
}

.section02 .txt-area div._sign strong {
    font-weight: 600;
    font-size: 156.25%;
}

.section02 .txt-area div._sign strong i {
    margin-left: 1rem;
    font-style: normal;
    font-weight: 400;
    font-size: 80%;
}

.section02 .text-box {
    z-index: 1;
    font-size: 1.6rem;
}

.section02 .text-box h3 {
    position: relative;
    margin-bottom: 20px;
    padding-left: 1.5rem;
    font-family: 'Nanum Square';
    font-weight: bold;
    line-height: 1;
    font-size: 125%;
    color: #038151;
}

.section02 .text-box h3:before {
    content: '';
    position: absolute;
    top: .4rem;
    left: 0;
    width: .7rem;
    height: 1.2rem;
    background: url("/images/kor01r-17-0386/img_ico_bullet.png") no-repeat center;
}

.section02 .text-box > span {
    color: #555;
    font-weight: 400;
    line-height: 1.5;
}

.section02 .text-box .title {
	font-family: 'Nanum Square';
    font-weight: bold;
    line-height: 1.3;
    font-size: 105%;
    color: #038151;
}




.section02 .text-box ul._point {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    grid-gap: .5rem 0;
    margin: 2.5rem 0;
    padding: 2rem;
    color: #1f7a59;
    font-weight: 400;
    font-size: 100%;
    line-height: 1.5;
    background: #f4f9f8;
    border: 1px solid #acdbd1;
}

.section02 .text-box ul._point li {
    position: relative;
    padding-left: 1rem;
    width: 100%;
}

.section02 .text-box ul._point li:before {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: 0;
    width: .4rem;
    height: .4rem;
    background: #acdbd1;
    border-radius: 100%;
}

.section02 .text-box ul._point li b {
    margin-right: 1rem;
}

.section02 .text-box ul._point span {}

/* PRODUCT */
.section03 {
    font-size: 1.6rem;
}

.section03 h3 {
    position: relative;
    margin-bottom: 20px;
    padding-left: 1.5rem;
    font-family: 'Nanum Square';
    font-weight: bold;
    line-height: 1;
    font-size: 125%;
    color: #038151;
}

.section03 h3:before {
    content: '';
    position: absolute;
    top: .3rem;
    left: 0;
    width: .7rem;
    height: 1.2rem;
    background: url(/images/kor01r-17-0386/img_ico_bullet.png) no-repeat center;
}

.section03 h3 .text-box {}

.section03 .text-box div._in {
    display: inline-flex;
    flex-direction: row;
    width: 100%;
}

.section03 .text-box div._in div.list-up {
    width: 40%;
}

.section03 .text-box div._in div.list-up ul {
    display: inline-flex;
    flex-direction: column;
    grid-gap: 1rem 0;
    color: #555;
    font-size: 100%;
    font-weight: 400;
}

.section03 .text-box div._in div.list-up ul li {
    position: relative;
    padding-left: 1rem;
}

.section03 .text-box div._in div.list-up ul li:before {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: 0;
    width: .4rem;
    height: .4rem;
    background: #ddd;
    border-radius: 100%;
}

.section03 > div {
    padding: 10rem 5rem 0;
    margin: 0 auto;
    width: 1200px;
    box-sizing: border-box;
}

.section03 .section-title {
    margin-bottom: 0;
    text-align: center;
}

.section03 div._table {
    width: 60%;
    font-weight: 400;
    font-size: 1.6rem;
}

.section03 div._table table {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.section03 div._table thead tr {
    background: #c5e7e0;
    border-bottom: 1px solid #acdbd1;
}

.section03 div._table thead tr th {
    padding: 1.1rem;
    color: #0b3727;
    font-weight: 400;
    text-align: center;
    border-left: 1px solid #acdbd1;
}

.section03 div._table thead tr th:nth-child(1) {
    border-left: none;
}

.section03 div._table tbody tr {
    border-bottom: 1px solid #d2e9e4;
}

.section03 div._table tbody tr:nth-child(1) {
    border-left: none;
}

.section03 div._table tbody tr td {
    padding: 1.1rem;
    color: #1f7a59;
    background: #f4f9f8;
    border-left: 1px solid #acdbd1;
}

.section03 div._table tbody tr td:nth-child(1) {
    text-align: center;
    background: #e4f2ef;
    border-left: none;
}

.section03 h2 {
    color: #333;
}

.section03 h2 + p {
    color: #bbb;
}

.section03 .text-box {
    padding: 8rem 5rem 10rem;
}

/* NOTICE */
.section04 {
    background: url(/images/kor01r-17-0386/section02_bg.jpg) no-repeat center center / cover;
    background-attachment: fixed;
}

.section04 > div {
    padding: 100px 50px;
    margin: 0 auto;
    width: 1200px;
    box-sizing: border-box;
}

.section04 .section-title {
    padding-bottom: 0;
    text-align: center;
}

.section04 h2 {
    color: #fff;
}

.section04 h2 + p {
    color: #777;
}

/* CONTACT */
.section05 {
    display: table;
    width: 100%;
    font-size: 1.6rem;
}

.section05:after {
    content: "";
    display: block;
    clear: both;
}

.section05 > div {
    padding: 8rem 5rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.section05 .section-title {
    padding: 10rem 5rem 0;
    text-align: center;
}

.section05 .section-title h2 {
    color: #333;
}

.section05 a {
    color: #fff;
}

.section05 h3 {
    position: relative;
    margin-bottom: 20px;
    padding-left: 1.5rem;
    font-family: 'Nanum Square';
    font-weight: bold;
    line-height: 1;
    font-size: 125%;
    color: #038151;
}

.section05 h3:before {
    content: '';
    position: absolute;
    top: .3rem;
    left: 0;
    width: .7rem;
    height: 1.2rem;
    background: url(/images/kor01r-17-0386/img_ico_bullet.png) no-repeat center;
}

.section05 div._in {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 4rem 0;
}

.section05 div._in div._box {
    width: 50%;
}

.section05 div._in div._box span {
    font-weight: 400;
    font-size: 100%;
}

.section05 div._in div._box .pic-box {
    position: relative;
}

.section05 div._in div._box .pic-box > img {
    margin-left: -1rem;
    position: relative;
}

.section05 div._in div._box .pic-box a {
    position: absolute;
    bottom: 0;
    right: 0;
}

.section05 div._in div._box .mov-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.section05 div._in div._box .mov-box div._inbox {
    position: relative;
    padding-bottom: 56.26%;
    overflow: hidden;
    height: 443px;
    width: 40rem;
}

.section05 div._in div._box .mov-box iframe {
    width: 100%;
    height: 100%;
}

.section05 .info-area {
    text-align: left;
    color: #fef3f4;
}

.section05 .info-area > div {
    float: right;
    padding: 50px;
    width: 600px;
    box-sizing: border-box;
}

.section05 .info-area dl {
    margin-top: 30px;
}

.section05 .info-area dl:first-child {
    margin-top: 0;
}

.section05 .info-area dt {
    font-family: 'Arial';
    font-weight: normal;
    font-size: 28px;
}

.section05 .info-area dt img {
    margin: -5px 10px 0 0;
}

.section05 .info-area dd {
    font-size: 17px;
}


.section05 .map-area .root_daum_roughmap {
    width: 100%;
}

.section05 .text-box div._in div.list-up {
    display: inline-flex;
    flex-direction: column;
    grid-gap: 4rem 0;
}

.section05 .text-box div._in div.list-up span {
    font-weight: 400;
    font-size: 100%;
}

.section05 .text-box div._in div.list-up ul {
    display: inline-flex;
    flex-direction: column;
    grid-gap: 1rem 0;
    color: #555;
    font-size: 100%;
    font-weight: 400;
}

.section05 .text-box div._in div.list-up ul li {
    position: relative;
    padding-left: 1rem;
}

.section05 .text-box div._in div.list-up ul li:before {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: 0;
    width: .4rem;
    height: .4rem;
    background: #ddd;
    border-radius: 100%;
}

.section06 {}

.section06 > div {
    padding: 100px 50px;
    margin: 0 auto;
    width: 100%;
    max-width: 1920px;
    box-sizing: border-box;
}

.section06 .section-title {
    padding-bottom: 0;
    text-align: center;
}

.section06 .section-title h2 {
    color: #333;
}

@media only screen and (max-width:1200px) {
    .section03 > div {
        width: 100%;
    }

    .section04 > div {
        width: 100%;
    }

    .section05 .info-area > div {
        float: none;
        width: 100%;
    }

    .section02 br {
        display: none;
    }

    .section02 br._h {
        display: block;
    }

    .section02 .text-box {
        padding: 0 5rem;
    }
}

@media only screen and (max-width:980px) {
    .section02:before {
        top: 20rem;
    }

    .section02 h2 {
        text-align: center;
    }

    .section02 div._in {
        flex-direction: column;
    }

    .section02 .pic-box {
        width: 80%;
    }

    .section02 .txt-area {
        padding: 0;
        width: 80%;
    }

    .section02 .txt-area div._sign {
        align-items: flex-end;
        width: 100%;
    }

    .section02 .section-title {
        margin-bottom: 50px;
    }

    .section02 .txt-area .slogan {
        margin-bottom: 15px;
    }

    .section02 .txt-area p {
        text-align: left;
    }

    .section02 .txt-area .slogan br:nth-child(1) {
        display: block;
    }

    .section02 .text-box {
        margin: 0 auto;
        padding: 0;
        width: 80%;
        text-align: left;
    }

    .section02 .text-box ul._point {
        grid-gap: 1.5rem 0;
    }

    .section02 .text-box ul._point li {
        position: relative;
        padding-left: 1rem;
        display: inline-flex;
        flex-direction: column;
    }

    .section03 .text-box div._in {
        flex-direction: column;
        align-items: center;
        grid-gap: 6rem 0;
    }

    .section03 .text-box div._in div.list-up,
    .section03 div._table {
        width: 80%;
    }

    .section05 div._in {
        flex-direction: column;
        align-items: center;
    }

    .section05 .text-box div._in div.list-up,
    .section05 div._in div._box {
        width: 80%;
    }

    .section03 > div {
        padding: 5rem 0;
    }

    .section04 > div {
        padding: 5rem 0;
    }

    .section05 > div {
        padding: 5rem 0;
    }

    .section05 .info-area > div {
        padding: 50px 25px;
    }

    .section05 .map-area .root_daum_roughmap .wrap_map {
        height: 583px !important;
    }

    .section05 div._in div._box .mov-box iframe {
        min-height: 50vw;
    }
}

@media only screen and (max-width:767px) {
    #mainContents h2 {
        margin-bottom: 5px;
        font-size: 30px;
    }

    #mainContents h2 + p {
        font-size: 13px;
    }

    .section02 {
        display: block;
        width: 100%;
        text-align: center;
        border-top: 1px solid #000;
    }

    .section02 .section-title {
        margin-bottom: 30px;
    }

    .section02 > div {
        display: block;
        width: 100%;
    }

    .section02 .img-area {
        height: 220px;
    }

    .section02 .txt-area,
    .section03,
    .section05 {
        font-size: 1.5rem;
    }

    .section03 .text-box div._in div.list-up ul li:before,
    .section05 .text-box div._in div.list-up ul li:before {
        top: .8rem;
    }

    .section03 .section-title {
        padding-bottom: 0;
    }

    .section03 .text-box {
        padding: 5rem 0;
    }

    .section03 div._table table {
        font-size: 1.3rem;
    }

    .section04 > div {
        padding: 50px 20px;
    }

    .section04 .section-title {
        margin-bottom: 30px;
    }

    .section05 .section-title {
        text-align: center;
    }

    .section05 .info-area > div {
        padding: 50px 20px;
    }

    .section05 .info-area dl {
        margin-top: 15px;
    }

    .section05 .info-area dt {
        font-size: 18px;
    }

    .section05 .info-area dt img {
        margin: -3px 10px 0 0;
        width: 15px;
    }

    .section05 .info-area dd {
        font-size: 14px;
    }

    .section05 .info-area dd br {
        display: none;
    }

    .section05 .map-area .root_daum_roughmap {
        width: 100%;
    }

    .section05 .map-area .root_daum_roughmap .wrap_map {
        height: 443px !important;
    }

    .section05 div._in div._box .pic-box a {
        max-width: 18rem;
    }

    .section02 .txt-area,
    .section02 .text-box,
    .section03 .text-box div._in div.list-up,
    .section03 div._table,
    .section05 .text-box div._in div.list-up,
    .section05 div._in div._box {
        width: 90%;
    }

    .section05 div._in div._box .pic-box .mov-box {
        right: 50%;
        margin-right: -140px;
        max-width: 280px;
    }
}

@media only screen and (max-width:680px) {
    .section05 {
        display: block;
        width: 100%;
    }

    .section05 > div {
        display: block;
        width: 100%;
    }

    .section05 .map-area .root_daum_roughmap .wrap_map {
        height: 300px !important;
    }

    .section05 div._in div._box .pic-box .mov-box {
        bottom: -23rem;
    }

    .section05 div._in div._box .pic-box .mov-box div._inbox {
        width: 100%;
        height: 37rem;
    }
}



/* Main Visual  - section01 (메인 비주얼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.main-visual .carousel-inner > .item {
    height: 788px;
}

.main-visual .carousel-inner > .item.main-img01 {
    background: url('/images/kor01r-17-0386/section01_bg01.jpg') no-repeat center center/cover;
}

.main-visual .carousel-inner > .item.main-img02 {
    background: url('/images/kor01r-17-0386/section01_bg02.jpg') no-repeat center center/cover;
}

.main-visual .carousel-inner > .item.main-img03 {
    background: url('/images/kor01r-17-0386/section01_bg03.jpg') no-repeat center center/cover;
}

.main-visual .carousel-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    padding: 0 5rem;
    max-width: 1920px;
    width: 100%;
    height: 100%;
}

/*
.main-visual .carousel-caption:before,
.main-visual .carousel-caption:after {
    display: block;
    content: url('/images/kor01r-17-0386/section01_icon01.png');
}

.main-visual .carousel-caption:before {
    position: absolute;
    top: 10px;
    left: 0;
}

.main-visual .carousel-caption:after {
    position: absolute;
    bottom: 0;
    right: 0;
}
*/
.main-visual .main-tit {
    position: relative;
    padding-top: 0;
    margin-bottom: 25px;
    font-family: 'Arial';
    letter-spacing: -1px;
    line-height: 1;
    font-size: 80px;
    font-weight: bold;
    text-shadow: none;
}

.main-visual .sub-tit {
    position: relative;
    padding: 0;
    min-height: 145px;
    height: 145px;
    font-family: 'Nanum Square';
    font-size: 22px;
    color: #fff;
    text-shadow: none;
    white-space: pre-line;
    text-align: right;
    margin-right: 5rem;
}

/*
.main-visual .main-tit:before,
.main-visual .sub-tit:after {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    content: "";
    margin: auto;
    width: 595px;
    border: 1px solid #fff;
}

.main-visual .main-tit:before {
    top: 0;
    height: 75px;
    text-align: left;
    border-bottom: 0;
}

.main-visual .sub-tit:after {
    bottom: 0;
    height: 145px;
    text-align: right;
    border-top: 0;
}
*/
.main-visual .carousel-indicators {
    bottom: 170px;
}

.main-visual .carousel-indicators li {
    margin: 0 4px;
    width: 15px;
    height: 15px;
    box-sizing: border-box;
    border: 1px solid #fff;
}

.main-visual .carousel-indicators li.active {
    background: #fff;
}


@media screen and (max-width:980px) {
    .main-visual .carousel-inner > .item {
        height: 650px;
    }

    .main-visual .carousel-caption {
        align-items: center;
    }

    .main-visual .main-tit {}

    .main-visual .sub-tit {
        text-align: center;
        margin-right: 1%;
    }

    .main-visual .main-tit:before,
    .main-visual .sub-tit:after {
        width: 450px;
    }

    .main-visual .main-tit:before {
        height: 45px;
    }

    .main-visual .sub-tit:after {
        height: 115px;
    }

    .main-visual .carousel-indicators {
        bottom: 120px;
    }
}

@media screen and (max-width:767px) {
    .main-visual .carousel-inner > .item {
        height: 480px;
    }

    .main-visual .carousel-caption {
        padding: 0 2rem;
    }

    .main-visual .main-tit {
        width: 80%;
    }

    .main-visual .sub-tit {
        font-size: 1.6rem;
    }

    .main-visual .main-tit:before,
    .main-visual .sub-tit:after {
        width: 300px;
    }

    .main-visual .main-tit:before {
        height: 25px;
    }

    .main-visual .sub-tit:after {
        height: 85px;
    }

    .main-visual .carousel-indicators {
        bottom: 85px;
    }

    .main-visual .carousel-indicators li {
        margin: 0 2px;
        width: 12px;
        height: 12px;
    }
}


		