@charset "utf-8";

/* 기본프로그램 사용자모듈 메뉴 - PC */
.all_m_btn {
	padding: 10px;
	background: #323337;
}

.pro_m_wrap .m_menu {
	width: 200px;
}

@media all and (max-width:999px) {
	.pro_m_wrap.view {
		left: 0;
	}
}

/* basic */
.inner {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
}

@media all and (max-width:1600px) {
	.inner {
		width: 96%;
	}
}

/* footer */
#footer {
	padding: 80px 0;
	/* min-height: 556px; */
	box-sizing: border-box;
}

#footer .inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

#footer .footer_logo img {
	width: 362px;
	height: auto;
	max-width: 100%;
}

#footer .footer_info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-family: 'Noto Serif KR', serif;
}

#footer .info_row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 0;
}

#footer .info_row span {
	padding: 0 14px;
	/* border-left: 1px solid #959595; */
	color: #fff;
	font-family: "Ria";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

#footer .info_row span:first-child {
	padding-left: 0;
	border-left: 0;
}

#footer .footer_divider {
	height: 1px;
	background: #fff;
}

#footer .footer_copy {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	font-family: Pretendard;
}

@media all and (max-width:1024px) {
	#footer {
		padding: 60px 0;
		min-height: 0;
	}

	#footer .footer_logo img {
		width: 280px;
	}

	#footer .info_row span {
		font-size: 15px;
		padding: 0 12px;
	}

	#footer .footer_copy {
		font-size: 15px;
	}
}

@media all and (max-width:768px) {
	#footer {
		padding: 40px 0;
		background-image: url('/img/footer_bg_m.jpg') !important;
	}

	#footer .inner {
		gap: 24px;
	}

	#footer .footer_logo img {
		width: 220px;
	}

	#footer .info_row {
		gap: 6px 0;
	}

	#footer .info_row span {
		font-size: 13px;
		padding: 0;
		line-height: 15px;
	}

	#footer .footer_copy {
		font-size: 13px;
	}
}

@media all and (max-width:480px) {
	#footer {
		padding: 30px 0;
	}

	#footer .footer_logo img {
		width: 180px;
	}

	#footer .info_row span {
		font-size: 11px;
	}

	#footer .footer_copy {
		font-size: 12px;
	}
}

/* quick menu */
#quick_menu {
	position: fixed;
	right: 30px;
	bottom: 30px;
	/* top: 50%; */
	/* transform: translateY(-50%); */
	width: 110px;
	z-index: 50;
	display: flex;
	flex-direction: column;
}

#quick_menu .quick_btn {
	display: block;
	transition: transform 0.3s;
}

#quick_menu .quick_btn:hover {
	transform: translateY(-4px);
}

#quick_menu .quick_btn img {
	width: 100%;
	display: block;
}

@media all and (max-width:1024px) {
	#quick_menu {
		right: 16px;
		width: 80px;
	}
}

@media all and (max-width:480px) {
	#quick_menu {
		right: 10px;
		width: 60px;
	}
}

/* header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	transition: background 0.3s;
}

#header.scrolled {
	background: rgba(255, 255, 255, 0.10);
	border-bottom: 1px solid #fff;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

#header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	gap: 20px;
	position: relative;
}

#header .header_logo {
	margin: 0;
	flex-shrink: 0;
}

#header .header_logo img {
	width: 187px;
	max-width: 100%;
	display: block;
}

#header .header_gnb {
	display: flex;
	align-items: center;
	gap: 40px;
	font-family: 'Noto Serif KR', serif;
	white-space: nowrap;
	margin: 0 auto;
}

#header .header_gnb a {
	color: #3B1E1E;
	font-size: 20px;
	font-weight: 600;
	transition: opacity 0.3s;
}

.main_page #header .header_gnb a {
	color: #fff;
}

.main_page #header.scrolled .header_gnb a {
	color: #3B1E1E;
}

#header .header_gnb a:hover {
	opacity: 0.7;
}

/* 헤더 검색창 (PC) */
#header .header_search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 220px;
	height: 44px;
	padding: 0 18px;
	background: rgba(255, 255, 255, 0.20);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 303px;
	flex-shrink: 0;
	margin-left: auto;
}
.main_page #header .header_search {
	background: rgba(255, 255, 255, 0.20);
}
#header .header_search_btn {
	background: transparent;
	border: 0;
	cursor: pointer;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
