@charset "utf-8";

/* Fullpage */
.fp_pagination {
	position: fixed;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 39px;
}

.fp_dot {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fp_dot .dot_circle {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 9999px;
	border: 2px solid #fff;
}

.fp_dot img {
	width: 30px;
	height: 30px;
}

.fp_pagination .fp_dot .dot_circle,
.fp_pagination .fp_dot img {
	transition: border-color 0.3s, filter 0.3s;
}

.fp_pagination.light_bg .fp_dot .dot_circle {
	border-color: #A48B78;
}

.fp_pagination.light_bg .fp_dot img {
	filter: brightness(0) saturate(100%) invert(58%) sepia(15%) saturate(748%) hue-rotate(348deg) brightness(90%) contrast(87%);
}

/* Main Visual */
.mv_box {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.mv_swiper {
	width: 100%;
	height: 100%;
}

.mv_swiper .swiper-slide {
	position: relative;
	overflow: hidden;
}

.mv_bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.mv_content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0 40px;
}

.mv_text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	max-width: 759px;
	margin-bottom: 200px;
}

.mv_title {
	text-align: center;
	font-size: 62px;
	font-family: 'Pretendard', sans-serif;
	line-height: 1.3;
	word-break: keep-all;
	text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
}

.mv_title .light {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
}

.mv_title .bold {
	color: #fff;
	font-weight: 600;
}

.mv_subtitle {
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 24px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 500;
	text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
}

.mv_features {
	position: absolute;
	left: 239px;
	bottom: 140px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	z-index: 3;
}

.mv_feature_item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.mv_feature_item svg {
	flex-shrink: 0;
	filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.4));
}

.mv_feature_item span {
	color: #fff;
	font-size: 24px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 400;
	text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
}

.mv_scroll_down {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.mv_scroll_down span {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	color: #fff;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);

	height: fit-content;
}

.mv_scroll_arrow {
	display: flex;
	justify-content: center;
	animation: scrollBounce 2s ease-in-out infinite;
	filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.4));
}

@keyframes scrollBounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(10px);
	}
}

.mv_progress_bar {
	position: absolute;
	right: 0;
	bottom: 100px;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 0 calc((100% - 1400px) / 2);
	width: 60%;
	box-sizing: border-box;
}

.mv_current_num,
.mv_total_num {
	color: rgba(255, 255, 255, 0.8);
	font-size: 28px;
	font-family: 'Jost', 'Pretendard', sans-serif;
	font-weight: 400;
	flex-shrink: 0;
}

.mv_progress_track {
	flex: 1;
	height: 1px;
	background: rgba(217, 217, 217, 0.4);
	position: relative;
}

.mv_progress_fill {
	position: absolute;
	left: 0;
	top: -0.5px;
	height: 2px;
	width: 0%;
	background: #D9D9D9;
}

/* Section Reason */
.section_reason {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #fff;
	font-family: 'Pretendard', sans-serif;
	height: 100%;
}

.section_reason .section_bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

/* .section_reason .section_overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(69, 38, 2, 0.6);
} */

.section_reason .inner {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
}

.section_reason .section_eng {
	color: rgba(255, 255, 255, 0.2);
	font-size: 40px;
	font-family: 'GF_BadGuy', 'Dancing Script', 'Pretendard', sans-serif;
	font-weight: 400;
}

.section_reason .header {
	position: relative;
	margin-top: -10px;
	width: fit-content;
	margin-bottom: 150px;
}

.section_reason .deco_circle01 {
	position: absolute;
	right: -47px;
	top: -4px;
	width: 136px;
	height: 136px;
	border-radius: 9999px;
	background: rgba(164, 139, 120, 0.6);
	z-index: -1;
}

.section_reason .deco_circle02 {
	position: absolute;
	right: -63px;
	top: 72px;
	width: 66px;
	height: 66px;
	border-radius: 9999px;
	background: rgba(164, 139, 120, 0.2);
	z-index: -1;
}

.section_reason .sub_title {
	color: rgba(255, 255, 255, 0.8);
	font-size: 54px;
	font-weight: 300;
	margin: 0;
}

.section_reason .title {
	color: #fff;
	font-size: 64px;
	font-weight: 600;
	margin: 0;
}

.section_reason .container {
	display: flex;
	justify-content: center;
	gap: 200px;
	margin-top: 120px;
}

.section_reason .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	position: relative;
}

.section_reason .item:after {
	content: '';
	position: absolute;
	top: 50%;
	right: -50%;
	transform: translateY(-50%);
	width: 1px;
	background-color: rgba(255, 255, 255, 0.40);
	max-height: 180px;
	height: 100%;
}

.section_reason .item:last-child:after {
	display: none;
}

