.p-product__list {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  gap: 20px; /* 余白 */
  
  /* リストのデフォルトスタイル打消し */
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-productItem {
  /* (100% - 合計の余白幅) ÷ 3 */
  /* 余白が20pxで3列の場合、間の余白は2つなので40px引く */
  width: calc((100% - 40px) / 3);
  margin-top: 0px;
}

.p-product__other{
    width: calc((100% - 40px) / 3);
    margin-top: 0px;
}

@media screen and (min-width: 767px) {
 
   .p-productItem:nth-of-type(n+5) {
        margin-top: 0px;
    }
}

@media screen and (max-width: 767px) {
    .p-productItem__ttl{
        font-size: 1.0rem;
    }
     .p-product__other {
        padding : 0;
        font-size: 1.0rem;
    }

    .p-productItem:not(:first-of-type) {
        margin-top: 0px;
    }
}