@charset "utf-8";

/******************************************
	레이아웃 공통
*******************************************/
#wrap, #container, #sub_container {
	position: relative;
	min-width: 1600px;
}

#sub_container {
	padding-bottom: 250px;
}

#sub_container.sub {
	padding-top: 0;
}

.sector {
	position: relative;
	width: 1560px;
	margin: 0 auto;
}

@media screen and (max-width: 500px) {
	#wrap, #container, #sub_container {
		min-width: 0;
	}
	
	#sub_container {
		padding-bottom: 35vw;
	}
	
	#sub_container.sub {
		padding-top: 0;
	}
	
	.sector {
		width: 96%;
	}
}


/******************************************
	헤더
*******************************************/
#hd {
	position: absolute;
	width: 100%;
	padding-bottom: 10px;
	min-width: 1600px;
	z-index: 9999;
	transition: background-color 0.3s ease;
}

#hd.is_active {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: fixed;
}

#hd.is_active .logo_area .logo {
	background-image: url('../images/brandshop_h_logo_bk.png'); 
}

#hd .roll_area {
	height: 40px;
	background: #000;
}

#hd .roll_area .roll_box {
	float: left;
	height: 40px; 
	overflow: hidden;
}

#hd .roll_area .roll_box .roll {
	height: 40px;
	line-height: 40px;
	color: #fff;
}

#hd .roll_area .change_shop_btn {
	float: right;
	width: 118px;
	height: 28px;
	margin-top: 6px;
	border-radius: 20px;
	background: var(--main-color);
	line-height: 28px;
	color: #fff;
}

#hd .roll_area .change_shop_btn > img {
	position: relative;
	top: -1px;
	margin-left: 20px;
}


#hd .logo_area {
	margin-top: 27px;
}

#hd .logo_area .logo {
	display: inline-block;
	width: 290px;
	height: 57px;
	background: url('../images/h_logo_wt.png') no-repeat center center / contain;
}

#hd .logo_area .icon_box {
	display: flex;
	float: right;
	height: 57px;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

#hd .logo_area .icon_box > button {}

#hd .logo_area .icon_box > button > img {}


#hd .menu_area {
	margin-top: 50px;
}

#hd .menu_area .gnb {}

#hd .menu_area .gnb.left {
	float: left;
}

#hd .menu_area .gnb.right {
	float: right;
}

#hd .menu_area .snb {
	display: none;
	padding-top: 20px;
	padding-left: 145px;
}

#hd .menu_area .gnb > li,
#hd .menu_area .snb > li {
	position: relative;
	float: left;
	padding-bottom: 10px;
}

#hd .menu_area .gnb > li::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #000;
	content: "";
	transition: .2s;
}

#hd .menu_area .gnb > li.on::after,
#hd .menu_area .gnb > li:hover::after {
	width: 100%;
}

#hd .menu_area .gnb.left > li:not(:last-child),
#hd .menu_area .snb > li:not(:last-child) {
	margin-right: 50px;
}

#hd .menu_area .gnb.right > li:not(:first-child) {
	margin-left: 50px;
}

#hd .menu_area .gnb > li > a,
#hd .menu_area .snb > li > a {
	font-size: 20px;
	color: #fff;
	transition: .2s;
}

#hd.is_active .menu_area .gnb > li > a,
#hd.is_active .menu_area .snb > li > a {
	color: #777777;
}

#hd .menu_area .gnb > li.on > a,
#hd .menu_area .gnb > li:hover > a,
#hd .menu_area .snb > li.on > a,
#hd .menu_area .snb > li:hover > a {
	color: #000;
}

#hd.is_active .menu_area .gnb > li.on > a,
#hd.is_active .menu_area .gnb > li:hover > a {
	color: #000;
}

#hd.is_active .icon_box button > img {
	filter: brightness(0);
}

#hd .menu_area .snb.on {
	display: block;
}

#hd.sub_page {
	position: relative; 
}


