@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%;
	}
}

/* 햄버거 메뉴 */
#header {
	display: none;
}

/* header.jsp의 헤더는 항상 숨김 - leftmenu.jsp의 navbar 사용 */
#header .m_btn {
	display: none;
	width: 24px;
	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);
}


@media all and (max-width:1024px) {
	#header {
		display: none;
	}

	/* header.jsp의 헤더는 숨김 - leftmenu.jsp의 navbar 사용 */
	#header .gnb {
		display: none;
	}

	#header .m_btn {
		display: inline-block;
	}

	/* 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 .top_box {
	position: relative;
	padding: 10px;
	box-sizing: border-box;
}

#m_menu .top_box .close_btn {
	position: absolute;
	right: 10px;
	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);
}

/* 2뎁스 있는 1뎁스 항목 화살표 (.h_nav 복제 메뉴용) */
#m_menu .gnb_box>ul>li.has_sub>a .m_arrow {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-left: auto;
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	transform: rotate(45deg);
	transition: transform 0.3s;
	flex-shrink: 0;
}

#m_menu .gnb_box>ul>li.has_sub.on>a .m_arrow {
	transform: rotate(-135deg);
	margin-top: 4px;
}

#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;
}

/* 펼침 상태는 jQuery slideToggle이 inline display로 직접 관리 */

#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 버튼 ========== */

/* Site Header */
#header.site_header {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 10px 0;
	background-color: #FFF;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
	border-bottom: 1px solid #DDD;
}

#header.site_header .h_nav a:hover {
	color: #C3DAED;
}

#header.site_header .h_full_btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	padding: 8px 14px;
	cursor: pointer;
}

#header.site_header .h_full_btn img {
	display: block;
	width: 26px;
	height: auto;
}

#header.site_header .h_nav_panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 380px;
	background: #fff;
	border-top: 1px solid #ddd;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: -1;
}

#header.site_header.is_h_nav_open .h_nav_panel {
	visibility: visible;
	opacity: 1;
}

#header.site_header.is_h_nav_open .h_logo,
#header.site_header.is_h_nav_open .h_util {
	display: none;
}

#header.site_header .h_nav > ul > li {
	position: relative;
}

#header.site_header .h_nav .h_sub {
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 20px 20px 30px;
	list-style: none;
	background: #fff;
	border-radius: 0 0 20px 20px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 30px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 10;
}

#header.site_header .h_nav > ul > li:hover .h_sub {
	visibility: visible;
	opacity: 1;
}

#header.site_header.is_h_nav_open .h_nav .h_sub {
	visibility: visible;
	opacity: 1;
	width: 100%;
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	gap: 20px;
	top: calc(100% + 44px);
}

#header.site_header .h_nav .h_sub li {
	display: block;
}

#header.site_header .h_nav .h_sub li a {
	display: block;
	padding: 0 14px;
	color: #000;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
	white-space: nowrap;
}

#header.site_header.is_h_nav_open .h_nav .h_sub li a {
	white-space: normal;
	word-break: keep-all;
}

#header.site_header .m_btn {
	display: none;
	margin: 0;
	flex-shrink: 0;
}

#header.site_header .m_btn i {
	background: #000;
}

#header.site_header .h_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-width: 0;
}

#header.site_header .h_logo {
	flex-shrink: 0;
	/* padding: 0 20px; */
}

#header.site_header .h_logo a {
	display: block;
}

#header.site_header .h_logo img {
	display: block;
	width: 100%;
	max-width: 270px;
	height: auto;
}

#header.site_header .h_nav {
	flex: 1 1 auto;
	min-width: 0;
	/* padding: 14px 0; */
	display: flex;
	align-items: center;
	gap: 10px;

	justify-content: center;
}

#header.site_header .h_nav > ul {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

#header.site_header.is_h_nav_open .h_nav > ul {
	flex: 1 1 auto;
	width: 100%;
	justify-content: space-between;
}

#header.site_header.is_h_nav_open .h_nav > ul > li {
	flex: 1 1 0;
	min-width: 0;
}

#header.site_header .h_nav > ul > li > a {
	display: block;
	padding: 14px;
	color: #000;
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
}

#header.site_header .h_util {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

#header.site_header .h_login {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	border: 1.5px solid #000;
	border-radius: 20px;
	color: #000;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

#header.site_header .h_lang {
	position: relative;
}

#header.site_header .h_lang_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: transparent;
	border: 1.5px solid #005672;
	border-radius: 20px;
	color: #052559;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.35s ease, color 0.35s ease;
}

#header.site_header .h_lang_btn svg path {
	transition: stroke 0.35s ease;
}

#header.site_header .h_lang_arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
}

#header.site_header .h_lang.is_open .h_lang_arrow {
	transform: rotate(180deg);
}

#header.site_header .h_lang_list {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	min-width: 140px;
	padding: 6px 0;
	margin: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 10;
}

