@charset "utf-8";
/* CSS Document */

body{
	background: #000;
}

/* ページトップへ */

.backtop {
	position:fixed;
	bottom:20px;
	right:20px;
}
.backtop a {
	width: 50px;
	height:50px;
	line-height:50px;
	display: block;
	background:#000;
	text-align:center;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	opacity:0.5;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
.backtop a:hover {
	color: #fff;
	opacity:1;
}

/* 詳しくはこちら */

.detailbtn{
	text-align:center;
	margin:auto;
	width:150px;
}

.detailbtn a{
	display:inline-block;
	padding:5px 10px;
	background:#fff;
	border:1px solid #72a839;
	color:#72a839;
	text-decoration:none;
}

.detailbtn a:hover{
	color:#fff;
	background:#72a839;
}