
@charset "UTF-8";
/*
* brand page css
*/

/*************************************
	main page 리뉴얼 2021-04-16*/
.main-banner-section {
	position: relative;
	width: 100%;
	height: 100%;
}
.main-banner-section .filter {
	background-color:transparent;
}
.main-banner-section .banner-txt-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, 27%);
	-ms-transform: translate(-50%, 27%);
	transform: translate(-50%, 27%);
	max-width: 500px;
	font-size: 16px;
}
.banner-txt-box h1.logo {
	width: 78vw;
	max-width: 100%;
}
.main-banner-section .banner-txt-box .txt-top {
	position: relative;
	display: block;
	margin-top: 40px;
	margin-top: 5vh;
	padding-bottom: 0.55em;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-size: 1em;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
}
.main-banner-section .banner-txt-box .txt-bottom {
	display: block;
	margin-top: 0.45em;
	color: #fff;
	font-size: 1.3em;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
}
.banner-txt-box .banner-model-txt img {
	display: block;
	margin-left: auto;
	height: 50px;
}
.mainModel_bg {
	background: #ebd8d1 url(/imges/brand/main-banner6-m.jpg?ver=230102) no-repeat center / cover;
	height: 100%;
}
.__bd-renew .mainModel_bg {
	background: #ebd8d1 url('/imges/brand/main-banner-m2.jpg?v=2502071820') no-repeat center / cover;
	height: 100%;
}
.main .bg-branch {
	/*background-color: #8dbaeb;*/
}
.main #section1 #tab li.active {
	position: relative;
	color: #CB9F76;
}
.main #section1 #tab li.active:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #CB9F76;
	left: 0;
	bottom: 0;
	z-index: 10;
}
.main .branch_list > li > a {
	color: #000;
}
/*레이아웃*/
.main .btn-lang {
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	top: 0;
	right: 51px;
	padding: 0;
	font-size: 1.2rem;
	color: #fff;
	font-weight: 600;
	line-height: 50px;
	text-align: center;
}
.main .lang_list {
	top: 50px;
	min-width: 120px;
}

@media screen and (min-width: 595.2px) {
	/*웹에서 확장팩으로 모바일 버전 했을 때*/
	.main-banner-section .banner-txt-box {
		font-size: 24px;
	}
}

/*페이지 버튼 리스트*/
.btn_list {
	position: absolute;
	bottom: 22%;
	left: 20px;
	min-width: 250px;
	z-index: 10;
	color: #fff;
	opacity: 0;
}

.btn_list > a {
	position: relative;
	display: inline-block;
	padding: 0.5em 0.7em;
	border: 2px solid #a73439;
	text-align: left;
}

.btn_list > a > strong {
	font-weight: 500;
	line-height: 1.7rem;
	white-space: nowrap;
}

/*add arrow*/
.white-button.swiper-button-next, .swiper-container-rtl .swiper-button-prev.white-button {
	background-image: url(/imges/right_arrow_w.svg);
}

.white-button.swiper-button-prev, .swiper-container-rtl .swiper-button-next.white-button {
	background-image: url(/imges/left_arrow_w.svg);
}

.fullpage_swiper .swiper-button-next, .swiper-button-prev {
	top: 45%;
	width: 18px;
	height: 30px;
	background-size: 18px 30px;
	opacity: 0.4;
}

/*brand animation*/
.btn_list.on,
.page_title.on {
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.btn_list.on {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: matrix(0.9, 0, 0, 0.9, -50, 0);
		transform: matrix(0.9, 0, 0, 0.9, -50, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: matrix(0.9, 0, 0, 0.9, -50, 0);
		transform: matrix(0.9, 0, 0, 0.9, -50, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: matrix(1, 0, 0, 1, 0, 0);
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
}

/*tab*/
#tab{
	overflow:hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#tab li {
	float: left;
	width: 20%;
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
	color: white;
}

#tab a {
	width: 100%;
	height: 100%;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#tab a span {
	display: inline-block;
	width: 100%;
	padding: 1em 5px;
}

#tab li.active {
	font-weight: 600;
}

#section1 .ll.compact > li > a {
	font-size: 9pt;
	padding: 1em 0.2em;
}


/* fullpage override
* --------------------------------------- */
.fp-slidesNav.fp-bottom {
	bottom: 82px;
	text-align: center;
}

#section1 .fp-tableCell {
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 70px;
	padding-top: 9vh;
}
#section1 .fp-tableCell h1 {
	color: #fff;
	padding-bottom: 1rem;
}
#fullpage .slide {
	padding: 0 1rem;
}
#section1 .fp-tableCell.is-short {
	padding-top: 60px;
}
.fp-tableCell.is-short h1 {
	display: none;
}
/*branch list*/
.event_brnach_tit {
	font-size: 1.4rem;
	margin-bottom: 0rem;
	font-weight: 600;
}

.branch_list {
	/*overflow: hidden;*/
	margin-left: -0.7rem;
	margin-bottom: -0.7rem;
}
.branch_list::after {
	content: '';
	display: block;
	clear: both;
}

.branch_list > li {
	float: left;
	width: 33.33333%;
	padding-left: 0.7rem;
	padding-bottom: 0.7rem;
}

.branch_list > li.region_part {
	width: 100%;
}

.region_part > h3 {
	margin-top: 2rem;
	margin-bottom: 0.5rem;
	padding: 0.2rem 1rem;
	border-radius: 5px;
	background-color: #eeeeee;
	color: #a73439;
	font-weight: 400;
}

.branch_list > li > a {
	display: block;
	width: 100%;
	padding: 0.6rem 0;
	background-color: white;
	color: #a73439;
	text-align: center;
	white-space: nowrap;
	position: relative;
	cursor: pointer;
}

.branch_list > li > a.is-new::after {
	content: '';
	position: absolute;
	top: -8px;
	left: -6px;
	width: 38px;
	aspect-ratio: 126/64;
	background: url('/imges/renew/t_new_m.png') no-repeat center / contain;
}
.branch_list > li > a.is-coming::after {
	content: '';
	position: absolute;
	top: -8px;
	left: -6px;
	width: 92px;
	aspect-ratio: 304/64;
	background: url('/imges/renew/t_coming_m.png') no-repeat center / contain;
}
.branch_list > li > a.is-coming {
	color: #77636380 !important;
	border: 1px solid #C5AFAF80 !important;;
	pointer-events: none;
}

.branch_list > li > button {
	padding-right: 0;
	padding-left: 0;
}

.list_btn_wrap > li {
	margin-bottom: 0.7rem;
}

.list_btn_wrap > li > button {
	padding: 1rem 1.2rem
}

/*animation go to bottom 위치*/
#section0 .scroll-bottom {
	position: absolute;
	bottom: 3.8rem;
	left: 50%;
	margin-left: -50px;
	color: #fff;
	z-index: 80;
	width: 100px;
	text-align: center;
}
/*animation go to bottom1*/

.arrow-bottom {
	font-size: 12px;
}

