@charset "UTF-8";
@keyframes loop_circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shootingStar-slide {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    transform: translateY(600px);
  }
  100% {
    opacity: 0;
    transform: translateY(600px);
  }
}
@keyframes shootingStar-slide-sp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    transform: translateY(150px);
  }
  100% {
    opacity: 0;
    transform: translateY(150px);
  }
}
@keyframes loopTitle {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes down_animation {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(88px);
    opacity: 0;
  }
}
@keyframes down_animation-scale {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes top_logo {
  0% {
    transform: rotateY(400deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes modal_fadein {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modal_fadein-line {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes modal_fadein-scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.l-main__cap {
  margin-bottom: 47px;
}
@media screen and (max-width: 899px) {
  .l-main__cap {
    margin-bottom: 35px;
  }
}

.l-main {
  overflow: hidden;
}

.p-character {
  padding-top: 72px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-character {
    padding-top: 0px;
  }
}
.p-character__inner {
  margin: 0 auto;
  width: 95%;
  max-width: 1200px;
}
@media screen and (max-width: 899px) {
  .p-character__inner {
    width: 90%;
  }
}
.p-character__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 960px;
}
@media screen and (min-width: 900px) {
  .p-character__list.is-sp {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .p-character__list {
    justify-content: flex-start;
  }
}
.p-character__list-item {
  width: 17.2%;
  margin-right: 3.5%;
  margin-bottom: 2.5%;
  position: relative;
  transform: translateY(13%);
  opacity: 0;
}
.is-load .p-character__list-item {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
@media screen and (min-width: 900px) {
  .p-character__list-item:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-character__list-item {
    margin-right: 3%;
    margin-bottom: 6%;
    width: 31%;
  }
  .p-character__list-item:nth-child(3n) {
    margin-right: 0;
  }
}
.p-character__list-item img {
  height: 100%;
  opacity: 0;
}
.p-character__list-item img.lazyloaded {
  opacity: 1;
}
.p-character__list-item a {
  text-decoration: none;
}
@media screen and (min-width: 900px) {
  .p-character__list-item a:hover .p-character__list-thumb {
    transform: scale(1.05);
  }
}
.p-character__list:nth-child(2) .p-character__list-item:nth-child(5) {
  margin-right: 3.5%;
}
.p-character__list-thumb {
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-character__list-thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(180deg, rgb(48, 63, 158) 0%, rgb(163, 123, 196) 100%);
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-character__list-thumb.lazyloaded::after {
  opacity: 0;
  transition-delay: 0.1s;
}
.p-character__list-name {
  margin-top: 21px;
  text-align: center;
  color: #fff;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 899px) {
  .p-character__list-name {
    margin-top: 14px;
    font-size: 10px;
  }
}

.p-character_detail {
  position: relative;
}
.p-character_detail__back {
  z-index: 1;
  transform: translateX(10px);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 900px) {
  .p-character_detail__back {
    position: absolute;
    top: -34px;
    left: 0;
  }
  .is-load .p-character_detail__back {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.5s;
  }
}
@media screen and (max-width: 1160px) {
  .p-character_detail__back {
    top: -63px;
  }
}
@media screen and (max-width: 899px) {
  .p-character_detail__back {
    top: 0;
    margin: 0 auto;
    width: 160px;
    margin-top: 42px;
  }
  .p-character_detail__back.is-active {
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (min-width: 900px) {
  .p-character_detail__back .c-back__text {
    font-size: min(19px, 2.3vw);
  }
}

.chara_swiper {
  opacity: 0;
}
.chara_swiper.init_swiper {
  opacity: 1;
}
.chara_swiper .swiper-slide {
  position: relative;
  width: 100%;
  display: flex;
}
@media screen and (max-width: 899px) {
  .chara_swiper .swiper-slide {
    display: block;
  }
}
.chara_swiper__stand-bg {
  position: absolute;
  top: 20.5%;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.is-load .chara_swiper__stand-bg {
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 899px) {
  .chara_swiper__stand-bg {
    top: 9.5%;
  }
}
.chara_swiper__stand-bg-item {
  width: 48.5%;
  overflow: hidden;
  padding-top: min(400px, 28.5%);
  border-radius: 0 200px 200px 0;
  transform: translateX(-15%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
  background-color: #8763bd;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.chara_swiper__stand-bg-item:first-of-type {
  position: relative;
}
@media screen and (max-width: 899px) {
  .chara_swiper__stand-bg-item {
    width: 81.5%;
    max-width: 600px;
    padding-top: min(53%, 267px);
  }
}
.chara_swiper__stand-bg-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.1);
  transition: transform 5s cubic-bezier(0.33, 1, 0.68, 1);
}
.chara_swiper__stand-bg-item[data-stand-chara=ichijo]::before {
  background: url(../img/charecter/bg_shin.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=ichijo]::before {
    background-size: 900px;
  }
}
[data-select-chara=ichijo] .chara_swiper__stand-bg-item[data-stand-chara=ichijo] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=ichijo] .chara_swiper__stand-bg-item[data-stand-chara=ichijo]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=tachibana]::before {
  background: url(../img/charecter/bg_yukinojo.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=tachibana]::before {
    background-size: 900px;
  }
}
[data-select-chara=tachibana] .chara_swiper__stand-bg-item[data-stand-chara=tachibana] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=tachibana] .chara_swiper__stand-bg-item[data-stand-chara=tachibana]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=kougami]::before {
  background: url(../img/charecter/bg_taiga.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=kougami]::before {
    background-size: 900px;
  }
}
[data-select-chara=kougami] .chara_swiper__stand-bg-item[data-stand-chara=kougami] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=kougami] .chara_swiper__stand-bg-item[data-stand-chara=kougami]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=juuouin]::before {
  background: url(../img/charecter/bg_kakeru.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=juuouin]::before {
    background-size: 900px;
  }
}
[data-select-chara=juuouin] .chara_swiper__stand-bg-item[data-stand-chara=juuouin] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=juuouin] .chara_swiper__stand-bg-item[data-stand-chara=juuouin]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=takahashi]::before {
  background: url(../img/charecter/bg_minato.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=takahashi]::before {
    background-size: 900px;
  }
}
[data-select-chara=takahashi] .chara_swiper__stand-bg-item[data-stand-chara=takahashi] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=takahashi] .chara_swiper__stand-bg-item[data-stand-chara=takahashi]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=saionji]::before {
  background: url(../img/charecter/bg_leo.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=saionji]::before {
    background-size: 900px;
  }
}
[data-select-chara=saionji] .chara_swiper__stand-bg-item[data-stand-chara=saionji] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=saionji] .chara_swiper__stand-bg-item[data-stand-chara=saionji]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=suzuno]::before {
  background: url(../img/charecter/bg_yu.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=suzuno]::before {
    background-size: 900px;
  }
}
[data-select-chara=suzuno] .chara_swiper__stand-bg-item[data-stand-chara=suzuno] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=suzuno] .chara_swiper__stand-bg-item[data-stand-chara=suzuno]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=mihama]::before {
  background: url(../img/charecter/bg_koji.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=mihama]::before {
    background-size: 900px;
  }
}
[data-select-chara=mihama] .chara_swiper__stand-bg-item[data-stand-chara=mihama] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=mihama] .chara_swiper__stand-bg-item[data-stand-chara=mihama]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=hayami]::before {
  background: url(../img/charecter/bg_hiro.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=hayami]::before {
    background-size: 900px;
  }
}
[data-select-chara=hayami] .chara_swiper__stand-bg-item[data-stand-chara=hayami] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=hayami] .chara_swiper__stand-bg-item[data-stand-chara=hayami]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=nishina]::before {
  background: url(../img/charecter/bg_kazuki.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=nishina]::before {
    background-size: 900px;
  }
}
[data-select-chara=nishina] .chara_swiper__stand-bg-item[data-stand-chara=nishina] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=nishina] .chara_swiper__stand-bg-item[data-stand-chara=nishina]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=kisaragi]::before {
  background: url(../img/charecter/bg_louis.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=kisaragi]::before {
    background-size: 900px;
  }
}
[data-select-chara=kisaragi] .chara_swiper__stand-bg-item[data-stand-chara=kisaragi] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=kisaragi] .chara_swiper__stand-bg-item[data-stand-chara=kisaragi]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=yamato]::before {
  background: url(../img/charecter/bg_alexander.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=yamato]::before {
    background-size: 900px;
  }
}
[data-select-chara=yamato] .chara_swiper__stand-bg-item[data-stand-chara=yamato] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=yamato] .chara_swiper__stand-bg-item[data-stand-chara=yamato]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=takadanobaba]::before {
  background: url(../img/charecter/bg_joji.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=takadanobaba]::before {
    background-size: 900px;
  }
}
[data-select-chara=takadanobaba] .chara_swiper__stand-bg-item[data-stand-chara=takadanobaba] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=takadanobaba] .chara_swiper__stand-bg-item[data-stand-chara=takadanobaba]::before {
  transform: scale(1);
}
.chara_swiper__stand-bg-item[data-stand-chara=ikebukuro]::before {
  background: url(../img/charecter/bg_ace.jpg) no-repeat right center;
  background-size: cover;
}
@media screen and (min-width: 1400px) {
  .chara_swiper__stand-bg-item[data-stand-chara=ikebukuro]::before {
    background-size: 900px;
  }
}
[data-select-chara=ikebukuro] .chara_swiper__stand-bg-item[data-stand-chara=ikebukuro] {
  opacity: 1;
  transform: translateX(0);
}
[data-select-chara=ikebukuro] .chara_swiper__stand-bg-item[data-stand-chara=ikebukuro]::before {
  transform: scale(1);
}
.chara_swiper__stand {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  margin-top: -5%;
}
@media screen and (max-width: 899px) {
  .chara_swiper__stand {
    width: 100%;
  }
}
[data-hash=hayami] .chara_swiper__stand {
  margin-top: -3%;
}
.chara_swiper__stand-chara {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 85%;
  transform: translateX(1%);
}
@media screen and (max-width: 899px) {
  .chara_swiper__stand-chara {
    width: 88%;
    max-width: 300px;
    transform: translateX(-1%);
  }
}
.chara_swiper__stand-chara-item {
  transform: translateX(-13%);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.swiper-slide-active .chara_swiper__stand-chara-item {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}
.chara_swiper__detail {
  padding-top: 51px;
  color: #fff;
  flex-grow: 1;
  margin-left: 3.5%;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.swiper-slide-active .chara_swiper__detail {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}
@media screen and (max-width: 899px) {
  .chara_swiper__detail {
    padding-top: 0px;
    margin-left: 0;
  }
}
.chara_swiper__detail-head {
  margin-bottom: 31px;
  line-height: 1.5;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 899px) {
  .chara_swiper__detail-head {
    margin-bottom: 21px;
    padding-bottom: 21px;
  }
}
.chara_swiper__detail-head-charaname {
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-size: 57px;
  font-size: min(57px, 4.8vw);
  letter-spacing: 0.5px;
}
@media screen and (max-width: 899px) {
  .chara_swiper__detail-head-charaname {
    font-size: 35px;
  }
}
.chara_swiper__detail-head-charaspel {
  font-family: "Kalnia", serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
@media screen and (max-width: 899px) {
  .chara_swiper__detail-head-charaspel {
    font-size: 10px;
    margin-top: 6px;
  }
}
.chara_swiper__cv {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .chara_swiper__cv {
    margin-bottom: 24px;
    padding-bottom: 22px;
  }
}
.chara_swiper__cv-ttl {
  font-family: "Kalnia", serif;
  position: relative;
  padding-right: 21px;
  font-size: 22px;
  margin-right: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 899px) {
  .chara_swiper__cv-ttl {
    font-size: 16px;
    letter-spacing: 1px;
    padding-right: 15px;
    margin-right: 6px;
  }
}
.chara_swiper__cv-ttl::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/common/deco.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 899px) {
  .chara_swiper__cv-ttl::before {
    width: 8px;
    height: 8px;
  }
}
.chara_swiper__cv-name {
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-size: 21px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 899px) {
  .chara_swiper__cv-name {
    font-size: 15px;
  }
}
.chara_swiper__prof {
  line-height: 1.65;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .chara_swiper__prof {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 1px;
  }
}
.chara_swiper__prof-status {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 899px) {
  .chara_swiper__prof-status {
    margin-top: 26px;
  }
}
.chara_swiper__prof-status-item {
  width: 32%;
  margin-right: 2%;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 900px) {
  .chara_swiper__prof-status-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .chara_swiper__prof-status-item {
    width: 31%;
    margin-right: 2.3%;
  }
}
.chara_swiper__prof-status-cap {
  border: 1px solid #fff;
  font-size: 14px;
  margin-bottom: 9px;
  padding: 2px 0;
}
@media screen and (max-width: 899px) {
  .chara_swiper__prof-status-cap {
    font-size: 10px;
    margin-bottom: 7px;
  }
}
.chara_swiper__prof-status-text {
  letter-spacing: 1px;
}
@media screen and (max-width: 899px) {
  .chara_swiper__prof-status-text {
    font-size: 13px;
  }
}
.chara_swiper__pager {
  position: absolute;
  top: -60px;
  width: 150px;
  right: 0;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .chara_swiper__pager {
    width: 81px;
    top: 20px;
  }
}
.is-load .chara_swiper__pager {
  opacity: 1;
  transition-delay: 0.5s;
}
.chara_swiper__pager .swiper-button-prev, .chara_swiper__pager .swiper-button-next {
  position: relative;
  margin: 0;
  width: 67px;
  height: 67px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 899px) {
  .chara_swiper__pager .swiper-button-prev, .chara_swiper__pager .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}
@media screen and (min-width: 900px) {
  .chara_swiper__pager .swiper-button-prev:hover, .chara_swiper__pager .swiper-button-next:hover {
    opacity: 0.5;
  }
}
.chara_swiper__pager .swiper-button-prev::after, .chara_swiper__pager .swiper-button-next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
  width: 40%;
  height: 40%;
  background: url(../img/common/arrow_white.svg) no-repeat center center;
  background-size: contain;
}
.chara_swiper__pager .swiper-button-prev {
  left: 0;
}
.chara_swiper__pager .swiper-button-prev::after {
  transform: translate(-50%, -50%) scaleX(-1);
}
.chara_swiper__pager .swiper-button-next {
  right: 0;
}