/* ===========================
  contents
=========================================== */
.p-item{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.p-item__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  width: 100%;
  gap: 24px;
  flex-wrap: wrap;
}
.p-item__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc((100% - 24px*3) / 4);
}
.p-item__textbox{
  margin-top: 8px;
}
.p-item__text{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .p-item{
    padding: 0 20px;
  }
  .p-item__item{
    width: calc((100% - 24px) / 2);
  }
}