/*
Back to top button 
*/
#back-top {
	position: fixed;
	bottom: 0px; /*下からの位置 */
	right: 52%; /* 右からの位置 */
	z-index: 999999;
	filter: alpha(opacity=7); /* 透明度 */
	-moz-opacity:0.7; /* 透明度 */
	opacity:0.7; /* 透明度 */
}
#back-top a {
	width: 54px;
	display: block;
	text-align: center;
	font: 11px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFF;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #888;
}
/* arrow icon (span tag) */
#back-top span {
	width: 62px; /* ボタンの横PX */
	height: 31px; /* ボタンの縦PX */
	display: block;
	/* margin-bottom: 7px; */
	background: #888 url(up-arrow.png) no-repeat center center; /* マウスアウト時の背景色&画像 /*
	/* rounded corners */
	-webkit-border-radius: 2px; /* 角丸の大きさ */
	-moz-border-radius: 2px; /* 角丸の大きさ */
	border-radius: 2px; /* 角丸の大きさ */
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover span {
	background-color: #333; /* マウスオーバー時の背景色 */
}
