@charset "UTF-8";

.biz {
	padding: 120px 0;
}

.biz.-cat2 {
	background-color: var(--color-bg-light);
}

.biz_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px 4%;
}

.biz_item:not(:last-child) {
	margin-bottom: 60px;
}

.biz_item_img {
	width: 48%;
	height: 420px;
	overflow: hidden;
	border-radius: 10px;
}

.biz_item_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.biz_item_cnt {
	width: 48%;
	padding: 0 4%;
}

.biz_item_cnt_cat {
	display: inline-flex;
	margin-bottom: 16px;
	padding: 10px 20px;
	border-radius: 20px;
	background-color: var(--color-brand-primary);
	color: var(--color-text-inverse);
	line-height: 1;
}

.biz.-cat2 .biz_item_cnt_cat {
	background-color: var(--color-brand-secondary);
}

.biz_item_cnt_ttl {
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 24px;
	line-height: var(--lh-ttl-jp);
}

.biz_item_cnt_bnr {
	margin-top: 24px;
}

@media screen and (max-width:1240px) {
}

@media screen and (max-width:768px) {
	.biz {
		padding: 60px 0;
	}

	.biz_item {
		flex-direction: column;
	}

	.biz_item_img {
		width: 100%;
		height: auto;
		aspect-ratio: 560/420;
	}

	.biz_item_cnt {
		width: 100%;
		padding: 0;
	}

	.biz_item_cnt_cat {
		margin-bottom: 12px;
	}

	.biz_item_cnt_ttl {
		font-size: 20px;
	}

	.biz_item_cnt_bnr {
		text-align: center;
	}
}