@media screen and (max-width: 500px) {
	#hd {
		position: fixed;
		padding-bottom: 0;
		min-width: 0;
		background: #000;
	}
	
	#hd .logo_area {
		padding: 3vw 0;
		margin-top: 0;
		box-shadow: 0px 0.3vw 1vw #00000029;
	}
	
	#hd .logo_area .logo {
		float: left;
		width: 35.9vw;
		height: 8.3vw;
		/* background-image: url('../images/m_h_logo_bk.png'); */
	}
	
	#hd .logo_area .icon_box {
		display: flex;
		float: right;
		height: 8.3vw;
		align-items: center;
		justify-content: right;
		gap: 0;
	}
	
	#hd .logo_area .icon_box > button:first-child {
		margin-right: 4vw;
	}
	
	#hd .logo_area .icon_box > button > img {
		width: 5vw;
		height: 5vw;
	}
	
	/* 모바일에서는 is_active 클래스가 붙어(스크롤되어)도 기존 배경색 유지 */
	#hd.is_active {
		background-color: #000 !important;
	}
	
	/* 모바일 is_active 시 PC용 검정 로고로 바뀌는 것 방지 (원래의 흰색 로고 유지) */
	#hd.is_active .logo_area .logo {
		background-image: url('../images/h_logo_wt.png') !important; 
	}
	
	/* 모바일 is_active 시 우측 아이콘들이 검정색으로 반전되는 것 방지 */
	#hd.is_active .icon_box button > img {
		filter: none !important;
	}
}


/******************************************
	푸터
*******************************************/
#ft {
	background: #000;
	color: #fff;
}

#ft .footer_area {
	padding: 45px 0;
	font-size: 14px;
	font-weight: 300;
}

#ft .footer_area .sector {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#ft .footer_area .left {}

#ft .footer_area .left .ft_logo {}

#ft .footer_area .left .ft_info {
	margin-top: 40px;
}

#ft .footer_area .left .ft_info > span {
	line-height: 1.7;
}

#ft .footer_area .left .ft_info > span > a {
	color: #777777;
}

#ft .footer_area .right {
	display: flex;
}

#ft .footer_area .right .ft_menu {
	margin-right: 120px;
}

#ft .footer_area .right .ft_menu > a {
	display: block;
	margin-bottom: 30px;
}

#ft .footer_area .right .ft_contact {}

#ft .footer_area .right .ft_contact .tel {
	font-size: 20px;
	font-weight: 500;
}

#ft .footer_area .right .ft_contact .info {
	display: block;
	margin-top: 5px;
}

#ft .footer_area .right .ft_contact .ft_sns_box {
	position: relative;
	margin-top: 30px;
	z-index: 0;
}

#ft .footer_area .right .ft_contact .ft_sns_box .sns {
	position: relative;
	width: 35px;
	margin-right: 5px;
	z-index: 2;
}

#ft .footer_area .right .ft_contact .ft_sns_box .sns > img {
	width: 100%;
}

#ft .footer_area .right .ft_contact .ft_sns_box .insta {
	position: absolute;
	top: -2.5px;
	left: 41px;
	width: 40px;
	height: 40px;
	z-index: 1;
	opacity: 0;
	transition: .2s;
}

#ft .footer_area .right .ft_contact .ft_sns_box .insta_zone.active { width: 80px; height: 80px; }
#ft .footer_area .right .ft_contact .ft_sns_box .insta_zone.active .insta.fc { top: -18px; left: 85px; opacity: 1; }
#ft .footer_area .right .ft_contact .ft_sns_box .insta_zone.active .insta.in { top: 27px; left: 80px; opacity: 1; }
#ft .footer_area .right .ft_contact .ft_sns_box .insta_zone.active .insta.cp { top: 52px; left: 40px; opacity: 1; }

.insta_zone {
	display: inline-block;
}

