/*SLOT  CSS */
/*⬇︎確認用*/
.test{background-color:#ff74ff;}
/*⬇︎装飾*/
body{background-color:#ccc; margin:0; padding:0;}
table{
     width:100%;
     margin:0;
     padding:0;
     }
table thead tr{
     background-color:#fcc;
     }
table thead tr th{
     border-top:8px outset #faa;
     border-left:15px outset #faa;
     border-right:15px inset #f77;
     border-bottom:8px inset #f77;
     border-radius:16px;
     padding:0;
     }

h1{
     font-size:21px;
     padding:0; margin:0;
     }
table tbody tr td{
     background-color:#888;
     color:#ff7;
     border-radius:5px;
     }
marquee{
     font-size:12px;
     background-color:#555;
     }

/*ボタン設定*/

a.button {
     display: inline-block;
     padding: 0.5em 1em;
     background: #000000;
     border: 1px solid #666666;
     color: #ea0;
     font-size: 18px;
     line-height: 1;
     border-radius: 10px;
     margin-bottom: 5px;
     text-shadow: 0px 1px 1px #ff0000; /*y軸オフセット x軸オフセット ぼかしの大きさ 色 */
     -webkit-box-shadow: 0 1px 5px 0 #bbb;
-moz-box-shadow: 0 1px 5px 0 #bbb;
box-shadow: 0 1px 5px 0 #bbb;/*y軸オフセット x軸オフセット ぼかしの大きさ 影の広がり 色 */
     background-image: -webkit-gradient(linear, left top, left bottom, from(#dddddd), to(#000));
     background-image: -moz-linear-gradient(top, #dddddd, #000);
     background-image: -o-linear-gradient(top, #dddddd, #000);
	-webkit-box-shadow: 0 1px 5px 0 #bbb, inset 0 1px 1px #fff;
-moz-box-shadow: 0 1px 5px 0 #bbb, inset 0 1px 1px #fff;
box-shadow: 0 1px 5px 0 #bbb, inset 0 1px 1px #fff;
    text-decoration:none;
}