@charset "utf-8";

/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1150px
mobile : 767px ~
         480px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/


/* Font
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
@import url('https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css');

/* 배민 주아 */
@font-face {
    font-family: 'BMJUA';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BMJUA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* 나눔스퀘어 네오*/
@font-face {
    font-family: 'NanumSquareNeo-Variable';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/NanumSquareNeo-Variable.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/*OA Gothic*/
@font-face {
    font-family: 'OA Gothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/OAGothic-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'TheJamsil5Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil5Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'OA Gothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/OAGothic-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'OA Gothic';
    src: url('OAGothic-ExtraBold.eot');
    src: url('OAGothic-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('OAGothic-ExtraBold.woff2') format('woff2'),
        url('OAGothic-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* 본고딕 */
@font-face {
    font-family: 'Noto Sans';
    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';
    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';
    font-weight: 700;
    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 Myeongjo';
    font-weight: 700;
    src: url('/tpl/webfont/NanumMyeongjoExtraBold.eot');
    src: url('/tpl/webfont/NanumMyeongjoExtraBold.eot?#iefix') format('embedded-opentype'),
        url('/tpl/webfont/NanumMyeongjoExtraBold.woff') format('woff'),
        url('/tpl/webfont/NanumMyeongjoExtraBold.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: 'OA Gothic', sans-serif;
}

dl,
ul,
ol,
menu,
li {
    list-style: none;
    color: #444;
}

body {
    font-family: 'OA Gothic', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #444;
    letter-spacing: -1px;
}

*,
*: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: 'OA Gothic', sans-serif;
    color: inherit;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
    color: #444;
}

a:hover,
a:active {
    text-decoration: none;
    color: #f6b62f;
}

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: #f6b62f;
}

.back-to-top i {
    color: #fff;
    font-size: 15px;
    display: block;
    line-height: 33px;
}


/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
    position: relative;
    min-width: 1150px;
}

#header {
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    height: 90px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.header-area {
    padding: 0 25px;
    margin: 0 auto;
    width: 1150px;
    box-sizing: border-box;
}

#L_SITE_LOGO {
    float: left;
}

#L_SITE_LOGO h1 {
    margin: 0;
width:200px;
}

#L_SITE_LOGO a {
    line-height: 90px;
}

#L_SITE_LOGO img {
    vertical-align: middle;
}

@media only screen and (max-width:1590px) {
    #header {
        height: auto;
    }
}

@media only screen and (max-width: 1150px) {
    #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: 65px;
    }

    #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: 50px;
    }

    #L_SITE_LOGO img {
        width: 130px;
    }
}


/* Navigation (상단 메뉴)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#gnb {
    z-index: 999;
}

.navigation .menu-item > a {
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    color: #000;
}

.navigation .menu-item.on > a {
    color: #f6b62f;
}

.navigation .menu-item > a:hover,
.navigation .menu-item > a:active,
.navigation .menu-item > a:focus {
    text-decoration: none;
    color: #f6b62f;
}
/*
@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;
        margin-left: 25px;
    }

    .navigation .menu-item:first-child {
        margin-left: 0;
    }
}
*/

    #menuArea {
        width: 100%;
        height: 100%;
    }

    #gnb {
        display: none;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        background: #fff;
    }

    #gnb {
        position: absolute;
        top: 90px;
        left:0;
        border-bottom: 1px solid #ddd;
    }

    #gnb .navigation .menu-item:last-child a {
        border-bottom: 0;
    }

    .navigation {
        margin-top:-1px;
        left:0;
    }

    nav [data-type='menu-btn'] {
        z-index: 1000;
        position: absolute;
        right: 0px;
        left:50%;
        margin-left:500px;
        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: #000;
    }

    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;
    }

@media only screen and (max-width: 1120px) {
    nav [data-type='menu-btn'] {
        right: 25px;
        left:auto;
        margin-left:0;
    }
}

@media only screen and (max-width: 980px) {
    #gnb {
        top: 65px;
    }
}

@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 {
    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: #f6b62f;
    border-color: #f6b62f;
    color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: #f6b62f;
    border-color: #f6b62f;
    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: #f6b62f;
}

.board-wrap .tit,
.board-wrap td.date {
    color: #f6b62f !important;
}

/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
    padding: 30px 0px;
    width: 100%;
    background: #1a191f;
    color: #fff;
}

.footer-area {
    margin: 0 auto;
    padding: 0 10%;
    width: 1150px;
    box-sizing: border-box;
    text-align: center;
}

