@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

* {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
::-moz-selection {background: #000000; /*메인색*/ color: #fff;text-shadow: none;}
::selection {background: #f7b893; color: #fff; text-shadow: none;}
html, body, div, span, object, iframe, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, sup, legend, caption, table, tbody, thead, tfoot, tr, th, td, summary, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, b, i, a, small, menu, nav, section, time, mark, audio, video, dl, dt, dd, ul, li, ol, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, select, textarea, p, blockquote, button {margin:0;padding:0; border: 0;outline: 0;font-weight: inherit;font-style: inherit;font-size: 100%;font-family: inherit;color:inherit;vertical-align: middle}
dl,ul,ol,menu,li {list-style:none}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
input,select,textarea,button {background:none}
input::-moz-placeholder, textarea::-moz-placeholder {color: #000;}
select {border-radius:0; /* 아이폰 사파리 보더 없애기 */ -webkit-appearance:none; /* 화살표 없애기 for chrome*/ -moz-appearance:none; /* 화살표 없애기 for firefox*/ appearance:none /* 화살표 없애기 공통*/ }
select::-ms-expand{ display:none /* 화살표 없애기 for IE10, 11*/ }
option {font-family: Pretendard;}
pre {white-space: pre-wrap;}
img {border:0; max-width:100%}
table {border-collapse:collapse; table-layout: fixed;}
a {text-decoration:none;}
a:hover {transition:.2s all ease}
span {vertical-align:top}
blockquote {font-size:1.1em;font-style:italic;border-left:5px #000 solid; padding-left:20px;margin:40px 20px;}
div,p {word-break:keep-all;}
b, strong {font-weight:700;}

html {font-size: 16px;}
body {
	color:#333; 
	font-size:16px; 
	font-family:"Lato","Pretendard","Apple SD Gothic NEO",dotum,sans-serif; 
	max-width: 1920px;
	margin: 0 auto;
	background:#fff;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
}

:root {
	--main: #f8b894;
	--orange: #f77636;
	--kakao: #ffe95b;
	--peach: #fcd2ba;
	--apricot: #f7b893;
	--rose: #be1f1f;
	--bright-rose: #dfbbab;
	--gray: #757575;
	--bright-gray: #b7b3b3;
	--easy-black: #3b3838;

}

/*** *common****/
	.ta-l {text-align: left;}
	.ta-r {text-align: right;}
	.ta-c {text-align: center;}

	.none {display: none;}
	.pc_none {display: none;}
	.pc_none_flex {display: none;}
	.mo_none {display: block;}
	.mo_none_flex {display: flex;}
	.bg_none {background: none !important;}

	.containerWrap {width: 100%;padding: 3rem;}
	.container {max-width:1920px;margin:0 auto 200px;}
	.row {
		display: flex;
		flex-wrap: wrap;
		flex-direction:row;
		text-align:center;	
	}

	.row h1 {font-size: 2.25rem;color: #3b393b;margin-bottom: 1.4%;}
	.row h2 {
		font-size:1rem;
		font-family:"Lato";
		font-weight: 900;
		color: var(--peach);
		margin-bottom: 1.4%;
		opacity: 0.57;
		letter-spacing:6px;
	}
	.row h3 {
		font-size:1.4rem;
		font-weight:500;
		color: #120e0f;
		letter-spacing: -1.5px;
		margin-bottom:4%;
	}

	.row-sub h1 {font-weight: 600;font-size: 210%;margin-bottom: 1%;}
	.row-sub h2 {margin-bottom:1%;}
	.row-sub h3 {font-size: 90% !important;letter-spacing:4px}

	.row-board h1 {font-size: 200%;color: #fff;margin-bottom: 1%;}
	.row-board h2 {margin-bottom:1%;}
	.row-board h3 {
		font-size: 90%;
		letter-spacing:1px;
		color: #fff;
		margin-bottom: 1%;
	}

	.col-3 {width: 25%;}
	.col-5 {width: calc(125%/3);}
	.col-6 {width: 50%;}
	.col-7 {width: calc(175%/3);}

	.flex {display: flex;}
	.flex-wrap {flex-wrap:wrap}
	.justfy_between {justify-content: space-between}
	.direction-col {	flex-direction:column;}
	.align-center {align-items: center;}

	.btn_box {display: flex;justify-content: center;margin:2% auto;}
	.btn_box img {padding: 1%;}

	input[type="checkbox"]:checked + label:after, 
	input[type="checkbox"]:checked + label:before {
		background-image: url('/images/common/icon_check.png');
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center;
	}
	input[type="radio"]:checked + label:before {
		background-image: url('/images/common/icon_check.png');
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center;	
	}

	#quick_right {
		position: fixed;
		right: 20px;
		bottom: 10%;
		z-index: 9;
	}
	#quick_right li {
		width: 80%;
		margin-bottom: 1rem;
	}

	.grecaptcha-badge {display: none;}

	.slide-up {
		visibility: hidden;
		position: absolute;
		width: 100%;
		height: 200%;
		left: 0;
		right: 0;
		top: 100%;
		background-color: #fff;
		transition: top 0.5s cubic-bezier(0.65, 0.06, 0, 1.03);
		z-index: 1000;
	}
	.slide-up.show {
		visibility: visible;
		top: 0;
	}
	.slide-up .close {
		display: block;
		position: absolute;
		top: 50px;
		right: 50px;
		width: 50px;
		height: 50px;
		background: url("/images/common/icon_close.png") 50% 50% no-repeat;
		opacity: 1;
		cursor: pointer;
	}

/**** popup *****/
	#div_laypopup1{
		display:none;
		position:absolute;
		max-width:600px;
		color:white;
		text-align:center;
		z-index:15;
		transition: 1s all ease;
		box-shadow:0 0 20px #000;
	}
	#div_laypopup1 img {max-width:100%;}
	#div_laypopup2{
		display:none;
		position:absolute;
		max-width:600px;
		color:white;
		text-align:center;
		z-index:5;
		transition: 1s all ease;
		box-shadow:0 0 20px #000;
	}
	.todayClose {
		display: flex;
		align-items: center;
		position:absolute; right:6px; bottom:5px;
		margin:0; padding:0;
		color:#fff;
		text-shadow: 0 0 4px #000;
		z-index: 1;
	}
	.todayClose input{vertical-align:middle;}
	.justClose{
		display:inline-block;
		font-size: 0.9em;
		color:#000;
		cursor:pointer;
		line-height: 1.2em;
		border:1px solid #ccc;
		padding:0px 2px 1px 2px;
		margin-left:1rem;
		background-color:#FFF;
	}
	@media(max-width:768px){
		#div_laypopup1 {top: 12% !important;left: 2% !important;width: 96%;}
		#div_laypopup2 {top: 12% !important;left: 2% !important;width: 96%;}
	}

/**** HEADER *****/
	.navbar {
		display: flex;
		flex-direction: column;
		align-items: center;
		border-bottom: 1px solid #eaeaea;
		transition:.3s all ease;
	}
	.navbar.fixed {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 20;
		max-width: 1920px;
		margin: 0 auto;
		background-color: #fff;	
	}
	.navbar .navbar-top {
		display: none;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 1.2rem 1rem;	
	}
	.navbar .navbar-top > a {width: 300px;}
	.navbar .navbar-top .navbar-icon {
		width: 24px;
		height: 24px;
		margin: 0 10px;
	}
	.navbar .navbar-top .navbar-link {
		color: #717171;
		margin: 0 10px;
		text-decoration: none;
	}
	.hammenu {
		display: none;
		width: 30px;
		height: 20px;
		position: relative;
		margin-top: -4px;
		cursor: pointer;
		z-index: 20;
	}
	.hammenu span{
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: #000;
		transition: 0.3s;
	}
	.hammenu.active span {background-color: #fff;}
	#pc_ham.hammenu.active span {background-color: #000;}
	.hammenu span:nth-child(1) {top: 0;}
	.hammenu span:nth-child(2) {top: 50%;}
	.hammenu span:nth-child(3) {top: 100%;}
	.hammenu.active span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
	}
	.hammenu.active span:nth-child(2) {
		opacity: 0;
	}
	.hammenu.active span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg);
	}
	#pc_ham {
		display: block;
		margin-top: 0;
	}

	.logoWrap {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 1rem 0;
	}
	.logoWrap li {
		width: calc(100%/3);
		text-align: center;
	}
	.logoWrap .btn_link {
		color: #fff;
		font-weight: 600;
		padding: 0.75rem 1.5rem;
		border-radius: 2rem;
		background-color: #000;
	}
	.logoWrap .member-menu a {
		font-weight: 500;
		padding: 0 .5rem;
	}
	.logoWrap .cane {
		font-size: 1.25rem;
		color: #505050;
		position: relative;
		top: -1px;
		pointer-events: none;
		user-select: none;
	}

	.gnb {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		border-top: 1px solid #ebe9e8;
		border-bottom: 1px solid #ebe9e8;
	}
	.gnb > li {
		position: relative;
		display: block;
		border-bottom: 4px solid transparent;
		padding: 1rem 0;
	}
	.gnb > li.menu:hover {border-bottom: 4px solid #000;}
	.gnb .gnb-link {
		font-weight: 500;
		font-size: 1rem;
		margin: 0 1.25rem;
	}
	.gnb .navbar-icon {
		width: 24px;
		height: 24px;
		margin: 0 10px;
	}
	.gnb_all_wrap {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		border-top: 1px solid #eee;
		border-bottom: 1px solid #eee;
		border-radius: 0 0 20px 20px;
		padding: 2rem;
		box-sizing: border-box;
		background: #fff;
		z-index: 10;
	}
	.gnb_all_wrap .gnb_all {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.gnb_all_wrap .gnb_all > div{
		width: calc(100%/9);
		margin-bottom: 2rem;
	}
	.gnb_all_wrap .gnb_all .title {
		font-size: 1rem;
		color: #000;
		margin-bottom: 1rem;
	}
	.gnb_all_wrap .gnb_all ul li a {
		display: inline-block;
		color: #888;
		font-size: 0.85rem;
		padding: 0.25rem 0;
	}

	.snb {
		display: none;
		position: absolute;
		top: 56px;
		left: 50%;
		width: 240px;
		padding: 50px 30px;
		background-color: #fff;
		box-shadow: 0px 5px 21px 0px rgb(0 0 0 / 6%);
		-webkit-box-shadow: 0px 5px 21px 0px rgb(0 0 0 / 6%);
		transform: translateX(-50%);
		z-index: 2;
	}
	.snb li {
		width: 100%;
		margin-bottom: 1.5rem;
		font-weight: 600;
		font-size: 1rem;
		color: #717171;
		transition: 0.3s;
	}
	.snb li:last-child {margin-bottom: 0;}
	.snb li:hover {color: #000;}

	.gnb_mo {
		display: block;
		position: absolute;
		top: -100vh;
		left: 0;
		width: 100%;
		height: 100vh;
		color: #fff;
		background-color: #000;
		transition: 0.5s;
		overflow: hidden;
		z-index: 15;
	}
	.gnb_mo.active {top: 0;}
	.gnb_mo .menu {
		font-size: 2rem;
		border-bottom: 1px solid #b3b3b3;
		padding: 2rem;
	}

	.gnb_mo .menu span{cursor: pointer;}
	.gnb_mo .menu span:nth-child(1){
		border-right: 4px solid #fff;
		padding-right: 2rem;
		margin-right: 2rem;
	}
	.gnb_mo .link {
		display: flex;
		font-size: 2rem;
	}
	.gnb_mo .link .main {
		flex:1;
		height: 100vh;
		border-right: 1px solid #b3b3b3;
		padding: 2rem;
	}
	.gnb_mo .link .main li {cursor: pointer;padding: 1rem;}
	.gnb_mo .link .main li.active {background-color: var(--main);}
	.gnb_mo .link .sub {
		flex:1;
		color: var(--main);
		padding: 2rem;
	}
	.gnb_mo .link .sub li {padding: 1rem;}
	.gnb_mo .link .sub li a{display: block;}


/*************** pager *****************/
	.pager {
		text-align: center;
		margin-top: 5%;
		display: flex;
		justify-content: center;
	}
	.pager:after{content:""; display:block; clear:both;}
	.pager li {padding: 4px 8px 3px;}
	.pager a{
		width: 25px;
		height: 25px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration:none;
		color:#000;
		cursor:pointer;
	}
	.pager a.active{
		font-weight:bold;
		background: var(--main);
		border-radius: 100%;
		color: #fff;
	}
	.pager .prev {background: url('/images/common/pager_prev.png') no-repeat;background-size: 100% 100%;text-indent: -999999px;}
	.pager .next {background: url('/images/common/pager_next.png') no-repeat;background-size: 100% 100%;text-indent: -999999px;}

	.wrap {position: relative;width: 1111px; margin: 0 auto;}


/**** index ****/
	#mainSwiper.fixed {margin-top: 150px;}
	#mainSwiper_mo.fixed {margin-top: 53px;}

	#index #onlyLuda {
		display: flex;
		justify-content: center;
		padding: 5rem 0;
	}
	#index #onlyLuda .right p {
		border-bottom: 2px solid #000;
		padding-bottom: 1rem;
		font-weight: 300;
		font-size: 1.75rem;
		text-align: right;
		margin-top: 2rem;
		margin-bottom: 3rem;
	}
	#index #onlyLuda .right ul {display: flex;}
	#index #onlyLuda .right li {
		text-align: center;
		font-size: 1.5rem;
		margin-right: 2rem;
	}
	#index #onlyLuda .right li:last-child {	margin-right: 0;}
	#index #onlyLuda .right li img{ margin-bottom: 1rem;}
	#index #onlyLuda #onlyLudaSwiper_mo .swiper-slide span{
		display: block;
		margin-top: 1.5rem;
		font-size: 1.75rem;
	}

	#index #myLuda {
		padding-top: 5rem;
		background-color: #ebeae8;
	}
	#index #myLuda .title {
		font-size: 2.5rem;
		font-weight: 300;
		text-align: center;
		margin-bottom: 2rem;
	}
	#index #myLuda .top {
		display: flex;
		width: 80%;
		margin: 0 auto 3rem;
	}
	#index #myLuda .top span {
		width: 55%;
		border-bottom: 1px solid #000;
		margin: 0 2rem 1.5rem 0;
	}
	#index #myLuda .top p {
		text-align: right;
		font-size: 2.7rem;
		font-weight: 300;
		margin-right: 1.25rem;
	}
	#index #myLuda .top a {
		display: flex;
		align-items: end;
	}
	#index #myLuda .bottom {
		display: flex;
		width: 80%;
		padding-bottom: 13rem;
		margin: 0 auto;
		background: url('../images/main/main_my_bg.png?v=2') right bottom no-repeat;
		background-size: 38%;
	}
	#index #myLuda .bottom #twentytwenty-box {margin-right: 3rem;}
	#index #myLuda .bottom .twentytwenty-container {width: 562px;}
	#index #myLuda .bottom #twentytwenty-box p {
		text-align: center;
		font-size: 1.5rem;
		font-weight: 200;
		margin-top: 2rem;
	}
	#index #myLuda .bottom .my-view {
		display: flex;
		flex-wrap:wrap;
		width: 27%;
	}
	#index #myLuda .bottom .my-view li {
		width: 50%;
		display: inline-block;
	}
	#index #myLuda .bottom .my-view li a {
		position: relative;
		display: inline-block;
		border-radius: 100%;
		overflow: hidden;
	}
	#index #myLuda .bottom .my-view li a.active {
		background-color: #0007;
	}
	#index #myLuda .bottom .my-view li img {display: block;}
	#index #myLuda .bottom .my-view li .overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		color: white;
		font-size: 1.25rem;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		transition: opacity 0.3s;
		background: rgba(0, 0, 0, 0.5);
		cursor: pointer;
	}
	#index #myLuda #myLudaSwiper_mo .swiper-slide {background:transparent;}
	#index #myLuda #myLudaSwiper_mo .swiper-slide a {
		position: relative;
		display: inline-block;
		border-radius: 100%;
		overflow: hidden;
		cursor: pointer;
	}
	#index #myLuda #myLudaSwiper_mo .swiper-slide a.active {
		background-color: #0007;
	}
	#index #myLuda #myLudaSwiper_mo .swiper-slide img {display: block;}
	#index #myLuda #myLudaSwiper_mo .swiper-slide .overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		color: white;
		font-size: 1.25rem;
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		transition: opacity 0.3s;
		background: rgba(0, 0, 0, 0.5);
	}

	#index #selfiPS {
		width: 95%;
		max-width: 1100px;
		margin: 6rem auto 0;
	}
	#index #selfiPS h3 {
		font-weight: 300;
		margin-bottom: 4rem;
		text-align: center;
		font-size: 1.75rem;
		letter-spacing: 7px;
	}
	#index #selfiPS h3 i {font-weight: 500;}
	#index #selfiPS .menu {
		display: flex;
		border: 1px solid #c9c9c9;		
	}
	#index #selfiPS .menu li {
		position: relative;
		flex:1;
		color: #888888;
		font-weight: 500;
		text-align: center;
		border-right: 1px solid #c9c9c9;
		padding: 1rem;
		transition: transform 0.3s ease;
		cursor: pointer;
	}
	#index #selfiPS .menu li:last-child {border-right: none;}
	#index #selfiPS .menu li::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #252525;
		transform: scaleX(0); 
		transform-origin: left;
	}
	#index #selfiPS .menu li:hover::before {transform: scaleX(1);}
	#index #selfiPS .menu li.active::before {transform: scaleX(1);}

	#index #selfiPS .imgs {
		display: flex;
		justify-content: center;
		border-bottom: 1px solid #c9c9c9;
		border-left: 1px solid #c9c9c9;
		border-right: 1px solid #c9c9c9;
		padding: 1rem 0.5rem;
	}
	#index #selfiPS .imgs li {
		display: inline-block;
		flex: 1;
		position: relative;
		margin: 1rem 0.25rem;
		transition: all 0.3s ease;
	}
	#index #selfiPS .imgs li:last-child {display: none;}
	#index #selfiPS .imgs li img {
		display: block;
		width: 100%;
		height: auto;
	}
	#index #selfiPS .imgs li::before {
		content: "VIEW +";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		font-weight: 500;
		font-size: 1.25rem;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		border: 13px solid #f8b894;
		opacity: 0;
		transition: opacity 0.3s ease;
		background: #0004;
		pointer-events: none;
	}
	#index #selfiPS .imgs li:hover::before {opacity: 1;}


	#index #ventLuda {
		display: flex;
		align-items: center;
		width: 75%;
		padding: 10rem 0;
		margin: 0 auto;
	}
	#index #ventLuda .pic {
		width: 30%;
		margin-right: 2rem;
	}
	#index #ventLuda .ventSwiper-box {width: 70%;}

	#index #onairLuda {
		padding-top: 7rem;
		padding-bottom: 8rem;
		background-color: var(--peach);
	}
	#index #onairLuda .title {
		font-size: 3rem;
		font-weight: 300;
		text-align: center;
		margin-bottom: 3rem;
	}
	#index #onairLuda .title b {font-weight: 500;}
	#index #onairLuda .top {
		display: flex;
		width: 75%;
		margin: 0 auto 3rem;
	}
	#index #onairLuda .top span {
		width: 70%;
		border-bottom: 1px solid #000;
		margin: 0 2rem 1.5rem 0;
	}
	#index #onairLuda .top p {
		text-align: right;
		font-size: 2.7rem;
		font-weight: 300;
		margin-right: 1.25rem;
	}
	#index #onairLuda .top a {
		display: flex;
		align-items: end;
	}
	#index #onairLuda .bottom {
		display: flex;
		width: 75%;
		margin: 0 auto;
		height: 480px;
	}
	#index #onairLuda .bottom .left {
		width: 75%;
		margin-right: 2rem;
		position: relative;
	}
	#index #onairLuda .bottom .left iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	#index #onairLuda .bottom .right {
		display: flex;
		flex-direction: column;
	}
	#index #onairLuda .bottom .right li {
		display: flex;
		height: calc(100%/3);
		border-radius: 0.5rem;
		margin-bottom: 1rem;
		background-color: #fff;
	}
	#index #onairLuda .bottom .right li a {display: flex;width: 100%;align-items: center;}
	#index #onairLuda .bottom .right li a img {
		border-radius: 0.5rem;
		object-fit: cover;
		height: 149px;
	}
	#index #onairLuda .bottom .right li a span {
		font-size: 1.5rem;
		font-weight: 400;
		line-height: 2rem;
		padding: 1rem 6%;
	}
	#index #mediaSwiper li{
		cursor: pointer;
	}
	#index #onairSwiper .swiper-slide {
		align-items: start;
		border-radius: 10px;
		box-shadow: 0px 0 10px #c0a19057;
		margin-top: 5px;
		margin-bottom: 5px;
		margin-left: 5px;
		cursor: pointer;
	}
	#index #onairSwiper .swiper-slide a {width: 100%;}
	#index #onairSwiper .swiper-slide img {
		width: 87%;
		border-radius: 10px;
		margin: 7% 6.5% 10%;
	}
	#index #onairSwiper .swiper-slide .subject {
		display: block;
		font-size: 1.75rem;
		padding-bottom: 4rem;
	}
	#index #onairSwiper .swiper-slide .brand {
		display: block;
		margin-bottom: 3rem;
		font-size: 1.25rem;
		font-weight: 300;
	}

