@charset "utf-8";

.inner {
	position: relative;
	width: 100%;
	max-width: 1360px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	padding: 24px 0;
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
	z-index: 32;
}
#header .inner {
	gap: 60px;
}
#header .logo a {
	align-items: end;
	gap: 6px;
	line-height: 1.4;
	letter-spacing: -0.64px;
}
#header .logo h1 {
	font-size: 40px;
	font-weight: 500;
	letter-spacing: -1.6px;
	line-height: .8;
}
#header .logo p {
	color: var(--point);
}
#header .gnb ul {
	gap: 40px;
	padding-right: 35px;
	box-sizing: border-box;
}
#header .gnb ul li a {
	position: relative;
	display: block;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.4px;
	text-transform: capitalize;
	box-sizing: border-box;
}
#header .gnb ul li a:before {
	content: '';
	position: absolute;
	top: 6px;
	left: 0;
	display: block;
	width: 8px;
	height: 8px;
	background: var(--key-color);
	border-radius: 50%;
	opacity: 0;
	transition: all .3s;
}
#header .gnb ul li a.active:before,
#header .gnb ul li a:hover:before {
	opacity: 1;
	left: -16px;
}
#header .h_util {
	gap: 20px;
}
#header .h_util .login_btn a {
	position: relative;
	display: block;
	width: 34px;
	height: 34px;
	background: url("../images/ic_user.svg")no-repeat 50% 50% / auto 100%;
}
#header .h_util .login_btn a span {
	position: absolute;
	bottom: -12px;
    left: -46px;
	width: max-content;
	padding: 5px 10px 7px;
	border-radius: 50px;
	color: var(--key-color);
	border: 1px solid var(--key-color);
	background: var(--white);
	letter-spacing: -0.32px;
	font-weight: 500;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.20);
	font-size: 14px;
	animation: ani_up_down 1s ease-in-out infinite;
	box-sizing: border-box;
}
@keyframes ani_up_down {
	0% {transform: translateY(0px);}
	50% {transform: translateY(-5px);}
	100% {transform: translateY(0px);}
}
#header .h_util .contact_btn {
	font-size: 20px;
	font-weight: 500;
	padding: 10px 24px;
	border-radius: 50px;
	box-sizing: border-box;
}
#header .menu {
	position: relative;
	display: none;
}
#header .menu a {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}
#header .menu span {
	position: absolute;
	left: 3px;
	display: block;
	width: 16px;
	height: 2px;
	background: var(--key-color);
	transition: all .3s;
}
#header .menu span:nth-child(1) {
	top: 8px;
}
#header .menu span:nth-child(2) {
	top: 16px;
	width: 24px;
}
#header .menu span:nth-child(3) {
	top: 24px;
	left: auto;
	right: 3px;
}
#header.on .menu span:nth-child(1) {
	top: 15px;
	left: 4px;
	width: 22px;
	transform: rotate(45deg);
}
#header.on .menu span:nth-child(2) {
	display: none;
}
#header.on .menu span:nth-child(3) {
	top: 15px;
	right: 4px;
	width: 22px;
	transform: rotate(-45deg);
}


.side_wrap {
	position: fixed; 
	top: -100%;
	width: 100%;
	transition: all .2s;
	z-index: 36;
	background: var(--white);
}
.side_wrap.on {
	top: 60px;
}
.side_wrap .top {
	padding: 20px;
	box-sizing: border-box;
}
.side_wrap .top a {
    display: block;
    width: 100%;
    background: var(--key-color);
    color: var(--white);
    font-size: 18px;
    border-radius: 50px;
    padding: 15px 10px;
    box-sizing: border-box;
}
.side_wrap .join_btn  {
	padding: 0 20px;
	box-sizing: border-box;
}
.side_wrap .join_btn a {
	flex: 1;
    font-size: 16px;
    border-radius: 50px;
    padding: 15px 10px;
    box-sizing: border-box;
}
.side_wrap .join_btn a .m {
	display: none;
}
.side_wrap .depth {
	overflow-y: auto;
	padding: 5px 0;
	box-sizing: border-box;
}
.side_wrap .depth01 {
	position: relative;
}
.side_wrap .depth01 > a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	font-size: 16px;
	padding: 15px 20px;
	box-sizing: border-box;
}
.side_wrap .depth01.no_child > a {
	background: none!important;
}
.side_wrap .depth01.no_child > a.yw {
	font-size: 32px;
}
.side_wrap .depth01.active > a {
	background: var(--key-color);
	color: var(--white);
}
.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: all .3s;
}
.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}
.side_wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 20px;
	box-sizing: border-box;
}
.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}
.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 30;
}
.not_scroll {
	overflow: hidden;
}


