.con_product_list {
  margin-top: 50px;
  .box_product_list {
    .inn_product_list {
      max-width: none;
      padding: 0;
      .product-grid {
        column-gap: unset;
        li {
          max-width: 25%;
          width: 25%;
          margin-top: 60px;
          padding: 30px;
          border-right: 1px solid #DDD;
          border-bottom: 1px solid #DDD;
          &:nth-child(4n+4) {
            border-right: none;
          }
          &:nth-child(n+9) {
            border-bottom: none;
          }
        }
      }
      .pagination-wrapper {
        padding: 30px 0;
        border-top: 1px solid #DDD;
        border-bottom: 1px solid #DDD;
        ul {
          li {
            max-width: 3.4rem;
            &:first-child {
              margin-right: 60px;
              a {
                font-size: 12px;
              }
            }
            &:last-child {
              margin-left: 60px;
              a {
                font-size: 12px;
              }
            }
            a {
              font-size: 20px;
              &::after {

                background: none;
              }
            }
          }
        }
      }
    }
    .inn_items {
      display: flex;
      flex-wrap: wrap;
      .items {
        width: 25%;
        border-right: 1px solid #DDDDDD;
        border-bottom: 1px solid #DDDDDD;
        &:nth-child(4n+4) {
          border-right: none;
        }
        .card-wrapper {
          padding: 30px;
        }
      }
    }
  }
  @media screen and (min-width:768px) and (max-width:1024px) {
    .box_product_list {
      .inn_product_list {
        .product-grid {
          li {
            max-width: 33.33333333333333%;
            width: 33.33333333333333%;
            padding: 20px;
            &:nth-of-type(3n+3) {
              border-right: none;
            }
            &:nth-of-type(n+4) {
              margin-top: 60px;
            }
          }
        }
      }
    }
  }
  @media screen and (max-width:767px) {
    .box_product_list {
      .inn_product_list {
        .product-grid {
          li {
            max-width: 50%;
            width: 50%;
            padding: 20px;
            &:nth-of-type(2n+2) {
              border-right: none;
            }
            &:nth-of-type(n+3) {
              margin-top: 15.384615384615385vw;
            }
          }
        }
      }
    }
  }
}