/**** quick-consult ****/
	#quick-consult {
		position: fixed;
		display: flex;
		bottom: 0;
		left: 0;
		width: 100%;
		border-top: 1px solid #0002;
		padding: 0.5rem 0.75rem;
		justify-content: center;
		align-items: center;
		background-color: #8c8c8ccf;
		z-index: 9;
	}
	#quick-consult h1 {
		font-size: 1.4rem;
		font-weight: 500;
		margin-bottom: 0;
	}
	#quick-consult ul {
		display: flex;
		align-items: center;
		padding-left: 1em;
		margin-bottom: 0;
	}
	#quick-consult ul li {
		list-style: none;
		margin: 0 0.5rem;
	}
	#quick-consult ul .privacy-box {
		display: flex;
		width: 63%;
		font-weight: 500;
		font-size: 1rem;
	}
	#quick-consult ul .privacy-box label {margin-left: 0.25rem;}
	#quick-consult ul .btn-submit {width: 33.3333%;}
	#quick-consult input[type="text"], #quick-consult select {
		width: 14rem;
		height: calc(2.25rem + 2px);
		padding: 0.375rem 0.75rem;
		background-color: #fff;
	}
	#quick-consult #sBottomTypeSugry {
		background-image: url('../images/common/arrow_down.png?v=1');
		background-repeat: no-repeat;
		background-position: 95% center;
	}
	#quick-consult button {
		display: flex;
		align-items: center;
		color: #fff;
		font-size: 1.35rem;
		font-weight: 500;
		padding: 0.5rem 1.75rem;
		background-color: #0000009a;
		cursor: pointer;
	}
	#quick-consult button i{
		font-size: 1rem;
		margin-left: 0.5rem;
	}