#header:not(.scrolled) .header_search_btn {
	color: #fff;
}
#header.scrolled .header_search_btn,
body:not(.main_page) #header .header_search_btn {
	color: #3B1E1E;
}
#header .header_search_input {
	flex: 1;
	min-width: 0;
	background: transparent;
	border: 0;
	outline: none;
	color: #fff;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	padding: 0;
}
#header .header_search_input::placeholder {
	color: #E3E3E3;
}
body:not(.main_page) #header .header_search,
#header.scrolled .header_search {
	background: rgba(0, 0, 0, 0.05);
	border-color: rgba(0, 0, 0, 0.15);
}
body:not(.main_page) #header .header_search_input,
#header.scrolled .header_search_input {
	color: #3B1E1E;
}
body:not(.main_page) #header .header_search_input::placeholder,
#header.scrolled .header_search_input::placeholder {
	color: #888;
}

/* 모바일 검색 아이콘 버튼 */
#header .m_search_btn {
	display: none;
	cursor: pointer;
	flex-shrink: 0;
}

/* 모바일 검색 박스 (펼침) */
.m_search_box {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	top: 80px;
	z-index: 100;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0,0,0,0.08);
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	gap: 8px;
	align-items: center;
}
.m_search_box.on {
	display: flex;
}
.m_search_input {
	flex: 1;
	height: 44px;
	border: 1px solid #ddd;
	border-radius: 22px;
	padding: 0 18px;
	font-size: 16px;
	outline: none;
	background: #fff;
}
.m_search_submit {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #005141;
	color: #fff;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
}

/* 햄버거 메뉴 */
#header .m_btn {
	display: none;
	/* width: 24px; */
	margin: 0;
	text-align: right;
	cursor: pointer;
}

#header .m_btn i {
	display: inline-block;
	width: 100%;
	height: 2px;
	margin: 3px 0;
	background: #fff;
	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);
}

.header_util a {
	display: flex;
	align-items: center;
	gap: 10px;
}

@media all and (max-width:1720px) {
	/* 1720px 이하: 절대 위치 풀어서 flex 흐름으로 (검색창과 겹침 방지) */
	#header .header_gnb {
		position: static;
		transform: none;
		gap: 24px;
	}

	#header .header_gnb a {
		font-size: 17px;
	}

	#header .header_search {
		width: 190px;
	}

	#header .inner {
		gap: 14px;
	}
}

@media all and (max-width:1440px) {
	#header .header_gnb {
		gap: 20px;
	}

	#header .header_gnb a {
		font-size: 16px;
	}

	#header .header_search {
		width: 170px;
		padding: 0 14px;
	}

	#header .header_search_input {
		font-size: 14px;
	}
}

@media all and (max-width:1300px) {
	#header .header_gnb {
		position: static;
		transform: none;
		gap: 18px;
	}

	#header .header_gnb a {
		font-size: 15px;
	}

	/* 1300px 이하에서는 PC 검색창 숨기고 검색 아이콘으로 전환 (메뉴 겹침 방지) */
	#header .header_search {
		display: none;
	}
	#header .m_search_btn {
		display: inline-block;
		margin-left: auto;
	}
}

@media all and (max-width:1100px) {
	#header .header_gnb {
		gap: 14px;
	}

	#header .header_gnb a {
		font-size: 14px;
	}
}