@media screen and (max-width: 500px) {
	#ft {}
	
	#ft .mob_footer_area {
		padding-bottom: 25vw;
		font-size: 2vw;
		color: #777777;
	}
	
	#ft .mob_footer_area .roll_box {
		height: 8vw;
		padding: 0 2%;
		box-sizing: border-box;
		border-bottom: 1px solid #fff;
	}
	
	#ft .mob_footer_area .roll_box .swiper-wrapper {}
	
	#ft .mob_footer_area .roll_box .swiper-wrapper .roll {
		padding-top: 2.5vw;
		font-size: 2.4vw;
		color: #fff;
	}
	
	#ft .mob_footer_area .mob_ft_menu {
		height: 8vw;
		border-bottom: 1px solid #fff;
	}
	
	#ft .mob_footer_area .mob_ft_menu .sector {
		display: flex;
		justify-content: space-between;
	}
	
	#ft .mob_footer_area .mob_ft_menu a {
		display: inline-block;
		margin-top: 2.5vw;
	}
	
	#ft .mob_footer_area .mob_ft_info {
		padding-top: 3vw;
	}
	
	#ft .mob_footer_area .mob_ft_info .title {
		display: block;
		margin-top: 4vw;
		font-size: 3.2vw;
		font-weight: 500;
		color: #fff;
	}
	
	#ft .mob_footer_area .mob_ft_info .title > img {
		width: 25vw;
	}
	
	#ft .mob_footer_area .mob_ft_info .detail {
		display: block;
		line-height: 1.7;
	}
	
	#ft .mob_footer_area .mob_ft_info .detail > a {
		color: #fff;
	}
	
	#ft .mob_footer_area .mob_ft_sns {
		margin-top: 5vw;
	}
	
	#ft .mob_footer_area .mob_ft_sns .sns {
		position: relative;
		width: 6vw;
		margin-right: 2vw;
		z-index: 2;
	}
	
	#ft .mob_footer_area .mob_ft_sns .sns > img {
		width: 100%;
	}
	
	#ft .mob_footer_area .mob_ft_sns .insta {
		position: absolute;
		top: 0;
		left: 8vw;
		width: 6vw;
		height: 6vw;
		z-index: 1;
		opacity: 0;
		transition: .2s;
	}
	
	#ft .mob_footer_area .mob_ft_sns .insta_open.active ~ .insta.fc { top: -3.5vw; left: 16vw; opacity: 1; }
	#ft .mob_footer_area .mob_ft_sns .insta_open.active ~ .insta.in { top: 4.5vw; left: 15vw; opacity: 1; }
	#ft .mob_footer_area .mob_ft_sns .insta_open.active ~ .insta.cp { top: 8.5vw; left: 9vw; opacity: 1; }
}


/******************************************
	우측 하단 퀵메뉴
*******************************************/
#main_quick_area {
	position: fixed;
	bottom: 30px;
	right: 20px;
	z-index: 99;
}

#main_quick_area > button {
	display: block;
	width: 60px;
}

#main_quick_area > button > img {}

@media screen and (max-width: 500px) {
	#main_quick_area {
		bottom: 17vw;
		right: 0;
	}
	
	#main_quick_area > button {
		width: 10vw;
	}
	
	#main_quick_area > button > img {}
}


/******************************************
	모바일 하단 메뉴 영역
*******************************************/
#ft_menu_area {
	display: none;
}

@media screen and (max-width: 500px) {
	#ft_menu_area {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 2vw 7vw;
		background: #fff;
		justify-content: space-between;
		z-index: 999;
		box-shadow: 0px -2px 10px #00000029;
	}
	
	#ft_menu_area > button {
		min-width: 6vw;
		padding-top: 8vw;
		font-size: 2.4vw;
		background-repeat: no-repeat;
		background-position: top center;
		background-size: 6vw;
	}
	
	#ft_menu_area > button.menu { background-image: url('../images/m_icon_bar_menu.png'); background-size: 5.4vw; }
	#ft_menu_area > button.search { background-image: url('../images/m_icon_bar_search.png'); }
	#ft_menu_area > button.home { background-image: url('../images/m_icon_bar_home.png'); }
	#ft_menu_area > button.wish { background-image: url('../images/m_icon_bar_heart.png'); }
	#ft_menu_area > button.my { background-image: url('../images/m_icon_bar_mypage.png'); }
}


