html, body{
	position: relative;
	width: 100%;
	height: 100%;
	font-family:'Noto Sans KR','Marcellus', sans-serif;
	font-size:10px;
	font-weight:400;
}

#wrap {
	width: 100%;
	min-width: 1440px;
	height:100%;
	min-height: 100%;
	position: relative;
}

/* 헤더 --------------------------------------------------- */
header {
	display: flex;
	align-items: center;
	justify-content: center;
	height:100%;
	background : none;
	position: fixed;
	z-index: 9999;
	top: 0;
}
header .header_area {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	height:100%;
	margin:0;
	background: rgb(54 40 20 / 40%);
}
header .header_area h1 {width: 20rem;}
header .header_area h1 a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 4rem;
}
/* //헤더 --------------------------------------------------- */

/* 네비 --------------------------------------------------- */
.gnb {
	width:100%;
	z-index: 99999;
}
.gnb ul {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	width: 100%;
}
.gnb ul li {
    width: 100%;
    position: relative;
}
.gnb a.btn_gnb.active + .sub_nav {
	visibility: visible;
	opacity: 1;
}
.gnb li > a {
	width: 200px;
	height: 50px;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fdfcf9;
	text-shadow: 0px 1px 2px rgb(106 99 88 / 30%);
	position: relative;
	display: flex;
	align-items: center;
}
.gnb li > a > span {
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	visibility: visible;
	opacity: 1;
	transition: all 0.2s;
	z-index: -1;
}
.gnb li > a > span.en {
	visibility: hidden;
	opacity: 0;
}
.gnb li > a:hover > span.ko {
	visibility: hidden;
	opacity: 0;
}
.gnb li > a:hover > span.en {
	visibility: visible;
	opacity: 1;
}

