  #topRankng .slick-prev, #topRankng .slick-next{
    background-color: rgba(75,75,75,0.8);
  }
      .tab-area{
width: 100%;
margin: 0 auto;
}
.tab-btn{
display:none; /*タブの切り替えを制御するラジオボタンを非表示に*/
}
.tab-list-wrap{
padding:0; /*デフォルトの値をクリア*/
margin: 0; /*デフォルトの値をクリア*/
list-style-type:none; /*デフォルトの値をクリア*/
border-top: 2px solid #333;
border-bottom: 2px solid #333;
display: flex;
  justify-content: center;
flex-wrap: nowrap;
white-space: nowrap;
overflow-x: scroll;
 /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
 -ms-overflow-style: none;
/*Firefoxへの対応*/
scrollbar-width: none;
}
.tab-content-warning {
display: none;
}
@media screen and (max-width: 767px){
.tab-content-warning {
  display: block;
}
}
  
/*Google Chrome、Safariへの対応*/
.tab-list-wrap::-webkit-scrollbar{
display: none;
}

.tab-list-wrap > li{
  padding: 10px 5px;
  display: inline-block;
min-width: max-content;
}

.tab-list{
display:block;
padding: 4px 15px 6px;
text-align:center;
border-radius: 4px 4px 0 0;
background: #f8f8f8;
border-radius: 50px;
cursor:pointer; /*オンマウス時にカーソルを指の形に*/
font-size: 14px;
min-width: 70px;
}
  @media screen and (max-width: 767px){
    .tab-list-wrap{
      display: block;
    }
    .tab-list-wrap > li{
      min-width: none;
      width: auto;
      padding: 10px 3px;
    }
    .tab-list{
    background: #f8f8f8;
    font-size: 13px;
      min-width: 80px;
    }
  }

#tab-btn1:checked ~ .tab-list-wrap #tab-list1,
#tab-btn2:checked ~ .tab-list-wrap #tab-list2,
#tab-btn3:checked ~ .tab-list-wrap #tab-list3,
#tab-btn4:checked ~ .tab-list-wrap #tab-list4,
#tab-btn5:checked ~ .tab-list-wrap #tab-list5,
#tab-btn6:checked ~ .tab-list-wrap #tab-list6,
#tab-btn7:checked ~ .tab-list-wrap #tab-list7,
#tab-btn8:checked ~ .tab-list-wrap #tab-list8{
background:#333; /*対応するボタンにチェックが入ったときに背景を#ffffff（白）に*/
color: #fff;
}
.tab-content{
padding:20px 0px;
display:none; /*初期状態を非表示に*/
}
#tab-btn1:checked ~ .tab-content-wrap #tab-content1,
#tab-btn2:checked ~ .tab-content-wrap #tab-content2,
#tab-btn3:checked ~ .tab-content-wrap #tab-content3,
#tab-btn4:checked ~ .tab-content-wrap #tab-content4,
#tab-btn5:checked ~ .tab-content-wrap #tab-content5,
#tab-btn6:checked ~ .tab-content-wrap #tab-content6,
#tab-btn7:checked ~ .tab-content-wrap #tab-content7,
#tab-btn8:checked ~ .tab-content-wrap #tab-content8{
display: block;/*対応するボタンにチェックが入ったときに表示*/
}



.slick-prev::before, .slick-next::before {
font-family: 'Font Awesome 5 Free';
font-weight: bold;
}
.slick-prev , .slick-next{
width: 45px;
z-index: 2;
height: 100%;
}
.slick-prev{
  left: 0px;
}
.slick-next{
  right: 0px;
}
.slick-prev::before{
  content: "\f104";
  background-color: rgba(75,75,75,0.8);
  width: 30px;
  height: 30px;
  display: block;
  padding: 5px;
  position: absolute;
  left: 0;
}
.slick-next::before{
  content: "\f105";
  background-color: rgba(75,75,75,0.8);
  width: 30px;
  height: 30px;
  display: block;
  padding: 5px;
  position: absolute;
  right: 0;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before{
  color: #fff;
background-color: rgba(75,75,75,0.8);
}

  .search_form_area {
    background-color: #fff;
    max-width: 880px;
    padding: 50px;
  }


  .search_form_area dt {
    padding-bottom: 5px;
	  margin-bottom: 10px;
	  border-bottom: 2px solid #333;
  }


  .search_form_area button[type=submit] {
    background-color: #65605b;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 0.875em;
    letter-spacing: 0.1em;
    width: 100%;
    max-width: 200px;
    border-radius: 3px;
    margin-right: 20px;
  }

  .search_keyword label {
    display: block;
    position: relative;
  }
  .search_keyword i{
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
  }

  .search_category dd {
    /*display: flex;
    gap: 15px;*/
	  display: block;
  }

  .search_category dd .select_column {
    width: 100%;
	  margin-bottom: 10px;
  }

  .search_category dd .select {
    position: relative;
    width: 100%;
  }

  .search_category dd .select::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: translateY(-50%) rotate(45deg);
  }

  .search_category dd select option:first-child,
  .unselected {
    color: #aaa;
  }

  .search_price input {
    max-width: 200px;
  }

  @media screen and (max-width: 767px){
      .search_form_area{
          padding: 15px;
      }
      .search_category dd{
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 0px 5px;
      }
      .search_price dd{
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 0px 5px;
      }
  }

