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

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

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

/*============ Footer =================*/
	
	
	
/*============ Page/Post =================*/
	
	
}

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

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

/*============ Footer =================*/
	
	
	
/*============ Page/Post =================*/
	
	
}