/******************************************
	전체 검색 영역
*******************************************/
.hd_search_area {
	position: fixed;
	top: 40px;
	left: 0%;
	width: 100%;
	height: calc(100% - 40px);
	background: rgba(0,0,0,0.5);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hd_search_area.show {
	opacity: 1;
	visibility: visible;
}

.hd_search_area .hd_search_box {
	position: absolute;
	top: 0;
	right: -100%;
	width: 50%;
	height: 100%;
	background: #fff;
	transition: right 0.4s ease-in-out;
}

.hd_search_area.show .hd_search_box {
	right: 0;
}

.hd_search_area .hd_search_box .hd_search_close {
	position: absolute;
	top: 30px;
	right: 30px;
}

.hd_search_area .hd_search_box .hd_search_close > img {}

.hd_search_area .hd_search_box .hd_search_sector {
	width: 75%;
	height: calc(100% - 120px);
	margin: 0 auto;
	margin-top: 120px;
	padding-bottom: 50px;
	overflow-y: auto;
}

.hd_search_area .hd_search_box .hd_search_sector::-webkit-scrollbar {
	display: none;
}

.input_box {
	position: relative;
}

.input_box input[type="text"] {
	display: block;
	width: 100%;
	height: 50px;
	padding-right: 40px;
	border: 0;
	border-bottom: 2px solid #000;
}

.input_box input[type="image"] {
	position: absolute;
	top: 0;
	right: 0;
}

.hd_search_area .hd_search_box .hd_search_sector .recent_box {
	margin-top: 65px;
}

.hd_search_area .hd_search_box .hd_search_sector .recent_box .title {
	font-size: 20px;
	font-weight: 500;
}

.hd_search_area .hd_search_box .hd_search_sector .recent_box .recent_list {
	margin-top: 20px;
}

.hd_search_area .hd_search_box .hd_search_sector .recent_box .recent_list > li {
	margin-bottom: 15px;
}

.hd_search_area .hd_search_box .hd_search_sector .recent_box .recent_list > li > span {
	font-size: 18px;
}

.hd_search_area .hd_search_box .hd_search_sector .recent_box .recent_list > li > button {
	float: right;
	margin-top: 2px;
}

.hd_search_area .hd_search_box .hd_search_sector .recent_box .pd_list {
	display: flex;
	width: 100%;
	overflow-x: auto;
	flex-wrap: nowrap;
	margin-top: 30px;
}
.hd_search_area .hd_search_box .hd_search_sector .recent_box .pd_list::-webkit-scrollbar {
	display: none;
}
.hd_search_area .hd_search_box .hd_search_sector .recent_box .pd_list li {
	width: 210px;
	flex-shrink: 0;
	margin-right: 20px;
}
.hd_search_area .hd_search_box .hd_search_sector .recent_box .pd_list li .thumb {
	width: 210px;
	height: 210px;
}

@media screen and (max-width: 500px) {
	.hd_search_area {
		top: 0;
		height: 100%;
	}
	
	.hd_search_area .hd_search_box {
		width: 100%;
	}
	
	.hd_search_area .hd_search_box .hd_search_close {
		top: 3vw;
		right: 3vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_close > img {
		width: 2.5vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_sector {
		width: 92%;
		height: calc(100% - 30vw);
		margin-top: 30vw;
		padding-bottom: 10vw;
	}
	
	.input_box input[type="text"] {
		height: 7.5vw;
		padding-right: 7vw;
		border-bottom: 1px solid #000;
	}
	
	.input_box input[type="image"] {
		width: 6vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_sector .recent_box {
		margin-top: 15vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_sector .recent_box .title {
		font-size: 3.6vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_sector .recent_box .recent_list {
		margin-top: 1.5vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_sector .recent_box .recent_list > li {
		margin-bottom: 1vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_sector .recent_box .recent_list > li > span {
		font-size: 3vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_sector .recent_box .recent_list > li > button {
		margin-top: 0.2vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_sector .recent_box .recent_list > li > button > img {
		width: 3.5vw;
	}
	
	.hd_search_area .hd_search_box .hd_search_sector .recent_box .pd_list li {
		width: 44.5vw;
		margin-right: 3vw;
	}
	.hd_search_area .hd_search_box .hd_search_sector .recent_box .pd_list li .thumb {
		width: 44.5vw;
		height: 44.5vw;
	}
}


/******************************************
	모바일 사이트 맵
*******************************************/
.sitemap_area {
	display: none;
}

@media screen and (max-width: 500px) {
	.sitemap_area {
		display: block;
		position: fixed;
		top: 14.3vw;
		left: 0;
		width: 100%;
		height: calc(100% - 14.3vw);
		background: rgba(0,0,0,0.7);
		z-index: 9999;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s ease, visibility 0.4s ease;
	}
	
	.sitemap_area.show {
		opacity: 1;
		visibility: visible;
	}
	
	.sitemap_area .sitemap_box {
		position: absolute;
		top: 0;
		left: -100%;
		width: 50vw;
		height: 100%;
		background: #fff;
		transition: left 0.4s ease-in-out;
		z-index: 9999;
	}
	
	.sitemap_area.show .sitemap_box {
		left: 0;
	}
	
	.sitemap_area .sitemap_box .sitemap_close {
		position: absolute;
		top: 3vw;
		right: 3vw;
		width: 2.5vw;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector {
		width: 42vw;
		margin: 14vw auto 0;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .title {
		font-size: 5vw;
		font-weight: 500;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu {
		margin-top: 5vw;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu > li {
		margin-bottom: 1vw;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu > li.with_arrow {
		background: url('../images/m_arrow_list_more.png') no-repeat center right / 0.5vw;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu > li > a {
		font-size: 3vw;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu > li.hr {
		height: 1px;
		margin: 3vw 0;
		background: #000;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu > li.brand_sitemap_menu > a {
		font-weight: 500;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu .sitemap_sub_menu {
		display: none;
		margin-top: 2vw;
		margin-bottom: 2vw;
		padding-left: 3vw;
		background: #f5f5f5;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu .sitemap_sub_menu.on {
		display: block;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu .sitemap_sub_menu > li {
		padding: 1.5vw 0;
	}
	
	.sitemap_area .sitemap_box .sitemap_sector .menu .sitemap_sub_menu > li > a {
		font-size: 2.8vw;
		color: #444;
	}
	
	.sitemap_area .sitemap_sbox {
		position: absolute;
		top: 0;
		left: -100%;
		width: 29vw;
		height: 100%;
		background: rgba(255,255,255,0.9);
		transition: left 0.4s ease-in-out;
		z-index: 999;
	}
	
	.sitemap_area.show .sitemap_sbox {
		left: 21vw;
	}
	
	.sitemap_area.show .sitemap_sbox.on {
		left: 50vw;
	}
	
	.sitemap_area .sitemap_sbox .submenu {
		margin: 0 4vw;
		margin-top: 42.5vw;
	}
	
	.sitemap_area .sitemap_sbox .submenu > li {}
	
	.sitemap_area .sitemap_sbox .submenu > li > a {
		font-size: 3vw;
	}
}
.hd_cart_badge {
	position: absolute;
	top: -4px;
	right: -6px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	background: #e74c3c;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 17px;
	border-radius: 9px;
	text-align: center;
	pointer-events: none;
	box-sizing: border-box;
}
