html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 959px) {
  html {
    scroll-padding-top: 70px;
  }
}

.staff-container {
  max-width: 1150px;
  margin: 0 auto 100px;
  display: grid;
  gap: 100px;
}
.staff-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
}
.staff-area li {
  border-right: solid 1px #c9c9c9;
}
.staff-area li:first-child {
  border-left: solid 1px #c9c9c9;
}
.staff-area li a {
  padding: 20px;
  color: #000000;
  text-decoration: none;
  display: block;
  font-weight: 600;
  line-height: 1;
  transition: 0.5s all;
}
.staff-area li a:hover {
  opacity: 0.75;
}
.staff-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.staff-list .item {
  background: #f4f4f4;
}
.staff-list a {
  text-decoration: none;
  color: #000000;
  transition: 0.5s all;
  position: relative;
  display: block;
}
.staff-list a::after {
  content: " ";
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22%23348D92%22%2F%3E%0A%3Cpath%20d%3D%22M6.5%204L11.5%209L6.5%2014%22%20stroke%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E");
}
.staff-list a:hover {
  opacity: 0.75;
}
.staff-list .body {
  padding: 15px 0;
  display: grid;
  gap: 10px;
  line-height: 1.1;
}
.staff-list .body ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}
.staff-list .body ul li {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  background: #348d92;
  padding: 5px;
  line-height: 1;
}
.staff-list .body .copy {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.staff-list .body .name {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
}
.staff-list .body .name span {
  font-size: 13px;
  display: block;
  font-weight: 600;
  padding-top: 10px;
}
@media screen and (max-width: 959px) {
  .staff-container {
    max-width: 100%;
    margin-bottom: 50px;
    padding: 0 20px;
    gap: 50px;
  }
  .staff-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 15px;
    margin: 30px 0;
    padding: 0 20px;
  }
  .staff-area li {
    border-right: none;
  }
  .staff-area li:first-child {
    border-left: none;
  }
  .staff-area li:nth-child(3) {
    grid-column: span 2;
  }
  .staff-area li a {
    border-radius: 30px;
    border: solid 1px #c9c9c9;
    padding: 10px;
    text-align: center;
    font-size: 13px;
  }
  .staff-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .staff-list .body {
    gap: 5px;
  }
  .staff-list .body ul li {
    font-size: 10px;
  }
  .staff-list .body .copy {
    font-size: 14px;
  }
  .staff-list .body .name {
    font-size: 18px;
  }
  .staff-list .body .name span {
    font-size: 10px;
    padding-top: 5px;
  }
}