@charset "utf-8";

@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}
@media only screen and (max-width:374px) {}

/*************************************************

business-bnrs

*************************************************/
.business-bnrs {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: min(1030px,calc(100% - 30px));
	margin: 70px auto 80px;
}

@media only screen and (max-width:767px) {
	.business-bnrs {
		gap: 20px;
		margin: 60px auto;
	}
}

.business-bnrs__item {
	position: relative;
	display: flex;
	align-items: center;
	height: 340px;
	padding: 0 30px;
	line-height: 0;
}

.business-bnrs__item:nth-child(even) {
	justify-content: flex-end;
}

@media only screen and (max-width:767px) {
	.business-bnrs__item {
		height: 175px;
		padding: 0 20px;
	}
}

.business-bnrs__anchor {
	position: relative;
	display: block;
	width: 320px;
	z-index: 2;
}

@media only screen and (max-width:767px) {
	.business-bnrs__anchor {
		width: 137px;
	}
}

.business-bnrs__anchor-df {
	position: relative;
	z-index: 1;
}

.business-bnrs__anchor-on {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	z-index: 2;
	transition: opacity 0.3s;
}

@media only screen and (min-width:767px) {
	.business-bnrs__anchor:hover .business-bnrs__anchor-on {
		opacity: 1;
	}
}

.business-bnrs__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.business-bnrs__bg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}