@charset "utf-8";

/* 表示ON/OFF切り替え設定 */

@media screen and ( max-width: 767px ) {   /* スマホで表示しない */
	.pc-view {
		display : none; 
	}
	
	.tab-view {
		display : none; 
	}
	
	.pctb-view {
		display:none;
	}


}

@media screen and ( min-width: 768px ) and (max-width: 979px) {/* タブレットで表示しない */
	.sp-view { 
		display : none; 
	}
	
	.pc-view {
		display : none; 
	}



}

@media print, screen and (min-width: 980px)  {  /*プリント、PCで表示しない */
	.sp-view { 
		display : none; 
	}
	
	.tab-view {
		display :none; 
	}
	
	.sptb-view {
		display:none;
	}
	

}