ul.wp-block-list {
  display: grid;
  gap: 20px;
  list-style-type: none;
  margin-top: 50px;
  justify-content: flex-start;

  li {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 1.6px;

    ul.wp-block-list {
      margin-top: 0;
    }

    .rich-text {
      display: inline;
    }

    &::before {
      content: '・';
    }
  }
}

ul.wp-block-list.is-style-check {
  > li {
    padding-left: 1.3em;
    text-indent: -1.3em;

    ul.wp-block-list {
      margin-top: 0;

      li {
        padding-left: 1.3em;
        text-indent: -1.3em;

        &::before {
          content: '' !important;
          display: inline-block;
          width: 10px;
          height: 7px;
          background-image: url('../../../../img/common/icon/check_blue.svg');
          background-repeat: no-repeat;
          background-position: 0 0;
          background-size: contain;
          margin-right: 10px;  
        }
      }
    }
  
    &::before {
      content: '' !important;
      display: inline-block;
      width: 10px;
      height: 7px;
      background-image: url('../../../../img/common/icon/check_blue.svg');
      background-repeat: no-repeat;
      background-position: 0 0;
      background-size: contain;
      margin-right: 10px;
    }
  }
}

@media screen and (max-width: 768px) {
  ul.wp-block-list {
    li {
      font-size: 14px;
      letter-spacing: 1.4px;
    }
  }
}