@charset "utf-8";

/* Font */
@import url(font.css);

/* Guide
----------------------------------------------------------------------------------------------------------------------------------------------------------

▶사이즈
pc : 1200px
tablet : 980px ~
mobile : 767px ~ 320px

▶미디어쿼리는 (주석으로 구분 되어있는)파트마다 각각 작성함.

*/


/* 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;
}

body,
th,
td,
input,
select,
textarea,
button {
    font-family: 'NotoSansKR', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #666;
	letter-spacing:-0.01em;
}

dl,
ul,
ol,
menu,
li {
    list-style: none;
}

*,
*: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 {
    color: inherit;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: initial;
}

img {
    max-width: 100%;
}

textarea {
    max-width: 100%;
    resize: none;
}

@media only screen and (min-width: 320px) {
    body {
        overflow-x: hidden;
    }
}

.hidden {
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden;
}

::selection {
    background: #3b5beb;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #3b5beb;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #3b5beb;
    color: #fff;
    text-shadow: 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: 65px;
    height: 65px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    display: none;
    text-align: center;
    z-index: 10000;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 50%;
    background: #4e5aea;
    box-shadow: 0px 15px 29px rgba(0, 0, 0, .3);
}

.back-to-top i {
    color: #fff;
    font-size: 25px;
    display: block;
    line-height: 63px;
}

@media only screen and (max-width: 980px) {
    .back-to-top {
        width: 60px;
        height: 60px;
    }

    .back-to-top i {
        line-height: 58px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
    }

    .back-to-top i {
        line-height: 40px;
        font-size: 15px;
    }
}

/* Layoyt (레이아웃)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapper {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: 100%;
    overflow-x: hidden;
}


/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#header {
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 8.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

#header.on_bg {
    background: #fff;
}

#header.scroll {
    background: #fff;
}

#header.scroll #header_in #L_SITE_LOGO {
    background: #fff;
}

#header #header_in {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 1200px;
    height: 8.4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

#header #header_in #L_SITE_LOGO {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#header #header_in #L_SITE_LOGO a {
    display: inline-flex;
    justify-content: center;
}

.nav-btn {
    display: none;
}

.nav-btn {
    z-index: 999;
    display: block;
    position: absolute;
    top: 2.5rem;
    bottom: 44px;
    right: 30px;
    width: 64px;
    height: 32px;
    cursor: pointer;
}

.nav-btn span {
    position: absolute;
    display: block;
    width: 64px;
    height: 4px;
    background: #fff;
    transition: .2s all linear;
}

.nav-btn span:nth-child(1) {
    top: 0;
}

.nav-btn span:nth-child(2) {
    top: 14px;
    left: inherit;
    right: 0px;
    width: 34px;
}

.nav-btn span:nth-child(3) {
    top: 28px;
}

.nav-btn.nav-close {
    position: fixed;
}

.nav-btn.nav-close span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
}

.nav-btn.nav-close span:nth-child(2) {
    margin-left: 0 !important;
    width: 0 !important;
}

.nav-btn.nav-close span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
}

#header #header_in .nav-btn span {
    background: #000;
}

.link_top_sns {
    position: absolute;
    top: 1.2rem;
    left: 30px;
    width: 221px;
    height: 57px;
    background: url('/images/kor08r-22-0456/common/logo_kakao.jpg') no-repeat center left;
}

.link_top_phone { display:none; }

#nav {
    display: none;
    width: 100%;
    padding: 50px 0px;
    background: rgba(19, 18, 18, 0.9);
    position: absolute;
    top: 8.4rem;
    left: 0;
}

.util-menu {
    position: absolute;
    top: 18px;
    right: 0;
    line-height: 0;
    font-size: 0;
}

.util-menu ul {
    display: inline-block;
}

.util-menu li {
    display: inline-block;
    float: left;
    height: 30px;
    border: 1px solid #e1e1e1;
    text-align: center;
    margin-left: 10px;
}

.util-menu li:first-child {
    border-color: #1886a2;
    margin-left: 0;
}

.util-menu a {
    display: inline-block;
    line-height: 28px;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    padding: 0 10px;
}

.util-menu li:first-child a {
    color: #1886a2;
    font-size: 14px;
}

.navigation {
    padding: 50px 0px 50px 360px;
}

.navigation:after {
    content: "";
    display: block;
    clear: both;
}

.navigation > li {
    position: relative;
    line-height: 1;
    padding-bottom: 50px;
    text-align: left;
}

.navigation .main-menu {
    display: inline-block;
    width: 100%;
    line-height: 28px;
    letter-spacing: -0.5px;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}

.navigation .sub-menu {
    display: none;
    margin-top: 30px;
}

.navigation .sub-menu li {
    position: relative;
    padding-left: 1rem;
}

.navigation .sub-menu li:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #fff;
    vertical-align: super;
    margin-right: 8px;
}

.navigation .sub-menu a {
    display: inline-block;
    line-height: 30px;
    letter-spacing: -0.5px;
    font-size: 20px;
    font-weight: 300;
    color: #a8a8a8;
}

.navigation .sub-menu .intro-menu {
    display: none;
}

@media only screen and (max-width: 1200px) {
    #header > div {
        padding: 0 20px;
    }

    #header #header_in {
        min-width: 100%;
    }
}

@media only screen and (max-width: 980px) {
    #header {
        height: 100px;
    }

    #header #header_in {
        height: 100px;
    }

    .nav-btn {
        width: 45px;
        height: 30px;
        top: 35px;
    }

    .nav-btn span {
        width: 45px;
    }

    .nav-btn span:nth-child(2) {
        width: 25px;
        top: 12px;
    }

    .nav-btn span:nth-child(3) {
        top: 24px;
    }

    .link_top_sns {
        width: 57px;
        top: 20px;
    }

    #nav {
        top: 100px;
        padding: 30px 0px;
    }

    .navigation {
        padding: 20px 0px 20px 100px;
    }

    .navigation > li {
        padding-bottom: 30px;
    }

    .navigation .main-menu {
        font-size: 22px;
    }

    .navigation .sub-menu {
        margin-top: 10px;
    }

    .navigation .sub-menu li:before {
        vertical-align: middle;
    }

    .navigation .sub-menu a {
        font-size: 18px;
    }


	.link_top_phone {
		display:block;
		position: absolute;
		text-indent: -10000px;
		left: 100px;
        top: 20px;
        width: 57px;
        height: 57px;
		background: url(/images/kor08r-22-0456/common/icon_phone.jpg) no-repeat center left;
		background-size: 57px;
	}

}

@media only screen and (max-width: 768px) {
    #nav {
        top: 50px;
    }

    .nav-btn {
        top: 10px;
        right: 10px;
    }

    .link_top_sns {
        left: 10px;
        top: 7px;
        width: 35px;
        height: 35px;
        background-position: -3px;
        background-size: 140px;
    }

	.link_top_phone {
		display:block;
		position: absolute;
		text-indent: -10000px;
		left: 55px;
        top: 7px;
        width: 35px;
        height: 35px;
		background: url(/images/kor08r-22-0456/common/icon_phone.jpg) no-repeat center left;
		background-size: 35px;
	}

    .navigation {
        padding: 0px 0px 0px 50px;
    }

    #header,
    #header #header_in {
        height: 5rem;
    }

    #header #header_in #L_SITE_LOGO a img {
        max-width: 60%;
    }

    .nav-btn span {
        right: 0 !important;
        width: 30px !important;
    }
}


/* 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: #509591;
    border-color: #509591;
    color: #fff;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: #447774;
    border-color: #447774;
    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: #509591;
}

@media only screen and (max-width: 980px) {}


/* Footer (하단메시지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
#footer {
    position: relative;
    width: 100%;
    background: #5e636e;
    color: #999;
}

#footer:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #3b5beb, #4fd0ff);
}

.footer-area {
    position: relative;
    margin: 0 auto;
    width: 1200px;
    padding: 0 0px 100px 0px;
    box-sizing: border-box;
}

.footer-area:after {
    content: "";
    display: block;
    clear: both;
}

.foot-logo {
    display: inline-block;
    margin-right: 50px;
}

.footer-info {
    display: inline-block;
    vertical-align: middle;
    margin-top: 3rem;
}

.footer-info:after {
    content: '';
    display: block;
    clear: both;
}

.footer-info li {
    float: left;
    margin-right: 10px;
    line-height: 28px;
    font-weight: 300;
    font-size: 16px;
    color: #c1c3c6;
}

.footer-info li:after {
    opacity: .15;
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #fff;
    margin-left: 10px;
}

.footer-info li:nth-child(6) {
    display: block;
}

.footer-info li:nth-child(6):after,
.footer-info li:nth-child(7):after {
    display: none;
}

.footer-info li a {
    color: #fff;
}

.footer-mid {
    width: 1200px;
    padding: 20px 0px;
   /* border-top: 1px solid rgba(153, 153, 153, 0.15);*/
    border-bottom: 1px solid rgba(153, 153, 153, 0.15);
}