@media all and (max-width:1024px) {
	#header .inner {
		height: 64px;
	}

	#header .header_logo img {
		width: 140px;
	}

	#header .header_gnb,
	#header .header_util,
	#header .header_search {
		display: none;
	}

	#header .m_btn,
	#header .m_search_btn {
		display: inline-block;
	}
	#header .m_search_btn {
		margin-left: auto;
	}
	#header .inner {
		gap: 8px;
	}
	#header .m_search_btn svg,
	#header .m_btn svg {
		display: block;
	}
	.m_search_box {
		top: 64px;
	}

	/* leftmenu.jsp의 햄버거 버튼 - 모바일에서 왼쪽에 표시 */
	#toggle_nav_btn {
		position: absolute !important;
		top: 50% !important;
		left: 15px !important;
		transform: translateY(-50%) !important;
		display: inline-block !important;
		padding: 10px !important;
		z-index: 9999 !important;
	}

	#toggle_nav_btn>i.zmdi-menu {
		display: block !important;
		font-size: 24px;
		color: #fff;
	}

	#toggle_nav_btn>img {
		display: none !important;
	}
}

/* 모바일 메뉴 */
.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;
	left: -100%;
	top: 0;
	width: 100%;
	max-width: 240px !important;
	height: 100%;
	background-color: #fff;
	box-sizing: border-box;
	transition: all 0.3s;
	overflow-y: auto;
}

#m_menu.on {
	left: 0;
}

#m_menu .m_menu_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	border-bottom: 1px solid #eee;
}

#m_menu .m_menu_head .m_logo {
	display: block;
}

#m_menu .m_menu_head .m_logo img {
	width: 120px;
	height: auto;
	display: block;
}

#m_menu .m_menu_head .m_close {
	position: relative;
	width: 24px;
	height: 24px;
	cursor: pointer;
	flex-shrink: 0;
}

#m_menu .m_menu_head .m_close i {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	background: #222;
}

#m_menu .m_menu_head .m_close i:first-child {
	transform: rotate(45deg);
}

#m_menu .m_menu_head .m_close i:last-child {
	transform: rotate(-45deg);
}

#m_menu .m_menu_gnb {
	display: flex;
	flex-direction: column;
	font-family: 'Noto Serif KR', serif;
}

#m_menu .m_menu_gnb a {
	padding: 14px 20px;
	color: #222;
	font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid #eee;
	transition: background 0.2s;
}

#m_menu .m_menu_gnb a:hover {
	background: #f5f5f5;
}

#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 {
	padding: 20px 0;
	background-color: #292929;
	text-align: center;
}

#m_menu .login_box a {
	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;
}

/* leftmenu.jsp 메뉴 스타일 (모바일 메뉴용) - PC와 동일한 메뉴 HTML 사용 */
#m_menu .top_box {
	display: none;
}

/* 닫기 버튼 영역 숨김 - 배경 클릭으로 닫기 */
#m_menu .login_box {
	display: none;
}

#m_menu .gnb_box {
	border-top: none;
}

#m_menu .gnb_box>ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#m_menu .gnb_box>ul>li {
	border-bottom: 1px solid #e0e0e0;
}

#m_menu .gnb_box>ul>li>a {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	padding: 8px 10px !important;
	font-size: 16px !important;
	font-weight: 600;
	color: #222;
	text-decoration: none;
}

#m_menu .gnb_box>ul>li>a .pull-left {
	display: flex;
	align-items: center;
}

#m_menu .gnb_box>ul>li>a .pull-left i {
	font-size: 18px;
	margin-right: 8px;
	color: inherit;
	width: 20px;
	text-align: center;
}

#m_menu .gnb_box>ul>li>a .pull-left .right-nav-text {
	font-size: 16px !important;
}

#m_menu .gnb_box>ul>li>a .pull-right {
	display: flex;
	align-items: center;
	margin-left: auto;
}

/* 화살표 오른쪽 정렬 */
#m_menu .gnb_box>ul>li>a .pull-right i {
	font-size: 14px;
	color: #999;
	transition: transform 0.3s;
}

