@charset "UTF-8";

/*==============================================================
	Error
==============================================================*/
body,
html {
    height: 100%;
}
.wrapper.error *,
.wrapper.error *:before,
.wrapper.error *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

/* ----------------------- Intro ----------------------- */

.wrapper.error {
	position: relative;
	width:100%;
	height:100%;
	font-family: 'Noto Sans KR', 'AppleSDGothicNeo-Regular', 'Malgun Gothic', '맑은 고딕', 'dotum', '돋움', sans-serif;
}

.wrapper.error .bg-error {
	position: fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:0;
    background-color: #dbecff;
}
.wrapper.error .bg-error > img {
	display:block;
    margin-top: -80px;
	width:100%;
	height:100%;
	object-fit: cover;
	object-position: center;	
}

.section-error {
	display: inline-block;
	vertical-align: top;
	width:100%;
	height:100%;
}

.section-error .section-inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-error .error-cont {
	text-align: center;
	margin-top: -7.5%;
}

.section-error .error-cont h1 {
	text-align: center;
}

.section-error .error-cont h1>a {
    position: relative;
	display: inline-block;
	margin-bottom: 20px;
	width: 293px;
	height: 50px;
	background: url('../images/error/icn_vs_logo@2x.png');
	background-size: 100%;
    z-index: 10;
}

.section-error .error-cont .title-cont {
	position: relative;
}

.section-error .error-cont .title-cont>dt {
	display: block;
	margin-bottom: 10px;
	font-size: 30px;
	font-weight: 400;
    line-height: 1.5;
	color: #3C3C3C;
    word-break: keep-all;
}

.section-error .error-cont .title-cont>dt>b {
	display: block;
	font-size: 38px;
	line-height: 1.5;
	font-weight: 600;
}

.section-error .error-cont .title-cont>dd {
	font-weight: 400;
	font-size: 18px;
	color: #3C3C3C;
    word-break: keep-all;
}

.section-error .error-cont .btn-block {
	display: block;
	margin-top: 40px;
}

.section-error .error-cont .btn-block .btn-home {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: auto;
	height: 60px;
    padding: 0 25px;
	background: #FFFFFF;
	border: 1px solid #1D73E4;
	border-radius: 4px;
}

.section-error .error-cont .btn-block .btn-home .ico-arrow-left {
	display: inline-block;
	vertical-align: middle;
	margin: -5px 0 0 0;
	width: 30px;
	height: 30px;
	background: url('../images/error/icn_arrow_left@2x.png');
	background-size: 100%;
}

.section-error .error-cont .btn-block .btn-home span {
	font-weight: 700;
	font-size: 18px;
	line-height: 57px;
	text-align: center;
	color: #1D73E4;
}

.section-error .error-cont .btn-home::before {
	display: block;
	content: '';
	background-color: rgba(29, 115, 228, 0.1);
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	z-index: 0;
}

.section-error .error-cont .btn-home:hover:before {
	animation: ani-btn-hover 0.8s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
	width: 100%;
}

@keyframes ani-btn-hover {
	0% {
		transform: translateX(100%);
	}
	50% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@media (max-width: 1200px) {
    .wrapper.error .bg-error > img {
        margin-top: 0;
    }
}
@media (max-width: 768px) {
	.section-error .section-inner {
		transform: scale(0.8);
	}
    .section-error .error-cont {
        margin-top: -40%;
    }
    .section-error .error-cont .title-cont>dt>b {
        font-size: 36px;
        line-height: 1.3;
    }
    .section-error .error-cont .title-cont>dt {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .section-error .error-cont .title-cont>dd {
        font-size: 16px;
    }
	.section-error .error-cont .btn-block .btn-home span {
		line-height: 60px;
	}
}
