/*
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%;
	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;
}


/*service add page close*/
.pClose-btn {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1rem;
	width: 3.5rem;
	line-height: 1;
}


/* dimmer */
.htmlcover {
	overflow: hidden !important;
	position: relative;
	/*width: 100%;*/
	/*height: 100%;*/
	background: rgba(0,0,0,.8);
}

.htmlcover body {
	position: relative;
	height: 100%;
	overflow: hidden;
}

#dimmer {
	position: fixed;
	top: -150px;
	left: 0;
	bottom: -100px;
	width: 100%;
	height: 200%;
	background: rgba(0,0,0,.8);
	overflow: hidden;
	z-index: -1;
	opacity: 0;
}
#dimmer2 {
	position: fixed;
	top: -150px;
	left: 0;
	bottom: -100px;
	width: 100%;
	height: 200%;
	background: rgba(0,0,0,.8);
	overflow: hidden;
	z-index: -1;
	opacity: 0;
}

#dimmer.on {
	z-index: 400;
	opacity: 1;
}
#dimmer2.on {
	z-index: 400;
	opacity: 1;
}


/*popup*/
#popup {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 450;
	outline: 0;
	/*height: 200px;*/
	margin: 60px 30px 0;
}
#popup2 {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 450;
	outline: 0;
	/*height: 200px;*/
	margin: 60px 30px 0;
}

#popup.on {
	display: block;
}
#popup2.on {
	display: block;
}

.popup {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 450;
	outline: 0;
	/*height: 200px;*/
	margin: 60px 30px 0;
}

.popup.on {
	display: block;
}

.popup_set {
	height: 100%;
	background-color: #fff;
	border: 1px solid #ccc;
	/* border-radius: 0.5em; */
	outline: 0;

}

.popup_header {
	padding-top: 1em;
	text-align: center
}

.popup_header h4 {
	line-height: 1;
}

.popup_body {
	text-align: center;
}

.popup_header.fixed_header {
	position: fixed;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	height: 3rem;
	background-color: #fff;
	border-top-right-radius: 1rem;
	border-top-left-radius: 1rem;
	z-index: 1;
}

.fixed_header + .popup_body {
	margin-top: 3rem;
}

/*check reservation*/
#popup.cr_popup {
	top: 1rem;
	bottom: 1rem;
	left: 1rem;
	right: 1rem;

	height: auto;
	margin: 0;

	/*.popup_body와 연관*/
	border-radius: 1rem;

	/*for ios*/
	-webkit-overflow-scrolling: touch;
}
#popup2.cr_popup {
	/* top: 1rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem; */
	overflow-y: auto;
	background-color: #FFFFFF;
	height: 100%;
	margin: 0;

	/*.popup_body와 연관*/
	/* border-radius: 1rem; */

	/*for ios*/
	-webkit-overflow-scrolling: touch;
}

.cr_popup .popup_set {
	position: relative;
	overflow: hidden;
	border: none;
	background-color: transparent;
}

.cr_popup .popup_header {
	position: relative;
	height: 6rem;
	padding-bottom: 1rem;
	border-bottom: 2px dashed #ddd;
	background-color: #fff;
}

.cr_popup .popup_body {
	background-color: #fff;
	overflow-y: auto;
	max-height: 550px;
	max-height: calc(100% - 6rem);
	text-align: left;

	position: absolute;
	top: 6rem;
	right: 0;
	left: 0;

	/*.cr_popup과 연관*/
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
}

.cr_popup .tt_price {
	margin-top: 2rem;
	padding: 1rem;
}

.cr_popup .popup_header .punch-left,
.cr_popup .popup_header .punch-right {
	position: absolute;
	bottom: -12.5px;
	width: 25px;
	height: 25px;
	/*dimmer 배경색과 연관*/
	background-color: #333;
	border-radius: 50em;
	z-index: 1;
}

.cr_popup .popup_header .punch-left {
	left: -12.5px;
}
.cr_popup .popup_header .punch-right {
	right: -12.5px;
}


/*notice/community study detail popup*/
.popup.nd_popup {
	top: 1rem;
	bottom: 1rem;
	left: 0;
	right: 0;

	height: auto;
	margin: 0 1rem;
	border-radius: 1rem;
	overflow: auto;
}

.nd_popup .popup_set {
	height: auto;
	border-radius: 1rem;
}

.nd_popup .popup_header {
	margin: 0 auto;
}

.nd_popup .popup_body {
	padding: 1rem;
	text-align: left;
}


@media screen and (min-width: 500px) {
	#popup {
		margin: 60px auto 0;
		width: 400px;
	}

	#popup.cr_popup {
		margin: 1rem auto 1rem;
		min-width: 500px;
		width: 500px;
	}

	.popup.nd_popup,
	.nd_popup .popup_header.fixed_header {
		max-width: 500px;
		width: 500px;
	}

	.popup.nd_popup {
		margin: 1rem auto;
	}
}


