@charset "utf-8";
/* CSS Document */
.category-list-container {
    font-family: "-apple-system, BlinkMacSystemFont", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, sans-serif;
}

.category-list-container li {
    list-style: none;
}

.category-list-container a {
    text-decoration: none;
    color: #000; /* リンクの色 */
}

.category-list-container{
	position: absolute;
    top: 140px;
    z-index: 18;
    display: none;
    width: 100%;
    padding: 20px 0;
    font-size: 14px;
    background: #fbfbfb;
}

.category-list-container__wrap {
    position: relative;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* アイテムを左端から開始 */
}

.category-item {
  width: 33%; /* コンテナの幅の3分の1 */
  box-sizing: border-box; /* パディングとボーダーを幅に含める */
  font-size: 13px;
  text-align: center;
  margin: 1% 0;
}

/* ブランドアイテム内のリンクスタイル */
.category-item a {
  color: rgb(35, 171, 221); /* リンクの色 */
  text-decoration: none; /* 下線を消す */
}

.category-item a:hover {
  text-decoration: underline; /* ホバー時に下線を表示 */
}
