/*  영역  */
body {
	font-size: 16px;
	font-family: "Noto Sans Kr", dotum, sans-serif;
	font-weight: normal;
	letter-spacing: -0.04em;
	overflow-x: clip;
}
input,
button,
select {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans Kr", dotum, sans-serif;
	font-size: 16px;
}
input[type="submit"] {
	cursor: pointer;
}
button {
	cursor: pointer;
}

textarea,
select {
	font-family: "Noto Sans Kr", dotum, sans-serif;
	font-size: 15px;
}
select {
	margin: 0;
}

/*  전체 영역  */
#wrap {
	width: 100vw;
	font-family: "Noto Sans Kr";
	letter-spacing: -0.06em;
}

/* GNB */
#gnb {
	position: fixed; /* 메뉴가 항상 위에 고정되어 보이도록 설정 */
	top: 0;
	left: 0;
	z-index: 9999; /* 다른 모든 요소 위에 표시되도록 설정 */
	width: 100vw;
	height: 5.7291666667vw;
	margin: 0 auto;
	background: transparent;
}
.gnb_container {
	width: 100vw;
	height: 5.7291666667vw;
	background: transparent;
}
.gnb_container:hover {
	background: #fff;
	transition: all 0.5s ease;
}
.gnb_container .bg_wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.gnb_container .bg_wrap .logo {
	top: 1.1979166667vw;
	left: 8.90625vw;
	position: absolute;
	z-index: 4;
	width: 16.4583333333vw;
	height: auto;
	opacity: 1;
}
.gnb_container .bg_wrap .logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gnb_container .bg_wrap  .side_logo_wrap {
	position: absolute;
	top: 1.6145833333vw;
	right: 7.08333333333vw;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.gnb_container .bg_wrap .side_logo_wrap .side_logo1 {
	width: 7.96875vw;
	height: auto;
}
.gnb_container .bg_wrap .side_logo_wrap .side_logo1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gnb_container .bg_wrap .side_logo_wrap .side_logo2 {
	width: 6.5625vw;
	height: auto;
}
.gnb_container .bg_wrap .side_logo_wrap .side_logo2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.gnb_container .bar_container {
	width: 100%;
	position: relative;
	background: transparent;
}
.gnb_container .bar_container .bar {
	width: 0;
	height: 0.2vw;
	position: relative;
	background: #9fa0a0;
}

.gnb_container .g_wrap {
	width: 40vw;
	height: auto;
	position: absolute;
	top: 1.2vw;
	left: 33vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	overflow: hidden;
}
.gnb_container .g_wrap .nav_btn {
	display: inline-block; /* display:inline; */
	font-family: "Noto Sans Kr";
	padding: 1vw 1.5vw;
	font-size: 0.9vw;
	font-weight: 500;
	cursor: pointer;
	letter-spacing: -0.06em;
	z-index: 100000;
	color: #000;
}


.snb_wrap {
	position: relative;
	width: 100%;
	top: 0px;
}
.snb_wrap .temp_wrap {
	position: relative;
	margin: 0 auto;
	text-align: center;
	opacity: 1;
	filter: alpha(opacity=1);
}
.snb_wrap .temp_wrap .wrap {
	position: absolute;
	width: 100vw;
	height: 3.8020833333vw;
	text-align: center;
	overflow: hidden;
}
.snb_wrap .temp_wrap .wrap .btn_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2vw;
	position: relative;
	width: 100%;
	text-align: center;
	background: #0673b8;
}
.snb_wrap .temp_wrap .wrap .btn_wrapper .sub_nav_btn {
	position: relative;
	min-height: 3.8020833333vw;
	padding: 1vw 1vw;
	cursor: pointer;
}
.snb_wrap .temp_wrap .wrap .btn_wrapper .sub_nav_btn .txt {
	display: inline-block;
	position: relative;
	z-index: 2;
	font-family: "Noto Sans Kr";
	font-size: 0.9vw;
	font-weight: 400;
	color: #fff;
	letter-spacing: -0.03em;
}

/*  MAIN VISUAL */
#main_visual {
	position: relative;
	width: 100vw;
}