.footer-mid:after {
    content: '';
    display: block;
    clear: both;
}

.footer-menu.left-menu {
    float: left;
    display: flex;
    flex-direction: row;
    justify-content: center;
    grid-gap: 1rem;
}

.footer-menu.right-menu {
    float: right;
}

.footer-menu:after {
    content: '';
    display: block;
    clear: both;
}

.footer-menu li {
    float: left;
    font-weight: 300;
}

.footer-menu li:after {
    opacity: .15;
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #fff;
    margin-left: 10px;
}

.footer-menu li:last-child:after {
    display: none;
}

.footer-menu li a {
    font-size: 16px;
    color: #fff;
}

.footer-bottom {
    padding-top:10px;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
}

.footer-top {
    /*padding: 0 2rem;*/
}

.footer-copy {
    color: #c1c3c6; font-weight:300;
}
.footer-copy a:hover {
    color: #c1c3c6;
}
@media only screen and (max-width: 1200px) {
    .footer-area {
        width: 100%;
        padding: 0px 0px 50px 0px;
        text-align: center;
    }

    .foot-logo {
        display: block;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .footer-mid {
        width: 100%;
        margin: 0 auto;
        padding: 2rem 2rem;
    }

    .footer-menu {
        display: inline-block;
    }
}

@media only screen and (max-width:1000px) {
    .footer-info li:after {
        display: none;
    }
}

@media only screen and (max-width:980px) {
    .foot-logo > img {
        width: 70px;
    }
}

@media only screen and (max-width:768px) {

    .footer-info {
        width: 550px;
    }

    .footer-info li {
        font-size: 15px;
        text-align: left;
        width: 100%;
    }

    .footer-menu li a {
        font-size: 12px;
    }

    .footer-menu.left-menu {
        float: none;
    }

    .footer-menu.right-menu {
        float: none;
    }

    .footer-bottom {
        font-size: 15px;
    }

    .footer-mid {
        padding-top: 26px;
    }
}

@media only screen and (max-width:585px) {
    .footer-info li {
        float: none;
        display: inline-block;
        font-size: 14px;
    }

    .footer-mid {
        width: 100%;
        padding:20px 0;
    }

    .footer-bottom {
        font-size: 13px;
    }
}


/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.carousel-inner > .item {
    height: 860px;
}

.carousel-inner > .main-img01 {
    background: url("/images/kor08r-22-0456/main/main_visual01.jpg") no-repeat 60% center/cover;
}

.carousel-inner > .main-img02 {
    background: url("/images/kor08r-22-0456/main/main_visual02.jpg") no-repeat center center/cover;
}

.carousel-inner > .main-img03 {
    background: url("/images/kor08r-22-0456/main/main_visual03.jpg") no-repeat 20% center/cover;
}

.main-visual {
    position: relative;
}

.main-visual .carousel-caption {
    position: relative;
   /* display: table;
    padding: 8.4rem 0 0;*/
    top: 38%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    text-shadow: none;
    color: #fff;
}

.main-visual .carousel-caption .slogan {
   /* display: table-cell;
    vertical-align: middle;*/
    padding: 0;
    text-align: center;
    line-height: 1.3;
    color: #fff;
    word-break: keep-all;
}

.main-visual .carousel-caption .slogan p {
    font-family: 'Nanum Square';
    font-weight: 700;
    font-size: 32px;
    word-break: keep-all;
    text-shadow: 0px 1px 60px rgb(0 0 0 / 35%);
}

.main-visual .carousel-caption .slogan .main-copy {
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 900;
    font-size: 55px;
}

.main-visual .carousel-control {
    background: none;
    text-shadow: none;
    width: 10%;
    text-indent: -9999em;
    overflow: hidden;
}

.main-visual .carousel-control,
.main-visual .carousel-control:focus,
.main-visual .carousel-control:hover {
    opacity: 1;
}

.main-visual .carousel-control.left {
    background: url("/images/kor08r-22-0456/main/visual_btn_prev.png") no-repeat center center;
}

.main-visual .carousel-control.right {
    background: url("/images/kor08r-22-0456/main/visual_btn_next.png") no-repeat center center;
}

.main-visual .carousel-indicators {
    bottom: 100px;
    left: 0;
    margin-left: 0;
    width: 100%;
    text-align: center;
}

.main-visual .carousel-indicators li {
    margin: 0 5px;
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    vertical-align: middle;
    background: #fff;
    border-radius: 50%;
}

.main-visual .carousel-indicators .active {
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    background: #1943ff;
    border: none;
}

@media only screen and (min-width: 1201px) {
    .main-visual .carousel-caption {
        width: 1200px;
    }
}

@media only screen and (max-width: 1200px) {
    .main-visual .carousel-caption .slogan {}
}

@media screen and (max-width:980px) {
    .carousel-inner > .item {
        height: 560px;
    }

    .main-visual .carousel-caption {}

    .main-visual .carousel-caption .slogan p {
        font-size: 22px;
        font-weight: 400;
    }

    .main-visual .carousel-caption .slogan .main-copy {
        font-size: 40px;
    }

    .main-visual .carousel-indicators {
        bottom: 50px;
    }

    .main-visual .carousel-indicators li {
        width: 17px;
        height: 17px;
        margin: 0 5px;
    }

    .main-visual .carousel-indicators .active {
        width: 17px;
        height: 17px;
    }
}



@media screen and (max-width:768px) {
   
    .main-visual .carousel-control {
        display: none;
    }

    .main-visual .carousel-control.left,
    .main-visual .carousel-control.right {
        background-size: 20px;
    }
    .main-visual .carousel-caption .slogan {}
    .footer-area {
        padding: 0 10px 50px 10px;
    }
}

@media screen and (max-width:620px) {
	 .carousel-inner > .item { height:480px;}
	 .main-visual .carousel-caption .slogan p { font-size: 17px;}
	 .main-visual .carousel-caption .slogan .main-copy {font-size: 28px;margin-bottom:10px;}

    .footer-info {
        width: 100%;
    }
}


/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.container {
    padding: 0;
    width: 100%;
}

#mainContainer {
    z-index: 555;
}