.arrow-bottom span {
	position: absolute;
	top: 18px;
	left: 50%;
	width: 1em;
	height: 1em;
	margin-left: -0.5rem;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: arrowScroll 2s infinite;
	animation: arrowScroll 2s infinite;
	opacity: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.arrow-bottom span:nth-of-type(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.arrow-bottom span:nth-of-type(2) {
	top: 28px;
	-webkit-animation-delay: .15s;
	animation-delay: .15s;
}

@-webkit-keyframes arrowScroll {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes arrowScroll {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/*animation go to bottom2*/
#section0 .mouseDrag span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 30px;
	height: 50px;
	margin-left: -15px;
	border: 2px solid #fff;
	border-radius: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#section0 .mouseDrag span::before {
	position: absolute;
	top: 10px;
	left: 50%;
	content: '';
	width: 6px;
	height: 6px;
	margin-left: -3px;
	background-color: #fff;
	border-radius: 100%;
	-webkit-animation: sdb10 2s infinite;
	animation: sdb10 2s infinite;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
	0% {
		-webkit-transform: translate(0, 0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		-webkit-transform: translate(0, 20px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes sdb10 {
	0% {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		-webkit-transform: translate(0, 20px);
		transform: translate(0, 20px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/*brand page for web
* --------------------------------------- */

#section0 .center {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: relative;
}

.section .back_bg_wrapper {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-size: 100% 100%;
	/*background-image: ;*/
	background-position: center center;
	background-size: contain;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 0;
}

.section .back_bg_wrapper iframe {
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;

	position: absolute;
	bottom: 0%; /*비디오 특성상*/
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.section .back_bg_wrapper + .filter {
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 0;
}

.section .back_bg_wrapper + .filter.filter_mobile {
	display: table;
	top: 0;
	height: 100%;
}

.filter {
	background-color: rgba(0, 0, 0, 0.4);
}

.filter.br {
	background-color: rgba(167, 52, 57, 0.16);
}

.sec_top,
.line_btn_wrap button,
.brand_sec_bottom {
	color: #fff;
}

.section .sub_title_wrap {
	padding: 1.5rem 0 2rem;
}

.sub_title_wrap .title {
	font-size: 1.4rem;
	padding-bottom: 1rem;
}

/*추가 스타일
/*********************************/
.branch_top_wrap {
	overflow: hidden;
	width: 100%;
	height: 45px;
}

.tab_name_box {
	position: absolute;
}

.tab_name_box,
.branch_top_wrap #tab a span,
.branch-table ul > li > a {
	padding: 10px 0;
	white-space: nowrap;
}

.branch_top_wrap #tab {
	width: auto;
	background-color: transparent;
	position: relative;
	float: right;
	width: 100%;
	padding-left: 150px;
}

.branch_top_wrap #tab ul {
	border: 1px solid #ffdf00;
}

.branch_top_wrap #tab li.active {
	background: #ffdf00;
	border-bottom: 1px solid transparent;
}

.branch_top_wrap #tab li.active a {
	color: #000;
	font-weight: bold;
}

.brand_sec_bottom .ll {
	border: none !important;
}

.branch-table {
	min-height: 240px;
}

.branch-table ul {
	overflow: hidden;
	margin-left: -1rem;
	margin-bottom: -1rem;
}

.branch-table ul > li {
	float: left;
	max-width: 224px;
	width: 25%;

	margin-left: 1rem;
	margin-bottom: 1rem;
}

.branch-table ul > li a {
	display: block;
	padding: 10px 1rem;
	background-color: rgba(238, 238, 238, 0.2);
	text-align: left;
	border: 1px solid #eee;
	border-radius: 4px;
}

.branch-table ul > li a span {
	float: right;
}


/*for main page*/
#w_head .branch_wrap {
	z-index: 100;
	top: 15rem;
}

#w_head .branch_wrap .brand_sec_bottom {
	background-color: rgb(0, 0, 0);
}

/*for sub page
/***************************************************/
.b_sheader {
	position: relative;
	text-align: right;
	padding-right: 1rem;
}

.b_sheader > h1 {
	position: absolute;
	top: 50%;
	width: 130px;
	height: 24px;
	margin-top: -13px;
	left: 1rem;
}

.b_sheader > h2 {
	display: inline-block;
	font-size: 1.15em;
	line-height: 60px;
	font-weight: 400;
	color: #fff;
}

.subTab,
.swip_tab {
	background-color: #D7D2CC;
}

.trans_bg{
	background-color: transparent;
}

#tab.subTab li button,
.swip_tab li > a {
	padding: 0.7rem;
	color: #333333;
}

#tab.subTab li.active,
.swip_tab li.active {
	background-color: #ffffff;
}
#tab.subTab li.active > button,
#tab.subTab li.active > a,
.swip_tab li.active > a {
	color: #3a3a3a;
	font-weight: 600;
	background-color: white;
}

.b_tab_list #tab.subTab li {
	background-color: white;
	border-bottom: 1px solid #ececec;
}

.b_tab_list #tab.subTab li.active {
	border-bottom: 1px solid #a73439;
}

.b_tab_list #tab.subTab li.active > button {
	color: #a73439;
}

.b_tab_list .event_list .br_card {
	padding: 22px 0;
}

.b_tab_list .event_thumb_img {
	top: 22px;
	left: 0;
}

/*시술전후 슬라이드 탭*/
.b_tab_list .swip_tab li {
	border-bottom: 1px solid #ececec;
}

.b_tab_list .swip_tab li > a {
	background-color: white;
}

.b_tab_list .swip_tab li.active {
	border-bottom: 1px solid #a73439;
}

.b_tab_list .swip_tab li.active > a {
	color: #a73439;
}

.swip_tab li > a {
	display: block;
	width: 100%;
	text-align: center;
	background-color: #D7D2CC;
}

.swip_tab_bottom {
	border-top: 1px solid #ececec;
	margin-top: -1px;
}

.tab_b_wrap {
	padding: 1rem;
	padding-top: 70px;
	height: 100%;
	overflow: auto;
}

.tab_b_wrap .primary {
	color: #76232F;
}

.br_m_list .br_card {
	position: relative;
	display: block;
	padding: 1.1rem 1rem;
	background-color: #fff;
}

.brand_img_list .br_card {
	padding: 22px 13px;
}

.br_card .sub_info {
	padding-top: 0.5em;
}

.br_card .border-b {
	border-bottom: 1px solid #ececec;
}

.bg-white > .br_m_list {
	border-bottom: 1px solid #e8e8e8;
}

.bg-white > .br_m_list:last-child {
	border-bottom: 1px solid #ccc;
}

.br_m_list .br_card > strong {
	font-size: 1.1rem;
	display: inline-block;
	padding-bottom: 1rem;
}
.bnaList .img_center img {
	-webkit-transform: translate(-50%, -55%);
	-ms-transform: translate(-50%, -55%);
	transform: translate(-50%, -55%);
}

.no-data {
	width: 100%;
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
	color: #757575;
}

/***********************************************
	brnad event list */
/*리뉴얼20210510*/
.brand_event_list .brevtl-item {
	position: relative;
	max-width: 668px;
	min-height: 150px;
	margin: 0 auto 22px;
	background-color: #eee;
}
.brevtl-item .top-info {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	padding-top: 13px;
	padding-left: 13px;
	padding-bottom: 15px;
	/*background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);*/
	text-align: left;
}
.brevtl-item .brevtl-branch {
	padding: 5px 15px;
	border-radius: 10em;
	background-color: #a73439;
	color: #fff;
	font-size: 13.5px;
	vertical-align: middle;
}
.brevtl-item .brevtl-period {
	padding-left: 5px;
	font-size: 1rem;
	font-weight: 500;
	color: #222;
	vertical-align: middle;
}
.brevtl-item .thumb {
	display: inline-block;
	max-width: 100%;
	margin: 0 auto;
}
.brevtl-item.white-ver .brevtl-period {
	color: #fff;
}
/*//리뉴얼20210510*/
.event_list {
	border-bottom: 1px solid #e8e8e8;
}
.event_list .br_card {
	position: relative;
	display: block;
	padding: 10px 15px;
	min-height: 110px;
	background-color: #fff;
}
.event_thumb_img {
	width: 114px;
	height: 90px;
	overflow: hidden;
	position: absolute;
	top: 10px;
	left: 1rem;
}
.event_thumb_img .img_center {
	width: 100%;
	height: 100%;
}
.event_thumb_img img {
	width: auto !important;
	height: 100%;
}
.event_content {
	position: relative;
	padding-left: 114px;
	margin-left: 1rem;
	height: 90px;
}
.event_content > strong {
	font-size: 1.1rem;
}
.event_content .sub_info {
	position: absolute;
	bottom: 0;
	left: 114px;
}
.event_content .sub_info > p {
	white-space: nowrap;
}
.event_content .sub_info b {
	display: inline-block;
	padding-right: 0rem;
	color: #cb9f76;
}
.event_content .sub_info span {
	color: #565656;
	font-weight: 500;
	white-space: nowrap;
	font-size: 9pt;
}

/*for brand2*/


#brand2 h1.logo {
	width: 284px;
	height: 52px;
	width: 78vw;
	height: 14.2vw;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

#brand2 .btn-lang {
	vertical-align: top;
	height: 50px;
	width: 50px;
	display: inline-block;
	padding: 14px;
}

#brand2 .lang_list {
	top: 55px;
	text-align: left;
	border: 1px solid #a73439;
}

@media screen and (min-width: 595.2px) {
	/*웹에서 확장팩으로 모바일 버전 했을 때*/
	#brand2 h1.logo {
		width: 475px;
		height: 190.5px;
	}
}



#brand2 .bg-branch {
	background-color: #a73439;
}
#brand2 #tab li.active {
	position: relative;
	color: #cb9f76;
}
#brand2 #tab li.active:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #cb9f76;
	left: 0;
	bottom: 0;
	z-index: 10;
}

/*for brand3*/
#brand2.b3 .menu_inner > .right {
	padding: 5px 10px 5px 30px;
}

#brand2.b3 #head {
	background-color: #ffffff;
	padding-top: 0;
	padding: 5px 10px 5px 30px;
}

#brand2.b3 #head h1 {
	top: 16px;
}

#brand2.b3 .btn-lang {
	color: #a73439;
}

#brand2.b3 .barClose_icon .bar {
	background: #a73439;
}

#brand2.b3 #brandMenu .menu_inner .bb_wrap {
	top: 60px;
}

/*common*/
.sub_item {
	opacity: 0.7;
}

.border_b {
	border-bottom: 1px solid rgba(255, 255, 255, 0.44);
}

.bg-p {
	background-color: #76232F;
}

.img_wrap {
	overflow: hidden;
	border-radius: 0.25rem;
}

.img_basic_size {
	overflow: hidden;
	width: 160px;
	height: 90px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 160px;
	flex: 0 0 160px;
}

.img_w4_size {
	overflow: hidden;
	width: 247px;
	height: 139px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 160px;
	flex: 0 0 160px;
}

.img_center {
	position: relative;
	text-align: center;
}

.img_center img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	/*height: 100%;*/
	margin: 0;
}

.img_content_wrap {
	position: relative;
	width: 48%;
	width: calc(100% - 160px);
	padding-left: 1rem;
	min-height: 90px;
}

.img_content_wrap .sub_info {
	position: absolute;
	bottom: 0;
	left: 0;
	padding-left: 1rem;
}


.fix_wrap {
	position: relative;
	word-wrap: break-word;
	min-width: 320px;
	overflow: auto;
}

.fix_top {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 110;
}

.fix_top .b_sheader {
	position: relative;
	overflow: hidden;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 100;
	/*background-color: #a73439;*/
}

.fix_bottom {
	position: relative;
	margin-top: 60px;
	min-height: 350px;
}

.fix_bottom .b_content {
	padding: 1rem 1rem 2rem;
}

.b_content .primary {
	color: #a73439;
}

.b_content .selbox {
	border: 1px solid #a73439;
}

.b_content .brd_select {
	border: 1px solid #ececec;
}

.b_content .brd_select .selbox_select {
	background-color: #f7f7f7;
}

