/* ヘッダー全体 */
header {
    position: relative;
    z-index: 100;
    color: #fff;
    justify-content: space-between;
    align-items: center;
}

/* 背景付きのサイトヘッダー */
.site-header {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    /* 背景に半透明オーバーレイを敷く */
    .site-header::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        z-index: 0;
    }

    /* 中身をオーバーレイの上に表示する */
    .site-header > * {
        position: relative;
        z-index: 1;
    }

/* ブランドロゴ部分 */
.brand a {
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.main-nav-wrapper {
    margin-top: 6px;
    margin-left: auto;
}

.main-nav {
    gap: 1.5rem;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
}

    .main-nav a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        padding: 0.3rem 0.5rem;
        transition: all 0.3s ease;
    }

        /* ホバーエフェクト */
        .main-nav a:hover {
            border-bottom: 2px solid #fff;
        }

        /* ログイン／新規登録だけボタン風に */
        .main-nav a[href*="Login"] {
            border: 1px solid #fff;
            border-radius: 4px;
            padding: 0.3rem 0.8rem;
        }

            .main-nav a[href*="Login"]:hover {
                background: #fff;
                color: #000;
            }