/* 페이드인 에니메이션 키프레임 */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 애니메이션 클래스 */
.animate {
	opacity: 0;
}
.animate.active {
	opacity: 1;
}
.animate.fadeIn {
	animation: fadeIn 0.5s ease-in-out;
}
.animate.fadeInUp {
	animation: fadeInUp 0.5s ease-in-out;
}
.animate.fadeInLeft {
	animation: fadeInLeft 0.5s ease-in-out;
}
.animate.fadeInRight {
	animation: fadeInRight 0.5s ease-in-out;
}
.animate.fadeInDown {
	animation: fadeInDown 0.5s ease-in-out;
}

/*  메인영상  */
.embed-container {
	position: relative; /* absolute에서 relative로 변경 */
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 비율로 조정 */
	margin-top: 5.7291666667vw; /* 메뉴 높이만큼 여백 추가 */
	z-index: 1; /* 메뉴 아래에 위치하도록 설정 */
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.main_visual_contents-container {
	position: relative;
	width: 75vw;
	height: auto;
	margin-top: 10%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main_visual_contents-row {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main_visual_contents-row .main_visual_contents {
	position: relative;
	width: 18.22916667vw;
	height: 15.625vw;
}
.main_visual_contents-row .main_visual_contents .main_visual_contents_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 18.22916667vw;
	height: 15.625vw;
	object-fit: cover;
}
.main_visual_contents-row .main_visual_contents .main_visual_contents_arrow {
	position: absolute;
	top: 85%;
	left: 13%;
	width: 4.6vw;
	height: auto;
}
.main_visual_contents-row .main_visual_contents .main_visual_contents_icon {
	position: absolute;
	top: 55%;
	left: 60%;
}
.main_visual_contents-row .main_visual_contents .main_visual_contents_title {
	position: absolute;
	top: 13%;
	left: 10%;
	font-size: 1.6vw;
	font-weight: 300;
	font-family: "Noto Sans Kr";
	z-index: 100;
}

.main_visual_contents-row .main_visual_contents_2cell {
	position: relative;
	width: 36.45833333vw;
	height: 15.625vw;
}
.main_visual_contents-row .main_visual_contents_2cell .main_visual_contents_2cell_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 36.45833333vw;
	height: 15.625vw;
	object-fit: cover;
	z-index: 1;
}
.main_visual_contents-row .main_visual_contents_2cell .main_visual_contents_2cell_sub {
	position: absolute;
	top: 12%;
	left: 10%;
	font-size: 1vw;
	font-weight: 200;
	color: #000;
	font-family: "Noto Sans Kr";
	z-index: 100;
}
.main_visual_contents-row .main_visual_contents_2cell .main_visual_contents_2cell_title {
	position: absolute;
	top: 20%;
	left: 10%;
	font-size: 2vw;
	font-weight: 400;
	font-family: "Noto Sans Kr";
	color: #000;
	z-index: 100;
}

#section2 {
	position: relative;
	margin-top: 10%;
	width: 100vw;
}

.section2_container {
	position: relative;
	width: 100vw;
}

.section2_container .section2_flex {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
}

