@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "montserrat", sans-serif;
}
nav{
    width: 80%;
    height: 60px;
    margin: auto;
}   
nav ul{
    display: flex;
    justify-content: space-between;
}

#gnavi{
    overflow: hidden;
    font-size: 15px;
    font-family: "signpainter", "dancing-script", Georgia, "Times New Roman", Times, "ほのかアンティーク", "serif";
    padding-top: 10px;
    list-style-type: none;
}
#gnavi li{
    float: left;
    line-height: 0;
    height: 50px;
    width: 200px;
    text-align: center;
    color: #000000;
    background: url(../images/gnavi_off.png) no-repeat;
    background-size: 200px 40px;
}
#gnavi li:hover{
    float: left;
    line-height: 0;
    height: 50px;
    width: 200px;
    text-align: center;
    color: #000000;
    background: url(../images/gnavi_on.png) no-repeat;
    background-size: 200px 40px;
}
#gnavi li a{
    display: block;
    color: #116124;
    text-decoration: none;
    line-height: 16px;
    padding-top: 3px;
}
#gnavi a:hover{
    color: #000000;
}
#gnavi li strong{
  font-weight: normal;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    display: none;  
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
}
.menu-button{
    display: none;
}
@media(max-width: 760px){
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
}
@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}