@charset "UTF-8";

#main {
	font-family: "Noto Sans KR", sans-serif;
	overflow: hidden;
}
section {
	width: 100%;
}

.pc_img {
	display: block;
}
.mo_img {
	display: none;
}

.p_br {
	display: block;
}
.m_br {
	display: none;
}

.intro {
	position: relative; /* 필요시 position을 조정 */
	transform: translateY(-20px); /* 처음 위치를 화면 위쪽으로 이동 */
	opacity: 0.9; /* 처음엔 보이지 않게 설정 */
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.intro.active {
	transform: translateY(0); /* 제자리로 이동 */
	opacity: 1; /* 보이게 설정 */
}

/* 컨테이너 */
.sub_container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.sub_cage {
	padding: 100px 0;
}

/* 공통 타이틀 */
.sub_common_title {
	text-align: center;
	position: relative;
	z-index: 1;
}
.sub_common_title .sub_small {
	font-size: 25px;
	font-weight: 400;
	color: #898989;
	text-transform: uppercase;
	letter-spacing: -1.2px;
}
.sub_common_title .sub_small em {
	font-style: italic;
}
.sub_common_title .sub_title {
	font-size: 48px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -1.2px;
}
.sub_common_title .sub_desc {
	font-size: 25px;
	line-height: 40px;
	margin-top: 30px;
	letter-spacing: -1.2px;
	word-break: keep-all;
	font-weight: 400;
}
.sub_common_title .sub_desc b,
.sub_common_title .sub_desc span {
	font-weight: 600;
}

/* 페이지별 포인트 컬러 색상 */
.sub01 .point {
	color: #b48f74;
}
.sub02 .point {
	color: #a26c65;
}
.sub03 .point {
	color: #bd6d82;
}
.sub04 .point {
	color: #b05491;
}
.sub05 .point {
	color: #bf8f73;
}
.sub06 .point {
	color: #b09165;
}

/* sub_top */
.sub_top {
	margin-top: 134px;
	background-color: #f9f9f9;
}
.sub_top ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sub_top ul li {
	display: inline-block;
}
.sub_top ul li a {
	display: inline-block;
	color: #101010;
	letter-spacing: -0.5px;
	font-size: 18px;
	font-weight: 400;
	padding: 20px;
}
.sub_top ul li.active a {
	color: #f73131;
}

/* 서브페이지 드롭다운 메뉴 */
.mo_sub_menu {
	display: none;
}

/* 서브페이지 메인배너 */
.sub_hero {
	width: 100%;
	height: 844px;
	overflow: hidden;
	position: relative;
}
.sub_hero .sub_hero_img {
	margin-top: 44px;
	width: 100%;
	height: 800px;
	position: relative;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-use-select: none;
	user-select: none;
}

.sub_hero .sub_hero_img img {
	width: 100%;
	height: 800px;
	vertical-align: top;
	object-fit: cover;
	transform: scale(1.2);
	transition: all 2s cubic-bezier(0.37, 0, 0.63, 1);
}
.mo_banner {
	display: none;
}
.sub_hero .sub_hero_img.active img {
	transform: scale(1);
}
.sub_hero .sub_hero_txt {
	position: absolute;
	top: calc(50% + 44px);
	transform: translateY(-50%);
	color: #fff;
	letter-spacing: -1.2px;
}
.sub_hero .sub_hero_txt h2 {
	font-size: 65px;
	line-height: 80px;
	font-weight: 400;
	letter-spacing: -1.2px; 
}

.sub_hero .sub_hero_txt h2.t2 {
	font-weight: 600;
}
.sub_hero .sub_hero_txt h2 b {
	font-weight: 600;
}
.sub_hero .sub_hero_txt p {
	font-size: 28px;
	line-height: 80px;
	color: #ffffffbf;
	font-weight: 400;
}
.sub_hero .sub_hero_txt p b {
	font-weight: 600;
}

/* 초기 상태: 텍스트 블록 숨김 */
.sub_hero .sub_hero_txt .t1,
.sub_hero .sub_hero_txt .t2,
.sub_hero .sub_hero_txt .t3 {
	opacity: 0;
	transform: translateX(200px);
	transition: all 2s cubic-bezier(0.33, 1, 0.68, 1);
}

.sub_hero .sub_hero_txt.active .t1,
.sub_hero .sub_hero_txt.active .t2,
.sub_hero .sub_hero_txt.active .t3 {
	opacity: 1;
	transform: translateX(0);
}

/* 텍스트 블록 딜레이 */
.sub_hero .sub_hero_txt .t2 {
	transition-delay: 0.3s;
}
.sub_hero .sub_hero_txt .t3 {
	transition-delay: 0.5s;
}

/* 글자 초기 상태 */
.sub_hero .sub_hero_txt .char {
	display: inline-block;
	opacity: 0;
	filter: blur(4px);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); /* 부드러운 트랜지션 */
}

/* 글자가 나타나는 상태 */
.sub_hero .sub_hero_txt.active .char {
	opacity: 1;
	filter: blur(0);
}

/* 글자별 딜레이 */
.sub_hero .sub_hero_txt .t1 .char {
	transition-delay: calc(var(--char-index) * 0.12s);
}
.sub_hero .sub_hero_txt .t2 .char {
	transition-delay: calc(0.3s + var(--char-index) * 0.12s);
}
.sub_hero .sub_hero_txt .t3 .char {
	transition-delay: calc(0.5s + var(--char-index) * 0.12s);
}