.section2_container .section2_flex .section2_flex_item {
	position: relative;
	width: 36.458vw;
	height: 31.25vw;
	background-color: #fff;
}
.section2_container .section2_flex .section2_flex_item .title {
	position: absolute;
	top: 10%;
	left: 3%;
	font-size: 1vw;
	font-weight: 400;
	font-family: "Noto Sans Kr";
	color: #0673b8;
}
.section2_container .section2_flex .section2_flex_item .sub {
	position: absolute;
	top: 25%;
	left: 3%;
	font-size: 2.2vw;
	font-weight: 200;
	font-family: "Noto Sans Kr";
}
.section2_container .section2_flex .section2_flex_item .sub span {
	font-weight: 400;
}
.section2_container .section2_flex .section2_flex_item .line {
	position: absolute;
	top: 51%;
	left: 3%;
	width: 6%;
	height: 1.5px;
	background-color: #0673b8;
}
.section2_container .section2_flex .section2_flex_item .content {
	position: absolute;
	top: 57%;
	left: 3%;
	font-size: 1vw;
	font-weight: 200;
	font-family: "Noto Sans Kr";
}
.section2_container .section2_flex .section2_flex_item .content span {
	font-weight: 400;
}
.section2_container .section2_flex .section2_flex_item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#section3 {
	position: relative;
	margin-top: 10%;
	width: 100vw;
}
.section3_container {
	position: relative;
	width: 100vw;
}
.section3_container .section3_flex {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
}
.section3_container .section3_flex .section3_flex_item {
	position: relative;
	width: 36.458vw;
	height: 31.25vw;
	background-color: #fff;
}
.section3_container .section3_flex .section3_flex_item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section3_container .section3_flex .section3_flex_item .title {
	position: absolute;
	top: 10%;
	left: 13%;
	font-size: 1vw;
	font-weight: 400;
	font-family: "Noto Sans Kr";
	color: #0673b8;
}
.section3_container .section3_flex .section3_flex_item .sub {
	position: absolute;
	top: 25%;
	left: 13%;
	font-size: 2.2vw;
	font-weight: 200;
	font-family: "Noto Sans Kr";
}
.section3_container .section3_flex .section3_flex_item .sub span {
	font-weight: 400;
}
.section3_container .section3_flex .section3_flex_item .line {
	position: absolute;
	top: 51%;
	left: 13%;
	width: 6%;
	height: 1.5px;
	background-color: #0673b8;
}
.section3_container .section3_flex .section3_flex_item .content {
	position: absolute;
	top: 57%;
	left: 13%;
	font-size: 1vw;
	font-weight: 200;
	font-family: "Noto Sans Kr";
}
.section3_container .section3_flex .section3_flex_item .content span {
	font-weight: 400;
}

#section4 {
	position: relative;
	margin-top: 10%;
	width: 100vw;
}
.section4_container {
	position: relative;
	width: 100vw;
}
.section4_container .section4_bg {
	width: 100vw;
	height: auto;
}
.section4_container .section4_bg img {
	width: 100vw;
	height: auto;
	object-fit: cover;
}
.section4_container .section4_contents {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50vw;
	height: auto;
}
.section4_container .section4_contents .section4_contents_wrap {
	position: relative;
	width: 100%;
	height: auto;
}
.section4_container .section4_contents .section4_contents_wrap img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.section4_container .section4_contents .section4_contents_wrap .title {
	position: absolute;
	top: 15%;
	left: 13%;
	font-size: 0.9vw;
	font-weight: 400;
	font-family: "Noto Sans Kr";
	color: #a8dcfd;
}
.section4_container .section4_contents .section4_contents_wrap .sub {
	position: absolute;
	top: 25%;
	left: 13%;
	font-size: 2.2vw;
	font-weight: 200;
	font-family: "Noto Sans Kr";
	color: #fff;
}
.section4_container .section4_contents .section4_contents_wrap .sub span {
	font-weight: 400;
}
.section4_container .section4_contents .section4_contents_wrap .line {
	position: absolute;
	top: 48%;
	left: 13%;
	width: 5%;
	height: 1.5px;
	background-color: #0673b8;
}
.section4_container .section4_contents .section4_contents_wrap .content {
	position: absolute;
	top: 54%;
	left: 13%;
	font-size: 1vw;
	font-weight: 200;
	font-family: "Noto Sans Kr";
	color: #fff;
}
.section4_container .section4_contents .section4_contents_wrap .content span {
	font-weight: 400;
}

#section5 {
	position: relative;
	margin-top: 10%;
	width: 100vw;
}
.section5_container {
	position: relative;
	width: 100vw;
}
.section5_container .section5_contents {
	position: relative;
	width: 100%;
	height: 100%;
}
.section5_container .section5_contents .section5_contents_wrap {
	position: relative;
	width: 100%;
	height: 100%;
}
.section5_container .section5_contents .section5_contents_wrap .section5_contents_wrap_sub {
	font-size: 0.8vw;
	font-weight: 400;
	font-family: "Noto Sans Kr";
	margin-top: 1.5625vw;
	text-align: center;
	letter-spacing: -0.04em;
	color: #0673b8;
}
.section5_container .section5_contents .section5_contents_wrap .section5_contents_wrap_title {
	font-size: 2.3vw;
	font-weight: 300;
	font-family: "Noto Sans Kr";
	margin-top: 0.4vw;
	margin-bottom: 3vw;
	text-align: center;
}
.section5_container .section5_contents .section5_contents_wrap .section5_contents_wrap_title span {
	font-weight: 400;
}

