#categoryTitle_innerId {
    display: none;
}

#menuArea .menuItems {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px 0;
    justify-content: space-around;
}

#menuArea .menuItems li {
    width: calc(95% / 6);
}

#menuArea .menuItems li a {
    padding: 10px 15px;
    display: flex;
    list-style-position: outside;
    list-style-type: none;
    background-color: #F0F0F0;
    border-radius: 50vh;
    cursor: pointer;
    box-sizing: border-box;
    color: #333;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    height: 4em;
    text-align: center;
}

#menuArea .menuItems li.current a,
#menuArea .menuItems li a:hover {
    background-color: #144290;
    color: #fff;
}

@media screen and (max-width: 767px) {

    :root {
        interpolate-size: allow-keywords;
    }

    .r08_menus li.current {
        height: auto;
    }

    #menuArea{
        margin-top: 10px;
    }

    #menuArea .menuItems {
        gap: 0;
        flex-direction: column;
    }

    #menuArea .menuItems li {
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease;
        order: 1;
    }

    #menuArea .menuItems li.current {
        order: 0;
        height: auto;
        margin-top: 0px;
    }

    #menuArea li.r0_menus_open {
        height: auto;
        margin-bottom: 5px;
    }

    #menuArea li.r0_menus_open a:after {
        content: ">";
        position: absolute;
        right: 2em;
    }

    #menuArea li.current a:after {
        content: "";
    }

    #menuArea .menuItems li a {
        height: auto;
        font-size: 15px;
        justify-content: flex-start;
        border-radius: initial;
    }

    #menuArea .menuItems li a br {
        display: none;
    }

    .current a {
        position: relative;
    }

    .current a:before {
        content: "▼メニューを開く";
        position: absolute;
        right: 0;
        width: 120px;
        background-color: #e0dede;
        height: auto;
        display: flex;
        height: 4em;
        align-items: center;
        color: #333;
        justify-content: center;
        border-radius: 50px;
    }
}