//* =====================================================
   Town Group Table
===================================================== */

.town-group-table-wrap {
    max-width: 1100px;
    margin: 30px auto;
    padding: 36px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.town-group-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    table-layout: fixed;
}

.town-group-table th {
    background: #f3f7f3;
    font-size: 22px;
    font-weight: bold;
    padding: 18px 20px;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.town-group-table td {
    font-size: 22px;
    padding: 18px 20px;
    border: 1px solid #eeeeee;

    /* ここ追加 */
    white-space: normal;
    word-break: keep-all;
    line-height: 1.5;
}

.town-group-table tr:nth-child(even) {
    background: #fafafa;
}

.town-group-table td:nth-child(1),
.town-group-table td:nth-child(3) {
    text-align: center;
    font-weight: bold;
}


/* =========================
   スマホ
========================= */

@media (max-width: 768px) {

    .town-group-table-wrap {
        padding: 12px;
        margin: 20px auto;
    }

    .town-group-table th,
    .town-group-table td {
        font-size: 14px;
        padding: 10px 6px;
    }

    .town-group-table th:nth-child(1),
    .town-group-table td:nth-child(1),
    .town-group-table th:nth-child(3),
    .town-group-table td:nth-child(3) {
        width: 15%;
    }

    .town-group-table th:nth-child(2),
    .town-group-table td:nth-child(2),
    .town-group-table th:nth-child(4),
    .town-group-table td:nth-child(4) {
        width: 35%;
    }

}