@charset "UTF-8";
/* CSS Document */

body {
    margin:0;
    background-color: #24140e;
}
figure {
    margin: 0;
}
.MainVisual figure img {
    width:100%;
}

/*--- Main Menu --- */

.MainMenu {
    width:1100px;
    margin: 0 auto;
}
.MainMenu ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    margin-top:0;
    margin-bottom: 0;
}
.MainMenu ul li {
    flex-basis: 25%;
    text-align: center;
}
.MainMenu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height: 60px;
    text-decoration: none;
    color: #fff;
    background-color: #24140e;
    transition: .8s;
}
.MainMenu ul li a:hover {
    background-color: #626063;
}