@charset "UTF-8";


/* Gridレイアウト適用 */
.staff_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PCは3列 */
  gap: 24px;
  box-sizing: border-box;
}

/* 各スタッフカード */
.staff_block {
  text-align: center;
}

/* スタッフ画像を100%にフィット */
.staff_block img {
  width: 100%;
  height: auto;
  display: block;
}
.staff_block p {
  text-align: left;
}

p.name {
text-align: center;
font-weight: bold;
}

/* スマホ対応：2列に変更 */
@media only screen and (max-width: 640px) {
  .staff_list {
    grid-template-columns: repeat(2, 1fr);
  }
}