/* CSS Document */



/* pagetop */



.pagetop {
	z-index: 4;
	cursor: pointer;
	position: fixed;
	right: 10px;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	transition: .3s;
	background: linear-gradient(to left, #7f4700 25%, #e18e3f 50%, #7f4700);
	border: 1px solid #c9a965;
	opacity: 0;
}


.pagetop span{
	display: block;
    right: 0;
    top: 45%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.pagetop:hover {
    border: 1px solid #c9a965;
	background: #fff;
}

.pagetop:hover span{
	border-bottom: 8px solid #c9a965;
	
}



/* pagetop ///*/
