@charset "utf-8";

/*--------------------------------------------------------------*

* basic *

*---------------------------------------------------------------*/
.wrap {
	word-break: keep-all;
}

.wrap h1,
.wrap h2,
.wrap h3,
.wrap h4,
.wrap h5,
.wrap h6 {
	padding: 0;
	margin: 0;
}

/* basic */
.inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

@media all and (max-width:1400px) {
	.inner {
		width: 93.75%;
	}
}

/* 프로그램리스트 모바일 버전 */
.all_m_btn {
	padding: 10px;
	background: #323337;
}

.all_m_btn img {
	position: absolute;
	top: 28%;
	left: 15px;
	width: 10%;
	max-width: 40px;
	cursor: pointer;
}

.all_m_btn .mutit {
	text-align: center;
	font-weight: 900;
	font-size: 26px;
	color: #fff;
}

.pro_m_wrap {
	display: none;
	font-family: 'Pretendard', sans-serif;
	transition: all 0.3s linear;
}

.pro_m_wrap .m_menu {
	width: 200px;
}

.pro_m_wrap .bg_black {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: -1;
}

.pro_m_wrap .subleftmenu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pro_m_wrap .subleftmenu li {
	border-bottom: 1px solid #515155;
	background: #323337;
}

.pro_m_wrap .subleftmenu a {
	display: block;
	color: #b5b2b2;
	font-size: 14px;
	padding: 11px 5px 11px 15px;
	font-family: 'Noto Sans KR';
}

.sub_title_m {
	font-size: 28px !important;
	font-weight: bold;
	color: #fff !important;
	padding: 12px 5px 12px 15px !important;
}

.pro_m_wrap .subleftmenu a:hover {
	background: #307dd4;
	color: #fff;
}

.sub_title_m:hover {
	background: #323337 !important;
	cursor: default;
}

@media all and (max-width:999px) {
	.pro_m_wrap {
		display: block;
		position: absolute;
		left: -100%;
		top: 0;
		z-index: 999;
	}

	.pro_m_wrap.view {
		left: 0;
	}
}

/* css 이 아래부터 가져가세요 */

#header {
	position: relative;
	font-size: 0;
	letter-spacing: -4px;
	box-sizing: border-box;
	border-bottom: 1px solid #e5e5e5;
	background: #fff;
	z-index:100;
	padding: 30px 0;
}

#header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

#header .gnb ul {
	display: flex;
	gap: 40px;
}

#header .gnb ul li {
	position: relative;
}

#header .gnb ul li::before {
	content: '';
	position: absolute;
	top: 0;
	right: -20px;
	width: 1px;
	height: 100%;
	background-color: #ccc;
}

#header .gnb ul li:last-child::before {
	content: none;
}

#header .gnb ul li a {
	font-size: 16px;
	color: #666;
	line-height: 2.111em;
	letter-spacing: -0.025em;
	padding: 15px 20px;
	box-sizing: border-box;
}

#header .gnb ul li a:hover {
	color: #fff;
	background-color: #222;
	border-radius: 30px;
}

#header .m_btn {
	display: none;
	width: 24px;
	/* margin: 0 auto; */
	text-align: right;
	cursor: pointer;
}

#header .m_btn i {
	display: inline-block;
	width: 100%;
	height: 2px;
	margin: 3px 0;
	background: #000;
	transition: all 0.5s;
}

#header .m_btn i:nth-of-type(2) {
	width: 84%;
}

#header .m_btn.on i:nth-of-type(1) {
	margin: 11px 0 -2px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}

#header .m_btn.on i:nth-of-type(2) {
	width: 0;
	margin: 0;
}

#header .m_btn.on i:nth-of-type(3) {
	margin: 0 0 11px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.m_menu_bg {
	z-index: 101;
	position: fixed;
	left: 0;
	top: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
	cursor: pointer;
}

#m_menu {
	z-index: 102;
	position: fixed;
	right: -100%;
	top: 0;
	width: 500px;
	max-width: 80%;
	height: 100%;
	background-color: #fff;
	box-sizing: Border-box;
	transition: all 0.5s;
	overfloW-y: auto;
}

#m_menu.on {
	right: 0;
}

#m_menu .top_box {
	position: relative;
	padding: 10px;
	box-sizing: border-box;
}

#m_menu .top_box .close_btn {
	position: absolute;
	right: 20px;
	top: calc(50% - 15px);
	width: 30px;
	height: 30px;
}

#m_menu .top_box .close_btn i {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #333;
}

#m_menu .top_box .close_btn i:first-of-type {
	-webkit-transform: rotate(45deg) translate(9px, 9px);
	-moz-transform: rotate(45deg) translate(9px, 9px);
	-ms-transform: rotate(45deg) translate(9px, 9px);
	-o-transform: rotate(45deg) translate(9px, 9px);
	transform: rotate(45deg) translate(9px, 9px);
}

#m_menu .top_box .close_btn i:last-of-type {
	-webkit-transform: rotate(-45deg) translate(-7px, 8px);
	-moz-transform: rotate(-45deg) translate(-7px, 8px);
	-ms-transform: rotate(-45deg) translate(-7px, 8px);
	-o-transform: rotate(-45deg) translate(-7px, 8px);
	transform: rotate(-45deg) translate(-7px, 8px);
}

