.office_info_text_box {

}

table th {
    position: relative;
    text-align: left;
    width: 10vw;
}

table th:after {
    display: block;
    content: "";
    width: 30px;
    height: 2px;
    background-color: #333;
    position: absolute;
    top: calc(50% - 1px);
    right: -15px;
}

table td {
    text-align: left;
    padding: 7px 0 7px 30px;
    width: 85%;
}

.map_sp{
    display: none;
}
/* ***************************** */
/* メディアクエリ */
/* ***************************** */
@media screen and (max-width:720px) {

    .map_pc{
        display: none;
    }

    .map_sp{
        display: block;
    }
    
    table th {
        position: relative;
        text-align: left;
        width: 30vw;
        font-size: min(3rem,3vw);
    }

    table th:after {
        display: block;
        content: "";
        width: 30px;
        height: 2px;
        background-color: #333;
        position: absolute;
        top: calc(50% - 1px);
        right: -15px;
    }

    table td {
        text-align: left;
        padding: 7px 0 7px 30px;
        width: 70vw;
        font-size: min(3rem,3vw);
    }

}