/**** onlyps ****/
	#onlyps-title {position: relative;}
	#onlyps-title .left-box {
		position: absolute;
		left: 12%;
		top: 50%;
		transform: translateY(-50%);
		font-size: 3.5rem;
		color: #fff;
	}
	#onlyps-title .left-box .h1 {
		font-weight: 300;
		margin-bottom: 1rem;
	}
	#onlyps-title .left-box .h2 {
		font-weight: 500;
	}
	#onlyps-title .left-box .h3 {
		color: var(--main);
		font-weight: 500;
	}

	#onlyRegen #onlyps-section {position: relative;}
	#onlyRegen #onlyps-section .exp {
		position: absolute;
		left: 12%;
		top: 22%;
		font-size: 2.25rem;
		line-height: 3rem;
		color: #fff;
		width: 35%;
	}
	#onlyRegen #onlyps-section .exp .h1 {
		font-weight: 500;
		font-size: 3.5rem;
		margin-bottom: 3.5rem;
	}
	#onlyRegen #onlyps-section .exp .b {
		font-weight: 500;
		text-decoration:underline;
	}

/**** doctors ****/
	#doctors #doctors-section {
		width: 80%;
		margin: 5% auto;
	}
	#doctors #doctors-section > ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		width: 65%;
		margin: 0 auto;
	}
	#doctors #doctors-section > ul > li {
		width: 45%;
		font-size: 2.25rem;
		text-align: right;
		line-height: 3rem;
		margin: 0 1rem 5rem;
	}
	#doctors #doctors-section .img {
		position: relative;
		cursor: pointer;
	}
	#doctors #doctors-section .shadow {
		position: absolute;
		top: 0;
		bottom: 0;
		background: #000;
		width: 100%;
		left: 0;
		right: 0;
		opacity: 0;
		transition: .3s all ease;
	}
	#doctors #doctors-section .img:hover .shadow {opacity: 0.5;}
	#doctors #doctors-section .text {font-size: 2rem;margin-top: 1.5rem;}
	#doctors #doctors-section .name {font-weight: 500;}
	#doctors #doctors-section .view {background-color: #000c;}
	#doctors #doctors-section .view .inner {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 1450px;
		padding: 5%;
		margin: 0 auto;
		background-color: #fff;
	}
	#doctors #doctors-section .view .left {
		width: 40%;
		text-align: left;
	}
	#doctors #doctors-section .view .right {
		width: 55%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	#doctors #doctors-section .view .right .tit {
		font-size: 3rem;
		line-height: 3.5rem;
		text-align: left;
	}
	#doctors #doctors-section .view .right .sub {
		font-size: 3.5rem;
		line-height: 4.5rem;
	}
	#doctors #doctors-section .view .right .sub .b {font-weight: 500;}
	#doctors #doctors-section .view .bottom {
		width: 100%;
		font-size: 2rem;
		text-align: left;
		margin-top: 5%;
	}
	#doctors #doctors-section .view .cert {
		position: absolute;
		right: 5%;
		bottom: 5%;
	}

