/* font */
@font-face {
    font-family: 'cs';
    src: url('/include/font/ChosunKm.TTF') format('truetype');
    /* font-weight: normal; */
    font-style: normal;
}

/*  */
#container_title{
	display: none;
}

.tit{
	font-size: 45px;
	line-height: 1.6;
	text-align: left;
	margin-bottom: 30px;
	color: #182e4e;
}

body{
	padding-top: 0;
}

.inner{
	max-width: 1700px;
	width: 90%;
}

.btnLink{
	background: #182e4e;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 50px;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin: auto;
	border-radius: 15px;
	margin-top: 50px;
}

.root_daum_roughmap .cont{
	display: none !important;
}

/* headerL */
.headerL{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.headerL .inner{
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	padding: 0 5%;
}

.headerL .logo{
	position: relative;
}

.headerL .logo img{
	transition: all 0.3s;
	max-width: 220px;
}

.headerL .logo .b{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.headerL.on .logo .w{
	opacity: 0;
}

.headerL.on .logo .b{
	opacity: 1;
}

/* visual */
.visual{
	width: 100%;
	height: 90vh;
	background: url(/landing/img/relief/visual.jpg) no-repeat center / cover;
}

/* frdLogo */
.frdLogo{
	background: #fff;
	padding: 6px 0;
}

.frdLogo .inner img{
	display: block;
	margin: auto;
	max-width: 100%;
}

/* section */
.section{
	padding: 120px 0;
}

/* quickL */
.quickL{
	position: fixed;
	right: 0px;
	top: 120px;
	transform: translate(100%,0%);
	z-index: 100;
	overflow: hidden;
	transition: all 2s;
	transition-delay: 0.5s;
}

.quickL.on{
	right: 25px;
	transform: translate(0,0%);
}

.quickL a{
	display: flex;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	background: #394252;
	box-sizing: border-box;
	padding: 12px 20px;
	margin-top: 10px;
	border-radius: 100px;
}

.quickL a:first-child{
	background: #2c4b89;
	margin-top: 0;
}

.quickL a span{
	color: #fff;
	font-size: 13px;
	font-weight: 500;
}

.quickL a img{
	width: 20px;
	margin-right: 5px;
	animation: 2s imgani infinite;
}

@keyframes imgani{
	0%{transform: rotate(0deg);}
	5%{transform: rotate(5deg);}
	15%{transform: rotate(-5deg);}
	20%{transform: rotate(0deg);}
}

/* footerL */
.footerL{
	background: #101a29;
	padding: 50px 0;
}

.footerL .inner{
	position: relative;
}

.footerL .fLogo{
	max-width: 285px;
	margin-bottom: 40px;
}

.footerL .fTxt{
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
}

.footerL .fTxt strong{
	font-size: 18px;
	font-weight: 600;
}

.footerL .selectBox{
	position: absolute;
	bottom: 0;
	right: 0;
}

.footerL .selectBox article{
	position: relative;
}

.footerL .selectBox article + article{
	margin-top: 15px;
}

.footerL .selectBox article h5{
	color: #fff;
	background: var(--mainCol);
	width: 288px;
	height: 45px;
	display: flex;
	align-items: center;
	font-size: 14px;
	box-sizing: border-box;
	padding-left: 10px;
	border-radius: 8px;
	position: relative;
	cursor: pointer;
}

.footerL .selectBox article h5::after{
	content: '';
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translate(0,-75%) rotate(135deg);
}

.footerL .selectBox article ul{
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	padding: 0px 0;
	z-index: 2;
	display: none;
}

.footerL .selectBox article ul li a{
	display: block;
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	padding: 7px 0px;
	padding-left: 10px;
	border-top: 1px solid #eee;
	font-size: 12px;
	font-weight: 500;
}

/* #footer */
#footer{
	background: #020f1b;
}


/* -------------------------------------------MOBILE 720 */
@media screen and (max-width: 720px){

/*  */
.tit{
	font-size: 5.5vw;
	margin-bottom: 5vw;
}

.btnLink{
	background: #182e4e;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45vw;
	height: 10vw;
	font-size: 4vw;
	border-radius: 3vw;
}

/* headerL */
.headerL .inner{
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.headerL .logo img{
	width: auto;
	height: 30px;
}

.headerL .menuBtn{
	width: 22px;
	height: 18px;
	position: relative;
}

.headerL .menuBtn span{
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 50%;
	background: #fff;
	transition: all 0.3s;
}

.headerL .menuBtn.on span,
.headerL.on .menuBtn span{
	background: var(--mainCol);
}

.headerL .menuBtn span:nth-child(1){
	top: 0;
	transform: translate(-50%,0%);
}

.headerL .menuBtn span:nth-child(2){
	top: 50%;
	transform: translate(-50%,-50%);
}

.headerL .menuBtn span:nth-child(3){
	top: 100%;
	transform: translate(-50%,-100%);
}

.headerL .menuBtn.on span:nth-child(1){
	top: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.headerL .menuBtn.on span:nth-child(2){
	opacity: 0;
}

.headerL .menuBtn.on span:nth-child(3){
	top: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
}

/* section */
.section{
	padding: 15vw 0;
}

/* banTxt */
.banTxt{
	padding: 10vw 5%;
}

.banTxt h2{
	font-size: 5.5vw;
}

/* youtubeArea */
.youtubeArea .bigBox{
	width: 100%;
	border-width: 3px;
}

.youtubeArea .bigBox iframe{
	height: 49vw;
}

.youtubeArea .thumb{
	width: 100%;
}

.youtubeArea .thumb li{
	width: calc(100%/3 - 4vw/3);
	margin-right: 2vw !important;
	margin-top: 2vw !important;
	border-width: 3px;
}

.youtubeArea .thumb li:nth-child(3n){
	margin-right: 0vw !important;
}
/* youtubeArea */
.youtubeArea .bigBox{
	width: 100%;
}

.youtubeArea .bigBox iframe{
	height: 49vw;
	margin-bottom: 1vw;
}

.youtubeArea .bigBox h4{
	font-size: 3vw;
}

.youtubeArea .thumb{
	width: 100%;
}

.youtubeArea .thumb li{
	width: calc(100%/3 - 4vw/3);
	margin-right: 2vw !important;
	margin-top: 2vw !important;
}

.youtubeArea .thumb li:nth-child(3n){
	margin-right: 0vw !important;
}

.youtubeArea .thumb li img{
	margin-bottom: 2vw;
}

.youtubeArea .thumb li h5{
	font-size: 2.5vw;
}

.youtubeArea .moreBtn{
	width: 20vw;
	border-radius: 4px;
	margin: 7vw auto;
}

.youtubeArea .moreBtn img{
	max-width: 100%;
}

.searchBox{
	width: 100%;
	max-width: 668px;
	margin: auto;
	display: block;
	position: relative;
}

.searchBox img{
	width: 100%;
}

.searchBox p{
	padding-left: 3vw;
	font-size: 2.5vw;
}

/* quickL */
.quickL{
	position: fixed;
	left: 0;
	right: auto;
	top: auto;
	bottom: 0%;
	transform: translate(0%,100%);
	z-index: 100;
	width: 100%;
	display: flex !important;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
	transition-delay: 0.4s;
	transition: all 2s;
}

.quickL.on{
	right: auto;
	bottom: 0;
	transform: translate(0%,0%);
}

.quickL a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	background: #394252;
	box-sizing: border-box;
	padding: 12px 0;
	margin: 0;
	border-radius: 0;
}

.quickL a:first-child{
	
}

.quickL a span{
	color: #fff;
	font-size: 13px;
	font-weight: 500;
}

.quickL a img{
	width: 20px;
	margin-right: 5px;
}

/* footerL */
.footerL{
	padding: 7vw 0 calc(7vw + 50px);
}

.footerL .fLogo{
	width: 50%;
	margin: auto;
	margin-bottom: 5vw;
}

.footerL .fLogo img{
	max-width: 100%;
}

.footerL .fTxt{
	font-size: 10px;
	text-align: center;
}

.footerL .fTxt strong{
	font-size: 12px;
}

.footerL .selectBox{
	position: static;
	bottom: auto;
	right: auto;
	margin-bottom: 7vw;
}

.footerL .selectBox article{
	position: relative;
	width: 60%;
	margin: auto;
}

.footerL .selectBox article + article{
	margin-top: 2vw;
}

.footerL .selectBox article h5{
	width: 100%;
	height: auto;
	padding: 2vw 0;
	padding-left: 2vw;
	font-size: 2.5vw;
	border-radius: 1vw;
	margin: auto;
}

.footerL .selectBox article h5::after{
	width: 1vw;
	height: 1vw;
	border-width: 1px;
}

.footerL .selectBox article ul li a{
	padding: 2vw 0px;
	padding-left: 2vw;
	font-size: 2vw;
}

/* #footer */
#footer{

}


}