/* ==================================================
	usage_list
================================================== */

.usage_list {
	display: grid;
	gap: 40px;
	margin-top: 40px;
}
.usage_list img {
	width: 100%;
}
.usage_list p {
	margin-top: 15px;
	font-size: 18px;
}

@media screen and (min-width: 480px) {
	.usage_list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1024px) {
	.usage_list {
		grid-template-columns: repeat(3, 1fr);
	}
	.usage_list p {
		font-size: 20px;
	}
}

@media screen and (min-width: 1280px) {
	.usage_list p {
		font-size: 22px;
	}
}





/* ==================================================
	technology_list
================================================== */

.technology_list {
	display: grid;
	gap: 16px;
	margin-top: 40px;
}
.technology_list > li {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 20px;
	padding: 30px 20px;
	background: var(--sol-color-light);
}
.technology_list > li:nth-child(even) {
	color: #fff;
	background: var(--sol-color-dark);
}.technology_list .media img {
	width: 100%;
}

@media screen and (min-width: 720px) {
	.technology_list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 1280px) {
	.technology_list > li {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}





/* ==================================================
	imgBgBox_list
================================================== */

.imgBgBox_list {
	display: grid;
	gap: 20px;
}
.imgBgBox_list > li {
	padding: 30px 20px;
	color: #fff;
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

@media screen and (min-width: 720px) {
	.imgBgBox_list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1024px) {
	.imgBgBox_list > li {
		min-height: 500px;
		padding: 60px 40px;
	}
}
