/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*すべての場合に適用*/
.archives #contents table {
    border: solid 1px black;      /*枠線指定*/
    background: #ffffff;	/*背景色*/
    width: 100%;			/*幅*/
}

/*画面サイズ（横幅）が900px以上の場合に適用*/
@media screen and (min-width: 900px) {
    .archives #contents table {
        border: solid 1px black;      /*枠線指定*/
        background: #ffffff;	/*背景色*/
        width: 800px;			/*幅*/
    }
}
