.it-hours-table {
    border-bottom: 2px solid var(--Color-Black-10, rgba(29, 26, 26, 0.10));
}

.it-hours-table__row {
    display: grid;
    grid-template-columns: 148px 1fr;
    align-items: center;
    padding: 16px 24px;
}

.it-hours-table__row+.it-hours-table__row {
    border-top: 2px solid var(--Color-Black-10, rgba(29, 26, 26, 0.10));
}


.it-hours-table__left {
    display: flex;
    flex-direction: column;
    padding-right: 24px;
    max-width: 112px;
    position: relative;
}

.it-hours-table__left::after {
    content: '';
    width: 1px;
    background: rgba(29, 26, 26, 0.10);
    position: absolute;
    top: calc(50% - 8px);
    transform: translateY(calc(-50% + 8px));
    height: calc(100% - 16px);
    right: 0;
}

.it-hours-table__left-line {

    /* Paragraph */
    font-family: "Noto Sans TC";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 33.5px;
    /* 200% */
    letter-spacing: 1.44px;
}

.it-hours-table__right {
    padding-left: 24px;
    color: #a33333;
}

.it-hours-table__right,
.it-hours-table__right p {
    margin: 0;
    color: var(--Color-Branding-Color-Primary, #9B2F2D);
    /* Title */
    font-family: "Noto Sans TC";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 200% */
    letter-spacing: 3.84px;
}

.it-hours-table__right p+p {
    margin-top: 8px;
}