#m_menu .login_box {
	/* text-align: center; */
	border-bottom: #292929;
}

#m_menu .login_box a {
	display: none;
	position: relative;
	padding: 0 30px;
	font-size: 20px;
	color: #fff;
	letter-spacing: -0.04em;
}

#m_menu .login_box a:first-of-type:before {
	content: '';
	position: absolute;
	right: -1px;
	top: calc(50% - 7px);
	width: 2px;
	height: 15px;
	background-color: #fff;
}

#m_menu .gnb_box {
	border-top: 1px solid #ddd;
}

#m_menu .gnb_box>ul>li {
	border-bottom: 1px solid #dddddd;
}

#m_menu .gnb_box>ul>li>a {
	position: relative;
	display: block;
	padding: 20px 20px;
	font-size: 20px;
	font-weight: bold;
	color: #222222;
	letter-spacing: -0.04em;
	box-sizing: border-box;
}

#m_menu .gnb_box .depth02 {
	display: none;
	padding: 10px 0;
	background-color: #000;
}

#m_menu .gnb_box .depth02 li a {
	position: relative;
	display: block;
	padding: 7px 20px;
	font-size: 18px;
	color: #fff;
	letter-spacing: -0.04em;
	box-sizing: border-box;
}

@media all and (max-width:1024px) {
	#header .gnb {
		display: none;
	}

	#header .m_btn {
		display: inline-block;
	}

	#header .inner {
		padding: 0;
	}

	#header .inner .login_area {
		display: none;
	}
	#m_menu .top_box {
		padding: 20px 10px;
	}
}


/* foooter */
#footer {
	background-color: #eee;
}

#footer .inner {
	padding: 50px 0;
	box-sizing: border-box;
}

#footer .copy_box {
	text-align: center;
}

#footer .copy_box p {
	font-size: 16px;
	color: #aaa;
	line-height: 1.625em;
	letter-spacing: -0.025em;
}

/* 최근본 상품 퀵메뉴 */
.quick {
	overflow: hidden;
	z-index: 110;
	position: fixed;
	right: 20px;
	top: 50%;
	width: 113px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.quick>ul {
	margin-bottom: 0;
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.quick ul li.recent_prod {}

.quick ul li.recent_prod p {
	height: 30px;
	font-size: 16px;
	color: #656565;
	letter-spacing: -0.025em;
	line-height: 30px;
	background-color: #d9d9d9;
	text-align: center;
}

.quick ul li.recent_prod ul {
	padding: 14px;
	box-sizing: border-box;
}

.quick ul li.recent_prod ul li {
	border: 1px solid #d9d9d9;
	margin-bottom: 12px;
	box-sizing: border-box;
}

.quick ul li.recent_prod ul li:last-of-type {
	margin-bottom: 0;
}

.quick ul li.recent_prod ul li img {
	width: 100%;
	height: auto;
}

.quick ul li.recent_prod .quick_pager {
	margin-top: 0;
	margin-bottom: 30px;
}

.quick ul li.recent_prod .quick_pager a {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	height: auto;
	border: 0 none;
	margin: 0 3px;
	line-height: 14px;
	font-size: 14px;
	color: #b6b6b6;
}

.quick ul li.recent_prod .quick_pager a.active {
	color: #666666;
}

.quick ul li.recent_prod .quick_pager .page_prev,
.quick ul li.recent_prod .quick_pager .page_next {
	display: inline-block;
	vertical-align: middle;
	width: 9px;
	height: 11px;
	border: 0 none;
	text-indent: -9999px;
}

.quick ul li.recent_prod .quick_pager .page_prev {
	background: url('/img/theme/quick_prev_btn.png') no-repeat center center;
}

.quick ul li.recent_prod .quick_pager .page_next {
	background: url('/img/theme/quick_next_btn.png') no-repeat center center;
}

.quick ul.zzim {
	margin-top: 30px;
}

.quick ul li.top_btn {
	width: 100%;
	height: 48px;
	background-color: #666666;
	box-sizing: border-box;
	line-height: 48px;
	text-align: center;
}

.quick ul li.top_btn a {
	display: block;
	color: #fff;
	line-height: 48px;
	font-size: 16px;
	letter-spacing: -0.025em;
}

.quick_top_btn {
	display: none;
	z-index: 999;
	position: fixed;
	right: 20px;
	bottom: -60px;
	width: 57px;
	height: 57px;
	background-color: #798ebb;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	transition: all 0.5s;
}

.quick_top_btn.on {
	bottom: 60px;
}

.quick_top_btn img {
	padding-top: 12px;
}

.quick_top_btn p {
	font-size: 16px;
	color: #ffffff;
	letter-spacing: -0.025em;
}

@media all and (max-width:1000px) {
	.quick {
		display: none;
	}

	.quick_top_btn {
		display: block;
	}
}

/* 2024.08.07 추가 */
.f_alt_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
    color: #666;
    line-height: 1.625em;
    letter-spacing: -0.025em;
}
.f_link_box {
	display: flex;
	font-size: 16px;
    line-height: 1.625em;
    letter-spacing: -0.025em;
	font-weight: 700;
	color: #666;
	margin-bottom: 10px;
	justify-content: center;
	gap: 10px;
}
/* END 2024.08.07 추가 */