.text_box a p::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: auto 4px;
    background: url('https://www.narikoma-group.co.jp/lp/assets/images/page-arrow.svg') no-repeat;
    background-size: contain;
}
.text_box a:hover {
    color: #F9A825;
}

.main_content_list .seo_list .seo_list_detail:hover {
    opacity: 1;
    transform: scale(1);
}


.category_seo_list li a {
    color: #F9A825;
    display: block;
    transition: color 0.5s, background-color 0.5s;
}

.category_seo_list li {
    transition: background 0.5s;
}


.category_seo_list li:hover {
    background: #F9A825;
}
.category_seo_list li:hover a {
    color: #fff;
}


.category-list{
    width: 100%;
    margin: 32px auto 100px auto;
    display: flex;
    justify-content: space-between;
}
.category-list li{
    width: 19%;
    text-align: center;
    font-size: 16px;
    padding: 12px 24px;
    border: 1px solid #F9A825;
    border-radius: 16px;
}

.category-list li a:hover {
    color: #F9A825;
}

.category-list li:hover {
    opacity: 1;
    transform: scale(1);
}


.category-list li a {
    width: 100%;
    height: 100%;
    margin: auto;
    color: #F9A825;
    display: block;
    transition: color 0.5s, background-color 0.5s;
    text-align: center;      /* セントラルキッチン等の改行テキスト用 */
    text-decoration: none;
    display: flex;
    justify-content: center; /* 左右の中央揃え */
    align-items: center; 
    
}

.category-list li {
    transition: background 0.5s;
}


.category-list li:hover {
    background: #F9A825;
}
.category-list li:hover a {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .category-list{
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;    /* 縦並びのボックス全体を画面中央へ */
    }
    .category-list li{
        width: calc(50% - 10px); 
        height: 74px;
        margin: 5px;
    }
}