@charset "utf-8";
/* CSS Document */

/*---------------------------------------------*/
/* business.html
============================================== */
.business-itemBox {
	display: flex;
	flex-direction: row;

	align-items: flex-start;
	flex-wrap: wrap;
	margin: 50px 0;
}

.business-itemBox .inner {
	width: 100%;
	margin-bottom: 60px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.business-itemBox .inner img {
	width: 80%;
	height: 200px;
	object-fit: cover;
	position: absolute;
	top: 0;
	z-index: 6;
}

.business-itemBox .inner .inner-text {
	width: 80%;
	position: relative;
	background-color: rgba(137, 185, 5, .08);
	display: flex;
	justify-items: center;
	align-items: center;
	margin-left: 20%;
	margin-top: 170px;
	z-index: 5;
}

.business-itemBox .inner .inner-text div {
	padding: 50px 30px 30px 30px;
}

.business-itemBox .inner .inner-text div p {
	margin: 0;
}

.business-item-title {
	margin-top: 10px;
	font-weight: bold;
	font-size: 1.8rem;
	text-align: center;
	margin-bottom: 5px;
	color: #256dBE;
}

.business-itemBox .inner .inner-text h3 {
	font-size: clamp(18px, 5vw, 24px);
	font-weight: bold;
	border-bottom: 0.5px solid #89b905;
	padding-bottom: 0.5em;
	margin-bottom: 0.75em;
}

@media screen and (min-width: 768px) {
	.business-itemBox .inner img {
		width: 380px;
		height: 250px;
		object-fit: cover;
		top: 0;
	}

	.business-itemBox .inner .inner-text {
		width: calc(100% - 330px);
		position: relative;
		background-color: rgba(137, 185, 5, .08);
		display: flex;
		justify-items: center;
		align-items: center;
		margin-left: 330px;
		margin-top: 100px;
		z-index: 5;
	}

	.business-itemBox .inner .inner-text div {
		padding: 50px 50px 50px 70px;
	}
}


#business-naiyou {
	max-width: 960px;
}



.selectionBox {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.selectionBox .inner {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.selectionBox h4 {
	border-bottom: 0.5px solid #89b905;
	padding: 1em 1em 0.5em 0.5em;
	padding-bottom: 0.5em;
	margin-bottom: 0;
	font-size: clamp(20px, 7vw, 24px);
}

.selectionBox .inner p {
	background-color: rgba(137, 185, 5, 0.05);
	padding: 15px;
}

.selectionBox .inner-text {}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
	.selectionBox {
		flex-direction: row;
		column-gap: 30px;
	}

	.selectionBox .inner {
		width: calc((100% - 30px) /2);
		/* flex: 1 1 calc((100% - 60px) /3); */
	}
}

@media screen and (min-width: 1024px) {
	.selectionBox {
		flex-direction: row;
		column-gap: 30px;
	}
	
	.selectionBox .inner {
		width: calc((100% - 60px) /3);
		/* flex: 1 1 calc((100% - 60px) /3); */
	}
}