#footer p,
#footer li {
    font-size: 13px;
    letter-spacing: 0;
    color: #adadad;
	word-break:keep-all;
}

.footer-menu {
    margin: 0 auto 30px;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
    padding-left: 20px;
    line-height: 8px;
    border-left: 1px solid #fff;
}

.footer-menu li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.footer-menu li a {
    line-height: 8px;
    font-size: 13px;
    color: #fff;
}

.footer-info {
    text-align: center;
    margin-bottom: 10px;
}

.footer-info span {
    color: #fff;
}

.footer-info + p a {
    color: #adadad;
}

@media only screen and (max-width:1150px) {
    .footer-area {
        width: 100%;
    }
}

@media only screen and (max-width:767px) {
    .footer-area {
        padding: 0 25px;
        box-sizing: border-box;
    }

    .footer-menu li {
        margin-left: 10px;
        padding-left: 10px;
    }
}

@media only screen and (max-width:480px) {
    .footer-area {
        padding: 0 20px;
    }

    .footer-menu li {
        margin-left: 5px;
        padding-left: 5px;
    }
}



/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* 공통 */
#mainContents {
    z-index: 88;
    overflow-x: hidden;
}

#mainContents h2 {
    line-height: 1;
    color: #000;
    font-weight: bold;
    font-size: 5rem;
    text-align: center;
}

#mainContents h2:after {
    content: "";
    display: block;
    margin: 30px auto 30px;
    width: 33px;
    height: 3px;
    background: #000;
}

/* about us */
.section02 {
    padding: 90px 0 170px;
    background: url('/images/kor14r-17-0389/bg_section02.jpg') no-repeat center bottom/cover;
}

.section02 > div {
    margin: 0 auto;
    width: 1150px;
}

#mainContents .section02 h2 {
    color: #fff;
}

#mainContents .section02 h2:after {
    background: #fff;
}

.section02 .txt-area {
    position: relative;
    margin: 0 auto;
    padding: 13rem 2rem 10rem;
    box-sizing: border-box;
    text-align: center;
    font-family: 'OA Gothic';
	word-break:keep-all;
}

.section02 .txt-area p {
    margin: 40px 0;
    font-family: 'OA Gothic';
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.4;
    white-space: pre-line;
    word-break: keep-all;
    letter-spacing: 0;
}

.section02 .txt-area p i {
    font-style: normal;
    color: #f8b600;
}

.section02 .txt-area p br {
    display: none;
}

.section02 .txt-area .strong-msg {
    margin-top: 0;
    line-height: 1;
    font-weight: 800;
    font-size: 5rem;
    color: #f8b600;
}

.section02 .txt-area strong {
    color: #f8b600;
    font-size: 4rem;
}

/* WHY US */
.section03 {
    padding: 90px 0 60px;
    margin: 0 auto;
    /*max-width: 1150px;*/
    width: 100%;
}

#mainContents .section03 h2 {
    color: #000;
}

#mainContents .section03 .big_font {
    font-family: 'TheJamsil5Bold';
color: #fab500;
font-size: 5rem;
}

#mainContents .section03 .big_font span {
font-family: 'TheJamsil5Bold';
color: #fab500;
font-size: 20rem;
display:block;
}

#mainContents .section03 .box3 {
    width:60%;
display:table;
margin: 0 auto;
padding:30px 0;
text-align:center;
}

#mainContents .section03 .box3 div {
display:table-cell;
text-align:center;
vertical-align:middle;
padding:10px;
}

#mainContents .section03 .box3 .box3_01 {
    width:15%;
}

#mainContents .section03 .box3 .box3_02 {
    width:50%;
}

#mainContents .section03 .box3 .box3_03 {
    width:15%;
}

#mainContents .section03 h2:after {
    background: #000;
}

.section03 div._in {
    display: flex;
    flex-direction: row;
    grid-gap: 7rem;
    justify-content: center;
    text-align: center;
}

.section03 div.txt-box h3 {
    color: #000;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.3;
    white-space: pre-line;
    word-break: keep-all;
	text-align:center;
	margin-bottom:30px;
}

.section03 div._in div.txt-box {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    grid-gap: 4rem;
}

.section03 div.txt-box p {
    color: #000;
    font-size: 2rem;
    line-height: 1.3;
    white-space: pre-line;
    word-break: keep-all;
}

.section03 div.txt-box p strong {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.3;
    white-space: pre-line;
    word-break: keep-all;
background:#fab500;
}