#header.site_header .h_lang.is_open .h_lang_list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#header.site_header .h_lang_list li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	color: #222;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

#header.site_header .h_lang_list li a:hover {
	background: #f5f5f5;
}

#header.site_header .h_lang_list .h_lang_flag {
	flex-shrink: 0;
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
}

@media all and (max-width: 1600px) {
	#header.site_header .h_nav > ul > li > a {
		font-size: 18px;
		padding: 12px 10px;
	}
	#header.site_header .h_nav .h_sub li a {
		font-size: 16px;
	}
}

/* 다국어(일문/중문): 라벨이 한국어보다 길어 로고/로그인과 겹침 방지 */
#header.site_header.lang-ja .h_nav,
#header.site_header.lang-zh .h_nav {
	gap: 6px;
}
#header.site_header.lang-ja .h_nav > ul > li > a,
#header.site_header.lang-zh .h_nav > ul > li > a {
	font-size: 18px;
	padding: 12px 8px;
}
@media all and (max-width: 1600px) {
	#header.site_header.lang-ja .h_nav > ul > li > a,
	#header.site_header.lang-zh .h_nav > ul > li > a {
		font-size: 15px;
		padding: 10px 6px;
	}
}

@media all and (max-width: 1280px) {
	#header.site_header .h_nav {
		display: none;
	}

	#header.site_header .h_util {
		display: none;
	}

	#header.site_header .m_btn {
		display: inline-block;
	}
}

@media all and (max-width: 1024px) {
	#header.site_header {
		display: block;
		padding: 8px 0;
	}

	#header.site_header .h_logo img {
		max-width: 180px;
	}
}

@media all and (max-width: 640px) {
	#header.site_header {
		padding: 6px 0;
	}

	#header.site_header .h_wrap {
		gap: 12px;
	}

	#header.site_header .h_logo {
		padding: 0;
	}

	#header.site_header .h_logo img {
		max-width: 140px;
	}

	#header.site_header .h_login,
	#header.site_header .h_lang_btn {
		font-size: 13px;
		padding: 8px 14px;
	}
}

/* Mobile Menu Top (로고 + X버튼) */
#m_menu .top_box {
	display: block;
	padding: 15px 10px;
	border-bottom: 1px solid #e0e0e0;
}

#m_menu .top_box .m_logo {
	display: inline-block;
	vertical-align: middle;
}

#m_menu .top_box .m_logo img {
	display: block;
	width: auto;
	max-width: 140px;
	height: auto;
}

#m_menu .top_box .close_btn {
	position: absolute;
	top: 50%;
	right: 10px;
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
}

/* Mobile Menu Util (로그인 + 언어) */
#m_menu .m_util {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-bottom: 1px solid #e0e0e0;
}

#m_menu .m_util .h_login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border: 1.5px solid #052559;
	border-radius: 20px;
	background: transparent;
	color: #052559;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
}

#m_menu .m_util .h_lang {
	position: relative;
}

#m_menu .m_util .h_lang_btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	background: transparent;
	border: 1.5px solid #052559;
	border-radius: 20px;
	color: #052559;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

#m_menu .m_util .h_lang_arrow {
	display: inline-flex;
	align-items: center;
	transition: transform 0.3s;
}

#m_menu .m_util .h_lang.is_open .h_lang_arrow {
	transform: rotate(180deg);
}

#m_menu .m_util .h_lang_list {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	padding: 6px 0;
	margin: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 10;
}

#m_menu .m_util .h_lang.is_open .h_lang_list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#m_menu .m_util .h_lang_list li a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	color: #222;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

#m_menu .m_util .h_lang_list .h_lang_flag {
	flex-shrink: 0;
	width: 20px;
	height: 14px;
	object-fit: cover;
	border-radius: 2px;
}

#m_menu .m_util .h_lang_list li a:hover {
	background: #f5f5f5;
}

/* Site Footer */
.site_footer {
	background: #fff;
	color: #000;
	padding: 60px 0 70px;
	overflow: hidden;
}

.site_footer .f_logo {
	text-align: center;
	margin-bottom: 50px;
}

.site_footer .f_logo img {
	display: inline-block;
	width: 100%;
	max-width: 320px;
	height: auto;
}

.site_footer .f_wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	min-width: 0;
}

.site_footer .f_info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.site_footer .f_addr {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.4;
}

.site_footer .f_row {
	display: flex;
	align-items: baseline;
	gap: 14px;
	min-width: 0;
}

.site_footer .f_label {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
}

.site_footer .f_value {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
}

.site_footer .f_line {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	min-width: 0;
}

.site_footer .f_copy {
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	line-height: 1.4;
}