.main-box {
    position: relative;
    display: block;
    width: 100%;
}

.main-box-tit {
    position: relative;
    display: table;
    width: 100%;
    min-height: 200px;
    text-align: center;
}

.main-box-tit h3 {
    display: table-cell;
    vertical-align: middle;
    font-family: 'Nanum Square';
    font-size: 30px;
    font-weight: 800;
    background-color: #fff;
}

.main-box-tit h3 span {
    background-color: #fff !important;
    position: relative;
    z-index: 1;
    padding: 0 30px;
    color: #111;
}

.main-box-tit h3 span:after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -3px;
    width: 3px;
    height: 40px;
    background-color: #ff5832;
}

.main-box-link {
    display: inline-block;
    width: 100%;
    min-height: 455px;
    margin-bottom: -5px;
}

.main-box-link ul li {
    position: relative;
    display: table;
    padding: 0;
    max-width: 100%;
    min-height: 455px;
}

.main-box-link ul li a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    color: #fff;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
}

.main-box-link ul li.box-1 {
    background: url("/images/kor08r-22-0456/main/main_link_img_1.jpg") no-repeat top/cover;
}

.main-box-link ul li.box-2 {
    background: url("/images/kor08r-22-0456/main/main_link_img_2.jpg") no-repeat top/cover;
}

