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

html, body {
	/* scroll-behavior: smooth; */
}

.mb{
	display: none !important;
}

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

/* @font-face {
    font-family: 'fd';
    src: url('/include/font/freedayz.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */

/* @font-face {
    font-family: 'NanumSquareRound';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */

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

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

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

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


body{
	/* overflow-x: hidden; */
	padding-top: 170px;
}

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

.noto{
	font-family: 'Noto Sans KR', sans-serif !important;
}

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

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

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

.header::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: rgba(0,0,0,0.1) 0 0 10px;
	background: rgba(255,255,255,0.7);
	backdrop-filter: blur(10px);
	transition: all 0.3s;
}

.header:hover::before{
	background: #fff;
}

.header .inner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	height: 170px;
	position: relative;
	z-index: 2;
}

.header .inner .headerTop{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 110px;
}

.header .inner .headerTop .loginBox{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	display: flex;
}

.header .inner .headerTop .loginBox li{
	margin-left: 10px;
	padding-left: 10px;
	position: relative;
}

.header .inner .headerTop .loginBox li:first-child{
	padding-left: 0;
	margin-left: 0;
}

.header .inner .headerTop .loginBox li::before{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	width: 1px;
	height: 10px;
	background: #999;
}

.header .inner .headerTop .loginBox li:first-child::before{
	display: none;
}

.header .inner .headerTop .loginBox li a{
	line-height: 1.3;
	font-size: 12px;
	color: #999;
	font-family: 'GmarketSansLight';
}

.header nav{
	width: 100%;
}

