<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
section {
    padding: 100px 0 0 0;
    position: relative;
}
.comment{
	text-align: center;
	font-weight: bold;
}
.business-box{
	display: flex;
	list-style: none;
}
.business-box li{
	width: calc(100%/2);
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-left: 4px solid #e2e7ef;
    box-sizing: border-box;
    padding: 50px 60px 50px 53px;
	margin-bottom: 30px;
}
.business-text{
	height: 370px;
}
.business-text02{
	height:  300px;
}
.business-box img{
	width: 100%;
	border-radius: 10px;
}
.business-box-ttl {
    font-size: 24px;
    color: #004cb3;
    line-height: 1.5;
    margin-bottom: 22px;
    position: relative;
}
.business-box-ttl:after {
    content: "";
    display: block;
    width: 4px;
    height: calc(100% + 165px);
    position: absolute;
    top: -50px;
    left: -57px;
    background-color: #d0af2f;
}
@media screen and (max-width: 1200px){
	.business-box{
		display: block;
	}
	.business-box li{
		width: 100%;
	}
	.business-text{
		height: auto;
	}
	.business-text02{
		height: auto;
	}
}
@media screen and (max-width: 768px){
	.comment{
		text-align: left
	}
	.business-box li{
		margin-bottom: 20px;
		padding: 50px 30px;
	}
	.business-box-ttl:after{
		left: -33px;
	}
	.comment{
		padding: 0 18px;
	}
}



@media print{
	section {
		padding: 0px 0 0 0;
	}	
	.pb5{
		padding-bottom: 0px; 
	}
}</pre></body></html>