/* ====================

ヘッダー

==================== */

/* --- Header / Navigation (Desktop First) --- */
.header {
    /* PC表示ではヘッダーの幅を画面いっぱいに設定 */
    display: flex;
    justify-content: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(29, 43, 83, 0.5);
}

/* PC用のナビゲーションコンテナ */
.global-header {
    display: flex;
    backdrop-filter: blur(15px);
    width: 100%;
    height: 80px;
    max-width: 1440px;
    margin: 0 20x;
}

.global-header__container {
    display: flex;
    align-items: center;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    padding: 0 20px;
}

.menu-btn {
    display: none;
}

.logo img {
    width: 200px;
}

/*ナビゲーション*/
.global-nav__menu {
    /*ナビゲーション天地中央揃え*/
    z-index: 999;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: flex-start;
}

/*リストのレイアウト設定*/
.global-nav__menu li {
    list-style: none;
    text-align: center;
}

.global-nav__menu li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.global-nav__menu li a:hover {
    text-decoration: underline;
}

