/*横並び・5カラム*/
.product_Grp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product_Grp::before {
  content: "";
  display: block;
  width: calc(20% - 3px);
  order: 1;
}

.product_Grp::after {
  content: "";
  display: block;
  width: calc(20% - 3px);
}

li.back99 {
  width: calc(20% - 3px);
  margin: 0 0 15px 0;
}

li.kuhaku_back99 {
  width: calc(20% - 3px);
  margin: 0 0 30px 0;
}

li.back99 a {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 15px 20px;
}

li.back99 a:hover {
  background: #eaf5f9;
}

div.c-items5Col__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

@media screen and (max-width:768px) {

  /*横並び・5カラム*/
  .product_Grp::before {
    content: "";
    display: block;
    width: calc(33% - 1px);
    order: 1;
  }

  .product_Grp::after {
    content: "";
    display: block;
    width: calc(33% - 1px);
  }

  li.back99 {
    width: calc(33% - 1px);
    margin: 0 0 30px 0;
  }

  li.kuhaku_back99 {
    width: calc(33% - 1px);
    margin: 0 0 30px 0;
  }

  li.back99 a {
    padding: 5px;
  }
}

/*画像*/
.c-items5Col__figure {
  border: 1px solid #e3e8f0;
  background: #fff;
  width: 90%;
  height: 13rem;
  margin: 0 auto 15px;
  position: relative;
  padding: 5px 5px 20px;
}
.c-items5Col__figure img{
  max-width: fit-content;
  max-height: fit-content;
}
.c-items5Col__figure::after{
  display: block;
    content: "PRICE DOWN";
    background: red;
    padding: 3px 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}
@media screen and (max-width:768px) {
  .c-items5Col__figure {
    height: auto;
    padding: 5px 5px 37px;
  }
  .c-items5Col__figure::after{
    display: block;
    content: "PRICE DOWN";
    background: red;
    padding: 3px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    font-size: 3vw;
    font-weight: bold;
    width: 100%;
  }
}

/*テキスト*/
div.c-items5Col__price {
  font-size: 1.3rem;
  font-weight: bold;
}

div.c-items5Col__priceTax {
  font-size: 1.1rem;
}

div.c-items5Col__productCode {
  color: #3c628f;
}

div.c-items5Col__price {
  color: #d67100;
}
div.c-items5Col__priceTax{
  color: #818181;
}
div.c-items5Col__productCode,
div.c-items5Col__price,
div.c-items5Col__priceTax {
  margin: 0;
}

div.c-items5Col__name {
  margin: 5px auto 10px;
    line-height: 1.25;
    font-size: 1.2rem;
    font-weight: bold;
    color: #3c628f!important;
}

@media screen and (max-width:768px) {
  div.c-items5Col__productCode {
    font-size: 2.6vw;
  }

  div.c-items5Col__price {
    font-size: 3vw;
    line-height: 2;
  }

  div.c-items5Col__priceTax {
    font-size: 3vw;
  }

  div.c-items5Col__name {
    font-size: 3vw;
  }
}

/*アイコン*/
div.c-items5Col__icons {
  margin: auto auto 0px;
  width: 100%;
}
div.c-items5Col__icons img{
  margin: auto;
}
/*div.c-items5Col__icons::before{
  display: block;
  content: "商品を見る";
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #3c628f;
}*/
img#icon52,
img#icon53 {
  max-width: 65px;
  max-height: 27px;
}
@media screen and (max-width:768px) {
  div.c-items5Col__icons::before{
    font-size: 2.75vw;
  }
}
/*商品を見るボタン*/
a.procdbtn {
  display: block;
  width: calc(100% - 20px);
  background: #0f8fef;
  border-radius: 5px;
  padding: 3% 0;
  color: white !important;
  margin: 10px auto;
}
