@charset "UTF-8";
/* CSS Document */

.pagetop{
	display: none;
	background: url("../../assets/imgs/top_icon.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 80px;
	height: 80px;
	position: fixed;
	right: 10px;
	bottom: 10px;
	transition: .5s;
}
.pagetop a{
	display: block;
	content:'';
	width: 100px;
	height: 100px;
	opacity: 1;
}
.pagetop:hover{
	display: block;
	opacity: 0.5;
	transition: .5s;
}