/* 소개페이지 상단 배너 */
.intro_hero {
	width: 100%;
	height: 440px;
	overflow: hidden;
	position: relative;
}
.intro_hero .intro_hero_img {
	width: 100%;
	height: 440px;
	position: relative;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-use-select: none;
	user-select: none;
}
.intro_hero .intro_hero_img img {
	width: 100%;
	height: 440px;
	vertical-align: top;
	object-fit: cover;
}
/* 수술정보 */
.sub_surgery {
	background-color: #f9f9f9;
}
.sub_surgery .sub_container {
	padding: 55px 0;
}
.sub_surgery h3 {
	font-family: "Montserrat";
	text-transform: uppercase;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: #1c1e29;
	letter-spacing: 5px;
}
.sub_surgery .info_list {
	width: 50%;
	margin: 50px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
}
.sub_surgery .info_list li {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 25%;
}
.sub_surgery .info_list li .icon {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.sub_surgery .info_list li .icon img {
	width: 100%;
}

.sub_surgery .info_list li .txt {
	text-align: center;
	letter-spacing: -1.2px;
}
.sub_surgery .info_list li .txt span {
	font-size: 15px;
	line-height: 30px;
	color: #878787;
}

.sub_surgery .info_list li .txt p {
	font-size: 19px;
	line-height: 30px;
	color: #000;
}

/* 유튜브 */
.sub_youtube {
}
.sub_youtube .youtube_video {
	margin: 0 auto;
	max-width: 928px;
	width: 100%;
	aspect-ratio: 16/9;
}
.sub_youtube .youtube_video iframe {
	width: 100%;
	height: 100%;
}

/* 메이드영 기술력 */
.sub_tech {
	background-color: #242424;
}
.sub_tech .sub_common_title .sub_small {
	color: #707070;
	font-size: 18px;
	font-family: "Montserrat", sans-serif;
	letter-spacing: 1.7px;
	font-weight: 600;
}
.sub_tech .sub_common_title .sub_title {
	color: #fff;
	margin-top: 7px;
}
.sub_tech .sub_common_title .sub_title .point {
	color: #efd0a7;
}
.sub_tech .tech_list {
	margin-top: 70px;
}
.sub_tech .tech_list ul {
	display: flex;
	gap: 0 30px;
	justify-content: center;
}
.sub_tech .tech_list ul li img {
	width: 100%;
}
.bottom_m_br {
	display: none;
}
/* 공통하단 */
/* 당연히 메이드영 5원칙(고정) */
.sub_bottom_fixed {
	position: relative;
}
.sub_bottom_fixed .bg_area {
}
.sub_bottom_fixed .list_area {
	width: 64%;
	position: absolute;
	left: 50%;
	top: 60%;
	text-align: center;
	transform: translate(-50%, -50%);
}
.sub_bottom_fixed .list_area ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3vw; /* 항목 사이의 간격을 0으로 설정 */
}

.sub_bottom_fixed .list_area ul li {
	width: 30%;
	position: relative;
}

.sub_bottom_fixed .list_area ul li:nth-child(1)::before,
.sub_bottom_fixed .list_area ul li:nth-child(4)::before {
	display: none;
}

.sub_bottom_fixed .list_area ul li::before {
	position: absolute;
	content: "";
	left: -1.5vw;
	top: 0;
	width: 1px;
	height: 100%;
	transform: scaleX(0.5);
	background-color: #ffffffa2;
}
.sub_bottom_fixed .list_area ul li .tit {
	font-size: 1vw;
	letter-spacing: -1.2px;
	color: #524739;
	font-weight: 400;
	background-color: #dbbd98;
	padding: 3% 0;
	border-radius: 5vw;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	line-height: 1.5;
}
.sub_bottom_fixed .list_area ul li .tit .m_num {
	display: none;
}
.sub_bottom_fixed .list_area ul li .tit b {
	color: #191919;
	font-size: 1.2vw;
	letter-spacing: -1.2px;
	font-weight: 600;
	margin-left: 10px;
	line-height: 1.3;
}
.sub_bottom_fixed .list_area ul li .desc {
	font-size: 1vw;
	color: #cbcbcb;
	line-height: 1.5;
	letter-spacing: -1.2px;
	font-weight: 400;
	margin-top: 1.6vw;
}
.sub_bottom_fixed .list_area ul li .desc b {
	font-weight: 600;
	color: #fff;
}

