/* ボタンのスタイル */
@media screen and (min-width: 961px){
    .hamburger{
        display: none;
    }
}

.hamburger {
    right: 0;
    margin-top: 25px;
    margin-right: 25px;
    z-index: 100;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    margin-bottom: 5px;
    transition: transform 0.3s;
}

/* メニュー本体のスタイル */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* 最初は右側に隠す */
    width: 100%;
    height: 100vh;
    background-color: #28a9ec; /* 黒の透過背景 */
    transition: right 0.5s ease; /* アニメーションの速度 */
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu ul {
    list-style: none;
    text-align: right;
    margin-bottom: 24px;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 3.5vh;
    display: block;
    margin-top: 3.5vh;
}

.ham-logo{
    height: 8.5vh;
    margin-bottom: 1.75vh;
}

/* メニューが開いた時のクラス */
.nav-menu.is-active {
    right: 0; /* 右からスライドしてくる */
}