@charset "UTF-8";
/* CSS Document */


/*-----------
product list
-----------*/

.contents__noresult {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 100%;
}

.contents__noresult .contents_box{
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 100%;
}

.contents_box h3{
  width: fit-content;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto 20px;
}


/* product search */

.product_list{
  position: relative;
  padding: 40px 0 80px;
}

.product_list_main_features{
  position: relative;
  padding: 100px 0 80px;
}

.contents_box .product_list_main_features h2 {
  margin: 0 auto 70px;
}

.contents_box .product_list_main_features .product_info .product_name p {
  margin-bottom: 15px;
}

.contents_box .product_list_main_features .product_info .product_color li img {
  border: solid 2px #fff;
}



/*product_list_detail_half*/

.product_list_detail_half{
  margin-bottom: 40px;
  display: flex;
  flex-wrap:wrap;
}

.product_list_detail_half > li{
  width: 50%;
  display: flex;
}

.product_list_detail_half > li:first-child > div,
.product_list_detail_half > li:nth-child(2) > div{
  border-top: 1px solid #e4e4e4;
}

.product_list_detail_half > li:nth-child(odd) > div{
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
  padding: 30px 0;
  margin-right: 30px;
  position: relative;
}

.product_list_detail_half > li:nth-child(odd) > div:after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  right: -30px;
  border-right: 1px solid #e4e4e4;
  height: calc(100% - 60px);
}

.product_list_detail_half > li:nth-child(even) > div{
  _flex: 1;
  _display: flex;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
  padding: 30px 0;
  margin-left: 30px;
}

.product_list_detail_half > li > div > a{
  display: flex;
  column-gap: 20px;
  flex: 1;
  color: #000;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .product_list_detail_half > li > div > a:hover{
    opacity: 0.5;
  }
}

.product_list_detail_half .product_img{
  width: 160px;
}

.product_list_detail_half .product_img img{
  width: 100%;
}

.product_list_detail_half .product_info{
  flex: 1;
}



/*product_list_detail*/

.product_list_detail{
  border-top: 1px solid #e4e4e4;
  margin-bottom: 30px;
}

.product_list_detail > li{
  border-bottom: 1px solid #e4e4e4;
  padding: 30px 0;
  display: flex;
  align-items:flex-start;
}

.product_list_detail > li > div{
  flex: 1; 
  display: flex;
}

.product_list_detail > li > div > a{
  display: flex;
  column-gap: 30px;
  flex: 1;
  color: #000;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .product_list_detail > li > div > a:hover{
    opacity: 0.5;
  }
}

.product_list_detail .product_img{
  width: 240px;
}

.product_list_detail .product_img img{
  width: 100%;
}

.product_list_detail .checkbox-blue_01 + label {
  padding: 78px 0 0 0;
  text-indent: 0;
  width: 40px;
}

.product_link{
  width: 420px;
  margin-left: 30px;
}

.product_list_detail .product_info{
  flex: 1; 
}

