@charset "utf-8";
/**/
.accUnit01{
	margin-bottom: 100px;
}
.accUnit01 .img01{
	margin: 0 auto;
	margin-bottom: 40px;
}
.accUnit01 .txtwrap{
	margin: 0 auto 40px;
	text-align: left;
}
.accUnit01 .txtwrap .ttl01{
	font-size: clamp(2.4rem,3.6vw,4.8rem);
	font-weight: normal;
	line-height: 1.5;
}
@media(min-width: 768px){
	.accUnit01{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.accUnit01.reverse{
		flex-direction: row-reverse;
	}
	.accUnit01 .txtwrap{
		width: 35%;
		margin: 0;
		padding: 0;
	}
	.accUnit01 .img01{
		width: 55%;
		margin: 0;
	}
}
/**/

/**/
.accUnit02{
	margin-bottom: 50px;
}
.accUnit02 figure{
	margin-bottom: 50px;
}
@media(min-width: 768px){
	.accUnit02{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.accUnit02 figure{
		width: 46%;
	}
}
/**/





/**/
.trainBg{
    width: 100%;
    margin: 20vw 0 20vw;
    padding: 0;
    z-index: 2;
	position: relative;
}
.trainBg::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -10vw;
    left: 0;
    z-index: -1;
    background-color: #e9e4db;
    transform: skewY(-5deg);
}
.trainBg::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: -10vw;
    left: 0;
    z-index: -1;
    background-color: #e9e4db;
    transform: skewY(5deg);
}