@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-size: 15px;
    color: #555;
}

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%;
}

* {
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
a {
	color: inherit;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: inherit;
}

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: #0575ab;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #0575ab;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #0575ab;
    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;
}
.pc-2:after,
.pc-3:after,
.pc-4:after,
.pc-5:after {
	content:"";
	display:block;
	clear:both;
}

.pc-2,
.pc-3,
.pc-4,
.pc-5 {
	margin:0 -10px;
}
.pc-2 li {
	width:calc(100%/2);
	float:left;
}

.pc-3 li {
	width:calc(100%/3);
	float:left;
}
.pc-4 li {
	width:calc(100%/4);
	float:left;
}
.pc-5 li {
	width:calc(100%/5);
	float:left;
}
.pc-2 li > span,
.pc-3 li > span,
.pc-4 li > span,
.pc-5 li > span {
	display:block;
	margin:0 10px;
}
.wid-50 {
	float:left;
	width:50%;
}
.wid-25 {
	float:left;
	width:25%;
}

@media only screen and (max-width: 1200px) {
	.pc-5 li {
		width:calc(100%/3);
		margin-bottom:30px;
	}
	.pc-5 li:first-child {
		width:66.6%;
	}
}
@media only screen and (max-width: 768px) {
	.pc-5 li {
		width:calc(100%/2);
		margin-bottom:10px;
	}
	.pc-5 li:first-child {
		width:100%;
	}
	.pc-2 li > span, .pc-3 li > span, .pc-4 li > span, .pc-5 li > span {
		margin:0 5px;
	}
	.pc-2, .pc-3, .pc-4, .pc-5 {
		margin: 0 -5px;
	}
	.card-list ul li dl dd {
		padding:20px;
		font-size:16px;
	}
	.wid-50 {
		width:100%;
	}
	.wid-25 {
		width:50%;
	}
	.pc-4 li {
		width: calc(100%/2);
		float: left;
		margin-bottom:10px;
	}

}
@media only screen and (max-width: 480px) {
	.wid-25 {
		width:100%;
	}
	.pc-5 li {
		width:100%;
		margin-bottom:10px;
	}
}

/* Back to top (탑 버튼)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.back-to-top {
    width: 80px;
    height: 80px;
    position: fixed;
    bottom: 60px;
    right: 20px;
    display: none;
    text-align: center;
    z-index: 10000;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #c20a25
    box-shadow: 0px 15px 29px rgba(0, 0, 0, .3);
}

.back-to-top i {
    color: #fff;
    font-size: 30px;
    display: block;
    line-height: 78px;
}

@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:hidden;
}

/* Header
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

#header {
    z-index: 666;
    width: 100%;
    height: 120px;
    background-color: #f9f9f9;
}

#header h1 {
    float: left;
	margin:20px 0 0;
}

#header h1 a {
    display: block;
}

#header #header_in {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: 120px;
}

#nav {
    display: block;
	float:right;
}
#header>div {
    width: 1200px;
	margin:0 auto;
}
.nav-btn {
    display: none;
}

.nav-bg {
	z-index: 888;
    display: none;
    position: absolute;
    top: 120px;
    left: -500%;
    width: 1000%;
    height: 243px;
    background: rgba(255,255,255,0.9);
    border-bottom: 3px solid #1f497d;
}

.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:after {
    content: "";
    display: block;
    clear: both;
}

.navigation>li {
    position: relative;
    float: left;
    height: 100%;
    line-height: 120px;
    text-align: center;
}

.navigation .main-menu {
    display: block;
    padding: 0 39px;
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    color: #333;
}

.navigation .sub-menu {
    display: none;
    z-index: 998;
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 242px;
}

.navigation .sub-menu a {
    display: block;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-weight: normal;
    color: #333;
}

.navigation .sub-menu .intro-menu {
    display: none;
}

.navigation>li:hover {
    background: #636770;
}

.navigation>li:hover>a {
    color: #fff;
}

.navigation>li:hover a {
    color: #fff;
}

.navigation>li:hover .sub-menu {
    background: #636770;
}

.navigation>li:hover:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    bottom: 0;
    background-color: #636770;
    z-index: 999;
}

.navigation .sub-menu a:hover {
    background: #fff;
    color: #000;
}

@media only screen and (min-width: 981px) {
    #nav {
        margin-left: 52px;
    }
    .navigation .main-menu {
        padding: 0 25px;
    }
    .util-menu {
        right: 20px;
    }
}

@media only screen and (min-width: 1201px) {
    /*#header > div{width:1200px;}*/
    #nav {
        margin-left: 200px;
    }
    .navigation .main-menu {
        padding: 0 39px;
    }
    .util-menu {
        right: 0;
    }
}

