.top_search_category {
    font-family: "Zen Kaku Gothic New", sans-serif;
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
}

.top_search_category_list {
    overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none;
}

.top_search_category_wrapper {
    width: 100%;
    padding: 2rem 0;
    background-color: #F9F9F9;
}

.top_search_category_list ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 5%;
}

.top_search_category_list ul li a {
    display: inline-block;
    line-height: 100%;
    color: #2F1B0099;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: none;
}


.top_search_category_list ul li a:hover {
    color: #FC6203;
    opacity: 1;
}

@media (max-width: 1200px) {
    .top_search_category_list {
        margin: 0 auto;
    }

    .top_search_category_wrapper {
        padding: 1rem;
    }

    .top_search_category_list ul li a {
        font-size: 1.4rem;
    }
}
