#top .menu_btn {
    width: 94.66%;
    margin-left: auto;
    margin-right: auto;
}
#top .menu_btn {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 9px;
    margin-top: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
#top .menu_btn li {
    width: 110px;
    height: 80px;
    background-color: #ffffff;
    box-sizing: border-box;
    border: 1px solid #e3dcdc;
    border-radius: 4px;
}
#top .menu_btn li a {
    position: relative;
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 5px;
}
#top .menu_btn li a::after {
    content: "";
    display: flex;
    justify-content:center;
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url('../images/menu_arrow.png');
    width: 10px;
    height: 5px;
    position: absolute;
    bottom: 10%;
    left: 44%;
}
@media screen and (min-width: 768px) {
    #top .menu_btn {
        gap: 21px;
        margin-top: 40px;
        margin-bottom: 40px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    #top .menu_btn li {
        width: 130px;
        height: 80px;
    }
    #top .menu_btn li a {
        font-size: 16px;
        padding-bottom: 9px;
    }
    #top .menu_btn li a::after {
        width: 18px;
        height: 9px;
    }
}