.section_reason .icon_circle {
	width: 110px;
	height: 110px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.section_reason .icon_circle img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.section_reason .text {
	text-align: center;
	font-size: 28px;
	line-height: 1.5;
}

.section_reason .text .light {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 400;
}

.section_reason .text .bold {
	color: #fff;
	font-weight: 700;
}

@media screen and (max-width: 1600px) {
	.mv_features {
		left: 120px;
	}

	.section_reason .container {
		gap: 100px;
	}

	.section_reason .item:after {
		right: -20%;
	}
}

@media screen and (max-width: 1200px) {
	.mv_title {
		font-size: 48px;
	}

	.mv_subtitle {
		font-size: 20px;
	}

	.mv_text {
		gap: 40px;
	}

	.mv_features {
		left: 80px;
		bottom: 120px;
	}

	.mv_feature_item span {
		font-size: 24px;
	}

	.mv_progress_bar {
		padding: 0 80px;
		width: 65%;
	}

	.section_reason .sub_title {
		font-size: 42px;
	}

	.section_reason .title {
		font-size: 52px;
	}

	.section_reason .container {
		gap: 60px;
	}

	.section_reason .text {
		font-size: 22px;
	}

	.section_reason .header {
		margin-bottom: 100px;
	}
}

@media screen and (max-width: 1000px) {
	.fp_pagination {
		display: none !important;
	}

	.section_reason .item:after {
		display: none;
	}

	.mv_box {
		height: calc(100vh);
	}

	.section_reason {
		height: auto;
	}

	.mv_title {
		font-size: 38px;
	}

	.mv_subtitle {
		display: none;
	}

	.mv_features {
		left: 40px;
		right: 40px;
		bottom: 180px;
	}

	.mv_scroll_down {
		display: none;
	}

	.mv_progress_bar {
		left: 0;
		right: 0;
		width: 100%;
		padding: 0 40px;
		bottom: 60px;
		gap: 20px;
	}

	.mv_current_num,
	.mv_total_num {
		font-size: 22px;
	}

	.section_reason {
		padding: 100px 0;
	}

	.section_reason .inner {
		padding: 0 40px;
	}

	.section_reason .section_eng {
		font-size: 28px;
	}

	.section_reason .sub_title {
		font-size: 34px;
	}

	.section_reason .title {
		font-size: 42px;
	}

	.section_reason .container {
		flex-direction: column;
		align-items: center;
		gap: 60px;
		margin-top: 80px;
	}

	.section_reason .deco_circle01,
	.section_reason .deco_circle02 {
		display: none;
	}
}

@media screen and (max-width: 640px) {
	.mv_content {
		padding: ;
	}

	.mv_title {
		font-size: 28px;
	}

	.mv_subtitle {
		font-size: 15px;
	}

	.mv_text {
		gap: 28px;
	}

	.mv_feature_item span {
		font-size: 17px;
		line-height: 1.4;
	}

	.mv_feature_item svg {
		width: 16px;
		height: 16px;
	}

	.mv_features {
		left: 45px;
		right: 45px;
		bottom: 150px;
		gap: 6px;
	}

	.mv_feature_item {
		gap: 10px;
	}

	.mv_progress_bar {
		padding: 0 20px;
		bottom: 40px;
		gap: 16px;
	}

	.mv_current_num,
	.mv_total_num {
		font-size: 18px;
	}

	.section_reason {
		padding: 80px 0;
	}

	.section_reason .inner {
		padding: 0 20px;
	}

	.section_reason .section_eng {
		font-size: 20px;
		text-align: center;
	}

	.section_reason .header {
		margin: 0 auto;
	}

	.section_reason .sub_title {
		font-size: 26px;
	}

	.section_reason .title {
		font-size: 34px;
	}

	.section_reason .text {
		font-size: 20px;
	}

	.section_reason .icon_circle {
		width: 90px;
		height: 90px;
	}

	.section_reason .icon_circle img {
		width: 48px;
		height: 48px;
	}

	.section_reason .item {
		gap: 40px;
	}

	.section_reason .container {
		margin-top: 60px;
		gap: 50px;
	}
}

/* Section Center */
.section_center {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #A48B78;
	font-family: 'Pretendard', sans-serif;
	height: 100%;
	background-size: contain;
	background-position: center;
}

.section_center .inner {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
}

.section_center .container {
	display: flex;
	align-items: center;
	gap: 60px;
}

.section_center .text_area {
	flex: 0 0 35%;
}

.section_center .title {
	color: #fff;
	font-size: 48px;
	line-height: 1.4;
	margin: 0;
}

.section_center .title .light {
	font-weight: 300;
	word-break: keep-all;
}

.section_center .title .bold {
	font-weight: 600;
}

.section_center .card_area {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2vh;
}

.section_center .card_row {
	display: flex;
	gap: 20px;
}

.section_center .card_row.offset {
	transform: translateX(120px);
}

.section_center .card {
	flex: 1;
	aspect-ratio: 1 / 0.68;
	max-width: 350px;
	max-height: 222px;
	padding: 20px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.20);
	box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.10);
	border: 2px solid #BFB1A4;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 30px;
	text-decoration: none;
	position: relative;
	transition: background 0.3s, border 0.3s;
}

