@charset "UTF-8";
*{
	color: #000;
	background: #808080;
	font-family: "M PLUS Rounded 1c";
}
header{
	margin-bottom: 10px;
	border-bottom: 1px dotted #003;
}
h1{
	text-align: center;
	margin: 0;
	padding: 0;
}
a{
	color: #FFF;
	text-decoration: none;
}
a:hover{
	color: #FF9;
	text-decoration: underline;
}
#list{
	display: flex;
	flex-wrap: wrap;            /* 折り返し指定 */
	align-content:stretch;      /* 折り返し時の配置指定 */
}
.list-item{
	padding: 3px;
	margin: auto;
	width: 120px;
	height: 90px;
	border: 1px solid #800;
	border-radius: 3px;
	
	background-repeat: no-repeat;
	 background-size: cover;
	 cursor: pointer;
}
.list-item .title{
	color: #FF6;
	background: #000;
	font-size: 10px;
	
	opacity: 0.6;
}
.list-item .name{
	color: #FFF;
	background: #000;
	font-size: 10px;
	
	opacity: 0.6;
}

footer{
	font-size: small;
	text-align: right;
	margin-top: 10px;
	border-top: 1px dotted #003;
}