.click-filter {
  /* ★ 修正: display: none; を削除 */
  /* display: none; */ 
  
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 998; 
  
  opacity: 0; /* デフォルト透明 */
  background: black;
  
  /* ★ 修正: transition に visibility を追加 */
  transition: opacity 0.3s ease, visibility 0.3s ease; 
  
  cursor: default; 
  
  /* ★ 追加: デフォルトは非表示でクリックもさせない */
  visibility: hidden; 
}
.click-filter.visible {
  /* ★ 修正: display: block; を visibility: visible; に変更 */
  /* display: block; */
  visibility: visible;
  
  opacity: 0.5; /* 半透明 */
}

.sidemenubar-contaner {
  /* padding-top: 100px; */
  position: relative;   
  width: 280px;
  flex-shrink: 0;
  overflow: visible; 
  transition: transform 0.2s ease, visibility 0.2s ease, top 0.2s ease, height 0.2s ease;
  z-index: 999; 
  pointer-events: auto;
}
.sidemenubar-contaner.shifted {
  /* ★ 修正: navbar が隠れたら高さを 100vh に */
  height: 100vh;
  /* (top: 0 は fixed ではないため不要) */
}

/* ★ 以下のイベント透過ルールは メディアクエリ (スマホ版) に移動 */
/*
.sidemenubar-contaner:not(:has(> #sidemenubar.visible)) { ... }
.sidemenubar-contaner:not(:has(> #sidemenubar.visible)) .hamburgermenu { ... }
*/


.hamburgermenu {
  /* position: fixed; (変更) ↓ */
  position: absolute; 
  
  /* top: 100px; (変更) ↓ */
  /* 親コンテナ(.sidemenubar-contaner)の top: 81px からの相対位置 */
  top: 19px;  /* 100px (元の位置) - 81px (親のtop) = 19px */
  left: 20px;
  
  z-index: 1000;
  
  /* ★ 追加: top の変化をアニメーションさせる */
  transition: top 0.3s ease;
  
  /* ★ PC版デフォルト: 非表示 */
  display: none;
}
.sidemenubar-contaner.shifted .hamburgermenu {
  /* 親が top: 0 になったので、画面上端から 20px の位置にする */
  top: 20px;
}

.menu-icon {
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: rgb(0, 255, 0);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2) {
  top: 10px;
}

.menu-icon span:nth-child(3) {
  top: 20px;
}

.menu-icon.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);/* 斜めに回転して「／」に近い角度 */
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
  left: -30px;
}

.menu-icon.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}





/* サイドバー本体 (中身) */
.sidemenubar {
  margin-bottom: 40px;
  z-index: 999;
  background: #000000;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-right: 1px solid rgba(0, 255, 0, 0.5); 
  /* border-top: 1px solid rgb(0, 255, 0); */
  /* border-bottom: 1px solid rgb(0, 255, 0); */
  box-shadow: 10px 0 15px -10px rgba(0, 255, 0, 0.2);
  color: #f0f0f0;
  width: 100%;
  height: 100%;
  /* padding: 20px; */
  /* padding-top: 60px; */
  transform: translateX(0);

  /* ★ 修正: overflow-y: auto; から変更 */
  overflow: hidden; /* この要素自体はスクロールさせない */
  overscroll-behavior: contain;

  overscroll-behavior: contain;
  box-sizing: border-box;
  left: 0;
  width: 280px;
  transition: top 0.3s ease, height 0.3s ease, transform 0.3s ease, width 0.3s ease;

  /* ★ PC版デフォルト: 常時表示 */
  transform: translateX(0);
  
  /* ★ 追加: フレックスコンテナ化 (縦積み) */
  display: flex;
  flex-direction: column;
}

/* ★ .visible ルールは メディアクエリ (スマホ版) に移動 */
/*
.sidemenubar.visible{
  transform: translateX(0);
  width: 280px;
}
*/
.sidemenubar.shifted {
  top: 40px;
  height: calc(100vh - 40px);
}














