/**/
header{
	position: fixed;
	width: 100%;
	height: auto;
	display: block;
	padding: 20px 0;
	z-index: 99999;
}

header .inner{
	margin: 0 auto;
	width: 1400px;
}

header:hover,
header.down{
    background: #fff;
    transition: 0.2s;
	border-bottom: 1px solid #f7f7f7;
}

header:hover .gnb-box>li>a,
header.down .gnb-box>li>a{
    color: #111;
}


header .logo{
	font-family: "GmarketSansBold";
	color: #1db7ff;
	font-size: 30px;
	font-weight: 800;
	text-align: center;
}

header ul{
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

header li a{
	cursor: pointer;
	color: #fff;
	font-size: 18px;
	margin: 0 20px;
}

header:hover li a,
header.down li a{
	color: #111 !important;
}

button.top{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #1db7ff;
	position: fixed;
	bottom: 50px;
	right: 50px;
	color: #fff;
	font-weight: 800;
	z-index: 999;
}

 button.top.on{
	opacity: 1;
	transition: 0.4s;
}

button.top::after{
	position: absolute;
	content: "";
	top: 10px;
    left: 10px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba( 29 183 255 / 20%);
	opacity: 0;
}

button.top.hv::after{
	transition: 0.2s;
	opacity: 1;
	animation: dots2 linear 1.5s infinite;
}

@keyframes dots2 {
    0%{
      opacity: 0.7;
      transform: scale(1);
    }
    100%{
      opacity: 0;
      transform: scale(4);
    }
}

.gnb-btn {
	display: none;
	z-index: 99999999;
	position: absolute;
	right: 15px;
	top: 10px;
}

.gnb-btn button{
	position: relative;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
}

.gnb-btn button span{
	position: absolute;
	display: block;
	height: 2px;
	width: 22px;
	background: #fff;
	top: 50%;
	margin-top: -1px;
	left: 50%;
	margin-left: -11px;
	transition: all 0.5s;
}


.gnb-btn button span:before{
	position: absolute;
	content:'';
	display: block;
	height: 100%;
	width: 100%;
	background: #fff;
	top: -7px;
	transform: rotate(0deg);
	transition: all 0.5s;
}

.gnb-btn button span:after{
	content:'';
	display: block;
	height: 100%;
	width: 100%;
	background: #fff;
	position: absolute;
	top: 7px;
	transform: rotate(0deg);
	transition: all 0.5s;
}

.gnb-btn.gnb-btn-active button span{
	background: transparent;
}

.gnb-btn.gnb-btn-active button span:before{
	transform: rotate(135deg);
	top: 0;
}

.gnb-btn.gnb-btn-active button span:after{
	transform: rotate(-135deg);top: 0;
}


.site-map {
    display: none;
    z-index: 9999;
    position: fixed;
    top: 58px;
	right: 0;
    width: 60%;
    height: 100vh;
	padding: 40px;
	background: #1db7ff;
}

.site-map li:not(:last-child){
	margin-bottom: 20px;
}

footer{
	background: #fff;
	color: #111;
	text-align: center;
	font-family: "Pretendard";
}

footer .inner{
	padding: 100px 0;
}

footer .logo{
	font-family: "GmarketSansBold";
    color: #d1d1d1;
    font-size: 30px;
    font-weight: 800;
}

footer ul{
	display: flex;
	justify-content: center;
}

footer li{
	display: flex;
}

footer li:not(:last-child){
	margin-right: 20px;
}

footer li b{
	display: inline-block;
	margin-right: 10px;
}

footer .copy{
	margin-top: 10px;
	color: #a3a3a3;
}



@media screen and (max-width: 1390px) {

	header .inner {
		width: 100%;
	}

	header li a{
		font-size: 16px;
	}

	footer .inner{
		padding: 50px 20px;
	}

	footer ul,
	footer li{
		flex-wrap: wrap;
	}


}

@media screen and (max-width: 640px) {

	button.top{
		width: 50px;
		height: 50px;
		bottom: 20px;
		right: 20px;
	}

	header{
		padding: 10px 0;
	}

	header ul{
		display: none;
	}

	.gnb-btn{
		display: block;
	}

	header .logo{
		font-size: 20px;
	}

	button.top span{
		font-size: 12px;
	}

	header:hover .gnb-btn button span:before,
	header.down .gnb-btn button span:before,
	header:hover .gnb-btn button span,
	header.down .gnb-btn button span,
	header:hover .gnb-btn button span:after,
	header.down .gnb-btn button span:after{
		background: #111;
	}

	.gnb-btn.gnb-btn-active button span {
		background: transparent !important;
	}


	.adr b{
		width: 100%;
	}

	.adr {
		margin-bottom: 10px;
	}

}