@charset "UTF-8";
/* Tablet Style */

@media all
and (min-width: 480px)
and (max-width: 1024px) {

/*============ Page/Post =================*/

	
}

/*============ Portrait =================*/

@media all
and (min-width: 480px)
and (max-width: 768px)
and (orientation: portrait){
	
/*============ Structure =================*/
	
	.show-tablet {
		display: block;
	}
	.hide-tablet {
		display: none;
	}
}

/*============ Landscape =================*/

@media all
and (min-width: 768px)
and (max-width: 1024px)
and (orientation: landscape) {
	
/*============ Structure =================*/
	
	.hide-landscape {
		display: none;
	}
	.show-landscape {
		display: block;
	}
}