.mobile_br {
	display: none;
}
/* 이벤트 퀵 */
#quick_event {
	position: fixed;
	bottom: 100px;
	left: 40px;
	z-index: 10;
	animation: quick_bounce 1.6s infinite;
	width: 150px;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
#quick_event.show {
	display: block; /* 보이도록 설정 */
	opacity: 1;     /* 불투명 상태 */
}
#quick_event .quick_close_btn {
	position: absolute;
	content: "";
	right: 0;
	top: 20px;
	width: 50px;
	height: 50px;
	cursor: pointer;
}
@keyframes quick_bounce {
	0%,
	100%,
	20%,
	53%,
	80% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
/* 퀵 유튜브 */
#quick_youtube {
	position: fixed;
	bottom: 80px;
	right: 20px;
	z-index: 10;
	width: 10vw;
	min-width: 100px;
	display: none;
	transition: opacity 0.5s ease-in-out;
}

/* 퀵바 */
#main_quick_bar {
	background-color: rgba(32, 32, 32, 0.9);
	width: 100%;
	height: 74px;
	position: fixed;
	bottom: 0;
	z-index: 99;
	box-sizing: border-box;
}
#main_quick_bar .quick_container {
	width: 80%;
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#main_quick_bar .tit {
	word-break: keep-all;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	display: inline-block;
	width: 10%;
	margin-right: 1.5%;
}
#main_quick_bar .quick_form {
	width: 90%;
}
#main_quick_bar .quick_form form {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#main_quick_bar .quick_form select {
	-webkit-appearance:none
	-moz-appearance:none;
	appearance:none;
}
#main_quick_bar .quick_form select::-ms-expand{
	display:none;/*for IE10,11*/
}
#main_quick_bar .quick_form select {
	background-image:url('/images/middle-aged/utils/quick_select_arrow.png');
	background-repeat: no-repeat;
	background-position: right 10px center;
}
#main_quick_bar .quick_form .input_box {
	display: flex;
	gap: 0 9px;
}
#main_quick_bar .quick_form .input_box input,
#main_quick_bar .quick_form .input_box select {
	width: 166px;
	height: 40px;
	box-sizing: border-box;
	padding: 0;
	padding-left: 15px;
	color: #707070;
	font-size: 16px;
	font-weight: 500;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 0;
	border-radius: 0;
}
#main_quick_bar .quick_form .radios {
	display: flex;
	flex-wrap: wrap;
	width: 24%;
}
#main_quick_bar .quick_form .radios > div {
	margin-right: 15px;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
#main_quick_bar .quick_form .radios > div label {
	cursor: pointer;
}
#main_quick_bar .quick_form .radios a {
	color: #fff;
}
#main_quick_bar .quick_form button {
	width: 214px;
	height: 50px;
	display: flex;
	font-size: 22px;
	font-weight: 400;
	color: #fff;
	background-color: #c29d87;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
	align-items: center;
	padding-bottom: 4px;
}
#main_quick_bar .quick_form button::after {
	position: absolute;
	content: "";
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(
	/images/middle-aged/main/quick_counsel_btn_arrow.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 10px;
	height: 16px;
}

/* 퀵네비 */
#quick_nav .pc_quick {
	position: fixed;
	right: 0;
	top: calc(50% + 22px);
	transform: translateY(-50%);
	width: 90px;
	box-sizing: border-box;
	z-index: 50;
}
#quick_nav .pc_quick ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1px solid #e4e4e4;
	overflow: hidden;
	border-right: 0;
	border-bottom: 0;
	border-radius: 5px 0 0 0;
}
#quick_nav .pc_quick ul li {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	text-align: center;
	justify-content: center;
	border-bottom: 1px solid #e4e4e4;
	transition: all 0.3s ease;
}
#quick_nav .pc_quick ul li.kakao {
	background-color: #eedd40;
}
#quick_nav .pc_quick ul li.kakao:hover {
	background-color: #eedd40;
}
#quick_nav .pc_quick ul li:hover {
	background-color: #f4f4f4;
}
#quick_nav .pc_quick ul li a {
	padding: 18px 0;
}
#quick_nav .pc_quick ul li img {
	width: 25px;
}
#quick_nav .pc_quick ul li p {
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
	margin-top: 2px;
}
#quick_nav .pc_quick .top_btn {
	background-color: #33324a;
	width: 100%;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
	color: #fff;
	padding: 8px 0;
	cursor: pointer;
	border-radius: 0 0 0 5px;
	position: relative; /* 삼각형 위치 조정을 위한 상대 위치 */
}
#quick_nav .pc_quick .top_btn::after {
	content: "";
	position: absolute;
	right: 20px; /* 버튼 내부에서 삼각형 위치 조정 */
	top: 50%;
	transform: translateY(-50%);
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 6px solid #ffffff; /* 하얀색 위쪽 삼각형 */
}
#quick_nav .mobile_quick {
	display: none;
}
#quick_nav .mobile_quick {
	display: none;
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 80px;
	z-index: 1000;
	background-color: #fff;
}
#quick_nav .mobile_quick ul {
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	border-top: 1px solid #dadee2;
}
#quick_nav .mobile_quick ul li a {
	display: inline-block;
	height: 100%;
}
#quick_nav .mobile_quick ul li a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pc_quick_pop {
	height: 618px;
	display: none;
	position: fixed;
	right: 100px;
	top: calc(50% + 62px);
	transform: translateY(-50%);
	box-sizing: border-box;
	z-index: 50;
	background-color: #ececec;
	letter-spacing: -0.5px;
}
.pc_quick_pop .quick_pop_close {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	padding: 16px;
	z-index: 10;
}
.pc_quick_pop .cost_content {
	position: relative;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}