#container {
	position: relative;
	padding: 70px 0 160px;
	box-sizing: border-box;
}


#footer {
	position: relative;
	padding: 100px 0 40px;
	background: var(--black);
	color: var(--white);
	box-sizing: border-box;
}
#footer .inner {
	gap: 60px;
}
#footer .logo {
	align-items: end;
	font-size: 40px;
	font-weight: 500;
	line-height: .8;
	letter-spacing: -1.6px;
	gap: 6px;
}
#footer .logo p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.64px;
}
#footer .ft_info {
	gap: 40px;
	font-size: 20px;
	line-height: 1.2;
}
#footer .bottom {
	font-size: 20px;
}
#footer .bottom .ft_util button {
	color: var(--white);
}


#quick {
    position: fixed;
    bottom: 50px;
    right: 35px;
    gap: 20px;
    z-index: 35;
}
#quick > a {
	width: 100px;
	height: 100px;
	justify-content: center;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	box-sizing: border-box;
}


.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}
.modal .modal_cont {
    width: 90%;
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 101;
	background: var(--white);
	padding: 40px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	gap: 10px;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: uppercase;
}
.modal .btn_area > * {
	height: 60px;
	padding: 0 40px;
	border-radius: 50px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	box-sizing: border-box;
}



.tit_box {
	gap: 20px;
	line-height: 1.2;
}
.tit_box .badge span {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	padding: 10px 26px;
	border-radius: 50px;
	text-transform: capitalize;
	box-sizing: border-box;
}
.tit_box h4 {
	font-size: 48px;
	font-weight: 500;
}
.tit_box p {
	color: var(--text);
	font-size: 20px;
}


.pagenavi ol {
	text-align: center;
	justify-content: center;
	gap: 10px;
}
.pagenavi .first a {
	background: url("../images/navi-first.svg")no-repeat 50% 50%;
}
.pagenavi .prev a {
	background: url("../images/navi-prev.svg")no-repeat 50% 50%;
}
.pagenavi .next a {
	background: url("../images/navi-next.svg")no-repeat 50% 50%;
}
.pagenavi .last  a {
	background: url("../images/navi-last.svg")no-repeat 50% 50%;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	color: #7B7B7B;
	border-radius: 10px;
}
.pagenavi ol li.this a {
	font-size: 20px;
	background: var(--key-color);
	color: var(--white);
	font-weight: 700;
}



#agree_pop .modal_cont {
	background-color: #f5f5f5;
}
#agree_pop .box {
	border-radius: 30px;
	padding: 20px 30px;
	background: var(--white);
	box-sizing: border-box;
}
#agree_pop .box:last-child {
	margin-top: 20px;
}
#agree_pop .box h4 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 14px;
}
#agree_pop .box .cont {
    line-height: 1.2;
    overflow-y: auto;
    max-height: calc(50vh - 176px);
}



