@charset "utf-8";

#wrap {
	position: relative;
}

.inner {
	position: relative;
	width: 100%;
	max-width: 1720px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}


#header {
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 15;
	text-align: center;
	font-size: 15px;
	background: rgb(186 73 255 / 5%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all .3s;
}
#header .logo {
	width: 180px;
}
#header .logo img {
	width: 100%;
}
#header .grid {
	display: grid;
	grid-template-columns: 180px 7fr 210px 165px;
	align-items: center;
	padding: 30px 0;
	transition: all .3s;
}
#header .gnb {
	text-align: center;
	padding: 0 10px;
	box-sizing: border-box;
}
#header .gnb > ul {
	justify-content: center;
	align-items: center;
	gap: 10px 60px;
}
#header .gnb > ul > li {
	position: relative;
	font-weight: 700;
	font-size: 18px;
}
#header .gnb > ul > li a {
	transition: all .2s;
}
#header .gnb > ul > li > a:hover,
#header .gnb > ul > li.active > a {
	color: #BA49FF !important;
}
#header .gnb .sub_category {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	position: absolute;
    width: 170px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s;
}
#header .gnb .sub_category ul {
    background: #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    padding: 15px 0;
    line-height: 1.7;
}
#header .gnb .sub_category ul a {
	display: block;
}
#header .gnb > ul > li:hover .sub_category {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}
#header .h_contact {
	position: relative;
	width: 169px;
	height: 45px;
	border-radius: 100px;
	border: 1px solid #BA49FF;
	box-sizing: border-box;
	overflow: hidden;
}
.h_contact.line_wh:hover {
    border: 1px solid #BA49FF !important;
}
#header .h_contact a {
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
	color: #BA49FF;
	display: flex;
	font-size: 18px;
	font-weight: 700;
	left: 0;
	top: 0;
	position: absolute;
	height: 100%;
	width: 100%;
	justify-content: center;
	letter-spacing: 1px;
	text-decoration: none;
	overflow: hidden;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(15px);
	z-index: 1;
	transition: 0.5s;
}
#header .h_contact a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left,
                rgba(255,255,255,0.15),
                transparent);
    transform: skewX(45deg) translateX(0);
    transition: 0.5s;
}
#header .h_contact:hover {
	border: 1px solid #BA49FF;
	transition-delay: .25s;
}
#header .h_contact:hover a {
    color: #fff !important;
}

#header .h_contact:hover a::before {
    transform: skewX(45deg) translateX(200%);
}

#header .h_contact::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    height: 10px;
    width: 30px; 
    background: #BA49FF;
    border-radius: 10px;
    transition: 0.5s;
    transition-delay: 0s;
}

#header .h_contact:hover::before {
    bottom: 0;
    height: 80%;
    width: 130%;
    border-radius: 30px;
    transition-delay: 0.2s;
	opacity: 1;
}

#header .h_contact::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
    height: 10px;
    width: 30px;
    background: #BA49FF;
    border-radius: 10px;
    transition: 0.5s;
    transition-delay: 0s;
}

#header .h_contact:hover::after {
    top: 0;
    height: 70%;
    width: 130%;
    border-radius: 30px;
    transition-delay: 0.2s;
	opacity: 1;
}

#header .h_contact:before,
#header .h_contact::after {
	opacity: 0;
    background: #BA49FF;
    box-shadow: 0 0 10px #BA49FF,
    0 0 15px #BA49FF,
    0 0 30px #BA49FF,
    0 0 60px #BA49FF;
}

/****************/

#header .lang {
	position: relative;
	width: 210px;
}
#header .lang ul {
	text-align: center;
	box-sizing: border-box;
	gap: 10px;
}
#header .lang ul li {
	width: 62px;
}
#header .lang ul li button {
	display: block;
	width: 100%;
	height: 45px;
	font-size: 16px;
	margin: 5px 0;
	font-weight: 500;
	border-radius: 5px;
	background: #E4E4E4;
	box-sizing: border-box;
}
#header .lang ul li button.active {
	background: #BA49FF;
	color: #fff;
	border: 1px solid #BA49FF;
}
 
#header .toggleWrapper {
  position: relative;
  border-radius: 100px;
  box-sizing: border-box;
  overflow: hidden;
  width: 144px;
  height: 45px;
  margin-left: 20px;
}

#header .toggleWrapper input {
  position: absolute;
  left: -99em;
}

#header .toggle {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 144px;
  height: 45px;
  background: #E4E4E4;
  border-radius: 30px;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

