/*===============================================
●tablet.css  画面の横幅が1000px〜737pxまで
===============================================*/

@media screen and (max-width:1000px){

	body{
		 -webkit-text-size-adjust: 100%;
	}
	
	img {
		max-width: 100%;
		width: 100%;
		height: auto;
		width /***/: auto;
	}
	main {
		width: 100%;
		padding: 5%;
	}

}

/*===============================================
●tablet.css  tablet横向き
===============================================*/
@media screen and (max-width:896px) and (orientation: landscape) {
}
