@charset "UTF-8";

/*------------------------------------------------------------

960_Responsive Grid Style

コーディング

<div class="container">
	<div class="row">
		<div class="col_** col_sm_**">
	</div>
</div>

------------------------------------------------------------*/

.container{
	width:960px;
	padding-right:10px;
	padding-left:10px;
	margin-right:auto;
	margin-left:auto;
}

.row{
	margin-right:-10px;
	margin-left:-10px;
}

.col_1,.col_2,.col_3,.col_4,.col_5,.col_6,.col_7,.col_8,.col_9,.col_10,.col_11,.col_12{
	margin:0 10px;
}

/*12col px指定*/
.col_1{ width:60px; }
.col_2{ width:140px; }
.col_3{ width:220px; }
.col_4{ width:300px; }
.col_5{ width:380px; }
.col_6{ width:460px; }
.col_7{ width:540px; }
.col_8{ width:620px; }
.col_9{ width:700px; }
.col_10{ width:780px; }
.col_11{ width:860px; }
.col_12{ width:940px; }



