@charset "utf-8";

@media (min-width:861px) {
    #gnav { display: none;}
}

@media (max-width:860px) {
    body { padding-top:50px;}
}
.menu-btn {
    position: fixed;
    top: 0;
    left:0;
    background-color: #08756f;
    color: #fff;
    border: none;
    display: block;
    padding:10px 0;
    text-align: center;
    width:100%;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
}

.menu-btn:focus {
    outline: none;
}

/* グローバルメニューのスタイル */
.global-menu {
    position: fixed;
    top: -100%;
    /* 初期位置を画面外上部に配置 */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 183, 175, 0.9);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: top 0.5s ease;
    /* アニメーションの滑らかさを設定 */
}

.global-menu.show {
    top: 0;
    /* 表示時に画面上部にスライドダウン */
}

.global-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.global-menu li {
    margin: 15px 0;
}

.global-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s;
}

.global-menu a:hover {
    color: #dedede;
}