/*▼トップページスムーズスクロールボタン*/
@media only screen and (min-width: 890px){
/*トップページボタンPC*/
.topbutton{
	display: inline-block;
	width: 130px;
	height: 40px;
	text-align: center;
	text-decoration: none;
	padding-top: 11px;
	outline: none;
	font-size: 12px;
	background-color: #29A339;
	color: #fff;
	}
	
.topbutton:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.7;
	}

}

@media only screen and (max-width: 889px){
/*トップページボタンスマホ*/
.topbutton{
	display: inline-block;
	width: 130px;
	height: 70px;
	text-align: center;
	text-decoration: none;
	line-height: 70px;
	outline: none;
	font-size: 12px;
	background-color: #29A339;
	color: #fff;
	
	}
	
.topbutton:hover {
	color: #fff;
	text-decoration: none;
	}
	
}

.topbutton::before,
.topbutton::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
	}

.topbutton,
.topbutton::before,
.topbutton::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
	}


/*▼トップページボタン*/
.button {
	position: absolute;
	bottom: 10%;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 0;
	display: inline-block;
	width: 140px;
	height: 40px;
	text-align: center;
	outline: none;
	font-size: 15px;
	}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
	}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button {
	background-color: rgba(255,255,255,0.80);
	border: 1px solid #29A339;
	color: #29A339;
	line-height: 40px;
	}

.mt-button-center li:hover {
	background-color: rgba(41,163,57,0.8);
	border-color: #29A339;
	color: #fff;
	text-decoration:none;
	}


