.post_list_latest_no_item {
  display: none;
}

@media screen and (min-width: 750px) {
  .benent-coordinate {
    margin-bottom: 80px;
    .benent-coordinate-heading {
      font:
        400 18px "Poppins",
        sans-serif !important;
      letter-spacing: 0.1em;
      margin: 0 0 15px;
      display: none;
    }

    .view-more {
      display: none;
    }

    &:has(.search_list li) {
      .benent-coordinate-heading {
        display: block;
      }
    }

    &:has(.search_list li:nth-child(7)) {
      .view-more {
        display: block;
      }
    }
    &.open {
      .search_list li:nth-child(n + 7) {
        display: block;
      }
      .view-more {
        display: none !important;
      }
    }
  }

  .search_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    li {
      &:nth-child(n + 7) {
        display: none;
      }
      .search_result_wrap {
        img {
          width: 100%;
          height: auto;
          vertical-align: top;
          aspect-ratio: 3/4;
          object-fit: cover;
        }
      }

      .staff_info_wrap {
        display: flex;
        gap: 0 10px;
        margin-top: 12px;
        font:
          400 12px "Poppins",
          "Yu Gothic",
          "游ゴシック",
          "YuGothic",
          "游ゴシック体",
          "Hiragino Kaku Gothic ProN",
          "ヒラギノ角ゴ ProN",
          Meiryo,
          メイリオ,
          Helvetica,
          Arial,
          sans-serif !important;
        img {
          width: 44px;
          height: 44px;
          aspect-ratio: 1/1;
          object-fit: cover;
          border-radius: 50%;
        }
      }
      .info_text_wrap {
        line-height: 1.1;
        li {
          -webkit-line-clamp: 1;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          span {
            display: block;
          }
          a {
            max-width: 90px;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 750px) {
  .benent-coordinate {
    display: none;
    background: #f0f0f0;
    padding-top: 10px;
    margin-top: 30px;

    p {
      margin: 0;
    }

    .container {
      width: 100%;
      overflow: auto;
      padding: 0 10px;
    }

    .benent-coordinate-heading {
      font:
        400 10px "Poppins",
        sans-serif !important;
      line-height: 1;
      margin: 0 0 0 10px;
    }

    .view-more {
      display: none;
    }

    &:has(.search_list li) {
      display: block;
    }
  }

  .search_list {
    width: max-content;
    display: flex;
    gap: 10px;
    padding: 10px 0;

    > li {
      flex: 1;
      display: flex;
      width: calc(144 * (100vw / 375));
      &:last-child {
        margin-right: 10px;
      }
      a {
        display: block;
      }
    }

    li {
      .search_result_wrap {
        > a {
          > img {
            width: 100%;
            height: auto;
            vertical-align: top;
            aspect-ratio: 3/4;
            object-fit: cover;
          }
        }
      }

      .staff_info_wrap {
        display: flex;
        gap: 0 10px;
        margin-top: 10px;
        font:
          400 12px "Poppins",
          "Yu Gothic",
          "游ゴシック",
          "YuGothic",
          "游ゴシック体",
          "Hiragino Kaku Gothic ProN",
          "ヒラギノ角ゴ ProN",
          Meiryo,
          メイリオ,
          Helvetica,
          Arial,
          sans-serif !important;

        a {
          display: block;
          img {
            width: 44px;
            height: 44px;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 50%;
          }
        }
      }

      .info_text_wrap {
        font-size: 11px;
        line-height: 1.4;
        li {
          -webkit-line-clamp: 1;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          span {
            display: block;
          }
        }
      }
    }
  }
}
