@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1640px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 33;
	background: transparent;
	border-bottom: 1px solid #686868;
	transition: background .3s;
	box-sizing: border-box;
}
#header .inner {
	height: 109px;
	gap: 20px;
}
#header .logo .symbol {
	height: 48px;
}
#header .logo .logo_txt {
	height: 23px;
}
#header .h_util {
	gap: 65px;
}
#header .h_util .gnb {
	gap: 30px;
}
#header .h_util .gnb li a {
	letter-spacing: 1.28px;
}
#header .h_util .sns {
	gap: 25px;
}
#header .h_util .sns a {
	width: 34px;
	height: 34px;
	border: 2px solid var(--black);
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
#header .menu {
	display: none;
}
#header.fixed {
	background: linear-gradient(334deg, #1A1A1A 6.24%, #3B3A3A 113.09%);
}
#header.fixed .h_util .gnb li a {
	color: var(--white);
}
#header.fixed .h_util .sns a {
	border-color: var(--white);
}
#header.fixed .h_util .sns a svg path {
	fill: var(--white);
}





.side-wrap {
	width: 300px;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 35;
	background: linear-gradient(334deg, #1A1A1A 6.24%, #3B3A3A 113.09%);
	overflow-y: auto;
	transition: all .2s;
}
.side-wrap.on {
	right: 0;
}
.side-wrap .top {
	position: relative;
	padding: 35px 55px 15px 20px;
}
.side-wrap .top .side-close {
	position: absolute;
	top: 15px;
    right: 20px;
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
}
.side-wrap .top .side-close span {
	position: absolute;
	top: 11px;
    left: 4px;
	display: block;
	width: 17px;
	height: 2px;
	border-radius: 5px;
	background: #fff;
}
.side-wrap .top .side-close span:nth-child(1) {
	transform: rotate(45deg);
}
.side-wrap .top .side-close span:nth-child(2) {
	transform: rotate(-45deg);
}
.side-wrap .depth {
    padding: 20px;
}
.side-wrap .depth01 > a {
    display: block;
    width: 100%;
    font-size: 14px;
    text-align: left;
    padding: 7px 0;
	color: var(--white);
}
.side-wrap .depth01 > p {
	margin: 20px 0 8px;
}
.side-wrap .depth01.lh {
	margin-bottom: 5px;
}
.side-wrap .depth01 a.btn_o {
	border-radius: 10px;
	padding: 10px 20px;
	margin-top: 10px;
	box-sizing: border-box;
}
.side-wrap .depth01:first-child a.btn_o {
	margin-top: 0;
}
.side-wrap .depth01 > a.btn_o img {
	vertical-align: middle;
	margin-right: 10px;
}
.side-wrap .depth02 {
	max-height: 0;
	overflow: hidden;
}
.side-wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 18px;
    font-weight: 300;
	margin: 40px 0;
}
.black-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
	display: none;
}




#container {
	position: relative;
}


.not_scroll {
	overflow: hidden;
}



#footer {
	position: relative;
	background: linear-gradient(334deg, #1A1A1A 6.24%, #3B3A3A 113.09%);
	color: #FFEFEF;
	padding: 125px 0 35px;
	box-sizing: border-box;
}
#footer .inner {
	gap: 164px;
}
#footer .info {
	gap: 10px;
}
#footer .info h1 .symbol {
	height: 48px;
}
#footer .info h1 .logo_txt {
	height: 23px;
}
#footer .info .txt {
	flex: 1;
	letter-spacing: 1.28px;
}
#footer .info .sns {
	gap: 25px;
}
#footer .info .sns a {
	width: 34px;
	height: 34px;
	border: 2px solid var(--white);
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
#footer .info .sns svg path {
	fill: var(--white);
}
#footer .copy {
	font-size: 13px;
	line-height: 1.15;
}







@media screen and (max-width: 1640px) {
	#header .h_util {
		gap: 35px;
	}
	#header .h_util .gnb {
		gap: 25px;
	}
}
@media screen and (max-width: 1440px) {
	#header .h_util .sns {
		gap: 15px;
	}
}
@media screen and (max-width: 1280px) {
	#header .h_util {
        gap: 25px;
    }
	#header .h_util .gnb {
        gap: 18px;
    }
	#header .h_util .gnb li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 1024px) {
	#header {
		background: transparent;
		border-bottom: 0;
	}
	#header .inner {
    	height: 75px;
	}
	#header .logo a {
		flex-direction: column;
	}
	#header .logo .symbol {
		height: 30px;
	}
	#header .logo .logo_txt {
		height: 13px;
	}
	#header .h_util {
		display: none;
	}
	#header .menu {
		display: block;
	}


	#footer {
		padding: 60px 0;
	}
	#footer .inner {
		gap: 87px;
	}
	#footer .info {
		flex-direction: column;
		gap: 60px;
	}
	#footer .info h1 {
		flex-direction: column;
	}
	#footer .info h1 .symbol {
		height: 40px;
	}
	#footer .info h1 .logo_txt {
		height: 20px;
	}
	#footer .info .txt {
		font-size: 14px;
	}
	#footer .info .sns {
		width: 100%;
		max-width: 182px;
		gap: 10px;
	}
	#footer .copy {
		font-size: 12px;
	}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}