/*=============================================================
    floating
=============================================================*/
/* floating */
#floating-area{
/*	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	padding-right: calc(50vw - 50%);
	padding-left: calc(50vw - 50%);*/
	position: relative;
}
.floating {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.floating.show{
	visibility:visible;
	opacity:1;
}
.floating.bottom{
	position:absolute;
	/*top:-46px;*/
	top: -226px;
	bottom:auto;
}
.floating-inner a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 135px;
	height: 135px;
	background: #0099DC;
  border: 1px solid #0099DC;
  border-radius: 100px;
	padding: 10px 10px;
	box-sizing: border-box;
  position: relative;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 160%;
	color: #fff;
	transition: all .3s;
}
.floating-inner a>span{
	display: inline-block;
	margin-bottom: 10px;
}
.floating-inner a::after{
	content: '';
	width: 30px;
	height: 20px;
	background: url("../img/floating.svg") no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.floating-inner a:hover{
	text-decoration: none;
	background:#fff;
	color: #0099DC;
}
.floating-inner a:hover::after{
	background: url("../img/floating-o.svg") no-repeat;
	background-size: cover;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:767px){
	/* floating-anchor */
.floating {right: 10px;}
.floating.bottom{top: -170px;}	
.floating-inner {padding: 0;}	
.floating-inner a{
	letter-spacing: 0;
	width: 100px;
	height: 100px;
	padding: 10px 5px;
	font-size: 14px;
}
.floating-inner a::after {
    width: 22px;
    height: 14px;
    bottom: 20px;
}
}