@charset "UTF-8";

/* ---------------------------------
  employee_block
--------------------------------- */
.employee_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  row-gap: 8rem;
}
.employee_list > li {
  width: 100%;
}
.employee_list a {
  opacity: 1;
  display: flex;
  flex-flow: column;
  height: 100%;
}
.employee_list a:hover {
  opacity: 0.6;
}
.employee_list li img {
  width: 100%;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.employee_list .text_block {
  padding-bottom: 2rem;
  border-bottom: .4rem solid #000;
  display: flex;
  flex-flow: column;
  height: 100%;
}
.employee_list .text_block h2 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.12rem;
  margin-bottom: 3.2rem;
}
.employee_list .text_block .affiliation,
.employee_list .text_block .employee_info {
  font-size: 1.8rem;
  font-weight: 500;
}
.employee_list .text_block .affiliation {
  margin-top: auto;
}
.employee_list .text_block .employee_info {
  display: flex;
  column-gap: 2.1rem;
}
@media screen and (max-width: 999px) {
  .employee_list {
    display: block;
    margin: 0 3.2rem;
  }
  .employee_list > li:not(:last-child) {
    margin-bottom: 6.4rem;
  }
}