/**** hospital ****/
#hospital .hospital_wrap {margin: 3rem auto;}
#hospital .hospital_wrap .top{
	display: flex;
	width: 1280px;
	margin: 0 auto 2rem;
}
#hospital .hospital_wrap h2{
	display: inline-block;
	font-size: 2.25rem;
	font-weight: 700;
	margin-right: 1rem;
}
#hospital .hospital_wrap button {
	border: 2px solid #000;
	padding: 0.25rem 1.5rem;
	font-size: 1.25rem;
	margin-left: 0.5rem;
	font-weight: 600;
	cursor: pointer;
}
#hospital .hospital_wrap button.active {
	color: #fff;
	background-color: #000;
}


/**** whereRegen ****/
	#whereRegen .whereps1 {
		max-width: 1152px;
		display: flex;
		justify-content: center;
		text-align: center;
		padding-top: 10%;
		margin: 0 auto;
	}
	#whereRegen .whereps2 {
		text-align: center;
		padding-top: 7rem;
	}
	#whereRegen .whereps2 h2 {
		font-size: 3.5rem;
		margin-bottom: 3rem;
		font-weight: 500;
	}
	#whereRegen .whereps3 {
		display: flex;
		flex-wrap: wrap;
		width: 80%;
		text-align: center;
		padding-top: 10%;
		margin: 0 auto;
	}
	#whereRegen .whereps3 li {
		width: 50%;
		display: flex;
		height: 250px;
	}
	#whereRegen .whereps3 .left {width: 20%;}
	#whereRegen .whereps3 .right {
		text-align: left;
		padding: 2rem 3rem;
	}
	#whereRegen .whereps3 .right h4 {
		font-size: 2.5rem;
		font-weight: 500;
		margin-bottom: 1rem;
	}
	#whereRegen .whereps3 .right span {
		display: inline-block;
		color: #fff;
		font-weight: 500;
		border-radius: 26px;
		padding: 0.5rem 1rem;
		margin-bottom: 1rem;
		background: var(--main);
	}
	#whereRegen .whereps3 .right p{
		font-size: 1.5rem;
		line-height: 2rem;
	}

