@charset "UTF-8";
/* CSS Document */

/*aboutus*/

/*---aboutus01---*/
.bl_aboutus01 {
	display: grid;
    grid-template-columns: 1fr 430px;
    grid-template-rows: auto 1fr ;
    gap: 0 min(4vw, 80px);
}
.bl_aboutus01 > div:nth-child(1) {
	height: auto;
}
.bl_aboutus01 > div:nth-child(2) {
    grid-row: span 2 / span 2;
}
.bl_aboutus01 > div:nth-child(3) {
    grid-row-start: 2;
	
}
/*narrow*/
.width-narrow .bl_aboutus01 {
	display: block;
}
.bl_aboutus01 > div:nth-child(2) {
    text-align: center;
}
.bl_aboutus01 > div:nth-child(2) img {
	margin: auto;
	margin-bottom: 2em;
}
/*EN*/
.bl_aboutus01 h3 {
	/*仮*/
	margin-bottom: 0.5em;
}

/*---aboutus02---*/
.bl_aboutus02 {
	display: flex;
	gap:0 min(4vw, 50px);
	text-align: center;
	width: 100%;
	justify-content: center
}
.bl_aboutus02 > div {
	background-color: #fafafa;
	border:solid #f0f0f0 1px;
	padding: min(4vw, 40px) min(2vw, 60px) 0.5em;
	border-radius: 28px;
	text-align: center;
	width: 30%;
}
.bl_aboutus02 > div .title {
	font-size: 1.0625rem;
	letter-spacing: 0;
	margin-bottom: 2em;
}
.bl_aboutus02 > div .title + img {
	margin: 0 auto 2em;
}
@media screen and (max-width:800px){
	.bl_aboutus02 {
		display: block;
	}
	.bl_aboutus02 > div {
		width: 80%;
		margin: 0 auto 25px;
	}
}