.only-sp {
    display: none;
}

@media (max-width: 750px) {
    .only-sp {
        display: block;
    }
}

.term {
    padding: 160px 0 160px;
}
.term.--white {
    background-color: #fff;
}
.term_title {
    width: auto;
    color: #4663AC;
    font-size: 40px;
    line-height: 150%;
    letter-spacing: 2px;
    margin-bottom: 43px;
}
.term_heading {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.term_heading h2 {
    color: #131E30;
    font-size: 28px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.4px;
}
.term_heading p {
    color: #00030A;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.9px;
}

@media (max-width: 750px) {
    .term {
        padding: 130px 16px 60px;
    }
    .term_title {
        font-size: 32px;
        letter-spacing: 1.6px;
        margin-bottom: 24px;
    }
    .term_heading h2 {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
    .term_heading p {
        font-size: 16px;
        letter-spacing: 0.8px;
    }
}

.term_container {
    max-width: 1240px;
    width: 100%;
    margin: 42px auto 0;
    display: flex;
    gap: 24px;
    position: relative;
}

@media (max-width: 750px) {
    .term_container {
        max-width: 100%;
        flex-direction: column;
        margin: 40px auto 0;
    }
}

.term_searchbar {
    width: 100%;
    max-width: 292px;
    /* height: 100%; */
    border-radius: 10px;
    background-color: #F3F7FA;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
    padding: 24px 16px;
    position: absolute;
    overflow: hidden;
    top: 0;
    z-index: 1;
}
.term_searchbar-title {
    display: flex;
    color: #4663AC;
    font-size: 16px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}
.searchbar-fixed {
    position: fixed;
    top: 79px;
}
.searchbar-last {
    min-height: fit-content;
    position: absolute;
    top: unset;
    bottom: 0;
}

.term_search {
    position: relative;
    margin-bottom: 16px;
}
.term_search input {
    width: 100%;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.8px;
}
.term_search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}
.term_choices {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 24px;
}
input[type=radio] {
    display: none;
}
.term_choices-label {
    width: 70px;
    border-radius: 10px;
    padding: 12px 0;
    background-color: #ffffff;
    color: #4663AC;
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
    transition: .3s;
    cursor: pointer;
}
.term_choices-label.active {
    background-color: #D2DEFC;
}
.term_choices-label:hover {
    background-color: #D2DEFC;
}

@media (max-width: 750px) {
    .term_searchbar {
        max-width: 100%;
        position: static;
    }
    .term_choices {
        gap: 16px;
    }
    .term_choices-label {
        width: 93px;
    }
}

.term_content {
    border-radius: 10px;
    background-color: #F3F7FA;
    padding: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 316px;
}
@media (max-width: 750px) {
    .term_content {
        margin-left: 0;
    }
}
.term_content-tab {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.term_content-tab.active {
    display: none;
}
.term_content-head {
    display: flex;
    gap: 24px;
}
.term_content-title {
    display: flex;
    padding-left: 8px;
    color: #4663AC;
    font-size: 28px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 1.4px;
    border-left: 4px solid #ffaf58;
    width: 100%;
    max-width: 78px;
    height: 36px;
}
.term_content-title.active {
    display: none;
}
.term_choices-row {
    display: none;
    gap: 8px;
    flex-wrap: wrap;
}
.term_choices-row.active {
    display: flex;
}
.term_choices-row-label {
    width: 66px;
    color: #4663AC;
    font-size: 18px;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.9px;
    display: flex;
    justify-content: center;
    padding: 0 24px;
    background-color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s;
}
.term_choices-row-label:hover {
    background-color: #D2DEFC;
}
.term_choices-row-label.active {
    background-color: #D2DEFC;
}
.term_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.term_item {
    background-color: #ffffff;
    padding: 16px 20px;
    border-radius: 10px;
}
.term_item h3 {
    color: #131E30;
    font-size: 16px;
    font-weight: 700;
    line-height: 200%;
    letter-spacing: 0.8px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #EEEEEE;
    text-align: start;
}
.term_item p {
    color: #131E30;
    font-size: 16px;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.8px;
    text-align: start;
}

@media (max-width: 750px) {
    .term_content {
        padding: 32px 16px;
    }
    .term_content-head {
        flex-direction: column;
    }
    .term_choices-row {
        gap: 15px;
    }
    .term_choices-row-label {
        padding: 0 16px;
        width: 50px;
    }
}