.section03 div.txt-box span {
    color: #000;
    font-size: 2.5rem;
    line-height: 1.3;
    white-space: pre-line;
    word-break: keep-all;
}

.section03 div.txt-box span br {
    display: none;
}

.section03 div.txt-box span i {
    font-style: normal;
    color: #f1c142;
font-weight:bold;
}

.section03 div._in div.txt-box h3 {
    color: #000;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.3;
    white-space: pre-line;
    word-break: keep-all;
}

.section03 div._info {
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 42rem;
    width: 100%;
}

.section03 div._in div.txt-box strong {
    font-size: 2.5rem;
    line-height: 1;
    color: #000;
}

.section03 div._in div.txt-box strong i {
    font-style: normal;
    color: #f1c142;
}

.section03 div._in div.txt-box p {
    color: #000;
    font-size: 2rem;
    line-height: 1.3;
    white-space: pre-line;
    word-break: keep-all;
}

.section03 div._in div.txt-box span {
    color: #000;
    font-size: 2.5rem;
    line-height: 1.3;
    white-space: pre-line;
    word-break: keep-all;
}

.section03 div._in div.txt-box span br {
    display: none;
}

.section03 div._in div.txt-box span i {
    font-style: normal;
    color: #f1c142;
}

.section03 div._info span {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 11.8rem;
    height: 11.8rem;
    color: #f6b62f;
    font-weight: 600;
    font-size: 2rem;
    background: rgba(0, 0, 0, .4);
    border: 3px solid #fff;
    border-radius: 100%;
}

.section03 div._in div.txt-box ul {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;

}

.section03 div._in div.txt-box ul li {
    position: relative;
    padding-left: 1rem;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.6;
    white-space: pre-line;
    word-break: keep-all;
    letter-spacing: 0;
    font-weight: 400;
}

.section03 div._in div.txt-box ul li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 100%;
}



#mainContents .section04 {
    margin: 0 auto;
    padding: 70px 0;
    width: 100%;
    background: #f8b600;
}

#mainContents .section04 ul li {
    width: 25%;
    padding: 3px;
    float: left;
}

#mainContents .section04 ul li img {
    width: 100%
}

#mainContents .section04 p {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.3;
    color: #000;
    padding-bottom: 60px;
	word-break:keep-all;
}

#mainContents .section04 p > span {
	display:inline;
}

#mainContents .section04 p strong {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.4;
    color: #000;
    padding-bottom: 30px;
}


.section003 {
    margin: 0 auto;
    padding: 90px 0 170px;
    width: 100%;
    background: url(/images/kor14r-17-0389/bg_section004.png) no-repeat center bottom/cover;
}

#mainContents .section003 h2 {
    color: #fff;
}

#mainContents .section003 h2:after {
    background: #fff;
}

.section003 div._in {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    color: #fff;
	word-break:keep-all;
}

.section003 div._in div.txt-box {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section003 div._in div.txt-box h3 {
    width: 100%;
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 4rem;
    line-height: 1.4;
}

.section003 div._in div.txt-box h3 i {
    color: #f6b62f;
    font-style: normal;
}

.section003 div._in div.txt-box > strong {
    display: inline-flex;
    justify-content: center;
    margin: 3rem 0;
    color: #f6b62f;
    font-size: 2.5rem;
    width: 100%;
}


.section003 div._in div.txt-box p {
   display: inline-flex;
    justify-content: center;
    margin: 3rem 0;
width: 100%;
    color: #fff;
    font-size: 2.5rem;
}

.section003 div._in div.txt-box ul {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    grid-gap: 1.2rem;
}

.section003 div._in div.txt-box ul li {
    color: #fff;
    font-size: 2.5rem;
font-weight:bold;
}

.section003 div._in div.txt-box ul li > span {
	display:none;
}

.section003 div._in div.txt-box ul li i {
    color: #f6b62f;
    font-style: normal;
}

.section003 div._in div._process {
    display: flex;
    margin: 4rem auto;
    width: 100%;
    max-width: 120rem;
    flex-direction: row;
    grid-gap: 0 1rem;
}


.section003 div._in div._process div._in {
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    grid-gap: 1rem;
    width: 15rem;
    height: 15rem;
    background: rgba(255, 255, 255, .9);
}

.section003 div._in div._process div._in figure {}

.section003 div._in div._process div._in strong {
    color: #000;
    font-size: 1.6rem;
    white-space: pre-line;
    word-break: keep-all;
    text-align: center;
}

.section05 {
    padding: 90px 0 170px;
    margin: 0 auto;
    max-width: 1150px;
    width: 100%;
}

.section05 h2 {
    color: #fff;
}

#mainContents .section05 h2:after {
    margin: 30px auto 80px;
}

