/* レイアウト - 左メニューとコンテナ */

/* 全体コンテナ */
.container-with-sidebar {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

/* 左サイドバーメニュー */
.sidebar-menu {
    width: 320px;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: none;
    border-right: 1px solid #000;
    z-index: 1000;
    will-change: transform;
}

/* サイドバー内スクロールラッパー */
.sidebar-nav-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1rem;
}

/* サイドバータイトル（クリック可能） */
.sidebar-title {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #000;
}

.sidebar-title:hover {
    text-decoration: underline;
}

.sidebar-header {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #000;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav>li {
    margin-bottom: 0.5rem;
}

/* メインメニュー項目（h2レベル） */
.sidebar-nav>li>a {
    display: block;
    padding: 0.6rem 0.75rem;
    color: #333;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    font-weight: bold;
    font-size: 0.9rem;
}

.sidebar-nav>li>a:hover {
    background-color: transparent;
    text-decoration: underline;
}

.sidebar-nav>li>a:active,
.sidebar-nav>li>a:focus {
    background-color: transparent;
    text-decoration: underline;
}

/* サブメニュー（h3レベル） */
.sidebar-nav .submenu {
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0.5rem 1rem;
}

.sidebar-nav .submenu li {
    margin-bottom: 0.3rem;
}

.sidebar-nav .submenu a {
    display: block;
    padding: 0.4rem 0.75rem;
    color: #555;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: normal;
}

.sidebar-nav .submenu a:hover {
    background-color: #e9e9e9;
    border-left-color: #999;
    color: #333;
}

/* 現在位置ハイライト */
.sidebar-nav>li>a.active {
    background-color: transparent;
    font-weight: bold;
    text-decoration: underline;
}

.sidebar-nav .submenu a.active {
    background-color: transparent;
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

/* メインコンテンツエリア */
.main-content {
    margin-left: 340px;
    padding: 2rem 3rem;
    flex: 1;
    min-width: 0;
}

/* ============================================
   統一ナビゲーション用スタイル（折りたたみ式）
   ============================================ */

/* 統一ナビゲーションリスト */
.sidebar-nav-unified {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* トップページリンク */
.sidebar-nav-unified .nav-top {
    margin-bottom: 1rem;
}

.sidebar-nav-unified .nav-top a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.sidebar-nav-unified .nav-top a:hover {
    text-decoration: underline;
}

.sidebar-nav-unified .nav-top.current-page a {
    border-left-color: #333;
    background-color: #f5f5f5;
}

/* 章レベル */
.sidebar-nav-unified .nav-chapter {
    margin-bottom: 0.5rem;
}

/* 章タイトル（リンク） */
.sidebar-nav-unified a.chapter-title {
    display: block;
    padding: 0.5rem 0.75rem;
    font-weight: bold;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    background-color: #f8f8f8;
    border-left: 3px solid #ccc;
}

.sidebar-nav-unified a.chapter-title:hover {
    text-decoration: underline;
    background-color: #f0f0f0;
}

.sidebar-nav-unified .nav-chapter.current-chapter a.chapter-title {
    border-left-color: #333;
    background-color: #eee;
}

/* 章内のセクションリスト（現在の章のみ表示） */
.sidebar-nav-unified .chapter-sections {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 3px solid #333;
    background-color: #fafafa;
}

.sidebar-nav-unified .chapter-sections > li {
    margin: 0;
}

.sidebar-nav-unified .chapter-sections > li > a {
    display: block;
    padding: 0.4rem 0.75rem 0.4rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    transition: background-color 0.15s ease;
}

.sidebar-nav-unified .chapter-sections > li > a:hover {
    background-color: #f0f0f0;
    text-decoration: underline;
}

/* サブセクション */
.sidebar-nav-unified .section-subs {
    list-style: none;
    padding: 0;
    margin: 0 0 0.25rem 0;
}

.sidebar-nav-unified .section-subs li a {
    display: block;
    padding: 0.25rem 0.75rem 0.25rem 2rem;
    color: #555;
    text-decoration: none;
    font-size: 0.75rem;
}

.sidebar-nav-unified .section-subs li a:hover {
    background-color: #f0f0f0;
    text-decoration: underline;
}

/* 外部リンク */
.sidebar-nav-unified .nav-external {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.sidebar-nav-unified .nav-external a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
}

.sidebar-nav-unified .nav-external a:hover {
    text-decoration: underline;
    color: #333;
}
