.character .splide__track {
  overflow: visible;
}
.character .splide__slide {
  opacity: 1;
}
.character #character-main {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.character #character-main .splide__list {
  position: relative;
}
.character #character-sub .splide__list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.character #character-sub .splide__slide {
  width: calc(20% - 6px) !important;
  margin: 0;
  padding: 0;
  opacity: 1;
  transition: all 0.3s;
}
.character #character-sub .splide__slide:hover {
  cursor: pointer;
  opacity: 0.6;
}
.character #character-sub .splide__slide.is-active::after {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000 !important;
  content: "";
  opacity: 0.5;
}
@media screen and (min-width: 769px) {
  .character #character-sub {
    width: 500px;
    margin-top: -180px;
    padding: 0 20px;
  }
}
.character button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  color: rgba(0, 0, 0, 0.333333);
  font: inherit;
  text-align: center;
}
.character button:hover {
  cursor: pointer;
  opacity: 0.5;
}
.character .splide__arrow {
  z-index: 8;
  position: absolute;
  top: 25%;
  padding: 1em 0.5em;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .character .splide__arrow {
    top: 40%;
  }
}
.character .splide__arrow .material-symbols-outlined {
  width: 1em;
  font-size: 3em;
  text-align: center;
}
.character .splide__arrow--prev {
  left: 1em;
}
.character .splide__arrow--next {
  right: 1em;
  transform: translateY(-50%) rotate(180deg);
}
.character .blur {
  filter: blur(50px);
}
.character-wrap {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 430px;
  background-position: center -100px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .character-set {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 70px;
  }
}
.character-item {
  display: flex;
  flex-direction: column;
  margin: 0 5px;
  padding: 20px;
  gap: 10px;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .character-item {
    margin: 60px -30px 0 5px !important;
    background-color: rgba(255, 255, 255, 0.7) !important;
  }
}
@media screen and (min-width: 840px) {
  .character-item {
    margin: 60px 5px 0 !important;
  }
}
.character-name {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  font-weight: normal !important;
  font-size: 3em;
  line-height: 1;
  text-align: center;
}
.character-kana {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1em;
  text-align: center;
}
.character-comment {
  margin: 0 !important;
  padding: 1em 0 0 !important;
  border: 0;
  font-size: 1em;
}
.character-ill {
  box-sizing: border-box;
  position: relative;
  width: 280px;
  margin: 0 auto;
  margin-top: -30px !important;
  opacity: 0;
  transition: all 0.3s;
}
.character-ill img {
  display: block;
}
@media screen and (min-width: 769px) {
  .character-ill {
    flex-shrink: 0;
    width: 340px;
  }
  .character-ill img {
    width: 100%;
  }
}
.is-visible .character-ill {
  animation: ill 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.65s;
}
@media screen and (min-width: 769px) {
  .is-visible .character-ill {
    animation: ill 1s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
    animation-delay: 0.5s !important;
  }
}
.character .is-visible .character-wrap::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: right center;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  content: "";
  animation: bg 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@media screen and (min-width: 769px) {
  .character .is-visible .character-wrap::before {
    animation: bg 1s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
  }
}
.character .is-visible .blur {
  animation: blur 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.8s;
}
@media screen and (min-width: 769px) {
  .character .is-visible .blur {
    animation: blur 1s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
    animation-delay: 0.75s !important;
  }
}
@keyframes bg {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 1;
  }
}
@keyframes ill {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes blur {
  0% {
    filter: blur(50px);
  }
  100% {
    filter: blur(0);
  }
}
/*# sourceMappingURL=style-theme.css.map */