.button {
	display: inline-block;
	width: 145px;
	height: 30px;
	text-align: center;
	text-decoration: none;
	line-height: 25px;
	outline: none;
        font-size: 14px;
	font-weight: normal;
	font-family: "Lucida Grande", "Verdana", "Meiryo", "Hiragino Kaku Gothic Pro W3", "ƒqƒ‰ƒMƒmŠpƒSPro W3", "HiraKakuPro-W3", "MS PƒSƒVƒbƒN", Sans-Serif;
}
.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 .50s;
	transition: all .50s;
}

.button {
	background-color: #FFFFFF;
	color: #333333;
}
.button:hover {
	background-color: #59b1eb;
}