.b_content .brd_select .selbox_selec  {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.b_content .s_table > tbody > tr > th {
	min-width: 4.5rem;
}

.fix_bottom .cont_interv {
	margin-top: 0;
}

.fix_bottom .bar_tit:before {
	background-color: #988555;
}

.text-indent .itemIcon {
	text-indent: -1.3rem;
	margin-left: 2.5rem;
}

.fix_bottom .s_sub_tit {
	display: block;
	margin-top: 1rem;
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1rem;
	color: #000;
}

.fix_bottom .s_sub_tit:before {
	content: '';
	position: absolute;
	top: 0.4em;
	left: 0.1rem;
	width: 5px;
	height: 5px;
	border-radius: 50em;
	background-color: #a73439;
}

/*swipe override*/
.fullpage_swiper.swiper-container,
.fullpage_swiper .swiper-wrapper,
.fullpage_swiper .swiper-slide {
	height: 100%;
}

.fullpage_swiper.swiper-container-horizontal>.swiper-pagination-bullets,
.fullpage_swiper .swiper-pagination-custom, .swiper-pagination-fraction {
	display: inline-block;
	bottom: 2rem;
}

/*지도 관련 어플리케이션*/
.map_app_wrap {
	margin: 1rem auto 0;
	text-align: center;
}

.map_app_wrap > .map_app {
	position: relative;
	display: inline-block;
	z-index: 1;
	margin-right: 0.5rem;
	text-align: center;
}

.map_app_wrap > .map_app a.frame_img_wrap {
	display: block;
	width: 56px;
	height: 56px;
}

.map_app_wrap .frame_img_wrap > img {
	width: 56px;
	height: 56px;
}

.map_app_wrap > .map_app .frame_img_wrap:last-child {
	margin-right: 0;
}

.map_app_wrap > .map_app .frame_img_wrap:before {
	width: 56px;
	height: 56px;
	border: none;
	border-radius: 0;
}

.frame_img_wrap:before {
	background: url('/imges/frame.svg') center/100% 100% no-repeat;
	display: block;
	content: "";
	max-width: 100%;
	max-height: 100%;
	position: absolute;
}

.vplay {
	position: absolute;
	background-image: url('/imges/videoFrame.svg');
	background-size: 48px 48px;
	bottom: 0;
	color: #fff;
	left: 0;
	height: 48px;
	margin: auto;
	right: 0;
	top: 0;
	width: 48px;
}

/*table*/
.table {
	border: none;
}

.table.line-table {
	border-top: 2px solid #a73439;
}

.table.line-table thead th {
	background: #f5f5f5;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 10px 6px;
}

.table.line-table tbody th,
.table.line-table tbody td {
	background: #fff;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 10px 6px;
}

.table.line-table tbody p {
	margin: 0;
	font-size: 13.5px;
	color: #333;
	/*word-break: keep-all;*/
}

.table.line-table tbody th p {
	font-weight: 500;
	color: #222;
}

/*nav select*/
/*skity nav select*/
.fix-subnav {
	position: fixed;
	left: 0;
	right: 0;
	top: 61px;
	z-index: 100;
	background-color: #fff;
	-webkit-transition: width .4s, box-shadow .2s ease-in-out;
	-webkit-transition: width .4s, -webkit-box-shadow .2s ease-in-out;
	transition: width .4s, -webkit-box-shadow .2s ease-in-out;
	-o-transition: width .4s, box-shadow .2s ease-in-out;
	transition: width .4s, box-shadow .2s ease-in-out;
	transition: width .4s, box-shadow .2s ease-in-out, -webkit-box-shadow .2s ease-in-out;
}

.fix-subnav.on {
	-webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0,0.11);
	box-shadow: 0px 3px 5px rgba(0, 0, 0,0.11);
	top: 0;
	z-index: 200;
}

.fix-subnav + .b_content {
	padding-top: 66px;
}

.navSelect {
	width: 100%;
	height: 40px;
	border: 1px solid #ececec;
}
.navSelect.ns-intro {
	max-width: 300px;
	margin: 0 auto;
}
.navSelect > li {
	position: relative;
	float: left;
	width: 50%;
}

.navSelect > li.full {
	width: 100%;
}

.custom_select {
	position: relative;
}

.custom_select.one {
	background-color: #f7f7f7;
}

.custom_select .selbox {
	border: none;
	height: 38px;
}

.navSelect .custom_select.one + li {
	border-left: 1px solid #ececec;
}

.custom_select .select_tit {
	position: relative;
	height: 38px;
	line-height: 38px;
	white-space: nowrap;
	padding-left: 0.5rem;
	padding-right: 2rem;
	overflow: hidden;
	font-size: 1rem;
	font-weight: 400;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.custom_select .select_tit > .icon {
	position: absolute;
	right: 0.5rem;
	top: 0rem;
}

.custom_select .select_tit>	.icon.rotate__{
	rotate: 180deg;
}

.custom_select .select_tit > .icon > img {
	width: 11px;
	height: 11px;
}

.custom_select .select_opt {
	display: none;
	position: absolute;
	background-color: #fff;
	width: 100%;
	z-index: 10;
	padding: 0.5rem 0;
	outline: 1px solid #ddd;
	max-height: 350px;
	overflow: auto;
}

.custom_select .select_opt > li a {
	display: block;
	padding: 0.8rem 1rem;
}

.custom_select .select_opt > li.active  a {
	/*background-color: #f7dddf;*/
}

/*custom_select with button*/
.nav_with_btn > .left,
.nav_with_btn > .right {
	width: 48%;
}

.nav_with_btn .btn_sec > button {
	border-radius: 0;
	padding: 9px 0;
	border: 1px solid #ececec;
}

.tit_wrap {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.tx_ip > p {
	margin: 0;
}


/*pagination*/
.fix_bottom .pagination .pn-item {
	margin-right: 0.4rem;
}

.fix_bottom .pagination .pn-item:last-child {
	margin-right: 0;
}

/*s table*/
.s_table > tbody > tr > th, .s_table > tbody > tr > td {
	padding: 0.4em;
}

/*Notice*/
.br_m_list .br_card.itemNotice {
	background-color: #ffeded;
}

/*시술전후 리스트*/
.BnA_bckg {
	background-color: #f5f5f5;
	border: 1px solid #f8f8f8;
}

/*시술안내*/
.cont_interv {
	line-height: 1.5em;
}

/*이미지 해상도*/
.img_pers {
	-webkit-perspective: 1;
}

/*QnA*/
.gr_box li {
	color: #575757;
}

.qu_point > b {
	vertical-align: top;
	line-height: 1;
	font-size: 1.1em;
}

/*이벤트 셀렉트*/
.fix_block {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #fff;
	z-index: 100;
	border-top: 2px solid #cb9f76;
}

.custom_select .select_opt.topside {
	top: -350px;
}
.custom_select .select_opt.ev-active {
	display: block;
	top: -350px;
}
.custom_select .select_opt > li.region_part a {
	padding-top: 2rem;
	padding-bottom: 0.8rem;
	color: #a73439;
	font-weight: 600;
	font-size: 16px;
}

.custom_select .select_opt.__topSlide.slide-up {
	bottom: 39px !important;
}

.custom_select .select_opt.slide-up {
	display: block;
	bottom: 0px !important;
}
.custom_select .select_opt.slide-down {
	display: none;
	bottom: -475px !important;
}

/*브랜드 예약하기*/
.b_content > .region_tit {
	padding-top: 60px;
	padding-bottom: 25px;
	text-align: center;
}

.b_content > .region_tit:first-child {
	padding-top: 30px;
}

.b_reservList {
	max-width: 600px;
	margin: 0 auto;
}

.b_reser_card {
	position: relative;
	padding-top: 200px;
	margin-bottom: 60px;
}

.b_reser_card .card_inner {
	position: relative;
	margin-left: 0.8rem;
	margin-right: 0.8rem;
	padding-left: 1.2rem;
	padding-right: 1.2rem;
	background-color: #f6f6f6;
}

.b_reser_card .tit {
	font-size: 26px;
	padding-top: 35px;
	margin-bottom: 35px;
	padding-right: 45px;
}

.b_reser_card .tit > b {
	display: inline-block;
	padding-right: 5px;
}

.b_reser_card .km {
	font-weight: 400;
	font-size: 15px;
	line-height: 1em;
	vertical-align: baseline;
	color: #bf1f26;
}

.b_reser_card .card_call {
	position: absolute;
	display: block;
	top: 35px;
	right: 25px;
}

.b_reser_card .card_call > img {
	display: block;
	height: 36px;
	width: 36px;
}

.b_reser_card .oper_time {
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 1.6em;
}

.b_reser_card .oper_time > img {
	position: absolute;
	top: 4px;
	left: 0;
	width: 13px;
	height: 13px;
}

.b_reser_card .c_btn_wrap {
	margin-top: 30px;
	padding-bottom: 30px;
}

.b_reser_card .c_btn_wrap > div {
	width: 48%;
}

.b_reser_card .c_btn_wrap .left button {
	border-radius: 0;
	background-color: #fff;
}

.b_reser_card .c_btn_wrap .right a {
	border-radius: 0;
	line-height: 25px;
}

.b_reser_card .card_img {
	position: absolute;
	top: 0;
	left: -1rem;
	right: -1rem;
	height: 235px;
	overflow: hidden;
	z-index: -1;
}

.b_reser_card .card_img > img {
	min-height: 100%;
	min-width: 100vw;
	width: 100%;
	height: auto;
}

.nearByInfo {
	margin-bottom:34px;
}

.nearByInfo > h2 {
	opacity: 0;
	text-align: center;
	line-height: 2em;
	font-weight: normal;
}

#nowYou.on {
	-webkit-animation: fadeInUp 1.2s cubic-bezier(0, 0, 0.18, 1.055) forwards;
	animation: fadeInUp 1.2s cubic-bezier(0, 0, 0.18, 1.055) forwards;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);}
}

/*for over 640px mobile*/
@media screen and (min-width: 640px) {
	.b_reser_card {
		padding-top: 310px;
	}

	.b_reser_card .card_img {
		height: 409px;
	}

	.b_reser_card .card_img > img {
		min-width: 626px;
	}
}

/*for 320px mobile*/
@media screen and (max-width: 320px) {
	.subTop .b_sheader > h2 {
		font-size: 14px;
	}

	.menu_inner .ll > li > a {
		font-size: 12px;
	}

	.branch_list > li > button {
		font-size: 11px;
	}
}

/*for event*/
.img_area .img_box img {
	display: block;
	opacity: 1;
}
/*//for event*/

