.staff_cast {
  opacity: 0;
  -webkit-animation: staffcast_in 1s cubic-bezier(0.5, 1, 0.89, 1) forwards;
          animation: staffcast_in 1s cubic-bezier(0.5, 1, 0.89, 1) forwards;
}

@-webkit-keyframes staffcast_in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes staffcast_in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*********************************/
.staff_cast {
  width: 880px;
  margin: auto;
  padding-top: 148px;
}

@media only screen and (min-width: 769px) {
  .staff_cast {
    min-height: 90vh;
  }
}

@media only screen and (max-width: 768px) {
  .staff_cast {
    width: 100%;
    padding-top: 10px;
  }
}

.staff_cast li {
  margin-bottom: 100px;
}

@media only screen and (max-width: 768px) {
  .staff_cast li {
    margin-bottom: 80px;
  }
  .staff_cast li:last-child {
    margin-bottom: 40px;
  }
}

.staff_cast_cap {
  margin-bottom: 60px;
}

.staff_cast_cap img {
  height: 57px;
}

.staff_cast .cast .staff_cast_name {
  width: 866px;
}

@media only screen and (max-width: 768px) {
  .staff_cast_cap {
    margin: 0 7vw 40px;
  }
  .staff_cast_cap img {
    height: 38px;
  }
  .staff_cast .cast .staff_cast_name {
    width: 100%;
  }
}
/*# sourceMappingURL=staffcast.css.map */