@charset "UTF-8";

	.home .post {
    	padding: 0 5px;
		margin-bottom:0;
	}





/*media Queries タブレットサイズ（959px以下）
----------------------------------------------------*/
@media only screen and (max-width: 959px) {


	/*-- ここまで --*/
}

/*media Queries タブレットサイズ（600px以上）
----------------------------------------------------*/
@media only screen and (min-width: 600px) {

	.home .post {
    	padding: 0 15px;
		margin-bottom:0;
	}


	/*-- ここまで --*/
}

/*media Queries PCサイズ（960px以上）
----------------------------------------------------*/
@media only screen and (min-width: 960px) {

		.home .post {
    		padding: 0 5px;
			margin-bottom:0;
		}
	
	
	
	/*-- ここまで --*/
}