@charset "UTF-8";

/* photo-double
----------------------------------------*/
.photo-double{
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.photo-double li{
  width: 48.57142857142857%;
	list-style-type: none;
}

@media screen and (max-width: 767px){
	.photo-double li{
		width: 100%;
	}
	.photo-double li + li{
		margin-top: 20px;
	}
}