/* Product Tab */
.product-tab--list .link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  text-align: center;
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  border-radius:5px;
  background-color: #efefef;
  -webkit-transition: all ease .15s;
  transition: all ease .15s;
  padding:0px 10px;
}

.product-tab--list .tab-list > li.on .link {
  color:#fff;
  background-color: #4c6a26;
}

@media (max-width:1200px) {

  .product-tab--list .link {
    font-size:1.8rem;
    height:48px;
  }

}
@media (max-width:1024px) {

}
@media (max-width:768px) {

  .product-tab--list {
    position: relative;
    padding-top: 50px;
  }

  .product-tab--list .tab-list--select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    margin:0px;
    margin-bottom:0px;
    z-index:1000;
    /* border:1px solid #ddd; */
  }

  .product-tab--list .tab-list--select::before {
    content:'';
    position: absolute;
    top:17px;
    right:14px;
    display: block;
    width: 10px;
    height: 10px;
    border-left:2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
  }

  .product-tab--list .tab-list--select.on >li{
    display:block;
  }

  .product-tab--list .tab-list--select.on::before{
    top:20px;
    transform: rotate(-225deg);
  }

  .product-tab--list .tab-list--select > li{
    display: none;
    flex:1 1 100%;
    width: 100%;
    order: 2;
    padding:0px;
  }

  .product-tab--list .tab-list--select > li.on{
    display:block;
    order: 1;
  }

  .product-tab--list .tab-list--select > li.on a{
    pointer-events: none;
  }

  .product-tab--list .link  {
    font-size:1.6rem;
    border-radius:0px;
    height:50px;
  }

}
@media (max-width:500px) {

}


/* Product Search */
.product-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom:40px;
}

.product-search input {
  font-size:1.6rem;
  font-weight:500;
  padding:15px 30px 15px 0px;
  color:#999;
}

.product-search .search-input {
  position: relative;
  border-bottom:1px solid #000;
}

.product-search .search-buttons {
  position: absolute;
  right:0;
  top:0;
  width:50px;
  height:50px;
}

.product-search .button {
  width:100%;
  height:100%;
  background-size:auto 18px;
  background-repeat: no-repeat;
  background-position:center right;
  background-image: url('/child/img/icon/saerch_icon.png');
}

@media (max-width:1200px) {

  .product-search input {
    font-size:1.5rem;
  }

}
@media (max-width:1024px) {

  .product-search {
    margin-bottom:28px;
  }

}
@media (max-width:768px) {

  .product-search {
    margin-bottom:20px;
  }

  .product-search input {
    font-size:1.4rem;
    padding:12px 30px 12px 0px;
  }

  .product-search .search-buttons {
    width:44px;
    height: 44px;
  }

}
@media (max-width:500px) {

}


/* Product List */
.product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin:-12px;
}

.product-list li {
  flex:0 0 25%;
  max-width:25%;
  padding:12px;
}

.product-list a {
  display: block;
}

.product-list .box {
  overflow: hidden;
  border:1px solid #cccccc;
  border-radius:10px;
  position: relative;
}

.product-list .thumb {
  overflow: hidden;
  position: relative;
  padding-top: 100%;
  width: 100%;
  height: 0;
}

.product-list .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-list .text {
  padding:10px 20px 30px;
}

.product-list .text_t01 {
  font-size:2rem;
  font-weight:600;
  margin-bottom:14px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.product-list .text_t02 {
  height: 38px;
  font-size:1.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-list .hover {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: #e8f2db;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding:0px 5%;
  opacity: 0;
  transition: 0.5s;
  z-index: 10;
}

.product-list .hover .group {
  width: 100%;
  filter: blur(10px);
  transition: 0.5s;
}

.product-list .hover p {
  font-size:1.8rem;
  font-weight:500;
  line-height:1.4;
}

@media (min-width:1201px) {
  .product-list li:hover .hover{
    opacity:1;
  }

  .product-list li:hover .group {
    filter: blur(0px);
  }

}
@media (max-width:1200px) {

  .product-list .text_t01 {
    font-size:1.8rem;
  }

  .product-list .text_t02 {
    font-size:1.4rem;
  }

}
@media (max-width:1024px) {

  
  .product-list {
    margin:-6px;
  }

  .product-list li {
    padding:6px;
  }
  
  /* .product-list .box {
    min-height: 309px;
    height: 100%;
  } */

  .product-list .text {
    padding:6px 16px 22px;
  }

  .product-list .text_t01 {
    margin-bottom:8px;
  }
  
  .product-list .text_t02 {
    height: 36px;
  }
  

}
@media (max-width:768px) {

  .product-list .text_t01 {
    font-size:1.6rem;
  }

}
@media (max-width:600px) {

  .product-list li {
    flex:0 0 50%;
    max-width:50%;
  }

}
