/* CSS Document */
main p {
	text-align: justify;
}

main article section h3 {
	margin-top: 1em;
}


main article section#Girls h2 {
	background: rgba(255,71,133,1.00);
}

main article section#Girls h3 ,
main article section#Girls h4 {
	color: rgba(255,71,133,1.00);
	border-color: rgba(255,71,133,1.00);;
}

main div.MemberBox  {
	display: flex;
	flex-wrap: wrap;
	background: #fff;
}



main div.MemberBox div.member {
	width :calc(100%/3);
	padding: 1em ;
	box-sizing: border-box;
	position: relative;
}

main section#Girls div.MemberBox {
	width:calc(100% / 3 * 2);
	margin: 0 auto;
}

main section#Girls div.MemberBox div.member {
	width :calc(100%/2);
	padding: 0.5em ;
	box-sizing: border-box;
}

main div.MemberBox div.gray::before {
	content: " ";
	background: rgba(210,210,210,0.8);
	position: absolute;
	width:100%;
	height: 100%;
	top:0;
	left:0;
	z-index: 1;
}

main div.MemberBox div.gray p.attention {
	z-index: 5;
	color: rgba(255,45,49,1.00);
	position: absolute;
	top:50%;
	font-weight: 700;
	width:100%;
	text-align: center;
}


main div.MemberBox div.member:nth-child(2n-1) {
	background:rgba(220,236,255,1.00);
}

main  section#Girls div.MemberBox div.member:nth-child(2n-1) {
	background:rgba(255,238,238,1.00);
}

main div.MemberBox h4 {
	width:100%;
	text-align: center;
	border: none;
	font-size: 1.8rem;
	
}

main div.MemberBox div.memberdata p {
	font-size: 1.8rem;
	text-align: center;
	line-height: 1.25;
}

main div.MemberBox p.shibu {
	text-align: right;
	font-size: 87.5%;
}

main div.MemberBox div.memberdata p.name {
	font-size: 2rem;
	font-weight: 700;
}

@media only screen and (max-width : 999px){
	main div.MemberBox  {
		display:block;
		flex-wrap: wrap;
	}

	main div.MemberBox div.member {
		width :calc(100%);
		padding: 1em ;
		box-sizing: border-box;
	}

	main section#Girls div.MemberBox {
		width:100%;
	}
	
	main section#Girls div.MemberBox div.member {
		width :100%;
		padding: 1em ;
		box-sizing: border-box;
	}

}