@charset "UTF-8";

/** Table **/

.table-wrap {
    margin-bottom: 15px;
}

.table {
    color: #444;
}

.table-type-1 th,
.table-type-1 td,
.table-type-2 th,
.table-type-2 td {
    display: block;
    width: 100%;
}

.table-type-1 th {
    background-color: #F9F9F8;
    padding: 5px 10px;
}

.table-type-1 td {
    padding: 10px;
}

.table-wrap .table-type-1 .th-inner {
    position: relative;
    padding: 0 0 0 26px;
}

.table-type-1 .th-inner::before {
    content: "";
    background-color: #DAE13B;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 3px;
    border-radius: 3px;
}

.th-inner.before-content-none::before {
    content: none;
}

.table-wrap .table-type-2 {
    margin-top: 12px;
}

.table-wrap .table-type-2 th {
    background-color: #FBFBE7;
    padding: 7px 10px 5px;
    font-size: 1.6rem;
}

.table-wrap .table-type-2 td {
    padding: 10px 10px 15px;
    font-size: 1.6rem;
}

.table-wrap td {
    word-break: break-all;
}

@media (min-width: 768px) {

    .table-wrap {
        margin-bottom: 30px;
    }

    .table-type-1 th,
    .table-type-1 td,
    .table-type-2 th,
    .table-type-2 td {
        display: table-cell;
    }

    .table-type-1 th {
        background: none;
        width: 190px;
    }

    .table-type-1 td {
        width: initial;
    }

    .table-type-1 .th-inner {
        padding: 0 0 0 16px;
    }

    .table-wrap .table-type-2 {
        border-top: 1px solid #D8D8D8;
        margin-top: 30px;
    }

    .table-wrap .table-type-2 tr {
        border-bottom: 1px solid #D8D8D8;
    }

    .table-wrap .table-type-2 th {
        width: 45%;
        padding: 20px;
        font-size: 1.8rem;
        vertical-align: top;
    }

    .table-wrap .table-type-2 td {
        padding: 20px 10px 20px 20px;
        font-size: 1.8rem;
    }

}