.section5_contents_wrap_nav .prev,
.section5_contents_wrap_nav .next {
	position: absolute;
	top: 17vw;
	width: 3vw;
	cursor: pointer;
}
.section5_contents_wrap_nav .prev {
	left: 8%;
}
.section5_contents_wrap_nav .next {
	right: 8%;
}
.section5_container .section5_contents .section5_contents_wrap .section5_contents_wrap_nav img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.section5_container .section5_contents .section5_contents_wrap .section5_contents_wrap_flex_container {
	position: relative;
	overflow: hidden;
	width: 72.9166666667vw;
	padding-top: 28vw;
	margin-left: auto;
	margin-right: auto;
}
.section5_container .section5_contents .section5_contents_wrap .section5_contents_wrap_flex_container .section5_contents_wrap_flex_item {
	position: absolute;
	top: 0;
	left: 0;
	width: 23.4375vw;
	height: 28vw;
}
.section5_container .section5_contents .section5_contents_wrap .section5_contents_wrap_flex_container .section5_contents_wrap_flex_item .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	object-fit: cover;
}
.section5_container .section5_contents .section5_contents_wrap .section5_contents_wrap_flex_container .section5_contents_wrap_flex_item .title {
	position: absolute;
	top: 17.5vw;
	left: 0;
	width: 100%;
	font-size: 1.4vw;
	font-weight: 600;
	font-family: "Noto Sans Kr";
}
.section5_container .section5_contents .section5_contents_wrap .section5_contents_wrap_flex_container .section5_contents_wrap_flex_item .text {
	position: absolute;
	top: 21vw;
	left: 0;
	width: 100%;
	font-size: 1.03vw;
	font-weight: 200;
	font-family: "Noto Sans Kr";
}

