.productList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 10px 0;
}

.productList::before {
  content: "";
  display: block;
  width: calc(25% - 30px);
  order: 1;
}

.productList::after {
  content: "";
  display: block;
  width: calc(25% - 30px);
}

li.back99 {
  width: calc(25% - 30px);
  padding: 10px;
  margin: 20px 0px;
  background: #fff;
  border-radius: 10px;
}

li.back99 form {
  box-sizing: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0;
}

.back99 img.picture {
  margin: auto;
  display: block;
  border: none;
}

li.back99 a {
}
span.desc{
  font-weight: bolder;
    color: #f36056;
}
li.back99 a .price,
li.back99 a .price span {
  color: #4d4d4d;
}

li.back99 a:hover {
  opacity: 0.7;
}

/*商品を見る*/
a.procdbtn {
  display: block;
  width: calc(100% - 20px);
  background: #f36056;
  border-radius: 5px;
  padding: 3% 0;
  color: white !important;
  margin: 10px auto;
}

.fa-shopping-cart:before {
  content: "\f07a";
  color: #fff;
  padding-right: 5px;
}

/*カラー展開やプライスダウンなどのタグ*/
.back99 form .business_pack_list img {
  height: auto;
  width: auto;
  padding: 3px;
  margin: auto;
}

@media (max-width: 1000px) {
  .productList::before {
    content: "";
    display: block;
    width: calc(33% - 10px);
    order: 1;
  }

  .productList::after {
    content: "";
    display: block;
    width: calc(33% - 10px);
  }

  li.back99 {
    width: calc(33% - 30px);
    padding: 10px;
    margin: 20px 0px;
    background: #fff;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  li.back99 {
    width: calc(50% - 25px);
    padding: 10px;
    margin: 20px 0px;
    background: #fff;
    border-radius: 10px;
  }

  li.back99 a {
    font-size: 14px;
  }

  a.procdbtn {
    width: 100%;
    margin: 10px 0 0;
  }

  .desc br {
    display: none;
  }
}

/*ハンバーガーメニュー-----------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 25%;
  height: 100vh;
  /*ナビの高さ*/
  background: #f36056;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 25%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  padding: 0;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 5.5vw;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  bottom: 60px;
  right: -4px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background: #f36056;
  border: 3px solid #fff;
  border-radius: 3px 0 0 3px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 17px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 17px;
}

.openbtn span:nth-of-type(2) {
  top: 30px;
}

.openbtn span:nth-of-type(3) {
  top: 43px;
}

.openbtn.active span:nth-of-type(1) {
  top: 26px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 38px;
  left: 22px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

@media (max-width: 780px) {
  .openbtn {
    width: 60px;
    height: 55px;
    bottom: 20px;
  }

  .openbtn span {
    left: 15px;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 25px;
  }

  .openbtn span:nth-of-type(3) {
    top: 35px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 17px;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 17px;
  }

  #g-nav {
    width: 100%;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    width: 100%;
  }
}

/*ハンバーガーメニューここまで---------------*/