/*goTop*/
.gtop {
	position: fixed;
	bottom: 30px;
	right: 1rem;
	z-index: 90;
}
.event-footer .gtop {
	bottom: 65px;
}

/*brand top notice*/
.notice_top {
	z-index: 10;
	background-color: #202b3e;
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.notice_top.fot {
	position: absolute;
	height: 89px;
	bottom: 0;
	left: 0;
	width: 100%;
}
.notice_top.in_menu a {
	padding: 10px;
}
.notice_top.in_menu span {
	font-size: 10px;
}
.notice_top.in_menu .fp {
	font-size: 1.15em;
}
.notice_top a {
	display: block;
	vertical-align: middle;
	padding: 25px 13px;
}
.notice_top span {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.2em;
	line-height: 1.5em;
}
.notice_top .fp {
	font-size: 1.2em;
}
.notice_top span:last-child {
	letter-spacing: 0.2em;
}
.notice_top button {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 30px;
	height: 30px;
}

/*brand popup 없애기:2020-02-13*/
.mainPopup {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 20px;
	left: 20px;
	z-index: 380;
	outline: 0;
	margin: 60px auto 0;
	max-width: 550px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	-webkit-box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.4);
	box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.4);
}
.mainPopup .p-contents {
	background-color: #dbdbdb;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
}
.mainPopup .p-contents img {
	display: block;
	width: 100%;
}

/*모바일/웹 쇼/하이드*/
.forWebPost {
	display: none;
}
.forMobilePost {
	display: block;
}

/*가맹점 */
.member-ask {
	display: block;
	position: relative;
	width: 100%;
	color: #fff;
	background: url(/imges/member-m.jpg) center;
	background-size: cover;
	text-align: left;
	padding: 15px 60px 15px 15px;
	z-index: 5;
}
.member-ask > p {
	margin: 0;
}
.member-ask strong {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 5px;
}
.member-ask strong + span {
	font-size: 0.8rem;
	font-weight: 300;
}
.member-ask .circle_icon {
	position: absolute;
	top: 20px;
	right: 20px;
	border: 1px solid #fff;
	border-radius: 50em;
	width: 30px;
	height: 30px;
	text-align: center;
	color: #fff;
	font-size: 8pt;
	padding-top: 7px;
}
.member-ask .circle_icon:after {
	content: '';
	width: 21px;
	height: 21px;
	position: absolute;
	top: 50%;
	left: 50%;
	background-image: url('/imges/right_arrow_w.svg');
	background-size: 6px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-transform: translate(-49%, -53%);
	-ms-transform: translate(-49%, -53%);
	transform: translate(-49%, -53%);
}

/*
popup 관련 스타일
 */

/*full screen*/
.full-screen {
	display: none;
	position: fixed;
	top: 0;
	width: 0;
	height: 0;
	z-index: -1;
	background-color: #EAE6E3;
	overflow: hidden;
}

.full-screen.bg-white {
	background-color: #fff;
}

.full-screen #fix_bottom {
	position: absolute;
}

.full-screen.on {
	display: block;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 400;
	-webkit-overflow-scrolling: touch;
}

.full-screen.on #fix_bottom {
	position: fixed;
}

.fs_header {
	position: fixed;
	z-index: 1;
	width: 100%;
	height: 45px;
	padding: 0.8rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.fs_body {
	padding-top: 50px;	/*.fs_header와 관계*/
	overflow-y: auto;
}

.full-screen .fs_body {
	position: absolute;
	top: 45px;	/*.fs_header와 관계*/
	left: 0;
	right: 0;
	padding-top: 0;
}
/*brand new popup */
.brand-popup {
	visibility: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 990;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.4)
}
.brand-popup.on {
	visibility: visible;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 100;
}
.brandP-wrap {
	display: none;
	position: fixed;
	width: 100%;
	max-width: 334px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 100;
}
.brand-popup.on .brandP-wrap {
	display: block;
}
.brandP-wrap .brandP-img {
	position: relative;
}
/*코로나 영상*/
.brandP-img .crn-video {
	position: absolute;
	bottom: 0;
	left: 10px;
	right: 10px;
}
.brandP-img .crn-video iframe {
	display: block;
	width: 100%;
	height: 180px;
}
/*//코로나 영상*/
.brandP-wrap .brandP-img a {
	display: block;
}
.brandP-wrap .brandP-img img {
	display: block;
	width: 100%;
	max-width: 334px;
	border: 0;
}
.brandP-wrap .brandP-btn {
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.6);
	margin-top: -1px;
}
.brandP-wrap .brandP-btn button {
	position: relative;
	width: 50%;
	float: left;
	color: #fff;
}
.brandP-wrap .brandP-btn button:last-child {
	float: right;
}

/*new*/
.thin-bullet.swiper-pagination {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
}
.thin-bullet.swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 2px;
	background: #fff;
	border-radius: 0;
	vertical-align: middle;
	opacity: .5;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0,  0.2);
	box-shadow: 0 0 3px rgba(0, 0, 0,  0.2);
}
.thin-bullet.swiper-pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

/*브랜드 오시느길*/
.mt-counsel-wrap {
	margin: 10px 0 0;
	padding: 20px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	text-align: center;
}

.mt-counsel-wrap .mtc-th {
	font-weight: normal;
}
.mt-counsel-wrap .mtc-td {
	display: block;
	padding: 10px 10px 0;
	font-weight: 500;
	color: #000000;
}
.mt-counsel-wrap .bar_left:before {
	height: 2em;
	margin-top: -1rem;
	background-color: #ddd;
}
.map-bt-btn {
	display: inline-block;
	width: 80%;
	padding: 0.7rem;
	background-color: white;
	border: 1px solid #ddd;
	/* font-size: 1.2rem; */
	text-align: center;
	vertical-align: middle;
}
.map-bt-btn .i-go {
	position: relative;
	display: inline-block;
	min-width: 100px;
	padding-right: 10px;
}
.map-bt-btn .i-go:After {
	content:'';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1rem;
	height: 1rem;
	background: url(/imges/right_arrow.svg) no-repeat center/12px 12px;
	margin-top: -0.5rem;
}
.map-bt-btn.primary {
	background-color: #a73439;
	color: white;
}
.map-bt-btn.primary .i-go:After {
	background: url(/imges/right_arrow_w.svg) no-repeat center/12px 12px;
}
/*map*/
.map-wrap {
	position: relative;
	border: 1px solid #eee;
}
.map-wrap .map-box {
	width:100%;
	height:300px;
}
.map-info-txt {
	position: relative;
	padding: 25px 70px 25px 15px;
	background-color: #fafafa;
}
.map-info-txt p {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 500;
}
.map-info-txt .map_app {
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -25px;
}
.map-info-txt .map_app .frame_img_wrap {
	width: 50px;
	height: 50px;
	margin: 0;
	border-radius: 0;
	border-color: #03b323;
}
.navi-wrap .map_app {
	padding: 0.7rem 1rem;
	border: 1px solid #ddd;
	border-right: 0;
}
.navi-wrap .map_app:last-child {
	border-right: 1px solid #ddd;
}
.navi-wrap .map_app span {
	vertical-align: middle;
}
.map-table-wrap {
	margin-bottom: 1rem;
	padding: 15px;
	background-color: #fafafa;
}
.mapcall-btn {
	display: inline-block;
	width: 100%;
	padding: 16px;
	border: 1px solid #ddd;
	font-size: 1.2rem;
	text-align: center;
}
/*지도 관련 어플리케이션*/
.map_app_wrap {
	margin: 1rem auto 0;
	text-align: center;
}
.map_app_wrap > .map_app {
	position: relative;
	display: inline-block;
	z-index: 1;
	margin-right: 0.5rem;
	text-align: center;
}
.map_app .frame_img_wrap {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 1rem;
	border: 1px solid #eee;
	border-radius: 22.5%;
	vertical-align: middle;
	overflow: hidden;
}
.frame_img_wrap > img {
	display: block;
	width: 100%;
	height: 100%;
}

/*시술소개*/
.bar_tit {
	position: relative;
	padding-left: 0.8rem;
	line-height: 1;
	margin-bottom: 2rem;
	padding-top: 0.4em;
}

.bar_tit:before {
	content: '';
	position: absolute;
	width: 3px;
	height: 1.2em;
	background-color: currentColor;
	bottom: 0;
	left: 0;
}
.cont_interv {
	margin-top: 3rem;
	margin-bottom: 5rem;
}
.ptpr {
	color: #cb9f76;
	display: inline-block;
	padding-right: 1rem;
	font-size: 1.2em;
}
.qu_point {
	font-weight: bold;
	font-size: 1.15rem;
}
.qu_point > b {
	color: #7B6D64;
}
.ini {
	position: absolute;
	top: 0;
	left: 0;
}
.gr_box .tit {
	margin-bottom: 2.8rem;
	text-align: center;
}
.gr_box .tit h5 {
	font-weight: 600;
	font-size: 1.5em;
	padding-bottom: 0.3rem;
}
.bar_top {
	position: relative;
	padding-top: 1rem;
}
.bar_top:before {
	content: '';
	position: absolute;
	width: 2rem;
	height: 2px;
	background-color: #CB9F76;
	top: 0;
	left: 50%;
	margin-left: -1rem;
}


/************************************************
	게시판 검색
*************************************************/
.search-form {
	display: -webkit-box; display: -ms-flexbox; display: flex;
	margin-top: 25px;
	width: 300px;
	margin: 25px auto 0;
}
.search-form .selbox {
	height: 38px;
	border: 1px solid #ececec;
}
.search-form .input {
	-ms-flex: auto;
	flex: auto;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin-left: -1px;
}
.search-form .input input {
	width: 100%;
	height: 38px;
	border: 1px solid #ececec;
}
.search-form .btn {
	background-color: #dadada;
	border-radius: 0;
	color: #525252;
}