.product .filter {
	margin-bottom: 30px;
}
.product .tab .swiper-slide {
	width: auto;
}
.product .tab .swiper-slide button {
	height: 40px;
	font-size: 20px;
	padding: 0 30px;
	border-radius: 50px;
	border: 1px solid var(--stroke);
	background: var(--white);
	box-sizing: border-box;
}
.product .tab .swiper-slide button.active {
	font-weight: 700;
	background: var(--black);
	border: 1px solid var(--black);
	color: var(--white);
}
.product .list {
	gap: 20px;
}
.product .list .item {
	width: calc(25% - 15px);
	border-radius: 15px;
	border: 1px solid var(--stroke);
	background: var(--white);
	overflow: hidden;
	box-sizing: border-box;
}
.product .list .item .thumb {
	position: relative;
	padding-bottom: 90%;
	overflow: hidden;
}
.product .list .item .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product .list .item .info {
	padding: 20px;
	gap: 30px;
	box-sizing: border-box;
}
.product .list .item .info .summary {
	color: var(--text);
	font-size: 18px;
	letter-spacing: -0.36px;
	text-transform: capitalize;
}
.product .list .item .info .summary p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.product .list .item .info .summary strong {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.8px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.product .list .item .info .price h4 {
	font-size: 24px;
	letter-spacing: -0.96px;
}
.product .list .item .info .price span {
	padding: 6px 10px;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.50);
	background: rgba(27, 89, 236, 0.15);
	color: var(--point);
	font-size: 14px;
	line-height: 1;
	box-sizing: border-box;
}
.product .list .item .info button {
	height: 58px;
	border-radius: 10px;
	border: 1px solid var(--stroke);
	font-size: 18px;
	box-sizing: border-box;
}
#buy_pop .modal_cont {
	max-width: 800px;
}
#buy_pop .modal_cont .scroll {
	max-height: calc(95vh - 80px);
}
#buy_pop .cont {
	gap: 30px;
}
#buy_pop .prd_item {
	border-radius: 15px;
	border: 1px solid var(--stroke);
	overflow: hidden;
	box-sizing: border-box;
}
#buy_pop .prd_item .img {
	position: relative;
	width: 130px;
	height: 100px;
	overflow: hidden;
}
#buy_pop .prd_item .img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#buy_pop .prd_item .txt {
	padding: 20px;
	gap: 16px;
	box-sizing: border-box;
}
#buy_pop .prd_item .txt .info {
	color: var(--text);
	font-size: 18px;
	letter-spacing: -0.36px;
	text-transform: capitalize;
}
#buy_pop .prd_item .txt .price strong {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.8px;
	text-transform: uppercase;
}
#buy_pop .prd_item .txt .price h4 {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.96px;
}
#buy_pop .agree_box {
	gap: 16px;
}
#buy_pop .agree_box .desc {
	padding: 20px;
	border-radius: 10px;
	border: 1px solid #D8D8D8;
	background: var(--bg);
	font-size: 18px;
	line-height: 1.5;
	box-sizing: border-box;
}
#buy_pop .agree_box .agree {
	position: relative;
}
#buy_pop .agree_box .agree input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	z-index: -1;
}
#buy_pop .agree_box .agree input + label {
	position: relative;
	display: inline-block;
	font-size: 18px;
	padding-left: 32px;
	box-sizing: border-box;
}
#buy_pop .agree_box .agree input + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 3px;
	border: 1px solid var(--stroke);
	background: var(--bg);
	box-sizing: border-box;
}
#buy_pop .agree_box .agree input:checked + label:before {
	background: var(--point) url("../images/ic_check.svg")no-repeat 50% 50%;
	border: 1px solid var(--point);
}
#buy_pop .sign_box {
	padding: 20px 0;
}
#buy_pop .sign_box h4 {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
}
#buy_pop .sign_box p {
	font-size: 18px;
	line-height: 1.5;
}
#buy_pop .sign_box .input_box {
	position: relative;
	border-radius: 10px;
	border: 1px solid #D8D8D8;
	padding: 0 20px;
	font-size: 18px;
	box-sizing: border-box;
}
#buy_pop .sign_box .input_box span {
	position: absolute;
	top: 24px;
	left: 20px;
	font-size: inherit;
	color: #D0CAC6;
	z-index: -1;
}
#buy_pop .sign_box .input_box input[type=text] {
	width: 100%;
	height: 65px;
	background: transparent;
	font-size: inherit;
}