.header nav > ul{
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.header nav > ul > li{
	position: relative;
	text-align: center;
	display: block;
}

.header nav > ul > li > a{
	font-size: 16px;
	line-height: 60px;
	height: 60px;
	transition: all 0.3s;
}

.header nav > ul > li.on > a{
	color: var(--mainCol);
}

.header nav .depth2{
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translate(-50%,0);
	padding: 20px 10px;
	box-sizing: border-box;
	width: 180px;
	background: rgba(255,255,255,0.7);
	backdrop-filter: blur(10px);
	/* box-shadow: rgba(0,0,0,0.2) 0 0 10px; */
	display: none;
	border-radius: 0 0 10px 10px;
}

.header nav > ul > li:nth-child(1) .depth2{
	background: url(/include/img/reserve_visual_m.png) no-repeat center / cover;
}

.header nav > ul > li:nth-child(2) .depth2{
	background: url(/include/img/sub02_visual_m.png) no-repeat center / cover;
}

.header nav > ul > li:nth-child(3) .depth2{
	background: url(/include/img/sub0301_visual_m.png) no-repeat center / cover;
}

.header nav > ul > li:nth-child(4) .depth2{
	background: url(/include/img/sub0401_visual_m.png) no-repeat center / cover;
}

.header nav > ul > li:nth-child(5) .depth2{
	background: url(/include/img/ba_visual_m.png) no-repeat center / cover;
}

.header nav > ul > li:nth-child(6) .depth2{
	background: url(/include/img/qa_visual_m.png) no-repeat center / cover;
}

.header nav .depth2 li{
	margin-bottom: 10px;
}

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

.header nav .depth2 a{
	font-size: 14px;
	/* display: block; */
	transition: all .3s;
	opacity: 0.85;
	border-bottom: 1px dashed transparent;
}

.header nav .depth2 a:hover{
	/* background: rgba(255,255,255,0.2); */
	opacity: 1;
	border-bottom: 1px dashed #999;
}

/* quickBar */
.quickBar{
	position: fixed;
	top: 50%;
	right: 0%;
	transform: translate(100%,-50%);
	width: 100px;
	z-index: 999;
	border-radius: 20px;
	box-shadow: rgba(0,0,0,0.03) 0 0 10px;
	transition: all 1.5s;
}

.quickBar.on{
	transform: translate(0,-50%);
}

.quickBar .quickHead img{
	width: 100%;
}

.quickBar .topBtn{
	cursor: pointer;
}

.quickBar .topBtn img{
	width: 100%;
}

.quickBar ul{
	background: rgba(255,255,255,0.7);
	padding: 0 10%;
	background: rgba(255,255,255,0.7);
	backdrop-filter: blur(10px);
}

.quickBar ul li{
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.quickBar ul li a{
	display: block;
	text-align: center;
	padding: 10px 0;
	font-size: 12px;
}

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

/* subvisual */
.subvisual{
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	padding: 170px 0 !important;
}

.subvisual h2{
	font-size: 30px;
	font-weight: 400;
	color: #fff;
	text-align: center;
}

/* mapBox */
.mapBox .inner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.mapBox .leftBox{
	width: 45%;
}

.mapBox .leftBox li{
	display: flex;
	border-bottom: 1px solid #ddd;
	padding: 30px 0;
}

.mapBox .leftBox li:first-child{
	align-items: center;
}

.mapBox .leftBox li:last-child{
	border-bottom: 0;
}

.mapBox .leftBox li h5{
	width: 120px;
	text-align: left;
	color: #888;
	font-weight: 400;
	font-size: 18px;
}

.mapBox .leftBox li .box{
	font-size: 18px;
	text-align: left;
	line-height: 1.8;
}

.mapBox .rightBox{
	width: 53%;
	border-radius: 20px;
	overflow: hidden;
}

.mapBox .rightBox > *{
	width: 100%;
}

.mapBox .leftBox li a{
	font-size: 32px;
	font-family: 'GmarketSansBold';
}

.mapBox .root_daum_roughmap .wrap_controllers{
	display: none;
}


/* footer */
.footer{
	background: #fff;
	border-top: 25px solid #e6d7bd  ;
	padding: 0px 0;
	text-align: center;
}

.footTop{
	max-width: 1280px;
	width: 90%;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 0;
}

.snsLink{
	display: flex;
	align-items: center;
}

.snsLink li{
	margin-left: 20px;
}

.footer .fLogo{
	width: 164px;
}

.footer .fLogo img{
	width: 100%;
}

.fMenuBox{
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 12px 0 10px;
}

.fMenu{
	display: flex;
	justify-content: center;
	font-size: 13px;
}

.fMenu li{
	padding: 0 10px;
	position: relative;
}

.fMenu li::after{
	content: '';
	display: block;
	width: 1px;
	height: 10px;
	background: #333;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
}

.fMenu li:last-child::after{
	display: none;
}

.footBottom{
	padding: 40px 0;
}

.footer p{
	color: #333;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6;
	margin-bottom: 30px;
}

.footer span{
	color: #333;
	opacity: 0.6;
	font-size: 14px;
	font-weight: 300;
}


/* ---------------------------------------------------------- 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;
}

/* popup */
.hd_pops{
	top: 90px !important;
	left: 50% !important;
	transform: translate(-50%,0%) !important;
	width: 90%;
	position: fixed !important;
}

.hd_pops > .hd_pops_con{
	width: 100% !important;
	height: auto !important;
}

.hd_pops > .hd_pops_con {
  border: 2px solid #6a5a3e !important;
  border-radius: 10px !important;
  box-sizing: border-box;
}




.hd_pops img{
	width: 100%;
}

.hd_pops > .hd_pops_con br{display: none;}


/* header */
.header .inner{
	height: 60px;
	justify-content: center;
}

.header .inner .headerTop {
    height: 60px;
}

.header .logo{
	width: 80px;
}

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

.header .inner .headerTop .loginBox{
	display: none;
}

.header nav{
	position: fixed;
	top: 60px;
	right: 0;
	width: 100%;
	height: calc(100vh - 60px);
	background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
	border-top: 1px solid #ccc;
	display: none;
}

.header nav ul{
	display: block;
}

.header nav > ul > li{
	width: 100%;
	margin-left: 0;
	font-size: 14px;
	border-bottom: 1px solid #ccc;
}

.header nav > ul > li:nth-child(1){
	border-top: 1px solid #ccc;
}

.header nav > ul > li > a{
	position: relative;
	height: 45px;
	line-height: 45px;
}

.header nav > ul > li > a::after{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translate(0,-50%) rotate(135deg);
}

.header nav > ul > li:last-child > a::after{
	display: none;
}

.header nav ul li a{
	display: block;
	text-align: center;
	font-size: 13px;
}

.header nav .depth2 {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0%,0);
    padding: 20px 10px;
    width: 100%;
    /* backdrop-filter: blur(10px); */
    box-shadow: rgba(0,0,0,0.2) 0 0 0px;
	/* background: var(--mainCol); */
	border-top: 1px solid #ccc;
    display: none;
}

.header nav > ul > li:nth-child(1) .depth2{
	background: url(/include/img/reserve_visual_m.png) no-repeat center right / cover;
}

.header nav > ul > li:nth-child(2) .depth2{
	background: url(/include/img/sub02_visual_m.png) no-repeat center right / cover;
}

.header nav > ul > li:nth-child(3) .depth2{
	background: url(/include/img/sub0301_visual_m.png) no-repeat center right / cover;
}

.header nav > ul > li:nth-child(4) .depth2{
	background: url(/include/img/sub0401_visual_m.png) no-repeat center right / cover;
}

.header nav > ul > li:nth-child(5) .depth2{
	background: url(/include/img/ba_visual_m.png) no-repeat center right / cover;
}

.header nav > ul > li:nth-child(6) .depth2{
	background: url(/include/img/qa_visual_m.png) no-repeat center right / cover;
}

.header nav .depth2 a{
	font-size: 12px;
	display: inline-block;
}

.header nav .depth2 a:hover{
	/* background: rgba(255,255,255,0.2); */
	opacity: 1;
	border-bottom: 1px dashed #999;
}

.header nav .loginBox,
.header nav .loginBox li{
	list-style: none;
	padding: 0;
	margin: 0;
}

.header nav .loginBox{
	display: flex !important;
	justify-content: center;
}

.header nav .loginBox li a{
	display: block;
	padding: 20px 20px;
	position: relative;
}

.header nav .loginBox li a::after{
	content: '';
	display: block;
	width: 1px;
	height: 10px;
	background: #ccc;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0%,-50%);
}

.header nav .loginBox li:last-child a::after{
	display: none;
}

.header .menuBtn{
	width: 24px;
	height: 20px;
	position: absolute;
	right: 0%;
	top: 50%;
	transform: translate(0,-50%);
}

.header .menuBtn span{
	display: block;
	width: 100%;
	height: 2px;
	background: var(--mainCol);
	border-radius: 100px;
	position: absolute;
	left: 50%;
	transition: all 0.4s;
}

.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: 0;
	transform: translate(0,100%);
	width: 100%;
}