.search-box {
  display: flex;
}

.search-box input {
  background-color: #333;
  border: 1px solid rgba(0, 255, 0, 0.5);
  color: #f0f0f0;
}

/* --- カテゴリ選択 --- */
.category-select {
  margin-top: 40px;
  margin-bottom: 20px;
  /* ★ この要素はスクロールさせないので flex-shrink: 0 は不要 */
  margin-left: 20px;
  margin-right: 20px;
}

.category-select label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  color: rgb(0, 255, 0);
}

.category-select select {
  width: 100%;
  padding: 8px;
  font-size: 1em;

  /* --- テーマの適用 (ダークなプルダウン) --- */
  background-color: #333;
  color: #f0f0f0;
  border: 1px solid rgba(0, 255, 0, 0.5); 
  border-radius: 4px;
}


/* --- 投稿ツリーリスト --- */
.tree-list {
  border-top: 1px solid rgba(0, 255, 0, 0.3);
  padding-top: 15px;

  /* ★ 追加: スクロールバーを適用 */
  flex-grow: 1; /* 残りの高さをすべて占有 */
  overflow-y: auto; /* 縦スクロールを有効化 */
  overflow-x: hidden; /* 横スクロールを無効化 */

  overscroll-behavior: contain;
  
  /* ★ 修正: スクロールバーのための余白 */
  padding-left: 10px; 
  padding-right: 10px;
}

.tree-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tree-list .category-title {
  font-size: 1.1em;
  font-weight: bold;
  color: rgb(0, 255, 0);
  margin-top: 15px;
  margin-bottom: 10px;
}

.tree-list .category-tree:first-child .category-title {
  margin-top: 0;
}

.tree-list a {
  font-size: 15px;
  list-style: none;
  text-decoration: none;
  color: #f0f0f0;
  display: block;
  padding: 6px 0 6px 15px;
  margin: 0;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.tree-list a:hover {
  color: #1a1a1a;
  background-color: rgb(0, 255, 0);
}


/* ■■■ スマホ版レイアウト (ブレークポイント 1024px) ■■■ */
@media screen and (max-width: 767px) {

  /* (A) サイドバーコンテナを fixed に戻す */
.sidemenubar-contaner {
    position: fixed;
    top: 60px;
    max-height: 600px; 
    bottom: 0; 
    width: auto; 
    height: auto; 
    flex-shrink: 1;
    overflow: visible; 
    
    /* ★ 修正: z-index を 999 に統一 */
    z-index: 999; 
  }
  .sidemenubar-contaner.shifted {
    /* ★ 修正: スマホ版の shifted スタイル */
    top: 0; 
    height: 100vh;
    max-height: none;
  }

  /* (B) ハンバーガーメニューを表示 */
  .hamburgermenu {
    display: block; 
    position: absolute; /* (元の指定に戻す) */
    top: 19px; 
    left: 20px;
  }
  .sidemenubar-contaner.shifted .hamburgermenu {
    top: 20px;
  }

  /* (C) サイドバー本体を初期非表示 (画面外) に */
  .sidemenubar {
    transform: translateX(-100%);
    height: 100%; /* 親コンテナ (fixed) に追従 */
    width: 280px;
  }
  
  /* (D) .visible クラスを有効化 */
  .sidemenubar.visible {
    transform: translateX(0);
  }

  /* (E) イベント透過をスマホ版のみに限定 */
  .sidemenubar-contaner:not(:has(> #sidemenubar.visible)) {
    pointer-events: none;
  }
  .sidemenubar-contaner:not(:has(> #sidemenubar.visible)) .hamburgermenu {
    pointer-events: auto;
    cursor: pointer;
  }
  
  /* (F) .sidemenubar.shifted スタイルを適用 (元のCSSにあったもの) */
  .sidemenubar.shifted {
    top: 40px;
    height: calc(100vh - 40px);
  }
}