@media only screen and (max-width: 1200px) {
    #header>div {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 980px) {
    #header {
        z-index: 666;
        width: 100%;
        height: 65px;
        background: #f9f9f9;
        border-bottom: 1px solid #e1e1e1;
    }
    #header>div {
        padding: 0;
    }
    #header h1 {
        float: left;
        height: 65px;
		margin:0;
    }
    #header h1 a {
        display: block;
		padding:8px 0 0 17px;
    }
    #header h1 img {
        width: auto;
		height:50px;
    }
    .nav-btn {
        z-index: 999;
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 23px;
        cursor: pointer;
    }
    .nav-btn span {
        position: absolute;
        left: 50%;
        display: block;
        margin-left: -15px;
        width: 30px;
        height: 3px;
        background: #ff4e00;
        transition: .2s all linear;
    }
    .nav-btn span:nth-child(1) {
        top: 0;
    }
    .nav-btn span:nth-child(2) {
        top: 10px;
    }
    .nav-btn span:nth-child(3) {
        top: 20px;
    }
    .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;
        width: 0;
    }
    .nav-btn.nav-close span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
    }
    .nav-bg {
        z-index: 777;
        display: none;
        position: fixed;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    #nav {
        z-index: 888;
        position: fixed;
        top: 64px;
        right: -100%;
        display: block;
        padding: 0 0 20px;
        width: 100%;
        height: 100%;
        background: #fff;
    }
    .util-menu {
        position: relative;
        top: 0;
        padding: 17px 30px;
        width: 100%;
        max-height: 65px;
        border-top: 1px solid #e1e1e1;
        border-bottom: 1px solid #eee;
    }
    .util-menu ul {
        width: 100%;
    }
    .util-menu li {
        width: calc(33.33% - 10px);
        margin-left: 15px;
    }
    .util-menu a {
        width: 100%;
        padding: 0;
    }
    .navigation .main-menu {
        display: block;
        padding: 0 30px;
        width: 100%;
        line-height: 50px;
        font-weight: 400;
        font-size: 16px;
        color: #000;
        transition: none;
    }
    .navigation>li {
        width: 100%;
        text-align: left;
        border-top: 1px solid #e1e1e1;
    }
    .navigation>li:hover {
        background: #1886a2;
        border-color: #095c71;
    }
    .navigation>li:first-child {
        border-top: none;
    }
    .navigation>li:hover:after {
        display: none;
    }
    .navigation>li.active {
        background: #1886a2;
    }
    .navigation>li a {
        color: #000;
    }
    .navigation>li.active>a {
        color: #fff;
    }
    .navigation>li.active>ul li a {
        color: #555;
    }
    .navigation>li:hover .sub-menu {
        background: inherit;
    }
    .navigation .sub-menu {
        display: none;
        position: relative;
        top: 0;
        height: inherit;
        background: #e8e8e8 !important;
    }
    .navigation .sub-menu li {
        border-top: 1px solid #b0b0b0;
    }
    .navigation .sub-menu li:first-child {
        border-top: none;
    }
    .navigation .sub-menu a {
        display: block;
        padding: 0 30px;
        line-height: 35px;
        font-size: 14px;
        color: #555;
        text-align: left;
    }
    .navigation .sub-menu a:before {
        content: "";
        display: inline-block;
        margin: -2px 10px 0 0;
        width: 5px;
        height: 5px;
        vertical-align: middle;
        background: #b0b0b0;
    }
    .navigation .sub-menu a:hover {
        background: #b0b0b0;
    }
    .navigation .sub-menu a:hover:before {
        background: #fff;
    }
}

