/* =========================================
    Access
========================================= */

.access {
    padding: 60px 0;
}

/* =========================================
    Map
========================================= */

.access_map {
    margin-top: 40px;
    margin-bottom: 32px;

    border-radius: 16px;
    overflow: hidden;

    box-shadow: var(--shadow-sm);
}

.access_map iframe {
    display: block;

    width: 100%;
    height: 320px;
}

/* =========================================
    Table
========================================= */

.access_table {
    width: 100%;
    border-collapse: collapse;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;

    box-shadow: var(--shadow-sm);
}

.access_table tr {
    border-bottom: 1px solid var(--border);
}

.access_table tr:last-child {
    border-bottom: none;
}

.access_table th,
.access_table td {
    display: block;

    width: 100%;

    padding: 18px 20px;
}

/* 見出し */

.access_table th {
    font-size: 15px;
    font-weight: 700;

    padding-bottom: 6px;

    color: var(--text-main);
}

/* 内容 */

.access_table td {
    padding-top: 0;

    font-size: 16px;
    line-height: 2;

    color: var(--text-sub);
}

/* =========================================
    Tablet
========================================= */

@media (min-width: 768px) {

    .access {
        padding: 80px 0;
    }

    .access_map iframe {
        height: 380px;
    }

}

/* =========================================
    PC
========================================= */

@media (min-width: 1024px) {

    .access {
        padding: 120px 0;
    }

    .access_map {
        margin-bottom: 40px;
    }

    .access_map iframe {
        height: 460px;
    }

    .access_table th,
    .access_table td {
        display: table-cell;

        padding: 24px 32px;
    }

    .access_table th {
        width: 28%;

        font-size: 16px;
        vertical-align: top;
    }

    .access_table td {
        padding-top: 24px;

        font-size: 17px;
    }

}