.main-box-link ul li.box-3 {
    background: url("/images/kor08r-22-0456/main/main_link_img_3.jpg") no-repeat top/cover;
}

.main-box-link ul li.box-4 {
    background: url("/images/kor08r-22-0456/main/main_link_img_4.jpg") no-repeat top/cover;
}

.main-box-in ._bg {
    position: relative;
    margin: 0 auto;
    padding: 100px 0;
    max-width: 1200px;
    min-height: 520px;
}

.main-box-in ._left {
    position: relative;
    padding: 0;
}

.main-box-in ._left a.btn {
    margin-right: 20px;
    padding: 12px 20px;
    min-width: 148px;
    background-color: #ffa800;
    color: #fff;
    font-size: 16px;
}

.main-box-in ._left a._last {
    margin-right: 0;
}

.main-box-in ._left span {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: normal;
    line-height: 30px;
    color: #1886a2;
}

.main-box-in ._left h4 {
    position: relative;
    margin-bottom: 30px;
    font-size: 60px;
    line-height: 1;
    color: #333;
}

.main-box-in ._left p {
    max-width: 367px;
    font-size: 16px;
    line-height: 26px;
    color: #5a5a5a;
}

.main-box-in._bg div._right {
    padding: 0;
}

.main-box-in._bg div._right iframe {
    width: 100%;
    height: 320px;
}

