@charset "UTF-8";


.pointList{
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.pointList li{
  width: calc(100% / 3 - 2%);
  flex-basis: 340px;
  margin:0 2% 0 0;	
}

.pointList li .listTtl{
	padding: 20px 0;
	color: #253f77;
	font-size: 1.8rem;
	display: block;
	font-weight: bold;
}

.businessBlock{
	clear: both;
}


.businessInner {
  width: calc(100% - 100px);
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  clear: both;
  margin-left: calc((100% - 1100px) / 2);
  margin-bottom: 100px;
}


.businessInner.odd{
	margin-left: auto;
	margin-right: auto;
	flex-direction: row-reverse;
}

.businessInner .innerCont{
	width: 455px;
}

.businessInner .contTtl{
	font-size: 3.6rem;
	color: #253f77;
	padding-bottom: 10px;
}

.businessInner .contIntro{
	font-size: 1.8rem;
	color: #253f77;
	line-height: 1.5;
	font-weight: bold;	
}

.businessInner .contList{
	display: flex;
	margin-top: 25px;
	flex-wrap: wrap;
}

.businessInner .contList li{
	background: #253f77;
	color: #fff;
	line-height: 30px;
	height: 30px;
	text-align: center;
	width: calc(100% / 3 - 2%);
	flex-basis: 144px;
	margin: 0 2% 2% 0;
	font-weight: bold;
}

.businessInner .contList li:nth-child(3n){
	margin: 0 0 2% 0;
}

.fin{
	font-size: 2.4rem;
	padding-bottom: 60px;
	text-align: center;
	display: block;
	clear: both;
	color: #253f77;
}

/* Media Queries ================================================== */
/*1300*/
@media screen and (max-width: 1500px) {
	.businessInner.odd{
		margin-left: 0;
	}
}	

@media screen and (max-width: 1300px) {
	.businessInner .contList li:nth-child(3n) {
	  margin: 0 2% 2% 0;
	}
}


/* Media Queries ================================================== */
/*896*/
@media screen and (max-width: 896px) {
	.pointList{
		display: block;
	}

	.pointList li{
	  width: 100%;
	  margin:0 0 30px 0;	
	}


	.pointList li:last-child{
	  margin:0;	
	}

	.pointList li .listTtl {
	  padding: 10px 0 0;
	}

	.businessInner{
		width: 100%;
		margin-bottom: 50px;
		margin-left: 0;
		flex-direction: column-reverse;
	}

	.businessInner.odd{
		float: left;
		flex-direction: column-reverse;
	}

	.businessInner .innerCont{
		width: 92vw;
		margin: 0 auto;
	}

	.businessInner .contTtl{
		padding: 10px 0;
		font-size: 2.6rem;
	}


	.businessInner .contList li {
	  width: calc(100% / 2 - 1%);
	  flex-basis: auto;
	  height: 40px;
	  line-height: 40px;
	  font-size: 2rem;
	}

	.businessInner .contList li:nth-child(3n){
		margin: 0 2% 2% 0;
	}

	.businessInner .contList li:nth-child(2n){
		margin: 0 0 2% 0;
	}


	.fin{
		padding-bottom: 20px;
		font-size: 2rem;
	}	
}	