.staff-profile {
  margin-top: 120px;
  margin-bottom: 82px;
  position: relative;
}
@media (max-width: 767px) {
  .staff-profile {
    margin-top: 0;
    margin-bottom: 181px;
  }
}
.staff-detail-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .staff-detail-inner {
    display: block;
  }
}
@media (max-width: 767px) {
  .staff-profile-inner {
    margin-bottom: 120px;
  }
}

@media (min-width: 768px) {
  .staff-profile-inner {
    width: calc(241 / 1285 * 100%);
    max-width: 241px;
  }
  .staff-contents-inner {
    width: calc(935 / 1285 * 100%);
    box-sizing: border-box;
  }
}
.profile h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.profile .name-english {
  color: #808080;
  /* font-family: "Helvetica Neue"; */
  font-size: 18px;

  color: rgb(128, 128, 128);
  font-family: HelveticaNeue, Helvetica, Roboto, "Droid Sans", sans-serif;
  letter-spacing: 0px;
  transform-origin: 50% 0px;
  transform: scaleY(0.92);
  backface-visibility: hidden;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  margin-bottom: 30px;

  /*
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-family: HelveticaNeue, Helvetica, Roboto, "Droid Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0px;
  */
  transform-origin: 50% 0;
  transform: scaleY(0.92);

  backface-visibility: hidden;
}
.profile .job-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 70px;
}
.bio {
  text-align: justify;
  /* font-family: YuMincho; */
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
  letter-spacing: -0.28px;
}

@media (max-width: 767px) {
  .profile h3 {
  }
  .profile .name-english {
  }
  .profile .job-title {
    font-size: 16px;
    line-height: 1.5;
  }
  .bio {
  }
}

.works {
}
.works-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 53px;
}
@media (max-width: 767px) {
  .works-title {
    font-size: 20px;
    margin-bottom: 33px;
  }
}

.works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 0;
}
.works-item {
  width: 20%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .works-list {
    gap: 40px 0;
  }
  .works-item {
    width: 50%;
  }
}

.works-item .work-title {
  margin-top: 5px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  padding-right: 1em;
  margin-bottom: 5px;
}
.works-item .category {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.works-item figure {
  display: block;
  width: 100%;
  aspect-ratio: 100 / 108;
  height: auto;
  object-fit: cover;
  overflow: hidden;
}
.works-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.works-item:hover img {
  transform: scale(1.06);
}

.awards {
  margin-top: 120px;
}
.awards-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .awards-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.awards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.award-separator {
  margin-right: 5px;
}
.awards-item {
  font-family: YuMincho;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 767px) {
  .awards-item {
    font-size: 14px;
  }
}

#nav_works {
  position: fixed;
  top: 50%;
  right: 0;
  pointer-events: none;
  z-index: 100;
}
@media (max-width: 767px) {
  #nav_works {
    visibility: hidden;
    pointer-events: none;
  }
}

#nav_works ul {
  transform: translate3d(50%, 0, 0) rotate(90deg);
  transform-origin: 50% 0;
}

#nav_works ul::after {
  content: "";
  display: table;
  clear: both;
}
#nav_works ul li {
  float: left;
  padding: 0 8px;
  font-size: 1.4rem;
  pointer-events: auto;
}

#nav_works ul li > * {
  display: block;
  padding: 10px 65px 2px 0;
  line-height: inherit;
  border-bottom: 1px solid #dcdcdc;
}

#nav_works ul li > * > span {
  display: inline-block;
  letter-spacing: -0.08em;
  transform-origin: 50% 0;
  transform: scaleY(0.92);
  backface-visibility: hidden;
}
#nav_works ul li > span {
  color: #808080;
}

.back_list a {
  display: inline-block;
  position: relative;
  padding-left: 24px;
  line-height: 1.25;
  font-size: 2.4rem;
}

.back_list a:before {
  content: "<";
  position: absolute;
  top: 2px;
  left: 0;
  color: #aeafae;
  font-family: sun-ad;
  font-size: 2rem;
}

.profile h3,
.works-title,
.works-item .category,
.profile .job-title,
.awards-title,
.back_list a span {
  letter-spacing: -0.08em;
  transform-origin: 50% 0;
  transform: scaleY(0.92);
  backface-visibility: hidden;
}
