@charset "UTF-8";
.menu-list ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.menu-list li {
    width: 23%;
    align-items: flex-start;
    list-style-type: none;
    padding: 10px;
    margin: 5px;
    border: 1px solid #000;
}
.menu-list a {
    text-decoration: none;
}
.menu-list a:hover {
    text-decoration: underline;
}
