/*==========================================
 応募フォームへボタンのスタイル
===========================================*/
#toform {
	margin-bottom: 10px;
	text-align: center;
}
.button {
	display: inline-block;
	width: 250px;
	height: 54px;
	text-align: center;
	text-decoration: none;
	font-size: 130%;
	font-weight: bold;
	line-height: 54px;
	outline: none;
}
.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: #cc0000;
	color: #fff;
}
.button:hover {
	background-color: #cccccc;
	color: #000;
	text-decoration: none;
}

/*==========================================
 ジモ通トップへボタンのスタイル
===========================================*/
#tojimo {
	margin-bottom: 10px;
	text-align: left;
}
#tojimo .button {
	display: inline-block;
	width: 260px;
	height: 40px;
	text-align: center;
	text-decoration: none;
	font-size: 110%;
	font-weight: bold;
	line-height: 40px;
	outline: none;
}
#tojimo .button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
#tojimo .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;
}
#tojimo .button {
	background-color: #006400;
	color: #fff;
}
#tojimo .button:hover {
	background-color: #cccccc;
	color: #000;
}
