body{
    text-align: center;
    font-family:"Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color:#FFFFEE;
    background: linear-gradient(#0077FF, skyblue) fixed;
    margin: 0 auto;
    overflow:hidden;     /*スクロールバーを隠す*/
  }

.btn {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 18pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #2C7CFF;     /* 背景色     */
  color         : #FFFFEE;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 6px 6px 3px #99CCFF;  /* 影の設定 */
  border        : none;    /* 枠の指定 */
  text-decoration:none  /* 下線を消す */
}