.section_center .card:hover {
	background: #fff;
	border: 2px solid transparent;
}

.section_center .card .icon_circle {
	width: 4.5vw;
	height: 4.5vw;
	max-width: 80px;
	max-height: 80px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.80);
	overflow: hidden;
	transition: background 0.3s;
}

.section_center .card:hover .icon_circle {
	background: #F5F2ED;
}

.section_center .card .icon_circle img {
	width: 50%;
	height: 50%;
	object-fit: contain;
}

.section_center .card .arrow {
	position: absolute;
	right: 8%;
	bottom: 10%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 9999px;
	background: #fff;
	box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
	color: #A48B78;
	transition: background 0.3s, color 0.3s;
}

.section_center .card:hover .arrow {
	background: #C6A681;
	color: #fff;
}

.section_center .card .name {
	margin: 0;
	font-size: clamp(20px, 1.6vw, 28px);
	font-weight: 500;
	color: #fff;
	transition: color 0.3s;
}

.section_center .card:hover .name {
	color: #A48B78;
	font-weight: 700;
}

@media screen and (max-width: 1600px) {
	.section_center .title {
		font-size: 40px;
	}


	.section_center .card {
		border-radius: 24px;
	}


}

@media screen and (max-width: 1400px) {
	.section_center .card_row.offset {
		transform: translateX(0px);
	}
}

@media screen and (max-width: 1200px) {
	.section_center .title {
		font-size: 34px;
	}

	.section_center .container {
		gap: 40px;
	}


	.section_center .card {
		border-radius: 20px;
	}

	.section_center .card .arrow {
		width: 36px;
		height: 36px;
	}
}

@media screen and (max-width: 1000px) {


	.section_center .card_area {
		width: 100%;
	}

	.section_center {
		height: auto;
		padding: 80px 0;
	}

	.section_center .inner {
		padding: 0 40px;
	}

	.section_center .container {
		flex-direction: column;
		gap: 40px;
	}

	.section_center .text_area {
		flex: none;
		width: 100%;
	}

	.section_center .title {
		font-size: 28px;
	}


	.section_center .card {
		aspect-ratio: auto;
		padding: 24px;
		border-radius: 16px;
	}

	.section_center .card .icon_circle {
		width: 70px;
		height: 70px;
	}

	.section_center .card .arrow {
		width: 36px;
		height: 36px;
		bottom: 24px;
		right: 24px;
	}
}

@media screen and (max-width: 640px) {
	.section_center {
		padding: 60px 0;
	}

	.section_center .inner {
		padding: 0 20px;
	}

	.section_center .title {
		font-size: 22px;
	}

	.section_center .card_row {
		flex-direction: column;
		gap: 12px;
	}

	.section_center .card_area {
		gap: 12px;
	}

	.section_center .card {
		padding: 20px;
		flex-direction: row;
		align-items: center;
		gap: 16px;
	}

	.section_center .card .icon_circle {
		width: 56px;
		height: 56px;
		flex-shrink: 0;
	}

	.section_center .card .arrow {
		position: static;
		width: 32px;
		height: 32px;
		flex-shrink: 0;
		margin-left: auto;
		order: 3;
	}

	.section_center .card .name {
		flex: 1;
	}

	.section_center .card {
		max-width: unset;
		max-height: unset;
	}
}

/* Section Info */
.section_info {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #F8F5F2;
	font-family: 'Pretendard', sans-serif;
	height: 100%;
	overflow: hidden;
}

.section_info .inner {
	position: relative;
	z-index: 2;
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	padding-top: 80px;
	flex: 1;
}

.section_info .container {
	display: flex;
	gap: 60px;
}

.section_info .area_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 10px;
	border-bottom: 1.5px solid rgba(198, 166, 129, 0.20);
}

.section_info .area_title {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #424242;
	font-size: 30px;
	font-weight: 600;
}

.section_info .area_title .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #FFF7ED;
	border-radius: 9999px;
}

.section_info .area_title .icon img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.section_info .view_all {
	color: #A48B78;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.section_info .notice_area {
	flex: 0 0 45%;
}

.section_info .notice_list {
	padding-top: 20px;
}

