html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
}

.list {
  padding: 40px;
  background: #F3F9FF;
}
.list__item {
  color: #004698;
  font-family: "Sawarabi Gothic";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 39.6px */
  letter-spacing: 2.64px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: 19.5%; /* 4.29px */
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 13px;
}
.list__item:before {
  content: "";
  display: block;
  background-image: url(/assets/images/products-square-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
.list__item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .list {
    padding: 20px;
    background: #F3F9FF;
    margin-bottom: 40px;
  }
  .list__item {
    color: #004698;
    font-family: "Sawarabi Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 39.6px */
    letter-spacing: 2.64px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: 19.5%; /* 4.29px */
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 13px;
  }
  .list__item:before {
    content: "";
    display: block;
    background-image: url(/assets/images/products-square-icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 12px;
    width: 12px;
    height: 12px;
  }
  .list__item:last-child {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=products.css.map */