@charset "utf-8"; 

/* ===========================================================================================================================
	事業案内 business css
	
	---- INDEX ----
	section　取扱商品
============================================================================================================================== */
/* section　取扱商品
------------------------------------------ */
ul.products {
	display: flex;/* 内包要素を並列に */
	flex-wrap: wrap; /* 内包要素を折り返す（内包要素にwidth:を指定） */
	justify-content: space-between;/* 内包要素を両端に合わせて均等間隔に配置 */
}
ul.products li {
	margin-bottom: 2em;
}
@media screen and (min-width: 1000px) {/* PC */
	ul.products li {
		width: 470px;
	}
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
	ul.products li {
		width: 47%;
	}
}
@media screen and (max-width: 767px) {/* SP */
	ul.products li {
		width: 48%;
	}
}

@media screen and (min-width: 1000px) {/* PC */
}
@media screen and (min-width: 768px) and (max-width: 999px) {/* TB */
}
@media screen and (max-width: 767px) {/* SP */
}

