@charset "UTF-8";
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* スマホファースト：sp・PCファースト：pc*/
/* 切り替えポイントの設定 */
/* 処理 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/

#about .container{
	padding: 5em 0;
	box-sizing: border-box;
}
#about .back{
	background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 108, 84, .2) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 108, 84, .2) calc(100% - 1px));
	background-size: 40px 40px;
	background-repeat: repeat;
	background-position: center center;
	margin: 50px auto;
	position: relative;
}
#about .container .flex-about{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#about .container .flex-about .box{
	width: calc(100%/2 - 20px);
	margin: 0 10px 80px;
}
#about .container .flex-about .box.wide{
	width: 100%;
	max-width: 750px;
}
#about .container .flex-about .box h2{
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	color: #006c54;
	line-height: 1.8rem;
}
#about .container .flex-about .box h2 small{
	font-size: 1rem;
	color: #008a45;
}
#about .container .flex-about .box .img{
	margin: 10px auto;
}
#about .container .flex-about .box .text{
	width: 90%;
	margin: auto;
	font-weight: bold;
}
#about .container .flex-about .box a{
	max-width: 370px;
	margin: 10px auto auto;
	text-align: center;
	border: 3px solid #008a45;
	background-color: #fff;
	color: #008a45;
	padding: 5px;
	box-sizing: border-box;
	text-decoration: none;
	display: block;
}
#about .container .flex-about .box a:hover{
	opacity: 1;
}
#about .container .flex-about .box a span{
	padding-right: 40px;
	position: relative;
}
#about .container .flex-about .box a span::before{
	content: "";
	position: absolute;
	background-image: url(../img/arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 17px;
	height: 17px;
	top: 0;
	bottom: 0;
	right: 5px;
	margin: auto;
	transition: all .5s;
}
#about .container .flex-about .box a:hover span::before{
	right: 0;
}

@media only screen and (max-width: 750px) {
	#about .container{
		max-width: 1270px;
		width: 90%;
		padding: 30px 0;
		margin: 0 auto;
		position: relative;
	}
	#about .back{
		background-size: 20px 20px;
	}
	#about .container .flex-about .box{
		width: 100%;
		margin: auto auto 40px;
	}
}