@media screen and (max-width: 1560px) {
	#quick {
		bottom: 35px;
		right: 30px;
	}
}
@media screen and (max-width: 1280px) {
	#footer .ft_info {
		gap: 20px;
		font-size: 16px;
	}
	#footer .bottom {
		font-size: 16px;
	}


	.tit_box .badge span {
		font-size: 16px;
	}
	.tit_box h4 {
		font-size: 36px;
	}
	.tit_box p {
		font-size: 16px;
	}


	.product .tab .swiper-slide button {
		font-size: 16px;
	}
	.product .list .item .info .summary {
		font-size: 16px;
	}
	.product .list .item .info .summary strong {
		font-size: 18px;
	}
	.product .list .item .info .price h4 {
		font-size: 22px;
	}
	.product .list .item .info button {
		height: 50px;
		font-size: 16px;
	}
}
@media screen and (max-width: 1024px) {
	#header {
		padding: 16px 0;
	}
	#header .inner {
		gap: 15px;
	}
	#header .logo a {
		line-height: 1;
	}
	#header .logo h1 {
		font-size: 30px;
	}	
	#header .logo p {
		font-size: 16px;
	}
	#header .gnb,
	#header .h_util {
		display: none;
	}
	#header .menu {
		display: block;
	}


	#container {
    	padding: 50px 0 100px;
	}


	#footer {
		padding: 50px 0;
	}
	#footer .inner {
		gap: 30px;
	}
	#footer .logo {
		font-size: 30px;
	}
	#footer .logo p {
		font-size: 14px;
	}
	#footer .ft_info {
        gap: 15px;
        font-size: 14px;
    }
	#footer .bottom {
        font-size: 14px;
    }

	.pagenavi ol {
		gap: 5px;
	}

	#quick {
		display: none;
	}
	#quick > a {
		width: 80px;
		height: 80px;
        font-size: 16px;
    }

	.modal .modal_cont {
		padding: 25px;
	}
	.modal .bar h3 {
		font-size: 24px;
	}
	.modal .btn_area > * {
		height: 48px;
		padding: 0 26px;
		font-size: 16px;
	}


	.product .list .item {
    	width: calc(33.333% - 14px);
	}
	.product .list .item .info {
		gap: 20px;
	}
	#buy_pop .cont {
		gap: 20px;
	}
	#buy_pop .prd_item .txt .info {
		font-size: 16px;
	}
	#buy_pop .prd_item .txt .price strong {
		font-size: 16px;
	}	
	#buy_pop .prd_item .txt .price h4 {
		font-size: 20px;
	}
	#buy_pop .agree_box .desc {
		font-size: 16px;
	}
	#buy_pop .agree_box .agree input + label {
		font-size: 16px;
	}
	#buy_pop .sign_box h4 {
		font-size: 20px;
	}
	#buy_pop .sign_box p {
		font-size: 16px;
	}
	#buy_pop .sign_box .input_box {
		font-size: 16px;
	}
	#buy_pop .sign_box .input_box input[type=text] {
		height: 54px;
	}
	#buy_pop .sign_box .input_box span {
		top: 19px;
	}
}
@media screen and (max-width: 768px) {
	.side_wrap .join_btn a .m {
		display: block;
	}


	#footer .ft_info {
		gap: 10px;
	}
	#footer .ft_info span {
		width: 100%;
	}
	#footer .bottom .copy {
		width: 100%;
	}
	#footer .bottom .ft_util {
		width: 100%;
	}


	.tit_box {
    	gap: 12px;
	}
	.tit_box .badge span {
		font-size: 14px;
		padding: 8px 20px;
	}
	.tit_box h4 {
        font-size: 28px;
    }
	.tit_box p {
        font-size: 14px;
    }


	.pagenavi ol li a {
		width: 25px;
		height: 25px;
		line-height: 25px;
		font-size: 14px;
		background-size: 17px!important;
	}
	.pagenavi ol li.this a {
    	font-size: 16px;
	}


	.product .tab .swiper-slide button {
		height: 34px;
		font-size: 14px;
		padding: 0 25px;
	}
	.product .list .item {
        width: calc(50% - 10px);
    }
	.product .list .item .info .summary {
        font-size: 14px;
    }
	.product .list .item .info .summary strong {
        font-size: 16px;
    }
	.product .list .item .info .price h4 {
        font-size: 20px;
    }
	.product .list .item .info .price span {
		font-size: 13px;
	}
	.product .list .item .info button {
        height: 44px;
        font-size: 14px;
    }
	#buy_pop .prd_item .img {
		width: 100%;
		height: 0;
		padding-bottom: 50%;
	}
}
@media screen and (max-width: 480px) {
	.pagenavi ol {
        gap: 0px;
		margin: 0 -20px;
    }


	.product .tab .swiper-slide button {
        padding: 0 20px;
    }
}
@media screen and (max-width: 380px) {
	#header .logo h1 {
		font-size: 24px;
	}
	#header .logo p {
        font-size: 14px;
    }


	.pagenavi ol li a {
        width: 20px;
        height: 20px;
        line-height: 20px;
	}
	

    .product .list .item {
        width: 100%;
    }
	#buy_pop .prd_item .txt {
		padding: 14px;
	}
	#buy_pop .prd_item .txt .info {
        font-size: 14px;
	}
	#buy_pop .agree_box .desc {
        font-size: 14px;
		padding: 15px;
    }
	#buy_pop .agree_box .agree input + label {
        font-size: 14px;
		padding: 3px 0 3px 28px;
    }
	#buy_pop .agree_box .agree input + label:before {
		width: 20px;
		height: 20px;
	}
	#buy_pop .sign_box h4 {
        font-size: 18px;
    }
	#buy_pop .sign_box p {
        font-size: 14px;
    }
}