#mainContents .section05 h2 + p {
    margin-bottom: 80px;
    text-align: center;
    font-size: 18px;
    color: #555;
}

#mainContents .section05 div._in {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 0 0 6rem;
    width: 100%;
    height: 46.7rem;
    background: url('/images/kor14r-17-0389/img_section05_01.jpg') no-repeat center center/cover;
}

#mainContents .section05 div._in h3 {
    color: #fff;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.5;
    white-space: pre-line;
    word-break: keep-all;
}

#mainContents .section05 div._in h3 b {
    color: #f6b62f;
}

#mainContents .section05 div._in ul {
    display: inline-flex;
    flex-direction: column;
    grid-gap: 1.5rem;
    margin-top: 4rem;
}

#mainContents .section05 div._in ul li {
    position: relative;
    padding-left: 1rem;
    color: #fff;
    font-weight: 400;
    font-size: 1.8rem;
}


#mainContents .section05 div._in ul li:before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: .4rem;
    height: .4rem;
    background: #fff;
    border-radius: 100%;
}

#mainContents .section06 {
    margin: 0 auto;
    padding: 90px 0 170px;
    max-width: 1150px;
    width: 100%;
}

#mainContents .section07 {
    margin: 0 auto;
    padding: 90px 0 170px;
    background: url("/images/kor14r-17-0389/bg_section07.jpg") no-repeat center bottom/cover;
}

#mainContents .section07 h2 {
    color: #fff;
}

#mainContents .section07 h2:after {
    background: #fff;
}

.section07 > div {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    max-width: 1150px;
    width: 100%;
}

.section07 .map-area {
    width: 50%;
    vertical-align: middle;
}

.section07 .map-area .root_daum_roughmap {
    width: 100%;
}

.section07 .info-area {
    padding: 40px;
    width: 50%;
    box-sizing: border-box;
    vertical-align: middle;
    font-weight: 400;
    font-size: 18px;
	word-break:keep-all;
}

.section07 .info-area dl {
    margin-top: 30px;
}

.section07 .info-area dl:first-child {
    margin-top: 0;
}

.section07 .info-area dt {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 15px;
    line-height: 1;
    text-align: center;
    border-radius: 30px;
    color: #fff;
    background: #f6b62f;
}

.section07 .info-area dd {
    line-height: 1.3;
    color: #fff;
}

@media only screen and (max-width:1150px) {
    .section02 .txt-area .strong-msg {
        font-size: 5.5rem;
    }

    .section02 .txt-area strong {
        font-size: 5rem;
    }

    .section02 > div {
        width: 100%;
    }

    .section03 {
        padding: 90px 25px 170px;
        width: 100%;
        box-sizing: border-box;
    }

    .section04 {
        padding: 90px 25px 170px;
    }

    .section04 > div {
        width: 100%;
    }

    .section05,
    .section06,
    .section07 {
        padding: 90px 25px 170px;
        width: 100%;
    }
}

@media only screen and (max-width:980px) {
    #mainContents h2 {
        font-size: 4.5rem;
    }

    #mainContents h2:after {
        margin: 20px auto 60px;
    }

    .section02 {
        padding: 70px 0 120px;
    }

    .section02 .txt-area {
        padding: 100px 40px 70px;
    }

    .section02 .txt-area .strong-msg {
        font-size: 4.5rem;
    }

    .section02 .txt-area strong {
        font-size: 4rem;
    }

    .section02 .txt-area p br {
        display: block;
    }

    .section02 .txt-area p {
        font-size: 2.5rem;
        white-space: normal;
    }

    .section03 {
        padding: 70px 25px 120px;
    }

    .section03 div._in {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .section03 div._in div.txt-box h3 {
        font-size: 4.5rem;
    }

    .section03 div._in div.txt-box span {
        font-size: 1.6rem;
    }

#mainContents .section03 .box3 {
    width:100%;
}

#mainContents .section03 .box3 .box3_01 {
	width:100%; /*15%;*/
}

#mainContents .section03 .box3 .box3_02 {
	width:100%;/*50%;*/
}

#mainContents .section03 .box3 .box3_03 {
	width:100%; /*15%;*/
}

