@charset "UTF-8";




ul.list_photo {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
ul.list_photo li {
	display: block;
	width: calc(100% / 3);
	list-style: none;
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 640px) {
ul.list_photo li {
	width: calc(100% / 2);
}
}
.list_photo_pic {
	position: relative;
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 0;
	padding-bottom: 66.66%;
	background: #CCC;
}


ul.list_photo li img {
	position: absolute;
	top: 50%;
	left: 50%;
	object-fit: cover;
	transform: translate(-50%,-50%);
	height: 100%;
	width: 100%;
}


ul.list_photo li img:hover {
	height: 150%;
	width: 150%;
	object-fit: cover;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