/* 풋터아이콘 */
.sns_icon_m {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 1rem 0 2.5rem 0;
}
.sns_icon_m > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #2C2830;
}
.sns_icon_m .sns_insta {
	margin: 0 1rem;
}
.sns_icon_m > div a {
	cursor: pointer;
	display: inline-block;
}
.sns_icon_m .sns_blog a {
	width: 2.4rem;
	height: 2.4rem;
	background: url(/imges/i-blog_m.png) no-repeat center center / contain;
}
.sns_icon_m .sns_insta a {
	width: 2.1rem;
	height: 2.1rem;
	background: url(/imges/i-instagram_m.png) no-repeat center center / contain;
}
.sns_icon_m .sns_youtube a {
	width: 2.2rem;
	height: 2.2rem;
	background: url(/imges/i-youtube_m.png) no-repeat center center / contain;
}
.sns_icon_m .bdf-top-wrap {
	position: absolute;
	bottom: 0;
	right: 0;
}
.bg-white footer .line_top {
	padding-top: 1.5rem;
}
.bg-white .sns_icon_m {
	border-bottom: 1px solid #35313a;
	margin: 0;
	padding-bottom: 1.5rem;
}
.bg-white .finfo {
	border-top: 1px solid #4d4952;
	padding-top: 1rem;
}
.h-0 {
	height: 0;
}

/* 브랜드페이지 리뉴얼 */
/* fullpage reset */

.__bd-renew img{
	display: block;
}

