@charset "UTF-8";

.usecase-list {
	display: flex;
	margin-top: 30px;
	flex-wrap: wrap;
}
.usecase-item {
	width: calc(330/1050*100%);
}
.usecase-item:not(:nth-child(3n)) {
	margin-right: calc(30/1050*100%);
}
.usecase-item:nth-child(n+4) {
	margin-top: 30px;
}
.usecase-item > a {
	display: block;
	height: 100%;
	border: 2px solid;
	color: inherit;
	transition: opacity 0.3s ease;
}
.usecase-item > a:hover {
	opacity: 0.7;
}
.usecase-item-title {
	display: flex;
	padding: 2px 3px 5px 15px;
	font-size: 16px;
	color: #fff;
	justify-content: space-between;
	align-items: center;
}
.usecase-item-title > span {
	width: 170px;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
	line-height: 2.25;
	background-color: #fff;
}
.usecase-item-description {
	padding: 25px calc(25/330*100%);
	font-weight: 700;
	font-size: 16px;
}
.usecase-item--grn > a {
	border-color: #28733c;
}
.usecase-item--ppr > a {
	border-color: #704980;
}
.usecase-item--orn > a {
	border-color: #cd6f10;
}
.usecase-item--blu > a {
	border-color: #00769d;
}
.usecase-item--grn .usecase-item-title {
	background-color: #28733c;
}
.usecase-item--ppr .usecase-item-title {
	background-color: #704980;
}
.usecase-item--orn .usecase-item-title {
	background-color: #cd6f10;
}
.usecase-item--blu .usecase-item-title {
	background-color: #00769d;
}
.usecase-item--grn .usecase-item-title > span {
	color: #28733c;
}
.usecase-item--ppr .usecase-item-title > span {
	color: #704980;
}
.usecase-item--orn .usecase-item-title > span {
	color: #cd6f10;
}
.usecase-item--blu .usecase-item-title > span {
	color: #00769d;
}
.catalog {
	background-color: #f5f5f5;
	border: 1px solid #b6b6b6;
	margin-top: 40px;
}
.catalog a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 50px 14px 77px;
}
.catalog__img img {
	width: 120px;
	height: 120px;
}
.catalog p {
	font-size: 30px;
	color: #000;
	margin-left: 20px;
	transition: color .15s ease-in-out;
	font-weight: bold;
}
.catalog:hover p {
	color: #f50f10;
}
.catalog__text {
	position: relative;
}
.catalog__text:before {
	position: absolute;
	font-family: MelFaIcons, "Material Icons";
	font-size: 16px;
	display: inline-flex;
	width: 8px;
	height: 13px;
	top: 50%;
	left: -30px;
	transform: translateY(-70%);
	content: "\f102";
	white-space: nowrap;
	text-decoration: none;
	word-wrap: normal;
	color: red;
}
@media screen and (min-width: 981px) and (max-width: 1229px) {
	.usecase-item-title > span {
		width: calc(170/308*100%);
		font-size: calc(16/1230*100vw);
		line-height: 36px;
	}
}
@media screen and (max-width: 980px) {
	.c-mainVisual--lv2 .c-mainVisual__category {
		font-size: 16px;
		padding-right: 0;
	}
	.usecase-list {
		display: block;
	}
	.usecase-item {
		width: auto;
	}
	.usecase-item:not(:nth-child(3n)) {
		margin-right: 0;
	}
	.usecase-item:not(:first-child) {
		margin-top: 30px;
	}
}
@media screen and (max-width: 767px) {
	.usecase-item-title {
		font-size: 14px;
	}
	.usecase-item-title > span {
		width: 148px;
		line-height: 2;
	}
	.usecase-item-description {
		padding: 20px;
		font-size: 14px;
	}
	.catalog__img img {
		width: 90px;
		height: 90px;
	}
	.catalog {
		margin-top: 0;
	}
	.catalog > a {
		padding: 12px 15px 12px 25px;
	}
	.catalog p {
		line-height: 1.33333333;
		font-size: 15px;
	}
}