
/* ナビゲーションバーのスタイル */
.navibar {
    background-color: #5A4E3C;
    color: white;
    padding: 0.8em 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ナビゲーション内部のコンテナ */
.navi-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5em;
}

/* ロゴリンク */
.logo {
    display: flex;
    align-items: center; /* 縦中央に揃える */
    margin-right: auto;  /* ロゴを左に固定し、メニューと空間を作る */
}

/* ロゴ画像 */
.logo img {
    height: 48px;      /* 適度に視認性を持たせるサイズ */
    width: auto;
    display: block;    /* 余白除去のため */
}

/* ハンバーガーメニュー */
.menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: white;
    line-height: 1;
    transition: transform 0.3s ease;
    margin-left: 1em; /* ロゴとの距離 */
}

/* チェックボックス非表示 */
#menu-toggle {
    display: none;
}

/* ナビリンク */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2em;
    margin: 0;
    padding: 0;
}

/* 各リンクスタイル */
.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em 0;
    position: relative;
    transition: color 0.3s ease;
}

/* ホバーアニメーション */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        flex-direction: column;
        background-color: #5A4E3C;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        max-height: 500px; /* 実際の内容に応じて調整 */
    }

    .nav-links li {
        text-align: center;
        padding: 0.8em 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:first-child {
        border-top: none;
    }

    .logo img {
        height: 42px; /* モバイル時はやや小さめ */
    }

    .nav-container {
        padding: 0.8em 1em;
    }
}