@keyframes statusIconAnimation {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
.castList > li {
  transition: 300ms;
}
.castList > li > a {
  width: 100%;
  text-decoration: none;
  display: block;
}
.castList > li > a > .image {
  width: 100%;
  position: relative;
  padding-top: 1px;
}
.castList > li > a > .image > picture > img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: 1px;
  background: url(/img/loading.gif) center;
  background-repeat: no-repeat;
  background-size: 30px;
}
.castList > li > a > .image > .loading {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.castList > li > a > .image > .loading > i {
  color: #000000;
  font-size: 2rem;
  animation: 500ms linear infinite rotation;
}
.castList > li > a > .image > .rookie {
  width: 4rem;
  height: 4rem;
  top: 1px;
  left: 1px;
  position: absolute;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: end;
}
.castList > li > a > .image > .rookie > span:first-child::before {
  color: #000000;
  font-size: 4rem;
}
.castList > li > a > .image > .rookie > span:last-child {
  color: #ffffff;
  font-family: "europa", sans-serif;
  top: 10px;
  left: 5px;
  position: absolute;
  transform: rotate(-45deg);
  font-size: 1rem;
}
.castList > li > a > .image:before {
  content: "";
  top: 0;
  left: 0;
  width: calc(100% + 2px);
  height: calc(100% + 1.8px);
  display: block;
  position: absolute;
  background: #aaa;
  z-index: -2;
  overflow: hidden;
}
.castList > li > a > .image:after {
  content: "";
  top: 1px;
  left: 1px;
  width: 100%;
  height: calc(100% - 1px);
  display: block;
  position: absolute;
  background: #ffffff;
  z-index: -2;
}
.castList > li > a > div {
  width: calc(100% + 3px);
  margin-top: 2px;
  color: #000000;
}
.castList > li > a > div > .joinDate {
  width: 100%;
  font-size: 1.4rem;
  padding: 0.3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-image: linear-gradient(90deg, #b6359c 0%, #ef0a6a 70%, #ef0a6a 100%);
  border-image-slice: 1;
  border-width: 1px;
  border-style: solid;
  border-image-repeat: round;
  background: #000000;
  color: #ffffff;
  order: 1;
  margin-top: 0.5rem;
}
.castList > li > a > div > .tagList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  list-style: none;
  margin: auto;
}
.castList > li > a > div > .tagList > li {
  width: calc(50% - 1px);
  color: #ffffff;
  padding: 0.2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.castList > li > a > div > .nameAndAge {
  font-weight: 500;
  margin: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.castList > li > a > div > .sizes {
  display: flex;
  justify-content: center;
  column-gap: 0.5rem;
  align-items: end;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.castList > li > a > div > .status {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
}
.castList > li > a > div > .status.standBy {
  background: #ef0a6a;
}
.castList > li > a > div > .status.serving {
  background: #999999;
}
.castList > li > a > div > .status.passive {
  background: #f2f2f8;
  color: #000000;
}
.castList > li > a > div > .status.blank {
  background: transparent;
  color: #000000;
}
.castList > li > a > div > .schedule {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.castList > li > a > div > .schedule > span:first-child {
  background: #000000;
  color: #ffffff;
  padding: 0.3rem 1rem;
}
.castList > li > a > div > .schedule > span:last-child {
  font-family: "europa", sans-serif;
}
.castList > li.standByCast > a > .image:before {
  background: #ef0a6a;
  background: linear-gradient(45deg, #b6359c, #23a6d5, #ef0a6a, #23d5ab);
  background-size: 400% 400%;
  animation: keyGradientAnimation 10s ease infinite;
}
@keyframes keyGradientAnimation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.page-load-status {
  width: 100%;
  display: none;
}
.loadingArea {
  min-height: 100px;
}
.loadingArea .loader,
.loadingArea .loader:before,
.loadingArea .loader:after {
  background: #000000;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 0.5rem;
  height: 2rem;
}
.loadingArea .loader {
  color: #000000;
  text-indent: -9999rem;
  margin: 44px auto;
  position: relative;
  font-size: 0.6rem;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loadingArea .loader:before,
.loadingArea .loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loadingArea .loader:before {
  left: -1rem;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loadingArea .loader:after {
  left: 1rem;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 2em;
  }
  40% {
    box-shadow: 0 -1rem;
    height: 2.5rem;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 2rem;
  }
  40% {
    box-shadow: 0 -2rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .castList {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 0.5rem;
    row-gap: 2rem;
    width: 100%;
    margin: auto;
  }
  .castList > li {
    width: calc(50% - 0.5rem);
  }
  .castList > li > a {
    width: 100%;
  }
  .castList > li > a > div > .tagList {
    font-size: 1rem;
    margin-top: 0.3rem;
  }
  .castList > li > a > div > .nameAndAge {
    font-size: 1.6rem;
  }
  .castList > li > a > div > .sizes {
    font-size: 1.4rem;
  }
  .castList > li > a > div > .status {
    font-size: 1.4rem;
    padding: 0.3rem 0;
    margin-top: 0.1rem;
    box-sizing: border-box;
  }
  .castList > li > a > div > .schedule {
    margin-top: 0.3rem;
  }
  .castList > li > a > div > .schedule > span:first-child {
    font-size: 1.2rem;
  }
  .castList > li > a > div > .schedule > span:last-child {
    font-size: 1.4rem;
  }
  .castList > li.standByCast > a > .sizes {
    justify-content: center;
    column-gap: 1rem;
  }
  .castList > li.standByCast > a > .schedule > *:first-child {
    font-size: 1.2rem;
  }
  .castList > li.standByCast > a > .schedule > *:last-child {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .castList {
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 2rem;
  }
  .castList > li {
    width: calc(33.5% - 1rem);
  }
  .castList > li > a {
    width: 100%;
  }
  .castList > li > a > div > .tagList {
    font-size: 1rem;
    margin-top: 0.3rem;
  }
  .castList > li > a > div > .nameAndAge {
    font-size: 2rem;
  }
  .castList > li > a > div > .sizes {
    font-size: 1.8rem;
    justify-content: center;
    column-gap: 1rem;
  }
  .castList > li > a > div > .status {
    font-size: 1.6rem;
    padding: 0.3rem 0;
    margin-top: 0.1rem;
    box-sizing: border-box;
  }
  .castList > li > a > div > .schedule {
    margin-top: 0.3rem;
  }
  .castList > li > a > div > .schedule > span:first-child {
    font-size: 1.6rem;
  }
  .castList > li > a > div > .schedule > span:last-child {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .castList {
    width: 100%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 2rem;
  }
  .castList > li {
    width: calc(20% - 0.83rem);
  }
  .castList > li > a {
    width: 100%;
  }
  .castList > li > a > div > .nameAndAge {
    font-size: 1.6rem;
  }
  .castList > li > a > div > .sizes {
    font-size: 1.6rem;
    justify-content: center;
    column-gap: 1rem;
  }
  .castList > li > a > div > .status {
    font-size: 1.4rem;
    padding: 0.3rem 0;
    margin-top: 0.1rem;
    box-sizing: border-box;
  }
  .castList > li > a > div > .schedule {
    margin-top: 0.1rem;
  }
  .castList > li > a > div > .schedule > span:first-child {
    font-size: 1.2rem;
  }
  .castList > li > a > div > .schedule > span:last-child {
    font-size: 1.6rem;
  }
  .castList > li:hover {
    transform: scale(105%);
  }
}
/*# sourceMappingURL=castList.css.map */