/* ==== Content01 ==== */
.table-wrap {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -51vw;
    margin-right: -51vw;
    width: 100vw;
    background-color: #F9F9F9;
    padding: 60px 0;
}

.compare-table {
    max-width: 1290px;
    margin: 0 auto;
    width: 100%;
    border-collapse: separate;
    font-size: var(--font-lg);
}

.compare-table th[colspan="2"] {
    width: 15%;
}

.compare-table td[colspan="2"],
.compare-table th.td[colspan="2"] {
    background-color: #F1F1F1;
}

.compare-table th.td.group {
    background-color: #F1F1F1;
    border-left: 1px solid #D0D0D0;
    border-right: 1px solid #D0D0D0;
    border-bottom: 1px solid #A0A0A0;
}

.compare-table th,
.compare-table td {
    text-align: center;
    background-color: white;
    word-break: keep-all;
}

.compare-table .th {
    padding: 16px 12px;
    background-color: #414141;
    border-radius: 10px;
    color: white;
    font-weight: 700;
}

.compare-table .th.blue {
    background-color: #08429F;
}

.compare-table .th.teal {
    background-color: #027273;
}

.compare-table td,
.compare-table th.td {
    padding: 25px 35px;
    border-left: 1px solid #D0D0D0;
    border-right: 1px solid #D0D0D0;
    border-bottom: 1px solid #A0A0A0;
    font-size: var(--font-md);
    font-weight: 600;
    background-color: white;
}

.compare-table .td .numbered-list.blue+ul.dot-list {
    margin-top: 10px;
}

.compare-table .border-fix {
    border-bottom: 1px solid #D0D0D0;
}

.compare-table .gap {
    padding: 5px;
    background-color: #F9F9F9;
    border: none;
}

.compare-table .group {
    background-color: #F1F1F1;
    font-weight: 600;
}

.compare-table .th-gap {
    border: none;
    background: #F9F9F9;
    padding: 8px;
}

.top-left {
    border-top-left-radius: 10px;
    border-top: 1px solid #D0D0D0;
}

.top-right {
    border-top-right-radius: 10px;
}

.bottom-left {
    border-bottom-left-radius: 10px;
}

.bottom-right {
    border-bottom-right-radius: 10px;
}

.dot-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    text-align: left;
}

.dot-list li:last-child {
    margin-bottom: 0;
}

.dot-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #A0A0A0;
    border-radius: 50%;
    display: inline-block;
    margin-top: 14px;
}

.numbered-list {
    counter-reset: step;
}

.numbered-list li {
    counter-increment: step;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    text-align: left;
}

.numbered-list li:last-child {
    margin-bottom: 0;
}

.numbered-list li::before {
    content: counter(step);
    width: 24px;
    height: 24px;
    padding: 1px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-md);
    font-weight: 600;
    margin-top: 3px;
}

.numbered-list.blue li::before {
    background: rgba(0, 78, 206, 0.06);
    color: #08429F;
}

.numbered-list.green li::before {
    background: #ECF7F6;
    color: #027273;
}

@media (max-width:1280px) {
    .table-wrap {
        padding: 48px 20px;
    }

    .compare-table {
        max-width: 1180px;
    }

    .compare-table .th {
        padding: 14px 10px;
        font-size: var(--font-lg);
    }

    .compare-table td,
    .compare-table th.td {
        padding: 24px 32px;
    }

    .compare-table th[colspan="2"] {
        width: 16%;
    }

    .compare-table .gap {
        padding: 4px;
    }

    .compare-table .th-gap {
        padding: 6px;
    }

    .dot-list li,
    .numbered-list li {
        margin-bottom: 8px;
    }
}

@media (max-width:1024px) {
    .table-wrap {
        padding: 40px 16px;
    }

    .compare-table {
        max-width: 940px;
        font-size: var(--font-md);
    }

    .compare-table .th {
        padding: 12px 10px;
    }

    .compare-table td,
    .compare-table th.td {
        padding: 20px 24px;
    }

    .compare-table th[colspan="2"] {
        width: 18%;
    }

    .compare-table .gap {
        padding: 4px;
    }

    .compare-table .th-gap {
        padding: 6px;
    }

    .numbered-list li::before {
        width: 22px;
        height: 22px;
        font-size: var(--font-sm);
    }

    .dot-list li::before {
        margin-top: 10px;
    }
}

@media (max-width:768px) {
    .table-wrap {
        padding: 28px 14px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table {
        width: 100%;
        min-width: unset;
        font-size: var(--font-md);
    }

    .compare-table th,
    .compare-table td {
        padding: 14px 12px;
        word-break: keep-all;
    }

    .compare-table .th {
        font-size: var(--font-md);
    }

    .compare-table td,
    .compare-table th.td {
        padding: 18px 18px;
    }

    .compare-table .gap {
        padding: 0 !important;
        width: 10px;
        min-width: 10px;
        background: #F9F9F9 !important;
        border: none !important;
    }

    .compare-table .th-gap {
        padding: 0 !important;
        height: 10px;
        background: #F9F9F9 !important;
        border: none !important;
    }

    .top-left {
        border-top-left-radius: 8px;
    }

    .top-right {
        border-top-right-radius: 8px;
    }

    .bottom-left {
        border-bottom-left-radius: 8px;
    }

    .bottom-right {
        border-bottom-right-radius: 8px;
    }

    .dot-list li,
    .numbered-list li {
        margin-bottom: 7px;
        gap: 8px;
    }
}

@media (max-width:480px) {
    .table-wrap {
        padding: 22px 12px;
    }

    .compare-table {
        width: 100%;
        min-width: unset;
        font-size: var(--font-base);
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 10px;
    }

    .compare-table .th {
        font-size: var(--font-base);
    }

    .compare-table td,
    .compare-table th.td {
        padding: 14px 14px;
    }

    .compare-table .gap {
        width: 5px;
        min-width: 5px;
    }

    .compare-table .th-gap {
        height: 8px;
    }

    .numbered-list li::before {
        width: 20px;
        height: 20px;
        font-size: var(--font-xs);
    }

    .dot-list li::before {
        width: 3px;
        height: 3px;
        margin-top: 9px;
    }
}