#header .toggle:before, .toggle:after {
  position: absolute;
  line-height: 45px;
  font-size: 14px;
  z-index: 2;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

#header .toggle:before {
  content: "White";
  left: 20px;
}

#header .toggle:after {
  content: "Black";
  right: 20px;
  color: #000;
}

#header .toggle__handler {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: #BA49FF;
  width: 79px;
  height: 45px;
  border-radius: 30px;
  top: 0px;
  left: -99px;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transform: translateX(67px);
}
 
 

#header input:checked + .toggle .toggle__handler {
  width: 79px;
  transform: translateX(132px);
}

#header input:checked + .toggle:before {
  color: #000;
}

#header input:checked + .toggle:after {
  color: #fff;
}

#header .toggleWrapper {
    position: relative;
    width: 144px;
    height: 45px;
    border-radius: 100px;
    box-sizing: border-box;
    margin: 0 0 0 20px;
    overflow: hidden;
    }

.color_bk{
    color:#000 !important;
} 
.bg_purple{
    background:#BA49FF !important;
}
/***************/


#header .menu {
	display: none;
	position: absolute;
	top: 12px;
	right: 15px;
}
#header .menu a {
	background: url("../images/ico-menu.svg")no-repeat 50% 50% / 65%;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #E26738;
	font-size: 25px;
}


#side {
	position: relative;
}
.scroll_func {
	width:100%;
	height:95%;
	overflow-x: hidden;
	overflow-y:auto;
}
.scroll_func::-webkit-scrollbar {
	width: 7px; 
}
.scroll_func::-webkit-scrollbar,
.scroll_func::-webkit-scrollbar-thumb {
	overflow:visible;
	border-radius: 4px;
	opacity: 0;
}
.scroll_func::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,.2); 
}

.side_wrap {
	width: 280px;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 35;
	height: 100%;
	background: #141420;
	font-size: 18px;
	padding: 45px 0px 0 0;
	box-sizing: border-box;
	transition: all .2s;
}
#side.on .side_wrap {
	right: 0;
}
.side_wrap .close {
	position: absolute;
	top: 15px;
	right: 20px;
	display: block;
	width: 25px;
	height: 25px;
	z-index: 1;
}
.side_wrap .close img {
	width: 18px;
}
.side_wrap .lang {
	position: relative;
	margin-top: 7px;
}
.side_wrap .lang ul {
	text-align: center;
	box-sizing: border-box;
	gap: 10px;
	padding: 0 20px;
	box-sizing: border-box;
}
.side_wrap .lang ul li {
	width: 55px;
}
.side_wrap .lang ul li button {
	display: block;
	width: 100%;
	height: 35px;
	font-size: 14px;
	margin: 5px 0;
	font-weight: 500;
	border-radius: 10px;
	background: #E4E4E4;
	box-sizing: border-box;
}
.side_wrap .lang ul li button.active {
	background: #BA49FF;
    color: #fff;
    border: 1px solid #BA49FF;
}
.side_wrap .h_contact a {
	position: absolute;
    top: 20px;
    left: 20px;
    width: 110px;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
	display: block;
	font-weight: 700;
	text-align: center;
	background: #BA49FF;
	color: #fff;
	border-radius: 200px;
	text-align: center;
	box-sizing: border-box;
	transition: all .2s;
}
.side_wrap > ul {
	margin-top: 30px;
}
.side_wrap .signup a {
	color: #fff;
  background: #661AB9 url("../images/ico-shop.svg")no-repeat 0px 50% / 40px;
  padding: 8px 16px 8px 38px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 5px;
  font-family: 'Cafe24Ohsquareair';
  transform: rotate(0.03deg);
}
.side_wrap > ul > li {
	position: relative;
	border-bottom: 1px solid #e1e1e1;
}
.side_wrap > ul > li > a {
	display: block;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: 500;
	margin-left: 10px;
	box-sizing: border-box;
	background: url("../images/ico-arrow-down-black.svg")no-repeat 92% 50% / 17px;
}
.side_wrap > ul > li.no_child > a {
	background: none;
}
.side_wrap > ul > li:not(.on) > a:hover {
	color: #15AF7F;
}
.side_wrap > ul > li.on:before {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 0;
	width: 7px;
	height: 40px;
	border-radius: 0 10px 10px 0;
	background: #15AF7F;
}
.side_wrap .sub_category {
	padding-left: 30px;
  line-height: 1.8;
  font-size: 14px;
	overflow: hidden;
	max-height: 0px;
	font-family: 'Noto Sans KR';
	transition: max-height .3s;
}
.side_wrap .active .sub_category {
	max-height: 500px;
}
.side_wrap .sub_category li {
	margin: 10px 0;
}
.side_wrap .sub_category li a {
	display: block;
}




