@charset"UTF-8";
body{
	color: #FFF;
}
body::before {
	background: #000;
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(../img/bg.png) center/cover; /*fixedをトル！*/
	-webkit-background-size:cover;/*Android4*/
}

/* ----------motion---------- */

.fade{
	opacity: 0;
	transition: all 1.2s ease 0s;
	-moz-transition:all 1.2s ease 0s;
	-webkit-transition:all 1.2s ease 0s;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
}
.on.fade{
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

/* ----------motion---------- */
#home-logo{
	margin-top: 100px;
	margin-bottom: 40px;
}
#menu{
	width: 114px;
	margin: auto;
	margin-bottom: 50px;
}
#menu img{
	float: right;
}
#menu a:hover img{
	opacity: 0.7;
	transition: all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
}
#group a{
	color: #E4E4E4;
}
#group a:hover{
	text-decoration: none;
}
#group a .name{
	margin-left: 5px;
	margin-right: 5px;
	font-size: 16px;
	color: #FFF;
}
#group a .details{
	margin-left: 5px;
	margin-right: 5px;
	color: #D1D1D1;
}
#group a:hover img,#group a:hover .name,#group a:hover .details{
	opacity: 0.7;
	transition: all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
}
#copyright{
	color: #CCC;
	text-align: center;
	margin-bottom: 50px;
}

table{
	width: 100%;
	color: #FFF;
	border-top: 1px solid #A8A8A8;
	border-left: 1px solid #A8A8A8;
}
table th{
	text-align: center;
}
table th,table td{
	color: #FFF;
	padding: 10px 15px;
	border-bottom: 1px solid #A8A8A8;
	border-right: 1px solid #A8A8A8;
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 980px) {

}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {

	#home-logo{
		margin-top: 40px;
		margin-bottom: 30px;
	}
	#home-logo img{
		width: 160px;
	}
	#menu{
		margin-bottom: 30px;
	}
}