@media only screen and (max-width: 768px) {
    .nav-btn {
        right: 10px;
    }
}

/* 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: #fff;
    color: #727272;
    padding-bottom: 60px;
    border-top: 2px solid #e1e1e1;
}

#footer:after {
    content: '';
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
}

.footer-area {
    position: relative;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-area:after {
    content: "";
    display: block;
    clear: both;
}

.footer-sns {
    position: absolute;
    top: 0;
    right: 0;
    padding: 22px 0;
}

.footer-sns li {
    float: left;
    display: inline;
    margin-left: 10px;
}

.footer-sns li:first-child {
    margin-left: 0;
}

.footer-sns li a {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #ffa800;
}

#footer p,
#footer li {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    color: #727272;
}

.foot-logo {
    float: left;
    margin: 22px 50px 0 0;
}

.foot-info {
    float: left;
    width: calc(100% - 150px);
}

.footer-menu {
    margin: 0 auto 30px;
    line-height: 0;
    font-size: 0;
}

.footer-menu li {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    padding-left: 10px;
    vertical-align: middle;
    line-height: 75px;
    color: #fff;
}

.footer-menu li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.footer-menu li:before {
    content: '';
    position: absolute;
    top: 33px;
    left: 0;
    width: 1px;
    height: 10px;
    background-color: #727272;
}

.footer-menu li:first-child:before {
    display: none;
}

.footer-menu li a {
    line-height: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #727272;
}

.footer-info {
    width: 1000px;
    line-height: 30px;
    margin-bottom: 30px;
}

.footer-info span {
    color: #9c9a9a;
	display:inline-block;
	width:20px;
}

.footer-info a {
    color: #1886a2;
    font-weight: 500;
}

@media only screen and (min-width: 1201px) {
    .footer-area {
        width: 1200px;
    }
}

@media only screen and (max-width: 1200px) {
    .footer-area {
        padding: 0 20px;
    }
    .footer-sns {
        right: 20px;
    }
    .footer-info {
        width: 100%;
    }
}

@media only screen and (max-width:768px) {
    #footer p,
    #footer li {
        white-space: normal;
        font-size: 13px;
    }
    .footer-area {
        padding: 0 10px;
        text-align: center;
    }
    .footer-sns {
        display: none;
    }
    .footer-menu li {
        margin-left: 5px;
        padding-left: 5px;
    }
    .footer-menu li a {
        font-size: 13px;
    }
    .foot-info {
        float: none;
        width: 100%;
    }
    .footer-info {
        width: 100%;
        line-height: 20px;
        white-space: pre;
    }
    .footer-info br {
        display: block;
    }
    .footer-copy {
        white-space: pre-line;
    }
    .foot-logo {
        float: none;
        margin: 0 0 20px 0;
    }
}

/* Main Visual (메인이미지)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.carousel-inner>.item {
    height: 865px;
	position:relative;
}
.carousel-inner>.item:after {
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background-color:rgba(104,107,117,0.95);
}

/* .carousel-inner>.main-img01 {
    background: url("/images/main/twi001t2960698.jpg") no-repeat center center/cover;
} */

.carousel-inner>.main-img02 {
    background: url("/images/kor06r-18-0410/main/main_visual02.jpg") no-repeat center center/cover;
}

.carousel-inner>.main-img03 {
    background: url("/images/kor06r-18-0410/main/main_visual03.jpg") no-repeat center center/cover;
}

.main-visual {
    position: relative;
}

.main-visual .carousel-caption {
    top: 50%;
    right: 0;
	max-width:945px;
    bottom: auto;
    padding: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
    width: 100%;
    text-shadow: none;
    color: #fff;
}

