@charset "utf-8";

#gallery {
	background: url("../images/bg_gallery.png") repeat-x 0 0;
}
#gallery .heading {
	background: none;
}
#gallery .aniimated-thumbnials {
	overflow: hidden;
	padding: 2px 0 0 2px;
}
#gallery .aniimated-thumbnials > a {
	display: block;
	float: left;
	padding: 0 2px 2px 0;
}
#gallery .container > section:first-child {
	padding-top: 0;
}


/*-----------------------------------------------
スマホ向けスタイル（～768px）
-----------------------------------------------*/
@media only screen and (max-width: 768px) {
  
  #gallery .aniimated-thumbnials > a {
		width: 50%;
	}
	#gallery #park.aniimated-thumbnials > a:first-child {
		width: 100%;
	}
	
}

/*-----------------------------------------------
PC・タブレット向けスタイル（769px～）
-----------------------------------------------*/
@media only screen and (min-width: 769px), print {
	
	#gallery .aniimated-thumbnials > a {
		width: 20%;
	}
	#gallery #park.aniimated-thumbnials > a:nth-child(1) {
		width: 40%;
	}
	#gallery .aniimated-thumbnials > a img {
		transition: .5s;
	}
	#gallery .aniimated-thumbnials > a:hover img {
		opacity: .7;
	}
  
}