.main-box-in a.btn-xs-more {
    position: absolute;
    top: 0;
    right: 60px;
    padding: 4px 16px;
    font-size: 12px;
    color: #fff;
    background-color: #1886a2;
}

.main-box-in a.btn_more {
    display: inline-block;
    margin: 0 auto;
    padding: 20px 50px;
    font-size: 18px;
    color: #333;
    border: 1px solid #ccc;
}

.page-box .main-box-in {
    position: relative;
    background-image: none;
    display: block;
    margin: 0 auto;
    max-width: 1600px;
    width: 100%;
    min-height: 618px;
    padding: 0;
    text-align: center;
}

.page-box ._left p {
    margin-bottom: 60px;
}

.full-banner {
    display: table;
    margin: 80px 0;
    text-align: center;
    width: 100%;
    height: 180px;
    background: #e02121;
}

.full-banner > a {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
}

.full-banner > a h3 {
    font-size: 35px;
}

.full-banner > a h3 span {
    color: #ffe63b;
    font-size: 35px;
}

.full-banner > a strong {
    display: inline-block;
    margin-top: 15px;
    font-size: 45px;
    height: 55px;
    line-height: 1.2;
}

.full-banner > a span {
    font-size: 45px;
}

.full-banner > a div._in {
    display: inline-block;
    text-align: left;
}

.full-banner > a strong span {
    float: right;
    margin-left: 10px;
    font-family: 'NanumGothic';
    font-weight: 800;
    font-size: 30px;
    line-height: 1.5;
    width: 55px;
    height: 55px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: #ffe63b;
    color: #e02121;
}

.short-banner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0px 0px 80px 0px;
}

.short-banner:after {
    content: '';
    display: block;
    clear: both;
}

.short-banner dl {
    float: left;
    width: calc(100% / 3 - 20px);
    border: 1px solid #ccc;
    display: table;
    height: 185px;
    margin: 0px 10px;
}

.short-banner dl .short-banner-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
}

.short-banner dl dt {
    display: inline-block;
}

.short-banner dl dd {
    margin-right: 0px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding-left: 18px;
}

.short-banner dl dd strong {
    display: block;
    font-size: 25px;
    color: #333;
    font-weight: 400;
}

.short-banner dl dd span {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.container .list-box {}

.container .list-box ul {
    display: flex;
    flex-direction: row;
    height:560px;
    width: 100%;
}

.container .list-box ul li:nth-child(1) {
    background: url("/images/kor08r-22-0456/main/img_main_banner01.jpg") no-repeat center center/cover;
}

.container .list-box ul li:nth-child(2) {
    background: url("/images/kor08r-22-0456/main/img_main_banner02.jpg") no-repeat center center/cover;
}

.container .list-box ul li:nth-child(3) {
    background: url("/images/kor08r-22-0456/main/img_main_banner03.jpg") no-repeat center center/cover;
}

.container .list-box ul li:nth-child(4) {
    background: url("/images/kor08r-22-0456/main/img_main_banner04.jpg") no-repeat center center/cover;
}

.container .list-box ul li {
    display: inline-flex;
    width: 25%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

.container .list-box ul li strong {
    margin-bottom: 20px;
    color: #000;
	font-family: 'Nanum Square';
    font-weight: 700;
    font-size: 28px;
}

.container .list-box ul li span {
    margin-bottom: 3rem;
    color: #555;
    font-size: 2rem;
    font-weight: 300;
    white-space: pre-line;
    word-break: keep-all;
    text-align: center;
}

.container .list-box ul li a {
    padding: 1rem 7rem;
    color: #5e78ec;
    font-size: 1.6rem;
    font-weight: 400;
    border: 1px solid #5e78ec;
	background:#fff;
}

@media only screen and (max-width: 980px) {
    .container .list-box ul {
        display: grid;
        grid-template-columns: repeat(2, auto);
        flex-direction: column;
        height: inherit;
    }

    .container .list-box ul li {
        width: 100%;
        height: 460px;
		padding-top:50px;
    }
}

@media only screen and (max-width: 768px) {
    .container .list-box ul {
        grid-template-columns: repeat(1, auto);
    }

    .container .list-box ul li {height:340px}
	.container .list-box ul li strong { margin-bottom: 15px; font-size: 22px;}
}



/* main_section04
---------------------------------------------------------------------------------------------------------------------------------------------------------- */
.container .slide-box {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 0 50%;
    height: 862px;
    justify-content: center;
}

.container .slide-box:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 100%;
    height: 11.7rem;
    background: url(/images/kor08r-22-0456/main/img_bg_slidebox_over.png) no-repeat center center/cover;
    z-index: -1;
}

.container .slide-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: url(/images/kor08r-22-0456/main/img_bg_slidebox.jpg) no-repeat center center/cover;
    z-index: -2;
}

