@charset "UTF-8";

/* PC固定ページ スタッフ紹介 */
#staff_article {
  padding: 100px 0;
}

#staff_article .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 21px;
  margin-top: 60px;
}

#staff_article .item a {
  min-height: 350px;
}

@media (max-width: 750px) {

  /* SP固定ページ スタッフ紹介 */
  #staff_article {
    padding: 15.38vw 0;
  }

  #staff_article .c_title .big {
    font-size: 11.28vw;
    line-height: 0.85;
  }

  #staff_article .items {
    grid-template-columns: 1fr;
    gap: 8.21vw;
    margin-top: 8.21vw;
  }

  #staff_article .item a {
    min-height: 84.87vw;
  }
}