.cast-content {
  padding: 3rem 3rem 0 0;
}

.cast-heading {
  margin: 0;
}

.cast-frame {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cast-image {
  width: 50%;
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 5%,
      rgba(0, 0, 0, 1) 15%,
      #000 90%);
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 5%,
      rgba(0, 0, 0, 1) 15%,
      #000 90%);
}

.cast-spec {
  width: 50%;
  padding: 0 0 0 5%;
}

.cast-name {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
}

.cast-name-eng {
  padding: 0 0.8em 0 0;
  font-size: var(--fs-name);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.cast-sns {
  width: 100%;
  display: flex;
  justify-self: flex-start;
  align-items: center;
}

.cast-icon {
  margin: 2rem 0;
  width: 40px;
  padding: 0 15px 0 0;
}

.cast-spec p {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
}

.guest {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.guest-item {
  width: 22%;
  margin: 0 5% 0 0;
}

.guest-item:last-child {
  margin: 0;
}

.guest-thumb {
  position: relative;
  border: var(--color) solid 2px;
}

.guest-name {
  width: 100%;
  font-size: var(--fs-lg);
  text-align: center;
}

.guest-sns {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.2em 0.5em 0.2em 1em;
  background-color: #000;
  text-align: right;

  display: inline-flex;
  gap: 5px;
}

.guest-sns img {
  width: 25px;
  border: none;
}

.bm-top {
  margin: 3rem 0;
}

.bm-outer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bm-inner {
  display: inline-block;
}

.player {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto 1rem;
}

.bm-player {
  width: 10em;
  color: var(--color);
  font-size: var(--fs-category);
  border: var(--color) solid 1px;
  text-align: center;
}

.bm-name {
  padding: 0 0.5em 0 1em;
}

.bm-sns {
  width: 25px;
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .cast-content {
    padding: 2rem 1.5rem 2.5rem;
  }

  .cast-frame {
    flex-wrap: wrap;
  }

  .cast-image {
    width: 68%;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 5%,
        rgba(0, 0, 0, 1) 15%,
        rgba(0, 0, 0, 1) 85%,
        rgba(0, 0, 0, 0.5) 95%,
        transparent 100%);
    mask-image: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 5%,
        rgba(0, 0, 0, 1) 15%,
        rgba(0, 0, 0, 1) 85%,
        rgba(0, 0, 0, 0.5) 95%,
        transparent 100%);
  }

  .cast-spec {
    width: 100%;
    padding: 1rem 0 0;
    text-align: center;
  }

  .cast-name {
    font-size: 30px;
  }

  .cast-name-eng {
    padding: 0 0.8em 0 0;
    font-size: var(--fs-base);
    font-weight: 300;
    letter-spacing: 0.1em;
  }

  .cast-sns {
    justify-content: center;
  }

  .cast-icon {
    margin: 1rem 0;
    width: 44px;
    padding: 0 6px 0;
  }

  .cast-spec p {
    letter-spacing: 0;
    line-height: 1.8;
  }

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

  .guest-item {
    width: 100%;
    margin: 0 5% 0 0;
  }

  .guest-thumb {
    border: var(--color) solid 1px;
  }

  .guest-sns {
    padding: 0.1em 0.3em;
    gap: 4px;
  }

  .guest-sns img {
    width: 20px;
    border: none;
  }

  .bm-sns {
    width: 20px;
  }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {}