@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: 1440px;
	margin: 0 auto;
	position: relative;
}

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

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

/* header.jsp의 헤더는 항상 숨김 - leftmenu.jsp의 navbar 사용 */
#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);
}


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

	#header .gnb_dropdown {
		display: none !important;
	}

	#header .header_tel_a {
		display: none;
	}

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

	/* 모바일에서 항상 scrolled 효과 */
	#header {
		background: #fff !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	#header .h_logo img {
		filter: invert(1);
	}

	#header .m_btn i {
		background-color: #333;
	}

	/* 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: #333;
	}

	#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: 9999;
	position: fixed;
	right: -100%;
	left: auto;
	top: 0;
	width: 100%;
	max-width: 300px !important;
	height: 100%;
	background-color: #fff;
	box-sizing: border-box;
	transition: right 0.3s;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

#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 {
	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 메뉴 스타일 (모바일 메뉴용) */
#m_menu .top_box {
	display: block;
	text-align: right;
	padding: 20px;
}

#m_menu .login_box {
	display: none;
}

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

#m_menu .m_menu_bottom {
	padding: 20px;
}

#m_menu .m_menu_bottom a {
	display: block;
	text-align: center;
	padding: 14px 20px;
	border: 1.5px solid #A68B5B;
	border-radius: 20px;
	color: #A68B5B;
	font-size: 16px;
	font-weight: 700;
	font-family: Pretendard;
}

#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 .m_arrow {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid #999;
	border-bottom: 2px solid #999;
	transform: rotate(45deg);
	transition: transform 0.3s;
	margin-left: auto;
	flex-shrink: 0;
}

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

#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 */
#header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	transition: background 0.3s, backdrop-filter 0.3s;

	/* background-color: #307dd4; */
}

#header.scrolled,
#header.hover,
#header.dropdown_open {
	background: #fff;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

#header.scrolled .h_logo img,
#header.dropdown_open .h_logo img {
	filter: invert(1);
}

#header.scrolled .gnb>li>a,
#header.dropdown_open .gnb>li>a {
	color: #000;
	font-weight: 500;
}

#header.scrolled .gnb>li:hover>a,
#header.dropdown_open .gnb>li:hover>a {
	color: #000;
}

#header.scrolled .gnb>li:hover>a::after,
#header.dropdown_open .gnb>li:hover>a::after {
	background: #000;
}

#header.scrolled .header_tel_a,
#header.dropdown_open .header_tel_a {
	background: transparent;
	border: 1.5px solid #A68B5B;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	color: #A68B5B;
	font-weight: 700;
}

#header.dark_section.scrolled .h_logo img,
#header.dark_section.hover .h_logo img,
#header.sub.scrolled .h_logo img,
#header.sub.hover .h_logo img {
	filter: invert(1);
}

#header.dark_section.scrolled .gnb>li>a,
#header.dark_section.hover .gnb>li>a,
#header.sub.scrolled .gnb>li>a,
#header.sub.hover .gnb>li>a {
	color: rgba(66, 66, 66, 0.80);
}

#header.dark_section.scrolled .dropdown_col li a,
#header.dark_section.hover .dropdown_col li a,
#header.sub.scrolled .dropdown_col li a,
#header.sub.hover .dropdown_col li a {
	color: #000;
}

#header.dark_section.scrolled .gnb>li:hover>a,
#header.dark_section.hover .gnb>li:hover>a,
#header.sub.scrolled .gnb>li:hover>a,
#header.sub.hover .gnb>li:hover>a {
	color: #424242;
}

#header.dark_section.scrolled .dropdown_col li a:hover,
#header.dark_section.hover .dropdown_col li a:hover,
#header.sub.scrolled .dropdown_col li a:hover,
#header.sub.hover .dropdown_col li a:hover {
	color: #A68B5B;
	font-weight: 700;
}

#header.dark_section.scrolled .gnb>li:hover>a::after,
#header.dark_section.hover .gnb>li:hover>a::after,
#header.sub.scrolled .gnb>li:hover>a::after,
#header.sub.hover .gnb>li:hover>a::after {
	background: #424242;
}

