.cast {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cast-item {
  width: 18%;
}

.cast-image {
  position: relative;
  width: 100%;
}

.cast-item p {
  text-align: center;
  color: #ff7bc3;
  font-size: 20px;
  font-weight: 900;
}

.cast-sns {
  position: absolute;
  width: 100%;
  bottom: 2%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.cast-sns-item {
  width: 22%;
  margin: 0 0.5rem;
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .cast {
    justify-content: center;
  }

  .cast-item {
    width: 30%;
    margin: 0 4% 0 0;
  }

  .cast-item:nth-child(3n) {
    width: 31%;
    margin: 0;
  }

  .cast-item p {
    font-size: 4.2vw;
  }


  .cast-sns-item {
    width: 28%;
    margin: 0 0.4rem;
  }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {
  .cast-item p {
    font-size: 18px;
  }
}

@media screen and (min-width: 1025px) {}