/* 장남 원장님 + 박병찬 원장님 */
.sub_bottom_dr_jang_park {
	position: relative;
}
.sub_bottom_dr_jang_park .bg_area {
	background-image: url('/images/middle-aged/utils/dr_park_jang_pc.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}
.sub_bottom_dr_jang_park .txt_area {
	padding: 150px 0 95px;
	margin: 0 auto;
	width: 100%;
	text-align: center;
}
.sub_bottom_dr_jang_park .txt_area .tit {
	font-size: 52px;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: -1.2px;
	margin-bottom: 50px;
}
.sub_bottom_dr_jang_park .txt_area .list {
	display: flex;
	flex-direction: column;
	gap: 12px 0;
	width: 596px;
	margin: 0 auto;
}
.sub_bottom_dr_jang_park .txt_area .list li {
	display: flex;
	align-items: center;
	background-color: #fff;
	border: 1px solid #d5d5d5;
	border-radius: 50px;
	height: 72px;
	padding: 0 28%;
	
}
.sub_bottom_dr_jang_park .txt_area .list li span {
	font-family: "Exo soft", sans-serif;
	font-size: 20px;
	margin-top: 5px;
	letter-spacing: -1.2px;
	margin-right: 20px;
	font-weight: 700;
	color:#bca382;
}
.sub_bottom_dr_jang_park .txt_area .list li p {
	font-size: 24px;
	letter-spacing: -1.2px;
	font-weight: 400;
}
.sub_bottom_dr_jang_park .txt_area .list li p b {
	font-weight: 600;
}
.sub_bottom_dr_jang_park .txt_area .sub_tit {
	margin-top: 50px;
  letter-spacing: -1.2px;
}
.sub_bottom_dr_jang_park .txt_area .sub_tit span {
	font-size: 35px;
	line-height: 1.3;
	font-weight: 600;
}
.sub_bottom_dr_jang_park .txt_area .sub_tit .desc {
	font-size: 26px;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: -1.2px;
	margin-top: 28px;
}
.sub_bottom_dr_jang_park .txt_area .sub_tit .desc span,
.sub_bottom_dr_jang_park .txt_area .sub_tit .desc b {
	font-weight: 600;
}
.sub_bottom_dr_jang_park .point {
	color: #bca382;
}
.sub_bottom_dr_jang_park .dr_area {
	position: absolute;
	bottom: 3%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	width: 1400px;
	box-sizing: border-box;
}

.sub_bottom_dr_jang_park .dr_area .txt {
	background-color: #000;
	padding: 3px 10px;
}
.sub_bottom_dr_jang_park .dr_area .txt {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}
.sub_bottom_dr_jang_park .dr_area .txt span {
	line-height: 2;
}
.sub_bottom_dr_jang_park .dr_area .txt b {
	font-size: 22px;
	font-weight: 600;
}
.sub_bottom_dr_jang_park .dr_area .img {
	width: 50%;
	margin: 2% auto 0;
}
.sub_bottom_dr_jang_park .dr_area_mo {
	display: none;
}


/* 박병찬 원장님 */
.sub_bottom_dr_park {
	position: relative;
}
.sub_bottom_dr_park .bg_area {
	background-image: url(/images/middle-aged/utils/dr_park_pc.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.sub_bottom_dr_park .bg_area .sub_container {
	display: flex;
	justify-content: end;
}
.sub_bottom_dr_park .txt_area {
	padding: 200px 0;
	width: 45%;
}
.sub_bottom_dr_park .txt_area .tit > span {
	font-size: 24px;
	font-weight: 400;
	color: #898989;
	letter-spacing: -1.2px;
}
.sub_bottom_dr_park .point {
	color: #bca382;
}
.sub_bottom_dr_park .txt_area .tit .title {
	font-size: 52px;
	line-height: 1.2;
	letter-spacing: -1.4px;
	font-weight: 600;
	margin: 10px 0 90px;
}
.sub_bottom_dr_park .txt_area .intro {
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: -1.2px;
	font-weight: 400;
	margin-bottom: 54px;
	position: relative;
}
.sub_bottom_dr_park .txt_area .intro::before {
	position: absolute;
	content: "";
	width: 64px;
	height: 1px;
	left: 0;
	top: -32px;
	background-color: #000;
}
.sub_bottom_dr_park .txt_area .intro b {
	font-weight: 600;
}
.sub_bottom_dr_park .txt_area .dr {
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	background-color: #000;
	display: inline-block;
	padding: 2px 10px 6px;
	position: relative;
}
.sub_bottom_dr_park .txt_area .dr b {
	font-size: 26px;
	font-weight: 600;
}

.sub_bottom_dr_park .txt_area .dr::before {
	position: absolute;
	content: "";
	background-image: url(/images/middle-aged/utils/dr_park_sign.png);
	background-repeat: no-repeat;
	background-position: center;
	right: -150px;
	top: 50%;
	transform: translateY(-50%);
	width: 50%;
	height: 100px;
}

.sub_bottom_dr_jang {
	position: relative;
}
.sub_bottom_dr_jang .point {
	color: #bca382;
}
.sub_bottom_dr_jang .bg_area {
	background-image: url(/images/middle-aged/utils/dr_jang_pc.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.sub_bottom_dr_jang .bg_area .sub_container {
	display: flex;
	justify-content: end;
}
.sub_bottom_dr_jang .txt_area {
	padding: 150px 0;
	width: 55%;
}
.sub_bottom_dr_jang .txt_area .tit {
	font-size: 52px;
	line-height: 1.2;
	letter-spacing: -1.4px;
	font-weight: 600;
	margin: 10px 0 90px;
}
.sub_bottom_dr_jang .txt_area .intro {
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: -1.2px;
	font-weight: 400;
	margin-bottom: 40px;
	position: relative;
}
.sub_bottom_dr_jang .txt_area .intro::before {
	position: absolute;
	content: "";
	width: 64px;
	height: 1px;
	left: 0;
	top: -32px;
	background-color: #000;
}
.sub_bottom_dr_jang .txt_area .intro b {
	font-weight: 600;
}
.sub_bottom_dr_jang .txt_area .list {
	display: flex;
	gap: 0 10px;
	align-items: center;
	margin-bottom: 40px;
}
.sub_bottom_dr_jang .txt_area .list li {
	font-size: 22px;
	font-weight: 400;
	border: 1px solid #8a8a8a;
	border-radius: 30px;
	padding: 6px 20px 6px 50px;
	position: relative;
}
.sub_bottom_dr_jang .txt_area .list li::before {
	position: absolute;
	content: "";
	width: 23px;
	height: 15px;
	background-image: url(/images/middle-aged/utils/dr_jang_check.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.sub_bottom_dr_jang .txt_area .dr {
	font-size: 20px;
	font-weight: 400;
	color: #000;
	display: inline-block;
	position: relative;
}
.sub_bottom_dr_jang .txt_area .dr b {
	font-size: 26px;
	font-weight: 600;
}

.sub_bottom_dr_jang .txt_area .dr::before {
	position: absolute;
	content: "";
	background-image: url(/images/middle-aged/utils/dr_jang_sign.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	right: -150px;
	top: 50%;
	transform: translateY(-50%);
	width: 60%;
	height: 100px;
}

@media (min-width: 1950px) {
	.sub_hero {
		width: 100%;
		height: 944px;
	}
	.sub_hero .sub_hero_img {
		margin-top: 44px;
		width: 100%;
		height: 944px;
		position: relative;
	}
	.sub_hero .sub_hero_img img {
		width: 100%;
		height: 944px;
		vertical-align: top;
		object-fit: contain;
	}
	.sub_bottom_dr_jang_park .dr_area {
		position: absolute;
		bottom: 3%;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		justify-content: space-between;
		width: 66%;
		box-sizing: border-box;
	}
}
@media (max-width: 1440px){
	.sub_bottom_dr_jang_park .txt_area {
		padding: 100px 0 95px;
	}
	.sub_bottom_dr_jang_park .dr_area {
		width: 1300px;
	}
	.sub_bottom_dr_jang_park .txt_area .tit {
		font-size: 48px;
		margin-bottom: 40px;
	}
	.sub_bottom_dr_jang_park .txt_area .list {
		width: 526px;
	}
	.sub_bottom_dr_jang_park .txt_area .list li {
		height: 62px;
		padding: 0 24%;
	}
	.sub_bottom_dr_jang_park .txt_area .list li p b {
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .txt_area .sub_tit {
		margin-top: 40px;
	}
	.sub_bottom_dr_jang_park .txt_area .sub_tit span {
		font-size: 30px;
	}
	.sub_bottom_dr_jang_park .txt_area .sub_tit .desc {
		font-size: 22px;
		margin-top: 22px;
	}
}
@media (max-width: 1200px) {
	.pc_img {
		display: none;
	}
	.mo_img {
		display: block;
	}
	.sub_container {
		width: 82%;
	}
	.sub_cage {
		padding: 80px 0;
	}

	/* sub_top */
	.sub_top ul li a {
		font-size: 16px;
		padding: 16px 12px;
	}
	/* 공통 타이틀 */
	.sub_common_title .sub_title {
		font-size: 40px;
		font-weight: 600;
	}
	.sub_common_title .sub_desc {
		font-size: 20px;
		line-height: 30px;
		margin-top: 20px;
	}
	.sub_hero .sub_hero_txt h2 {
		font-size: 48px;
		line-height: 60px;
	}
	.sub_hero .sub_hero_txt p {
		font-size: 24px;
	}

	.sub_surgery .info_list {
		width: 74%;
		margin: 50px auto 0;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0;
	}
	
	.bottom_m_br {
		display: block;
	}
	/* 당연히 메이드영 5원칙(고정) */
	.sub_bottom_fixed .list_area {
		width: 84%;
		left: 50%;
		top: 60%;
		transform: translate(-50%, -50%);
	}
	.sub_bottom_fixed .list_area ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 8vw;
	}
	
	.sub_bottom_fixed .list_area ul li {
		width: 100%;
		position: relative;
	}
	
	.sub_bottom_fixed .list_area ul li::before {
		display: none;
	}
	.sub_bottom_fixed .list_area ul li .tit {
		font-size: 3vw;
		padding: 3% 0;
		border-radius: 5vw;
	}
	
	.sub_bottom_fixed .list_area ul li .tit .m_num {
		display: block;
		margin-right: 10px;
	}
	.sub_bottom_fixed .list_area ul li .tit b {
		font-size: 4vw;
	}
	.sub_bottom_fixed .list_area ul li .desc {
		font-size: 3vw;
		margin-top: 7vw;
	}
	
	/* 장남 원장님 + 박병찬 원장님 */
	.sub_bottom_dr_jang_park {
		position: relative;
	}
	.sub_bottom_dr_jang_park .bg_area {
		background-image: none;
		background-position: center;
		width: 100%;

	}
	.sub_bottom_dr_jang_park .bg_area > img {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 0;
	}
	.sub_bottom_dr_jang_park .txt_area {
		padding: 100px 0;
		z-index: 1;
		position: relative;
	}
	.sub_bottom_dr_jang_park .txt_area .tit {
		font-size: 47px;
		margin-bottom: 80vw;
	}
	.sub_bottom_dr_jang_park .txt_area .list {
		display: flex;
		flex-direction: column;
		gap: 24px 0;
		width: 80%;
		margin: 0 auto;
		background-color: #efefef;
	}
	.sub_bottom_dr_jang_park .txt_area .list li {
		justify-content: center;
		border: 0;
		border-radius: 0;
		height: 86px;
		padding: 0;
		position: relative;
	}
	.sub_bottom_dr_jang_park .txt_area .list li span {
		color: #fff;
		background-color: #bca382;
		display: inline-block;
		padding: 6px 10px;
		position: absolute;
		left: 0;
		top: 0;
		margin: 0;
	}
	
	.sub_bottom_dr_jang_park .dr_area {
		display: none;
	}
	.sub_bottom_dr_jang_park .list {
		position: relative;
	}
	.sub_bottom_dr_jang_park .dr_area_mo {
		position: absolute;
		left: 50%;
		top: -100px;
		transform: translateX(-50%);
		display: flex;
	  justify-content: space-between;
		width: 80%;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt {
		background-color: #000;
		padding: 3px 10px;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt {
		color: #fff;
		font-size: 18px;
		font-weight: 400;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt span {
		line-height: 2;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt b {
		font-size: 22px;
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .img {
		width: 50%;
		margin: 2% auto 0;
	}
	
	/* 장남 원장님 + 박병찬 원장님 */
	/* .sub_bottom_dr_jang_park {
		position: relative;
	}
	.sub_bottom_dr_jang_park .txt_area {
		top: 0;
		transform: translateX(-50%);
		padding-top: 15vw;
	}
	.sub_bottom_dr_jang_park .txt_area .tit > span {
		font-size: 4vw;
	}
	.sub_bottom_dr_jang_park .txt_area .tit .title {
		font-size: 6vw;
		margin: 0.5vw 0 80vw;
	}
	.sub_bottom_dr_jang_park .txt_area .list {
		display: flex;
		flex-direction: column;
		gap: 20px 0;
		width: 84%;
		margin: 0 auto;
	}
	.sub_bottom_dr_jang_park .txt_area .list li {
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #fff;
		border: 0;
		border-radius: 0;
		padding: 7% 5%;
		position: relative;
	}
	.sub_bottom_dr_jang_park .txt_area .list li span {
		font-size: 22px;
		margin-top: 0;
		padding: 10px 14px;
		margin-right: 0;
		font-weight: 700;
		position: absolute;
		left: 0;
		top: 0;
		color: #fff;
		background-color: #bca382;
	}
	.sub_bottom_dr_jang_park .txt_area .list li > div {
		font-size: 26px;
		letter-spacing: -1.2px;
	}
	.sub_bottom_dr_jang_park .txt_area .list li > div b {
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .txt_area .desc {
		margin-top: 5vw;
		font-size: 28px;
		line-height: 1.5;
	}
	.sub_bottom_dr_jang_park .txt_area .desc span,
	.sub_bottom_dr_jang_park .txt_area .desc b {
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .point {
		color: #bca382;
	}
	.sub_bottom_dr_jang_park .dr_area .dr_park {
		position: absolute;
		left: 17%;
		top: 100vw;
	}
	.sub_bottom_dr_jang_park .dr_area .dr_jang {
		position: absolute;
		right: 17%;
		top: 100vw;
	}
	.sub_bottom_dr_jang_park .dr_area .txt {
		background-color: #000;
	}
	.sub_bottom_dr_jang_park .dr_area .txt {
		color: #fff;
		font-size: 2.4vw;
		font-weight: 400;
	}
	.sub_bottom_dr_jang_park .dr_area .txt span {
		line-height: 2;
	}
	.sub_bottom_dr_jang_park .dr_area .txt b {
		font-size: 2.6vw;
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .dr_area .img {
		width: 50%;
		margin: 2% auto 0;
	} */
	
	/* 박병찬 원장님 */
	.sub_bottom_dr_park .bg_area {
		background-image: url(/images/middle-aged/utils/dr_park_mo.jpg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
	.sub_bottom_dr_park .bg_area .sub_container {
		display: flex;
		justify-content: center;
		text-align: center;
	}
	.sub_bottom_dr_park .txt_area {
		padding: 80px 0 100px;
		width: 100%;
	}
	.sub_bottom_dr_park .txt_area .tit .title {
		font-size: 48px;
		margin: 10px 0 40px;
	}
	.sub_bottom_dr_park .txt_area .intro {
		margin-bottom: 0;
	}
	.sub_bottom_dr_park .txt_area .intro::before {
		display: none;
	}
	.sub_bottom_dr_park .txt_area .intro b {
		font-weight: 600;
	}
	.sub_bottom_dr_park .txt_area .dr {
		margin-top: 120%;
	}
	.sub_bottom_dr_park .txt_area .dr::before {
		left: 50%;
		bottom: 0;
		margin-top: 20px;
		transform: translateX(-50%);
	}
	
	.sub_bottom_dr_jang .bg_area {
		background-image: url(/images/middle-aged/utils/dr_jang_mo.jpg);
		background-repeat: no-repeat;
		background-position: right center;
		background-size: cover;
	}
	.sub_bottom_dr_jang .bg_area .sub_container {
		display: flex;
		justify-content: center;
		text-align: center;
	}
	.sub_bottom_dr_jang .txt_area {
		padding: 120px 0 300px;
		width: 100%;
	}
	.sub_bottom_dr_jang .txt_area .title {
		font-size: 48px;
		margin: 0;
	}
	.sub_bottom_dr_jang .txt_area .list {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: 280px;
		width: 100%;
		justify-content: center;
	}
	.sub_bottom_dr_jang .txt_area .intro {
		text-align: left;
		position: relative;
		top: 120px;
	}
	.sub_bottom_dr_jang .txt_area .intro::before {
		bottom: -6vw;
		top: auto;
		width: 70px;
		opacity: 0.5;
	}
	.sub_bottom_dr_jang .txt_area .dr {
		margin-top: 20%;
		width: 100%;
		text-align: left;
	}
	.sub_bottom_dr_jang .txt_area .dr::before {
		left: 5%;
		top: 100px;
		width: 140px;
	}
}
@media (max-width: 768px) {
	.sub_container {
		width: 92%;
	}
	.sub_cage {
		padding: 60px 0;
	}

	.p_br {
		display: none;
	}
	.m_br {
		display: block;
	}
	.intro {
		opacity: 1;

		transform: translateY(0); /* 처음 위치를 화면 위쪽으로 이동 */
	}

	/* sub_top */
	.sub_top {
		display: none;
	}
	.mo_sub_menu {
		display: block;
		position: fixed;
		left: 0;
		top: 104px;
		z-index: 10;
		width: 100%;
		height: 50px;
		background-color: #fff;
		border-bottom: 1px solid #ededed;
	}
	.mo_sub_menu .sub_menu_container {
		width: 92%;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		height: 100%;
	}
	.mo_sub_menu .home {
		width: 30px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.mo_sub_menu .home a {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: 14px 0;
	}
	.mo_sub_menu .home a img {
		width: 20px;
	}

	.mo_sub_menu.deps span {
		margin-left: 3vw;
		font-size: 16px;
		color: #3d3d3d;
		font-weight: 600;
		position: relative;
	}
	.mo_sub_menu.deps span::before {
		position: absolute;
		content: "|";
		left: -2.5vw;
		top: -1px;
		color: #c3c3c3;
	}
	.mo_sub_menu.deps button::before {
		left: -2vw;
	}

	.mo_sub_menu button {
		background-color: #fff;
		font-size: 16px;
		color: #3d3d3d;
		font-weight: 600;
		position: relative;
		margin-left: 4vw;
		padding: 0 0 0 1vw;
		width: 40%;
		cursor: pointer;
		text-align: left;
	}
	.mo_sub_menu button::before {
		position: absolute;
		content: "|";
		left: -1.5vw;
		top: 0;
		color: #c3c3c3;
	}
	.mo_sub_menu button::after {
		position: absolute;
		content: "";
		background-image: url(/images/middle-aged/utils/dropdown_arrow.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		right: -3vw;
		top: 53%;
		transform: translateY(-50%);
		width: 16px;
		height: 10px;
		transition: all 0.3s ease;
	}

	button.active::after {
		transform: translateY(-50%) rotate(-180deg); /* Rotate 180 degrees when active */
	}

	#menuButton.active .sub_menu_dropdown {
		display: flex;
	}
	.mo_sub_menu .sub_menu_dropdown {
		display: none;
		position: absolute;
		left: 0;
		top: 38px;
		width: 104%;
		background-color: rgba(0, 0, 0, 0.8);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		border-radius: 10px;
		padding: 14px 0;
	}
	.mo_sub_menu .sub_menu_dropdown li {
		width: 100%;
		display: inline-block;
		text-align: left;
	}
	.mo_sub_menu .sub_menu_dropdown li a {
		display: inline-block;
		padding: 6% 3vw;
		color: #e2e2e2;
	}

	/* 공통 타이틀 */
	.sub_common_title {
		text-align: center;
		word-break: keep-all;
	}
	.sub_common_title .sub_small {
		font-size: 18px;
	}
	.sub_common_title .sub_title {
		font-size: 28px;
	}
	.sub_common_title .sub_desc {
		font-size: 16px;
		line-height: 1.4;
		margin-top: 15px;
	}
	.sub_common_title .sub_desc b {
		font-weight: 600;
	}

	.sub_hero {
		width: 100%;
		margin-top: 104px;
		height: auto;
		overflow: hidden;
		position: relative;
	}
	.sub_hero .sub_hero_img {
		height: 100%;
	}
	.sub_hero .sub_hero_img img {
		width: 100%;
		height: 100%;
	}
	.intro_hero {
		width: 100%;
		height: 352px;
		margin-top: 154px;
	}
	.intro_hero .intro_hero_img {
		width: 100%;
		height: 100%;
	}
	.intro_hero .intro_hero_img img {
		width: 100%;
		height: 100%;
	}

	.pc_banner {
		display: none;
	}
	.mo_banner {
		display: block;
		position: relative;
	}

	.sub_hero .sub_hero_txt {
		position: absolute;
		left: 50%;
		width: 100%;
		text-align: center;
		top: auto;
		bottom: 3%;
		transform: translateX(-50%);
		color: #fff;
	}
	.sub_hero .sub_hero_txt h2 {
		font-size: 40px;
		line-height: 50px;
		font-weight: 400;
	}
	.sub_hero .sub_hero_txt p {
		font-size: 20px;
		line-height: 70px;
	}
	.sub_hero .sub_hero_txt .t1,
	.sub_hero .sub_hero_txt .t2,
	.sub_hero .sub_hero_txt .t3 {
		opacity: 0;
		transform: translateY(80px);
		transition: all 1.3s cubic-bezier(0.33, 1, 0.68, 1);
	}
	.sub_hero .sub_hero_txt .t2 {
		transition-delay: 0.3s;
	}
	.sub_hero .sub_hero_txt .t3 {
		transition-delay: 0.5s;
	}
	.sub_hero .sub_hero_txt.active .t1,
	.sub_hero .sub_hero_txt.active .t2,
	.sub_hero .sub_hero_txt.active .t3 {
		opacity: 1;
		transform: translateY(0);
	}

	.sub_surgery h3 {
		font-size: 18px;
		letter-spacing: 3px;
	}
	.sub_surgery .info_list {
		width: 100%;
		margin: 40px auto 0;
		gap: 0;
	}
	.sub_surgery .info_list li {
		width: 25%;
	}
	.sub_surgery .info_list li .icon {
		width: 40px;
		height: 40px;
		margin: 0 auto 10px;
	}
	.sub_surgery .info_list li .txt span {
		font-size: 13px;
	}

	.sub_surgery .info_list li .txt p {
		font-size: 14px;
		line-height: 1.3;
		color: #000;
	}

	.sub_tech .sub_common_title .sub_small {
		font-size: 16px;
		letter-spacing: 1px;
	}
	.sub_tech .tech_list {
		margin-top: 40px;
	}
	.sub_tech .tech_list ul {
		gap: 0 15px;
		width: 90%;
		margin: 0 auto;
	}
	
	/* 당연히 메이드영 5원칙(고정) */
	.sub_bottom_fixed .list_area {
		width: 92%;
		top: 62%;
		transform: translate(-50%, -50%);
	}
	.sub_bottom_fixed .list_area ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 6vw;
	}
	.sub_bottom_fixed .list_area ul li {
		width: 90%;
	}
	.sub_bottom_fixed .list_area ul li .tit {
		font-size: 4vw;
		padding: 2% 0;
	}
	
	.sub_bottom_fixed .list_area ul li .tit .m_num {
		display: block;
		margin-right: 5px;
	}
	.sub_bottom_fixed .list_area ul li .tit b {
		font-size: 5vw;
		margin-left: 5px;
	}
	.sub_bottom_fixed .list_area ul li .desc {
		font-size: 4vw;
		margin-top: 6vw;
	}
	
	/* 장남 원장님 + 박병찬 원장님 */
	.sub_bottom_dr_jang_park .bg_area > img {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 0;
	}
	.sub_bottom_dr_jang_park .txt_area {
		padding: 80px 0;
		z-index: 1;
		position: relative;
	}
	.sub_bottom_dr_jang_park .txt_area .tit {
		font-size: 38px;
		margin-bottom: 70vw;
	}
	.sub_bottom_dr_jang_park .txt_area .list {
		gap: 12px 0;
		width: 94%;
	}
	.sub_bottom_dr_jang_park .txt_area .list li {
		height: 86px;
		padding: 0;
		position: relative;
	}
	.sub_bottom_dr_jang_park .txt_area .list li span {
		color: #fff;
		background-color: #bca382;
		display: inline-block;
		padding: 6px 10px;
		position: absolute;
		left: 0;
		top: 0;
	}
	.sub_bottom_dr_jang_park .dr_area {
		display: none;
	}
	.sub_bottom_dr_jang_park .list {
		position: relative;
	}
	.sub_bottom_dr_jang_park .dr_area_mo {
		position: absolute;
		left: 50%;
		top: -100px;
		transform: translateX(-50%);
		display: flex;
		justify-content: space-between;
		width: 80%;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt {
		background-color: #000;
		padding: 3px 10px;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt {
		color: #fff;
		font-size: 16px;
		font-weight: 400;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt span {
		line-height: 2;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt b {
		font-size: 20px;
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .img {
		width: 50%;
		margin: 2% auto 0;
	}
	/* 장남 원장님 + 박병찬 원장님 */
	/* .sub_bottom_dr_jang_park .txt_area {
		padding-top: 15vw;
	}
	.sub_bottom_dr_jang_park .txt_area .tit > span {
		font-size: 5vw;
	}
	.sub_bottom_dr_jang_park .txt_area .tit .title {
		font-size: 7vw;
		margin: 0 0 73vw;
		line-height: 1.3;
	}
	.sub_bottom_dr_jang_park .txt_area .list {
		gap: 1.5vw 0;
		width: 92%;
		background-color: #efefef;
	}
	.sub_bottom_dr_jang_park .txt_area .list li {
		padding: 4%;
	}
	.sub_bottom_dr_jang_park .txt_area .list li span {
		font-size: 3vw;
		padding: 1vw 1.5vw;
	}
	.sub_bottom_dr_jang_park .txt_area .list li > div {
		font-size: 4vw;
		letter-spacing: -1.2px;
		font-weight: 400;
	}
	.sub_bottom_dr_jang_park .txt_area .list li > div b {
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .txt_area > span {
		font-size: 5.5vw;
		margin: 3.5vw 0 3vw;
	}
	.sub_bottom_dr_jang_park .txt_area .desc {
		font-size: 4vw;
		line-height: 1.5;
		margin-top: 0;
		font-weight: 400;
	}
	.sub_bottom_dr_jang_park .txt_area .desc span,
	.sub_bottom_dr_jang_park .txt_area .desc b {
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .point {
		color: #bca382;
	}
	.sub_bottom_dr_jang_park .dr_area .dr_park {
		position: absolute;
		left: 12vw;
		top: 97vw;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.sub_bottom_dr_jang_park .dr_area .dr_jang {
		position: absolute;
		right: 10vw;
		top: 97vw;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.sub_bottom_dr_jang_park .dr_area .txt {
		font-size: 2.5vw;
		padding: 0.5vw 1vw;
		display: inline-block;
	}
	.sub_bottom_dr_jang_park .dr_area .txt b {
		font-size: 3.5vw;
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .dr_area .img {
		width: 50%;
		margin: 2% 0;
	} */
	
	
	/* 박병찬 원장님 */
	.sub_bottom_dr_park .txt_area {
		padding: 60px 0 90px;
		width: 100%;
	}
	.sub_bottom_dr_park .txt_area .tit > span {
		font-size: 18px;
	}
	.sub_bottom_dr_park .txt_area .tit .title {
		font-size: 34px;
		margin: 10px 0 20px;
	}
	.sub_bottom_dr_park .txt_area .intro {
		font-size: 16px;
		word-break: keep-all;
	}
	.sub_bottom_dr_park .txt_area .dr {
		margin-top: 90%;
		font-size: 14px;
	}
	.sub_bottom_dr_park .txt_area .dr b {
		font-size: 18px;
	}
	.sub_bottom_dr_park .txt_area .dr::before {
		margin-top: 10px;
		width: 60%;
		background-size: contain;
	}
	
	/* 장남 원장님 */
	.sub_bottom_dr_jang .bg_area {
		background-image: url('/images/middle-aged/utils/dr_jang_mo.jpg?ver=250123');
		background-repeat: no-repeat;
		background-position: right center;
		background-size: cover;
	}
	.sub_bottom_dr_jang .txt_area {
		padding: 80px 0 160px;
		width: 100%;
	}
	.sub_bottom_dr_jang .txt_area .tit {
		font-size: 34px;
		margin: 0;
	}
	.sub_bottom_dr_jang .txt_area .list {
		top: 180px;
	}
	.sub_bottom_dr_jang .txt_area .list li {
		font-size: 16px;
		padding: 4px 12px 4px 30px;
	}
	.sub_bottom_dr_jang .txt_area .list li::before {
		left: 8px;
		width: 18px;
	}
	.sub_bottom_dr_jang .txt_area .intro {
		text-align: left;
		position: relative;
		top: 30%;
		font-size: 16px;
	}
	.sub_bottom_dr_jang .txt_area .intro::before {
		bottom: -6vw;
		top: auto;
		width: 50px;
		opacity: 0.5;
	}
	.sub_bottom_dr_jang .txt_area .dr {
		margin-top: 150px;
		width: 100%;
		text-align: left;
		font-size: 14px;
	}
	.sub_bottom_dr_jang .txt_area .dr b {
		font-size: 18px;
	}
	.sub_bottom_dr_jang .txt_area .dr::before {
		left: 6%;
		top: 60px;
		width: 100px;
	}
}
@media (max-width: 570px){
	/* 장남 원장님 + 박병찬 원장님 */
	.sub_bottom_dr_jang_park .bg_area img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.sub_bottom_dr_jang_park .txt_area {
		padding: 60px 0;
		z-index: 1;
		position: relative;
	}
	.sub_bottom_dr_jang_park .txt_area .tit {
		font-size: 30px;
		line-height: 1.2;
		margin-bottom: 76%;
	}
	.sub_bottom_dr_jang_park .txt_area .list {
		gap: 12px 0;
		width: 94%;
	}
	.sub_bottom_dr_jang_park .txt_area .list li {
		height: auto;
		padding: 3.5% 0;
	}
	.sub_bottom_dr_jang_park .txt_area .list li span {
		padding: 4px 8px;
		font-size: 14px;
	}
	.sub_bottom_dr_jang_park .txt_area .list li p {
		font-size: 18px;
	}
	.sub_bottom_dr_jang_park .dr_area {
		display: none;
	}
	.sub_bottom_dr_jang_park .list {
		position: relative;
	}
	.sub_bottom_dr_jang_park .txt_area .sub_tit {
		margin-top: 20px;
	}
	.sub_bottom_dr_jang_park .txt_area .sub_tit span {
		font-size: 24px;
	}
	.sub_bottom_dr_jang_park .txt_area .sub_tit .desc {
		font-size: 18px;
		margin-top: 14px;
	}
	.sub_bottom_dr_jang_park .txt_area .sub_tit .desc span,
	.sub_bottom_dr_jang_park .txt_area .sub_tit .desc b {
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .dr_area_mo {
		position: absolute;
		left: 50%;
		top: -80px;
		transform: translateX(-50%);
		display: flex;
		justify-content: center;
		gap: 0 10px;
		width: 100%;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt {
		background-color: #000;
		padding: 3px 10px;
		color: #fff;
		font-size: 10px;
		font-weight: 400;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .txt b {
		font-size: 12px;
		font-weight: 600;
	}
	.sub_bottom_dr_jang_park .dr_area_mo .img {
		width: 50%;
		margin: 2% auto 0;
	}
}
@media (max-width: 375px) {
	.sub_bottom_dr_jang .txt_area .list {
		gap: 0 4px;
	}
	.sub_bottom_dr_jang .txt_area .list li {
		font-size: 14px;
		padding: 4px 6px 4px 24px;
	}
	.sub_bottom_dr_jang .txt_area .list li::before {
		width: 12px;
	}
}

@media (max-width: 340px) {
	.sub_common_title .sub_desc {
		font-size: 14px;
	}
	.mo_sub_menu.deps span {
		font-size: 14px;
	}
	.mo_sub_menu button {
		font-size: 14px;
	}
	.mo_sub_menu button::after {
		background-size: contain;
		width: 10px;
		height: 8px;
	}
	.mo_sub_menu.deps .sub_menu_dropdown {
	
	}
	.mo_sub_menu .sub_menu_dropdown li a {
		font-size: 14px;
	}
}
