/* 플로팅 메뉴 */
/*공통*/
.float_btn {
	height: 80px;
	position: fixed;
	z-index: 9999;
	-webkit-border-radius: 40px 0 0 40px;
	-moz-border-radius: 40px 0 0 40px;
	-ms-border-radius: 40px 0 0 40px;
	-o-border-radius: 40px 0 0 40px;
	border-radius: 40px 0 0 40px;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-position: 15px center;
	transition: all 0.5s;
}
.float_btn:hover{
	right: 0;
}
a.float_btn_con {
	display: inline-block;
	width: 100%;
	line-height: 20px;
	padding-left:85px;
	font-size: 16px;
	font-weight: 900;
	text-decoration: none;
}

/*카카오*/
.float_btn_kakao {
	width:170px;
	top:150px;
	right:-85px;
	background-image: url(../../img/common/ico_kakao.png);
	background-color: #fae100;
}
.float_btn_kakao a.float_btn_con {
	color:#371c1d;
}
.float_btn_kakao a.float_btn_con:hover{
	color:#000;
}

/*전화하기*/
.float_btn_tel {
	width:215px;
	top:235px;
	right:-130px;
	background-image: url(../../img/common/ico_tel.png);
	background-color: #9fd2fc;
}
.float_btn_tel a.float_btn_con {
	color:#001c42;
}
.float_btn_tel a.float_btn_con:hover{
	color:#000;
}
/*인스타그램*/
.float_btn_insta {
	width:185px;
	top:320px;
	right:-100px;
	background-image: url(../../img/common/ico_insta.png);
	background-color: #cfd2fb;
}
.float_btn_insta a.float_btn_con {
	color:#3f0278;
}
.float_btn_insta a.float_btn_con:hover{
	color:#000;
}


@media(max-width:1740px) {
	/* 카카오 */
	.float_btn_kakao {
		top:150px;
	}
	/* 전화하기 */
	.float_btn_tel {
		top:235px;
	}
	/*인스타그램*/
	.float_btn_insta {
		top:320px;
	}
}
@media(max-width:1600px) {
	/* 공통 */
	.float_btn {
		height: 70px;
	}
	/* 카카오 */
	.float_btn_kakao {
		top:180px;
	}
	/* 전화하기 */
	.float_btn_tel {
		top:255px;
	}
	/*인스타그램*/
	.float_btn_insta {
		top:330px;
	}
}
@media(max-width:1300px) {
	/* 공통 */
	.float_btn {
		height: 60px;
		background-size: 40px auto;
	}
	/* 카카오 */
	.float_btn_kakao {
		width:150px;
		top:215px;
	}
	/* 전화하기 */
	.float_btn_tel {
		width:195px;
		top:280px;
	}
	/*인스타그램*/
	.float_btn_insta {
		width:165px;
		top:345px;
	}

	a.float_btn_con {
		line-height: 19px;
		padding-left:70px;
		font-size: 15px;
	}
}




