.project-list {
  display: flex;
  gap: 16px;
  margin: 80px auto 120px;
  justify-content: center;
  @media screen and (max-width: 991px) {
    flex-direction: column;
    align-items: center;
    margin: 66px auto 80px;
    gap: 10px;
  }
  .project-list__item {
    width: 360px;
    display: block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    @media screen and (max-width: 991px) {
      width: 100%;
      max-width: 280px;
    }
    &:hover {
      @media screen and (min-width: 992px) {
        .project-list__item-text-wrap {
          padding: 40px 30px 20px 50px;
          &:after {
            right: -10px;
            bottom: -10px;
          }
        }
        .project-list__item__arrow {
          right: 10px;
          bottom: 10px;
        }
      }
    }
    .project-list__item-text-wrap {
      padding: 30px;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      @media screen and (max-width: 991px) {
        padding: 20px 30px;
      }
      &:before,
      &:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        transition: all 0.3s ease;
      }
      &:before {
        right: -10px;
        bottom: -10px;
        background: #b3ecfd;
      }
      &:after {
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.9);
      }
      @media screen and (max-width: 991px) {
        &:before {
          right: -5px;
          bottom: -5px;
        }
      }
    }
    .project-list__item__text-main {
      margin-bottom: 0; /* 打ち消し用 */
      font-size: 1.6rem;
      line-height: 1.2;
      color: #01ace5;
      font-weight: bold;
      z-index: 1;
      @media screen and (max-width: 991px) {
        font-size: 1.4rem;
      }
    }
    .project-list__item__logo {
      margin: 10px 0 5px;
      z-index: 1;
      @media screen and (max-width: 991px) {
        height: 32px;
        width: auto;
      }
    }
    .project-list__item__text-sub {
      margin-bottom: 0; /* 打ち消し用 */
      font-size: 1.2rem;
      line-height: 1.5;
      color: #666666;
      z-index: 1;
    }
    .project-list__item__arrow {
      position: absolute;
      padding: 12px;
      right: 16px;
      bottom: 16px;
      background: #01bffa;
      display: flex;
      align-items: center;
      gap: 4px;
      @media screen and (min-width: 992px) {
        transition: all 0.3s ease;
      }
      .project-list__item__arrow-shape {
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        width: 8px;
        height: 8px;
        background: #fff;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
      }
    }
  }
}

.vision-logo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-items: end;
  margin-top: 10px;
  margin-bottom: 40px;
  gap: 0 20px;
  @media screen and (max-width: 991px) {
    padding: 0 12px;
    margin-bottom: 20px;
    gap: 0 16px;
  }
  .vision-logo-list__image {
    @media screen and (max-width: 991px) {
      height: 30px;
      width: auto;
    }
  }
}
