@charset "UTF-8";

.sample1 {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%; /* table幅を100%に指定 */
    background: #fff;
    border: none;
}
.sample1 th,
.sample1 td {
    display: block; /* セルをブロック要素に指定 */
    width: 100%; /* セルを親要素いっぱいの幅に指定 */
    border: none;
    /*font-size: 14px;   */
    padding: 10px;
    vertical-align: top;
    text-align: left;
    box-sizing: border-box;
}
.sample1 th {
    font-weight: 700;
    color: #fff;
    background: #888; /* thの背景色 */
}
.map{
    max-width: 650px;
    height: auto;

}

@media screen and (min-width: 768px) {
    .sample1 th,
    .sample1 td {
        display: table-cell; /* デフォルト値に指定 */
        border-bottom: 1px solid #ccc;
        color: #000;
        background: #fff;
    }
    .sample1 th {
        color: #000;
        background: #fff; /* thの背景色 */
    }
    .sample1 tr th:first-child {
        width: 100px; /* thの固定幅 */
    }
}
@media only screen and (max-width: 750px) {
    .map{
    max-width:100%;
    height: auto;
    }

    .sample1 th,
    .sample1 td {
        padding: 5px;
        margin-top: 5px;
    }


}