.__bd-renew .rotate_icon__{
	position: absolute;
	-webkit-animation: rotate_icon 5s linear infinite;
	animation: rotate_icon 5s linear infinite;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

@-webkit-keyframes rotate_icon{
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate_icon{
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.__pg-padding{
	padding: 70px 0;
}

.__bd-renew .section .fp-tableCell {
	display: inherit;
	vertical-align: inherit;
}
.__bd-renew .sc-ev-program {
	height: inherit;
}

.__bd-renew .main_banner{
	height: 100vh;
}

.__bd-renew .sc-branch{
	background-color:#F7F5F5;
	padding-bottom: 30px;
}

.__bd-renew .branchSwiper .swiper-wrapper .swiper-slide{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: inherit;
	-ms-flex-pack: inherit;
	justify-content: inherit;
}

.__bd-renew .branchSwiper-pagination{
	text-align: center;
	font-weight: 500;
	display: flex;
}

.__bd-renew .branchSwiper-pagination .swiper-pagination-bullet{
	/*width: calc(100% / 8);*/
	height: 48px;
	margin:0;
	display: inline-block;
	border-radius: 0;
	color:#BEADAD;
	background-color: #F7F5F5;
	opacity: 1;
	border-bottom:2px solid #E9E4E4;
	flex:1;
}

.__bd-renew .branchSwiper-pagination .swiper-pagination-bullet-active{
	color:#A73439;
	border-bottom:2px solid #A73439;
}

.__bd-renew .branchSwiper .swiper-slide .h5{
	padding:30px 0 20px;
	text-align: center;
	color:#776363;
}

.__bd-renew .branchSwiper .swiper-slide .branch_list{
	padding:0 1rem;
}

.__bd-renew .branch_list > li > a{
	color:#776363;
	background-color:#F7F5F5;
	border:1px solid #C5AFAF;
	border-radius: 5px;
}

/* 나우 이벤트 섹션 */
.__bd-renew .__pg-padding {
	padding: 70px 0;
}
.__bd-renew .silde-hd{
	overflow: hidden;
}

.__bd-renew .bm-title {
	margin-bottom: 40px;
}
.__bd-renew .bm-title h2 {
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 5px;
	font-family: 'Campton', Sans-serif;
}
.__bd-renew .bm-title span {
	font-size: 15px;
	color: #A73439;
}
.__bd-renew .sc-ev-program .evSwiper {
	position: relative;
	overflow: hidden;
	margin: auto;
	padding-bottom: 100px;
}
.__bd-renew .sc-ev-program .evSwiper .swiper-wrapper {
	height: inherit;
}
.__bd-renew .sc-ev-program .evSwiper .swiper-wrapper .swiper-slide {
	display: initial;
}
.__bd-renew .sc-ev-program{
	background-image: url("/imges/brand/nowev_bg_m.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.__bd-renew .sc-ev-program .evSwiper .card-frame {
	border-radius: 10px;
	overflow: hidden;
}
.__bd-renew .sc-ev-program .evSwiper .card-frame img {
	width: 100%;
}
.evSwiper .card-detail{
	padding-top: 30px;
	text-align: center;
}
.evSwiper .card-detail .__title{
	font-size:15px;
	font-weight: 700;
}
.evSwiper .card-detail .__txt{
	font-size:13px;
	color:#888888;
	margin-top: 5px;
}
.__bd-renew .sc-ev-program .evSwiper .ev-pagi-btn {
	position: absolute;
	bottom: 50px;
	left: 50%;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
	z-index: 10;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 280px;
}
.evSwiper .event-button-next,
.evSwiper .event-button-prev{
	background-size: contain;
	background-repeat: no-repeat;
	width: 35px;
	height: 20px;
}
.evSwiper .event-button-next{
	background-image: url("/imges/brand/icon/next.png");
	margin-right: 20px;
}

.evSwiper .event-button-prev{
	background-image: url("/imges/brand/icon/prev.png");
	margin-left: 20px;
}


.evSwiper .ev-num-pagination.swiper-pagination-fraction {
	width: auto;
	color: #CFCFCF;
	font-size: 16px;
	font-weight: 500;
	min-width: 80px;
	text-align: center;
	white-space: nowrap;
}
.evSwiper .ev-num-pagination .swiper-pagination-current {
	font-size: 20px;
	display: inline;
}
.evSwiper .ev-num-pagination .swiper-pagination-total{
	display: inline;
}

/* .__bd-renew .rotate_icon__{
	position: absolute;
	animation: rotate_icon 5s linear infinite;transform-origin: 50% 50%;
}

@keyframes rotate_icon{
    100% {
        transform: rotate(360deg);
    }
} */

.__bd-renew .sc-ev-program .icon-1{
	left: 10px;
	top: 10px;
}
.__bd-renew .sc-ev-program .icon-1 img {
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}

.__bd-renew .sc-ev-program .icon-2{
	right: 20px;
	bottom: 95px;
}
.__bd-renew .sc-ev-program .icon-2 img {
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	transform: scale(0.5);
}


/* 시그니처 */
/* 톡스앤필 시그니처 섹션*/
.__bd-renew .sc-signature{
	/* height:1080px !important; */
	position:relative;
	background-color:#EFEAEA;
}

.__bd-renew .sc-signature .bm-title{
	width:60%;
	margin:0 auto;
}
.__bd-renew .sc-signature .bm-title span{
	display: block;
	width:100%;
}
.__bd-renew .sc-signature .bm-title img{
	max-width: 78px;
	margin: auto;
}

.__bd-renew .sc-signature .bm-title h2{
	color:#584A4A;
	font-size: 35px;
	font-weight: 700;
	margin-bottom: 30px;
	font-family: 'Campton', Sans-serif;
}
.__bd-renew .sc-signature .sigsilde-wrap {
	position: relative;
}
/* 탭 */
.__bd-renew	.treatment-cate .treat-list{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	text-align: center;
}

.__bd-renew	.treatment-cate .treat-list li{
	width:20%;
	cursor: pointer;
}

.__bd-renew	.treatment-cate .treat-list li:nth-child(1){
	width:15%;
}
.__bd-renew	.treatment-cate .treat-list li:nth-child(2){
	width:15%;
}
.__bd-renew	.treatment-cate .treat-list li:nth-child(3){
	width:20%;
}
.__bd-renew	.treatment-cate .treat-list li:nth-child(4){
	width:25%;
}
.__bd-renew	.treatment-cate .treat-list li:nth-child(5){
	width:25%;
}

.__bd-renew	.treatment-cate .treat-list li a{
	border-top:2px solid #C5AFAF;
	display: block;
	padding:15px 0;
	white-space: nowrap;
	color:#C5AFAF;
	font-size:13px;
}

.__bd-renew	.treatment-cate .treat-list li a.active{
	color:#584A4A;
	border-top: 2px solid #584a4a;


}

.__bd-renew .sigsilde-wrap .tab{
	display: none;
}

.__bd-renew .sigsilde-wrap .tab01{
	display: block;
}




/* 슬라이더 */
.__bd-renew .sigswiper{
	position:relative;
}
.__bd-renew .sigswiper .swiper-wrapper .swiper-slide{
	position:relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: inherit;
	-ms-flex-pack: inherit;
	justify-content: inherit;
}
.__bd-renew .sigswiper .swiper-slide .ev_title__{
	position: absolute;
	left: 50%;
	top: 30%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.2rem;
	display: block;
	min-width: 100px;
	text-align: center;
}

.__bd-renew .sigswiper .swiper-slide-active .ev_title__{
	display: none;
}

.__bd-renew .sigswiper .swiper-slide .card-frame{
	width: 100%;
}

.__bd-renew .sigswiper .swiper-slide .card-frame img{
	width:100%;
}
.__bd-renew .sigswiper .swiper-slide img{
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
}
.__bd-renew .sigswiper .swiper-slide-active img{
	-webkit-filter: none;
	filter: none;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.__bd-renew .sigswiper .txt_box__{
	display: none;
	margin-top: 20px;
}
.__bd-renew .sigswiper .swiper-slide-active .txt_box__{
	position: relative;
	text-align: center;
	display: block;


}
.__bd-renew .sigswiper .swiper-slide-active .txt_box__ .desc{
	min-height: 80px;
	text-align: center;
}
.__bd-renew .sigswiper .txt_box__ span{
	font-size: 1rem;
	font-weight: 700;
	color:#C5AFAF;
	font-family: 'Campton', Sans-serif;
}
.__bd-renew .sigswiper .txt_box__ h3{
	position:relative;
	font-size:2rem;
	font-weight: 700;
	white-space: nowrap;
}

.__bd-renew .sigswiper .txt_box__ p{
	max-width: 300px;
	margin: 10px auto;
	min-height: 50px;
}

.__bd-renew .sigswiper .sig-pagination.tab__{
	border-top: 4px solid #C5AFAF;
	padding-top:20px;
	text-align: center;
	position: absolute;
	top:0;
}

.__bd-renew .sigswiper .sig-pagination .swiper-pagination-bullet{
	opacity: 1;
}

.__bd-renew .sigswiper .sig-pagination.tab__ .swiper-pagination-bullet{
	background-color:transparent;
	width:114px;
	height:21px;
	border-radius: 0;
	margin:0 50px;
}
.__bd-renew .sigswiper .sig-pagination.tab__ .swiper-pagination-bullet-active{
	position:relative;
}
.__bd-renew .sigswiper .sig-pagination.tab__ .swiper-pagination-bullet-active::before{
	content:'';
	position:absolute;
	top:-24px;
	left:50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width:214px;
	height:4px;
	background-color:#584A4A;
}
.__bd-renew .sigswiper .sig-pagination.dot__{
	text-align: center;
	z-index: 10;
}
.__bd-renew .sigswiper .sig-pagination.dot__ .swiper-pagination-bullet{
	width:8px;
	height:8px;
	background-color:#D9D0D0;
	margin:0 7px;
}

.__bd-renew .sigswiper .sig-pagination.dot__ .swiper-pagination-bullet-active{
	position:relative;
	background-color:#9A232B;
}
.__bd-renew .sigswiper .sig-pagination.dot__ .swiper-pagination-bullet-active::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	width: 15px;
	height: 15px;
	border: 1px solid #9A232B;
	border-radius: 50%;
}

.__bd-renew .sigswiperTwo{
	position:relative;
	height:30px;
}

.__bd-renew .sigswiperTwo .num-pagination{
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	color: #C5AFAF;
	font-family: 'Campton', Sans-serif;
	font-size: 1.2rem;
	width: 100px;
	text-align: center;
}
.__bd-renew .sigswiperTwo .num-pagination .swiper-pagination-current{
	font-size: 1.5rem;
}
.__bd-renew .sc-signature .icon_area__{
	width: 102px;
	height: 102px;
	top: 45%;
	left: 31%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	position: absolute;
	z-index: 10;
}

.__bd-renew .sc-signature .icon{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 1;
}
.__bd-renew .sc-signature .icon-1{
	max-width: calc(32.89px / 2);
}
.__bd-renew .sc-signature .icon-2{
	width: 100%;
	height: 100%;

}
.__bd-renew .sc-signature .icon img{
	width:100%;
}
.__bd-renew .sc-signature .swiper-notification {

}

/* 3正 섹션*/
.__bd-renew .sc-samjung{
	position:relative;
	margin-bottom: -6%;
}

.__bd-renew .sc-samjung .txt_box__{
	z-index: 9;
	position:absolute;
	top: 20%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	color:#fff;
}

.__bd-renew .sc-samjung .txt_box__ .since{
	font-family: 'Campton', Sans-serif;
	font-size: 20px;
	color:rgba(255, 255, 255, 0.3);

}

.__bd-renew .sc-samjung .txt_box__ .tit__{
	font-weight: 700;
	font-size:60px;
	margin: 0;
	line-height: 1;
}

.__bd-renew .sc-samjung .txt_box__ .tit__ i{
	font-style: normal;
	font-family: 'Campton', Sans-serif;
	font-size:66px;

}

.__bd-renew .advertSwiper{
	position:relative;
}

.__bd-renew .advertSwiper .swiper-slide{
	width:100%;
}
.__bd-renew .advertSwiper .swiper-slide figure{
	width:100%;
}
.__bd-renew .advertSwiper .swiper-slide figure img{
	width:100%;
}

.__bd-renew .advertSwiper .swiper-pagination.txt__{
	bottom:20%;
}

.__bd-renew .advertSwiper .swiper-pagination.txt__::after{
	content:'';
	top: 50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	position:absolute;
	max-width: 500px;
	width: 100%;
	height: 1px;
	background-color:rgba(255, 255, 255, 0.1);
}

.__bd-renew .advertSwiper .swiper-pagination .swiper-pagination-bullet{
	width:10px;
	height:10px;
	border:4px solid rgba(255, 255, 255, 0.6);
	background-color:transparent;
	margin:0 13%;
	position:relative;
}

.__bd-renew .advertSwiper .swiper-pagination.txt__ .swiper-pagination-bullet{
	width: 100px;
	height: 100px;
	border: none;
	border-radius: 0;
	margin: 0;
	background-size: 100%;
	background-repeat: no-repeat;
	opacity: 1;
}

.__bd-renew .advertSwiper .swiper-pagination.txt__ .swiper-pagination-bullet[aria-label="Go to slide 1"]{
	background-image: url("/imges/brand/icon-samjung-01.png");
}
.__bd-renew .advertSwiper .swiper-pagination.txt__ .swiper-pagination-bullet[aria-label="Go to slide 2"]{
	background-image: url("/imges/brand/icon-samjung-02.png");
}
.__bd-renew .advertSwiper .swiper-pagination.txt__ .swiper-pagination-bullet[aria-label="Go to slide 3"]{
	background-image: url("/imges/brand/icon-samjung-03.png");
}

.__bd-renew .advertSwiper .swiper-pagination.txt__ .swiper-pagination-bullet-active[aria-label="Go to slide 1"]{
	background-image: url("/imges/brand/icon-samjung-01-ac.png");
}
.__bd-renew .advertSwiper .swiper-pagination.txt__ .swiper-pagination-bullet-active[aria-label="Go to slide 2"]{
	background-image: url("/imges/brand/icon-samjung-02-ac.png");
}
.__bd-renew .advertSwiper .swiper-pagination.txt__ .swiper-pagination-bullet-active[aria-label="Go to slide 3"]{
	background-image: url("/imges/brand/icon-samjung-03-ac.png");
}

/* 톡스앤필 뷰티팁 비디오 섹션*/

.__bd-renew .sc-video{
	background-color:#483D3D;

}

.__bd-renew .sc-video .sc-video-wrap{
	max-width: 500px;
	margin:0 auto;
}

.__bd-renew .sc-video .bm-title{
	width:100%;
	color:#fff;
	padding-bottom: 20px;
}

.__bd-renew .sc-video .bm-title span{
	display: block;
	width:70%;
	margin:0 auto;
}

.__bd-renew .sc-video .bm-title h2{
	width:40%;
	margin:10px auto 0;
}

.__bd-renew .sc-video .bm-title img{
	width:100%;
}

.__bd-renew .sc-video .video-list li{
	border-radius: 10px;
	overflow: hidden;
	width:90%;
	margin:20px auto 0;
}
.__bd-renew .sc-video .video-list li a{
	display: block;
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.__bd-renew .sc-video .video-list li img{
	width: 104%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.__bd-renew .sc-video .view_btn__{
	width:40%;
	margin: 40px auto 0;
}

.__bd-renew .sc-video .view_btn__ a{
	display: block;
	width:100%;
}

.__bd-renew .sc-video .view_btn__ a img{
	width:100%;
}

/* 인스타그램 영역 */
.__bd-renew .sc-instargram{
	background-color:#fff;
	position: relative;
	overflow: hidden;
}
.__bd-renew .sc-instargram .__bg {
	position: absolute;
	top: 10px;
	left: -310px;
	-webkit-transform: rotate(-35deg);
	-ms-transform: rotate(-35deg);
	transform: rotate(-35deg);
	width: calc(742px / 2);
	height: calc(306px / 2);
}
.__bd-renew .sc-instargram .__bg span {
	width: calc(742px / 2);
	height: calc(306px / 2);
	border-radius: 50%;
	border: 1px solid #A73439;
	position: absolute;
	top: 0;
	left: 0;
}
.__bd-renew .sc-instargram .__bg span:last-of-type {
	top: 70px;
}
.__bd-renew .sc-instargram .__bg .icon-1{
	position: absolute;
	bottom: -88px;
	right: 63px;
}
.__bd-renew .sc-instargram .__bg .icon-1 img {
	-webkit-transform: scale(0.6);
	-ms-transform: scale(0.6);
	transform: scale(0.6);
}

.__bd-renew .sc-instargram .instar-wrap .main-img__ {
	max-width: 300px;
	width: 80%;
	margin: 0 auto 50px;
}
.__bd-renew .sc-instargram .instar-wrap .main-img__ a{
	display: block;
	width:100%;
}
.__bd-renew .sc-instargram .instar-wrap .main-img__ img {
	width: 100%;
}
.__bd-renew .sc-instargram .instar-wrap .bm-title{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.__bd-renew .sc-instargram .bm-title h2{
	color:#A73439;
	font-size: 35px;
}
.__bd-renew .sc-instargram .instar-wrap {
	max-width: 500px;
	margin: auto;
}
.__bd-renew .sc-instargram .instar-wrap .list__ ul{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.__bd-renew .sc-instargram .instar-wrap .list__ ul li{
	width: calc(50% - 15px);
	margin: 0 auto 10px;
}
.__bd-renew .sc-instargram .instar-wrap .list__ .sns-wrap {
	width: 100%;
	padding-top: 100%;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.__bd-renew .sc-instargram .instar-wrap .list__ .sns-wrap img {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.__bd-renew .sc-instargram .btn-viewMore{
	font-family: 'Campton', Sans-serif;
	font-weight: 600;
	color:#222;
	font-size:14px;
	margin-top: 30px;
}
.__bd-renew .sc-instargram .btn-viewMore img{
	display: inline-block;
	vertical-align: middle;
	margin-left: 2px;
	width: 15px;
}

/* 푸터 리뉴얼 */
.__bd-renew footer{
	background-color:#333;
	padding-top: 30px;
}
.__bd-renew .member-ask{
	background-image: url("/imges/brand/icon/ft_i_member.png");
	width:130px;
	height:130px;
	margin: 0 auto;
	padding:0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position:relative;
}
.__bd-renew .member-ask > p{
	margin: 0;
	text-align: center;
	position: absolute;
	top: 55px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100px;
}
.__bd-renew .member-ask .icon-1{
	top: 0;
	display: block;
	width: 100%;
}
.__bd-renew .member-ask .icon-1 img{
	width:100%;
}
.__bd-renew .sns_icon_m > div{
	background-color:rgba(255, 255, 255, 0.1);
}
.__bd-renew .sns_icon_m .sns_blog a{
	background-image: url("/imges/brand/i_blog-m.png");
}
.__bd-renew .sns_icon_m .sns_insta a{
	background-image: url("/imges/brand/i_instar-m.png");
}
.__bd-renew .sns_icon_m .sns_youtube a{
	background-image: url("/imges/brand/i_youtube-m.png");
}

.__bd-renew footer .line_top a{
	color:#fff;
}
.__bd-renew footer .compInfoBtn span.selbox{
	color:#fff;
}
.__bd-renew .brand-footer footer .line_top{
	border-bottom: 1px solid #A73439;
}
.__bd-renew .brand-footer footer .ft_bottom{
	border-bottom: 1px solid #A73439;
}
.__bd-renew .selbox:before{
	background-color:#A73439;
}
.__bd-renew .selbox:after{
	background-color:#A73439;
}

/* 공지 사항 휴진 팝업 안내 게시글 */
.close-notice {
	margin-top: 35px;
	text-align: center;
}
.close-notice ._img-wrap {
	position: relative;
	width: 100%;
	padding-top: 80%;
	overflow: hidden;
}
.close-notice ._img-wrap img {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.close-notice .__wrap {
	padding: 20px 40px 60px;
}
.close-notice .__wrap .__mb-wrap {
	margin-bottom: 85px;
}
.close-notice .__wrap .__mb-wrap h4 {
	position: relative;
	display: inline-block;
	padding: 0 10px;
	font-size: 18px;
	font-weight: 900;
	/* color: #A9CBFB; */
	color: #000;
}
.close-notice .__wrap .__mb-wrap h4::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 83%;
	/* background-color: #A9CBFB; */
	background-color: #000;
}
.close-notice .__wrap .__mb-wrap h4::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 83%;
	/* background-color: #A9CBFB; */
	background-color: #000;
}
.close-notice .close-box {
	margin-top: 25px;
}
.close-notice .work-txt {
	display: block;
	padding: 10px 0;
	font-size: 18px;
	font-weight: 900;
	color: #ffffff;
}
.close-notice .close-color .work-txt {
	background-color: #C94246;
}
.close-notice .short-color .work-txt {
	background-color: #799A37;
}
.close-notice .work-color .work-txt {
	background-color: #4B868F;
}
.close-notice .night-color .work-txt {
	background-color: #4F6D9A;
}
.close-notice .__wrap .txt-wrap {
	background-color: #ffffff;
	padding: 20px 0;
}
.close-notice .close-box .txt-wrap p {
	margin: 0 auto;
	font-size: 18px;
	font-weight: 400;
	color: #3D3D3D;
}
.close-notice .close-box .txt-wrap p > b {
	font-weight: 400;
	color: #3372CE;
}
.close-notice .close-box .txt-wrap span {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 400;
	color: #3D3D3D;
}
.close-notice .close-box .txt-wrap p {
	max-width: 400px;
}

/* 이벤트 리뉴얼 */
.__ev-renew .nodata-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}

.__ev-renew .nodata-wrap p {
	position: relative;
	margin: 0;
	padding-top: 67px;
	font-size: 16px;
	font-weight: 500;
	color: #222222;
	line-height: 1.2;
	text-align: center;
}

.__ev-renew .nodata-wrap p:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	width: 60px;
	height: 60px;
	background: url("/imges/ico_nodata.png") no-repeat 0 0;
	background-size: auto 100%;
	transform: translateX(-50%);
}

.__ev-renew .ev-renew-wrap .nodata-wrap {
	width: 100%;
}

.fix_wrap.__bd-renew {
	overflow: hidden;
}

.search-tab-wrap {
	display: flex;
	margin-top: 50px;
}

.search-tab-wrap button {
	flex: 1;
	padding: 10px 0;
	font-size: 15px;
	color: #CECECE;
	border: 0;
	border-bottom: 1px solid #CECECE;
	border-radius: 0;
}

.search-tab-wrap button.on {
	font-weight: bold;
	color: #A73439;
	border-bottom-color: #A73439;
}

.__ev-renew .branch-section {
	display: none;
	padding-top: 19px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.__ev-renew .branch-section .branch-txt .tit {
	margin: 0;
	font-size: 20px;
	color: #9F9F9F;
	text-align: center;
}

.__ev-renew .branch-section .branch-txt .txt {
	margin: 8px 0 0;
	font-size: 12px;
	color: #9F9F9F;
	text-align: center;
}

.__ev-renew .branch-category {
	margin-top: 20px;
}

.__ev-renew .branch_top_wrap {
	height: auto;
}

.__ev-renew .branch_top_wrap #tab {
	padding: 12px 26px 13px;
	background-color: #F5F5F5;
}

.__ev-renew .branch_top_wrap #tab ul {
	border: 0;
}

.__ev-renew .branch_top_wrap #tab ul li {
	flex: none;
	width: auto;
}

.__ev-renew .branch_top_wrap #tab ul li a span {
	padding: 0;
	font-size: 16px;
	font-weight: 300;
	color: #222222;
}

.__ev-renew .branch_top_wrap #tab li.active {
	background: transparent;
}

.__ev-renew .branch_top_wrap #tab li.active a span {
	position: relative;
	font-weight: bold;
}

.__ev-renew .branch_top_wrap #tab li.active a span:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background-color: #222222;
}

.__ev-renew .branch-table {
	display: none;
	padding: 24px 15px 45px;
}

.__ev-renew .branch-table ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

.__ev-renew .branch-table ul li {
	float: none;
	margin: 0;
	max-width: none;
	width: calc((100% - 20px) / 3);
}

.__ev-renew .branch-table ul li a {
	padding: 5px 0;
	font-size: 13px;
	text-align: center;
	background-color: transparent;
	border: 1px solid #bbbbbb;
}

.__ev-renew .branch-table ul li a.on {
	color: #ffffff;
	background-color: #A73439;
	border-color: #A73439;
}

/* 이벤트 띠배너 */
.subBannerSwiper {
	position: relative;
	width: 100%;
	max-height: 480px;
}
.subBannerSwiper .swiper-slide {
	width: 100%;
}
.subBannerSwiper .swiper-slide img {
	width: 100%;
}
.subBannerSwiper .swiper-notification {
	display: inline;
}

.search-section {
	padding: 33px 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.search-section .search-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.search-section .search-wrap .select-box {
	position: relative;
	width: 100%;
}

.search-section .search-wrap .select-box button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 14px;
	width: 100%;
	height: 42px;
	border: 1px solid #C5AFAF;
	border-radius: 5px;
}

.search-section .search-wrap .select-box button span {
	font-size: 15px;
	font-weight: 500;
	color: #222222;
}

.search-section .search-wrap .select-box button .arrow {
	display: block;
	width: 11px;
	height: 16px;
	background: url("/imges/select-arrow.png") no-repeat 0 0;
}

.search-section .search-wrap .select-box button.on span {
	color: #222222;
}

.search-section .search-wrap .select-list {
	display: none;
	overflow-y: auto;
	position: absolute;
	left: 0;
	top: 41px;
	width: 100%;
	max-height: 159px;
	background-color: #FFFFFF;
	border: 1px solid #CECECE;
	border-radius: 5px;
	z-index: 1;
}

.search-section .search-wrap .select-list::-webkit-scrollbar {
	width: 7px;
}

.search-section .search-wrap .select-list::-webkit-scrollbar-track {
	background-color: #F5F5F5;
}

.search-section .search-wrap .select-list::-webkit-scrollbar-thumb {
	background-color: #A73439;
	border-radius: 7px;
}

.search-section .search-wrap .select-list a {
	display: block;
	position: relative;
	padding: 10px 13px;
	font-size: 13px;
	font-weight: 300;
	color: #222222;
	border-top: 1px solid #F5F5F5;
}

.search-section .search-wrap .select-list a:before {
	content: '';
	display: none;
	position: absolute;
	right: 15px;
	top: 12px;
	width: 14px;
	height: 8px;
	border-left: 1px solid #A73439;
	border-bottom: 1px solid #A73439;
	transform: rotate(-45deg);
}

.search-section .search-wrap .select-list a.on {
	font-weight: 500;
	background-color: #F5F5F5;
}

.search-section .search-wrap .select-list a.on:before {
	display: block;
	font-weight: 500;
}

.search-section .search-wrap .select-box.on .select-list {
	display: block;
}

.search-section .search-wrap .select-box.on .arrow {
	transform: rotate(180deg);
}

.search-section .search-wrap .input-box {
	position: relative;
	width: 100%;
}

.search-section .search-wrap .input-box input {
	padding: 0 95px 0 14px;
	width: 100%;
	height: 42px;
	font-size: 15px;
	font-weight: 500;
	border: 0;
	border-bottom: 1px solid #C5AFAF;
}

.search-section .search-wrap .input-box input:focus {
	border-bottom-color: #A73439;
}

.search-section .search-wrap .input-box input::placeholder {
	color: #CECECE;
}

.search-section .search-wrap .input-box input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset;
}

