@charset "utf-8";

/*サイト共通パーツ設定*/

.animation {
	-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
 -webkit-transition: all .3s; 	transition: all .3s;
}

.animation:hover {
	-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
-ms-transform: scale(1.05);
-o-transform: scale(1.05);
transform: scale(1.05);
 -webkit-transition: all .3s; 	transition: all .3s;
}



/*緑のボタン*/
.bt_01{
	border-width:1px;-moz-border-radius:1%;
	-webkit-border-radius:0%/3%;
	border-radius:0%/3%;
	border-style:solid;
	-moz-box-shadow:2px 2px 0px rgb(0,174,193);
	-webkit-box-shadow:2px 2px 0px rgb(0,174,193);
	box-shadow:2px 2px 0px rgb(0,174,193);
	transition: 0.5s;display: block;
	border-color:rgb(0,174,193);
	background-color:rgb(255,255,255);
	color:#00AEC1 !important;
	padding: 18px 90px;
	text-align:center;
}
.bt_01:hover{
	background-color:#00AEC1;
	color: #FFF!important;
}

/* SP用 */
@media screen and (max-width: 740px) {
.bt_01{	padding: 18px ; text-align: center;}
}