/* utf-8 */
/* ----------------------------------- */
/* 2017.01.29 merged                   */
/* ----------------------------------- */
a.button_scroll {
	position: absolute;
	top: 85%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-left: -12px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb05 1.5s infinite;
	animation: sdb05 1.5s infinite;
	box-sizing: border-box;
}
@media ( max-width :768px) {
	a.button_scroll{
		top:80%;
	}
}
@media ( max-width :412px) {
	a.button_scroll{
		top:70%;
	}
}
@-webkit-keyframes sdb05 {
	0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
	}
	20% {
		-webkit-transform: rotate(-45deg) translate(-10px, 10px);
	}
	40% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
	}
}
@keyframes sdb05 {
	0% {
		transform: rotate(-45deg) translate(0, 0);
	}
	20% {
		transform: rotate(-45deg) translate(-10px, 10px);
	}
	40% {
		transform: rotate(-45deg) translate(0, 0);
	}
}