.search-section .search-wrap .input-box .btn-delete {
	display: none;
	position: absolute;
	right: 75px;
	top: 50%;
	padding: 0;
	width: 16px;
	height: 16px;
	background-color: #9F9F9F;
	border-radius: 50%;
	transform: translateY(-50%);
}

.search-section .search-wrap .input-box .btn-delete:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1px;
	height: 8px;
	background-color: #FFFFFF;
	transform: translate(-50%, -50%) rotate(45deg);
}

.search-section .search-wrap .input-box .btn-delete:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1px;
	height: 8px;
	background-color: #FFFFFF;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.search-section .search-wrap .input-box .btn-delete.on {
	display: block;
}

.search-section .search-wrap .input-box .btn-search {
	position: absolute;
	right: 45px;
	top: 50%;
	padding: 0;
	width: 20px;
	height: 20px;
	background: url("/imges/search.png") no-repeat 0 0;
	background-size: auto 100%;
	border: 0;
	transform: translateY(-50%);
}

.search-section .search-wrap .input-box .sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.search-section .search-wrap .btn-reset {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 14px;
	top: 50%;
	padding: 0;
	width: 18px;
	height: 18px;
	background: url("/imges/reset.png") no-repeat 0 0;
	background-size: auto 100%;
	cursor: pointer;
	transform: translateY(-50%);
}

