
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');


/* page_feature.html */
/* --------------------------------------------------- */
.feature_wrap {}
.feature_wrap .box {
    min-height: 390px;
	margin-bottom: 6em;
    position: relative;
}
.feature_wrap .box:last-child {margin-bottom: 0;}
.feature_wrap .box-1 {
    background: url(../images/feature_01.png) no-repeat right center;
    background-size: 47% auto;
}
.feature_wrap .box-2 {
    background: url(../images/feature_02.png) no-repeat left center;
    background-size: 47% auto;
}
.feature_wrap .box-3 {
    background: url(../images/feature_03.png) no-repeat right center;
    background-size: 47% auto;
}
.feature_wrap .box .text-wrap {
	width: 70%;
    max-width: 680px;
	background: rgba(0, 177, 236, 0.3);
    padding: 2em 3.5em 2em 2em;
}
.feature_wrap .box:nth-child(even) .text-wrap {
    padding: 2em 2em 2em 3.5em;
	position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.feature_wrap .box .feature_title {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.feature_wrap .box .feature_title::before {
	font-size: 62px;
    font-weight: 600;
    line-height: 1.0em;
    letter-spacing: -0.05em;
    color: #3367d1;
    font-family: "Kosugi Maru", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-right: 0.2em;
}
.feature_wrap .box-1 .feature_title::before {
    content: "01";
}
.feature_wrap .box-2 .feature_title::before {
    content: "02";
}
.feature_wrap .box-3 .feature_title::before {
    content: "03";
}


/* spview */
@media screen and (max-width:767px) {
	.feature_wrap .box {
		padding-top: 67%;
		min-height: auto;
		margin-bottom: 30px;
	}
	.feature_wrap .box-1,
	.feature_wrap .box-2,
	.feature_wrap .box-3,
	.feature_wrap .box-4 {
		background-size: contain;
		background-position: center top;
	}

	.feature_wrap .box .text-wrap {
		width: 100%;
        padding: 1.5em 1.0em 1.5em;
        position: relative;
	}
	.feature_wrap .box:nth-child(even) .text-wrap {
        padding: 1.5em 1.0em 1.5em;
		position: static;
		transform: inherit;
	}
	
	.feature_wrap .box .feature_title {
        font-size: clamp(16px, 3.5vw, 18px);
        line-height: 1.4em;
        margin-bottom: 10px;
	}
	.feature_wrap .box .feature_title::before {
		font-size: 24px;
	}
	
}



