<@charset "UTF-8";>
/*追加用cssファイルの読み込み*/

/*実績*/

#achieve {
	display:flex;
	gap: 16px; justify-content:center; align-items: center;
}

#achieve li {
	width:150px;
	float: left;
	margin: 5px;
	list-style: none;
}

#achieve li img{
	width:150px;
	height:110px;
	object-fit: cover; /* 比率固定 */
}

#achieve li p{
}


/*画面幅768px以下の設定*/
@media screen and (max-width:768px){

#achieve li{
width:48%;
    }
    
#achieve img{
	width:100%;
	height:auto;
	object-fit: cover; /* 比率固定 */
}

	/*画面幅800px以下の追加指定*/
	@media (300px <= width < 800px) {
	}/*追加指定ここまで*/


	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	}/*追加指定ここまで*/

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	}/*追加指定ここまで*/
