/* common */
*{
	--mainCol: #033064;
	word-break: keep-all !important;
}

.mb{
	display: none !important;
}

.tit{
	font-size: 26px;
	font-weight: 600;
}

.conTxt{
	line-height: 1.7;
	font-size: 18px;
	font-weight: 400;
	color: #5d6164;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
	
}

body *{
	font-family: 'Noto Sans KR', sans-serif;
}

/* imgBox */
.imgBox img{
	max-width: 100%;
	margin: auto;
	display: block;
}

/* inner */
.inner{
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

/* header */
.header{
	position: fixed;
	top: 100px;
	right: 50px;
	width: 201px;
	z-index: 99;
}

.header .logo{
	position: relative;
	max-width: 201px;
	width: 201px;
}

.header .logo a{
	display: block;
	width: 100%;
}

.header .logo img{
	transition: all 0.3s;
}

.header.on .logo img{
	opacity: 0;
}

.header .logo .logoOn{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
}

.header.on .logo .logoOn{
	opacity: 1;
}

.header nav{
	margin-top: 30px;
}

.header nav ul li{
	margin-bottom: 20px;
}

.header nav ul li:last-child{
	margin-bottom: 0;
}

.header nav ul li a{
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	transition: all 0.3s;
	position: relative;
	display: inline-block;
}

.header.on nav ul li a{
	color: #55411f;
}

.header nav ul li a::after{
	content: '';
	display: block;
	width: 0%;
	height: 1px;
	opacity: 0;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: -10px;
	transition: all 0.3s;
}

.header.on nav ul li a::after{
	background: #b89761;
}

.header nav ul li a:hover::after,
.header nav ul li.on a::after{
	width: 100%;
	opacity: 1;
}

.header nav ul li a:hover,
.header nav ul li.on a{
	font-weight: 500;
}

.header.on nav ul li a:hover,
.header.on nav ul li.on a{
	color: #b89761;
}

.header .quickLink{
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-top: 40px;
	padding: 10px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transition: all 0.3s;
}

.header.on .quickLink{
	border-top-color: #b89761;
	border-bottom-color: #b89761;
}

/* quickbar */
.quickBar{
	position: fixed;
	top: 40%;
	right: -100%;
	transform: translate(0,-50%);
	z-index: 50;
	width: 89px;
	transition: all 3s;
	box-shadow: rgba(0,0,0,0.1) 0 0 5px;
}

.quickBar.on{
	right: 0;
}

.quickBar ul{
	background: rgba(255,255,255,0.7);
}

.quickBar ul li a{
	display: block;
	width: 85%;
	margin: auto;
	padding: 15px 0;
	box-sizing: border-box;
	text-align: center;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}

.quickBar ul li:last-child a{
	border-bottom-width: 0;
}

.quickBar ul li img{
	display: block;
	margin: 0 auto 10px;
}

.quickBar ul li span{
	font-size: 13px;
	color: #2d2a3d;
}


/* quickForm */
.quickForm{
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 300px;
	box-sizing: border-box;
	padding: 20px;
	border-radius: 20px;
	box-shadow: rgba(0,0,0,0.2) 0 0 10px;
	background: #2f69df;
	z-index: 99;
	transition: all 1s;
}

.quickForm.off{
	right: -110%;
}

.quickForm .titBox h2{
	width: 50%;
	margin: 0 auto;
}

.quickForm .titBox h2::after{
	content: '';
	display: block;
	width: 20%;
	height: 1px;
	background: #fff;
	margin: 10px auto;
}

.quickForm .titBox h2 img{
	width: 100%;
}

.quickForm .titBox p{
	color: #fff;
	font-size: 16px;
	text-align: center;
	font-weight: 300;
}

.quickForm .titBox p br{
	display: none;
}

.quickForm .formBox{
	padding-top: 20px;
}

.quickForm .formBox ul li{
	margin-bottom: 10px;
}

.quickForm .formBox li input{
	width: 100%;
	height: 35px;
	line-height: 35px;
	font-size: 14px;
	background: rgba(255,255,255,0.2);
	box-sizing: border-box;
	border: 0;
	color: #fff;
	padding-left: 10px;
	box-shadow: none;
	font-weight: 300;
}

.quickForm .formBox li input::placeholder{
	color: rgba(255,255,255,0.8);
	font-weight: 300;
}

.quickForm .formBox .agreeBox{
	display: flex;
	justify-content: center;
	align-items: Center;
	margin-bottom: 10px;
}

.quickForm .formBox .agreeBox label{
	font-size: 12px;
	color: #fff;
	font-weight: 300;
	margin-left: 5px;
}

.quickForm .formBox .sendBtn{
	background: #fff;
	display: block;
	width: 100%;
	height: 35px;
	line-height: 35px;
	color: #2f69df;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
}

.quickForm .closeBtn{
	position: absolute;
	top: 20px;
	right: 20px;
	width: 14px;
	height: 14px;
	display: block;
	cursor: pointer;
}

.quickForm .closeBtn span{
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
}

.quickForm .closeBtn span:nth-child(1){
	transform: translate(-50%,-50%) rotate(45deg);
}

.quickForm .closeBtn span:nth-child(2){
	transform: translate(-50%,-50%) rotate(-45deg);
}


/* footer */
.footer{
	background: #1e180f;
	padding: 50px 0;
}

.footer .inner{
	text-align: center;
}

.footer .fLogo{
	margin-bottom: 30px;
}

.footer p{
	color: #fff;
	font-weight: 300;
	font-size: 13px;
	line-height: 1.5;
}


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




}


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

