/*************************************************

cast-detail

*************************************************/
.cast-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .cast-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cast-detail-left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .cast-detail-left {
    width: min(50rem, 100%);
    margin-bottom: 4rem;
  }
}

.cast-detail-right {
  width: 44.5%;
}
@media screen and (max-width: 767px) {
  .cast-detail-right {
    width: 100%;
  }
}

/* cast-detail-slider
---------------------------------------*/
.cast-detail-slider {
  overflow: hidden;
}

.cast-detail-slider__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 500/700;
  background-color: #000;
}
.cast-detail-slider__photo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.cast-detail-slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .cast-detail-slider-pagination {
    margin-top: 2.5rem;
  }
}
.cast-detail-slider-pagination .swiper-pagination-bullet {
  width: calc(20% - 2rem);
  height: auto;
  margin: 0 !important;
  aspect-ratio: 500/700;
  background-color: #000;
  border-radius: 0 !important;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .cast-detail-slider-pagination .swiper-pagination-bullet {
    width: calc(33.3333333333% - 1.6666666667rem);
  }
}
.cast-detail-slider-pagination .swiper-pagination-bullet img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

/* cast-detail-job
---------------------------------------*/
.cast-detail-job {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
}
.cast-detail-job::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  content: "";
  width: 0.5384615385em;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #b09841;
}

.cast-detail-name {
  font-size: 2.5rem;
  font-weight: 700;
}

.cast-detail-en {
  font-size: 1.5rem;
}

/* cast-detail-tags
---------------------------------------*/
.cast-detail-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0.5rem;
  margin-top: 3rem;
  padding-bottom: 3.5rem;
  font-size: 1.6rem;
  border-bottom: #fff solid 1px;
  line-height: 1.3;
}

.cast-detail-tags__item {
  position: relative;
  display: block;
}
.cast-detail-tags__item::before {
  display: inline-block;
  content: "";
  width: 0.5384615385em;
  height: auto;
  aspect-ratio: 1/1;
  margin-right: 0.5rem;
  background-color: #b09841;
}

/* cast-detail-info
---------------------------------------*/
.cast-detail-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  margin-top: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: #fff solid 1px;
}

.cast-detail-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cast-detail-info__title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-left: 1em;
  white-space: nowrap;
}
.cast-detail-info__title::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  content: "";
  width: 0.5384615385em;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #b09841;
}

/* cast-detail-sns
---------------------------------------*/
.cast-detail-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 3rem;
  line-height: 0;
}

.cast-detail-sns__acnhor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #b09841;
}