.container div._in div._title {
    display: flex;
    flex-direction: row;
    margin-bottom: 4rem;
}

.container div._in div._title h3 {
    color: #fff;
    font-weight: 600;
    font-size: 4rem;
    color: #fff;
}

.container div._in div._title span {
    opacity: .8;
    display: block;
    padding-top: 2.5rem;
    font-size: 2rem;
    font-weight: 400;

}

.container div._in div._title a {
    position: relative;
    left: 3rem;
    width: 4rem;
    height: 4rem;
    font-size: 0;
    background: #5e78ec;
}

.container div._in div._title a:before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 1rem;
    width: 2rem;
    height: .1rem;
    background: #fff;
}

.container div._in div._title a:after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 2rem;
    width: .1rem;
    height: 2rem;
    background: #fff;
}

.container div._in div.owl-wrapper {
    max-width: 1200px !important;
    display: flex !important;
}

.container div._in div.owl-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-radius: 2rem;
    padding: 6rem 4rem;
    width: 25%;
}

.container div.owl-theme .owl-controls {
    position: relative;
    margin: 2.5rem 0 0;
}

.container .gallery-wrap .gallery-list .owl-controls .owl-prev {
    opacity: 1;
    width: 50px;
    height: 50px;
    background: url(/images/kor08r-22-0456/main/img_ico_prev.png) no-repeat;
}

.container .gallery-wrap .gallery-list .owl-controls .owl-next {
    opacity: 1;
    left: 6.5rem;
    width: 50px;
    height: 50px;
    background: url(/images/kor08r-22-0456/main/img_ico_next.png) no-repeat;
}

.container .gallery-wrap .gallery-list .owl-controls i {
    display: none;
}

.container div._in div.owl-stage {}

.gallery-wrap .gallery-list .owl-controls .owl-next {
    right: inherit !important;
    left: 0;
    top: 40% !important;
}

.container .info-box {
    position: relative;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    padding: 3.5rem 0;
    max-width: 1200px;
    background: #142e62;
}


.container .info-box:after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: 0;
    width: 2560px;
    height: 100%;
    z-index: -1;
    background: #142e62;
}

.container .info-box div._in {
    position: relative;
    padding: 0 4rem;
    /*width: 33.3%;*/
	width: 50%;
    letter-spacing: -1px;
}

.container .info-box div._in:after {
    opacity: .15;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff;
}

.container .info-box div._in:nth-child(1):after {
    content: none;
}

.container .info-box div._in h3 {
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 2.5rem;
}

.container .info-box div._in h3 span{ display:none; }

.container .info-box div._in h4{font-size:20px; color:#00deff; margin-bottom:10px;}

.container .info-box div._in div._info > a {
    display: block;
    color: #00deff;
    font-weight: 600;
    font-size: 5rem;
    line-height: 1;
}

.container .info-box div._in div._info ul {
    display: flex;
    grid-gap: 2rem;
}

.container .info-box div._in .term{margin-bottom:20px;}

.container .info-box div._in ul li {
    color: #fff;
	letter-spacing:1px;
	word-break:keep-all;
}

.container .info-box div._in ul li strong {
    font-size: 1.6rem;
    min-width: 4.2rem;
    display: flex;
    flex-direction: column;
    float: left;
}

.container .info-box div._in ul li span {
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
}

.container .info-box div._in ul li span small {
    opacity: .6;
    font-size: 1.6rem;
}

.container #affilates {
    margin: 0 auto;
    max-width: 1200px;
}