/*event popup*/
#eventpop {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 450;
	outline: 0;
	margin: 60px auto 0;
	width: 100%;
	max-width: 334px;
}

#eventpop.on {
	display: block;
}

@media screen and (min-width: 500px) {
	#eventpop {
		margin: 60px auto 0;
		max-width: 400px;
	}
}

#eventpop .sep_wrap strong {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}



/*for modal*/
.t_modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 290px;
	height: 312px;
	box-shadow: 2px 2px 16px 3px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	background-color: white;
	overflow: hidden;
}

.t_modal_head {
	height: 40px;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.t_modal_head > h3 {
	display: inline-block;
	padding: 0.65rem 1rem;
	font-size: 16px;
	font-weight: 400;
}

.t_modal_head > button {
	float: right;
	padding: 0.4rem;
}

.t_modal_head > button > img {
	width: 25px;
	height: 25px;
}

.t_modal_body {
	width: 100%;
	text-align: left;
	height: 270px;
	overflow: auto;
	padding: 1rem;
}

.t_modal_body .staff_card .sc_img {
	margin: 0;
}

.t_modal_body .staff_card {
	width: 236px;
	margin-bottom: 0;
}

.t_modal_body > .left {
	float: left;
}

.history_wrap {
	margin-top: 3rem;
}

.history_wrap .now {
	font-size: 16px;
	color: #a73439;
}

.history_wrap .now + span {
	color: #545454;
	font-weight: 300;
}

.history_wrap .history_list {
	padding-top: 1rem;
}

.history_wrap .history_list li {
	margin-bottom: 0.2rem;
}

/*main swiper & tab new popup */
.st-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);
}
.st-popup.on {
	visibility: visible;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 300;
}
.stp-wrap {
	display: none;
	position: fixed;
	width: 100%;
	max-width: 360px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	overflow: hidden;
}
.st-popup.on .stp-wrap {
	display: block;
}
.stp-wrap > .swiper-container {
	width: calc(100% + 1px);
	max-width: 360px;
}
.stp-wrap .stp-img a {
	display: block;
	height: 100%;
}
.stp-wrap .stp-img img {
	display: block;
	width: 100%;
	max-width: 360px;
	height: 100%;
	/* height: 513px; */
	border: 0;
}
.stp-wrap .stp-btn {
	overflow: hidden;
	background-color: #000;
}
.stp-wrap .stp-btn button {
	position: relative;
	float: left;
	width: 50%;
	height: 38px;
	color: #fff;
}
.stp-wrap .stp-btn button:last-child {
	float: right;
}
/*swiper popup */
.stp-wrap .swiper-pagination {
	width: 100%;
	bottom: 0;
	padding: 10px 0;
}
.stp-wrap .swiper-pagination-bullet {
	width: 12px;
	height: 3px;
	background: #fff;
	box-shadow: 0 0 4px rgb(0, 0, 0, 0.5);
	border-radius: 0;
	vertical-align: middle;
	opacity: .7;
	margin: 0 4px;
}
.stp-wrap .swiper-pagination-bullet-active {
	background: #a73439;
	opacity: 1;
}
/*branch event swiper*/
.branch-event-wrap {
	width: 100%;
	min-height: 450px;
	background-color: white;
}
.branch-event-wrap .mp-tit {
	padding: 25px 10px 20px;
	font-size: 1.7rem;
	font-weight: 600;
	text-align: center;
}
.branch-event-wrap .mp-tit span {
	display: block;
	color: #757575;
	padding-top: 5px;
	font-size: 1rem;
	font-weight: 400;
}
.pbe-item .img-box img {
	display: block;
	width: 100%;
	max-height: 188px;
}
.branch-event-wrap .pbe-item .txt-box {
	padding: 1.4rem 1.8rem;
}
.pbe-item .txt-box > strong {
	margin-bottom: 5px;
	font-size: 1.2rem;
	display: block;
}
.pbe-item .txt-box .price-box {
	text-align: right;
}

