@charset "UTF-8";



.float_l{
	float: left;
}

.float_r{
	float: right;
}

.clearfix:after { /*floatの解除*/
	display:block;
	clear:both;
	height:0px;
	visibility:hidden;
	content:".";
}
.clearfix {
	min-height: 0.1px; /*IE6、7対策*/
}
* html .clearfix {
	height: 1px;
	/*¥*//*/ /*MAC IE5.x対策*/
	height: auto;
	overflow: hidden;
	/**/
}

.ta_center{text-align:center;} .ta_right{text-align:right;} .ta_left{text-align:left;} .ta_justify{text-align:justify;}

.display_none{
	display: none;
}

.disable_select {
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

/* PC向け ******************************************************************************************* */

@media (min-width: 651px) {
	.sumaho{
		display: none;
	}
	
	.float_l_pc{
		float: left;
	}

	.float_r_pc{
		float: right;
	}

}



/* スマホ向け **************************************************************************************** */

@media (max-width: 650px) {
	.pc{
		display: none;
	}

	.float_l_sumaho{
		float: left;
	}

	.float_r_sumaho{
		float: right;
	}

	.ta_center_sumaho{
		text-align: center;
	}

}


