﻿/* ビジネスモデル */
.business-model {
	position: relative;
}
.business-model__image {
	text-align: center;
}
.business-model-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.business-model-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	font-size: 1.4rem;
	line-height: 1.5;
}
.business-model-list img {
	width: 100px;
	margin-right: 15px;
}
@media (min-width: 481px) {
	.business-model-list img {
		width: 130px;
	}
}
@media (min-width: 721px) {
	.business-model__image {
		width: 85%;
		margin: 0 auto -50px;
	}
	.business-model-list li {
		font-size: 1.3rem;
	}
	.business-model-list li:nth-of-type(1) {
		position: absolute;
		bottom: 72%;
		right: 62%;
		width: 32%;
	}
	.business-model-list li:nth-of-type(2) {
		position: absolute;
		top: 60%;
		left: 0;
		width: 25%;
	}
	.business-model-list li:nth-of-type(3) {
		position: absolute;
		top: 60%;
		right: 0;
		width: 25%;
	}
	.business-model-list img {
		display: none;
	}
}
@media (min-width: 961px) {
	.business-model__image {
		width: 800px;
	}
	.business-model-list li {
		font-size: 1.4rem;
	}
	.business-model-list li:nth-of-type(1) {
		width: 28%;
	}
	.business-model-list img {
		display: none;
	}
}

/* 強み */
.strengths-heading {
	position: relative;
	margin-bottom: 40px;
	font-size: 1.8rem;
}
.strengths-heading img {
	width: 60%;
}
.strengths-heading .text {
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translateY(-50%);
	line-height: 1.4;
}
@media (min-width: 721px) {
	.strengths-heading img {
		width: 320px;
	}
	.strengths-heading .text {
		left: 210px;
		font-size: 2.2rem;
	}
	.strengths-heading br {
		display: none;
	}
}
