/* CSS Document */
body{
	color: #fff;
}

header section {
	width:1000px;
	margin: 1em auto;
}

header section h1 img {
	width:80%;
	margin: 0 auto;
}


article section div.flex {
	display: flex;
	flex-wrap: wrap;
	align-content: space-around;
	justify-content: space-around;
}

article div.attention {
	width:49%;
	box-sizing: border-box;
	margin-bottom:10px;
	text-align: justify;
	padding: 0.5em;
	border-radius: 0.5em;
	background: rgba(255,246,200,0.2);
}

article div.attention div.image {
	position: relative;
	width:180px;
	float:left;
	margin:5px;
}

article div.attention div.image img {
	z-index: 1;
	width:100%;
	height: auto;
}

article div.attention div.image img.fresh {
	position: absolute;
	width:100%;
	height: 100%;
	content: "";
	display: block;
	left: 0;
	top: -5px;
	z-index: 10;
}

article div.attention div.name {
	font-size: 1.2em;
	margin:0 0 0.25em 190px;
}

article div.note {
	padding:0em;
	margin:5px 5px 5px 0px;
}

article div.note p {
	margin:0;
}

.member {
	box-sizing: border-box;
	width:calc(100%/6);
	text-align:center;
	margin: 5px 0;
	padding:5px;
	font-size:1.3rem;
	background:#EEEEEE;
	color: #000;
}

.member img {
	width:100%;
	height: auto;
}

.member table {
	border:1px solid #CCCCCC;
	border-collapse:collapse;
	background:#FFFFFF;
	text-align:center;
	margin:0 auto;
	width:98%;
}

.member table th {
	text-align:center;
	border:1px solid #CCCCCC;
	padding:2px;
	background:#DDDDDD;
	font-weight:normal;
}

.member table td {
	text-align:center;
	border:1px solid #CCCCCC;
	padding:2px;
}

.member table td.a2 {
	background:#DAEEFC;
}

.member table td.a1 {
	background:#FBC2C3;
}

#BackHome {
	display: inline-block;
	background: #000;
	padding: 5px 2em;
	border-radius: 1em;
}

#Member div {
	justify-content: flex-start;
	text-shadow: none;
}

main article {
	background: rgba(0,0,0,0.65);
	border-radius: 1em;
	text-shadow: none;
	padding: 1em;
}

article h2 {
	line-height: 1.3;
    text-align: center;
    background:rgba(255,217,63,1.00);
	color: #000;
}

@media screen and (max-width: 960px) {/* 640px以下*/
	header section {
		width:100%;
		margin: 1em auto;
	}

	.member {
		width:calc(100%/3);
	}
	
	article div.attention {
		width:98%;
		margin: 0 auto;
	}

	article div.attention div.image {
		width:40%;
		margin:5px;
	}

	article div.attention div.name {
		font-size: 1.2em;
		margin:0 0 0.25em 40%;
	}

	article div.note {
		padding:0em;
		margin:5px 5px 5px 0px;
	}

	article div.note p {
		margin:0;
	}

}