.container #affilates .affilates-list .owl-stage-outer {
    padding: 0;
    background: #fff;
}

.container #affilates .affilates-list .viewport {
    padding: 0;
    height: inherit;
}

.container #affilates .affilates-list .viewport .img-frame {
    box-shadow: none;
}

@media only screen and (min-width: 1201px) {
    #mainContainer {
        padding: 50px 0 135px;
        margin: 0 auto;
        width: 1200px;
    }
}

.main-container h3 {
    position: relative;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 400;
    font-size: 20px;
    color: #000;
}

.main-container h3 span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #6c7079;
}

.main-top h3 img {
    float: right;
}

.main-top ul {
    margin: 0 -10px;
}

.main-top ul:after {
    content: "";
    display: block;
    clear: both;
}

.main-top li {
    position: relative;
    float: left;
    margin: 0 10px;
    width: calc(25% - 20px);
    background: #f9f9f9;
    border: 1px solid #c5c5c5;
}

.main-top .txt-frame {
    margin: 30px 25px;
    word-break: keep-all;
}

.main-top .txt-frame h3 {
    margin-bottom: 15px;
}

.main-top .img-frame {
    width: 100%;
    overflow: hidden;
}

.main-top .img-frame img {
    width: 100%;
}

.main-top a:hover {
    color: #555;
}

