.b-last{
	border-bottom:1px solid #e5e7eb;
}

.business-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height:2;
}

/*スマホ時のコンテンツCSS */
/*------------------------------------------------------*/
@media only screen and ( max-width : 768px ) {
	
	.business{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 40px;
		border-top:1px solid #e5e7eb;
		padding:40px;
	}
	
}
/*------------------------------------------------------*/


/* PC時のコンテンツCSS */
/*------------------------------------------------------*/
@media print, screen and ( min-width : 769px ) {
	
	.business{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
		border-top:1px solid #e5e7eb;
		padding:40px;
	}
	
}
/*------------------------------------------------------*/