.button {
  display       : inline-block;
  font-size     : 10.5pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 8px 8px;   /* 余白       */
  background    : #404040;     /* 背景色     */
  border		: none;
  outline		: none;
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  border-radius	: 5px; /*角丸*/
  -webkit-transition: all 0.5s;
  transition	: all 0.5s;
}
.button:hover {
  background-color: #E9733D; /*ボタン色*/
}
.button:active {
  background-color: #f3b800; /*ボタン色*/
  box-shadow	: 0px 0px 2px 2px #f3b800;
}
