@charset "EUC-JP";
   /*画面の横幅で表示の写真のサイズを変える */

@media screen and (max-width: 1000px) {
   /* 900px以下の場合 */

img{
	width: auto;
	max-height: 150px;
	}
}

@media screen and (max-width: 800px) {
   /* 900px以下の場合 */

img{
	width: auto;
	max-height: 120px;
	}
}

@media screen and (max-width: 700px) {
   /* 800px以下の場合 */

img{
	width: auto;
	max-height: 100px;
	}
}


