.cast-frame {
  width: 100%;
  margin: 0 0 1.5rem;
}

.cast-name-inner {
  margin: 0 0 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cast-name {
  margin: 0 0.3em 0 0;
  font-size: 72px;
  line-height: 1;
}

.cast-name-eng {
  padding: 0 0.8em 0 0;
  font-size: 24px;
  letter-spacing: 0.1em;
}

.cast-icon {
  transform: translateY(0.3em);
  width: 5%;
  padding: 0 2% 0 0;
}

.cast-frame p {
  width: 100%;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.cast-image {
  position: absolute;
  width: 46%;
  bottom: -5%;
  right: 4%;
  z-index: 2;
}

.guest {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.guest-thumb {
  position: relative;
  line-height: 0;
}

.guest-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.3em 0.8em 0.45em;
  color: #fff;
  font-size: 16px;
  background-color: #192225;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guest-social-icon {
  width: 1.3em;
  margin: 0 0 0 0.5em;
  line-height: 0;
  transform: translateY(0.1em);
}


@media screen and (min-width: 1px) and (max-width: 743px) {
  .cast-frame {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 0 50%;
  }

  .cast-name-inner {
    width: 26%;
    margin: 0 0 0 4%;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .cast-name {
    width: 100%;
    margin: 0 0 0.05em;
    font-size: 20.513vw;
  }

  .cast-name-eng {
    width: 100%;
    padding: 0 0 0.5em;
    font-size: 4.615vw;
    letter-spacing: 0.15em;
  }

  .cast-icon {
    transform: translateY(0);
    padding: 0;
    width: 25%;
    margin: 0 5%;
    text-align: center;
  }

  .cast-icon img {
    width: 100%;
  }

  .cast-frame p {
    position: absolute;
    bottom: 0;
    left: -6%;
    padding: 1em 5%;
    width: auto;
    font-size: 3.077vw;
    z-index: 3;
    background-color: rgba(171, 211, 216, 0.5);
  }

  .cast-image {
    width: 100%;
    bottom: 0;
    right: -8%;
  }

  .guest {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .guest-name {
    font-size: 3.077vw;
  }
}

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

  .cast-name-eng {
    font-size: 24px;
  }

  .cast-frame p {
    font-size: 14px;
  }

  .cast-image {
    width: 56%;
    right: -2%;
  }

  .guest {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .guest-thumb {
    position: relative;
    line-height: 0;
  }

  .guest-name {
    font-size: 15px;
  }

  .guest-social-icon {
    width: 1.3em;
  }
}