.section03 div._in div.txt-box p {
        font-size: 1.6rem;
    }

    .section003 div._in div._process {
        grid-gap: 0;
    }

    .section003 div._in div._process div._in {
        width: calc(100%/5 - 1rem);
        height: calc(100vw/5 - 2rem);
        max-width: 11.5rem;
        max-height: 11.5rem;
    }

    .section003 div._in div._process div._in figure {
        width: 3rem;
    }

    .section003 div._in div._process div._in strong {
        font-size: 1.4rem;
    }

    #mainContents .section04 {
        padding: 70px 0 120px;
    }

    #mainContents .section04 p {
        text-align: center;
        font-size: 17px;
    }

	#mainContents .section04 p > span {
	display:block;
	}

    #mainContents .section04 ul li {
        width: 50%;
    }

    #mainContents .section05 {
        padding: 70px 0 120px;
    }

    #mainContents .section05 h2 + p {
        margin-bottom: 60px;
    }

    #mainContents .section05 div._in {
        background: none;
        padding: 0;
        justify-content: center;
        align-items: center;
    }

    #mainContents .section05 div._in h3 {
        font-size: 2.5rem;
        text-align: center;
    }

    #mainContents .section05 div._in:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(/images/kor14r-17-0389/img_section05_01.jpg) no-repeat center center/cover;
        z-index: -1;
        opacity: .2;
    }

    #mainContents .section05 div._in ul {
        padding: 0 1rem;
    }

    #mainContents .section05 div._in:before {
        z-index: -2;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #1b1b1b;
    }

    #mainContents .section06 {
        padding: 70px 25px 120px;
    }

    #mainContents .section07 {
        padding: 70px 25px 120px;
    }

    #mainContents h2:after .section07 > div {
        flex-direction: column;
        width: 100%;
    }

    .section07 .map-area,
    .section07 .info-area {
        width: 100%;
    }

    .section07 > div {
        flex-direction: column;
    }

    .section07 .info-area {
        margin-top: 3rem;
        padding: 0;
    }
}

@media only screen and (max-width:767px) {
    #mainContents h2 {
        font-size: 30px;
    }

    #mainContents h2:after {
        margin: 15px auto 40px;
    }

    #mainContents .section02 {
        padding: 50px 0;
    }

    .section02 .txt-area {
        left: auto;
        padding: 70px 25px 50px;
        margin: 0 20px;
        width: calc(100% - 40px);
        text-align: center;
    }

    .section02 .txt-area .strong-msg {
        font-size: 3rem;
    }

    .section02 .txt-area strong {
        font-size: 2.5rem;
    }

    #mainContents .section02 .txt-area:after {
        margin: -25px 0 0 -25px;
        width: 50px;
        height: 50px;
    }

    #mainContents .section03 {
        padding: 50px 20px;
    }

    .section003 div._in div.txt-box h3 {
        font-size: 2.5rem;
    }

    .section003 div._in div.txt-box {
        padding: 0 2rem;
    }

#mainContents .section03 .box3 {
    width:100%;
margin: 0 auto;
}

#mainContents .section03 .box3 .box3_01, .box3_02, .box3_03  {
    width:100%;
}

#mainContents .section03 .box3 div {
    width:100%;
text-align:center;
vertical-align:top;
margin:30px 0;
display:block;
}

    .section003 div._in div.txt-box ul li {
        font-size: 1.6rem;
		padding-left:52px;
		text-indent:-52px;
    }


	.section003 div._in div.txt-box ul li > span {
	display:inline;
}


    .section003 div._in div.txt-box > strong {
        font-size: 2rem;
    }

    #mainContents .section04 {
        padding: 50px 20px;
    }

    .section003 div._in div._process {
        grid-gap: 2rem;
    }

    .section003 div._in div._process div._in figure {
        width: 2rem;
    }

    .section003 div._in div._process div._in strong {
        font-size: 1.3rem;
    }

    .section05 {
        padding: 50px 20px;
    }

    #mainContents .section05 h2:after {
        margin: 15px auto 40px;
    }

    #mainContents .section05 h2 + p {
        margin-bottom: 40px;
        font-size: 15px;
    }

    #mainContents .section05 div._in ul li {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width:480px) {
    .section02 .txt-area p {
        margin-top: 25px;
        font-size: 15px;
    }

    .section03 div._in div.txt-box h3 {
        font-size: 2rem;
    }

    .section003 div._in div._process {
        flex-direction: column;
    }

    .section003 div._in div._process div._in {
        width: 12rem;
        height: 12rem;
    }

    #mainContents .section05 div._in h3 {
        font-size: 2rem;
    }

    .section07 .info-area dd {
        font-size: 1.4rem;
        line-height: 1.5;
    }
}


