﻿/* カスタムエラーページ用CSS */

/* PCの場合に適用するCSS */
body {
    font-family:  Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}
p {
    text-align:   center;
}
/* 携帯端末の場合にfooterを最下部に固定 */
footer div {
    text-align: center;
}


/* 携帯端末の場合に適用するCSS */
@media screen and ( max-width:479px ) {
    p {
        text-align: left;
    }
    /* 携帯端末の場合に<br />を削除する */
    p br {
        display: none;
    }
    /* 携帯端末の場合にfooterを最下部に固定 */
    footer div {
        width:100%;
        font-size: 8px;
        position: absolute;
        bottom: 0;
    }
}