/* 価格スライダー */
.noUi-horizontal{
	height: 5px!important;
}
.noUi-target {
  background: #ddd;
  border-radius: 0px;
  border: none;
  box-shadow: none;
  width: 100%;
  max-width: 430px;
	margin-bottom: 20px;
}
.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  top: -7px;
  border-radius: 60px;
	border: 1px solid #FF9300;
  background: #FF9300;
  box-shadow: none;
}
.noUi-connect {
  background: #FF9300;
}
.noUi-handle::after, .noUi-handle::before{
	display: none;
}

.noUi-handle.noUi-handle-lower{
	right: -19px;
}
.noUi-handle.noUi-handle-upper{
	right: 0px;
}

@media screen and (max-width: 767px){
	.noUi-target {
		width: 80%;
		max-width: none;
		margin-left: auto;
		margin-right: auto;
	}
}

  .topCatTitleArea{
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
	margin-bottom: 30px;
}
.topCatTitleArea:after{
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    position: relative;
    bottom: -10px;
    border-top: 1px solid #333;
}
.topCatTitle{
    font-size: 21px;
    font-weight: bold;
	position: relative;
	display: inline-block;
	padding-left: 35px;
}
.topCatTitle::before {
    content: "";
    display: inline-block;
    position: absolute;
    background-image: url('https://bedroom.itembox.design/item/img/header/mega_bed.png');
    width: 30px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
  	transform: translateY(-50%);
  	left: 0px;
}
.topCatTitle.topCatTitleMat:before{
	background-image: url('https://bedroom.itembox.design/item/img/header/mega_mattress.png');
}
.topCatTitle.topCatTitleShingu:before{
	background-image: url('https://bedroom.itembox.design/item/img/header/mega_shingu.png');
}
.topCatTitle.topCatTitleRanking:before{
	background-image: url('https://bedroom.itembox.design/item/img/header/mega_ranking.png');
}
.topCatTitle.topCatTitleBrand:before{
	background-image: url('https://bedroom.itembox.design/item/img/header/mega_brand.png');
}
.topCatTitle.topCatTitleSpecial:before{
	background-image: url('https://bedroom.itembox.design/item/img/header/mega_special.png');
}
.topCatTitle.topCatTitleContents:before{
	background-image: url('https://bedroom.itembox.design/item/img/header/mega_contents.png');
}
.topCatTitleArea span{
    font-size: 14px;
    font-weight: bold;
	display: block;
    line-height: 1em;
    margin-bottom: 5px;
}
#topRanking .topCatTitleArea{
    border-bottom: none;
}
#topRanking .topCatTitleArea:after{
    display: none;
}

.topCatList{
    margin-left: -10px;
    margin-right: -10px;
    letter-spacing: -0.4em;
    text-align: center;
}
.topCatList > li {
    letter-spacing: normal;
    padding: 0px 10px 20px;
    display: inline-block;
}
.topCatList > li a{
    display: block;
    text-align: center;
}
.topCatList > li a span{
    display: block;
    font-size: 0.875em;
}
@media screen and (max-width: 767px){
    .topCatList > li{
        width: 33.3333333333%
    }
	.topCatList.topCatBrandList > li{
        width: 33.3333333333%
    }
}

.topCatBtn{
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    color: #fff;
    background-color: #FF9300;
    border: 1px solid #FF9300;
    transition: all 0.3s;
    width: 100%;
    max-width: 280px;
	position: relative;
}
.topCatBtn:hover{
    background-color: #fff;
    color: #FF9300;
}
.topCatBtn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.topCatBtn:hover:before{
    border-color: #FF9300;
}




#topColumn{
    background-color: #f9f9f9;
}
#topFeature{
    background-color: #ECF2F4;
    border-bottom: 10px solid #62AFBD;
}
.topFeatureList{
    margin-left: -10px;
    margin-right: -10px;
}
.topFeatureList > li{
    padding: 0px 10px 20px;
}
@media screen and (max-width: 767px){		
    .topFeatureList{
        margin-left: -5px;
        margin-right: -5px;
    }
    .topFeatureList > li{
        padding: 0px 5px 10px;
    }
}




.topShowroomList{
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}
.topShowroomListEven > li:last-child{
    order: 1;
}
.topShowroomListEven > li:first-child{
    order: 2;
}
.topShowroomList > li{
    width: 50%;
}
.topShowroomList > li:last-child{
    padding: 10px 20px;
}
.topShowroomInfoTitle{
    font-size: 1.25em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
@media screen and (max-width: 991px){
    .topShowroomList{
        margin-left: -15px;
        margin-right: -15px;	
        flex-direction: column;
    }
    .topShowroomList > li{
        width: 100%;
    }

    .topShowroomList > li:last-child{
        padding: 20px 15px;
    }
    .topShowroomListEven > li:last-child{
        order: 2;
    }
    .topShowroomListEven > li:first-child{
        order: 1;
    }
}
.topShowroomTitle{
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}
#topShowroom .showroom_contact_time {
    background-color: #f8f8f8;
    padding: 15px 20px 15px;
}
#topShowroom .showroom_contact_area {
    max-width: 560px;
    margin: 0 auto 30px;
    border: 3px solid #ccc;
    padding: 30px 30px;
}
@media screen and (max-width: 767px){
    #topShowroom .showroom_contact_area {
        padding: 25px 20px;
    }
}
.fs-body-category-testpage .fs-c-productList{
    display: none!important;
}