@charset "utf-8";

.boxList {
  display: flex;
  gap: 27px;
}
.boxList__item {
  width: calc(100% / 3 - 27px * 2 / 3);
  border: 1px solid var(--site-color-main);
  padding: 24px;
}
.boxList__image {
  margin-bottom: 16px;
}
.boxList__image img {
  width: 100%;
  height: auto;
}
.boxList__title {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .boxList {
    gap: 12px;
  }
  .boxList__item {
    width: calc(100% / 3 - 12px * 2 / 3);
    padding: 12px;
  }
}

@media screen and (max-width: 767px) {
  .boxList {
    gap: 20px;
    flex-flow: column;
  }
  .boxList__item {
    width: 100%;
  }
}
