@charset "utf-8";
/* ===================================================================
 ソフトウェア開発・評価/検証 開発効率化ソリューション
=================================================================== */
.results__item {
	background-color: #FFA715;
	color: white;
	padding: 1em 2em;
	height: 100%;
	box-sizing: border-box;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	/* flex-direction: column; */
}
@media screen and (min-width: 35.5em) {
	.results__item {
		max-width: 750px;
		margin: 0 auto;
		font-size: 20px;
		font-weight: 500;
	}
}
.results__arrow {
	position: relative;
	margin-top: 40px;
}
.results__arrow::after {
	content: "";
	position: absolute;
	display: block;
	top: -30px;
	right: 0;
	bottom: auto;
	left: 0;
	margin: auto;
	width: 0;
	height: 0;
	border: 20px solid #FFA715;
	border-color: #FFA715 transparent transparent transparent;
	padding: 0;
}
.pointList {
	display: flex;
	flex-direction: column;
}
.pointList__img {
	margin: auto auto 0;
	max-width: 80%;
}
