/*=== スクロールを促す ===*/
.scrollmove{
	position:absolute;
	right:50%;
	animation:mousemove 1.6s ease-in-out infinite;
	margin-bottom: 3%;
}
@keyframes mousemove{
	0%{bottom:10px;}
	50%{bottom:5px;}
	100%{bottom:10px;}
}
.scrollmove span{
	position: absolute;
	left:-15px;
	bottom:45px;
	color: #000000;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}
.scrollmove span::after{
	content: "";
	position: absolute;
	top:10px;
	left:17px;
	width: 1px;
	height: 15px;
	background: #000000;
	animation: mousepathmove 1.4s linear infinite;
	opacity:0;
}
@keyframes mousepathmove{
	0%{
		height:0;
		top:10px;
		opacity: 0;
	}
	50%{
		height:15px;
		opacity: 1;
	}
	100%{
		height:0;
		top:30px;
		opacity: 0;
	}
}
.scrollmove:before {
	content: "";
	position: absolute;
	bottom:0;
	left:-10px;
	width:25px;
	height:37px;
	border-radius: 10px;
	border:1px solid #000000;
}
.scrollmove:after{
	content:"";
	position: absolute;
	bottom:26px;
	left:0;
	width:5px;
	height: 5px;
	border-radius: 50%;
	border:1px solid #000000;
}