/* CSS Document */
@charset "utf-8";

main{
	animation-name: textanime;
	animation-duration:2.5s;
	animation-iteration-count:1;
}

@keyframes textanime
{
	0%{
	opacity: 0;
	}

	100%{
	opacity: 1;
	}
}

.about{
	text-align: center;
	padding:120px 0px 80px;
	margin:0px;
	background: linear-gradient(#F8F1E1, #fff);
}

.hp_about_title img{
	width: 350px;
}

.hp_about_title h2{
	font-family: 'Zen Maru Gothic', serif;
	font-weight: 600;
	font-size: 28px;
	color:#006837;
	margin-top: 10px;
}

.about_content{
	width: 90vw;
	max-width: 1330px;
	display: flex;
	flex-direction: row;
	margin: 70px auto;
}

.hp_about_photo{
	width: 35vw;
	height: 100%;
	margin-right: 30px;
}

.hp_about_article{
	width: 50vw;
	height: 100%;
	text-align: center;
}

.hp_about_text{
	position: relative;
	top: -70px;
	width: 90%;
}


.hp_about_article p{
	width: 100%;
	position: relative;
	top: -40px;
	text-indent: 1rem;
	font-size: 16px;
	margin-top: 10px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;	
	text-align: left;
	padding: 0 20px;
}


/* ボタン設定 */
.hm_btn{
    position: relative;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
	   	border: solid 2px #006837; 
    padding: 10px 40px 12px;
	border-radius: 50px;
    text-align: center;
    outline: none;
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.hm_btn span {
	position: relative;
	z-index: 3;
	color:#006837;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;	
	font-size: 18px;
	line-height: 35px;
}

.hm_btn:hover span{
	color:#fff;
}

/*背景が流れる */
.bgcenterx:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: #006837;
	width: 100%;
	height: 100%;
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: left top;
}

.bgcenterx:hover:before{
	transform:scale(1, 1);
}

@media only screen and (max-width: 1000px) {
	
	.about {
    	padding: 50px 0px 20px;
	}
	
	.about_content{
		display: flex;
		flex-direction: column;
		margin: 30px auto;
	}
	
	.hp_about_photo {
		width: 90vw;
		margin-right: 0px;
	}
	
	.hp_about_title img {
		width: 70%;
		max-width:300px;
		margin-top: 30px;
	}
	
	.hp_about_title h2 {
		font-size: 24px;}
	
	.hp_about_text {
    	top: 10px;
	}
	.hp_about_article {
		text-align: center;	
		width: 100%;
	}
	
	.hp_about_article p {
		width: 100%;
		top: 20px;
		margin-top: 10px;
		text-align: left;
		padding: 10px;
	}
	
	.hm_btn {
	 	margin:20px auto;
	}
	
	.hp_about_text{
		width: 100%;
	}


}






