/* 用語集ページ */
.terms_content .category_list{
    padding:0px;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:20px;
}

.terms_content .category_list li{
    width:22%;
    height:65px;
    list-style-type: none;
}

.terms_content .category_list li .category_gray{
    width:100%;
    height:100%;
}

.terms_content .category_list.alphabet li{
    width:8%;
}

@media screen and (max-width: 820px) {
    .terms_content .category_list li{
        width:45%;
    }

    .terms_content .category_list.alphabet{
        gap:15px;
    }

    .terms_content .category_list.alphabet li{
        width:15%;
        height:45px;
    }
}

.terms_content .category_list.alphabet li .category_gray.no_select{
    color:rgba(207, 206, 206, 1);
}
/* 用語集ページ終了 */