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

.report #contents img { width: 30vm; }


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