@media ( max-width : 1023px) {
	.topHeader {
		position: absolute;
	}
}

#main {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 50px;
    background-color: #f4f4f4;
    padding-bottom: 100px;
    align-items: center;
}

.main_area {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 40px;
}
.main_area > div {
	min-width: 30%;
}
/* 공통 */
.list_title {
	border-bottom: 1px solid #333;
	width: 100%;
}
.list_title h2 {
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 12px;
}
.checks {
	padding-top: 10px; 
}
.checks input {
	margin-right: 4px;
}
.checks label {
	color: #fff;
}
.reserve_input::placeholder,
.person_info input::placeholder {
	color: #eee;
}

/* 상단 배너 */
.banner_wrap {
	background-color: #2677BB;
	filter: grayscale(0.75);
}
.banner_list {
	height: 100%;
	min-height: 180px;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
}
.banner_list .banner_item {
	max-width: 1200px;
}
.banner_list .banner_item a {
	width: 100%;
	height: 100%;
}
.banner_list .banner_header {
	display: flex;
	justify-content: space-between;
	padding-top: 5px;
}
.banner_list .banner_header > div {
	display: flex;
	align-items: center;
}
.banner_list .banner_pagination {
	position: relative;
	top: 0;
	margin-right: 10px;
}
.banner_list .banner_pagination span {
	background: #fff;
	opacity: 0.3;
}
.banner_list .banner_pagination .banner_bullet_active {
	opacity: 1;
}
.banner_list .banner_header .banner_header_right input {
	margin-right: 5px;
}
.banner_list .banner_header .banner_header_right label {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
.banner_list .banner_header .banner_header_right button {
	font-size: 0;
	width: 12px; 
	height: 12px; 
	background-image: url(/styles/assets/icon/close.png); 
	background-repeat: no-repeat; 
	background-size: contain; 
	border: 0; 
	background-color: transparent;
	filter: invert();
	margin-left: 10px;
	cursor: pointer;
}
.banner_list .banner_item a {
	display: flex;
	flex-direction: column;
}
.banner_list .banner_item a h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	padding-top: 10px;
	line-height: 26px;
}
.banner_list .banner_item a span {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	margin: 8px 0px;
	line-height: 22px;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
.banner_pause,
.community_banner_pause, 
.slide_banner_pause {
	display: inline-block;
	position: relative;
	cursor: pointer;
    width: 7px;
    height: 11px;
    background-image: url(/styles/assets/icon/pause.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 10;
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(144deg) brightness(105%) contrast(101%);
}
.banner_play,
.community_banner_play,
.slide_banner_play {
	display: inline-block;
	position: relative;
	cursor: pointer;
    width: 7px;
    height: 9px;
    background-image: url(/styles/assets/icon/play-cropped.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 10;
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(144deg) brightness(105%) contrast(101%);
}

/* 팝업 */
.popup_wrap {
	display: flex;
	flex-direction: column;
	position: absolute;
	z-index: 9999;
}
.popup_wrap > a,
.popup_wrap > div {
	position: relative;
	width: 100%;
}
.popup_wrap img {
	width: 100%;
}
.popup_wrap .popup_mobile {
	display: none;
}
.popup_wrap .popup_footer {
	background-color: #eee;
	padding: 6px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.popup_wrap .popup_footer input {
	margin-right: 5px;
}
.popup_wrap .popup_footer label {
	font-size: 14px;
	font-weight: 500;
}
.popup_wrap .popup_footer button.popup_close {
	font-size: 0;
	width: 12px; 
	height: 12px; 
	background-image: url(/styles/assets/icon/close.png); 
	background-repeat: no-repeat; 
	background-size: contain; 
	border: 0; 
	background-color: transparent;
	margin-left: 10px;
	cursor: pointer;
}

/* 메인 비주얼 */
.main_visual {
	width: 100%;
	height: 655px;
}
.main_visual_carousel {
	width: 100%;
	position: relative;
	height: 100%;
}
.main_visual_carousel .main_visual_image {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.main_visual_carousel .main_visual_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main_visual_carousel .main_visual_contents {
	position: absolute;
	width: 100%;
	height: 100%;
	max-width: 1200px;
	z-index: 2;
	top: 0;
	padding: 0 20px;
}
.main_visual_carousel .main_visual_contents > div {
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
}
.main_visual_carousel .main_visual_swiper_prev,
.main_visual_carousel .main_visual_swiper_next {
	color: #fff;
}
.main_visual_carousel .main_visual_swiper_prev {
	left: 2%;
}
.main_visual_carousel .main_visual_swiper_next {
	right: 2%;
}
.main_swiper_pagination_area {
	position: relative;
	bottom: 30px;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2677bb;
	border-radius: 30px;
	padding: 3px 8px 2px;
	z-index: 2;
	margin: auto;
}
.main_swiper_pagination_area i {
	color: #fff;
	opacity: 0.7;
	z-index: 1;
	position: relative;
	cursor: pointer;
}
.main_swiper_pagination_area .main_swiper_pagination {
	display: flex;
	width: auto;
	position: relative;
	bottom: 1px;
}

.main_swiper_pagination .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.6;
}
.main_swiper_pagination .swiper-pagination-bullet.main_swiper_bullet_active {
	background: #fff;
	opacity: 1;
}
.main_swiper_pagination .main_swiper_button {
	display: flex;
	align-items: center;
}


/* 커뮤니티 배너 */
.community_banner {
	flex-shrink: 0;
	height: 300px;
	position: relative;
	border-radius: 16px;
	aspect-ratio: 8 / 5;
}
.community_banner .community_banner_image {
	height: 100%;
	display: block;
	outline-offset: -3px;
	border-radius: 16px;
}
.community_banner .community_banner_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.community_banner_footer,
.slide_banner_footer {
	display: flex;
	position: relative;
	bottom: 35px;
	float: right;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	width: fit-content;
	z-index: 2;
	padding: 2px 8px 3px;
	border-radius: 20px;
	margin-right: 15px;
	background: #2677bb;
}
.community_banner_footer .community_banner_button,
.slide_banner_footer .slide_banner_button {
	display: flex;
	align-items: center;
}
.community_banner .community_banner_footer .swiper-pagination,
.slide_banner .slide_banner_footer .swiper-pagination {
	position: relative;
	width: auto;
	height: auto;
	padding: 0px;
	bottom: 0px;
}
.community_banner .community_banner_footer .swiper-pagination-bullet,
.slide_banner .slide_banner_footer .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 0.6;
}
.community_banner .community_banner_footer .swiper-pagination-bullet-active,
.slide_banner .slide_banner_footer .swiper-pagination-bullet-active {
	opacity: 1;
}

/* 슬라이드 배너 */
.slide_banner {
	width: 100%;
	height: 180px;
	position: relative;
    border-radius: 16px;
}
.slide_banner button {
	border: none;
}
.slide_banner .slide_banner_image {
	position: relative;
	z-index: 1;
	height: 100%;
	display: block;
	outline-offset: -3px;
	border-radius: 16px;
}
.slide_banner .slide_banner_image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.slide_banner .slide_banner_swiper_prev, 
.slide_banner .slide_banner_swiper_next {
	color: #fff;
}

/* 바로가기 메뉴 */
.quick_menu {
	max-width: 1200px;
	width: 100%;
	gap: 10px;
	display: flex;
	flex-direction: column;
	margin: 0px;
}
.quick_menu .quick_menu_wrap {
	display: flex;
}
.quick_menu .quick_menu_wrap .quick_menu_item {
	flex: 1;
	flex-basis: 150px;
	width: auto;
}
.quick_menu .quick_menu_wrap .quick_menu_item:not(:last-child) {
	margin-right: 20px;
}
.quick_menu .quick_menu_wrap .quick_menu_item > a {
	background-color: #fff;
	border-radius: 16px;
	text-align: center;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	padding: 24px 20px 20px;
	height: 130px;
}
.quick_menu .quick_menu_wrap .quick_menu_item h2 {
	display: inline-block;
	color: #333;
	font-weight: 700;
}
.quick_menu .quick_menu_wrap .quick_menu_item .quick_menu_icon {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}
.quick_menu .quick_menu_scrollbar {
	width: 100%;
	position: relative;
}

/* 문의 */
.contact {
	width: 80%;
}
.contact_area {
	display: flex;
	align-items: center;
	padding: 15px 0;
	gap: 20px;
}
.contact_area .call_icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
}
.contact_area .call_icon i {
	width: 50%;
    height: 50%;
    display: inline-block;
    background-image: url(/styles/assets/icon/call2.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(120deg) brightness(103%) contrast(104%);
}
.contact_content {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-grow: 1;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.contact_content * {
	color: #333;
	line-height: 24px;
}
.contact_content h3 {
	font-size: 18px;
	font-weight: 700;
}
.contact_content p {
	font-size: 18px;
	font-weight: 600;
	flex-shrink: 0;
}
.contact_content p.highlight {
	font-size: 24px;
	font-weight: 700;
}
.contact_content div {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 6px;
}
.contact_content div .contact_text {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
}

/* 게시글 */
.see_more_icon i {
	font-size: 20px;
}
.post_list > ul {
	display: none;
}
.post_list > ul.on {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
.board_type1, .board_type2, .board_type4 {
	flex-grow: 1;
}
.board_type1 .board_list {
	    display: flex;
    justify-content: center;
    align-items: center;
}
.board_type1 .board_list > a {
	    display: inline-block;
    width: 40px;
    text-align: center;
	color: #333;
}
.board_type1 .board_list > ul {
	display: flex;
	    flex: 1;
}
.board_type1 .board_list > ul li.board_item {
	flex: 1;
	border-radius: 16px 16px 0 0;
	text-align: center;
	padding: 16px 0 10px;
	font-size: 15px;
	letter-spacing: 0;
	font-weight: 700;
	cursor: pointer;
	height: 44px;
	color: #333;
}
.board_type1 .board_list > ul li.board_item.on,
.board_type1 .board_list > ul li.board_item.on a {
	background-color: #fff;
	color: #2677bb;
}
.board_type1 .post_list > ul {
	background-color: #fff;
	padding: 20px 40px;
	border-radius: 16px;
	width: auto;
}
.board_type1 .post_list > ul:first-child {
	border-radius: 0 16px 16px 16px;
}
.board_type1 .post_list > ul:last-child {
	border-radius: 16px 0 16px 16px;
}
.board_type1 .post_list > ul li {
	position: relative;
	width: 100%;
}
.board_type1 .post_list > ul li a {
	display: flex;
	justify-content: space-between;
}
.board_type1 .post_list > ul li a .post_title {
	font-size: 15px;
	color: #666;
	letter-spacing: 0;
	line-height: 43px;
	font-weight: 500;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.board_type1 .post_list > ul li a .post_content {
	display: none;
}
.board_type1 .post_list > ul li a .post_date {
	font-size: 15px;
    color: #666;
    letter-spacing: 0;
    line-height: 43px;
    font-weight: 500;
    margin-left: 30px;
    min-width: 90px;
    text-align: end;
}

.board_type2 .board_list {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #333;
	line-height: 1.5rem;
	padding-bottom: 12px;
}
.board_type2 .board_list > ul {
	display: flex;
}
.board_type2 .board_list > ul li.board_item {
	margin: 0 20px;
	font-size: 16px;
	font-weight: 500;
}
.board_type2 .board_list > ul li.board_item.on {
	font-size: 18px;
	font-weight: 700;
}
.board_type2 .board_list a.see_more {
	display: inline-flex;
}
.board_type2 .board_list a.see_more i {
	display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(/styles/assets/icon/plus.svg);
    filter: invert(54%) sepia(22%) saturate(2626%) hue-rotate(28deg) brightness(94%) contrast(95%) !important;
}
.board_type2 .post_list {
	padding-top: 20px;
}
.board_type2 .post_list > ul li {
	padding: 24px 30px 22px;
	background-color: #fff;
	border-radius: 16px;
	flex: 1;
	height: auto;
}
.board_type2 .post_list > ul.on {
	flex-direction: row;
	gap: 30px;
}
.board_type2 .post_list > ul li a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.board_type2 .post_list > ul li a .post_title {
    width: 100%;
	font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    color: #333333;
	display: -webkit-box;
	word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.board_type2 .post_list > ul li a .post_content {
	width: 100%;
	font-size: 15px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 0;
	color: #333333;
	margin: 8px 0;
	display: -webkit-box;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.board_type2 .post_list > ul li a .post_date {
	font-size: 14px;
	color: #666666;
	letter-spacing: 0;
	line-height: 20px;
	font-weight: 400;
}

.board_type3 .board_list {
	display: flex;
	align-items: center;
	padding: 30px 40px;
    background: #FFFFFF;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    width: 100%;
    gap: 35px;
}
.board_type3 .board_list .board_item {
	flex-shrink: 0;
	font-weight: 700;
}
.board_type3 .post_list {
	flex-grow: 1;
	margin: 0;
	height: 20px;
	line-height: 20px;
}
.board_type3 .post_list ul {
	display: block;
}
.board_type3 .post_list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.board_type3 .post_list .post_title {
	display: -webkit-box;
	word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.board_type3 .post_list .post_content,
.board_type4 .post_list .post_content {
	display: none;
}
.board_type3 .post_list .post_date {
	flex-shrink: 0;
}
.board_type4 .board_item {
	font-size: 20px;
	font-weight: 700;
}
.board_type4 .board_list {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1.5rem;
	padding-bottom: 12px;
}
.board_type4 .post_list > ul {
	background-color: #fff;
	padding: 15px 25px;
	border-radius: 16px;
	width: auto;
}
.board_type4 .post_list > ul li a {
	display: flex;
	justify-content: space-between;
}
.board_type4 .post_list > ul li a .post_title {
	font-size: 15px;
	color: #666;
	letter-spacing: 0;
	line-height: 30px;
	font-weight: 500;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.board_type4 .post_list > ul li a .post_date {
	font-size: 15px;
    color: #666;
    letter-spacing: 0;
    line-height: 30px;
    font-weight: 500;
    margin-left: 30px;
    min-width: 90px;
    text-align: end;
}

.social_network_wrap {
	display: flex;
	width: 100%;
}
.social_network_wrap .social_network_tab ul {
	display: flex;
	flex-direction: column;
}
.social_network_wrap .social_network_tab ul > li a {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	width: 136px;
	height: 119px;
	cursor: pointer;
}
.social_network_wrap .social_network_tab ul > li.on {
	background-color: #fff;
	border-radius: 16px 0 0 16px;
}
.social_network_wrap .social_network_tab ul > li h2 {
	font-size: 15px;
	color: #666;
	letter-spacing: 0;
	font-weight: 700;
	text-align: center;
}
.social_network_wrap .social_network_tab ul > li img {
	width: 32px;
	height: 32px;
}
.social_network_wrap .social_network_list {
	width: 100%;
}
.social_network_wrap .social_network_items {
	background-color: #fff;
	padding: 30px 40px;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.03);
	display: none;
	border-radius: 16px;
	height: 100%;
}
.social_network_wrap .social_network_items.on {
	display: flex;
	gap: 20px;
	flex-direction: column;
}
.social_network_wrap .social_network_items:first-child {
	border-top-left-radius: 0px;
}
.social_network_wrap .social_network_items .social_network_item_area {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.social_network_wrap .social_network_items h3 {
	font-size: 18px;
	color: #333;
	letter-spacing: 0;
	font-weight: 700;
}
.social_network_wrap .social_network_items ul {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.social_network_wrap .social_network_items ul > li p {
	font-size: 16px;
	color: #333;
	letter-spacing: 0;
	line-height: 24px;
	font-weight: 700;
	display: -webkit-box;
	word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.social_network_wrap .social_network_items .social_network_item {
	flex: 1;
	max-width: 300px;
}
.social_network_wrap .social_network_items .social_network_item a {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.social_network_wrap .social_network_items .social_network_item_image {
	width: 100%;
	height: 170px;
}
.social_network_wrap .social_network_items .social_network_item_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

/* 기본 목록 타이틀 */
.basic_list_title {
	display: flex;
	justify-content: space-between;
    align-items: center;
	border-bottom: 1px solid #333;
	padding-bottom: 12px;
}
.basic_list_title h2 {
	font-size: 20px;
	font-weight: 700;
}
.basic_list_title a.see_more {
	display: inline-flex;
}
a.see_more i {
	display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(/styles/assets/icon/plus.svg);
    filter: invert(40%) sepia(8%) saturate(7%) hue-rotate(359deg) brightness(95%) contrast(92%);
}

/* 대표홈페이지 메인 */
.main_swife { position: absolute; width: 100%; }
.main_swife .swife {position: relative;width: 100%;height: 655px;}
.main_swife .swife .swife_img { width: 100%; height: 100%; }
.main_swife .swife .swife_img img { width: 100%; height: 100%; object-fit: cover; }

.main_swife .swife .slogan { position: absolute; top: 240px; left: 0; right: 0; z-index: 1; margin: 0 auto; width: 1200px; }
.main_swife .swife .slogan .tit { margin-bottom: 16px; font-size: 40px; font-weight: 700; color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }
.main_swife .swife .slogan .txt { font-size: 22px; font-weight: 600; line-height: 32px; color: #fff; text-shadow: 0 0px 4px rgba(0, 0, 0, 1); }


.main_swife .swife .slogan2 { position: absolute; bottom: 20px; left: 0; right: 0; z-index: 1; margin: 0 auto; width: 1200px; }
.main_swife .swife .slogan2 .txt { font-size: 16px; font-weight: 300; line-height: 32px; color: #fff; text-shadow: 0 0px 4px rgba(0, 0, 0, 1); }


.main_swife .reserve_area {position: absolute;top: 60px;z-index: 3;width: 100%;}
.main_swife .reserve_area .reserve { display: flex; margin: 0 auto; width: 1200px; height: 100%; }
.main_swife .reserve_area .reserve .reserve_box { display: flex; flex-direction: column; justify-content: center; margin-left: auto; width: 660px; }

.main_swife .reserve_area .reserve .reserve_box .reserve_search { display: flex; align-items: center; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid #fff; }
.main_swife .reserve_area .reserve .reserve_box .reserve_search .reserve_circle { display: flex; justify-content: center; align-items: center; border-radius: 36px; width: 36px; height: 36px; background: #2677BB; }
.main_swife .reserve_area .reserve .reserve_box .reserve_search .reserve_circle img { width: 18px; height: 18px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_search span.reserve_tit { padding: 0 20px; min-width: 131px; font-size: 20px; font-weight: 700; color: #fff; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_search input.reserve_input { padding: 0 16px; width: 457px; height: 36px; border: none; font-size: 18px; background: none; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_search input.reserve_input:focus { border: none; background: none; color: #fff; outline: none; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_search button.reserve_btn { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; background: none; border: 0; cursor: pointer; -webkit-appearance: none; -moz-appearance: none; appearance: none; } 

.main_swife .reserve_area .reserve .reserve_box .sep_01{display:flex;flex-wrap:wrap;align-items: flex-start;}
.main_swife .reserve_area .reserve .reserve_box .reserve_num {flex: 1;display: flex;align-items: center;margin-bottom: 10px;padding-bottom: 12px;}
.main_swife .reserve_area .reserve .reserve_box .reserve_num .reserve_circle { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border-radius: 36px; background: #122131; opacity: 0.7; }
.main_swife .reserve_area .reserve .reserve_box .reserve_num .reserve_circle img { width: 18px; height: 18px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_num span.reserve_tit { padding: 0 20px; min-width: 131px; font-size: 20px; font-weight: 700; color: #fff; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_num span.reserve_txt { padding: 0 20px; font-size: 20px; font-weight: 700; color: #fff; } 

.main_swife .reserve_area .reserve .reserve_box .reserve_call {margin-top: -30px;flex: 1;display: flex;align-items: flex-start;margin-bottom: 36px;}
.main_swife .reserve_area .reserve .reserve_box .reserve_call .reserve_circle { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border-radius: 36px; background: #122131; opacity: 0.7; }
.main_swife .reserve_area .reserve .reserve_box .reserve_call .reserve_circle img { width: 18px; height: 18px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_tit { padding: 8px 20px; min-width: 131px; font-size: 20px; font-weight: 700; color: #fff; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_txt { padding: 2px 20px; font-size: 20px; line-height: 28px; font-weight: 700; color: #fff; } 

.main_swife .reserve_area .reserve .reserve_box .reserve_health {position: relative;flex: 1;display: flex;align-items: flex-start;z-index: 1;}
.main_swife .reserve_area .reserve .reserve_box .reserve_health .reserve_circle { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border-radius: 36px; background: #122131; opacity: 0.7; }
.main_swife .reserve_area .reserve .reserve_box .reserve_health .reserve_circle img { width: 18px; height: 18px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_health span.reserve_tit { padding: 8px 20px; min-width: 131px; font-size: 20px; font-weight: 700; color: #fff; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_health span.reserve_txt {padding: 0 0 0 20px;font-size: 20px;line-height: 28px;font-weight: 700;color: #fff;} 
/* 20260102 HSM 웹접근성 색 수정 */
.main_swife .reserve_area .reserve .reserve_box .reserve_health .btn_link{margin-top: 5px;display: flex; padding: 0 10px;height: 40px;border-radius:10px;justify-content: center;align-items: center;background: #0e88ed; transition:all .3s;}
.main_swife .reserve_area .reserve .reserve_box .reserve_health .btn_link span{display: block;font-size: 16px;font-weight: 700;color: #fff;padding-right: 30px;background: url(/styles/assets/img/arw_right01_white.png) no-repeat right center;}
.main_swife .reserve_area .reserve .reserve_box .reserve_health .btn_link:hover{background:#2893ed;}

.main_swife .reserve_area .reserve .reserve_box .reserve_info { display: flex; justify-content: space-around; padding: 36px 36px; width: 100%; border-radius: 16px; background: rgba(18, 34, 49, 0.7); }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .left { display: flex; flex-direction: column; width: fit-content; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .left img { width: auto; height: 48px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .left .tit { margin-top: 24px; font-size: 20px; font-weight: 700; color: #fff; }

.main_swife .reserve_area .reserve .reserve_box .reserve_info .right { display: flex; flex-direction: column; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .txt { margin-bottom: 16px; font-size: 16px; line-height: 24px; color: #fff; word-break: keep-all; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info { display: flex; gap: 8px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_name { width: 120px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_phone { width: 160px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_btn { display: flex; justify-content: center; align-items: center; width: 120px; border-radius: 8px; border: 0; background: #AB5389; font-size: 16px; font-weight: 700; color: #fff; cursor: pointer; -webkit-appearance: none; -moz-appearance: none; appearance: none; }

.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input { color: #fff; padding: 12px; height: 42px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.09); background: rgba(255, 255, 255, 0.05); font-size: 16px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input:focus { color: #fff; outline: none; }

/* 장례식장 빈소 이용 현황 */
.deceased_carousel {
	margin: 20px 0;
}
.deceased_card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 16px;
}
.deceased_card .deceased_card_content {
	padding: 30px 28px 26px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-basis: 280px;
}
.deceased_card .deceased_card_content .card_title {
	padding-bottom: 16px;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0;
	font-weight: 900;
	color: #333;
}
.deceased_card .deceased_card_content .card_detail {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
	gap: 18px;
	border-top: 1px solid #d8d8d8;
	padding: 20px 0 0;
}
.deceased_card .deceased_card_content .card_detail .card_detail_element {
	display: flex;
	gap: 15px;
}
.deceased_card .deceased_card_content .card_detail .card_detail_element b {
	width: 60px;
	font-weight: 900;
	line-height: 18px;
	flex-shrink: 0;
}
.deceased_card .deceased_card_content .card_detail .card_detail_element span {
	font-weight: 500;
	line-height: 18px;
	text-overflow: ellipsis;
	word-wrap: normal;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.deceased_card .deceased_card_content .card_detail .card_detail_element span.longtxt {
	-webkit-line-clamp: 2;
}
.deceased_card a.card_button {
	background: #666;
	color: #fff;
	line-height: 50px;
	text-align: center;
	font-weight: 700;
	display: inline-block;
	width: 100%;
	border-radius: 0 0 16px 16px;
}

@media (max-width: 1279px) {
	.main_swife .swife .slogan { top: 100px; padding: 0 50px; width: 100%; transform: translate(0, 0); }
	.main_swife .swife .slogan2 {display:none;}
	.main_swife .reserve_area { top: 240px; }
	.main_swife .reserve_area .reserve { width: 100%; }
	.main_swife .reserve_area .reserve .reserve_box { justify-content: flex-end; margin: 0 50px 40px 50px; width: 100%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_call {margin-top: 0;margin-bottom: 0;}
	
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep { display: flex; gap: 40px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep .sep_01 { order: 1; width: 56%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep .sep_02 { width: 100%; }
	
	.main_swife .reserve_area .reserve .reserve_box .reserve_search { width: 100%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_search input.reserve_input { width: calc( 100% - 204px ); }
	
	/* .main_swife .reserve_area .reserve .reserve_box .reserve_info { justify-content: flex-start; gap: 40px; } */
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left { justify-content: center; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left .tit { display: none; }
	
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input { color: #666; border: 0; background: #fff; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input:focus { color: #000; }
	
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { gap: 24px; }
}

@media (max-width: 1200px) {
	.main_area {
		padding: 0 25px;
	}
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep .sep_01 { max-width: 53%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep { justify-content: space-between; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_num span.reserve_tit { min-width: 100px; padding-right: 0px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_tit { min-width: 100px; }@media ( max-width : 1023px) {
	.topHeader {
		position: absolute;
	}
}

#main {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 50px;
    background-color: #f4f4f4;
    padding-bottom: 100px;
    align-items: center;
}

.main_area {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 40px;
}
.main_area > div {
	min-width: 30%;
}
/* 공통 */
.list_title {
	border-bottom: 1px solid #333;
	width: 100%;
}
.list_title h2 {
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 12px;
}
.checks {
	padding-top: 10px; 
}
.checks input {
	margin-right: 4px;
}
.checks label {
	color: #fff;
}
.reserve_input::placeholder,
.person_info input::placeholder {
	color: #eee;
}

/* 상단 배너 */
.banner_wrap {
	background-color: #2677BB;
	filter: grayscale(0.75);
}
.banner_list {
	height: 100%;
	min-height: 180px;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
}
.banner_list .banner_item {
	max-width: 1200px;
}
.banner_list .banner_item a {
	width: 100%;
	height: 100%;
}
.banner_list .banner_header {
	display: flex;
	justify-content: space-between;
	padding-top: 5px;
}
.banner_list .banner_header > div {
	display: flex;
	align-items: center;
}
.banner_list .banner_pagination {
	position: relative;
	top: 0;
	margin-right: 10px;
}
.banner_list .banner_pagination span {
	background: #fff;
	opacity: 0.3;
}
.banner_list .banner_pagination .banner_bullet_active {
	opacity: 1;
}
.banner_list .banner_header .banner_header_right input {
	margin-right: 5px;
}
.banner_list .banner_header .banner_header_right label {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
.banner_list .banner_header .banner_header_right button {
	font-size: 0;
	width: 12px; 
	height: 12px; 
	background-image: url(/styles/assets/icon/close.png); 
	background-repeat: no-repeat; 
	background-size: contain; 
	border: 0; 
	background-color: transparent;
	filter: invert();
	margin-left: 10px;
	cursor: pointer;
}
.banner_list .banner_item a {
	display: flex;
	flex-direction: column;
}
.banner_list .banner_item a h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	padding-top: 10px;
	line-height: 26px;
}
.banner_list .banner_item a span {
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	margin: 8px 0px;
	line-height: 22px;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}
.banner_pause,
.community_banner_pause, 
.slide_banner_pause {
	display: inline-block;
	position: relative;
	cursor: pointer;
    width: 7px;
    height: 11px;
    background-image: url(/styles/assets/icon/pause.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 10;
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(144deg) brightness(105%) contrast(101%);
}
.banner_play,
.community_banner_play,
.slide_banner_play {
	display: inline-block;
	position: relative;
	cursor: pointer;
    width: 7px;
    height: 9px;
    background-image: url(/styles/assets/icon/play-cropped.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 10;
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(144deg) brightness(105%) contrast(101%);
}

/* 팝업 */
.popup_wrap {
	display: flex;
	flex-direction: column;
	position: absolute;
	z-index: 9999;
}
.popup_wrap > a,
.popup_wrap > div {
	position: relative;
	width: 100%;
}
.popup_wrap img {
	width: 100%;
}
.popup_wrap .popup_mobile {
	display: none;
}
.popup_wrap .popup_footer {
	background-color: #eee;
	padding: 6px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.popup_wrap .popup_footer input {
	margin-right: 5px;
}
.popup_wrap .popup_footer label {
	font-size: 14px;
	font-weight: 500;
}
.popup_wrap .popup_footer button.popup_close {
	font-size: 0;
	width: 12px; 
	height: 12px; 
	background-image: url(/styles/assets/icon/close.png); 
	background-repeat: no-repeat; 
	background-size: contain; 
	border: 0; 
	background-color: transparent;
	margin-left: 10px;
	cursor: pointer;
}

/* 메인 비주얼 */
.main_visual {
	width: 100%;
	height: 572px;
}
.main_visual_carousel {
	width: 100%;
	position: relative;
	height: 100%;
}
.main_visual_carousel .main_visual_image {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.main_visual_carousel .main_visual_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main_visual_carousel .main_visual_contents {
	position: absolute;
	width: 100%;
	height: 100%;
	max-width: 1200px;
	z-index: 2;
	top: 0;
	padding: 0 20px;
}
.main_visual_carousel .main_visual_contents > div {
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
}
.main_visual_carousel .main_visual_swiper_prev,
.main_visual_carousel .main_visual_swiper_next {
	color: #fff;
}
.main_visual_carousel .main_visual_swiper_prev {
	left: 2%;
}
.main_visual_carousel .main_visual_swiper_next {
	right: 2%;
}
.main_swiper_pagination_area {
	position: relative;
	bottom: 30px;
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2677bb;
	border-radius: 30px;
	padding: 3px 8px 2px;
	z-index: 2;
	margin: auto;
}
.main_swiper_pagination_area i {
	color: #fff;
	opacity: 0.7;
	z-index: 1;
	position: relative;
	cursor: pointer;
}
.main_swiper_pagination_area .main_swiper_pagination {
	display: flex;
	width: auto;
	position: relative;
	bottom: 1px;
}

.main_swiper_pagination .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.6;
}
.main_swiper_pagination .swiper-pagination-bullet.main_swiper_bullet_active {
	background: #fff;
	opacity: 1;
}
.main_swiper_pagination .main_swiper_button {
	display: flex;
	align-items: center;
}


/* 커뮤니티 배너 */
.community_banner {
	flex-shrink: 0;
	height: 300px;
	position: relative;
	border-radius: 16px;
	aspect-ratio: 8 / 5;
}
.community_banner .community_banner_image {
	height: 100%;
	display: block;
	outline-offset: -3px;
	border-radius: 16px;
}
.community_banner .community_banner_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.community_banner_footer,
.slide_banner_footer {
	display: flex;
	position: relative;
	bottom: 35px;
	float: right;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	width: fit-content;
	z-index: 2;
	padding: 2px 8px 3px;
	border-radius: 20px;
	margin-right: 15px;
	background: #2677bb;
}
.community_banner_footer .community_banner_button,
.slide_banner_footer .slide_banner_button {
	display: flex;
	align-items: center;
}
.community_banner .community_banner_footer .swiper-pagination,
.slide_banner .slide_banner_footer .swiper-pagination {
	position: relative;
	width: auto;
	height: auto;
	padding: 0px;
	bottom: 0px;
}
.community_banner .community_banner_footer .swiper-pagination-bullet,
.slide_banner .slide_banner_footer .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 0.6;
}
.community_banner .community_banner_footer .swiper-pagination-bullet-active,
.slide_banner .slide_banner_footer .swiper-pagination-bullet-active {
	opacity: 1;
}

/* 슬라이드 배너 */
.slide_banner {
	width: 100%;
	height: 180px;
	position: relative;
    border-radius: 16px;
}
.slide_banner button {
	border: none;
}
.slide_banner .slide_banner_image {
	position: relative;
	z-index: 1;
	height: 100%;
	display: block;
	outline-offset: -3px;
	border-radius: 16px;
}
.slide_banner .slide_banner_image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.slide_banner .slide_banner_swiper_prev, 
.slide_banner .slide_banner_swiper_next {
	color: #fff;
}

/* 바로가기 메뉴 */
.quick_menu {
	max-width: 1200px;
	width: 100%;
	gap: 10px;
	display: flex;
	flex-direction: column;
	margin: 0px;
}
.quick_menu .quick_menu_wrap {
	display: flex;
}
.quick_menu .quick_menu_wrap .quick_menu_item {
	flex: 1;
	flex-basis: 150px;
	width: auto;
}
.quick_menu .quick_menu_wrap .quick_menu_item:not(:last-child) {
	margin-right: 20px;
}
.quick_menu .quick_menu_wrap .quick_menu_item > a {
	background-color: #fff;
	border-radius: 16px;
	text-align: center;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	padding: 24px 20px 20px;
	height: 130px;
}
.quick_menu .quick_menu_wrap .quick_menu_item h2 {
	display: inline-block;
	color: #333;
	font-weight: 700;
}
.quick_menu .quick_menu_wrap .quick_menu_item .quick_menu_icon {
	width: 40px;
	height: 40px;
	filter: brightness(0) invert(1);
}
.quick_menu .quick_menu_scrollbar {
	width: 100%;
	position: relative;
}

/* 문의 */
.contact {
	width: 80%;
}
.contact_area {
	display: flex;
	align-items: center;
	padding: 15px 0;
	gap: 20px;
}
.contact_area .call_icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
}
.contact_area .call_icon i {
	width: 50%;
    height: 50%;
    display: inline-block;
    background-image: url(/styles/assets/icon/call2.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(120deg) brightness(103%) contrast(104%);
}
.contact_content {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-grow: 1;
	justify-content: space-between;
	flex-wrap: nowrap;
}
.contact_content * {
	color: #333;
	line-height: 24px;
}
.contact_content h3 {
	font-size: 18px;
	font-weight: 700;
}
.contact_content p {
	font-size: 18px;
	font-weight: 600;
	flex-shrink: 0;
}
.contact_content p.highlight {
	font-size: 24px;
	font-weight: 700;
}
.contact_content div {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 6px;
}
.contact_content div .contact_text {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10px;
}

/* 게시글 */
.see_more_icon i {
	font-size: 20px;
}
.post_list > ul {
	display: none;
}
.post_list > ul.on {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
.board_type1, .board_type2, .board_type4 {
	flex-grow: 1;
}
.board_type1 .board_list {
	    display: flex;
    justify-content: center;
    align-items: center;
}
.board_type1 .board_list > a {
	    display: inline-block;
    width: 40px;
    text-align: center;
	color: #333;
}
.board_type1 .board_list > ul {
	display: flex;
	    flex: 1;
}
.board_type1 .board_list > ul li.board_item {
	flex: 1;
	border-radius: 16px 16px 0 0;
	text-align: center;
	padding: 16px 0 10px;
	font-size: 15px;
	letter-spacing: 0;
	font-weight: 700;
	cursor: pointer;
	height: 44px;
	color: #333;
}
.board_type1 .board_list > ul li.board_item.on,
.board_type1 .board_list > ul li.board_item.on a {
	background-color: #fff;
	color: #2677bb;
}
.board_type1 .post_list > ul {
	background-color: #fff;
	padding: 20px 40px;
	border-radius: 16px;
	width: auto;
}
.board_type1 .post_list > ul:first-child {
	border-radius: 0 16px 16px 16px;
}
.board_type1 .post_list > ul:last-child {
	border-radius: 16px 0 16px 16px;
}
.board_type1 .post_list > ul li {
	position: relative;
	width: 100%;
}
.board_type1 .post_list > ul li a {
	display: flex;
	justify-content: space-between;
}
.board_type1 .post_list > ul li a .post_title {
	font-size: 15px;
	color: #666;
	letter-spacing: 0;
	line-height: 43px;
	font-weight: 500;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.board_type1 .post_list > ul li a .post_content {
	display: none;
}
.board_type1 .post_list > ul li a .post_date {
	font-size: 15px;
    color: #666;
    letter-spacing: 0;
    line-height: 43px;
    font-weight: 500;
    margin-left: 30px;
    min-width: 90px;
    text-align: end;
}

.board_type2 .board_list {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #333;
	line-height: 1.5rem;
	padding-bottom: 12px;
}
.board_type2 .board_list > ul {
	display: flex;
}
.board_type2 .board_list > ul li.board_item {
	margin: 0 20px;
	font-size: 16px;
	font-weight: 500;
}
.board_type2 .board_list > ul li.board_item.on {
	font-size: 18px;
	font-weight: 700;
}
.board_type2 .board_list a.see_more {
	display: inline-flex;
}
.board_type2 .board_list a.see_more i {
	display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(/styles/assets/icon/plus.svg);
    filter: invert(54%) sepia(22%) saturate(2626%) hue-rotate(28deg) brightness(94%) contrast(95%) !important;
}
.board_type2 .post_list {
	padding-top: 20px;
}
.board_type2 .post_list > ul li {
	padding: 24px 30px 22px;
	background-color: #fff;
	border-radius: 16px;
	flex: 1;
	height: auto;
}
.board_type2 .post_list > ul.on {
	flex-direction: row;
	gap: 30px;
}
.board_type2 .post_list > ul li a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.board_type2 .post_list > ul li a .post_title {
    width: 100%;
	font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    color: #333333;
	display: -webkit-box;
	word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.board_type2 .post_list > ul li a .post_content {
	width: 100%;
	font-size: 15px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 0;
	color: #333333;
	margin: 8px 0;
	display: -webkit-box;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.board_type2 .post_list > ul li a .post_date {
	font-size: 14px;
	color: #666666;
	letter-spacing: 0;
	line-height: 20px;
	font-weight: 400;
}

.board_type3 .board_list {
	display: flex;
	align-items: center;
	padding: 30px 40px;
    background: #FFFFFF;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    width: 100%;
    gap: 35px;
}
.board_type3 .board_list .board_item {
	flex-shrink: 0;
	font-weight: 700;
}
.board_type3 .post_list {
	flex-grow: 1;
	margin: 0;
	height: 20px;
	line-height: 20px;
}
.board_type3 .post_list ul {
	display: block;
}
.board_type3 .post_list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.board_type3 .post_list .post_title {
	display: -webkit-box;
	word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.board_type3 .post_list .post_content,
.board_type4 .post_list .post_content {
	display: none;
}
.board_type3 .post_list .post_date {
	flex-shrink: 0;
}
.board_type4 .board_item {
	font-size: 20px;
	font-weight: 700;
}
.board_type4 .board_list {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1.5rem;
	padding-bottom: 12px;
}
.board_type4 .post_list > ul {
	background-color: #fff;
	padding: 15px 25px;
	border-radius: 16px;
	width: auto;
}
.board_type4 .post_list > ul li a {
	display: flex;
	justify-content: space-between;
}
.board_type4 .post_list > ul li a .post_title {
	font-size: 15px;
	color: #666;
	letter-spacing: 0;
	line-height: 30px;
	font-weight: 500;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.board_type4 .post_list > ul li a .post_date {
	font-size: 15px;
    color: #666;
    letter-spacing: 0;
    line-height: 30px;
    font-weight: 500;
    margin-left: 30px;
    min-width: 90px;
    text-align: end;
}

.social_network_wrap {
	display: flex;
	width: 100%;
}
.social_network_wrap .social_network_tab ul {
	display: flex;
	flex-direction: column;
}
.social_network_wrap .social_network_tab ul > li a {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	width: 136px;
	height: 119px;
	cursor: pointer;
}
.social_network_wrap .social_network_tab ul > li.on {
	background-color: #fff;
	border-radius: 16px 0 0 16px;
}
.social_network_wrap .social_network_tab ul > li h2 {
	font-size: 15px;
	color: #666;
	letter-spacing: 0;
	font-weight: 700;
	text-align: center;
}
.social_network_wrap .social_network_tab ul > li img {
	width: 32px;
	height: 32px;
}
.social_network_wrap .social_network_list {
	width: 100%;
}
.social_network_wrap .social_network_items {
	background-color: #fff;
	padding: 30px 40px;
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.03);
	display: none;
	border-radius: 16px;
	height: 100%;
}
.social_network_wrap .social_network_items.on {
	display: flex;
	gap: 20px;
	flex-direction: column;
}
.social_network_wrap .social_network_items:first-child {
	border-top-left-radius: 0px;
}
.social_network_wrap .social_network_items .social_network_item_area {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.social_network_wrap .social_network_items h3 {
	font-size: 18px;
	color: #333;
	letter-spacing: 0;
	font-weight: 700;
}
.social_network_wrap .social_network_items ul {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.social_network_wrap .social_network_items ul > li p {
	font-size: 16px;
	color: #333;
	letter-spacing: 0;
	line-height: 24px;
	font-weight: 700;
	display: -webkit-box;
	word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.social_network_wrap .social_network_items .social_network_item {
	flex: 1;
	max-width: 300px;
}
.social_network_wrap .social_network_items .social_network_item a {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.social_network_wrap .social_network_items .social_network_item_image {
	width: 100%;
	height: 170px;
}
.social_network_wrap .social_network_items .social_network_item_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

/* 기본 목록 타이틀 */
.basic_list_title {
	display: flex;
	justify-content: space-between;
    align-items: center;
	border-bottom: 1px solid #333;
	padding-bottom: 12px;
}
.basic_list_title h2 {
	font-size: 20px;
	font-weight: 700;
}
.basic_list_title a.see_more {
	display: inline-flex;
}
a.see_more i {
	display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(/styles/assets/icon/plus.svg);
    filter: invert(40%) sepia(8%) saturate(7%) hue-rotate(359deg) brightness(95%) contrast(92%);
}

/* 대표홈페이지 메인 */
.main_swife { position: absolute; width: 100%; }
.main_swife .swife {position: relative;width: 100%;height: 680px;}
.main_swife .swife .swife_img { width: 100%; height: 100%; }
.main_swife .swife .swife_img img { width: 100%; height: 100%; object-fit: cover; }

.main_swife .swife .slogan { position: absolute; top: 240px; left: 0; right: 0; z-index: 1; margin: 0 auto; width: 1200px; }
.main_swife .swife .slogan .tit { margin-bottom: 16px; font-size: 40px; font-weight: 700; color: #fff; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); }
.main_swife .swife .slogan .txt { font-size: 22px; font-weight: 600; line-height: 32px; color: #fff; text-shadow: 0 0px 4px rgba(0, 0, 0, 1); }

.main_swife .reserve_area { position: absolute; top: 80px; z-index: 3; width: 100%; }
.main_swife .reserve_area .reserve { display: flex; margin: 0 auto; width: 1200px; height: 100%; }
.main_swife .reserve_area .reserve .reserve_box { display: flex; flex-direction: column; justify-content: center; margin-left: auto; width: 660px; }

.main_swife .reserve_area .reserve .reserve_box .reserve_search { display: flex; align-items: center; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid #fff; }
.main_swife .reserve_area .reserve .reserve_box .reserve_search .reserve_circle { display: flex; justify-content: center; align-items: center; border-radius: 36px; width: 36px; height: 36px; background: #2677BB; }
.main_swife .reserve_area .reserve .reserve_box .reserve_search .reserve_circle img { width: 18px; height: 18px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_search span.reserve_tit { padding: 0 20px; min-width: 131px; font-size: 20px; font-weight: 700; color: #fff; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_search input.reserve_input { padding: 0 16px; width: 457px; height: 36px; border: none; font-size: 18px; background: none; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_search input.reserve_input:focus { border: none; background: none; color: #fff; outline: none; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_search button.reserve_btn { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; background: none; border: 0; cursor: pointer; -webkit-appearance: none; -moz-appearance: none; appearance: none; } 

.main_swife .reserve_area .reserve .reserve_box .sep_01{display:flex;flex-wrap:wrap;align-items: flex-start;}
.main_swife .reserve_area .reserve .reserve_box .reserve_num {flex: 1;display: flex;align-items: center;margin-bottom: 10px;padding-bottom: 12px;}
.main_swife .reserve_area .reserve .reserve_box .reserve_num .reserve_circle { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border-radius: 36px; background: #122131; opacity: 0.7; }
.main_swife .reserve_area .reserve .reserve_box .reserve_num .reserve_circle img { width: 18px; height: 18px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_num span.reserve_tit { padding: 0 20px; min-width: 131px; font-size: 20px; font-weight: 700; color: #fff; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_num span.reserve_txt { padding: 0 20px; font-size: 20px; font-weight: 700; color: #fff; } 

.main_swife .reserve_area .reserve .reserve_box .reserve_call {margin-top: -30px;flex: 1;display: flex;align-items: flex-start;margin-bottom: 36px;}
.main_swife .reserve_area .reserve .reserve_box .reserve_call .reserve_circle { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border-radius: 36px; background: #122131; opacity: 0.7; }
.main_swife .reserve_area .reserve .reserve_box .reserve_call .reserve_circle img { width: 18px; height: 18px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_tit { padding: 8px 20px; min-width: 131px; font-size: 20px; font-weight: 700; color: #fff; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_txt { padding: 2px 20px; font-size: 20px; line-height: 28px; font-weight: 700; color: #fff; } 

.main_swife .reserve_area .reserve .reserve_box .reserve_health {d;flex: 1;display: flex;align-items: flex-start;}
.main_swife .reserve_area .reserve .reserve_box .reserve_health .reserve_circle { display: flex; justify-content: center; align-items: center; width: 36px; height: 36px; border-radius: 36px; background: #122131; opacity: 0.7; }
.main_swife .reserve_area .reserve .reserve_box .reserve_health .reserve_circle img { width: 18px; height: 18px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_health span.reserve_tit { padding: 8px 20px; min-width: 131px; font-size: 20px; font-weight: 700; color: #fff; } 
.main_swife .reserve_area .reserve .reserve_box .reserve_health span.reserve_txt {padding: 2px 0px;font-size: 20px;line-height: 28px;font-weight: 700;color: #fff;} 
.main_swife .reserve_area .reserve .reserve_box .reserve_health .btn_link{margin-top: 5px;display: flex;border: 2px solid #3da1f5;padding: 0 10px;height: 40px;border-radius:10px;justify-content: center;align-items: center;}
.main_swife .reserve_area .reserve .reserve_box .reserve_health .btn_link span{display: block;font-size: 16px;font-weight: 700;color: #3da1f5;padding-right: 30px;background: url(../styles/assets/img/arw_right01_blue.png) no-repeat center center;}

.main_swife .reserve_area .reserve .reserve_box .reserve_info { display: flex; justify-content: space-around; padding: 36px 36px; width: 100%; border-radius: 16px; background: rgba(18, 34, 49, 0.7); }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .left { display: flex; flex-direction: column; width: fit-content; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .left img { width: auto; height: 48px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .left .tit { margin-top: 24px; font-size: 20px; font-weight: 700; color: #fff; }

.main_swife .reserve_area .reserve .reserve_box .reserve_info .right { display: flex; flex-direction: column; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .txt { margin-bottom: 16px; font-size: 16px; line-height: 24px; color: #fff; word-break: keep-all; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info { display: flex; gap: 8px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_name { width: 120px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_phone { width: 160px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_btn { display: flex; justify-content: center; align-items: center; width: 120px; border-radius: 8px; border: 0; background: #AB5389; font-size: 16px; font-weight: 700; color: #fff; cursor: pointer; -webkit-appearance: none; -moz-appearance: none; appearance: none; }

.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input { color: #fff; padding: 12px; height: 42px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.09); background: rgba(255, 255, 255, 0.05); font-size: 16px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input:focus { color: #fff; outline: none; }

/* 장례식장 빈소 이용 현황 */
.deceased_carousel {
	margin: 20px 0;
}
.deceased_card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 16px;
}
.deceased_card .deceased_card_content {
	padding: 30px 28px 26px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-basis: 280px;
}
.deceased_card .deceased_card_content .card_title {
	padding-bottom: 16px;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0;
	font-weight: 900;
	color: #333;
}
.deceased_card .deceased_card_content .card_detail {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
	gap: 18px;
	border-top: 1px solid #d8d8d8;
	padding: 20px 0 0;
}
.deceased_card .deceased_card_content .card_detail .card_detail_element {
	display: flex;
	gap: 15px;
}
.deceased_card .deceased_card_content .card_detail .card_detail_element b {
	width: 60px;
	font-weight: 900;
	line-height: 18px;
	flex-shrink: 0;
}
.deceased_card .deceased_card_content .card_detail .card_detail_element span {
	font-weight: 500;
	line-height: 18px;
	text-overflow: ellipsis;
	word-wrap: normal;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.deceased_card .deceased_card_content .card_detail .card_detail_element span.longtxt {
	-webkit-line-clamp: 2;
}
.deceased_card a.card_button {
	background: #666;
	color: #fff;
	line-height: 50px;
	text-align: center;
	font-weight: 700;
	display: inline-block;
	width: 100%;
	border-radius: 0 0 16px 16px;
}

@media (max-width: 1279px) {
	.main_swife .swife .slogan { top: 100px; padding: 0 50px; width: 100%; transform: translate(0, 0); }
	.main_swife .reserve_area { top: 240px; }
	.main_swife .reserve_area .reserve { width: 100%; }
	.main_swife .reserve_area .reserve .reserve_box { justify-content: flex-end; margin: 0 50px 40px 50px; width: 100%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_call {margin-bottom: 0;margin-top: 0;}
	
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep { display: flex; gap: 40px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep .sep_01 { order: 1; width: 56%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep .sep_02 { width: 100%; }
	
	.main_swife .reserve_area .reserve .reserve_box .reserve_search { width: 100%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_search input.reserve_input { width: calc( 100% - 204px ); }
	
	/* .main_swife .reserve_area .reserve .reserve_box .reserve_info { justify-content: flex-start; gap: 40px; } */
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left { justify-content: center; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left .tit { display: none; }
	
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input { color: #666; border: 0; background: #fff; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input:focus { color: #000; }
	
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { gap: 24px; }
}

@media (max-width: 1200px) {
	.main_area {
		padding: 0 25px;
	}
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep .sep_01 { max-width: 53%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep { justify-content: space-between; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_num span.reserve_tit { min-width: 100px; padding-right: 0px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_tit { min-width: 100px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_health span.reserve_tit {min-width: 100px;padding-right: 0;}
	.main_swife .reserve_area .reserve .reserve_box .reserve_num span.reserve_txt,
	.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_txt,
	.main_swife .reserve_area .reserve .reserve_box .reserve_health span.reserve_txt { padding: 2px 15px; }
	
	/* 상단 배너 */
	.banner_list {
		margin: 0 15px;
		padding: 5px 0;
		min-height: 225px;
	}
	.banner_list .banner_item a span {
		-webkit-line-clamp: 7;
	}
	
	/* 메인 비주얼 */
	.main_visual_carousel .main_visual_contents {
		margin: 0 60px;
	}
	.main_visual_carousel .main_visual_swiper_prev {
		display: none;
	}
	.main_visual_carousel .main_visual_swiper_next {
		display: none;
	}
	
	/* 문의 */
	.contact {
		width: 100%;
	}
	
	/* 바로가기 메뉴 */
	.quick_menu {
		margin: 0px;
		width: 100%;
	}
	.quick_menu .quick_menu_wrap .quick_menu_item {
		flex-shrink: 0;
	}
	
	/* SNS */
	.social_network_wrap {
		flex-direction: column;
	}
	.social_network_wrap .social_network_tab ul {
		flex-direction: row;
		overflow: auto;
	}
	.social_network_wrap .social_network_tab ul li.on {
		border-radius: 16px 16px 0 0;
	}
}
@media (max-width: 1099px) { 
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { height: auto; padding: 30px; }
}
@media (max-width: 1024px) {
	.main_swife .reserve_area { top: 240px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { padding: 25px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_txt { padding: 2px 0 2px 20px; }
}
@media (max-width: 1023px) { 
	.main_area {
		flex-direction: column;
		flex-wrap: wrap;
	}
	.main_area > div {
		flex-grow: 1;
		width: 100%;
	}
	.main_swife .swife .slogan { display: none; }
	.main_swife .reserve_area { top: 200px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep .sep_01 { display: none; }

	.main_swife .reserve_area .reserve .reserve_box { justify-content: center; margin: 0 50px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left .tit { display: block; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { width: 100%; }
	
	/* 커뮤니티 배너 */
	.community_banner {
		height: auto;
	}
	
	/* 문의 */
	.contact_content div {
		flex-direction: row;
		align-items: center;
	}
	.contact_content div * {
		margin-right: 10px;
	}
	
	/* 게시글 */
	.board_type2 .post_list > ul li {
		flex-basis: 45%;
	}
	
	/* SNS */
	.social_network_wrap .social_network_tab ul > li {
		height: 95px;
	}
	.social_network_wrap .social_network_items {
		overflow: hidden;
		padding: 30px 40px 20px;
	}
	.social_network_wrap .social_network_items .social_network_item_area {
		flex-direction: row;
		overflow: auto;
	}
	.social_network_wrap .social_network_items ul {
		padding-bottom: 10px;
	}
	.social_network_wrap .social_network_items .social_network_item_image {
		min-width: max-content;
	}
}
@media (max-width: 768px) {
	.main_swife .reserve_area { top: 200px; }
}
@media  (max-width:767px) { 
	.main_swife .reserve_area { top: 160px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_search .reserve_circle { display: none; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .txt { margin-top: 16px; margin-bottom: 0; order: 1; }
		
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info { flex-wrap: wrap; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_name,
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_phone { width: 70%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_btn { margin-top: -50px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { height: auto; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left .tit { display: none; }
	
	/* 상단 배너 */
	.banner_list {
		margin: 0 15px;
		padding: 5px 0;
		min-height: 270px;
	}
	.banner_list .banner_item a span {
		-webkit-line-clamp: 9;
		font-size: 15px;
	}
	
	/* 메인 비주얼 */
	.main_visual_carousel .main_visual_contents {
		margin: 0 auto;
		padding: 0 30px;
		width: 100%;
	}
	
	/* 문의 */
	.contact_area {
		gap: 30px;
	}
	.contact_content div {
		flex-direction: column;
		align-items: flex-start;
	}
	
	/* 게시글 */
	.board_type3 .board_list {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: space-between;
	}
	.board_type3 .post_list {
		width: 100%;
		order: 3;
	}
	
	/* 팝업 */
	.popup_wrap {
		left: 0!important;
		width: 100%!important;
	}
	.popup_wrap .popup_pc {
		display: none;
	}
	.popup_wrap .popup_mobile {
		display: block;
	}
	
	/* SNS */
	.social_network_wrap .social_network_tab ul > li {
		padding: 15px 20px;
		width: auto;
		height: auto;
	}
	.social_network_wrap .social_network_tab ul > li > img {
		display: block;
	}
	.social_network_wrap .social_network_tab ul > li > h2 {
		display: none;
	}
}

@media (max-width:690px) {
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { gap: 24px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_btn { margin-top: -50px; }
}

@media (max-width:664px) {
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { gap: 0; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left img { display: none; }

}

@media (max-width:640px) {
	.main_swife .reserve_area { top: 120px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_name, 
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_phone { width: 100%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_btn { margin-top: 0; width: 100%; height: 42px; }
}

@media (max-width:550px) { 
	#main {
		gap: 30px;
	}
	.main_area {
		padding: 0 15px;
	}
	
	/* 바로가기 메뉴 */
	.quick_menu .quick_menu_wrap .quick_menu_item h2 {
		font-size: 14px;
	}
	
	/* 문의 */
	.contact_content {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.contact_content div {
		flex-direction: row;
	}
	
	/* 게시글 */
	.board_type1 .post_list > ul {
		padding: 5px 20px;
	}
	.board_type1 .post_list > ul li a div {
		font-size: 12px;
	}
	.board_type1 .post_list > ul li a .post_date {
		margin-left: 15px;
	}
	.board_type2 .board_list > ul li.board_item {
		margin: 0 12px;
		font-size: 15px;
	}
	.board_type2 .board_list > ul li.board_item {
		font-size: 16px;
	}
	.board_type2 .board_list a.see_more i {
		transform: scale(0.7);
	}
	.board_type2 .post_list > ul li {
		flex-basis: 100%;
	}
}
@media (max-width: 479px) { 
	.main_swife .reserve_area .reserve .reserve_box { margin: 0 20px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { padding: 16px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_search span.reserve_tit { padding: 0; min-width: 100px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_search input.reserve_input { width: calc(100% - 143px); }
}
@media (max-width: 430px) {
	.main_swife .reserve_area { top: 110px; }
}

/* 대표홈페이지 빠른예약 */
.mainContent{
    position: relative;
    max-width:1200px;
    margin: 0 auto;
    height:572px;
    display: flex;
}

.mainContent .sloganWrap{
    width:472px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mainContent .sloganWrap strong{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    word-spacing: 0rem;
    padding-bottom: 20px;
    text-shadow: 0 0px 5px rgba(0,0,0,1);
}
.mainContent .sloganWrap span{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 0px 5px rgba(0,0,0,1);
}
.mainContent .accessWrap{
    width: calc( 1200px - 472px );
    display:flex;
    flex-direction: column;
    align-items: flex-end;
}

.mainContent .firstAccess,
.mainContent .secondAccess{
    width:660px;
    display: flex;
}
.mainContent .thirdAccess{
    width:672px;
    display: flex;
}
.mainContent .firstAccess *,
.mainContent .secondAccess *,
.mainContent .thirdAccess *{
    color:#fff;
}

.mainContent .accessWrap h2,
.mainContent .accessWrap em{
    font-weight: 700;
    font-size: 20px;
}
.mainContent .accessWrap h2{
    letter-spacing: 0;
    display: inline-block;
    width:92px;
    margin-left:21px;
    margin-right:35px;
}
.mainContent .accessWrap em{
    letter-spacing: 1px;
    display: inline-block;
}
.mainContent .accessWrap .accessWrapPadding{
    padding-left:12px;
}
.mainContent .firstAccess{
    border-bottom: 1px solid #fff;
    padding-top: 100px;
    padding-bottom:12px;
    display: flex;
    align-items: center;
}

.mainContent .firstAccess i{
    position: relative;
    display: inline-block;
    width: 36px;
    height:36px;
    background-color: rgba(38,119,187,0.7);
    border-radius: 50%;
}
.mainContent .firstAccess i:after{
    position: absolute;
    content: "";
    width:18px;
    height:18px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background-image: url("../icon/doctor.svg");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
}
.mainContent .firstAccess h2{
    line-height: 36px;
    display: inline-block;
}

.mainContent .firstAccess input{
    font-size: 18px;
    color: rgba(255,255,255);
    letter-spacing: 1px;
    font-weight: 500;
    background-color: transparent;
    border: none;
    /* width: calc( 100% - 36px - 21px - 92px - 35px - 36px- 24px ) */
    width: calc( 100% - 60px - 92px - 36px - 56px );
}
.mainContent .firstAccess input::-webkit-input-placeholder {
    color: #ffffff; /*Change the placeholder color*/
    opacity: 0.6; /*Change the opacity between 0 and 1*/
}

.mainContent .firstAccess input:focus{
    outline: none;
}

.mainContent .firstAccess button{
    background-image: url("../icon/search.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width:24px;
    height:24px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    margin: 0 18px;
}

.mainContent .secondAccess{
    padding-top: 24px;
    flex-direction: column;
}

.mainContent .secondAccess > :nth-child(1){
    display: flex;
    align-items: center;
}

.mainContent .secondAccess > :nth-child(1) i{
    position: relative;
    display: inline-block;
    width: 36px;
    height:36px;
    background-color: rgba(18,33,49,0.7);
    border-radius: 50%;
}
.mainContent .secondAccess > :nth-child(1) i:after{
    position: absolute;
    content: "";
    width:18px;
    height:18px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background-image: url("../icon/call.svg");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
}

.mainContent .secondAccess > div:nth-child(2){
    padding-top: 11px;
    display: flex;
    /* align-items: center; */
    line-height: 28px;
}

.mainContent .secondAccess > :nth-child(2) i{
    position: relative;
    display: inline-block;
    width: 36px;
    height:36px;
    background-color: rgba(18,33,49,0.7);
    border-radius: 50%;
}
.mainContent .secondAccess > :nth-child(2) i:after{
    position: absolute;
    content: "";
    width:18px;
    height:18px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background-image: url("../icon/callcenter.svg");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
}

.mainContent .secondAccess > div:nth-child(2) h2{
    line-height: 36px;
}

.mainContent .secondAccess > div > div{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    padding-top:4px;
}

.mainContent .thirdAccess{
    margin-top: 36px;
    padding: 35px 50px 40px 43px;
    background-color: rgba(18,33,49,0.7);
    border-radius: 36px;
    display: flex;
    justify-content: space-between;
}

.mainContent .thirdAccess .thirdLeftAccess{
    margin-right:36px;
    display: inline-block;
    max-width: 113px;
}
.mainContent .thirdAccess .thirdLeftAccess i{
    display: inline-block;
    width:48px;
    height:48px;
    margin: 0 auto;
    background-image: url("../icon/reservation.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom:17px;
}
.mainContent .thirdAccess .thirdLeftAccess h2{
    margin:0;
    width: auto;
    padding-top:8px;
}
.mainContent .thirdAccess .thirdLeftAccess{
    display: inline-block;
    text-align: center;
}
.mainContent .thirdAccess .thirdRightAccess .desc{font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
    margin-bottom:17px;
}
.mainContent .thirdAccess .thirdRightAccess input{
    padding:9px 16px;
    /* opacity: 0.5; */
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 8px;
}
.mainContent .thirdAccess .thirdRightAccess .inputWrap{
    display: flex;
    justify-content: space-between;
}

.mainContent .thirdAccess .thirdRightAccess input:focus{outline:none}

.mainContent .thirdAccess .thirdRightAccess input.name{
    width:120px;
}
.mainContent .thirdAccess .thirdRightAccess input.phone{
    width:165px;
}
.mainContent .thirdAccess .thirdRightAccess input.apply{
    background-color:#AB5389;
    border-radius: 8px;
    width:125px;
    cursor: pointer;
}
	.main_swife .reserve_area .reserve .reserve_box .reserve_num span.reserve_txt,
	.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_txt,
	.main_swife .reserve_area .reserve .reserve_box .reserve_health span.reserve_txt{ padding: 2px 15px; }
	
	/* 상단 배너 */
	.banner_list {
		margin: 0 15px;
		padding: 5px 0;
		min-height: 225px;
	}
	.banner_list .banner_item a span {
		-webkit-line-clamp: 7;
	}
	
	/* 메인 비주얼 */
	.main_visual_carousel .main_visual_contents {
		margin: 0 60px;
	}
	.main_visual_carousel .main_visual_swiper_prev {
		display: none;
	}
	.main_visual_carousel .main_visual_swiper_next {
		display: none;
	}
	
	/* 문의 */
	.contact {
		width: 100%;
	}
	
	/* 바로가기 메뉴 */
	.quick_menu {
		margin: 0px;
		width: 100%;
	}
	.quick_menu .quick_menu_wrap .quick_menu_item {
		flex-shrink: 0;
	}
	
	/* SNS */
	.social_network_wrap {
		flex-direction: column;
	}
	.social_network_wrap .social_network_tab ul {
		flex-direction: row;
		overflow: auto;
	}
	.social_network_wrap .social_network_tab ul li.on {
		border-radius: 16px 16px 0 0;
	}
}
@media (max-width: 1099px) { 
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { height: auto; padding: 30px; }
}
@media (max-width: 1024px) {
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { padding: 25px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_call span.reserve_txt { padding: 2px 0 2px 20px; }
}
@media (max-width: 1023px) { 
	.main_area {
		flex-direction: column;
		flex-wrap: wrap;
	}
	.main_area > div {
		flex-grow: 1;
		width: 100%;
	}
	.main_swife .swife .slogan { display: none; }
	.main_swife .reserve_area { top: 200px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_sep .sep_01 { display: none; }

	.main_swife .reserve_area .reserve .reserve_box { justify-content: center; margin: 0 50px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left .tit { display: block; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { width: 100%; }
	
	/* 커뮤니티 배너 */
	.community_banner {
		height: auto;
	}
	
	/* 문의 */
	.contact_content div {
		flex-direction: row;
		align-items: center;
	}
	.contact_content div * {
		margin-right: 10px;
	}
	
	/* 게시글 */
	.board_type2 .post_list > ul li {
		flex-basis: 45%;
	}
	
	/* SNS */
	.social_network_wrap .social_network_tab ul > li {
		height: 95px;
	}
	.social_network_wrap .social_network_items {
		overflow: hidden;
		padding: 30px 40px 20px;
	}
	.social_network_wrap .social_network_items .social_network_item_area {
		flex-direction: row;
		overflow: auto;
	}
	.social_network_wrap .social_network_items ul {
		padding-bottom: 10px;
	}
	.social_network_wrap .social_network_items .social_network_item_image {
		min-width: max-content;
	}
}

@media  (max-width:767px) { 
	.main_swife .reserve_area .reserve .reserve_box .reserve_search .reserve_circle { display: none; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .txt { margin-top: 16px; margin-bottom: 0; order: 1; }
		
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info { flex-wrap: wrap; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_name,
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_phone { width: 70%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_btn { margin-top: -50px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { height: auto; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left .tit { display: none; }
	
	/* 상단 배너 */
	.banner_list {
		margin: 0 15px;
		padding: 5px 0;
		min-height: 270px;
	}
	.banner_list .banner_item a span {
		-webkit-line-clamp: 9;
		font-size: 15px;
	}
	
	/* 메인 비주얼 */
	.main_visual_carousel .main_visual_contents {
		margin: 0 auto;
		padding: 0 30px;
		width: 100%;
	}
	
	/* 문의 */
	.contact_area {
		gap: 30px;
	}
	.contact_content div {
		flex-direction: column;
		align-items: flex-start;
	}
	
	/* 게시글 */
	.board_type3 .board_list {
		flex-wrap: wrap;
		gap: 10px;
		justify-content: space-between;
	}
	.board_type3 .post_list {
		width: 100%;
		order: 3;
	}
	
	/* 팝업 */
	.popup_wrap {
		left: 0!important;
		width: 100%!important;
	}
	.popup_wrap .popup_pc {
		display: none;
	}
	.popup_wrap .popup_mobile {
		display: block;
	}
	
	/* SNS */
	.social_network_wrap .social_network_tab ul > li {
		padding: 15px 20px;
		width: auto;
		height: auto;
	}
	.social_network_wrap .social_network_tab ul > li > img {
		display: block;
	}
	.social_network_wrap .social_network_tab ul > li > h2 {
		display: none;
	}
}

@media (max-width:690px) {
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { gap: 24px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_btn { margin-top: -50px; }
}

@media (max-width:664px) {
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { gap: 0; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left img { display: none; }

}

@media (max-width:640px) {
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_name, 
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_phone { width: 100%; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_btn { margin-top: 0; width: 100%; height: 42px; }
}

@media (max-width:550px) { 
	#main {
		gap: 30px;
	}
	.main_area {
		padding: 0 15px;
	}
	
	/* 바로가기 메뉴 */
	.quick_menu .quick_menu_wrap .quick_menu_item h2 {
		font-size: 14px;
	}
	
	/* 문의 */
	.contact_content {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.contact_content div {
		flex-direction: row;
	}
	
	/* 게시글 */
	.board_type1 .post_list > ul {
		padding: 5px 20px;
	}
	.board_type1 .post_list > ul li a div {
		font-size: 12px;
	}
	.board_type1 .post_list > ul li a .post_date {
		margin-left: 15px;
	}
	.board_type2 .board_list > ul li.board_item {
		margin: 0 12px;
		font-size: 15px;
	}
	.board_type2 .board_list > ul li.board_item {
		font-size: 16px;
	}
	.board_type2 .board_list a.see_more i {
		transform: scale(0.7);
	}
	.board_type2 .post_list > ul li {
		flex-basis: 100%;
	}
}
@media (max-width: 479px) { 
	.main_swife .reserve_area .reserve .reserve_box { margin: 0 20px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_info { padding: 16px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_search span.reserve_tit { padding: 0; min-width: 100px; }
	.main_swife .reserve_area .reserve .reserve_box .reserve_search input.reserve_input {width: calc(100% - 40px);}
}


/* 대표홈페이지 빠른예약 */
.mainContent{
    position: relative;
    max-width:1200px;
    margin: 0 auto;
    height:572px;
    display: flex;
}

.mainContent .sloganWrap{
    width:472px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mainContent .sloganWrap strong{
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    word-spacing: 0rem;
    padding-bottom: 20px;
    text-shadow: 0 0px 5px rgba(0,0,0,1);
}
.mainContent .sloganWrap span{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0 0px 5px rgba(0,0,0,1);
}
.mainContent .accessWrap{
    width: calc( 1200px - 472px );
    display:flex;
    flex-direction: column;
    align-items: flex-end;
}

.mainContent .firstAccess,
.mainContent .secondAccess{
    width:660px;
    display: flex;
}
.mainContent .thirdAccess{
    width:672px;
    display: flex;
}
.mainContent .firstAccess *,
.mainContent .secondAccess *,
.mainContent .thirdAccess *{
    color:#fff;
}

.mainContent .accessWrap h2,
.mainContent .accessWrap em{
    font-weight: 700;
    font-size: 20px;
}
.mainContent .accessWrap h2{
    letter-spacing: 0;
    display: inline-block;
    width:92px;
    margin-left:21px;
    margin-right:35px;
}
.mainContent .accessWrap em{
    letter-spacing: 1px;
    display: inline-block;
}
.mainContent .accessWrap .accessWrapPadding{
    padding-left:12px;
}
.mainContent .firstAccess{
    border-bottom: 1px solid #fff;
    padding-top: 100px;
    padding-bottom:12px;
    display: flex;
    align-items: center;
}

.mainContent .firstAccess i{
    position: relative;
    display: inline-block;
    width: 36px;
    height:36px;
    background-color: rgba(38,119,187,0.7);
    border-radius: 50%;
}
.mainContent .firstAccess i:after{
    position: absolute;
    content: "";
    width:18px;
    height:18px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background-image: url("../icon/doctor.svg");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
}
.mainContent .firstAccess h2{
    line-height: 36px;
    display: inline-block;
}

.mainContent .firstAccess input{
    font-size: 18px;
    color: rgba(255,255,255);
    letter-spacing: 1px;
    font-weight: 500;
    background-color: transparent;
    border: none;
    /* width: calc( 100% - 36px - 21px - 92px - 35px - 36px- 24px ) */
    width: calc( 100% - 60px - 92px - 36px - 56px );
}
.mainContent .firstAccess input::-webkit-input-placeholder {
    color: #ffffff; /*Change the placeholder color*/
    opacity: 0.6; /*Change the opacity between 0 and 1*/
}

.mainContent .firstAccess input:focus{
    outline: none;
}

.mainContent .firstAccess button{
    background-image: url("../icon/search.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width:24px;
    height:24px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    margin: 0 18px;
}

.mainContent .secondAccess{
    padding-top: 24px;
    flex-direction: column;
}

.mainContent .secondAccess > :nth-child(1){
    display: flex;
    align-items: center;
}

.mainContent .secondAccess > :nth-child(1) i{
    position: relative;
    display: inline-block;
    width: 36px;
    height:36px;
    background-color: rgba(18,33,49,0.7);
    border-radius: 50%;
}
.mainContent .secondAccess > :nth-child(1) i:after{
    position: absolute;
    content: "";
    width:18px;
    height:18px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background-image: url("../icon/call.svg");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
}

.mainContent .secondAccess > div:nth-child(2){
    padding-top: 11px;
    display: flex;
    /* align-items: center; */
    line-height: 28px;
}

.mainContent .secondAccess > :nth-child(2) i{
    position: relative;
    display: inline-block;
    width: 36px;
    height:36px;
    background-color: rgba(18,33,49,0.7);
    border-radius: 50%;
}
.mainContent .secondAccess > :nth-child(2) i:after{
    position: absolute;
    content: "";
    width:18px;
    height:18px;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background-image: url("../icon/callcenter.svg");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
}

.mainContent .secondAccess > div:nth-child(2) h2{
    line-height: 36px;
}

.mainContent .secondAccess > div > div{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    padding-top:4px;
}

.mainContent .thirdAccess{
    margin-top: 36px;
    padding: 35px 50px 40px 43px;
    background-color: rgba(18,33,49,0.7);
    border-radius: 36px;
    display: flex;
    justify-content: space-between;
}

.mainContent .thirdAccess .thirdLeftAccess{
    margin-right:36px;
    display: inline-block;
    max-width: 113px;
}
.mainContent .thirdAccess .thirdLeftAccess i{
    display: inline-block;
    width:48px;
    height:48px;
    margin: 0 auto;
    background-image: url("../icon/reservation.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom:17px;
}
.mainContent .thirdAccess .thirdLeftAccess h2{
    margin:0;
    width: auto;
    padding-top:8px;
}
.mainContent .thirdAccess .thirdLeftAccess{
    display: inline-block;
    text-align: center;
}
.mainContent .thirdAccess .thirdRightAccess .desc{font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
    margin-bottom:17px;
}
.mainContent .thirdAccess .thirdRightAccess input{
    padding:9px 16px;
    /* opacity: 0.5; */
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    font-weight: 400;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 8px;
}
.mainContent .thirdAccess .thirdRightAccess .inputWrap{
    display: flex;
    justify-content: space-between;
}

.mainContent .thirdAccess .thirdRightAccess input:focus{outline:none}

.mainContent .thirdAccess .thirdRightAccess input.name{
    width:120px;
}
.mainContent .thirdAccess .thirdRightAccess input.phone{
    width:165px;
}
.mainContent .thirdAccess .thirdRightAccess input.apply{
    background-color:#AB5389;
    border-radius: 8px;
    width:125px;
    cursor: pointer;
}

/* 온라인예약 추가 */
.main_swife .reserve_area .reserve .reserve_box .sep_02{border-radius:16px; background:rgba(18, 34, 49, 0.7);padding: 36px 44px; box-sizing: border-box;}
.main_swife .reserve_area .reserve .reserve_box .reserve_tit{display:flex; align-items:center; font-size:20px; font-weight:900; color:#fff; letter-spacing:-0.1px; gap:10px;}
.main_swife .reserve_area .reserve .reserve_box .reserve_tit i{display:inline-flex; width:24px; height:24px; align-items:center; justify-content:center;}
.main_swife .reserve_area .reserve .reserve_box .reserve_tit i img{width:100%; height:auto !important;}
.main_swife .reserve_area .reserve .reserve_box .reserve_link{display:flex;align-items: flex-start; border-bottom:1px solid #ddd; margin-bottom:29px; padding-bottom:34px;}
.main_swife .reserve_area .reserve .reserve_box .reserve_link .left{flex-basis:146px;}
.main_swife .reserve_area .reserve .reserve_box .reserve_link .reserve_tit{display: flex;margin-bottom: 10px;}
.main_swife .reserve_area .reserve .reserve_box .reserve_link .btn_wrap{display:flex; gap:10px; flex-wrap:wrap;}
.main_swife .reserve_area .reserve .reserve_box .reserve_link_btn{display: flex;padding: 0 30px; height: 40px;border-radius:10px;/* justify-content: space-around; */align-items: center;background: #a77bca;transition:all .3s;width:208px;}
.main_swife .reserve_area .reserve .reserve_box .reserve_link_btn span{display: block;width: 100%;font-size: 16px;font-weight: 700;color: #fff;padding-right: 30px;background: url(/styles/assets/img/arw_right01_white.png) no-repeat right center;}
.main_swife .reserve_area .reserve .reserve_box .reserve_link_btn:hover{background:#fff; border-color:#a77bca;}
.main_swife .reserve_area .reserve .reserve_box .reserve_link_btn:hover span{color:#a77bca; background: url(/styles/assets/img/arw_right01_purple.png) no-repeat right center;}

.main_swife .reserve_area .reserve .reserve_box .reserve_info{background:none;padding: 0; align-items:flex-start;}
.main_swife .reserve_area .reserve .reserve_box .reserve_info .left{flex-direction: row; flex-basis:146px;}
@media (max-width:768px){
	/* 768 : 온라인예약 추가 */
	.main_visual{height:680px;}
	.main_swife .reserve_area .reserve .reserve_box .sep_02{padding:16px;}
	.main_swife .reserve_area .reserve .reserve_box .reserve_tit{display:none;}
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .reserve_tit{display: flex;}
	.main_swife .reserve_area .reserve .reserve_box .reserve_info{flex-direction:column;}
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .reserve_tit{margin-bottom:10px;}
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .reserve_tit br{display:none;}
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left img{display:block;}

	.main_swife .reserve_area .reserve .reserve_box .reserve_link{flex-direction: column;margin-bottom:10px;padding-bottom:10px;}
	.main_swife .reserve_area .reserve .reserve_box .reserve_link .left,
	.main_swife .reserve_area .reserve .reserve_box .reserve_info .left{flex-basis:auto;}
	.main_swife .reserve_area .reserve .reserve_box .reserve_link_btn{flex-basis:48% !important;padding: 0 10px !important;}
}


/* 20251203 KJH 캡챠 추가 */
.main_swife .reserve_area .reserve .reserve_box .reserve_call { margin-bottom: 30px; }
.main_swife .reserve_area .reserve .reserve_box .sep_02 { padding: 30px 44px; }
.main_swife .reserve_area .reserve .reserve_box .reserve_link { margin-bottom: 20px; padding-bottom: 25px; }
.captcha_info { margin-top: 16px; align-items: center; }
.captcha_img { width: 125px; height: 42px; }
.captcha_img > img { height: 100%; }
.captcha_reset_btn { background-color: #fff; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; box-sizing: border-box; cursor: pointer; }

@media(max-width:1023px){
  .main_swife .reserve_area { top: 120px; }
  .main_swife .reserve_area .reserve .reserve_box .reserve_info { justify-content: start; gap: 0; }
}
@media(max-width:640px){
  .main_swife .reserve_area .reserve .reserve_box .sep_02 { padding: 16px; }
  .main_swife .reserve_area { top: 80px; }
  .main_swife .swife { height: 100%; }
  .captcha_info input { width: 48%; } 

  .checks { display: flex; font-size: 14px; }
  .main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_name, 
  .main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info .person_phone { width: 48%; flex: 1; }
  .main_swife .reserve_area .reserve .reserve_box .reserve_info .right .txt { font-size: 14px; }

	.captcha_reset_btn { width: 30px; height: 30px; }
}


/* HSM 20260102 음성캡차 추가 */
.main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input {width: 43.5%;}
.captcha_voice_btn { background-color: #fff; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; box-sizing: border-box; cursor: pointer; }

/* HSM 20260105 이전/다음 버튼 none */
.main_swiper_prev, .main_swiper_next {display: none;}

/* HSM 20260106 메인페이지 슬라이더 정지/재생 버튼 추가 */
.main_swiper_button > a  { display: flex; align-items: center; justify-content: center; width: 20px; height:20px;}
.main_swiper_pagination_area i {width: 10px; height: 10px; display: block; margin-bottom: 2px;}
.main_swiper_button > a > .xi-pause {background: url(/styles/assets/icon/ico_visual_pasue.png) no-repeat; background-size: cover; background-position: center; filter: brightness(0) invert(1);}
.main_swiper_button > a > .xi-play {background: url(/styles/assets/icon/ico_visual_play.png) no-repeat; background-size: cover; background-position: center; filter: brightness(0) invert(1);}

/* HSM 20260108 모바일메뉴 중앙치매센터 이미지 변경 */
.topHeader .mGnbSiteWrap .swiper-slide:nth-child(2) a div {background-image: url(../icon/mlogo8_20260108.png);}

/* HSM 20260123 음성캡차 및 input색상수정 */
@media (max-width: 1200px) {
  .main_swife .reserve_area .reserve .reserve_box .reserve_info .right .person_info input::placeholder { color: #666;}
}

@media (max-width: 640px) {
  .captcha_voice_btn {width: 30px; height: 30px;}
}


