@charset "utf-8";

.pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	visibility: hidden;
	z-index: 2147483647;
	background-color: rgba(0,0,0,0.5);
	width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 100%;
	opacity: 0;
	transition: all 0.5s ease-out;
}

.pagetop.active {
	visibility: visible;
	opacity: 1;
}


.pagetop a {

	position: absolute;
	top: 0;
	left: 0;
	height:100%;
	width: 100%;


}

.pagetop a::after {
content: '';
width: 30%;
height: 30%;
border: 0px;
border-top: solid 2px #ffffff;
border-right: solid 2px #ffffff;;
-ms-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
position: absolute;
top: 50%;
left: 35%;
margin-top: -7%;

}

/* SP
---------------------------------------- */
@media only screen and ( max-width: 768px ) {

	.pagetop {
		position: fixed;
		bottom: 120px;
	}
}
/* /SP
---------------------------------------- */