.black_bg {
	position: fixed;
	width:100%;
	height: 100%;
	left:0;
	top:0;
	z-index: 16;
	/* background: rgba(0,0,0,0.4); */
	display: none;
}
.not_scroll {
	overflow: hidden;
}




#footer {
	position: relative;
	padding: 100px 0 40px;
	background: #000;
}
#footer .inner {
	max-width: 1320px;
}
#footer .top {
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}
#footer .top .logo {
	width: 200px;
}
#footer .top .logo img {
	width: 100%;
}
#footer .top .util {
	gap: 10px 40px;
}
#footer .top .util li a {
	font-size: 18px;
    color: #fff;
}
#footer .box .flex {
	margin-bottom: 10px;
	gap: 10px 20px;
}
#footer .copy {
	margin-top: 30px;
}



#fix_footer {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 5;
}
#fix_footer > div a {
	display: block;
	width: 80px;
	height: 80px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 50%;
	margin: 20px auto 0;
	text-align: center;
	padding: 10px 0;
	box-sizing: border-box;
}
#fix_footer > div.ft02 a {
	background: #fff;
}
#fix_footer .top_sc a {
	width: 50px;
	height: 50px;
	background: #fff url("../images/top_sc.svg")no-repeat 50% 50%;
}





.modal {
	display: none;
	z-index: 16;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(0,0,0,0.4);
	z-index: 17;
}
.modal .modal_cont {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	max-width: 1200px;
	box-sizing: border-box;
	background: #24242e;
	max-height: 90vh;
	z-index: 18;
}
.modal .modal_cont .scroll {
	max-height: calc(90vh - 85px);
	overflow-x: hidden;
	overflow-y: visible;
	-ms-scroll-chaining: none;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	padding: 30px;
	box-sizing: border-box;
}
.modal .cont img {
    width: 100%;
}
.modal .close {
	position: absolute;
	top: 30px;
	right: 20px;
	width: 20px;
}
.modal .close img {
	width: 100%;
}
.agree_modal h3 {
	font-size: 28px;
    text-align: center;
    padding: 25px 0
}
.agree_modal .scroll .box {
    white-space: pre-line;
    line-height: 1.8;
    font-size: 14px;
}






@media screen and (max-width: 1280px){
	#header .gnb > ul {
		gap: 10px 28px;
	}
	#header .gnb > ul > li {
		font-size: 18px;
		max-width: 105px;
	}
	#header .gnb .sub_category ul {
		font-size: 16px;
	}
	#header .gnb ul li:last-child .sub_category  {
		left: auto;
		right: 0;
		transform: none;
	}
	#header .h_contact a {
		width: 100%;
	}
}
@media screen and (max-width: 1024px){
	#header {
		background: #141420;
	}
	#header .grid {
		grid-template-columns: 130px;
		padding: 10px 45px 10px 0;
	}
	#header .h_contact {
		display: none;
	}
	#header .gnb {
		display: none;
	}
	#header .menu {
		display: block;
	}
	#header .lang {
		display: none;
	}
	#header .toggleWrapper {
		position: absolute;
		top: 11px;
		right: 65px;
		height: 40px;
	}
	#header .toggle {
		height: 40px;
	}
	#header .toggle:before, 
	.toggle:after {
		line-height: 40px;
	}
	#header .toggle__handler {
		top: -3px;
		left: -100px;
	}

	
	#footer {
		padding: 70px 0 40px;
	}
	#footer .top .logo {
		width: 175px;
	}
	#footer .top .util {
		width: 100%;
		margin-top: 30px;
		gap: 10px 20px;
	}
	#footer .top .util li a {
		font-size: 14px;
	}
	#footer .box .flex {
		font-size: 14px;
	}
	#footer .copy {
		font-size: 14px;
	}
	
	#fix_footer {
		bottom: 20px;
		right: 15px;
	}
	#fix_footer > div a {
		width: 60px;
		height: 60px;
		font-size: 16px;
		padding: 12px 0;
		margin: 10px auto 0;
	}
	#fix_footer .top_sc a {
		width: 40px;
		height: 40px;
		background-size: 100%;
	}
}
@media screen and (max-width: 768px) {
	.agree_modal h3 {
		font-size: 24px;
	}
}
@media screen and (max-width: 480px) {
	
}
@media screen and (max-width: 380px) {
}