@charset "utf-8";


/* -------------------------------------------------------
  products
------------------------------------------------------- */

.productList p{
  font-size: 100%;
  margin-bottom: 10px;
}

/* nav
------------------------------------------------------- */
.productsNav{
  max-width: 1118px;
  margin:0 auto 50px;
  position: relative;
  z-index: 10;
}
.productsNav ul{
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.productsNav ul li{
  width: 15%;
}
.productsNav ul li a{
  position:relative;
  text-decoration: none;
  font-size: 114%;
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.productsNav ul li a::before{
  content:"\f107";
  padding-right: 3px;
  font-family: "fontAwesome";
}
.productsNav ul li a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #000;
  content: '';
  margin: auto;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}
.productsNav ul li a:hover::after {
  width: 100%;
}
@media all and (max-width: 767px) {
  .productsNav{
    max-width:100%;
    margin:20px auto 30px;
  }
  .productsNav ul{
    width: 90%;
    margin:0 auto;
    justify-content :space-between;
  } 
  .productsNav ul li{
    width: 48%;
    text-align: left;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px #ddd;
  }
}

/* productlist
------------------------------------------------------- */
.lead{
  margin: 0 0 40px;
}

/*.productList*/
.productList{
  display: flex;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-right: -3.3%;
}
.productList.cnt{
  justify-content:center;
}
.productList li{
  width: 30%;
  margin-right: 3.3%;
  margin-bottom:40px;
}
.productList li a{
  text-decoration: none;
  color: #000;
}
.productList li dl{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  font-size:88%;
}
.productList li dl dt,.productList li dl dd{
  border-bottom: solid 1px #ddd;
  padding-bottom: 2px;
  margin-bottom: 2px;
}
.productList li dl dt{
  width: 40%;
}
.productList li dl dd{
  width: 60%;
  text-align:right;
}


.productList li .productImg{
  width: 100%;
  margin-bottom: 15px;
}
.productList li h4{
  font-size: 121%;
  font-weight: bold;
}
.productList li h4 .tag{
  display: inline-block;
  padding: 5px 10px 4px;
  margin-left: 15px;
  line-height: 1;
  font-size: 74%;
}
.tag.freeze{background:#4e83c4; color: #fff;}
.tag.cool {background: #caeeff;color: #000000;}
.tag.mon {background: #f7e125;color: #000000;}
.tag.tue {background: #faa142;color: #000000;}
.tag.wed {background: #7fd3fb;color: #000000;}
.tag.thu {background: #82df85;color: #000000;}
.tag.fri {background: #e5adff;color: #000000;}
.tag.sat {background: #fc9ede;color: #000000;}
.tag.sun {background: #ff7777;color: #000000;}

/*orderTel*/
.orderTel{
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}
.orderTel h5{
  font-weight: bold;
  font-size: 135%;
  margin-bottom: 40px;
  position: relative;
}
.orderTel h5::after{
  content: "";
  background: #fff;
  position: absolute;
  bottom: -20px;
  height: 1px;
  width: 80px;
  left:0;
  right:0;
  margin: auto;
}
.orderTel p{
  font-size: 135%;
  font-family: "ten-mincho", serif;
  font-feature-settings: "ss02";
}
.orderTel p span{
  font-size: 142%;
}

@media all and (max-width: 767px) {
  .productList li{
    width: 100%;
    margin-bottom:30px;
  }
  .orderTel{
    padding: 20px;
  }
  .orderTel h5::after{
    bottom: -10px;
  }
  .orderTel h5{
    font-size: 121%;
    margin-bottom: 20px;
  }
  .orderTel p{
    font-size:100%;
  }
  .orderTel p span{
    font-size: 127%;
  }
}


/*detail*/
.productCont{
  width: 100%;
  margin:0 auto 70px;
  display: flex;
  justify-content: space-between;
}
.productImg,
.productTxt{
  width: 46%;
}
.productTxt p{
  line-height: 2.4;
  margin-bottom: 30px;
}

table.detail{
  margin-bottom: 70px;
}
table.detail th{
  text-align: left;
}




