.title h2 span {
  letter-spacing: 0.5em;
}

.staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .staff {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.staff::after {
  content: "";
  width: calc(100%/3 - 30px);
}
.staff div {
  width: calc(100%/3 - 30px);
}
@media screen and (max-width: 767px) {
  .staff div {
    width: 100%;
  }
}
.staff div .staff_photo {
  margin-bottom: 20px;
}
.staff div .role {
  color: #816D51;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.staff div .name {
  font-weight: bold;
  margin-bottom: 10px;
}