/* 背景画像の設定 */
body {
    background-image: url('menu-background.jpg'); /* 背景画像 */
    background-attachment: fixed; /* 背景を固定 */
    background-size: cover; /* 画面サイズに合わせる */
    background-position: center; /* 中央寄せ */
    background-repeat: no-repeat; /* 繰り返しなし */
}

/* 背景透過効果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 背景透過（黒50%） */
    z-index: -1; /* 背景の背面に配置 */
}

/* ヘッダーのスタイル */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* ヘッダーの背景色 */
    display: flex;
    align-items: center;
    z-index: 1000;
    padding: 10px 20px;
}

.header-section {
    flex: 1;
}

.header-section.left {
    display: flex;
    justify-content: flex-start;
}

.header-section.center {
    display: flex;
    justify-content: center;
}

.header-section.right {
    display: flex;
    justify-content: flex-end;
}

.logo img {
    height: 50px; /* ロゴの高さ */
}

.navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navigation ul li {
    margin: 0 15px;
}

.navigation ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

/* メインコンテンツがヘッダーにかぶらないようにする */
body {
    padding-top: 70px; /* ヘッダーの高さ分だけ余白を確保 */
}

.menu {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    background-color: rgba(0, 0, 0, 0.7); /* 背景に透過効果 */
    border-radius: 10px; /* 角を丸める */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* ボックスシャドウ */
}