/*리뉴얼 공지 팝업*/
.notice-popup{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 999;
}
.notice-popup .bg__{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}
.notice-popup .noticeP-wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 370px;
	width: 100%;
}
.notice-popup .noticeP-wrap figure{
	width: 100%;
	padding-top: 136.61%;
	overflow: hidden;
}
.notice-popup .noticeP-wrap figure img{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.notice-popup .noticeP-wrap .notice_time_txt {
	position: absolute;
	text-align: center;
	top: 61%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}
.notice-popup .noticeP-wrap .notice_time_txt .txt1,
.notice-popup .noticeP-wrap .notice_time_txt .txt2,
.notice-popup .noticeP-wrap .notice_time_txt .txt3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 300;
	color: #222222;
	letter-spacing: -0.02em;
}
.notice-popup .noticeP-wrap .notice_time_txt .txt3 b {
	display: block;
	text-decoration: underline #A73439;
	font-size: 12px;
	font-weight: 400;
	color: #A73439;
	text-underline-offset: 4px;
	margin-bottom: 4px;
}
.notice-popup .noticeP-wrap .notice_time_txt div > span {
	background-color: #A73439;
	border-radius: 15px;
	display: inline-block;
	margin-bottom: 15px;
	width: 130px;
	height: 30px;
	font-size: 12px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 28px;
	margin-top: 10px;
}
.notice-popup .noticeP-wrap .notice_time_txt .txt4 {
	margin: 0 auto;
	font-size: 17px;
	font-weight: 500;
	color: #A73439;
}
.notice-popup .noticeP-wrap .notice_time_txt .txt4 b {
	font-size: 22px;
	font-weight: 700;
}
.notice-popup .noticeP-wrap .notice_time_txt .txt4 span {
	font-size: 17px;
	font-weight: 700;
}
.notice-popup .noticeP-wrap .close-btn{
	position:absolute;
	right: 0;
	bottom: -35px;
	color:#333;
	font-size:15px;
	border-radius: 5px;
	background-color: #000;
}
.notice-popup .noticeP-wrap .close-btn button{
	font-size: 12px;
	padding: 5px 10px;
	color: #fff;
}

.notice-popup.ps-popup .noticeP-wrap {
	max-width: 400px;
}
.notice-popup.ps-popup .noticeP-wrap .close-btn {
	position: relative;
	bottom: -15px;
	border-radius: 0;
	display: flex;
	justify-content: space-between;
	background: rgba(0, 0, 0, 0.6);
}
.notice-popup.ps-popup .noticeP-wrap .close-btn button {
	position:relative;
	width: 50%;
}
.notice-popup.ps-popup .noticeP-wrap .close-btn button:not(:first-child)::before {
	content: '';
	position: absolute;
	left:0;
	top: 50%;
	width: 1px;
	height: 1em;
	margin-top: -0.5rem;
	background-color: #ccc;
}
@media screen and (max-width: 500px) {
	.notice-popup.ps-popup .noticeP-wrap {
		max-width: 100vw;
	}
}

