/* ========== page nav ========== */
.cost_page_nav {
    padding: 16px 0;
}

.cost_page_nav .page_nav {
    display: flex;
    gap: 8px 0px;
    /* gap: 51px; */
    justify-content: space-between;
    align-items: center;
}

.cost_page_nav .nav_item {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #5E5E5E;
}

.cost_page_nav .nav_item.active {
    color: var(--sub-color);
    font-weight: 600;
}

/* ========== cont ========== */
.cs_cont:not(:last-child) {
    border-bottom: 1px solid #BBBBBB;
}

.cost_cont {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ========== 로고없는 타이틀 ========== */
.cost_title_area {
    margin-bottom: 16px;
}

.cost_title_area .title {
    font-size: 24px;
    font-weight: 700;
}

/* ========== table ========== */
.cost_table_area {
    padding: 0 16px;
}

.cost_table_area .cost_table {
    border: 1px solid #BBBBBB;
}

.cost_table .thead {
    background-color: var(--bg-sub-color);
    border-bottom: 1px solid #BBBBBB;
}

.cost_table .tr {
    display: flex;
    width: 100%;
    min-height: 60px;
}

.cost_table .tr.h_120 {
    min-height: 120px;
}

.cost_table .tr.h_180 {
    min-height: 180px;
}

.cost_table .tr.h_200 {
    min-height: 200px;
}

.cost_table .tr:not(:last-child) {
    border-bottom: 1px solid #BBBBBB;
}

.cost_table .td {
    padding: 16px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-align: center;
}

.cost_table .td.left {
    justify-content: flex-start;
    text-align: left;
}

.cost_table .td.long {
    padding: 16px 0;
}

.cost_table .td.w_16 {
    width: 16%;
}

.cost_table .td.w_23 {
    width: 23%;
}

.cost_table .td.w_61 {
    width: 61%;
}

.cost_table .td.w_84 {
    width: 84%;
}

.cost_table .td.w_77 {
    width: 77%;
}

.cost_table .tr>.td:not(:last-child) {
    border-right: 1px solid #BBBBBB;
}

.cost_table .thead .td {
    color: var(--sub-color);
    font-weight: 500;
    font-size: 16px;
}

.cost_table .text_list {
    gap: 0;
}

/* disc 리스트 */
.text_list {
    list-style: outside disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text_list li {
    letter-spacing: 0.04em !important;
    line-height: 1.5;
}

/* ========== 안내사항 리스트 ========== */
.notice_area {
    padding: 16px;
    border: 1px solid #BBBBBB;
    border-radius: 6px;
}

.notice_area .text_list {
    /* word-break: keep-all; */
}

.notice_area .text_list li {}

.notice_area .text_list strong {
    color: var(--error-color);
    font-weight: 500;
}

.notice_area .text_list strong.color_gr {
    color: var(--sub-color);
    font-weight: 700;
}

/* ========== 주의사항 ========== */
.alert_sect {
    padding: 16px;
    background-color: var(--bg-sub-color);
    border: 1px solid var(--sub-color);
    border-radius: 6px;
}

.alert_sect .alert_title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
}

.alert_sect .text_list strong {
    color: var(--error-color);
    font-weight: 700;
}

@media screen and (max-width:1023px) {

    /* ========== page nav ========== */
    .cost_page_nav .page_nav {
        flex-wrap: wrap;
    }

    .cost_page_nav .nav_item {
        padding: 12px 14px;
        font-size: 14px;
    }

    /* ========== cont ========== */
    .cost_cont {
        gap: 30px;
    }

    /* ========== 로고없는 타이틀 ========== */
    .cost_title_area .title {
        font-size: 20px;
    }

    /* ========== table ========== */
    .cost_table_area {
        padding: 0 8px;
    }

    .cost_table .tr,
    .cost_table .tr.h_120,
    .cost_table .tr.h_200 {
        min-height: auto;
    }

    .cost_table .td {
        padding: 8px;
        font-size: 16px;
    }

    .cost_table .td.long {
        padding: 8px;
    }

    .cost_table .thead .td {
        font-size: 14px;
    }

    /* disc 리스트 */
    .text_list {
        gap: 8px;
        font-size: 14px;
    }

    /* ========== 주의사항 ========== */

    .alert_sect .alert_title {
        font-size: 20px;
    }

}

@media screen and (max-width:767px) {

    /* ========== page nav ========== */
    .cost_page_nav .nav_item {
        padding: 0;
    }

    /* ========== 로고없는 타이틀 ========== */
    .cost_title_area .title {
        font-size: 20px;
    }

    /* ========== table ========== */
    .cost_table_area {
        padding: 0;
    }

    .cost_table .td {
        font-size: 12px;
        padding: 4px 2px;
    }

    .cost_table .td.long {
        padding: 4px 0;
    }

    /* disc 리스트 */
    .text_list {
        font-size: 12px;
    }

    /* ========== 안내사항 리스트 ========== */
    .notice_area {
        padding: 12px;
    }
}