.sec_h {
    padding-bottom: 24px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-300);
}
.sec_title {
    font-size: var(--ft24);
    font-weight: var(--medium);
}

/*-------------------- membership_sec --------------------*/
.membership_table {
    width: 100%;
}
.membership_table thead th {
    width: 20%;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.membership_table tbody th,
.membership_table tbody td {
    height: 120px;
    border-bottom: 1px solid var(--line);
    font-size: var(--ft16);
}
.membership_table tbody th {
    text-align: left;
}
.benefit_name {
    font-size: var(--ft16);
    font-weight: var(--medium);
    color: var(--gray-600);
}
.benefit_desc {
    font-size: var(--ft14);
    font-weight: var(--normal);
    color: var(--gray-500);
}
.membership_table tbody td {
    text-align: center;
    color: var(--gray-500);
}
.membership_grade {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.grade_icon {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.grade_name {
    font-size: var(--ft13);
    font-weight: var(--medium);
    color: var(--gray-600);
    text-align: center;
}

/*-------------------- standard_sec --------------------*/
.standard_sec {
    margin-top: 140px;
    background-color: var(--gray-100);
    padding: 100px 0;
}

/*-------------------- notice_sec --------------------*/
.notice_sec {
    margin-top: 80px;
}
.notice_list {
    border-top: 1px solid var(--line);
}
.notice_list li {
    border-bottom: 1px solid var(--line);
}
.notice_main {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.notice_main::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(/images/down.svg) no-repeat center/contain;
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform .4s ease;
}
.notice_main.is-open::after {
    transform: rotate(180deg);
}

.notice_title {
    font-size: var(--ft18);
    font-weight: var(--medium);
    color: var(--gray-600);
}
.notice_sub {
    padding: 24px;
    background-color: var(--gray-100);
    display: none;
}
.notice_sub p {
    font-size: var(--ft16);
    color: var(--gray-500);
}