.kadomaru {
   display: inline-block;   /* インラインブロック化 */
   border-radius: 8px;     /* 角丸 */
   background-color: blue;  /* グラデーションが表示できない際の背景色 */
   background-image: linear-gradient( 0deg, #008, #08f );   /* 青色のグラデーション背景 */
   color: white;            /* 文字色 */
   padding: 0.5em 1em;      /* 内側の余白量 */
   text-decoration: none;   /* 下線を消す */
}
/* ▼マウスが載ったときの装飾（※単色） */
.kadomaru:hover {
   background-image: none;    /* グラデーションを消す */
   background-color: #ccddff; /* 背景色 */
   color: darkblue;           /* 文字色 */
}