﻿.link_button {
  font-weight: bold;/*太字に*/
  text-decoration: none;/*下線消す*/
  background: #f5f5f5;/*背景を水色に*/
  color:red;/*文字を白に*/
  padding:10px 10px;/*内側の余白*/
  font-family: 'Avenir','Arial';/*フォントをいい感じに*/
  box-shadow: 2px 2px;
  box-shadow:-5px -5px 0px -3px #000000 inset;

}
/*以下カーソルを当てたとき*/
.link_button:hover {
  background: silver;/*背景色をシルバーに*/
  color:red;/*文字を白に*/
}