#section6 {
	position: relative;
	margin-top: 10%;
	width: 100vw;
}
.section6_container {
	position: relative;
	width: 100vw;
}
.section6_container .section6_bg {
	position: relative;
	width: 100vw;
	height: auto;
	z-index: 10;
	pointer-events: none;
}
.section6_container .section6_bg img {
	width: 100vw;
	height: auto;
	object-fit: cover;
}
.section6_container .section6_title {
	position: absolute;
	top: 15%;
	left: 14%;
	font-size: 2.3vw;
	font-weight: 200;
	letter-spacing: -0.02em;
	font-family: "Noto Sans Kr";
	z-index: 20;
}
.section6_container .section6_clinicHours {
	position: absolute;
	top: 13%;
	left: 57%;
	z-index: 20;
}
.section6_container .section6_clinicHours table {
	width: 30vw;
	height: auto;
}
.section6_container .section6_clinicHours .section6_clinicHours_title {
	font-size: 1.4vw;
	font-weight: 500;
	text-align: left;
	line-height: 3vw;
	margin: 0;
	color: #0673b8;
	font-family: "Noto Sans Kr";
}
.section6_container .section6_clinicHours .section6_clinicHours_sub {
	font-size: 0.9vw;
	font-weight: 400;
	vertical-align: bottom;
	letter-spacing: -0.06em;
	text-align: left;
	line-height: 2.5vw;
	color: #000;
	font-family: "Noto Sans Kr";
}
.section6_container .section6_clinicHours td {
	height: 0.5vw;
	font-size: 1.1vw;
	font-weight: 400;
	line-height: 1;
	text-align: justify;
	letter-spacing: 0.08em;
	font-family: "Noto Sans Kr";
}
.section6_container .section6_clinicLocation {
	position: absolute;
	width: 14.0625vw;
	height: auto;
	top: 42%;
	left: 57%;
	z-index: 20;
}
.section6_container .section6_clinicLocation .section6_clinicLocation_bg {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.section6_container .section6_clinicLocation .section6_clinicLocation_icon {
	position: absolute;
	width: 16%;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.section6_container .section6_clinicLocation .section6_clinicLocation_title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.5vw;
	font-weight: 500;
	text-align: center;
	letter-spacing: -0.02em;
	margin: 0;
	color: #fff;
	font-family: "Noto Sans Kr";
}
.section6_container .section6_clinicLocation .section6_clinicLocation_sub {
	position: absolute;
	top: 70%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	font-size: 1vw;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-align: center;
	color: #fff;
	font-family: "Noto Sans Kr";
}
.section6_container .section6_clinicPhone {
	position: absolute;
	width: 14.0625vw;
	height: auto;
	top: 42%;
	left: 73%;
	z-index: 20;
}
.section6_container .section6_clinicPhone .section6_clinicPhone_bg {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.section6_container .section6_clinicPhone .section6_clinicPhone_icon {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16%;
}
.section6_container .section6_clinicPhone .section6_clinicPhone_title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 1.5vw;
	font-weight: 500;
	text-align: left;
	margin: 0;
	letter-spacing: 0.02em;
	color: #fff;
	font-family: "Noto Sans Kr";
}
.section6_container .section6_clinicPhone .section6_clinicPhone_sub {
	position: absolute;
	top: 73%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	font-size: 1.7vw;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.1;
	text-align: center;
	color: #fff;
	font-family: "Noto Sans Kr";
}
.section6_container .section6_adress {
	position: absolute;
	width: 21.5104166667vw;
	top: 43%;
	left: 15.5%;
	z-index: 20;
}
.section6_container .section6_adress img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.section6_container .section6_adress p {
	position: absolute;
	top: 21%;
	left: 17%;
	font-size: 1.1vw;
	font-weight: 400;
	letter-spacing: -0.02em;
	color: #fff;
	font-family: "Noto Sans Kr";
}
.section6_contents {
	position: absolute;
	top: 61.3%;
	left: 33.1%;
	transform: translate(-50%, -50%);
	z-index: 5;
}
.section6_contents .section6_contents_wrap {
	position: relative;
	width: 39.0625vw;
	height: 18.2291666667vw;
	overflow: clip;
	background-color:grey;
}


/* 건강정보 등등 */
.section7_container { display:inline-block; position:relative; width:100%; height:600px; margin:0 auto; margin-top:0px; text-align:center; }
.section7_wrap { display:inline-block; width:1400px; margin:0 auto; margin-top:50px;} 
.section7_wrap .box1 { float:left; text-align:left; width:465px; height:300px; padding:30px 0 0 30px; border-top:5px #0BCEDE solid; }
.section7_wrap .box1 .box1-1 > span:nth-child(1) { float:left; width:70px; }
.section7_wrap .box1 .box1-1 > span:nth-child(2) { float:right; width:365px; font-family:'s-core-dream-bold'; font-size:37px; font-weight:600; }
.section7_wrap .box1 .box1-2 { float:left; width:100%;  }
.section7_wrap .box1 .box1-2 > span:nth-child(1) { float:left; width:70px; padding-top:10px;  }
.section7_wrap .box1 .box1-2 > span:nth-child(2) { float:right; width:365px; font-family:'s-core-dream-regular'; font-size:20px; font-weight:400; padding-top:20px; }
.section7_wrap .box1 .box1-2 > span:nth-child(2) strong { font-family:'s-core-dream-bold'; }
.section7_wrap .box1 .box1-3 > span:nth-child(1) { float:left; width:70px; text-align:left; padding-top:16px;  }
.section7_wrap .box1 .box1-3 > span:nth-child(2) { float:right; width:365px; font-family:'s-core-dream-regular'; font-size:15px; color:#686868; font-weight:400; line-height:25px; padding-top:15px; }
.section7_wrap .box1 .box1-3 > span:nth-child(2) strong { font-family:'s-core-dream-regular'; font-size:19px; color:#222; font-weight:600;line-height:32px; }

.section7_wrap .box2 { float:right; text-align:left; width:850px; height:330px; border-top:5px #0BCEDE solid; }

.section7_wrap1 { display:inline-block; width:1400px; margin:0 auto; margin-top:10px;} 
.section7_wrap1 .box2-1 { float:left; width:450px; height:88px; background:#EAFAFB; border:3px #EAFAFB solid; line-height:85px; border-radius:15px;transition: all 0.4s ease;}
.section7_wrap1 .box2-2 { float:left; width:450px; height:88px; margin:0 25px; background:#EAFAFB;border:3px #EAFAFB solid; line-height:85px;  border-radius:15px;transition: all 0.4s ease; }
.section7_wrap1 .box2-3 { float:left; width:450px; height:88px; background:#EAFAFB;border:3px #EAFAFB solid; line-height:85px;  border-radius:15px;transition: all 0.4s ease; }
.section7_wrap1 .box2-1:hover, .box2-2:hoveㄴr, .box2-3:hover { background:#fff; border:3px #09ACBF solid; cursor:pointer; transition: all 0.4s ease;  }


/* 파인메디 미디어 */
.section8_container {  display:block; width:100%; height:645px; position:relative; text-align:center; padding-top:120px; background:#F7F7F7; }
.section8_wrap { width:1400px; top:0px; margin:0 auto; position:relative; font-family:'Noto Sans Kr'; letter-spacing:-0.05em; }

/* 파인메디 의학노트 */
.section9_container { display:block; width:100%; height:550px; position:relative; text-align:center; padding-top:120px; }
.section9_container > p:nth-child(1) { font-family:'Noto Sans Kr'; font-size:50px; font-weight:600; line-height:40px; letter-spacing:-0.05em; }
.section9_container > p:nth-child(2) { margin-top:10px; font-family:'Noto Sans Kr'; font-size:17px; color:#999; font-weight:300; line-height:40px; letter-spacing:0.15em; }
.section9_wrap { width:1400px; top:30px; margin:0 auto; position:relative; font-family:'Noto Sans Kr'; letter-spacing:-0.05em; }


/* 서브 비쥬얼 */
#visual_sub {
	display: inline-block;
	position: relative;
	z-index: 1;
	width: 100%;
	top: 0;
}

/* SNB */
.snb_pc {
	display: inline-block;
	position: relative;
	z-index: 8;
	width: 100%;
	height: 52px;
	text-align: center;
	margin-top: -5px;
	background: #f4f6f7;
	border-bottom: 1px #d2d2d2 solid;
}
.snb_pc > ul {
	width: 1400px;
	height: 52px;
	padding: 0px;
	margin: 0 auto;
	background: #f4f6f7;
	border-bottom: 1px #d2d2d2 solid;
}
.snb_pc .i_home {
	float: left;
	right: 0px;
	position: relative;
	z-index: 9;
	width: 71px;
}
.snb_pc .select_wrap {
	float: left;
	width: 600px;
	display: inline-block;
	position: relative;
	z-index: 1;
}

/* SNB TITLE */
.snb_tit {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	margin-top: 70px;
	margin-bottom: 0px;
	padding: 0;
}
.snb_tit .bo_tit {
	display: inline-block;
	width: 100%;
	font-family: "Pretendard-Light";
	font-size: 43px;
	font-weight: 500;
	line-height: 50px;
}
.snb_tit .bo_line {
	display: inline-block;
	width: 60px;
	height: 1px;
	margin: 0 auto;
	background: #444;
}

/*  서브 내용 부  */
#container {
	display: inline-block;
	position: relative;
	z-index: 3;
	width: 100%;
	top: 0;
	text-align: center;
	top: 0px;
}
#board {
	display: block;
	position: relative;
	margin: 0 auto;
	top: 0;
	text-align: center;
}
#board .bo_cont {
	width: 100%;
	min-height: 620px;
	padding: 50px 0 50px 0;
	margin: 0 auto;
	margin-top: 0px;
	height: auto !important;
}
#board .bo_cont1 {
	width: 1300px;
	min-height: 620px;
	padding: 50px 0 50px 0;
	text-align: left;
	margin: 0 auto;
	height: auto !important;
}

.cate_pc {
	width: 1300px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 60px;
}
.cateBtn {
	display: inline-block;
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding: 0;
}
.cateBtn .nav {
	width: 100%;
	position: relative;
	width: 1300px;
	margin: 0 auto;
}
.cateBtn .nav ul {
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "Pretendard-Light";
	font-size: 22px;
	font-weight: normal;
	letter-spacing: -0.04em;
}
.cateBtn .nav li {
	list-style: none;
	display: inline-block;
	position: relative;
	width: 15%;
	height: 52px;
	line-height: 52px;
	background: #f3f3f3;
	border-radius: 8px;
	color: #000;
	margin: 0 6px;
	text-align: center;
	cursor: pointer;
}
.cateBtn .nav li span {
	display: block;
	height: 52px;
	background: #55a3a2;
	color: #fff;
	text-align: center;
	cursor: pointer;
	border-radius: 8px;
}

/* 하단 배너 */
.tail_banner {
	display: inline-block;
	position: relative;
 	width: 100vw;
	height: 4.1666666667vw;
	margin: 0 auto;
	text-align: center;
	border-top: 1px #ddd solid;
	border-bottom: 1px #ddd solid;
}

/* COPYRIGHT */
#foot {
	display: inline-block;
	position: relative;
	z-index: 999;
	width: 100vw;
	height: 13.02083333333vw;
	text-align: center;
	background: #fff;
}
.copyright {
	width: 72.9166666667vw;
	margin: 0 auto;
	padding: 2.08333333333vw 0 0;
}
.copyright .tail_logo {
	float: left;
	position: relative;
	width: 18.2291666667vw;
	text-align: left;
	padding: 1.1458333333vw 5.7291666667vw 0 0;
}
.copyright .tail_logo img {
	width: 100%;
	object-fit: cover;
}
.copyright .tail_add {
	float: left;
	position: relative;
	margin-top: 1.04166666667vw;
	text-align: left;
	font-family: "Noto Sans Kr";
	font-size: 0.78125vw;
	font-weight: 300;
	color: #777;
	letter-spacing: 0em;
	line-height: 1.3020833333vw;
}
.copyright .tail_add a {
	color: #777;
}
.copyright .tail_add p {
	padding-top: 1.3020833333vw;
	text-align: left;
	font-family: "Noto Sans Kr";
	font-size: 0.78125vw;
	font-weight: 300;
	color: #bebebe;
}
.copyright .tail_privacy {
	width: 13.28125vw;
	margin-top: -4.9479166667vw;
	margin-left: 51.8229166667vw;
	cursor: pointer;
}

.copyright .tail_adm {
	width: 100%;
	float: left;
	text-align: left;
	padding: 1.04166666667vw 0 0 18.2291666667vw;
}
.copyright .tail_adm a {
	text-align: center;
	padding: 2px 12px 3px 12px;
	border: 1px #eee solid;
	font-size: 13px;
	line-height: 24px;
	letter-spacing: -0.05em;
	font-weight: 300;
	cursor: pointer;
}
.copyright .tail_adm a {
	font-family: "Noto Sans Kr";
	color: #ddd;
	text-decoration: none;
}
.copyright .tail_adm a.adm_ {
	padding: 2px 12px 3px 12px;
	border: 1px #bc0400 solid;
	color: #bc0400;
	font-size: 13px;
	line-height: 24px;
	letter-spacing: -0.05em;
	font-weight: 300;
	cursor: pointer;
}

.span_line {
	clear: both;
	display: inline-block;
	width: 11px;
	border-left: 1px #fff solid;
	line-height: 12px;
	margin: 0 0 0 13px;
}
.tail_line {
	clear: both;
	display: inline-block;
	width: 10px;
	border-left: 1px #aaa solid;
	color: #aaa;
	line-height: 12px;
	margin: 0 0 0 11px;
}

/*  로그인/회원가입 head 부  */
#head_content {
	display: block;
	position: relative;
	min-width: 100%;
	top: 1px;
	text-align: center;
	border-top: 1px #ddd solid;
}
#head_content #head {
	width: 950px;
	margin: 0 auto;
	padding: 0;
}
#head_content #head .cont {
	width: 950px;
	text-align: left;
	margin: 0 auto;
	padding: 40px 0 90px 0;
}

/* Go Top 버튼 */
a.go-top {
	position: fixed;
	right: 25px;
	bottom: 100px;
	width: 65px;
	height: 65px;
	z-index: 999;
	display: none;
}

/* 게시판 카테고리 */
#bo_cate {
	width: 100%;
	height: 42px;
	margin: 0 auto;
	margin-bottom: 20px;
	font-size: 17px;
	font-weight: 500;
	line-height: 40px;
}
#bo_cate h2 {
	position: absolute;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
#bo_cate ul {
	height: 42px;
	width: 100%;
	zoom: 1;
}
#bo_cate ul:after {
	display: block;
	visibility: hidden;
	clear: both;
	content: "";
}
#bo_cate li {
	list-style: none;
	display: inline-block;
	float: left;
	height: 42px;
	line-height: 40px;
	padding: 0 25px;
	background: #fff;
	border: 1px #ccc solid;
	margin-right: -1px;
	text-align: center;
	transition: all 0.3s ease;
}
#bo_cate li a {
	display: inline-block;
	position: relative;
	text-align: center;
	cursor: pointer;
	height: 40px;
	margin: 0 -25px;
	padding: 0 25px;
}
#bo_cate li a:focus,
#bo_cate li a:hover,
#bo_cate li a:active {
	background: #55a3a2;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}
