/* experiments.css (全置き換え・完成版) */

/* =========================================== */
/* 1. 共通レイアウト (PC: Flex, スマホ: Fixed) */
/* =========================================== */

/* --- ヘッダー/トップバー --- */
.experiments-navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  transition: transform 0.3s ease;
}

.experiments-navbar.hide {
  transform: translateY(-100%);
}



.sidemenubar-contents{
  overflow-y: auto;
  overscroll-behavior: contain;
  flex-grow: 1;
  padding: 20px;
  padding-top: 60px;
}



/* --- ページ全体の外枠 (PC版: Flexコンテナ) --- */
.experiments-home {
  background: #020405;
  display: flex;
  min-height: 100vh;
}


/* --- メインコンテンツ コンテナ (PC版: スクロール領域) --- */
.experiments-contaner {
  padding-top: 80px;
  padding-bottom: 80px;
  /* background: #202122; */
  min-height: 600px; /* (元の指定を維持) */
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  flex-grow: 1;
}

/* ★ 追加: .shifted 時のメインコンテナ */
.experiments-contaner.shifted {
  height: 100vh;
}

/* メインコンテンツ (投稿リストの背景を削除) */
.experiments-main-content {
  /* experiments.php 内の .experiments-main-content を指定 */
  background-color: transparent !important;
  pointer-events: auto;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: inherit !important;
}

.experiments-main-content.overlay-active {
  /* クリックイベントを無効化 */
  pointer-events: none;

  /* オプション: 見た目を少し暗くする */
  /* filter: brightness(0.7); */
  /* transition: filter 0.3s ease; */
}

/* フッターのマージン */
.experiments-main-content .site-footer {
  margin-top: 40px;
}


/* =========================================== */
/* 2. experiments.php 固有のサイドバー内部スタイル */
/* =========================================== */

/* --- サイドバー中身 (共通のダークテーマ) --- */
/* (元の .sidebar スタイルは experiments_sidemenu.php 側で
   .sidemenubar (sidemenubar.css) を使っているため不要かもしれません。
   もし experiments_sidemenu.php が .sidebar クラスを
   使っている場合は残してください) */
.sidebar {
  z-index: 999;
  background: #1a1a1a;
  border-right: 1px solid rgb(0, 255, 0);
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
  color: #f0f0f0;
  width: 100%;
  height: 100%;
  padding: 20px;
  margin-top: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-sizing: border-box;
}

/* --- カテゴリ一覧 --- */
.experiments-sidebar-categories {
  border: 1px solid rgba(0, 255, 0, 0.5); 
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
  padding: 20px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.categorieslist-label {
  display: block;
  font-weight: bold;
  font-size: 1.2em;
  cursor: pointer;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: rgb(0, 255, 0);
  border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.categories-collapsible-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 5000px; /* ★ (1) リスト全体が収まる十分な高さ (例: 5000px) に増やす */
  overflow: hidden;   /* ★ (2) 必ず 'hidden' に戻す */
  transition: max-height 0.4s ease-out;
}

.categories-collapsible-list.collapsed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in;
}

.categories-collapsible-list strong {
  display: block;
  font-size: 1.1em;
  /* margin-top: 15px; ← 削除 */
  font-weight: bold;
  color: rgb(0, 255, 0);
}

.categories-collapsible-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;
}

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

.categories-collapsible-list a.category-all {
  font-weight: bold;
  padding-left: 10px;
  color: rgb(0, 255, 0);
}

.categories-collapsible-list a.category-all:hover {
  color: #1a1a1a;
}

/* --- タグ一覧 --- */
.experiments-sidebar-tags {
  border: 1px solid rgba(0, 255, 0, 0.5); 
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
  padding: 20px;
  color: #f0f0f0;
}

.taglist-label {
  display: block;
  font-weight: bold;
  font-size: 1.2em;
  cursor: pointer;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: rgb(0, 255, 0);
  border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.tags-collapsible-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 5000px;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.tags-collapsible-list.collapsed {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in;
}

.tag-search-container {
  text-align: center;
  margin-bottom: 20px;
}

.tag-search-button {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgb(0, 255, 0);
  color: #111;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.tag-search-button:hover {
  background-color: #00e600;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

.tags-collapsible-list strong {
  display: block;
  font-size: 1.1em;
  /* margin-top: 15px; ← 削除 */
  font-weight: bold;
  color: rgb(0, 255, 0);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0;
}

.tag {
  cursor: pointer;
}

.tag input[type="checkbox"] {
  display: none;
}

.tag span {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(0, 255, 0, 0.5);
  border-radius: 10px;
  background: #333;
  color: #f0f0f0;
  transition: background-color 0.4s, color 0.4s;
}

.tag input[type="checkbox"]:checked+span {
  background-color: rgb(0, 255, 0);
  border-color: rgb(0, 255, 0);
  color: #111;
}

/* =========================================== */
/* 3. スマホ用の調整 (ブレークポイント 1024px) */
/* =========================================== */

/* ★ 修正: ブレークポイントを sidemenubar.css (1024px) と合わせる */
@media (max-width: 1024px) { 

  /* (1) Flexレイアウトを解除 */
  .experiments-home {
    /* display: block; */
    padding-top: 0; /* fixed な navbar のため余白不要 */
  }

  /* (2) PC版サイドバーの高さ指定をリセット */
  .experiments-home .sidemenubar-contaner,
  .experiments-home .sidemenubar-contaner.shifted {
    height: auto; /* sidemenubar.css の fixed 設定に従う */
  }

  /* (3) メインコンテナの高さと余白をスマホ版に戻す */
  .experiments-contaner,
  .experiments-contaner.shifted {
    /* height: 100vh; */ /* メインスクロール領域 */
    padding-top: 80px; /* navbar の高さ */
    flex-grow: 0; /* Flexアイテムではなくなる */
    min-height: 0;
    
    /* min-height をリセット */
    min-height: 0; 
  }
  .experiments-contaner.shifted {
    padding-top: 0; /* .shifted 時は navbar が隠れる */
  }

  /* (4) 元々あったスマホ用調整 (767px の内容をこちらに統合) */
  .experiments-contaner {
    padding-left: 15px;
    padding-right: 15px;
  }
}



@media (max-width: 767px) { 

  /* (1) Flexレイアウトを解除 */
  .experiments-home {
    display: block; /* ★ コメントアウトを解除 */
    padding-top: 0; /* fixed な navbar のため余白不要 */
  }

  /* (2) PC版サイドバーの高さ指定をリセット */
  .experiments-home .sidemenubar-contaner,
  .experiments-home .sidemenubar-contaner.shifted {
    height: auto; /* sidemenubar.css の fixed 設定に従う */
  }

  /* (3) メインコンテナの高さと余白をスマホ版に戻す */
  .experiments-contaner,
  .experiments-contaner.shifted {
/* height: 100vh; */ /* ★ 問題の原因だったため削除またはコメントアウト */   
 padding-top: 80px; /* navbar の高さ */
    flex-grow: 0; /* Flexアイテムではなくなる */
    min-height: 0;
  }
  .experiments-contaner.shifted {
    padding-top: 0; /* .shifted 時は navbar が隠れる */
  }

  /* (4) 元々あったスマホ用調整 (767px の内容をこちらに統合) */
  .experiments-contaner {
    padding-left: 15px;
    padding-right: 15px;
  }
}