.section_info .notice_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 16px;
	text-decoration: none;
}

.section_info .notice_item .left {
	display: flex;
	align-items: center;
	gap: 43px;
	flex: 1;
}

.section_info .notice_item .badge {
	flex-shrink: 0;
	padding: 2px 4px;
	background: #BFB1A4;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
}

.section_info .notice_item .subject {
	color: #424242;
	font-size: 16px;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.section_info .notice_item .subject.event {
	color: #C6A681;
	font-weight: 600;
}

.section_info .notice_item .date {
	flex-shrink: 0;
	color: #A48B78;
	font-size: 14px;
	font-weight: 500;
	margin-left: 40px;
}

.section_info .medical_area {
	flex: 1;
}

.section_info .medical_cards {
	display: flex;
	gap: 20px;
	margin-top: 55px;
}

.section_info .medical_card {
	flex: 1;
	padding: 40px;
	padding-bottom: 64px;
	background: #fff;
	border-radius: 20px;
}

.section_info .medical_card.dark {
	background: #A48B78;
}

.section_info .card_title {
	margin: 0 0 34px 0;
	font-size: 20px;
	font-weight: 700;
	color: #424242;
}

.section_info .medical_card.dark .card_title {
	color: #fff;
	margin-bottom: 28px;
}

.section_info .time_list {
	display: flex;
	flex-direction: column;
}

.section_info .time_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(198, 166, 129, 0.20);
}

.section_info .time_row .label,
.section_info .time_row .value {
	color: #424242;
	font-size: 16px;
	font-weight: 500;
}

.section_info .address_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.section_info .address {
	margin: 0;
	padding: 12px 0;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}

.section_info .phone_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.section_info .phone {
	margin: 0;
	color: #452602;
	font-size: 30px;
	font-weight: 500;
}

.section_info .phone_label {
	margin: 0;
	color: rgba(255, 255, 255, 0.50);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}

.section_info .bottom_map {
	/* position: absolute;
	left: 0;
	bottom: 0; */
	width: 100%;
	height: 300px;
	/* margin-top: 70px; */
	/* background-size: cover;
	background-position: center; */
}

.section_info .fp_dot .dot_circle {
	border-color: #A48B78;
}

.root_daum_roughmap {
	width: 100% !important;
}

.root_daum_roughmap .wrap_map {
	height: 300px !important;
}

.root_daum_roughmap .cont,
.root_daum_roughmap .wrap_controllers {
	display: none !important;
}

.map_flex_box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}


@media screen and (max-width: 1600px) {
	.section_info .area_title {
		font-size: 26px;
	}

	.section_info .notice_item .left {
		gap: 30px;
	}

	.section_info .medical_cards {
		margin-top: 40px;
	}

	.fp_pagination {
		left: 10px;
	}
}

@media screen and (max-width: 1200px) {
	.section_info .inner {
		padding-top: 80px;
	}

	.section_info .container {
		gap: 40px;
	}

	.section_info .area_title {
		font-size: 24px;
	}

	.section_info .notice_item .left {
		gap: 20px;
	}

	.section_info .notice_item .date {
		margin-left: 20px;
	}

	.section_info .medical_card {
		padding: 30px;
		padding-bottom: 50px;
	}

	.section_info .phone {
		font-size: 24px;
	}

	.section_info .time_row {
		gap: 30px;
	}
}

@media screen and (max-width: 1000px) {

	.map_flex_box {
		gap: 60px;
	}

	.section_info {
		height: auto;
		padding-bottom: 0;
	}

	.section_info .inner {
		padding: 60px 40px 0;
	}

	.section_info .container {
		flex-direction: column;
		gap: 40px;
	}

	.section_info .notice_area {
		flex: none;
	}

	.section_info .medical_cards {
		margin-top: 30px;
	}

	.section_center .title .bold br {
		display: none;
	}

}

@media screen and (max-width: 640px) {
	.section_info .inner {
		padding: 40px 20px 0;
	}

	.section_info .area_title {
		font-size: 22px;
	}

	.section_info .notice_item {
		padding: 16px 10px;
	}

	.section_info .notice_item .left {
		gap: 12px;
	}

	.section_info .notice_item .subject {
		font-size: 14px;
	}

	.section_info .notice_item .date {
		display: none;
	}

	.section_info .medical_cards {
		flex-direction: column;
		gap: 12px;
	}

	.section_info .medical_card {
		padding: 24px;
		padding-bottom: 40px;
	}

	.section_info .phone {
		font-size: 22px;
	}

	.section_info .time_row {
		gap: 20px;
	}

	.section_info .time_row .label,
	.section_info .time_row .value {
		font-size: 14px;
	}

}