@media screen and (min-width: 750px) {
  #benent_list_result {
    .search_list {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 38px 45px;
      li {
        .search_result_wrap {
          a {
            display: block;
            border-radius: 50%;
          }
          img {
            width: 100%;
            height: auto;
            vertical-align: top;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 50%;
          }
        }

        .staff_info_wrap {
          margin-top: 12px;
          li {
            text-align: center;
            line-height: 1.3;
            -webkit-line-clamp: 1;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 750px) {
  #benent_list_result {
    font-family: "yu-gothic-pr6n", sans-serif;
    .search_list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 50px;
      padding: 0 30px;

      li {
        .search_result_wrap {
          > a {
            display: block;
            border-radius: 50%;
            > img {
              width: 100%;
              height: auto;
              vertical-align: top;
              aspect-ratio: 1/1;
              border-radius: 50%;
              object-fit: cover;
            }
          }
        }

        .staff_info_wrap {
          text-align: center;
          margin-top: 10px;
          li {
            -webkit-line-clamp: 1;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
          }
        }
      }
    }
  }
}
