@charset "UTF-8";

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

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

#staff_article .item a {
  display: block;
}

#staff_article .item_image {
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  overflow: hidden;
}

#staff_article .item_image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 320/220;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#staff_article .item_body {
  padding-left: 20px;
  margin-top: -20px;
}

#staff_article .border {
  position: relative;
  width: 2px;
  height: inherit;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
}

#staff_article .border_line01 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 2px;
  height: 123px;
  background: #1A1A1A;
}

#staff_article .border_line02 {
  width: 2px;
  height: 4px;
  background: #1A1A1A;
}

#staff_article .border_line03 {
  width: 2px;
  height: 8px;
  background: #1A1A1A;
}

#staff_article .item_contents {
  padding: 40px 0 0 30px;
}

#staff_article .item_head {
  gap: 16px;
}

#staff_article .item_name {
  font-family: "fot-tsukuardgothic-std", "筑紫A丸ゴシック", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: 0.04em;
  color: #0080BB;
}

#staff_article .item_kana {
  position: relative;
  top: -2px;
  font-family: "fot-tsukuardgothic-std", "筑紫A丸ゴシック", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0em;
  color: #3F3A39;
  margin-top: 5px;
}

#staff_article .lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin-top: 20px;
}

#staff_article .list {
  font-family: "fot-tsukuardgothic-std", "筑紫A丸ゴシック", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0em;
  color: #3F3A39;
}

@media (max-width: 750px) {

  /* SP固定ページ スタッフ紹介（一覧） */
  #staff_article {
    padding: 10.26vw 0 20.51vw;
  }

  #staff_article .wrap {
    width: 89.74%;
  }

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

  #staff_article .item_image {
    border-radius: 2.56vw;
  }

  #staff_article .item a:hover .item_image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  #staff_article .item_body {
    padding-left: 4.1vw;
    margin-top: -5.13vw;
  }

  #staff_article .border {
    gap: 0.77vw;
  }

  #staff_article .border_line01 {
    height: 31.54vw;
  }

  #staff_article .border_line02 {
    height: 1.03vw;
  }

  #staff_article .border_line03 {
    height: 2.05vw;
  }

  #staff_article .item_contents {
    padding: 10.26vw 0 0 5.13vw;
  }

  #staff_article .item_head {
    gap: 4.1vw;
  }

  #staff_article .item_name {
    font-size: 5.64vw;
  }

  #staff_article .item_kana {
    top: -0.51vw;
    font-size: 4.1vw;
    margin-top: 1.28vw;
  }

  #staff_article .lists {
    gap: 1.28vw;
    margin-top: 5.13vw;
  }

  #staff_article .list {
    font-size: 4.1vw;
  }
}