.pc_quick_pop .title {
	font-size: 36px;
	color: #171717;
	font-weight: 400;
	margin-bottom: 20px;
	line-height: 1;
}
.pc_quick_pop .desc {
	color:#828282;
	font-size: 16px;
	line-height: 1.4;
}
.pc_quick_pop .form_area {
	margin:25px 16px;
	padding:6px;
	background:#fff;
	text-align: left;
}
.pc_quick_pop .form_area table {
	padding:40px 30px;
	border:1px solid #ddd;
	width: 420px;
	margin: 0 auto;
}
.pc_quick_pop .form_area table tbody {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 0;
}
.pc_quick_pop .form_area table tr {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	grid-template: 0 10px;
}
.pc_quick_pop .form_area table th {
	width: 20%;
	font-size: 15px;
	color:#393939;
	font-weight: 600;
}
.pc_quick_pop .form_area table td {
	width: calc(80% - 10px);
}
.pc_quick_pop .form_area table td input,
.pc_quick_pop .form_area table td select {
	width: 100%;
	padding:6px;
	border:1px solid #ddd;
	outline:0;
	box-sizing: border-box;
	cursor: pointer;
	font-size: 16px;
}
.pc_quick_pop .form_area table .phone {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.pc_quick_pop .form_area table .phone input {
	width: calc(100% / 3 - 8px);
}
.pc_quick_pop .chk_area {
	font-size: 14px;
	color: #828282;
}
.pc_quick_pop .chk_area label {
	cursor: pointer;
}
.pc_quick_pop .chk_area a {
	color: #000;
	font-weight: 500;
}
.pc_quick_pop .send {
	margin-top: 30px;
	font-size: 23px;
	color:#fff;
	font-weight: 400;
	padding: 6px 0 8px;
	width: 70%;
	cursor: pointer;
	background-color: #000;
}

#quick_kakao_pop {
	background-color: #f9e000;
	height: 618px;
	width: 464px;
}
#quick_kakao_pop .desc {
	margin-top: 16px;
	color:#74694c;
}
#quick_kakao_pop .kakao_content {
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
#quick_kakao_pop .kakao_content .img {
	position: relative;
	width: 50%;
	left:55%;
	transform: translateX(-50%);
}
#quick_kakao_pop .form_area {
	margin:16px;
	padding:6px;
	background:transparent;
}
#quick_kakao_pop  .form_area table {
	padding:0 20px;
	border:0;
	width: 380px;
	margin: 0 auto;
}
#quick_kakao_pop .chk_area {
	width: 60%;
	margin: 0 auto;
	text-align: left;
}