/**** nose ****/
	.section-style1 {
		position: relative;
		color: #617f81;
		padding: 5rem 0;
		margin: 0 auto;
	}
	.section-style1 .top {
		color: #c6d1d5;
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}
	.section-style1 h1 {
		font-size: 4.5rem;
		font-weight: 700;
		margin-bottom: 1rem;
	}
	.section-style1 .bottom {
		color: #c6d1d5;
		font-size: 2.5rem;
		margin-bottom: 6rem;
	}
	.section-style1 .exp {
		width: 45%;
		font-weight: 500;
		font-size: 1.5rem;
		margin-bottom: 3rem;
		line-height: 2.2rem;
	}
	.section-style1 .line {
		display: block;
		width: 2px; 
		height: 133px;
		margin-bottom: 3rem;
		background-color: #617f81;
	}
	.section-style1 .last {
		font-size: 2.5rem;
		font-weight: 600;
	}
	.section-style1 .bg {
		width: 100%;
		height: 100%;
		position: absolute;
		bottom: 0;
		background-size: 25% auto;
		background-image: url('../images/pages/nose/nose/section1_bg.png');
		background-repeat: no-repeat;
		background-position: right bottom;
	}
	.section-style2 {
		position: relative;
		text-align: center;
		padding: 5rem 0;
		background-color: #f8f2ec;
	}
	.section-style2 .title {margin-bottom: 1rem;}
	.section-style2 .title img {width: 450px;}
	.section-style2 h2 {
		color: #617f81;
		font-size: 4rem;
		font-weight: 700;
		margin-bottom: 1rem;
	}
	.section-style2 .sub {
		font-size: 3rem;
		font-weight: 600;
		margin-bottom: 5rem;
	}
	.section-style2 .line-wrap {
		display: flex;
		align-items:center;
		font-size: 2.5rem;
		font-weight: 600;
		margin-bottom: 2rem;
	}
	.section-style2 .line-wrap .line {
		width: 100%;
		height: 2px;
		margin: 0 1rem;
		background-color: #000;
	}
	.section-style2 .line-wrap.special {
		width: 50%;
		text-align: right;
		display: block;
		margin-top: -95px;
	}
	.section-style2 .white-box-wrap {
		display: flex;
		font-size: 1.75rem;
		font-weight: 500;
		margin-bottom: 3rem;
	}
	.section-style2 .white-box {
		display: flex;
		align-items: center;
		flex: 1;
		text-align: left;
		line-height: 3rem;
		border-radius: 10rem 0 0 10rem;
		padding: 5rem 3rem 5rem 4rem;
		margin: 0 1rem 0 0;
		background-color: #fff;
	}
	.section-style2 .white-box.right {
		text-align: right;
		border-radius: 0 10rem 10rem 0;
		padding: 5rem 3rem 5rem 4rem;
		margin: 0 0 0 1rem;
	}
	.section-style2 .white-box.none {visibility: hidden;}
	.section-style2 .connect {
		display: block;
		width: 3px; 
		height: 80px;
		margin-bottom: 3rem;
		background-color: #617f81;
	}
	.section-style2 .bg {
		position: absolute;
		right: 10%;
		bottom: 0;
		text-align: right;
	}
	.section-style2 .bg img {width: 100%;}
	.section-style3 {
		position: relative;
		text-align: right;
		padding: 10rem 0;
		background-color: #617f81;
	}
	.section-style3 .title {margin-bottom: 1rem;}
	.section-style3 .title img {width: 450px;}
	.section-style3 h2 {
		color: #fff;
		font-size: 4rem;
		font-weight: 700;
		margin-bottom: 5rem;
	}
	.section-style3 .right-moved {margin-left: 20%;}
	.section-style3 .line-wrap {
		display: flex;
		align-items:center;
		color: #fff;
		font-size: 2.5rem;
		font-weight: 600;
		margin-bottom: 2rem;
	}
	.section-style3 .line {
		width: 100%;
		height: 2px;
		margin: 0 1rem;
		background-color: #fff;
	}
	.section-style3 .white-box-wrap {
		width: 76%;
		font-size: 1.75rem;
		font-weight: 500;
		border-radius: 0 7rem 7rem 0;
		padding: 3rem 4rem;
		margin-bottom: 3rem;
		background: #fff;
		text-align: left;
		line-height: 2.5rem;
	}
	.section-style3 .white-box-wrap.right {
		text-align: right;
		margin: auto 0 3rem auto;
		border-radius: 7rem 0 0 7rem;
	}
	.section-style3 .bg {
		width: 100%;
		height: 100%;
		position: absolute;
		bottom: 0;
		background-size: 15% auto;
		background-image: url('../images/pages/nose/nose/section3_bg.png');
		background-repeat: no-repeat;
		background-position: 10% top;
	}

	#nose-reduction .section-style1 {color: var(--rose)}
	#nose-reduction .top {color: var(--bright-rose)}
	#nose-reduction .bottom {color: var(--bright-rose)}
	#nose-reduction .section-style1 .bg {background-image: url('../images/pages/nose/nose-reduction/section1_bg.png');}
	#nose-reduction .section-style1 .line {background-color: var(--rose)}
	
	#crooked-nose .section-style1 {color: var(--gray)}
	#crooked-nose .top {color: var(--bright-gray)}
	#crooked-nose h1 {color: var(--easy-black)}
	#crooked-nose .bottom {color: var(--bright-gray)}
	#crooked-nose .section-style1 .bg {background-image: url('../images/pages/rhinoplasty/crooked-nose/section1_bg.png');}
	#crooked-nose .section-style1 .line {background-color: var(--easy-black)}
	
	#aquiline-nose .section-style1 {color: var(--gray)}
	#aquiline-nose .top {color: var(--bright-gray)}
	#aquiline-nose h1 {color: var(--easy-black)}
	#aquiline-nose .bottom {color: var(--bright-gray)}
	#aquiline-nose .section-style1 .bg {background-image: url('../images/pages/rhinoplasty/crooked-nose/section1_bg.png');}
	#aquiline-nose .section-style1 .line {background-color: var(--easy-black)}

	#non-prosthetic .section-style1 {color: var(--gray)}
	#non-prosthetic .top {color: var(--bright-gray)}
	#non-prosthetic h1 {color: var(--easy-black)}
	#non-prosthetic .bottom {color: var(--bright-gray)}
	#non-prosthetic .section-style1 .bg {background-image: url('../images/pages/rhinoplasty/crooked-nose/section1_bg.png');}
	#non-prosthetic .section-style1 .line {background-color: var(--easy-black)}

	#length-correction .section-style1 {color: var(--gray)}
	#length-correction .top {color: var(--bright-gray)}
	#length-correction h1 {color: var(--easy-black)}
	#length-correction .bottom {
		color: var(--easy-black);
		font-weight: 700;
	}
	#length-correction .section-style1 .bg {
		background-size: 9% auto;
		background-position: right top;
		background-image: url('../images/pages/rhinoplasty/length-correction/section1_bg.png');
	}
	#length-correction .section-style1 .line {background-color: var(--easy-black)}



