/*
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: 333px;
	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: 334px;
}
.stp-wrap .stp-img a {
	display: block;
	height: 100%;
}
.stp-wrap .stp-img img {
	display: block;
	width: 100%;
	max-width: 334px;
	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 .close-btn{
	position:absolute;
	right: 0;
	bottom: -50px;
	background-color:#000;
	color:#333;
	font-size:15px;
	border-radius: 5px;
}
.notice-popup .noticeP-wrap .close-btn button{
	font-size: 12px;
	padding: 5px 10px;
	color: #fff;
}

/* 휴진 팝업 */
.closeDayPopup {
	position: relative;
}
.closeDayPopup .close-wrap {
	position: absolute;
	overflow: hidden;
	top: 219px;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 150px;
}
.closeDayPopup .close-swiper {
	position: relative;
	width: 100%;
	height: 100%;
}
.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 .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 .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;
}

/* 공지 사항 휴진 팝업 안내 게시글 */
.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 .__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;}