.quickBar.on{
	transform: translate(0,0%);
}

.quickBar .quickHead{
	display: none;
}

.quickBar .topBtn{
	display: none;
}

.quickBar ul{
	display: flex;
	padding: 0;
	background: rgba(240,240,240,0.8);
}

.quickBar ul li{
	width: 50%;
	position: relative;
}

.quickBar ul li::after{
	content: '';
	display: block;
	width: 1px;
	height: 50%;
	background: rgba(0,0,0,0.2);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}

.quickBar ul li:last-child::after{
	display: none;
}

.quickBar ul li img{
	width: 30px;
}

.quickBar ul li a {
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 10px;
}

/* subvisual */
.subvisual{
	padding: 25vw 0 !important; 
}

.subvisual h2{
	font-size: 5vw;
}

/* mapBox */
.mapBox .leftBox{
	width: 100%;
	order: 2;
	margin-top: 5vw;
}

.mapBox .leftBox li{
	padding: 3vw 0;
}

.mapBox .leftBox li:first-child{
	align-items: center;
}

.mapBox .leftBox li h5{
	width: 20vw;
	font-size: 3vw;
}

.mapBox .leftBox li .box{
	font-size: 3vw;
}

.mapBox .rightBox{
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	order: 1;
}

.mapBox .rightBox > *{
	width: 100%;
}

.mapBox .leftBox li a{
	font-size: 7vw;
	font-family: 'GmarketSansBold';
}

.mapBox .root_daum_roughmap .wrap_controllers{
	display: none;
}

/* footer */
.footer{
	border-top-width: 3vw;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 100px;
}

.footTop{
	flex-wrap: wrap;
	padding: 7vw 0 5vw;
	width: 100%;
	order: 1;
}

.footer .fLogo{
	width: 100px;
	margin: 0 auto 5vw;
}

.footer .fLogo img{
	width: 100%;
}

.snsLink{
	justify-content: center;
}

.snsLink li{
	width: 15%;
	margin: 0 2vw;
}

.snsLink li img{
	width: 100%;
}

.footBottom{
	order: 2;
	width: 100%;
	padding-top: 0 !important;
	padding-bottom: 5vw;
}

.footer p{
	font-size: 2.5vw;
	margin-bottom: 5vw;
}

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

.fMenu {
    display: flex;
	justify-content: flex-start;
    font-size: 12px;
}

.fMenu li{
	white-space: nowrap;
}

.fMenuBox{
	order: 3;
	width: 100%;
	padding: 2vw 5%;
	overflow-x: auto;
}

.fMenuBox::-webkit-scrollbar {
	height: 3px;
	border-radius: 100px;
}

.fMenuBox::-webkit-scrollbar-thumb {
    background-color: #c9a082;
	border-radius: 100px;
}

.fMenuBox::-webkit-scrollbar-track {
    background-color: #e7e7e8;
}




}