@media (max-width: 1440px){
	#quick_nav .pc_quick {
		width: 74px;
	}
	#quick_nav .pc_quick ul li a {
		padding: 10px 0;
	}
	.pc_quick_pop {
		height: 558px;
		top: calc(50% + 80px);
	}
	.pc_quick_pop .cost_content {
		padding: 50px 0;
		text-align: center;
	}
	
	#quick_kakao_pop {
		height: 558px;
	}
	#main_quick_bar .quick_container {
		width: 84%;
	}
	#main_quick_bar .tit {
		word-break: keep-all;
		margin-right: 1%;
		width: 15%;
	}
	#main_quick_bar .quick_form {
		width: 85%;
	}
	#main_quick_bar .quick_form .input_box input,
	#main_quick_bar .quick_form .input_box select {
		width: 120px;
		padding-left: 6px;
		font-size: 16px;
	}
	#main_quick_bar .quick_form .radios {
		width: 30%;
	}
	#main_quick_bar .quick_form button {
		width: 180px;
		padding-left: 20px;
		font-size: 18px;
	}
	#main_quick_bar .quick_form button::after {
		right: 20px;
	}
	#quick_nav .pc_quick .top_btn::after {
		right: 10px; /* 버튼 내부에서 삼각형 위치 조정 */
		
	}
}
@media (max-width: 1200px) {
	.mobile_br {
		display: block;
	}
	#quick_event {
		display: none !important;
	}
	#quick_nav .pc_quick {
		display: none;
	}
	#quick_nav .mobile_quick {
		display: block;
	}
	#quick_youtube {
		display: block;
	}
	#main_quick_bar {
		display: none;
	}
	.quick_pop_bg {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		background-color: rgba(0,0,0,0.6);
		width: 100%;
		height: 100%;
		z-index: 1000;
	}
	.pc_quick_pop {
		left: 50%;
		top: calc(50%);
		transform: translate(-50%, -50%);
		width: 90%;
		z-index: 1001;
		max-width: 400px;
		height: 532px;
	}
	.pc_quick_pop .quick_pop_close {
		position: absolute;
		right: 0;
		top: 0;
		cursor: pointer;
		padding: 16px;
		width: 20px;
		z-index: 10;
	}
	.pc_quick_pop .cost_content {
		padding: 30px 0;
		text-align: center;
	}
	.pc_quick_pop .title {
		font-size: 26px;
		margin-bottom: 10px;
	}	
	.pc_quick_pop .chk_area {
		font-size: 16px;
	}
	.pc_quick_pop .desc {
		font-size: 18px;
	}
	.pc_quick_pop .form_area {
		margin:15px 16px;
		padding:4px;
		background:#fff;
		text-align: left;
		box-sizing: boder-box;
	}
	.pc_quick_pop .form_area table {
		padding:20px 10px;
		width: 100%;
	}
	.pc_quick_pop .form_area table tbody {
		display: flex;
		flex-wrap: wrap;
		gap: 5px 0;
	}
	.pc_quick_pop .form_area table tr {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 14px;
	}
	.pc_quick_pop .form_area table th {
		width: 25%;
		font-size: 15px;
		color:#393939;
		font-weight: 600;
	}
	.pc_quick_pop .form_area table td {
		width: calc(75% - 10px);
	}
	.pc_quick_pop .form_area table td select {
		border-radius: 30px;
	}
	.pc_quick_pop .form_area table td input,
	.pc_quick_pop .form_area table td select {
		padding:4px !important;
		font-size: 14px;
		border-radius: 0;
		appearance: none; /* 기본 스타일 제거 */
		-webkit-appearance: none; /* Safari용 */
		-moz-appearance: none; /* Firefox용 */
	}
	.pc_quick_pop .form_area table td select {
		background:url('/images/middle-aged/utils/select_arrow.png') no-repeat right 6px center;
		background-size: 12px;
		color: #333;
		background-color: #fff;
	}
	.pc_quick_pop .form_area table .phone input {
		width: calc(100% / 3 - 8px);
	}
	
	.pc_quick_pop .send {
		margin-top: 20px;
		font-size: 20px;
		
	}
	
	#quick_kakao_pop .desc {
		margin-top: 16px;
		color:#74694c;
		word-break: keep-all;
	}
	#quick_kakao_pop .kakao_content {
		padding: 30px 0 40px;
		width: 100%;
	}
	#quick_kakao_pop .kakao_content .img {
		width: 40%;
	}
	#quick_kakao_pop .form_area {
		margin:8px;
		padding:6px;
	}
	#quick_kakao_pop .form_area table {
		width: 100%;
	}
	
	#quick_kakao_pop .chk_area {
		width: 80%;
		margin: 16px auto 0;
		text-align: left;
	}
}
@media (max-width: 768px) {
	#quick_nav .pc_quick {
		display: none;
	}
	.pc_quick_pop {
		left: 50%;
		top: calc(50% + 20px);
		transform: translate(-50%, -50%);
		width: 370px;
		height: 492.8px;
	}
	#quick_kakao_pop {
		width: 370px;
		height: 492.8px;
	}
	#quick_event {
		display: none;
	}
	#main_info .map_video_pop .map_video_con .map_video_close {
		position: absolute;
		right: -16px;
		top: -40px;
		padding: 10px;
		cursor: pointer;
	}
	#main_info .map_video_pop .map_video_con .map_video_close svg {
		width: 16px;
		height: 16px;
	}
	/* 퀵 유튜브 */
	#quick_youtube {
		bottom: 90px;
		right: 10px;
		min-width: 80px;
	}
	#main_info .map_video_pop .map_video_con {
		width: 92%;
	}
	#quick_nav .mobile_quick {
		height: 60px;
	}
}
