/* CSS Document */
.photogallery {
	display: flex;
	flex-wrap: wrap;
}
.photo {
	margin: 0 auto;
}
.photo h3 {
	font-size: 1.6rem;
	padding-bottom: 10px;
}

.photo .thumb {
	width:23%;
	height:auto;
	padding: 10px;
	background:rgba(248,245,198,1.00);
	border-radius:5px;
	float:left;
	margin:1%;
	text-shadow:none;
	text-align:center;
	box-sizing: border-box
}

.photo .thumb img {
	width:80%;
	height:80%;
}

@media screen and (max-width: 999px) {/* 1000px以下*/
	.photo .thumb {
		width:48%;
	}
}