body {
    /* padding-top: 60px; */
}

.pc{
	display: none !important;
}

.mb{
	display: block !important;
}

/* header */
.header{
	top: 0;
	left: 0;
	width: 100%;
}

.header.on{
	background: #fff;
}

.header .inner{
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .logo{
	width: 110px;
}

.header .logo img{
	width: 100%;
}

.header nav{
	margin-top: 0;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	padding: 0 5%;
	box-shadow: rgba(0,0,0,0.1) 0 5px 5px;
	border-top: 1px solid #eee;
	display: none;
}

.header nav ul li{
	margin-bottom: 0;
	text-align: center;
}

.header nav ul li a{
	font-size: 14px;
	color: #333 !important;
	padding: 20px 0;
}

.header nav ul li a::after{
	bottom: 10px;
}

.header .quickLink{
	display: none;
}

.header .menuBtn{
	display: block;
	width: 22px;
	height: 18px;
	position: relative;
	cursor: pointer;
}

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

.header.on .menuBtn span{
	background: #333;
}

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

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

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

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

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

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

/* quickbar */
.quickBar{
	top: auto;
	bottom: -100%;
	right: 0;
	transform: translate(0,1px);
	z-index: 50;
	width: 100%;
	transition: all 3s;
	box-shadow: rgba(0,0,0,0.1) 0 0 5px;
}

.quickBar.on{
	bottom: 0;
}

.quickBar h2{
	display: none;
}

.quickBar .topBtn{
	display: none;
}

.quickBar ul{
	background: rgba(255,255,255,0.9);
	display: flex;
}

.quickBar ul li{
	width: 50%;
}

.quickBar ul li a{
	width: 100%;
	height: 14vw;
	padding: 0vw 0;
	border-bottom: 0px solid rgba(0,0,0,0.2);
	border-right: 1px solid rgba(0,0,0,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.quickBar ul li:last-child a{
	border-bottom-width: 0;
	border-right-width: 0;
}

.quickBar ul li img{
	margin: 0;
	width: 6vw;
	margin-right: 2vw;
}

.quickBar ul li span{
	font-size: 3.5vw;
	font-weight: 500;
}

/* quickForm */
.quickForm{
	right: 0px;
	bottom: 14vw;
	border-radius: 0;
	width: 100%;
	transition: all 3s;
}

.quickForm form{
	display: flex;
	align-items: center;
}

.quickForm .titBox{
	width: 35%;
	box-sizing: border-box;
	padding-right: 5vw;
}

.quickForm .titBox h2{
	width: 100%;
}

.quickForm .formBox{
	padding-top: 0;
	width: 65%;
}

.quickForm .titBox p{
	font-size: 4.5vw;
	font-weight: 500;
}

.quickForm .titBox p br{
	display: block;
}

.quickForm .formBox li input{
	height: 8vw;
	line-height: 8vw;
	font-size: 3vw;
}

.quickForm .formBox .agreeBox input{
	width: 12px;
}

.quickForm .formBox .agreeBox label{
	font-size: 10px;
}

.quickForm .formBox .sendBtn{
	height: 10vw;
	line-height: 10vw;
	font-size: 4vw;
}

.quickForm .closeBtn{
	top: -25px;
	right: 5px;
	background: #2f69df;
	width: 20px;
	height: 20px;
}

.quickForm .closeBtn span{
	width: 50%;
}

/* footer */
.footer{
	padding: 7vw 0;
}

.footer .fLogo{
	margin-bottom: 3vw;
}

.footer .fLogo img{
	max-width: 170px;
	width: 30%;
}

.footer p{
	font-size: 2vw;
}


}