
/* page_feature.html */
/* --------------------------------------------------- */
#strength {}
#strength .outer {
    margin-top: 3.5em;
}

#strength .box {
    min-height: 330px;
	margin-bottom: 6em;
    position: relative;
}
#strength .box:last-child {margin-bottom: 0;}
#strength .box-1 {
    background: url(../images/strength_lower01.png) no-repeat right center;
    background-size: contain;
}
#strength .box-2 {
    background: url(../images/strength_lower02.png) no-repeat left center;
    background-size: contain;
}
#strength .box-3 {
    background: url(../images/strength_lower03.png) no-repeat right center;
    background-size: contain;
}
#strength .box .text-wrap {
	width: 57%;
    max-width: 680px;
    /*background: rgba(30, 148, 205, 0.2);*/
    padding: 1.5em 2.25em;
}
#strength .box:nth-child(even) .text-wrap {
	position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#strength .box .feature_title {
	font-size: 24px;
    line-height: 1.4em;
	font-weight: bold;
	margin-bottom: 20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
#strength .box .feature_title::before {
	font-size: 68px;
    font-weight: 300;
    line-height: 1.0em;
    letter-spacing: -0.05em;
    color: #006eff;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin-right: 0.2em;
}
#strength .box-1 .feature_title::before {
    content: "01";
}
#strength .box-2 .feature_title::before {
    content: "02";
}
#strength .box-3 .feature_title::before {
    content: "03";
}


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

	#strength .box .text-wrap {
		width: 100%;
        padding: 1.5em 1.0em 1.5em;
        position: relative;
	}
	#strength .box:nth-child(even) .text-wrap {
		position: static;
		transform: inherit;
	}
	
	#strength .box .feature_title {
		font-size: 20px;
		margin-bottom: 10px;
	}
	#strength .box .feature_title::before {
		font-size: 36px;
	}
	
}


