*{
    box-sizing: border-box;
}
.spu-sideMenu-wrap{
    width: 180px;
    max-width: 280px;
}
#spu-sideMenu{
    width: 100%;
}
#spu-sideMenu label{
    position: relative;
    display: block;
    padding : 15px;
    cursor :pointer;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    border-bottom: 1px solid black;
}
#spu-sideMenu label::after{
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0,50%);
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(-135deg); 
}
#spu-sideMenu label.rotate-arrow::after{
    transform: rotate(45deg); 
}
.acd-list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    margin-bottom: 10px;
}
.acd-list a{
    display: block;
    text-decoration: none;
    font-size: 0.9em;
    padding: 10px;
    color: black;
}
.acd-list > li {
    position: relative;
    border-bottom: 1px solid #cccccc;
}
.acd-list-hv > li:hover{
    background: #eee;
}
.hover-list{
    display: none;
    list-style: none;
    position: absolute;
    top: -13px;
    left: 98%;
    width: 188px;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #d7d7d7;
    z-index: 100;
}
.hover-list a:hover{
    text-decoration: underline;
}
.acd-list > li:hover > ul{
    display: block;
}


/*検索*/
.side-search{
    width: 100%;
    margin-bottom: 20px;
}
.side-search .side-search-inner{
    position: relative;
    display: flex;
    align-items: stretch;
    border: 1px solid rgb(116, 116, 116);
}
.side-search-input{
    position: relative;
    width: calc(100% - 2.2em);
    border: none;
    height: 2.5em;
    padding-left: 10px;
    outline:0;
    font-size: 0.8em;
}
.side-search-btn{
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0,-50%);
    width: 2.2em;
    height: 2.2em;
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
}
.side-search-btn::after{
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: '\f002';
    font-size: 1.2em;
}
/* 価格で絞る */
.price-search{
    width: 100%;
    padding: 10px 0px;
}
.price-search-inner{
    display: flex;
    justify-content: space-between;
}
.price-search-inner span{
    display: block;
}
.price-search-input{
    border: 1px solid rgb(116, 116, 116);
    flex-basis: 60%;
}
.price-kigou{
    width: 20%;
    text-align: center;
}
.price-search-input input{
    width: 100%;
    outline: 0;
    border-radius: 0px;
    border: 0px;
}
.price-range{
    width: 90%;
    margin: 0 auto;
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
}
.price-range-max{
    left: 25px;
}
input[type="range"] {
    -webkit-appearance: none; /* 🚩これ無しだとスタイルがほぼ全く反映されないので注意 */
    appearance: none;
    cursor: pointer; /* カーソルを分かりやすく */
    outline: none; /* スライダーのアウトラインは見た目がキツイので消す */
    height: 1px; /* バーの高さ */
    width: 100%; /* バーの幅 */
    background: #797979; /* バーの背景色 */
  }
  /* WebKit向けのつまみ */
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /*  🚩デフォルトのつまみのスタイルを解除 */
    background: #424242; /* 背景色 */
    width: 10px; /* 幅 */
    height: 10px; /* 高さ */
    border-radius: 10%; /* 円形に */
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15); /* 影 */
  }
  /* Moz向けのつまみ */
  input[type="range"]::-moz-range-thumb {
    background: #53aeff; /* 背景色 */
    width: 10px; /* 幅 */
    height: 10px; /* 高さ */
    border-radius: 10%; /* 円形に */
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15); /* 影 */
    border: none; /* デフォルトの線を消す */
  }
  /* Firefoxで点線が周りに表示されてしまう問題の解消 */
  input[type="range"]::-moz-focus-outer {
    border: 0;
  }
  /* つまみをドラッグしているときのスタイル */
  input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.3);
  }

  .price-search-btn{
      display: block;
      background: none;
      border: 1px solid #424242;
      outline: 0;
      font-size: 0.8em;
      padding: 5px 10px;
      width: 100px;
      margin: 20px auto 10px;
      cursor: pointer;
      transition: all .3s;
  }
  .price-search-btn:hover{
      color: white;
      background: #424242;
  }