@charset "utf-8";

/***************************************************
	customer.css
***************************************************/
#customer .article_wrap{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	}
#customer .article:nth-child(odd) {
	float: left;
	width: 48%;
}
#customer .article:nth-child(even) {
	float: right;
	width: 48%;
}
#customer .item {	margin-bottom: 50px;}
#customer .item .imgBox {
	float: left;
	max-width: 52%;
	margin-right: 2em;
}
/*#customer .item .txtBox {	overflow: hidden;}*/

@media only screen and (max-width: 768px) {
	#customer .article:nth-child(odd),
	#customer .article:nth-child(even) {
		float: none;
		width: 100%;
	}
	#customer .item {	margin-bottom: 30px;}
	#customer .item .imgBox {
		float: none;
		max-width: 100%;
		margin: 0 0 1em 0;
	}
}