#header .inner {
	/* max-width: 1680px; */
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.gnb {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
	gap: 180px;
}

.gnb>li {
	width: fit-content;
	text-align: center;
}

.gnb>li>a {
	padding: 28px 14px;
	/* padding: 28px 0; */
	color: #FFF;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: block;
	position: relative;
	transition: color 0.3s;
	text-align: center;
}

.gnb>li:hover>a {
	color: #fff;
}

.gnb>li:hover>a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 4px;
	background: #fff;
	border-radius: 10px;
}

.gnb_dropdown {
	display: none;
	flex: 0 0 100%;
	padding: 30px 0 0;
	position: relative;
}

#header.dropdown_open .gnb_dropdown {
	display: flex;
}

#header.dropdown_open {
	border-bottom: 1px solid #F5F2ED;
}


.dropdown_col {
	display: flex;
	flex-direction: column;
	gap: 30px;
	position: absolute;
	text-align: center;
}

.dropdown_col li a {
	padding: 0 14px;
	text-align: center;
	color: #000;
	font-family: Pretendard;
	font-size: 18px;
	font-weight: 400;
	display: block;
	transition: color 0.3s;
}

.dropdown_col li a:hover {
	color: #A68B5B;
	font-weight: 700;
}

.header_tel_a {
	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(80px);
	-webkit-backdrop-filter: blur(80px);
	border-radius: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.6);
	border-left: 1px solid rgba(255, 255, 255, 0.6);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow:
		-8px -8px 20px rgba(255, 255, 255, 0.05),
		8px 8px 50px rgba(0, 0, 0, 0.15);

	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-family: Pretendard;
	font-size: 14.464px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 10px 30px;
}

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

@media all and (max-width:1400px) {
	.gnb {
		gap: 100px;
	}

	.gnb>li>a,
	.dropdown_col li a {
		font-size: 16px;
	}

	.header_tel_a {
		padding: 10px;
		font-size: 13px;
	}

}

@media all and (max-width:1200px) {
.gnb>li>a {
	padding: 28px 10px;
}
}

@media all and (max-width:1024px) {
	#header {
		padding: 10px 0;
	}

	.h_logo img {
		width: 80%;
	}

	#m_menu .gnb_box {
		margin-top: 40px;
	}
}


/* Footer */
.footer {
	background: #00224E;
	padding: 0;
}

.partner_popup {
	position: fixed;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 160px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 9999;
}

.partner_popup.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.partner_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	border-radius: 7px;
	text-decoration: none;
	transition: background 0.15s;
}

.partner_item:hover {
	background: #f0f8ff;
}

.partner_name {
	color: #00224E;
	font-size: 18px;
	font-weight: 600;
	font-family: 'Pretendard', sans-serif;
}

.partner_item svg {
	color: #01A9CE;
	flex-shrink: 0;
}

@media screen and (max-width: 768px) {
	.partner_popup {
		min-width: 130px;
		padding: 6px;
	}

	.partner_item {
		padding: 8px 12px;
		gap: 8px;
	}

	.partner_name {
		font-size: 13px;
	}

	.partner_item svg {
		width: 14px;
		height: 14px;
	}
}

.footer_inner {
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	padding: 71px 0 60px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 45px;
}

.footer_logo {
	flex-shrink: 0;
}

.footer_logo img {
	height: 56px;
	object-fit: contain;
}