.main-visual .carousel-caption .slogan {
    padding: 0;
    text-align: left;
    line-height: 1.3;
    font-size: 18px;
    color: #fff;
    word-break: keep-all;
	padding:80px 50px;
}

.main-visual .carousel-caption .slogan p {
    font-weight: normal;
    font-size: 25px;
}

.main-visual .carousel-caption .slogan .copy_numb {
    position: relative;
    display: inline-block;
    color: #ffa800;
    font-weight: 900;
    font-size: 35px;
    margin-bottom: 30px;
}

.main-visual .carousel-caption .slogan .copy_numb:before {
    content: '';
    position: absolute;
    top: -10px;
    width: 100%;
    height: 1px;
    background: #ffa800;
}

.main-visual .carousel-caption .slogan .main-copy {
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
    font-size: 48px;
    line-height: 52px;
}

.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/kor06r-18-0410/main/visual_btn_prev.png") no-repeat center center;
}

.main-visual .carousel-control.right {
    background: url("/images/kor06r-18-0410/main/visual_btn_next.png") no-repeat center center;
}

.main-visual .carousel-indicators {
    bottom: 200px;
    left: 0;
    margin-left: 0;
    width: 100%;
    text-align: center;
}

.main-visual .carousel-indicators li {
    width: 45px;
    height: 10px;
    box-sizing: border-box;
    vertical-align: middle;
    border: 1px solid #fff;
    border-radius: 0;
}

.main-visual .carousel-indicators .active {
    width: 45px;
    height: 10px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 0;
    border: none;
}

.main-visual .list-box {
    position: absolute;
    height: 170px;
    width: 100%;
    bottom: 0;
    background: url("/images/kor06r-18-0410/common/bg_b_70.png") repeat;
    text-align: center;
}

.main-visual .list-box ul {
    position: relative;
    display: inline-block;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.main-visual .list-box ul li {
    padding: 30px 0;
    height: 100%;
    color: #ffa800;
    font-size: 20px;
    font-weight: normal;
    line-height: 20px;
}

.main-visual .list-box ul li img {
    display: inline-block;
    margin-bottom: 10px;
}

.main-visual .list-box ul li span {
    display: block;
    margin-bottom: 7px;
}

.main-visual .list-box ul li small {
    display: block;
    font-size: 14px;
    line-height: 14px;
}

@media only screen and (min-width: 1201px) {

}

@media only screen and (max-width: 1200px) {
    .main-visual .carousel-caption .slogan {
        margin-left: 12%;
    }
}

@media screen and (max-width:980px) {
    .carousel-inner>.item {
        height: 600px;
    }
    .main-visual .carousel-caption {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
    }
    .main-visual .carousel-caption .slogan {
        padding: 35px 25px;
        width: 388px;
        font-size: 15px;
    }
    .main-visual .carousel-caption .slogan .main-copy {
        margin-bottom: 10px;
        font-size: 48px;
    }
}

@media screen and (max-width:768px) {
    .carousel-inner>.item {
        height: 350px;
    }
    .carousel-inner>.main-img01,
    .carousel-inner>.main-img02 {
        background-position: 55% center;
    }
    .main-visual .list-box {
        height: 135px;
    }
    .main-visual .list-box ul li {
        font-size: 14px;
        line-height: 14px;
    }
    .main-visual .list-box ul li img {
        height: 30px;
    }
    .main-visual .list-box ul li small {
        font-size: 12px;
        line-height: 12px;
    }
    .main-visual .carousel-indicators {
        display: none;
    }
    .main-visual .carousel-control {
        display: none;
    }
    .main-visual .carousel-control.left,
    .main-visual .carousel-control.right {
        background-size: 20px;
    }
    .main-visual .carousel-caption .slogan {
        padding: 20px;
        width: 230px;
        font-size: 13px;
		border:6px solid #fff;
    }
    .main-visual .carousel-caption .slogan .copy_numb {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .main-visual .carousel-caption .slogan .main-copy {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 0;
    }
    .main-visual .carousel-caption .slogan p {
        font-size: 16px;
        line-height: 1.3;
    }
}

/* Main Contents (메인 컨텐츠)
---------------------------------------------------------------------------------------------------------------------------------------------------------- */

.container {
    width: 100%;
	background-color: #c0c6c6;
}

#mainContainer {
    z-index: 555;
}

.main-box {
    position: relative;
    display: block;
    width: 100%;
}

.main-box-tit {
    position: relative;
    display: table;
    width: 100%;
    min-height: 228px;
    text-align: center;
}

.main-box-tit h3 {
    display: table-cell;
    vertical-align: middle;
    font-size: 30px;
    font-weight: 800;
}

.main-box-tit h3 span {
    position: relative;
    z-index: 1;
    padding: 0 30px;
}

.main-box-tit h3:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.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/kor06r-18-0410/main/main_link_img_1.jpg") no-repeat top/cover;
}