/* Main Visual  - section01 (메인 비주얼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */




.main-visual {
    padding-top: 90px;
}

.main-visual .carousel-inner > .item {
    height: 860px;
}

.main-visual .carousel-inner > .item.main-img01 {
    background: url('/images/kor14r-17-0389/img_mainvisual_01.jpg') no-repeat #000 center center/cover;
}

.main-visual .carousel-inner > .item.main-img02 {
    background: #000;
}

/*
.main-visual .carousel-inner > .item.main-img01 {
    background: url('/images/kor14r-17-0389/section01_bg.jpg') no-repeat center center/cover;
}

.main-visual .carousel-inner > .item.main-img02 {
    background: url('/images/kor14r-17-0389/section02_bg.jpg') no-repeat center center/cover;
}
*/
.main-visual .carousel-caption {
    top: 48%;
    left: 5%;
    right: 5%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.main-visual .main-slogan {
    display: flex;
    flex-direction: column;
    white-space: pre-line;
    justify-content: center;
    font-family: 'OA Gothic';
    font-size: 7rem;
    line-height: 1.3;
}

.main-visual .main-slogan span {
    margin: 0 0 2rem;
    display: block;
    line-height: 1.5;
    font-size: 4rem;
	word-break:keep-all;
}

.main-visual .main-slogan strong {
    margin: 0 0 40px;
    line-height: 1.3;
    color: #f8b600;
	word-break:keep-all;
}

.main-visual .main-slogan strong b {}

.main-visual .main-slogan strong i {
    font-style: normal;
    color: #f8b600;
}

.main-visual .main-slogan small {
    opacity: 85%;
    font-size: 3rem;
    line-height: 1.5;
}

.main-visual .sub-slogan {
    display: inline-block;
    padding: 5px 10px;
    width: auto;
    line-height: 1.5;
    font-weight: 400;
    font-size: 2rem;
    color: #fff;
    white-space: pre-line;
    word-break: keep-all;
}

.main-visual .carousel-indicators {
    bottom: 70px;
}

.main-visual .carousel-indicators li {
    margin: 0 4px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 0;
}

.main-visual .carousel-indicators li.active {
    margin: 0 4px;
    width: 40px;
    height: 20px;
    background: #f8b600;
    box-sizing: border-box;
}


@media screen and (min-width:1200px) {
section01 {
height:height:100vh;
}
}

@media screen and (max-width:1200px) {
    .main-visual .main-slogan {
        font-size: 5.5rem;
    }

    .main-visual .main-slogan strong {
        margin: 0 0 30px;
    }

    .main-visual .main-slogan span {
        font-size: 3.5rem;
    }
}

@media screen and (max-width:980px) {
    .main-visual {
        padding-top: 65px;
    }

    .main-visual .carousel-inner > .item {
        height: 650px;
    }

    .carousel-inner > .item.main-img02,
    .carousel-inner > .item.main-img03 {
        background-position: 21% center;
    }

    .main-visual .main-slogan strong {
        margin: 0 0 35px;
        font-size: 4.5rem;
    }

    .main-visual .sub-slogan {
        font-size: 17px;
    }

    .main-visual .carousel-indicators {
        bottom: 45px;
    }

    .main-visual .carousel-indicators li {
        width: 15px;
        height: 15px;
    }

    .main-visual .carousel-indicators li.active {
        width: 30px;
        height: 15px;
    }
}

@media screen and (max-width:767px) {
    .main-visual {
        padding-top: 50px;
    }

    .main-visual .carousel-inner > .item {
        height: 450px;
    }

    .carousel-inner > .item.main-img02,
    .carousel-inner > .item.main-img03 {
        background-position: 25% center;
    }

    .main-visual .main-slogan strong {
        margin: 0 0 25px;
        font-size: 3rem;
    }

    .main-visual .main-slogan span,
    .main-visual .main-slogan small {
        font-size: 2.2rem;
    }

    .main-visual .sub-slogan {
        font-size: 14px;
    }

    .main-visual .carousel-indicators {
        bottom: 25px;
    }

    .main-visual .carousel-indicators li {
        margin: 0 2px;
        width: 12px;
        height: 12px;
    }

    .main-visual .carousel-indicators li.active {
        margin: 0 2px;
        width: 24px;
        height: 12px;
    }
}

@media screen and (max-width:480) {

    .main-visual .main-slogan span,
    .main-visual .main-slogan small {
        font-size: 1.8rem;
    }
}