.main-top .caption-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-top .caption-link:before {
    position: absolute;
    top: -1px;
    left: -1px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.main-top .caption-link:after {
    position: absolute;
    bottom: -1px;
    right: -1px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.main-top .caption-link:hover:before {
    width: 100%;
    height: 100%;
    border-left: 5px solid #ff4e00;
    border-top: 5px solid #ff4e00;
}

.main-top .caption-link:hover:after {
    width: 100%;
    height: 100%;
    border-right: 5px solid #ff4e00;
    border-bottom: 5px solid #ff4e00;
}

.main-center {
    margin: 20px -10px;
}

.main-center:after {
    content: "";
    display: block;
    clear: both;
}

.main-center > div {
    position: relative;
    float: left;
    margin: 0 10px;
    padding: 30px 25px;
    height: 286px;
    background: #f9f9f9;
    border: 1px solid #c5c5c5;
}

.webgine-box {
    width: calc(50% - 20px);
}

.notice-box {
    width: calc(25% - 20px);
}

.notice-box .more-btn {
    position: absolute;
    top: 25px;
    right: 20px;
}

.affilates-box {
    width: calc(25% - 20px);
}

@media only screen and (max-width: 1200px) {
    #mainContainer {
        padding: 50px 20px 100px;
        width: 100%;
    }

    .affilates-box {
        width: calc(25% - 10px);
    }

    .short-banner-inner {
        padding: 0px 10px;
    }

    .short-banner dl dt {
        display: block;
    }

    .short-banner dl dd {
        display: block;
        padding-left: 0px;
        text-align: center;
    }
}

@media only screen and (max-width: 980px) {
    .notice-box {
        width: calc(50% - 20px);
    }

    .affilates-box {
        width: calc(50% - 20px);
    }

    .main-box-in ul li a {
        display: block;
    }

    .main-box-in ._bg {
        padding: 60px 0;
    }

    .main-box-in ._bg div._left p {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .main-box-in ._bg div._right {
        margin: 60px 0 0;
        padding: 0;
    }

    .main-box-in a.btn-xs-more {
        right: 30px;
    }

    .page-box .main-box-in {
        display: inline-block;
        padding: 60px 30px;
        min-height: 445px;
    }

    .main-box-tit {
        min-height: 150px;
    }

    .main-box-in ._left {
        padding: 0 30px 0 0;
    }

    .main-box-in ._right {
        padding: 0;
    }

    .full-banner {
        margin: 0px 0px 60px 0px;
    }

    .short-banner dl dt > img {
        width: 40px;
    }

    .short-banner dl dd strong {
        font-size: 20px;
    }

    .container .info-box div._in div._info > a {
        /*font-size: 3rem;*/
    }

    .container div._in div._title {
        justify-content: center;
    }

    .container .slide-box {
        margin: 0;
    }

    .container .slide-box:before,
    .container .slide-box:after {
        left: 0;
        background-size: auto 100%;
        background-position: 22%;
    }

    .container div._in div._title h3 {
        width: calc(100% - 4rem);
        font-size: 3.5rem;
    }

    .container div._in div._title a {
        left: 0;
    }

    .container div._in div._title span {
        font-size: 1.6rem;
    }

    .container .slide-box {
        padding: 0 2rem;
    }
}

@media only screen and (max-width: 768px) {
    #mainContainer {
        padding: 20px 10px 30px;
        width: 100%;
    }

    .notice-box {
        width: calc(50% - 10px);
    }

    .affilates-box {
        width: calc(50% - 10px);
    }

    .main-box-link ul li {
        min-height: 300px;
    }

    .main-box-tit {
        min-height: 100px;
    }

    .main-box-in ._left h4 {
        font-size: 40px;
    }

    .main-box-in ul li {
        min-height: 300px;
    }

    .main-box-in ._left {
        float: none;
        width: 100%;
        padding: 0 0 30px 0;
    }

    .main-box-in ._right {
        float: none;
        width: 100%;
        padding: 30px 0 0 0;
    }

    .main-box-in ._left p {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .main-box-in a.btn-xs-more {
        right: 0;
    }

    .page-box ._left a.btn {
        width: 100%;
        display: block;
        float: none;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .page-box ._left a._last {
        margin-bottom: 0;
    }

    .main-box-tit h3 {
        font-size: 25px;
    }

    .main-box-in._bg div._right iframe {
        height: 146px;
    }

    .full-banner {
        height: 150px;
    }

    .full-banner > a h3 {
        font-size: 25px;
    }

    .full-banner > a h3 span {
        font-size: 25px;
    }

    .full-banner > a strong {
        font-size: 25px;
        height: auto;
    }

    .full-banner > a strong span {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }

    .short-banner {
        padding: 0px 10px 80px 10px
    }

    .short-banner dl {
        width: 100%;
        height: 150px;
        margin: 0px 0px 10px 0px;
    }

    .container .info-box div._in {
        padding: 0 2rem;
    }

    .container .info-box div._in h3 {
        font-size: 2rem;
    }

.container .info-box div._in h3 span{ display:inline-block; font-weight:normal; }

    .container .info-box div._in div._info > a {
        font-size: 3rem;
    }

    .container .info-box div._in ul li strong {
        font-size: 1.4rem;
    }

    .container .info-box div._in ul li span small {
        font-size: 1.4rem;
    }

    .container .slide-box {
        height: 720px;
    }

    .container .info-box div._in {
        /*padding: 4rem 2rem 0;*/
        width: 100%;
    }


    .container .info-box div._in div._info ul {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 620px) {

    .main-top li:first-child,
    .main-bottom li:first-child {
        margin-top: 0;
    }

    .notice-box {
        width: 100%;
    }

    .affilates-box {
        width: 100%;
    }

    .main-box-link ul li {
        min-height: 250px;
    }

    .main-box-link ul li a {
        font-size: 20px;
    }

    .main-box-in a.btn_more {
        padding: 15px 30px;
        font-size: 16px;
    }

    .full-banner > a {
        padding: 0px 20px;
    }

    .container .info-box {
        flex-direction: column;
        grid-gap: 5rem 2rem;
    }

    .container .info-box:nth-child(1) {
        padding-top: 0;
    }
	
	.container .info-box div._in._time{padding-top:2rem;}
    .container .info-box div._in:after {
        width: 100%;
        height: .1rem;
    }
}



@media only screen and (min-width: 769px) {
.container .tel-info{padding-top:10px;}
.container .tel-info:after{content:""; display:block; clear:both;}
.container .info-box div._in h3 {float:left; position:relative; padding-right:20px; top:15px;}
.container .info-box div._in ._info{float:left;}

.container .time-info:after{content:""; display:block; clear:both;}
.container .info-box div._in h4 {float:left; position:relative; top:1px; padding-right:15px;}
.container .info-box div._in .term{float:left;}
.container .info-box div._in ul li{font-size:18px;}
}

@media only screen and (min-width: 1201px) {
	.container .tel-info{padding-left:80px;}
	.container .time-info{padding-left:40px;}
}


		