.site_footer .f_sns {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.site_footer .f_sns_item {
	display: inline-flex;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.site_footer .f_sns_item img {
	display: block;
	width: 100%;
	height: 100%;
}

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

	.site_footer .f_addr,
	.site_footer .f_label,
	.site_footer .f_value {
		font-size: 18px;
	}

	.site_footer .f_copy {
		font-size: 16px;
	}

	.site_footer .f_logo img {
		max-width: 300px;
	}
}

@media all and (max-width: 1024px) {
	.site_footer {
		padding: 48px 0 56px;
	}

	.site_footer .f_logo {
		margin-bottom: 36px;
	}

	.site_footer .f_logo img {
		max-width: 260px;
	}

	.site_footer .f_wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
	}

	.site_footer .f_info {
		gap: 16px;
	}

	.site_footer .f_sns_item {
		width: 48px;
		height: 48px;
	}
}

@media all and (max-width: 640px) {
	.site_footer {
		padding: 40px 0 48px;
	}

	.site_footer .f_logo {
		margin-bottom: 28px;
	}

	.site_footer .f_logo img {
		max-width: 200px;
	}

	.site_footer .f_addr,
	.site_footer .f_label,
	.site_footer .f_value {
		font-size: 14px;
	}

	.site_footer .f_info {
		gap: 12px;
	}

	.site_footer .f_row {
		gap: 10px;
	}

	.site_footer .f_line {
		gap: 10px;
	}

	.site_footer .f_copy {
		letter-spacing: 1.2px;
		font-size: 12px;
		margin-top: 10px;
	}

	.site_footer .f_sns {
		gap: 12px;
	}

	.site_footer .f_sns_item {
		width: 40px;
		height: 40px;
	}
}



/* Quick Menu */
.quick_menu {
	position: fixed;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	padding: 40px 0;
	width: 100px;
	background: #fff;
	border-radius: 20px;
	border: 1.5px solid #8E9FAF;

}

.quick_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 13px;
	text-decoration: none;
	color: #fff;
}

.quick_item span {
	color: #8E9FAF;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 600;
	text-align: center;
}

.quick_w_bar {
	background-color: rgba(184, 196, 212, 0.40);
	height: 2px;
	width: 50px;
	margin: 0 auto;
}

.quick_menu,
.quick_item,
.quick_item span,
.quick_w_bar {
	transition: all 0.3s;
}

.quick_menu.light_bg {
	background: rgba(255, 236, 215, 0.20);
	border-color: rgba(164, 139, 120, 0.2);
	box-shadow: -8px -8px 20px rgba(255, 255, 255, 0.05), 8px 8px 50px rgba(0, 0, 0, 0.08);
}

.quick_menu.light_bg .quick_item {
	color: #424242;
}

.quick_menu.light_bg .quick_item span {
	color: #424242;
}

.quick_menu.light_bg .quick_w_bar {
	background-color: rgba(164, 139, 120, 0.30);
}

.quick_menu.light_bg svg path {
	fill: #424242;
}

@media screen and (max-width: 1440px) {
	.quick_menu {
		right: 20px;
	}
}

@media screen and (max-width: 1024px) {
	.quick_menu {
		right: 8px;
		bottom: 16px;
		width: 50px;
		padding: 15px 0;
		gap: 10px;
		height: fit-content;
	}

	.quick_w_bar {
		width: 80%;
	}

	.quick_item span {
		font-size: 12px;
		display: none;
	}

	.quick_item svg {
		width: 20px;
		height: 20px;
	}
}

/* ========== 채널톡 상담 버튼 ==========
   bottom 값은 footer.jsp의 스크립트가 하단 상담배너(.section_consult) 높이에 맞춰 갱신한다.
   퀵메뉴(.quick_menu)와 세로로 겹치는 낮은 화면에서는 .shift_left 로 퀵메뉴 왼쪽 옆에 배치된다. */
#channelTalkBtn {
	position: fixed;
	right: 40px;
	bottom: 30px;
	z-index: 1000;
	width: 56px;
	height: 56px;
	border-radius: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #5CD1FF 0%, #3BC0FF 100%);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	/* right 에는 transition 을 걸지 않는다.
	   footer.jsp 스크립트가 .shift_left 를 토글한 직후 getBoundingClientRect() 로 겹침을 판정하는데,
	   transition 이 걸려 있으면 애니메이션 중간값이 읽혀 판정이 어긋난다. */
	transition: transform 0.2s, opacity 0.2s;
}

#channelTalkBtn:hover {
	transform: scale(1.08);
	opacity: 0.9;
}

#channelTalkBtn svg {
	width: 32px;
	height: 32px;
}

#channelTalkBtn.shift_left {
	right: 152px;
}

@media screen and (max-width: 1440px) {
	#channelTalkBtn {
		right: 20px;
	}

	#channelTalkBtn.shift_left {
		right: 132px;
	}
}

@media screen and (max-width: 1024px) {
	#channelTalkBtn {
		right: 8px;
		width: 50px;
		height: 50px;
	}

	#channelTalkBtn.shift_left {
		right: 70px;
	}

	#channelTalkBtn svg {
		width: 28px;
		height: 28px;
	}
}



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

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