/* サイドバーとメインのラッパー */
.content-area {
  display: flex;
  align-items: stretch; /* 高さを揃える */
  background: #f5f2ed;  /* 全体の背景色 */
  min-height: calc(100vh - 180px); /* ヘッダー＋フッター分 */
}

/* メイン部分 */
.main-content {
  flex: 1;
  padding: 20px;
}



/* =========================
   カテゴリバー（黒帯）
========================= */

.category-bar {
  width: 100%;
  background: #111;
}

.category-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-main > li {
  position: relative;
}

.category-main > li > a {
  display: block;
  padding: 14px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.category-main > li > a:hover {
  text-decoration: underline;
}

/* ▼ ドロップダウン（サブメニュー） */
.category-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 999;
}

.category-sub li {
  list-style: none;
}

.category-sub a {
  display: block;
  padding: 8px 15px;
  font-size: 13px;
  color: #222;
  white-space: nowrap;
}

.category-sub a:hover {
  background: #f2f2f2;
}

/* ▼ ホバーでサブ開く */
.dropdown:hover .category-sub {
  display: block;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9998;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
