@charset "UTF-8";
/* CSS Document */


/*sp*/
@media screen and (max-width:480px) {
.spHide { display:none; }
.spLeft { float:left; }
.spRight { float:right; }

/*幅固定のボックス*/
.constBox {
	padding:0 5px;
	}
}

/*tablet*/
@media screen and (min-width:481px) and (max-width:768px) {
.tbHide { display:none; }
.tbLeft { float:left; }
.tbRight { float:right; }

/*幅固定のボックス*/
.constBox {
	padding:0 2%;
	}
}

/*desktop*/
@media screen and (min-width:769px) {
.dtHide { display:none; }
.dtLeft { float:left; }
.dtRight { float:right; }

/*幅固定のボックス*/
.constBox {
	width:1100px;
	margin:0 auto;
	}

/*最小値1100pxボックス*/
.min1100 {
	min-width:1100px;
	}
}