.main-box-link ul li.box-2 {
    background: url("/images/kor06r-18-0410/main/main_link_img_2.jpg") no-repeat top/cover;
}

.main-box-link ul li.box-3 {
    background: url("/images/kor06r-18-0410/main/main_link_img_3.jpg") no-repeat top/cover;
}

.main-box-link ul li.box-4 {
    background: url("/images/kor06r-18-0410/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;
    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;
}

.page-box {
}

.page-box .main-box-in {
    position: relative;
    background-image: none;
    display: block;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    min-height: 520px;
    padding: 100px 30px;
}

.page-box ._left p {
    margin-bottom: 60px;
}

.board-box {
    padding: 100px 30px;
}

.board-box .main-box-in {
    position: relative;
    background-image: none;
    display: block;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    min-height: 212px;
}

.board-box .main-box-in h5 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 30px;
}

.board-box .main-box-in .extract-article {
    min-height: inherit;
    display: block;
}

.board-box .main-box-in .extract-content {
    text-align: left;
}

.board-box .main-box-in .extract-content .extract-date {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-shadow: none;
    color: #b8b8b8;
    margin-bottom: 20px;
}

.board-box .main-box-in .extract-content .extract-date i {
    margin-right: 5px;
}

.board-box .main-box-in .extract-content .extract-title {
    font-size: 24px;
    line-height: 26px;
    text-shadow: none;
    color: #1886a2;
    font-weight: 400;
    margin-bottom: 20px;
}

.board-box .main-box-in .extract-content .extract-body {
    font-size: 16px;
    color: #727272;
    text-shadow: none;
    font-weight: 400;
    line-height: 26px;
}

.board-box p.customer-pic {
    display: inline-block;
    float: left;
    margin-right: 26px;
}

.board-box dl dt {
    font-size: 20px;
    color: #1886a2;
    font-weight: 700;
    margin-bottom: 15px;
}

.board-box dl dd {
    display: block;
    min-height: inherit;
    max-width: inherit;
    font-size: 16px;
    line-height: 1.5;
    color: #727272;
}

.board-box dl dd a {
    text-shadow: none;
    text-align: left;
    display: block;
    min-height: inherit;
    max-width: inherit;
    font-size: 16px;
    line-height: 1.2;
    color: #727272;
}

.board-box dl dd.customer-tel a {
    font-size: 40px;
    font-weight: 900;
    color: #ffa800;
    letter-spacing: -3px;
}

.board-box ._right {
    padding: 0 0 0 60px;
}

@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);
    }
}

@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;
    }
    .board-box {
        padding: 60px 30px;
    }
    .board-box .main-box-in {
        display: inline-block;
    }
    .board-box p.customer-pic {
        width: 140px;
    }
    .board-box dl dd.customer-tel a {
        font-size: 30px;
    }
    .main-box-in ._left {
        padding: 0 30px 0 0;
    }
    .main-box-in ._right {
        padding: 0;
    }
}

@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;
    }
    .board-box .main-box-in {
        padding: 0;
    }
    .board-box ._left {
        border-bottom: 1px solid #e1e1e1;
    }
    .board-box p.customer-pic {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    .board-box dl {
        position: relative;
        display: table;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 480px) {
    .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;
    }
}