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

.image_header {
	background-image: url(../images/header_image.jpg);
}

/*グリッド 無印 + .type1*/
ul.services_grid {
	display:flex;
	width: 102%;
	margin: 0;
	padding: 0;
	list-style: none;
	display:flex;
	flex-wrap:wrap;
	align-content:flex-start;
}
ul.services_grid li {
	background-color:#0152a4;
	width:31%;
	margin-right: 2%;
	margin-bottom:2%;
	padding: 10px;
	display:flex;
	align-items: center; 
}
ul.services_grid li img {
	margin-right: 10px;
}
ul.services_grid li span {
	color:#FFF;
}
@media screen and (max-width: 959.1px) {
	ul.services_grid li {
		width:48%;
	}
}
@media screen and (max-width: 480px) {
	ul.services_grid li {
		width:100%;
	}
}
/*グリッド .type1 上書き**/
ul.services_grid.type1 li {
	display: block;
	text-align: center;
}
ul.services_grid.type1 li img {
	margin-right: auto;
	margin-left: auto;
}
ul.services_grid.type1 li span {
	display: block;
	line-height: 1;
	margin: 1em 0;
}