/**** footer ****/
	#footer {
		display: flex; 
		margin-bottom: 78px;
	}
	#footer .contact {
		flex:1;
		color: #fff;
		font-size: 1.75rem;
		font-weight: 300;
		padding: 4rem 5rem;
		background-color: #313131;
	}
	#footer .contact h2 {
		font-size: 2.5rem;
		margin-bottom: 1rem;
	}
	#footer .contact h2+div {
		line-height: 2.5rem;
		margin-bottom: 3rem;
	}
	#footer .contact .p1 span {
		color: var(--orange);
	}
	#footer .contact .p3 {
		display: flex;
		align-items: center;
	}
	#footer .contact .p3 a {
		font-size: 3rem;
		font-weight: 400;
	}
	#footer .contact .p3 .round {
		font-size: 1.5rem;
		border: 1px solid #fff;
		border-radius: 2.5rem;
		padding: 1rem 1.5rem;
		margin-left: 2rem;
	}
	#footer .contact .p3 .round .kakao {color: var(--kakao);}
	#footer .contact .p4 {
		line-height: 2rem;
		font-size: 1.5rem;
	}

/*************** 모바일 하단 빠른비용문의 *****************/
	.btn_bottom_consult_closed {
		display: none;
		position: fixed;bottom: 0;
		width: 100%;
		text-align: center;
		z-index: 100;
	}
	.btn_bottom_consult_closed > img {width: 200px;cursor: pointer;}

	.btn_bottom_consult_open {
		display: none;
		position: absolute;
		top: -48px;
		text-align: center;
	}
	.btn_bottom_consult_open img {width: 200px;}