.menu{
    width: 100%;
    background: #000;
    position: fixed;
    z-index: 100;
    bottom: -100vh;
    left: 0;
    padding: 0 0 10rem;
    display: flex;
    z-index: 9;
}
.menu.relative-menu{
    z-index: 99;
}
.menu-container{
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-evenly;

}
 .footer-ttl{
    color: #fff;
    font-family: "Kaisei Decol", serif;
    font-size: 2rem;
 }
.menu ul{
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.menu li{
    list-style: none;
    color: white;
    font-size: 1.5rem;
    /* margin: 0.5rem 0; */
}
.sub-list{
    margin-left: 1.4rem;
}
.menu a{
    text-decoration: none;
    color: #fff;
}
.footer-btn-box {
    margin-top: 2rem;
}
.footer-btn{
    background: #fff;
    color: #00507e !important;
    border-radius: 10rem;
}
.footer-btn:hover{
    color: #fff !important;
    background: #00507e;
}
@media(max-width:600px){
}