@charset "utf-8";
@media screen and (min-width: 768px) { /*ウィンドウ幅が768px以上の場合に適用*/
	.contents {
  		width: 1150px;
	}
@media screen and (max-width: 768px) { /*ウィンドウ幅が最大767pxまでの場合に適用*/
	.contents {
  		width: 95%;
	}
}
@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/
	.contents {
  		width: 95%;
	}
}