/* 2018/6/23 css追記 selectのItem調整のためclassにselect追加float調整　html　Line:70 css Line:13 */
.category-list li, .brand-list{
  float: left;
  width: 28.8%;
  height: 60px;
  list-style: none;
  font-size: 11px;
  font-family: George;
  margin-bottom: 20px;
  clear: none !important;
}
/*.category-list.select li:nth-child(10){
  float: initial;
}*/
.brand-list {
  margin-bottom: 60px;
}

h2.display_on img {
  position: relative;
  bottom: 15px;
}
/*.category-list > li:nth-child(2),.category-list > li:nth-child(5), .category-list > li:nth-child(8), .category-list > li:nth-child(11), .category-list > li:nth-child(14), .category-list > li:nth-child(17), .category-list > li:nth-child(20), ul.brand-list:nth-child(3), ul.brand-list:nth-child(6), ul.brand-list:nth-child(9), ul.brand-list:nth-child(12), ul.brand-list:nth-child(15), ul.brand-list:nth-child(18), ul.brand-list:nth-child(21) { 
    margin: 0px 6.8%;
}*/


#contents > div:nth-child(1) > h2:nth-child(1) {
  display: none;
}

ul.brand-list > li:nth-child(1) > a > img {
    float: left;
   margin-top: 10px;
}
ul.brand-list > li:nth-child(2) > a > img {
    float: right;

    margin-top: 5px;

}

/*ul.brand-list > li:nth-child(1) > a > img {
    float: left;
    width: 41px;
   margin-top: 10px;
   margin-left: 30px;
}*/
/*ul.brand-list > li:nth-child(2) > a > img {
    float: right;
    width: 34px;
    margin-top: 5px;
   margin-right: 30px;
}*/

p.sort {
	font-size: 16px;
}

.column-box {
	display: flex;
 	 justify-content: space-between;
  	flex-wrap: wrap;
}
.column-box--3return::after {
  content:"";
  display: block;
  width: 28.8%;
}
.column-box__3col {
  width: 28.8%;
}
/* 2026/4/8 css追記 時計ブランドのときだけ */
/* ===== グリッド全体の設定 ===== */
.brand-grid-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2.4%; /* 縦の余白20px、横の余白を調整 */
  padding: 0;
  list-style: none;
}

/* ===== 各カード（3カラム） ===== */
.brand-grid-card {
  width: 31.7%; /* (100% - 2.4%*2) / 3 = 約31.7% */
  margin-bottom: 30px;
  box-sizing: border-box;
}

/* スマホ表示（1カラム or 2カラム） */
@media screen and (max-width: 768px) {
  .brand-grid-card {
    width: 48.5%; /* スマホでは2カラム */
  }
}

/* ===== カード内部のレイアウト ===== */
.brand-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-logo-box {
  width: 100%;
  margin-bottom: 10px;
}

.brand-logo-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Ladies / Mens ボタンの横並び */
.brand-button-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 5px;
}

.brand-btn {
  flex: 1;
}

.brand-btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 古いfloat設定を無効化（干渉防止） ===== */
.category-list li, 
.brand-list, 
.brand-grid-card {
  float: none !important;
}

/* ソートセクション全体のコンテナ */
.sort-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9; /* 軽いグレーの背景で区切りを明確に */
    border-radius: 8px;
}

/* ボタンの基本スタイル */
.sort-container .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* ホバー時の挙動 */
.sort-container .button:hover {
    background-color: #f0f0f0;
    border-color: #bbb;
    color: #333;
}

/* 現在選択されているボタン（アクティブ状態） */
.sort-container .button.active {
    background-color: #333; /* 濃いグレーまたはブランドカラー */
    color: #fff;
    border-color: #333;
    font-weight: bold;
    pointer-events: none; /* 選択中を再度押せないようにする */
}

/* スマホ表示向けの調整 */
@media screen and (max-width: 768px) {
    .sort-container {
        justify-content: space-around;
        padding: 10px;
    }
    .sort-container .button {
        flex: 1; /* ボタンを均等に横並びにする */
        font-size: 12px;
        padding: 10px 5px;
        min-width: 80px;
    }
}