@media screen and (max-width: 767px) {
  .page-head {
    padding: 2rem 1rem;
    font-size: 1.4rem;
  }
}

.features .row {
  row-gap: 2.4rem;
}
@media screen and (min-width: 768px) {
  .features .row .col {
    width: 33.3333333333%;
  }
}
.features .row .item {
  height: 100%;
  padding: 2.4rem 1.6rem;
  background-color: #ffffff;
  border-radius: 2.4rem;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .features .row .item {
    gap: 1.2rem;
  }
}
.features .row .item::before {
  content: "";
  display: block;
  background: var(--icon) center/contain no-repeat;
  aspect-ratio: 1;
  width: 7.2rem;
}
@media screen and (max-width: 767px) {
  .features .row .item::before {
    width: 5.4rem;
  }
}
.features .row .item .inn {
  flex: 1;
}
.features .row .item .stt {
  font-weight: bold;
  color: #091524;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .features .row .item .stt {
    margin-bottom: 1.62rem;
  }
}