body { background-color: whitesmoke;}
table { border-collapse:collapse }
table { font-family: "Meiryo",serif; }
img { max-width : 100% ; height : auto ; }

.mgr-10{
    margin-right : 10px;
}

button.button4 {
    /* 文字サイズを1.4emに指定 */
    font-size: 1.4em;
 
    /* 文字の太さをboldに指定 */
    font-weight: bold;
 
    /* 縦方向に10px、
     * 横方向に30pxの余白を指定 */
    padding: 10px 30px;
 
    /* 背景色を濃い青色に指定 */
    background-color: #98d2fe;
 
    /* 文字色をグレーに指定 */
    color: #333333;
 
    /* ボーダーをなくす */
    border-style: none;

    border-radius: 5px;
    -webkit-border-radius: 5px;/* for Safari and Chrome 対応*/
    -moz-border-radius: 5px;/* for Firefox 対応*/
}
 
button.button4:hover {
    /* 背景色を明るい青色に指定 */
    background-color: #24d;
 
    /* 文字色を白色に指定 */
    color: #fff;
}

