/* ラップ全体 */
.column_side {

}

/* リスト全体 */
.column_side .column-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 親カテゴリ */
.column_side .column-cat-list > li {
  margin: 0.2em 0;
}

/* 親カテゴリリンク */
.column_side .column-cat-list > li > a {
  display: block;
  padding: 0.5em 0.8em;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.column_side .column-cat-list > li > a:hover {
  background: #eee;
  color: #285f2d;
}

/* 子カテゴリリスト（ツリー風にインデント + ガイドライン） */
.column_side .column-cat-list .children {
  list-style: none;
  margin: 0.3em 0 0 1.2em;
  padding-left: 0.8em;
  border-left: 2px solid #ddd;
}

/* 子カテゴリリンク */
.column_side .column-cat-list .children li a {
  display: block;
  padding: 0.3em 0.6em;
  color: #555;
  font-weight: normal;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
	font-weight: 600;
}

.column_side .column-cat-list .children li a:hover {
  background: #f5f5f5;
  color: #0073aa;
}

/* 現在のカテゴリをハイライト */
.column_side .current-cat > a {
  background: #0073aa;
  color: #fff !important;
  border-color: #0073aa;
}
