@charset "utf-8";

.boxList {
  display: flex;
  flex-flow: row wrap;
  gap: 28px;
  max-width: 1068px;
  margin: 30px auto 0;
}
.boxList__item {
  width: calc(100% / 2 - 28px * 1 / 2);
  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: 767px) {
  .boxList {
    gap: 20px;
    flex-flow: column;
  }
  .boxList__item {
    width: 100%;
  }
}
