@charset "utf-8";

/* CSS Document - SAMURAI JEANS */

/* -- ページ先頭設定 -- */
.pagetop {
	position: fixed;
	bottom: 50px;
	right: 100px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	-ms-transform: scale(0.3);
	-o-transform: scale(0.3);
	transform: scale(0.3);
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #009bfa;
	border-radius: 50px;
	text-align: center;
	color: #000000;
	font-size: 22px;
	text-decoration: none;
	line-height: 50px;
}

.pagetop a:hover {
	color: #000000;
	text-decoration: none;
}

.pagetop.show {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* END
---------------------------------------- */
