@charset "UTF-8";
/* CSS Document */
	
/*PC*/
@media only screen and (min-width: 769px) {
	/*フォトギャラリー*/
	#gallery {
		position: relative;
		width: 1100px;
		height: auto;
		margin: 0 auto 0 auto;
		padding: 160px 0 80px 0;
	}
	
	#gallery .foogallery img {
		display: block;
		position: relative;
		width: auto;
		height: auto;
		object-fit: cover;
		object-position: center;
	}
	
}
	
/*SMP*/
@media only screen and (max-width: 768px) {
	/*フォトギャラリー*/
	#gallery {
		position: relative;
		width: 100%;
		height: auto;
		margin: 0 auto 0 auto;
		padding: 90px 0 45px 0;
	}
	
	#gallery .foogallery img {
		display: block;
		position: relative;
		width: auto;
		height: auto;
		object-fit: cover;
		object-position: center;
	}
}
