/* テーブル */
.table {
    color: #000;
    /* padding: 0 !important;
    margin: 0 !important; */
}

.table th {
    font-size: .687rem !important;
    color: #333;
    font-weight: 700;
    vertical-align: middle;
    background-color: #f5f5f5;
}

.table th, .table td {
    padding-left: 1rem;
    padding-right: 1rem;
}

.table td {

    font-size: 0.75rem !important;
    background-color: #fff;
}

/* スマホ以下*/
@media (max-width: 767.98px) {
    .table th, .table td {
        padding-left: .5rem;
        padding-right: .5rem;
    }
}

.table th.hissu::after {
    content: " (必須)";
    color: red;
    font-size: .687rem;
    vertical-align: middle;
}

.table td {
    font-size: 0.75rem !important;
    vertical-align: middle;
}

.table-responsive::-webkit-scrollbar {
    height: 12px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: .5rem;
}