.footer_center {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer_links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.footer_links a {
	color: #01A9CE;
	font-size: 20px;
	font-weight: 500;
	text-decoration: none;
}

.footer_links a.bold {
	font-weight: 700;
}

.footer_links span {
	color: #01A9CE;
	font-size: 20px;
	font-weight: 300;
}

.footer_info {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer_info li {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	color: #99A1AF;
	font-size: 20px;
	line-height: 1.4;
}

.footer_info .label {
	flex: 0 0 126px;
	font-weight: 700;
}

.footer_info .value {
	font-weight: 500;
}

.footer_copy {
	color: #344968;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1.6px;
	margin: 0;
}

.footer_right {
	flex: 0 0 410px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer_tel {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	margin: 0;
	line-height: 1;
}

.footer_time {
	display: flex;
	flex-direction: column;
	gap: 20px;
	opacity: 0.8;
}

.footer_time .time_row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	color: #969CA8;
	font-size: 20px;
}

.footer_time .label {
	flex: 0 0 180px;
	font-weight: 600;
	letter-spacing: 3px;
}

.footer_time .value {
	flex: 0 0 220px;
	font-weight: 400;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 5px;
}

.footer_time .value .ampm {
	min-width: 30px;
}

.footer_time .value .time {
	min-width: 46px;
}

.footer_time .value .sep {
	padding: 0 8px;
}

.footer_time .value b {
	font-weight: 700;
}

@media screen and (max-width: 1440px) {
	.footer_inner {
		width: 96%;
	}
}

@media screen and (max-width: 1200px) {
	.footer_inner {
		gap: 40px;
	}

	.footer_right {
		flex: 0 0 280px;
	}

	.footer_tel {
		font-size: 36px;
	}
}

@media screen and (max-width: 1024px) {
	.footer_inner {
		flex-direction: column;
		align-items: stretch;
		padding: 60px 30px 50px;
		gap: 40px;
	}

	.footer_logo img {
		height: 48px;
	}

	.footer_links {
		gap: 20px;
	}

	.footer_links a,
	.footer_links span {
		font-size: 18px;
	}

	.footer_info li {
		font-size: 17px;
		gap: 20px;
	}

	.footer_info .label {
		flex: 0 0 110px;
	}

	.footer_right {
		flex: 0 0 auto;
	}

	.footer_tel {
		text-align: left;
		font-size: 32px;
	}

	/* .footer_time .label {
		flex: 0 0 80px;
	} */
}

@media screen and (max-width: 768px) {
	.footer_inner {
		padding: 40px 0 30px;
		gap: 30px;
	}

	.footer_logo img {
		height: 40px;
	}

	.footer_center {
		gap: 30px;
	}

	.footer_links {
		gap: 12px;
	}

	.footer_links a,
	.footer_links span {
		font-size: 14px;
	}

	.footer_info li {
		flex-direction: column;
		gap: 4px;
		font-size: 14px;
	}

	.footer_info .label {
		flex: none;
	}

	.footer_copy {
		font-size: 13px;
	}

	.footer_tel {
		font-size: 26px;
	}

	.footer_time .time_row {
		font-size: 14px;
	}

	.footer_time .label {
		flex: 0 0 80px;
		letter-spacing: 2px;
	}

	.footer_time .value {
		flex: 0 1 auto;
		text-align: right;
	}
}



/* ========================================
   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: rgba(1, 169, 206, 0.40);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    border-radius: 20px;
    border-top: 1px solid rgba(1, 169, 206, 0.6);
    border-left: 1px solid rgba(1, 169, 206, 0.6);
    border-bottom: 1px solid rgba(1, 169, 206, 0.1);
    border-right: 1px solid rgba(1, 169, 206, 0.1);
    box-shadow: -8px -8px 20px rgba(1, 169, 206, 0.05), 8px 8px 50px rgba(0, 0, 0, 0.15);
}

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

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

.quick_w_bar {
    background-color: rgba(1, 169, 206, 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: 640px) {
    .quick_menu {
        right: 8px;
        /* bottom: 16px; */
		top: 60%;
        width: 50px;
        padding: 15px 0;
        gap: 10px;
        height: fit-content;
        background: #fff !important;
        border-color: #eee !important;
    }

    .quick_menu .quick_item {
        color: #424242 !important;
    }

    .quick_menu .quick_item span {
        color: #424242 !important;
        font-size: 12px;
        display: none;
    }

    .quick_menu .quick_w_bar {
        background-color: rgba(164, 139, 120, 0.30) !important;
        width: 80%;
    }

    .quick_menu svg path {
        fill: #424242 !important;
    }

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