.product_link .heart_btn{
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.product_link .heart_btn .checkbox-heart + label{
  margin: 0 5px 0 10px;
}

.product_link .btn_line{
  flex: 1;
  height: 52px;
  line-height: 52px;
}

.product_link .btn_b{
  width: 102px;
  height: 46px;
  line-height: 46px;
}

.product_list .btn_l.icon_search{
  width: 350px;
  margin-bottom: 20px;
}



/*product_list_option*/

.product_list_option {
  margin: 10px 0 60px;
}

.product_list_option table th:first-child {
  width: 200px;
}
.product_list_option table th:nth-child(2) {
  width: 180px;
}
.product_list_option table th:nth-child(3) {
  width: 180px;
}
.product_list_option table th:nth-child(5) {
  width: 180px;
}


/* conditions_state */

.conditions_state {
  background-color: #fff;
  padding: 18px 20px 18px 10px;
  margin: 35px 0 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.conditions_state ul {
  flex: 1; 
  display: flex;
  flex-wrap: wrap;
  margin-right: 20px;
}

.conditions_state ul li {
  padding-left: 22px;
  margin: 3px 0 3px 18px;
  position: relative;
  font-weight: bold;
  align-items: center;
}

.conditions_state ul li:before {
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  content: '';
  display: block;
  height: 10px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
  transition: 0.2s;
}

.conditions_state .btn_b  {
  font-size: 15px;
  width: 190px;
  line-height: 40px;
}

.btn_narrowdown{
  padding: 0 20px 30px 0;
}

.btn_narrowdown .btn_line{
  font-size: 15px;
  width: 190px;
  line-height: 40px;
  height: 40px;
  float: right;
}

.btn_narrowdown::after {
  content: "";
  display: block;
  clear: both;
}




/* no match */

.result_no_match {
  margin: 50px 0 50px;
}



/*
SP
---------------------------------------------------------------------*/

@media only screen and ( max-width : 768px ) {


  /* product search */

  .product_list{
    position: relative;
    padding: 8% 0 12%;
  }

  .product_list_main_features{
    padding: 14% 0 12%;
  }
  
  .contents_box .product_list_main_features h2 {
    margin: 0 auto 8%;
  }

  .contents_box h3{
    font-size: calc(100vw / ( 375 / 16 ));
    margin: 0 auto 3%;
  }


  /*product_list_detail_half*/

  .product_list_detail_half{
    margin-bottom: 30px;
  }

  .product_list_detail_half > li {
    padding: 0;
    width: 100%;
  }

  .product_list_detail_half > li:nth-child(2) > div{
    border-top: none;
  }
    
  .product_list_detail_half > li:nth-child(odd) > div{
    _flex: 1;
    _display: flex;
    border-bottom: 1px solid #e4e4e4;
    padding: 8.5% 1.4%;
    margin-right: 0;
  }
    
  .product_list_detail_half > li:nth-child(odd) > div:after {
    display: none;
  }
    
  .product_list_detail_half > li:nth-child(even) > div{
    _display: flex;
    border-bottom: 1px solid #e4e4e4;
    padding: 8.5% 1.4%;
    margin-left: 0;
  }

  .product_list_detail_half > li > div,
  .product_list_detail_half > li > div > a{
    display: block;
  }

  .product_list_detail_half .product_img{
    width: 120px;
    float: left;
    margin: 0 10px 10px 0;
  }
    
  .product_list_detail_half .product_info .product_color {
    margin: 0;
  }



  /*product_list_detail*/

  .product_list_detail{
    margin-bottom: 30px;
  }

  .product_list_detail > li {
    padding: 8.5% 1.4%;
  }

  .product_list_detail > li > div,
  .product_list_detail > li > div > a{
    display: block;
  }

  .product_list_detail .product_img{
    width: 120px;
    float: left;
    margin: 0 10px 10px 0;
  }

  .product_list_detail .checkbox-blue_01 + label {
    padding: 0;
    margin: 29px 0 0;
    width: 30px;
    text-indent: 0;
  }

  .product_link{
    width: 100%;
    margin-left: 0;
  }

  .product_link .heart_btn {
    column-gap: 8px;
  }

  .product_link .heart_btn .checkbox-heart + label {
    margin: 0;
  }

  .product_link .btn_line{
    font-size: calc(100vw / ( 375 / 15 ));
    height: auto;
    line-height: 3.2;
  }

  .product_link .btn_b{
    width: 28%;
    font-size: calc(100vw / ( 375 / 15 ));
    height: auto;
    line-height: 2.8;
  }

  .product_list .btn_l.icon_search{
    width: 90%;
    margin-bottom: 20px;
  }



  /*product_list_option*/

  .product_list_option {
    margin: 0;
  }


  /* conditions_state */

  .conditions_state {
    padding: 15px 20px 20px 5px;
    margin: 25px 0 20px 0;
    display: block;
  }

  .conditions_state::after {
    content: "";
    display: block;
    clear: both;
  }

  .conditions_state ul {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .conditions_state ul li {
    padding-left: 20px;
    margin: 3px 0 3px 15px;
    font-size: calc(100vw / ( 375 / 13 ));
  }

  .conditions_state ul li:before {
    height: 9px;
  }

  .conditions_state .btn_b  {
    width: 14em;
    font-size: calc(100vw / ( 375 / 13 ));
    float: right;
    line-height: 3;
  }

  .btn_narrowdown{
    padding: 0 20px 40px 0;
  }

  .btn_narrowdown .btn_line{
    width: 14em;
    font-size: calc(100vw / ( 375 / 13 ));
    float: right;
    line-height: 3.2;
    height: auto;
  }


  /* no match */

  .result_no_match {
    margin: 35px 0 0;
  }


}