.search-section .keyword-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 19px;
	margin-top: 20px;
}

.search-section .keyword-wrap .keyword {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 38px) / 3);
	height: 27px;
	font-size: 12px;
	color: #606060;
	border: 1px solid #CECECE;
	border-radius: 14px;
}

.search-section + .sc-branch .branchDetail a.on {
	color: #fff;
	border: 1px solid #A73439;
	background-color: #A73439;
}

.ev-tab-wrap {
	display: flex;
	margin: 53px 15px 0;
	border: 1px solid #BBBBBB;
	border-radius: 14px;
}

.ev-tab-wrap .ev-tab {
	flex: 1;
	padding: 0;
	height: 27px;
	font-size: 13px;
	font-weight: 500;
	color: #606060;
	border-radius: 14px;
}

.ev-tab-wrap .ev-tab.on {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #A73439;
	border-color: #A73439;
}

.ev-filter-wrap {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 53px;
}

.ev-filter-wrap .toggle-box label {
	display: flex;
	gap: 9px;
	align-items: center;
}

.ev-filter-wrap .toggle-box label span {
	font-size: 13px;
	font-weight: 500;
	color: #606060;
	letter-spacing: -1px;
}

.ev-filter-wrap .toggle-box label .toggle {
	display: block;
	position: relative;
	width: 60px;
	height: 25px;
	background-color: #CECECE;
	border-radius: 14px;
}

.ev-filter-wrap .toggle-box label .toggle:before {
	content: '';
	display: block;
	position: absolute;
	left: 2px;
	top: 2px;
	width: 21px;
	height: 21px;
	background-color: #fff;
	border-radius: 50%;
	box-sizing: border-box;
	transition: all 0.3s;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.ev-filter-wrap .toggle-box label .toggle em {
	position: absolute;
	right: 11px;
	top: 6px;
	font-size: 11px;
	font-family: 'Campton', Sans-serif;
	font-style: normal;
	color: #fff;
}

.ev-filter-wrap .toggle-box .sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.ev-filter-wrap .toggle-box input:checked + label .toggle {
	background-color: #A73439;
}

.ev-filter-wrap .toggle-box input:checked + label .toggle:before {
	left: 37px;
}

.ev-filter-wrap .toggle-box input:checked + label .toggle em {
	right: 32px;
}

.ev-renew-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	margin: 22px auto 0;
	padding: 0 15px;
	max-width: 660px;
}

.ev-box {
	width: 100%;
	letter-spacing: -1px;
}

.ev-img {
	overflow: hidden;
	position: relative;
	border-radius: 5px;
}

.ev-img img {
	max-width: 100%;
}

.ev-img .pc-only {
	display: none;
}

.hidden-box {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(29,29,29,0.8);
}

.hidden-item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	width: 100%;
	height: 100%;
}

.hidden-item a {
	position: relative;
	padding-top: 76px;
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
}

.hidden-item a:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	width: 70px;
	height: 70px;
	transform: translateX(-50%);
}

.hidden-item .homepage:before {
	background: url("/imges/ico_homepage.png");
	background-size: auto 100%;
}

.hidden-item .kakao:before {
	background: url("/imges/ico_kakaotalk.png");
	background-size: auto 100%;
}

.ev-info {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
}

.ev-info .badge {
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.ev-info .badge .branch {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0 9px;
	height: 20px;
	font-size: 11px;
	color: #606060;
	border: 1px solid #CECECE;
	border-radius: 11px;
}

.ev-info .badge img {
	width: 50px;
}

.ev-info .link {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ev-info button {
	margin-right: 10px;
	padding: 0;
	width: 17px;
	height: 20px;
	background: url("/imges/share.png") no-repeat 0 0;
	background-size: auto 100%;
}

.ev-info button .sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.ev-info .date {
	font-size: 12px;
	font-weight: 300;
	color: #888888;
}

.ev-tit {
	margin: 4px 0 0 0;
	font-size: 17px;
	font-weight: bold;
	color: #222222;
}

.ev-txt {
	margin: 5px 0 0 0;
	font-size: 14px;
	font-weight: 300;
	color: #606060;
	line-height: 1.2;
}

.ev-list {
	margin-top: 10px;
}

.ev-list.on li {
	display: flex;
}

.ev-list li {
	display: none;
	flex-direction: column;
	gap: 8px;
	padding: 10px 0;
	border-top: 1px solid #CECECE;
}

.ev-list li:first-child {
	display: flex;
}

.ev-list .ev-payment {
	display: flex;
	align-items: center;
	gap: 5px;
}

.ev-list .ev-payment .ico-payment {
	padding: 5px 0;
	min-width: 80px;
	width: 80px;
	font-size: 13px;
	color: #fff;
	text-align: center;
	line-height: 1;
	background-color: #A73439;
	border-radius: 50em;
	letter-spacing: -1px;
}

.ev-list .desc {
	margin: 0;
	font-size: 12px;
	font-weight: 300;
	color: #888888;
	line-height: 1.2;
}

.ev-list .price {
	display: flex;
	flex-direction: column;
}

.ev-list .price .discount-price {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	color: #222222;
	order: 2;
}

.ev-list .price .discount-price span {
	font-size: 20px;
	font-weight: bold;
	font-family: 'Campton', Sans-serif;
	color: #A73439;
	line-height: 1;
	vertical-align: -2px;
}

.ev-list .price .origin-price {
	margin: 0;
	font-size: 11px;
	font-family: 'Campton', Sans-serif;
	color: #999999;
	letter-spacing: 0;
	text-decoration: line-through;
	order: 1;
}

.ev-desc {
	display: none;
	margin: 0;
	padding: 10px;
	font-size: 12px;
	font-weight: 300;
	color: #A73439;
	background-color: #F5F5F5;
	border-top: 1px solid #CECECE;
}

.ev-desc.on {
	display: block;
}

.ev-desc span {
	font-weight: 400;
}

.ev-btn {
	padding: .59rem .75rem;
	width: 100%;
	border: 1px solid #DDDDDD;
	border-radius: 7px;
}

.ev-btn span {
	position: relative;
	padding-right: 17px;
	font-size: 14px;
	color: #222222;
}

.ev-btn span:before {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 3px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #A73439;
	border-right: 2px solid #A73439;
	transform: rotate(135deg);
}

.ev-btn.on span:before {
	top: 8px;
	transform: rotate(-45deg);
}

.ev-guide-wrap {
	margin-top: 62px;
	padding: 0 15px 79px;
}

.ev-guide-wrap .guide-box p {
	position: relative;
	margin: 0;
	padding-left: 25px;
	font-size: 15px;
	font-weight: bold;
	color: #9F9F9F;
	line-height: 20px;
	letter-spacing: -1px;
}

.ev-guide-wrap .guide-box p:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: url("/imges/ico_notice.png") no-repeat 0 0;
	background-size: auto 100%;
}

.ev-guide-wrap .guide-box ul {
	margin-top: 13px;
}

.ev-guide-wrap .guide-box li {
	font-size: 12px;
	font-weight: 300;
	color: #9F9F9F;
	letter-spacing: -1px;
}

.ev-guide-wrap .guide-box li + li {
	margin-top: 3px;
}

.ev-guide-wrap .btn-more {
	margin-top: 57px;
	width: 100%;
	height: 59px;
	letter-spacing: -1px;
	box-shadow: 0 3px 15px rgba(34,34,34,0.16);
}

.ev-guide-wrap .btn-more span {
	position: relative;
	padding-right: 20px;
	font-size: 16px;
	color: #222222;
}

.ev-guide-wrap .btn-more span:before {
	content: '';
	display: block;
	position: absolute;
	right: 5px;
	top: 50%;
	width: 2px;
	height: 12px;
	background-color: #A73439;
	transform: translateY(-50%);
}

.ev-guide-wrap .btn-more span:after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	width: 12px;
	height: 2px;
	background-color: #A73439;
	transform: translateY(-50%);
}

.loading {
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.loading .tit {
	margin: 0 0 15px 0;
	font-size: 35px;
	font-weight: bold;
	color: #a73439;
	text-align: center;
	line-height: 1.2;
	user-select:none;
}

.loading .loading-box {
	position:relative;
	width: 100%;
	padding: 40px 0;
	background: #fff;
	box-shadow: 0 0 60px #eee;
	background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.5) 40%, rgba(255,255,255,.5) 60%, #fff 100%);
	backdrop-filter: blur(5px);
	animation: slide 1.5s infinite;
	margin-bottom:50px;
}

.loading .loading-text {
	color: #333;
	text-align: center;
	margin-bottom: 0;
	user-select:none;
}

@keyframes slide {
	0% {background-position-x: 0;}
	100% {background-position-x: 100vw;}
}