@charset "UTF-8";

/* --------------------
		common
-------------------- */

article {
	position: relative;
	width: 1200px;
	min-width: 1200px;
	margin: 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	letter-spacing: 0.025em;
	line-height: 2.3;
}
article img {
	width: 100%;
}
article .mv {
	position: relative;
}
article .lead{
	width: 1200px;
	background-color: #cbffd9;
	font-size: 17px;
	font-weight: 500;
	line-height: 2em;
	padding: 75px 140px;
	text-align: left;
}
/* --------------------
		list
-------------------- */
.list {
	display: flex;
	align-items: center;
	width: 660px;
	margin: 60px auto;
  }
  
  .list li {
	background-color: #5ae07e;
	color: #fff;
	border-radius: 50%;
	width: 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.2em;
    text-align: center;
  }
.list li:not(:last-child){
	margin-right: 20px;
}
.list li:last-child{
	position: relative;
}

/*
.list li:last-child::after{
	display: block;
	content: "※";
	position: absolute;
	font-size: 4vw;
	color: #D7B61B;
    top: 28vw;
    right: 0vw;
}
*/

/* --------------------
		features
-------------------- */
.features {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-wrap: wrap;
	margin-bottom: 5px;

  }
.feature-item{
	display: flex;
  }
  .feature-item {
	width: 521px;
	height: 328px;
	text-align: center;
	padding: 20px 25px;
	box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.16);
  }
  .feature-item:nth-child(odd){
	margin-right: 40px;
  }
  .feature-item:nth-child(n+3){
	margin-top: 40px;
  }
  .feature-item img {
	width: 219px;
	height: 288px;
  }
  
  .feature-txt{
	text-align: left;
	margin-left: 30px;
  }
  .feature-txt h3 {
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 20px;
  }
  .feature-txt h3 span{
	display: block;
	margin-top: -10px;
	font-size: 13px;
  }
  .feature-item p {
	width: 224px;
	font-size: 16px;
	line-height: 1.68em;
	letter-spacing: 0.06em;
  }