@charset "utf-8";

/*-----------------------------------------------------------------

	endContract

-----------------------------------------------------------------*/

#endContract .endContractList {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-pack: wrap;
	flex-wrap: wrap;
	padding-top:10px;
}
#endContract .endContractList li {
	width:100%;
	margin:40px 0 0;
	padding:100px 20px 30px;
	text-align:center;
	background:#F7F7F7;
	border-radius:10px;
	position:relative;
}
#endContract .endContractList li .number {
	font-size:1.6rem;
	line-height:1.5;
	font-weight:700;
	font-family: 'Poppins', sans-serif;
	color:#45BC90;
}
#endContract .endContractList li .subHeading {
	margin-bottom:15px;
	font-size:2.8rem;
	line-height:1.5;
	font-weight:700;
	color:#45BC90;
}
#endContract .endContractList li .icon {
	width:160px;
	margin:0 auto;
	position:absolute;
	top:-30px;
	left:0;
	right:0;
}

/*----------------------------------------------------------
	Display：768px →（ tablet + pc ）
----------------------------------------------------------*/

@media screen and (min-width:768px) {

	#endContract .endContractList li {
		width:48%;
	}

}