#m_menu .gnb_box>ul>li.on>a .pull-right i {
	transform: rotate(180deg);
}

#m_menu .gnb_box>ul>li>a .clearfix {
	display: none;
}

#m_menu .gnb_box>ul>li>ul {
	display: none;
	background: transparent;
	padding: 3px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* PC와 동일 - 투명 배경 */
#m_menu .gnb_box>ul>li>ul>li>a {
	display: block;
	padding: 6px 10px 6px 38px !important;
	font-size: 15px !important;
	color: #444;
	text-decoration: none;
}

#m_menu .gnb_box>ul>li>ul>li>a span {
	font-size: 15px !important;
}

/* leftmenu.jsp의 .user_depth_custom 스타일 오버라이드 */
#m_menu .gnb_box .user_depth_custom>li>a {
	padding: 8px 10px !important;
	font-size: 16px !important;
}

#m_menu .gnb_box .user_depth_custom>li>ul>li>a {
	padding: 6px 10px 6px 38px !important;
	font-size: 15px !important;
}

#m_menu .gnb_box>ul>li>ul>li>a:hover,
#m_menu .gnb_box>ul>li>ul>li>a:active {
	color: #307dd4;
	background: #f5f5f5;
}

/* 호버 효과 */
/* 선택된 메뉴 배경색 */
#m_menu .gnb_box>ul>li>ul>li>a.current-menu,
#m_menu .gnb_box .user_depth_custom>li>ul>li>a.current-menu {
	background-color: rgba(48, 125, 212, 0.15) !important;
	color: #307dd4 !important;
}

#m_menu .gnb_box>ul>li.on>ul {
	display: block;
}

#m_menu .gnb_box>ul>li.navigation-header {
	display: none;
}

/* 전체 펼침/닫힘 버튼 스타일 */
#m_menu .gnb_box>ul>li>.tree-controls {
	display: flex;
	justify-content: center;
	padding: 6px;
	gap: 0;
	background: #323337;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#m_menu .gnb_box>ul>li>.tree-controls a {
	font-size: 12px;
	padding: 4px 10px;
	text-decoration: none;
}

#m_menu .gnb_box>ul>li>.tree-controls a.btn-expand-all {
	color: #5bc0de;
}

#m_menu .gnb_box>ul>li>.tree-controls a.btn-collapse-all {
	color: #d9534f;
}

#m_menu .gnb_box>ul>li>.tree-controls a i {
	margin-right: 4px;
}

#m_menu .gnb_box>ul>li>.tree-controls .divider {
	display: inline-block;
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.3);
	margin: 0 4px;
}

/* ========== 퀵메뉴 & TOP 버튼 ========== */
.quick_step_btn_box01 {
	display: flex;
}

.quick_step_btn_box01>a {
	position: absolute;
	z-index: 2;
}

.quick_step_btn_box01>a.btn-prev {
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.quick_step_btn_box01>a.btn-next {
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
}

/* PC 퀵메뉴 */
#sideQuick {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 9999;
	width: 60px;
}

#sideQuick>ul {
	border-radius: 6px;
	margin-bottom: 20px;
}

#sideQuick ul li .side_quick_menu01 {
	width: 100%;
	aspect-ratio: 1/0.357;
	display: flex;
	align-items: center;
	gap: 5px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #222;
	background-color: #fff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
	border-radius: 6px;
	padding: 0 20px;
}

#sideQuick ul li .side_quick_menu01+.side_quick_menu01 {
	margin-top: 10px;
}

#sideQuick ul li .side_quick_menu01 img {
	width: fit-content;
}

#top_btn {
	margin-top: 10px;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	position: absolute;
	bottom: 0;
}

#top_btn.show {
	display: flex;
	justify-content: center;
	opacity: 1;
	transform: translateY(0);
}

#sideQuickMoreBtn {
	position: absolute;
	cursor: pointer;
	bottom: 60px;
	z-index: 2;
	transition: all 0.3s ease-in-out;
	display: flex;
	justify-content: center;
}