.gnb li > a .line{
	position: absolute;
	bottom: 3px;
	height: 3px;
	width: 100%;
	left: 0;
	background-image: linear-gradient(transparent calc(100% - 2px), #7D3F7C 0px);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	background-position: 50% bottom;
	transition: background-size 0.5s;
}

.gnb li > a.active .line{
	background-size: 100% 100%;	
}
/* //네비 --------------------------------------------------- */

/* 서브 네비 --------------------------------------------------- */
.sub_nav{
	position: fixed;
	left: 200px;
	top: 164px;
	width: 200px;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all .5s;
	z-index: 9999;
}
.sub_nav.active::after {
	display: block;
	content: '';
	width: 200px;
	height: 100%;
	background: rgb(76 57 14 / 23%);
	position: fixed;
	top: 0;
	left: 200px;
}
.sub_nav_area {
	width: 200px;
	margin: 0 auto;
}
.sub_nav_area ul {
	width: 100%;
}
.sub_nav_area li a {
	padding: 1rem 3rem;
	border-bottom: 1px solid rgb(236 235 227 / 50%);
	font-family: 'Noto Sans KR';
	font-size: 1.3rem;
	font-weight: bold;
	color: #ffffff;
	z-index: 99999;
}
.sub_nav_area li a:hover {
}

.sub_nav.con_top_nav {
	height: 5.8rem;
	margin-top: 5.6rem;
	position: relative;
	top: 0;
	visibility: visible;
	opacity: 1;
	z-index:999;
}
.sub_nav.con_top_nav.fixed {
	display: none;
}
.sub_nav.con_top_nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.sub_nav.con_top_nav ul li {
	display: inline-block;
}
/* //서브네비 --------------------------------------------------- */

.nav_3depth_area li a {
	font-weight: normal;
	color: #ffffff;
	border: none;
}
.nav_3depth_area li a:hover {
	color: #ffffff;
	text-decoration: underline;
}


/*다국어번역------------------------------------------------*/
.lang_wrap{}
.gtranslate_wrapper {
	display: flex;
    align-items: center;
    justify-content: right;
}
.gtranslate_wrapper  a{
	text-decoration: none;
	padding:0 !important;
}
.gtranslate_wrapper img{
	vertical-align: middle;
    display: inline;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: 0.8;
    margin-right: 2px;
    width: 32px;
    height: 32px;
}
/* //다국어번역------------------------------------------------*/


/* 탑 로그인 --------------------------------------------------- */
.btn_top_user {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top:3rem;
	right:3rem;
	z-index: 99999;
}
.btn_top_user a {
    display: flex;
    align-items: center;
    padding: 2.1rem;
    color: #383735;
	font-size: 1.2rem;
    line-height: 1;
}
.btn_top_user a i.user {
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    margin-top: -0.2rem;
    margin-right: 1rem;
    background: url(../img/common/ico_user.svg) center no-repeat;
}
.btn_top_user a:last-child::before {
	display: inline-block;
	content:'';
	width:1px;
	height: 12px;
	margin-left:-20px;
	margin-right: 20px;
	background:#A4A4A4;
}
.btn_top_user label {
	position: relative;
}
.btn_top_user label::after {
	display: block;
	content:'';
	width:18px;
	height:18px;
	background: url(../img/ico_search.svg) center no-repeat;
	background-size: cover;
	position: absolute;
	top: 8px;
    right: 10px;
}
.btn_top_user label input {
	padding: 10px;
	padding-right: 35px;
    border-radius: 4px;
    font-size: 12px;
	outline:0;
}
/* //탑 로그인 --------------------------------------------------- */

/* 빠른상담신청 --------------------------------------------------- */
.btn_contactus {
	width: 100%;
	padding: 2rem 2rem 8rem;
	flex: 1 0 auto;
	align-items: flex-end;
	justify-content: center;
	display: flex;
}
.btn_contactus > a {
	width: 100%;
	padding: 14px;
	background:#CD9191;
	border-radius: 2rem;
	font-size: 1.2rem;
	color:#fff;
	text-align: center;
}
.btn_contactus > a:hover {
	background: #bb7c7c;
}

.contactus_area {
	width: 865px;
	height: 100%;
	padding:4.5rem 5rem;
	background: rgb(201 174 158 / 90%);
	opacity: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	position: fixed;
	top: 0;
	left: -865px;
	z-index: 99999;
	transition: all .2s;
}
.contactus_area.active {
	left:0;
	opacity: 1;
}
.contactus_area > h4 {
	font-size: 2.8rem;
	margin-bottom:7rem;
}
.contactus_area > a.btn_close {
	position: absolute;
	top: 50px;
	right: 50px;
}
.contactus_area>a.btn_close:before {
	display: block;
	content:'';
	width: 28px;
	height: 28px;
	background: url(../img/common/ico_close.svg) center no-repeat;
	transform: rotate(0);
	transition: all 0.2s;
}
.contactus_area>a.btn_close:hover:before {
	transform: rotate(180deg);
}
.contactus_area ul {
	width: 100%;
}
.contactus_area ul li {
	margin-bottom:10px;
}
.contactus_area ul li label {
	font-size: 1.6rem;
	font-weight: bold;
}
.contactus_area ul li input[type="text"]{
    display: block;
    width: 100%;
    padding: 1.2rem 1.5rem;
    margin: 1rem 0 4rem;
    font-size: 1.4rem;
}
.contactus_area ul li textarea {
    display: block;
    width: 100%;
    min-height: 20rem;
    margin: 1rem 0 4rem;
	padding: 1.2rem 1.5rem;
	font-size: 1.4rem;
}

.contactus_area ul li input[type="text"]:focus-visible,
.contactus_area ul li textarea:focus-visible {
	outline:0;
}

.btn_contactus_confirm {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin:4rem 0;
}
.btn_contactus_confirm a {
	padding: 2.2rem 4rem;
	background: #494949;
	font-size: 1.8rem;
	font-weight: bold;
	color:#fff;
}

/* //빠른상담신청 --------------------------------------------------- */

/* 메인 비주얼 --------------------------------------------------- */
.main_visual {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	max-width: 192rem;
	height: 100%;
	margin: 0 auto;
	background: url(../img/main/bg_main.png) center no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
}

.main_visual > .slogan {
	padding-bottom: 120px;
	text-align: center;
	color: #fff;
	line-height: 1.4;
	letter-spacing: -1px;
	text-shadow: 0px 2px 4px rgb(0 0 0 / 10%);
	position: absolute;
	z-index: 99999;
}
.slogan .t80 {
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: -3px;
}
.slogan .t20 {
    font-size: 2rem;
}

.main_visual_swiper {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.main_visual_swiper .swiper-slide {
	transition:all 0.2s;
	display: flex;
    align-items: center;
    justify-content: center;
	z-index: 99;
}
.main_visual_swiper .swiper-slide-active {
	z-index: 999;
}
.main_visual_swiper .swiper-slide > a,
.main_visual_swiper .swiper-slide img {
	height:100%;
}
.main_visual_swiper .swiper-pagination {
	bottom: 50px;
    transform: translateX(-50%);
    margin-left: 50%;
}
.main_visual_swiper .swiper-pagination-bullet {
	width: 14px;
    height: 14px;
    margin: 0 5px;
    background: #fff;
    box-shadow: 0px 2px 2px 1px rgb(0 0 0 / 40%);
	border-radius: 20px;
}
.main_visual_swiper .swiper-pagination-bullet-active {
	width: 24px;
	background-color: #fff;
	box-shadow: 0px 2px 2px 1px rgb(0 0 0 / 10%);
}
/* //메인 비주얼 --------------------------------------------------- */

/* 퀵메뉴 --------------------------------------------------- */
.quick_menu {
	position: fixed;
	top: 24%;
	right: 5rem;
	z-index: 9999;
}

.quick_menu li {
	margin-bottom: 1rem;
	display: flex;
    align-items: center;
    justify-content: flex-end;
}

.quick_menu li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 53px;
	height: 53px;
	background-color: #F28B3C;
	border-radius: 2.6rem;
	color: #FFF;
	padding: 0.9rem;
	font-family: "Noto Sans KR",sans-serif;
	font-size: 1.2rem;
	transition: all 0.2s;
}
.quick_menu li a:hover {
    width: 19.3rem;  	
}
.quick_menu li a p {
	display: block;
	overflow: hidden;
	width: auto;
	height: auto;
	margin-left: -100px;
	font-size: 1.2rem;
	opacity: 0;
	transition: all 0.3s;
	transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.quick_menu li a:hover p {
	width: auto;
	height: auto;
	margin-left: 10px;
	font-size: 1.2rem;
	opacity: 1;
}
.quick_menu li a i {
	display: inline-block;
	width:3.5rem;
	height:3.5rem;
}
.quick_menu i.q_kakao  {background: url('../img/common/ico_kakao.svg') center no-repeat;}
.quick_menu i.q_naver  {background: url('../img/common/ico_blog.svg') center no-repeat;}
.quick_menu i.q_insta  {background: url('../img/common/ico_insta.svg') center no-repeat;}
.quick_menu i.q_facebook  {background: url('../img/common/ico_facebook.svg') center no-repeat;}
.quick_menu i.q_youtube {background: url('../img/common/ico_youtube.svg') center no-repeat;}
.quick_menu i.q_beauty {background: url('../img/common/ico_beauty.svg') center no-repeat;}
.quick_menu i.q_naver_reservation  {background: url('../img/common/ico_naver_reservation.svg') center no-repeat;}
.quick_menu i.q_naver_talk  {background: url('../img/common/ico_naver_talk.svg') center no-repeat;}
/* //퀵메뉴 --------------------------------------------------- */

/* 공통 컨텐츠 영역 --------------------------------------------------- */
.con_area h2 {
	font-family: "Marcellus", sans-serif;
	font-size:5.3rem;
	color: #AB8970;
	MARGIN-BOTTOM: 5.3rem;
	font-weight: 400;
}
.con_area h2 span {
	color: #D1BBAA;	
}
.con_area {
	width: 140rem;
	padding: 0 12rem 12rem 0;
}
/* //공통 컨텐츠 영역 --------------------------------------------------- */

section.main {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: rgb(0 0 0 / 30%);
    color:#fff;
    position: relative;
}
section.main .tit h3 {
    font-family: serif;
    font-size: 8.5rem;
    font-weight: 700;
    letter-spacing: -5px;
    margin-bottom: 4rem;
}
section.main .tit p {
    font-size: 2.4rem;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}
section.main .tit h4 {
    font-size: 3rem;
    margin-bottom: 4rem;
}
section.main .tit a {
    font-size: 3.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -1px;
    display: block;
}
section.main .tit a .ico_view {
	display: inline-block;
	width:32px;
	height:32px;
	margin-right: 1rem;
	background: url(../img/common/ico_more.svg) center no-repeat;
}

/* 클리닉 --------------------------------------------------- */
.main.clinic {
	margin-top:100%;
}
.clinic_card {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
}
.clinic_swiper-pagination {
	padding-left: 400px;
}
.clinic_swiper-pagination .swiper-pagination-bullet {
	width: 10px;
    height: 10px;
	margin:0 5px;
    display: inline-block;
    border-radius: 10px;
    background: #fff;
}
.clinic_swiper-pagination .swiper-pagination-bullet-active {
	width:40px;
}
/* //클리닉 --------------------------------------------------- */

/* 이벤트 --------------------------------------------------- */
.event_area {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}
section.main.event .tit p {
	margin-bottom : 8rem;
}
.event_slide {
	position: absolute;
	top:0;
	right: 12rem;
	width: 770px;
	height: 100%;
	padding-top: 290px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(40%,auto));
	grid-auto-rows: 600px;
	justify-content: center;
	overflow: hidden;
	overflow-y: scroll;
}
.event_slide::-webkit-scrollbar {
	display: none;
}
.event_slide a {
	margin-left:60px;
	margin-bottom: 20px;
	display: inline-block;
}
.event_slide a img {
	border-radius: 23px;
}
/* //이벤트 --------------------------------------------------- */

/* youtube --------------------------------------------------- */
.youtube_area {
	/* background: #EBE4DA; */
}
.youtube_group {
    padding: 2.8rem;
    background: #EBE4DA;
    border-radius: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.youtube_play iframe {
    border-radius: 2.8rem;
    overflow: hidden;
}
.youtube_list {
    background: #fff;
    border-radius: 2.8rem;
    overflow: hidden;
    padding: 2.5rem 2.1rem;
	margin-left:2rem;
}
.youtube_list .tit a {
    color: #000 !important;
    display: flex !important;
}
.youtube_list .tit a img {
    width: 8rem;
    height: 8rem;
    margin-right: 2rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.youtube_list .tit a h4 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.youtube_list .tit a .youtube_name {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.youtube_list .tit a .desc {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.youtube_list .list ul li a {
    padding: 1rem;
    /* margin-bottom: 1.5rem; */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: #000;
    transition: all 0.2s;
}
.youtube_list .list ul li a:hover {
	background:#f4f4f4;
}
.youtube_list .list ul li a img {
    width: 18rem;
    margin-right: 1rem;
}
.youtube_list .list ul li a h4 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
}
.youtube_list .list ul li a p {
    font-size: 1.2rem;
    color: #666;
}
.youtube_list .list ul li a p span:before {
	display: inline-block;
	content:'ㆍ';
	margin:0 10px 0px 10px;
}
/* //youtube --------------------------------------------------- */

/* 진료 부서 --------------------------------------------------- */
.dot_area {}
.dot_area .dot_list {
    background: rgb(235 228 218 / 80%);
    border-radius: 2.8rem;
    overflow: hidden;
}
.dot_area .dot_list ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dot_area .dot_list li a {
    display: block;
    padding: 77px 40px 105px;
    color: #796F66;
    text-align: center;
}
.dot_area .dot_list li:nth-child(2n) a {
	background: rgb(255 255 255 / 20%);
}
.dot_area .dot_list li a:hover {}
.dot_area .dot_list li a img {}
.dot_area .dot_list li a h4 {
    margin: 40px 0;
    font-size: 2rem;
    font-weight: 700;
}
.dot_area .dot_list li a p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
}
/* //진료 부서 --------------------------------------------------- */

/* 풋터 --------------------------------------------------- */
footer {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: #857C6A;
	color: #fff;
	position: relative;
}
.footer_area {
	width: 140rem;
	padding: 0 12rem 4rem 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #F0E9D4;
}
footer h3{
	padding-bottom: 1.2rem;
	margin-bottom: 1rem;
	font-family: "Grenze";
	font-size: 2.8rem;
	font-weight: 400;
}
footer ul li,
footer ul li a {
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #F0E9D4;
}
footer ul li strong {
    display: inline-block;
    width: 6.8rem;
}
footer hr {
    border: none;
    height: 1px;
    background: #EFE8DA;
    margin: 2.5rem 0;
}
footer .map {margin-top: 2rem;}

footer .map iframe{margin-top: 2rem; width:800px; height:635px;}
/* //풋터 --------------------------------------------------- */

/* 체크박스 스타일링 --------------------------------------------------- */
.quick_contact .check_wrap input{
	display:none;
}
.quick_contact .check_wrap input + label{
	cursor:pointer;
}

.quick_contact .check_wrap > label {
	padding-left: 1.7rem;
}

.quick_contact .check_wrap input + label > span{
	position: relative;
	top: 1.5px;
	padding-left: 5px;
	font-size: 1.3rem;
	letter-spacing: -.5px;
	padding-right: .6rem;	
}
/* 체크하기 전 */
.quick_contact .check_wrap input + label:before{
	content:"";
	display:inline-block;
	width:14px;
	height:14px;
	border:1px solid #fff;
	border-radius: 3px;
	vertical-align:middle;
}

/* 체크 후*/  
.quick_contact .check_wrap input:checked + label:before{
	content:"";
	background: url('/web/assets/img/common/check.svg') center no-repeat;
}
/* //체크박스 스타일링 --------------------------------------------------- */

.btn_ss {
	display: inline-table;
	font-family: 'Noto Sans KR';
	font-size: 1.1rem;
	font-weight: 400;
	color:#9B8D82;
	background-color: #fff;
	padding: .5rem 0;
	border: 0;
	border-radius: 5px;
	min-width: 3rem;
	text-align: center;
	cursor: pointer;
}

/* 검색 --------------------------------------------------- */
.search_input {}
.search_input p {
	padding:20px 0 40px;
	font-size:20px;
	color: #5e5e5e;
}
.search_input label {
	display: block;
	position: relative;
}
.search_input label:before {
	display: block;
    content: '';
    width: 26px;
    height: 26px;
    background: url(../img/ico_search.svg) center no-repeat;
    background-size: cover;
    position: absolute;
    top: 14px;
    left: 0;
    opacity: 0.3;
}
.search_input label:after {
    display: block;
	content: '';
    width: 0;
    height: 1px;
    background-color: #111;
    position: absolute;
    bottom: 0;
    transition: .5s ease-in-out;
}
.search_input label:hover:after{
	transition: .5s ease-in-out;
    width: 100%;
}
.search_input label input {
	width: 100%;
    padding: 20px 40px;
    font-size: 14px;
    background: transparent;
	outline:0;
}

.search_result {
	padding: 20px;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 10px 20px #0000001c;
}
.search_result ul {
	border: 1px solid #ddd;
    border-bottom: 0;
}
.search_result ul li {}
.search_result ul li a {
	display: block;
    padding: 20px;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
	position: relative;
}
.search_result ul li a:after {
	display: block;
    content: '';
    width: 32px;
    height: 32px;
    background: url(../img/ico_next.svg) center no-repeat;
    background-size: cover;
    position: absolute;
    top: 26px;
    right: 20px;
}
.search_result ul li a p {
	color: #999;
}