#bo_cate #bo_cate_on {
	display: inline-block;
	float: left;
	height: 40px;
	line-height: 40px;
	margin: 0 -25px;
	padding: 0 25px;
	background: #55a3a2;
	border: 0px #ddd solid;
	color: #fff;
	text-align: center;
	cursor: pointer;
}

/* 게시판 검색창 */
#bo_sch input[type="text"]:focus {
	border: 0px !important;
}

/*  메인 popup   */
#popup_la {
	border: 0px #ffffff solid;
	background: #eee;
}
#popup_la .file {
}
#popup_la .content {
	width: 400px;
	height: 400px;
	padding: 20px;
}
#popup_la .day {
	width: 100%;
	float: right;
	text-align: center;
	background: #eee;
	color: #000;
	padding: 2px 10px 5px 0;
}
#popup_la .day strong {
	color: #000;
}

/* 버튼 */
.btn,
a.btn {
	-webkit-transition: background-color 0.3s ease-out;
	-moz-transition: background-color 0.3s ease-out;
	-o-transition: background-color 0.3s ease-out;
	transition: background-color 0.3s ease-out;
}

.btn3,
a.btn3 {
	-webkit-transition: background-color 0.3s ease-out;
	-moz-transition: background-color 0.3s ease-out;
	-o-transition: background-color 0.3s ease-out;
	transition: background-color 0.3s ease-out;
}

.btn-more a {
	position: relative;
	display: inline-block;
	overflow: hidden;
	color: #fff;
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.btn-more a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: -120px;
	display: block;
	border-right: 0px solid transparent;
	border-bottom: 100px #eee solid;
	z-index: -1;
	transform: translateX(-100%);
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.btn-more a:hover:before {
	transform: translateX(0);
}

/* 더보기 버튼 공통 */
.btn_more:hover .toggler {
	opacity: 1;
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
}

.toggler {
	display: inline-block;
	position: absolute;
	z-index: 20;
	margin-left: 660px;
	top: 55px;
	width: 40px;
	height: 40px;
	border: none;
}
.toggler {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.toggler:before,
.toggler:after {
	content: "";
	display: block;
	position: absolute;
	background-color: #000;
}
.toggler:before {
	top: 0px;
	left: 50%;
	margin-left: -2px;
	width: 3px;
	height: 100%;
}
.toggler:after {
	left: 0px;
	top: 50%;
	margin-top: -2px;
	width: 100%;
	height: 3px;
}
