/* テーブル */
.table-block {
    margin-top: 24px;
}

.table-block__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-block__table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: #fff;
}

.table-block__caption {
    margin-bottom: 12px;
    font-weight: 700;
    text-align: left;
}

.table-block__table th,
.table-block__table td {
    padding: 12px 16px;
    border: 1px solid #707070 !important;
    font-size: 16px;
    line-height: 1.6;
    vertical-align: middle;
}

.table-block__table thead th {
    background: #3d3d3d;
    color: #fff;
    font-weight: 700;
    text-align: center;

    .blank-link {
        position: relative;
        padding-right: 1em;

        &::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            display: inline-block;
            width: 8px;
            height: 8px;
            background: url(/themes/custom/subsphere/images/resources/icon_window-w.webp) no-repeat center/100%;
        }
    }

    a {
        color: #fff
    }
}

.table-block__table tbody th {
    background: #e5e5e5;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;


}

.table-block__table tbody td {
    background: #fff;
    text-align: left;

    &.text-center {
        text-align: center
    }



}

@media (max-width: 768px) {

    .table-block__table th,
    .table-block__table td {
        padding: 10px 12px;
        font-size: 14px;
    }
}