@import url("https://fonts.googleapis.com/css2?family=Cardo&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap");
@keyframes loop_tti {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes movie_anime-pc {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -26px 0;
  }
}
@keyframes movie_anime-sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -19px 0;
  }
}
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes intro_noise_PC {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 4px;
  }
}
@keyframes intro_noise_SP {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 2px;
  }
}
@keyframes dot-pulse {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
.l-in_head__ttl {
  margin-bottom: 76px;
}
@media screen and (max-width: 767px) {
  .l-in_head__ttl {
    padding-top: 30px;
    margin-bottom: 48px;
  }
}

.p-chara__tab {
  position: relative;
  z-index: 1;
  padding: 42px 0;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}
.is-load .p-chara__tab {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-chara__tab {
    padding: 31px 0 31px;
  }
}
.p-chara__tab::before {
  content: "";
  width: 100%;
  height: 42px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/movie_frame.png) repeat-x 0 0;
  background-size: 26px;
}
@media screen and (min-width: 768px) {
  .p-chara__tab::before {
    animation: movie_anime-pc 1.5s linear infinite both;
  }
}
@media screen and (max-width: 767px) {
  .p-chara__tab::before {
    top: 1px;
    background-size: 19px;
    height: 31px;
    animation: movie_anime-sp 1.5s linear infinite both;
  }
}
.p-chara__tab::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 42px;
  bottom: 0;
  background: url(../img/movie_frame.png) repeat-x 0 0;
  background-size: 26px;
}
@media screen and (min-width: 768px) {
  .p-chara__tab::after {
    animation: movie_anime-pc 1.5s linear infinite both reverse;
  }
}
@media screen and (max-width: 767px) {
  .p-chara__tab::after {
    background-size: 19px;
    height: 31px;
    animation: movie_anime-sp 1.5s linear infinite both reverse;
  }
}
.p-chara__tab-inner {
  background-color: #000;
  padding: 0 1%;
}
@media screen and (max-width: 767px) {
  .p-chara__tab-inner {
    padding: 0 5px;
  }
}
.p-chara__content {
  opacity: 0;
  transform: translateY(30px);
}
.is-load .p-chara__content {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.6s;
}
.p-chara__slider {
  position: relative;
}
.p-chara__slider-control {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.p-chara__slider-control-btn {
  pointer-events: all;
  width: min(50px, 5vw);
  height: min(50px, 5vw);
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  border: 1px solid #997d26;
  box-sizing: border-box;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-chara__slider-control-btn.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
@media (hover: hover) {
  .p-chara__slider-control-btn:hover {
    background-color: #997d26;
  }
  .p-chara__slider-control-btn:hover::before {
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-chara__slider-control-btn {
    transform: translateY(0);
    width: 36px;
    height: 36px;
    top: 0;
  }
}
.p-chara__slider-control-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(15px, 1.6666666667vw);
  height: min(15px, 1.6666666667vw);
  -webkit-mask: url(../img/icon_arrow.svg) no-repeat center center;
  mask: url(../img/icon_arrow.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #997d26;
  transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-chara__slider-control-btn::before {
    width: 10px;
    height: 10px;
  }
}
.p-chara__slider-control-btn.--prev {
  left: min(30px, 2.5vw);
}
@media screen and (max-width: 767px) {
  .p-chara__slider-control-btn.--prev {
    left: 19px;
  }
}
.p-chara__slider-control-btn.--prev::before {
  transform: translate(-50%, -50%) scaleX(-1);
}
.p-chara__slider-control-btn.--next {
  right: min(30px, 2.5vw);
}
@media screen and (max-width: 767px) {
  .p-chara__slider-control-btn.--next {
    right: auto;
    left: 63px;
  }
}

.charatab_swiper {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.charatab_swiper .swiper-slide {
  position: relative;
  width: 10.2%;
  cursor: pointer;
  margin-right: 1%;
  overflow: hidden;
}
@media (hover: hover) {
  .charatab_swiper .swiper-slide:hover .charatab_swiper__icon {
    transform: scale(1.05);
  }
}
.charatab_swiper .swiper-slide:last-child {
  margin-right: 0;
}
.charatab_swiper .is-current {
  pointer-events: none;
}
.charatab_swiper__icon {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.charatab_swiper__icon.--on {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.is-current .charatab_swiper__icon.--on {
  opacity: 1;
}

.chara_swiper .swiper-slide {
  position: relative;
}
.chara_swiper__deco {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .chara_swiper__deco {
    bottom: auto;
    top: 111vw;
  }
}
.chara_swiper__deco-item {
  width: auto;
  height: 180px;
  flex-shrink: 0;
  animation: loop_tti linear var(--move_duration) infinite forwards;
}
@media screen and (max-width: 767px) {
  .chara_swiper__deco-item {
    height: 85px;
  }
}
.chara_swiper__deco-item img {
  height: 100%;
}
.chara_swiper__contnet {
  display: flex;
  margin: 0 auto;
  width: 80%;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .chara_swiper__contnet {
    flex-direction: column-reverse;
    width: 100%;
  }
}
.chara_swiper__detail {
  width: 40%;
  padding-right: 2%;
  padding-top: 9.5%;
}
@media screen and (max-width: 767px) {
  .chara_swiper__detail {
    margin: 0 auto;
    padding: 0;
    margin-top: 5%;
    width: 90%;
  }
}
.chara_swiper__stand {
  position: relative;
  flex-shrink: 0;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .chara_swiper__stand {
    width: 100%;
  }
}
.chara_swiper__stand-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.07);
}
.swiper-slide-active .chara_swiper__stand-bg {
  opacity: 1;
  transform: scale(1);
  transition: transform 5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.chara_swiper__stand-bg-item {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.37, 0, 0.63, 1);
}
.chara_swiper__stand-bg-item.is-current {
  opacity: 1;
}
.chara_swiper__stand-bg-item:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.chara_swiper__stand-main {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}
.swiper-slide-active .chara_swiper__stand-main {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.chara_swiper__stand-item {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.37, 0, 0.63, 1);
}
.chara_swiper__stand-item.is-current {
  opacity: 1;
}
.chara_swiper__stand-item:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.chara_swiper__stand-vschange {
  position: absolute;
  top: 4.4%;
  right: 0%;
  width: 26.1%;
  cursor: pointer;
  z-index: 1;
  transform: translateY(30px);
  opacity: 0;
}
.swiper-slide-active .chara_swiper__stand-vschange {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media (hover: hover) {
  .chara_swiper__stand-vschange:hover .chara_swiper__stand-vschange-item img {
    transform: scale(0.97);
  }
}
@media screen and (max-width: 767px) {
  .chara_swiper__stand-vschange {
    top: 3.4%;
    right: 2.5%;
    width: 27.1%;
  }
}
.chara_swiper__stand-vschange-item {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.37, 0, 0.63, 1);
}
.chara_swiper__stand-vschange-item img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.chara_swiper__stand-vschange-item.is-current {
  opacity: 1;
}
.chara_swiper__stand-vschange-item:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.chara_swiper__charaname {
  font-size: min(60px, 5vw);
  opacity: 0;
  transform: translateY(30px);
}
.swiper-slide-active .chara_swiper__charaname {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .chara_swiper__charaname {
    text-align: center;
    font-size: 35px;
  }
}
.chara_swiper__charaname span {
  display: inline-block;
  vertical-align: baseline;
  transform: scaleX(0.85);
  font-weight: 500;
  color: #997d26;
}
@media screen and (min-width: 768px) {
  .chara_swiper__charaname span {
    transform-origin: left;
  }
}
.chara_swiper__cv {
  color: #997d26;
  font-size: 20px;
  margin-top: 30px;
  letter-spacing: 2.5px;
  opacity: 0;
  transform: translateY(30px);
}
.swiper-slide-active .chara_swiper__cv {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}
@media screen and (max-width: 767px) {
  .chara_swiper__cv {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
  }
}
.chara_swiper__cv span {
  vertical-align: baseline;
}
.chara_swiper__cv-label {
  position: relative;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .chara_swiper__cv-label {
    padding-right: 10px;
  }
}
.chara_swiper__cv-label::before {
  content: "";
  width: 15px;
  height: 100%;
  position: absolute;
  top: 1px;
  right: -3px;
  background: url(../img/icon_sparkle.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .chara_swiper__cv-label::before {
    width: 10px;
    top: 0;
  }
}
.chara_swiper__prof {
  font-size: min(20px, 1.6666666667vw);
  letter-spacing: 0.5px;
  line-height: 2;
  margin-top: 39px;
  opacity: 0;
  transform: translateY(30px);
}
.swiper-slide-active .chara_swiper__prof {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .chara_swiper__prof {
    text-align: center;
    font-size: 13.5px;
    margin-top: 22px;
    line-height: 2.1;
  }
}
.chara_swiper__prof span {
  display: inline-block;
  vertical-align: baseline;
  transform: scaleX(0.85);
  letter-spacing: 3px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .chara_swiper__prof span {
    letter-spacing: 2.5px;
  }
}
@media screen and (min-width: 768px) {
  .chara_swiper__prof span {
    transform-origin: left;
  }
}
.chara_swiper__face {
  display: flex;
  margin-top: 38px;
  opacity: 0;
  transform: translateY(30px);
}
.swiper-slide-active .chara_swiper__face {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .chara_swiper__face {
    margin: 0 auto;
    width: 83%;
    margin-top: 22px;
  }
}
.chara_swiper__face-item {
  width: 47.5%;
}
.chara_swiper__face-item + .chara_swiper__face-item {
  margin-left: 5%;
}