@charset "utf-8";
/* CSS Document */
.sbanner{
	width: 100%;
}
.sbanner img{width: 100%; height: auto; display: block;
}
/***** customer *****/
ul#customer {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	align-content: flex-start; 
	padding: 0 5px;
}
ul#customer li {
	width: 25%;
	margin: 0 0 50px 0;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	
}
ul#customer li img {
	width: calc(100% - 16px);
	height: auto;
	display: block;
	border: 8px solid #ebeef3;
	box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 1), 0 0 2px rgba(0,0,0,0.2), 0 0 4px rgba(0,0,0,0.1), 0 1px 4px rgba(255, 255, 255, 0.5);
	border-radius: 3px;
	margin-bottom: 15px;
}
ul#customer li p {
	text-transform: uppercase;
	text-align: center;
	color: #5e5e5e;
	font-size: 15px;
	line-height: 19px;
	font-weight: 700;
}
ul#customer li:hover p {
	color: #2466bd;
}
ul#customer li p span {
	font-weight: 400;
	display: block;
	font-size: 12px;
}
@media only screen and (max-width: 768px){
	ul#customer li{
		width: 33.333333%;
	}
}
@media only screen and (max-width: 480px){
	ul#customer li{
		width: 50%;
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 380px){
	ul#customer li{
		width: 100%;
		padding: 0;
	}
}