@charset "utf-8";

@keyframes scroll {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {background: #999;}

body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	animation-name: scroll;
	animation-duration: 1S;
	animation-fill-mode: forwards;
	background: #000;
	background: rgba(0,0,0,0.6);
	bottom: 20px;
	border-radius: 50%;
	color: #fff;
	display: block;
	line-height: 50px;
	position: fixed;
	right: 1%;
	text-decoration: none;
	text-align: center;
	width: 50px;
	z-index: 100;
}