.notice-popup2{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 999;
}
.notice-popup2 .bg__{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}
.notice-popup2 .noticeP-wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 370px;
	width: 100%;
}
.notice-popup2 .noticeP-wrap figure{
	width: 100%;
	padding-top: 99.61%;
	overflow: hidden;
}
.notice-popup2 .noticeP-wrap figure img{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.notice-popup2 .noticeP-wrap .notice_time_txt {
	position: absolute;
	text-align: center;
	top: 61%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}
.notice-popup2 .noticeP-wrap .notice_time_txt .txt1,
.notice-popup2 .noticeP-wrap .notice_time_txt .txt2,
.notice-popup2 .noticeP-wrap .notice_time_txt .txt3 {
	margin-bottom: 15px;
	font-size: 11px;
	font-weight: 300;
	color: #222222;
}
.notice-popup2 .noticeP-wrap .notice_time_txt .txt3 b {
	text-decoration: underline #A73439;
	font-size: 12px;
	font-weight: 400;
	color: #A73439;
}
.notice-popup2 .noticeP-wrap .notice_time_txt div > span {
	background-color: #A73439;
	border-radius: 14px;
	display: inline-block;
	margin-bottom: 15px;
	width: 122px;
	height: 27px;
	font-size: 12px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 26px;
}
.notice-popup2 .noticeP-wrap .notice_time_txt .txt4 {
	margin: 0 auto;
	font-size: 14px;
	font-weight: 500;
	color: #A73439;
}
.notice-popup2 .noticeP-wrap .notice_time_txt .txt4 b {
	font-size: 17px;
	font-weight: 700;
}
.notice-popup2 .noticeP-wrap .notice_time_txt .txt4 span {
	font-size: 14px;
	font-weight: 700;
}
.notice-popup2 .noticeP-wrap .close-btn{
	position:absolute;
	right: 0;
	bottom: -50px;
	color:#333;
	font-size:15px;
	border-radius: 5px;
	background-color: #000;
}
.notice-popup2 .noticeP-wrap .close-btn button{
	font-size: 12px;
	padding: 5px 10px;
	color: #fff;
}

.notice-popup2.ps-popup .noticeP-wrap {
	max-width: 400px;
}
.notice-popup2.ps-popup .noticeP-wrap .close-btn {
	position: relative;
	bottom: -15px;
	border-radius: 0;
	display: flex;
	justify-content: space-between;
	background: rgba(0, 0, 0, 0.6);
}
.notice-popup2.ps-popup .noticeP-wrap .close-btn button {
	position:relative;
	width: 50%;
}
.notice-popup2.ps-popup .noticeP-wrap .close-btn button:not(:first-child)::before {
	content: '';
	position: absolute;
	left:0;
	top: 50%;
	width: 1px;
	height: 1em;
	margin-top: -0.5rem;
	background-color: #ccc;
}








.notice-popup3{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 999;
}
.notice-popup3 .bg__{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}
.notice-popup3 .noticeP-wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 370px;
	width: 100%;
}
.notice-popup3 .noticeP-wrap figure{
	width: 100%;
	/*padding-top: 99.61%;*/
	padding-top: 136.61%;
	overflow: hidden;
}
.notice-popup3 .noticeP-wrap figure img{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.notice-popup3 .noticeP-wrap .notice_time_txt {
	position: absolute;
	text-align: center;
	top: 61%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}
.notice-popup3 .noticeP-wrap .notice_time_txt .txt1,
.notice-popup3 .noticeP-wrap .notice_time_txt .txt2,
.notice-popup3 .noticeP-wrap .notice_time_txt .txt3 {
	margin-bottom: 15px;
	font-size: 11px;
	font-weight: 300;
	color: #222222;
}
.notice-popup3 .noticeP-wrap .notice_time_txt .txt3 b {
	text-decoration: underline #A73439;
	font-size: 12px;
	font-weight: 400;
	color: #A73439;
}
.notice-popup3 .noticeP-wrap .notice_time_txt div > span {
	background-color: #A73439;
	border-radius: 14px;
	display: inline-block;
	margin-bottom: 15px;
	width: 122px;
	height: 27px;
	font-size: 12px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 26px;
}
.notice-popup3 .noticeP-wrap .notice_time_txt .txt4 {
	margin: 0 auto;
	font-size: 14px;
	font-weight: 500;
	color: #A73439;
}
.notice-popup3 .noticeP-wrap .notice_time_txt .txt4 b {
	font-size: 17px;
	font-weight: 700;
}
.notice-popup3 .noticeP-wrap .notice_time_txt .txt4 span {
	font-size: 14px;
	font-weight: 700;
}
.notice-popup3 .noticeP-wrap .close-btn{
	position:absolute;
	right: 0;
	bottom: -50px;
	color:#333;
	font-size:15px;
	border-radius: 5px;
	background-color: #000;
}
.notice-popup3 .noticeP-wrap .close-btn button{
	font-size: 12px;
	padding: 5px 10px;
	color: #fff;
}

.notice-popup3.ps-popup .noticeP-wrap {
	max-width: 400px;
}
.notice-popup3.ps-popup .noticeP-wrap .close-btn {
	position: relative;
	bottom: -15px;
	border-radius: 0;
	display: flex;
	justify-content: space-between;
	background: rgba(0, 0, 0, 0.6);
}
.notice-popup3.ps-popup .noticeP-wrap .close-btn button {
	position:relative;
	width: 50%;
}
.notice-popup3.ps-popup .noticeP-wrap .close-btn button:not(:first-child)::before {
	content: '';
	position: absolute;
	left:0;
	top: 50%;
	width: 1px;
	height: 1em;
	margin-top: -0.5rem;
	background-color: #ccc;
}
@media screen and (max-width: 500px) {
	.notice-popup2.ps-popup .noticeP-wrap {
		max-width: 100vw;
	}
}

/* 휴진 팝업 */
.closeDayPopup {
	position: relative;
}
.closeDayPopup .close-wrap {
	position: absolute;
	overflow: hidden;
	top: 219px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 330px;
	min-width: 280px;
	height: 150px;
}
.closeDayPopup .close-swiper {
	position: relative;
	width: 100%;
	height: 100%;
}
.closeDayPopup .close-wrap.under-5 {
	height: 150px;
	width: 100%;
	top: 235px;
}
.closeDayPopup .close-wrap.under-5 .close-swiper .swiper-wrapper{
	flex-wrap: wrap;
	gap: 3px;
}
.closeDayPopup .close-wrap.under-5 .close-swiper .swiper-wrapper .swiper-slide{
	flex: 0 0 calc(33.3% - 2px);
}
.closeDayPopup .close-wrap.under-5 .close-swiper .swiper-wrapper .swiper-slide:nth-child(3n) {
    margin-right: 0;
}
.closeDayPopup .close-wrap.under-5 .close-swiper .swiper-slide .txt-wrap{
	height: 100%;
}
.closeDayPopup .close-wrap.under-5 .close-swiper .swiper-slide .txt-wrap .date-txt-wrap{
	height: 50%;
}
.closeDayPopup .close-wrap.under-5 .close-swiper .swiper-slide .txt-wrap .diag-txt-wrap{
	height: 50%;
}

.closeDayPopup .close-swiper ul li {
	flex: 0 0 auto;
}
.closeDayPopup .close-swiper .txt-wrap {
	width: 100%;
	text-align: center;
}
.closeDayPopup .close-swiper .txt-wrap .date-txt-wrap {
	display: table;
	width: 100%;
	height: 50%;
	margin: 0 auto;
}
.closeDayPopup .close-swiper .close-box .date-txt-wrap {
	background-color: #C94246;
}
.closeDayPopup .close-swiper .work-box .date-txt-wrap {
	background-color: #4B868F;
}
.closeDayPopup .close-swiper .night-box .date-txt-wrap {
	background-color: #4F6D9A;
}
.closeDayPopup .close-swiper .short-box .date-txt-wrap {
	background-color: #799A37;
}
.closeDayPopup .close-swiper .extend-box .date-txt-wrap {
	background-color: #F2A900;
}
.closeDayPopup .close-swiper .txt-wrap .date-txt-wrap div {
	display: table-cell;
	vertical-align: middle;
}
.closeDayPopup .close-swiper .txt-wrap .date-txt-wrap span {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #ffffff;
}
.closeDayPopup .close-swiper .txt-wrap .date-txt-wrap span.date {
	display: block;
	margin-bottom: 2px;
}
.closeDayPopup .close-swiper .txt-wrap .date-txt-wrap span.holiday {
	font-size: 13px;
	font-weight: 600;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap {
	background-color: #ffffff;
	display: table;
	width: 100%;
	height: 50%;
	margin: 0 auto;
	font-size: 12px;
	font-weight: 900;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap > p {
	display: table-cell;
	vertical-align: middle;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .night-txt-wrap {
	display: table-cell;
	vertical-align: middle;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .night-txt-wrap p {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .night-txt-wrap .night-txt {
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 900;
	color: #4F6D9A;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .night-txt-wrap .time-txt {
	font-size: 12px;
	font-weight: 900;
	color: #222222;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .night-txt-wrap .sub-txt {
	font-size: 10px;
	font-weight: 400;
	color: #666666;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .night-txt-wrap p {
	display: block;
	text-align: center;
	margin: 0;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .night-txt-wrap .time-lunch-txt {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	font-weight: 400;
	color: #666666;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .extend-txt-wrap {
	display: table-cell;
	vertical-align: middle;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .extend-txt-wrap p {
	display: block;
	text-align: center;
	margin: 0 auto;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .extend-txt-wrap .extend-txt {
	font-size: 14px;
	font-weight: 900;
	color: #F2A900;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .extend-txt-wrap .extend-txt.bold {
	font-weight: 900;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .extend-txt-wrap .time-txt {
	margin-top: 5px;
	font-size: 12px;
	font-weight: 900;
	color: #222222;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .extend-txt-wrap .sub-txt {
	font-size: 10px;
	font-weight: 400;
	color: #666666;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .extend-txt-wrap p {
	display: block;
	text-align: center;
	margin: 0;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .extend-txt-wrap .time-lunch-txt {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	font-weight: 400;
	color: #666666;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .short-txt-wrap {
	display: table-cell;
	vertical-align: middle;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .short-txt-wrap .short-txt {
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 900;
	color: #799A37;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .short-txt-wrap p {
	display: block;
	text-align: center;
	margin: 0;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .short-txt-wrap .time-lunch-txt {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	font-weight: 400;
	color: #666666;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .short-txt-wrap .time-lunch-txt > p {
	margin-right: 2px;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .nomal-treat-txt {
	display: table-cell;
	vertical-align: middle;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap p.work {
	color: #222222;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap .nomal-treat-txt > p {
	color: #4B868F;
}
.closeDayPopup .close-swiper .txt-wrap .diag-txt-wrap p.close {
	font-size: 14px;
	font-weight: 900;
	color: #D03F4C;
}

.renew.closeDayPopup .close-wrap{
	flex-direction: column;
	top: 48%;
	height: 220px;
}

.renew.closeDayPopup .renew-close-swiper .swiper-wrapper {
	flex-direction: column;
	height: 220px;
	max-width: 330px;
    min-width: 293px;
}
.renew.closeDayPopup .renew-close-swiper .swiper-wrapper .swiper-slide{
	justify-content: flex-start;
	gap: 1.5px;
}

.renew.closeDayPopup .renew-close-swiper .swiper-wrapper .swiper-slide .close-date-box{
	width: 175.5px;
	border-top: 1px solid #000;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0px 13px;
}

.renew.closeDayPopup .renew-close-swiper .swiper-wrapper .swiper-slide .close-type-box{
	border-top: 1px solid #000;
	background-color: #fff;
	width: 116px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.renew.closeDayPopup .renew-close-swiper li .close-date-box .date{
	font-family: Lato;
	font-weight: 900;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -0.02em;
	vertical-align: middle;
	line-height: 27px;
} 
.renew.closeDayPopup .renew-close-swiper li .close-date-box .date .day{
	font-family: Pretendard;
	font-weight: 700;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: -0.05em;
	vertical-align: top;
}

.renew.closeDayPopup .renew-close-swiper li .close-date-box .holiday{
	font-family: Pretendard;
	font-weight: 700;
	font-size: 12px;
	line-height: 100%;
	
}

.renew.closeDayPopup .renew-close-swiper li .close-type-box .close-type-title {
	font-family: Pretendard;
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.05em;
	text-align: center;
	vertical-align: middle;
}
.renew.closeDayPopup .renew-close-swiper li .close-type-box .treatment-time {
	font-family: Pretendard;
	font-weight: 700;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: -0.05em;
	text-align: center;
	vertical-align: middle;
	padding-top: 2px;
}
.renew.closeDayPopup .renew-close-swiper li .close-type-box .lunch {
	font-family: Pretendard;
	font-weight: 300;
	font-size: 8px;
	line-height: 100%;
	letter-spacing: -0.05em;
	text-align: center;
	vertical-align: middle;
	padding-top: 1px;
}
@media screen and (max-width: 320px) {
	.renew.closeDayPopup .close-wrap {
		top: 42%;
	}
}


/* 공지 사항 휴진 팝업 안내 게시글 */
.close-notice {
	margin-top: 30px;
	text-align: center;
}
.close-notice ._img-wrap {
	position: relative;
	width: 100%;
	padding-top: 97.32%;
	overflow: hidden;
}
.close-notice ._img-wrap img {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.close-notice .__wrap {
	padding: 20px 20px 60px;
}
.close-notice .__wrap .__mb-wrap {
	margin-bottom: 60px;
}
.close-notice .__wrap .__mb-wrap h4 {
	position: relative;
	display: inline-block;
	padding: 0 10px;
	font-size: 12px;
	font-weight: 900;
	color: #A9CBFB;
}
.close-notice .__wrap .__mb-wrap h4::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 2px;
	height: 90%;
	background-color: #A9CBFB;
}
.close-notice .__wrap .__mb-wrap h4::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 2px;
	height: 90%;
	background-color: #A9CBFB;
}
.close-notice .close-box {
	margin-top: 25px;
}
.close-notice .work-txt {
	display: block;
	padding: 10px 0;
	font-size: 12px;
	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 .extend-color .work-txt {
	background-color: #F2A900;
}
.close-notice .__wrap .txt-wrap {
	background-color: #ffffff;
	padding: 20px 10px 0;
}
.close-notice .__wrap .txt-wrap:last-child {
	padding-bottom: 20px;
}
.close-notice .close-box .txt-wrap p {
	margin: 0 auto;
	font-size: 12px;
	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: 12px;
	font-weight: 400;
	color: #3D3D3D;
}
.close-notice .close-box .txt-wrap p {
	max-width: 315px;
}

/* 약관 탭 메뉴 */
.__fs_body .select-wrap {
	position: relative;
}
.__fs_body .select-wrap .down-menu {
	position: relative;
	width: 200px;
	text-align: left;
	padding: 0.7rem 1rem;
	color: #555555;
	border: 1px solid #D5D5D5;
	margin-top: 10px;
}
.__fs_body .select-wrap .down-menu::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	border-top: 4px solid #555555;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
}
.__fs_body .select-wrap .opt-list {
	display: none;
	position: absolute;
	top: -66px;
	width: 200px;
	max-height: 320px;
	overflow-y: auto;
	display: none;
	border: 1px solid #D5D5D5;
	color: #555555;
	z-index: 103;
}
.__fs_body .select-wrap .opt-list.on {
	display: block;
}
.__fs_body .select-wrap .opt-list li {
	border-bottom: 1px solid #D5D5D5;
	background-color: #FFFFFF;
}
.__fs_body .select-wrap .opt-list li a {
	display: block;
	padding: 0.7rem 1rem;
}#popup.renew_popup .popup_body .inbox
 .__fs_body .select-wrap .opt-list li:last-child {
	 border: 0;
 }

@media screen and (max-width: 280px) {
	.stp-wrap .stp-img img {
		max-width: 280px;
	}
	.closeDayPopup .close-wrap {
		top: 180px;
		width: 260px;	
	}
}


/* 231031 cdb renew_popup */
#popup.renew_popup {max-width:595.2px; width:88.888%; margin:0 auto; top:110px; border-radius: 10px;}
#popup.renew_popup .popup_header {color:#A73439; padding-top: 2.692rem;}
#popup.renew_popup .popup_header .tit {font-size:2.307rem; line-height: 1.333; font-family: 'Playfair Display', serif;}
#popup.renew_popup .popup_header .txt {font-size:1.384rem; line-height: 1.444; font-weight: bold;}
#popup.renew_popup .popup_body .inbox {padding: 1.384rem 1.538rem 3.076rem;}
#popup.renew_popup .popup_body .inbox > p {margin:0; margin-bottom:2.384rem; font-size: 1.076rem; line-height: 1.428; color: #666;}
#popup.renew_popup .popup_body .flex_box {display: flex; gap: 10px; text-align: center;}
#popup.renew_popup .popup_body .flex_box > * {width:calc((100% - 10px) / 2); border:none; border-radius: 10px; padding: 2.153rem 0 2rem; text-align: center;}
#popup.renew_popup .popup_body .flex_box > button {background-color: #FFDD46; color:#3C1E1E;}
#popup.renew_popup .popup_body .flex_box > a {background-color: #A73439; color:#fff;}
#popup.renew_popup .popup_body .flex_box > * img {display: block; max-width: 97px; width: 35.925%; margin: 0 auto 14px;}
#popup.renew_popup .popup_body .flex_box > * strong {font-weight:bold; line-height: 1.437;}
#popup.renew_popup .popup_body .flex_box > * .right {line-height: 1.076;}
#popup.renew_popup .popup_body .flex_box > button .right {color:rgba(60,30,30,.6);}
#popup.renew_popup .popup_body .flex_box > a .right {color:rgba(255,255,255,.6); font-family: 'Montserrat', sans-serif;}
#popup.renew_popup .popup_set {border:none;}
#popup.renew_popup .popup_btn_wrap {background-color:#000; color:#fff;}
#popup.renew_popup .popup_btn_wrap button {font-size: 1.076rem;}


/* cdb */
/* custom common */
.custom-popup {font-family: 'NanumSquare','Noto Sans KR';}
.custom-popup .custom-bg {position: relative; min-height:456px; background-repeat: no-repeat; width: 100%; height: 100%; background-repeat: no-repeat; background-position: top center; background-size: cover;}
.custom-popup .ev-text-box {background-color: #fff; border-radius: 10px;}
.custom-popup .ev-text-box .right-txt-box .del {font-size: clamp(.5rem, 8px, 2.5vw); line-height:1; font-family: 'NanumSquare','Noto Sans KR'; font-weight: bold; white-space: nowrap;}
.custom-popup .ev-text-box .right-txt-box > strong {font-size: clamp(.5rem, 12px, 3.777vw); line-height:1;font-family: 'Spartan', sans-serif; font-weight: bold; white-space: nowrap;}
.custom-popup .right-txt-box > strong > span {font-size:8px; font-family: 'NanumSquare','Noto Sans KR'; font-weight: 900;vertical-align: middle;}
.custom-popup .ev-text-box .left-txt-box {gap: 5px;}
.custom-popup .ev-product-name {line-height: 1; font-size: clamp(.5rem, 10px, 2.6vw);}
.custom-popup .ev-product-name > .product-name {margin-left:4px; /* font-weight: bold; */}
.custom-popup .ev-num {line-height: 1;}
.custom-popup .ev-num > span {font-size: clamp(.5rem, 10px, 2.777vw); line-height: 1;}
.custom-popup .ev-text-box .right-txt-box {display: flex; flex-direction: column; align-items: flex-end;}
.custom-popup .bt-text-box {position: absolute; bottom: 30px;}
.custom-popup .bt-text-box.center {left: 50%; transform: translateX(-50%); width:90%; justify-content: center;}
.custom-popup .bt-text-box .fix-txt {font-size: clamp(.5rem, 8px, 2.777vw); margin:0; font-weight:300; letter-spacing: -.5px; font-family: 'GmarketSans';}
.custom-popup .ev-text-box li p {font-family: 'NanumSquare','Noto Sans KR'; /* font-weight: bold; */}
.custom-popup .ev-text-box li .instructions {/* font-weight:bold; */}
.custom-popup .ev-text-box li .accent {font-weight: 900;}


/* custom1 - 8구 팝업 */
#custom1 .custom-bg {padding-top: 32.294%;}
#custom1 .ev-text-box {max-width:650px; width:91.549%; margin:0 auto; padding: 6.5px 12px; height: calc(100% - 13.084%);}
#custom1 .ev-text-box li {display: flex; justify-content: space-between; align-items: center; height:calc(100% / 8); border-bottom: 1px solid #ebebeb; position:relative;}
#custom1 .ev-text-box li:last-child {margin-bottom: 0; padding-bottom: 0; border-bottom: none;}
#custom1 .ev-text-box li ._txt-box {display: flex; justify-content: flex-start; align-items: center; gap: 0 2px;}
#custom1 .ev-text-box li p {margin: 0; line-height:1.2; max-width:205px; position:relative; top:1px;}
#custom1 .ev-text-box li .price-box {display: flex;	justify-content: flex-end; align-items: center;	gap: 0 3px;}
#custom1 .ev-text-box li del {line-height:1;}
#custom1 .ev-text-box li strong {font-size: clamp(.5rem, 12px, 3.777vw); white-space: nowrap;}
#custom1 .ev-num {position: relative; top: -2px;}

#custom1 .ev-text-box > li .left-txt-box .ev-num {position: absolute; top: 50%; left: 0; transform: translateY(-50%);}
#custom1 .product-name {/* display:flex; */ margin-bottom:0; line-height: 1.3;}
#custom1 .num {font-weight:bold;}
#custom1 .right-txt-box {/* margin-left:15px; */ align-items: center;}
#custom1 .left-txt-box {padding-left:20px; flex-direction: column; gap:0; align-items: flex-start;}
#custom1 .ev-product-name {align-items: flex-start;}
#custom1 .ev-product-name > .instructions {min-height:auto;}


/* custom2 - 4구 팝업 */
#custom2 .custom-bg {/* padding-top: 63%; */}
#custom2 .ev-text-box {flex-wrap: wrap; max-width:650px; width:91.549%; margin:0 auto; position:relative; top:43%;}
#custom2 .ev-text-box:before {content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:calc(100% - 40px); height:1px; background-color:#ebebeb;}
#custom2 .ev-text-box:after {content:""; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:1px; height:calc(100% - 40px); background-color:#ebebeb;}
#custom2 .ev-text-box > li {width:calc(100% / 2); position:relative; padding-top:32.3%;}
#custom2 .ev-text-box > li > .inbox {position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); width:100%; padding:10px;}
#custom2 .ev-product-name > .product-name {margin:0; text-align: center;}
#custom2 .ev-product-name > .product-name > span {display: block;}
#custom2 .product-name > span:not(.instructions) {margin-bottom:5px;}
#custom2 .product-name > .instructions {margin-top:3px;}
#custom2 .ev-text-box .right-txt-box {flex-direction: row; justify-content: center; align-items: center; gap: 5px; margin-top: 6px;}
#custom2 .ev-text-box .right-txt-box .del {margin-top: 2px;}
#custom2 .ev-product-name {flex-direction: column; text-align: center;}
#custom2 .ev-text-box li p.accent,
#custom2 .ev-text-box li p.instructions {margin:0;}
#custom2 .ev-text-box li p.accent {margin-bottom: 3px;}
#custom2 .ev-text-box li p.instructions {margin-top: 3px;}

/* custom3,custom5 - 커스텀 팝업 */
#custom3 .ev-text-box,
#custom5 .ev-text-box {width:91.549%; max-width:650px; margin:0 auto; position: relative; top: 41.237%; padding:10px; height: calc(100% - 41.237% - 10.309%); box-sizing: border-box; display: flex; flex-direction: column;}
#custom3 .ev-text-box > li,
#custom5 .ev-text-box > li {border-bottom:1px solid #ebebeb; flex:1; position:relative;}
#custom3 .ev-text-box > li:last-child,
#custom5 .ev-text-box > li:last-child {border-bottom:none;}
#custom3 .ev-text-box > li .inbox,
#custom5 .ev-text-box > li .inbox {position:absolute; top:50%; transform:translateY(-50%); width:100%; justify-content: space-between; align-items: center;}
#custom3 .product-name,
#custom5 .product-name {/* display:flex; align-items: center; */ margin:0; position: relative; line-height: 1.3;}
#custom3 .ev-text-box .left-txt-box,
#custom5 .ev-text-box .left-txt-box {/* gap:3px; */ max-width:235px;}
#custom3 .ev-num,
#custom5 .ev-num {display:flex; align-items: center;}


#custom3 .ev-text-box > li .left-txt-box .ev-num,
#custom5 .ev-text-box > li .left-txt-box .ev-num {position: absolute; top: 50%; left: 0; transform: translateY(-50%);}
#custom3 .num,
#custom5 .num {font-weight:bold;}
#custom3 .right-txt-box,
#custom5 .right-txt-box {margin-left:15px; align-items: center;}
#custom3 .left-txt-box,
#custom5 .left-txt-box {padding-left:20px; flex-direction: column; gap:0; align-items: flex-start;}
#custom3 .ev-product-name,
#custom5 .ev-product-name {align-items: center;}
#custom3 .ev-text-box li p.accent,
#custom3 .ev-text-box li p.instructions,
#custom5 .ev-text-box li p.accent,
#custom5 .ev-text-box li p.instructions {margin:0; min-height:auto;}


/* custom4 - 1구 팝업 */
#custom4 .custom-bg {padding-top: 62%;}
#custom4 .ev-text-box {max-width:650px; width:91.549%; margin:0 auto; border-radius: 10px; background-color:#fff; position:relative; height:79.5%;}
#custom4 .ev-text-box > li {position:relative; height:100%;}
#custom4 .ev-text-box > li > .inbox {position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); width:90%;}
#custom4 .ev-product-name > .product-name {margin:0; text-align: center; font-size: clamp(.5rem, 12px, 3.677vw); line-height: 1.2;}
#custom4 .ev-product-name > .product-name > span {display: block;}
#custom4 .ev-text-box .right-txt-box {flex-direction: row; justify-content: center; align-items: center; gap: 5px; margin-top: 30px;}
#custom4 .ev-text-box .right-txt-box .del {margin-top: 2px;     font-size: clamp(.5rem, 12px, 2.5vw);}
#custom4 .ev-text-box .right-txt-box > strong {font-size: clamp(.5rem, 16px, 5.777vw);}
#custom4 .right-txt-box > strong > span {font-size:10px;}
#custom4 .ev-text-box li p.accent,
#custom4 .ev-text-box li p.instructions {margin:0;}
#custom4 .ev-product-name {flex-direction: column;}


#custom4 .ev-product-name {line-height: 1; font-size: clamp(.5rem, 12px, 3.677vw);}