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


.post_custom_box  {
	margin-bottom: 20px;
}

/*============================================================

 テキスト画像の縦並び

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@media only screen and (min-width: 768px){
	.post_custom_type01,
	.post_custom_type02 {
		display:-webkit-box;
		display:-ms-flexbox;
		display:flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 100%;
	}
	.post_custom_type01 .post_custom_img,
	.post_custom_type02 .post_custom_content {
		-ms-flex-order:1;
		order:1;
		width: 100%;
	}
	.post_custom_type01 .post_custom_content,
	.post_custom_type02 .post_custom_img {
		-ms-flex-order:2;
		order:2;
		width: 100%;
	}
}
/*============================================================

 テキスト画像の横並び

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

@media only screen and (min-width: 768px){
	.post_custom_colume_type01 .post_custom_content { width: 60%;}
	.post_custom_colume_type01 .post_custom_img { width: 35%;}
	.post_custom_colume_type02 .post_custom_content { width:  50%;}
	.post_custom_colume_type02 .post_custom_img { width: 45%;}
	
	.post_custom_type03 .post_custom_img,
	.post_custom_type04 .post_custom_content {
		float: left;
	}
	.post_custom_type04 .post_custom_img,
	.post_custom_type03 .post_custom_content {
		float: right;
	}
	.post_custom_box.post_custom_type03::after,
	.post_custom_box.post_custom_type04::after {
		content: "";
		clear: both;
		display: block;
	}
}
@media only screen and (max-width: 767px){
	.post_custom_box > div + div{
		margin-top: 20px;
	}
	.post_custom_img {
		text-align: center;
	}
}