.sideQuickBtn {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
	background-color: #fff;
}

#sideQuickMoreBtn .sideQuickBtn {
	background-color: var(--color-primary01, #307dd4);
}

#top_btn .sideQuickBtn {
	background-color: transparent;
	box-shadow: none;
	border: 1px solid var(--color-primary01, #307dd4);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
}

#top_btn .sideQuickBtn .top_arrow {
	display: block;
	width: 11px;
	height: 11px;
	border-left: 2px solid var(--color-primary01, #307dd4);
	border-top: 2px solid var(--color-primary01, #307dd4);
	border-right: none;
	border-bottom: none;
	background: transparent;
	transform: rotate(45deg) !important;
	position: static;
	margin-top: 5px;
}

#top_btn .sideQuickBtn .top_text {
	font-size: 11px;
	font-weight: 600;
	color: var(--color-primary01, #307dd4);
	position: static;
	transform: none;
	background: transparent;
	width: auto;
	height: auto;
	line-height: 1;
	margin-top: 2px;
}

#sideQuickMoreBtn .sideQuickBtn span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	transition: transform 0.3s, opacity 0.3s;
}

#sideQuickMoreBtn .sideQuickBtn span:nth-child(1) {
	width: 12px;
	height: 1px;
}

#sideQuickMoreBtn .sideQuickBtn span:nth-child(2) {
	width: 1px;
	height: 12px;
}

#sideQuickMoreBtn.scroll {
	bottom: 120px;
}

#sideQuickMoreBtn.active .sideQuickBtn span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

#sideQuickMoreBtn.active .sideQuickBtn span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(45deg);
}

#sideQuickMoreBtn .quick {
	position: absolute;
	bottom: 100%;
	margin-bottom: 10px;
	min-width: 140px;
	display: none;
}

/* 최근 본 상품 / 관심 상품 */
.quick ul li.recent_prod {}

.quick ul li.recent_prod>p {
	height: 40px;
	font-size: 15px;
	color: #fff;
	letter-spacing: -0.025em;
	line-height: 40px;
	background-color: var(--color-primary01, #307dd4);
	text-align: center;
}

.prod_no_box {
	width: 114px;
	height: 114px;
	border-radius: 5px;
	background: #F5F5F5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.prod_no_box>p {
	font-size: 11px;
	font-weight: 400;
	color: #999;
	margin-top: 5px;
}

.quick ul li.recent_prod ul {
	padding: 30px 10px;
	box-sizing: border-box;
	margin-bottom: 10px;
	background-color: #fff;
	border-radius: 0 0 6px 6px;
	position: relative;
}

.quick ul li.recent_prod ul li {
	border: unset;
	border-radius: 6px;
	aspect-ratio: 1/1;
	overflow: hidden;
	margin-bottom: 10px;
}

.quick ul li.recent_prod ul li:last-of-type {
	margin-bottom: 0;
}

.quick ul li.recent_prod ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.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.zzim {
	margin-top: 30px;
}

.quick ul li.top_btn {
	width: 100%;
	height: 40px;
	background-color: #000;
	box-sizing: border-box;
	line-height: 48px;
	text-align: center;
}

.quick ul li.top_btn a {
	display: block;
	color: #fff;
	line-height: 40px;
	font-size: 15px;
	letter-spacing: -0.025em;
}

/* 모바일에서 퀵메뉴 위치 조정 */
@media all and (max-width:768px) {
	#sideQuick {
		right: 10px;
		bottom: 10px;
		z-index: 10002;
	}

	#sideQuickMoreBtn .quick {
		right: auto;
		left: auto;
		transform: translateX(-30px);
	}
}

/* ========== END 퀵메뉴 & TOP 버튼 ========== */


#header .inner {
	max-width: 1860px;
	width: 100%;
}

@media all and (max-width:1860px) {

	#header .inner {
		width: 96%;
	}
}