@keyframes shake {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes fuyo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fuyo2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll2 {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll3 {
  0% {
    opacity: 0;
  }
  34% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll4 {
  0% {
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll5 {
  0% {
    opacity: 0;
  }
  68% {
    opacity: 0;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logo {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-6deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes bblFadInOut {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.p-story {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
.p-story__tab {
  margin-bottom: 70px;
  transform: translateY(40px);
  opacity: 0;
}
.is-active .p-story__tab {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 959px) {
  .p-story__tab {
    margin-bottom: 46px;
  }
}
.p-story__tab-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  .p-story__tab-list {
    justify-content: center;
  }
}
.p-story__tab-list-item {
  width: 9.5%;
  text-align: center;
  background-color: #dcddd8;
  margin-right: 0.55%;
  border-radius: 100px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), background 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-story__tab-list-item.is-current {
  background-color: #ff9810;
  pointer-events: none;
}
.p-story__tab-list-item.is-current a {
  color: #fff;
}
@media (hover: hover) {
  .p-story__tab-list-item:hover {
    transform: scale(0.97);
    background-color: #329fc8;
  }
}
@media screen and (min-width: 960px) {
  .p-story__tab-list-item {
    margin-top: 0.7%;
  }
  .p-story__tab-list-item:nth-child(10n) {
    margin-right: 0;
  }
  .p-story__tab-list-item:nth-child(n+1):nth-child(-n+10) {
    margin-top: 0;
  }
}
@media screen and (max-width: 959px) {
  .p-story__tab-list-item {
    width: 19%;
    margin-right: 1.2%;
    margin-top: 1.5%;
  }
  .p-story__tab-list-item:nth-child(5n) {
    margin-right: 0;
  }
  .p-story__tab-list-item:nth-child(n+1):nth-child(-n+5) {
    margin-top: 0;
  }
}
.p-story__tab-list-item:last-of-type {
  margin-right: 0;
}
.p-story__tab-list-item a {
  display: block;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 12px 0 12px;
}
@media screen and (max-width: 959px) {
  .p-story__tab-list-item a {
    padding: 11px 0 11px;
    font-size: 13px;
  }
}

.p-story_data {
  transform: translateY(40px);
  opacity: 0;
}
.is-active .p-story_data {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
.p-story_data__head {
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 100px;
  font-weight: 500;
  font-size: 18px;
  padding: 5px 0 7px;
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .p-story_data__head {
    font-size: 14px;
    padding: 5px 0 6px;
    margin-bottom: 29px;
  }
}
.p-story_data__ttl {
  line-height: 1.6;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 32px;
}
@media screen and (max-width: 959px) {
  .p-story_data__ttl {
    margin-bottom: 29px;
    font-size: 16px;
  }
}
.p-story_data__slider-pager {
  margin-top: 1.2%;
}
@media screen and (max-width: 959px) {
  .p-story_data__slider-pager {
    margin-top: 3%;
  }
}
.p-story_data__lead {
  line-height: 1.8;
  margin-top: 32px;
  font-weight: 500;
  letter-spacing: 0.4px;
}
@media screen and (max-width: 959px) {
  .p-story_data__lead {
    margin-top: 28px;
    font-size: 12px;
  }
}
.p-story_data__foot {
  display: flex;
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .p-story_data__foot {
    margin-top: 29px;
    display: block;
  }
}
.p-story_data__foot-box {
  width: 47.5%;
}
@media screen and (max-width: 959px) {
  .p-story_data__foot-box {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .p-story_data__foot-box + .p-story_data__foot-box {
    margin-left: 4.9%;
  }
}
@media screen and (max-width: 959px) {
  .p-story_data__foot-box + .p-story_data__foot-box {
    margin-top: 29px;
  }
}
.p-story_data__foot-head {
  color: #ff9810;
  border-bottom: 1px solid #ff9810;
  letter-spacing: 2.5px;
  padding-bottom: 10px;
  margin-bottom: 22px;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .p-story_data__foot-head {
    font-size: 11px;
    padding-bottom: 11px;
    margin-bottom: 14px;
  }
}
.p-story_data__staffarea-item {
  line-height: 1.75;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 959px) {
  .p-story_data__staffarea-item {
    font-size: 12px;
  }
}
.p-story_data__staffarea-item span {
  display: inline;
  vertical-align: baseline;
}
.p-story_data__movie {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  margin-top: 30px;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .p-story_data__movie {
    margin-top: 20px;
  }
}
@media (hover: hover) {
  .p-story_data__movie:hover .p-story_data__movie-thumb {
    transform: scale(1.05);
  }
  .p-story_data__movie:hover .p-story_data__movie-play {
    transform: translate(-50%, -50%) scale(0.95);
  }
  .p-story_data__movie:hover .p-story_data__movie-play .p-in_text {
    transform: rotate(360deg);
  }
}
.p-story_data__movie-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-story_data__movie-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31.5%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-story_data__movie-play {
    width: 28.5%;
  }
}
.p-story_data__movie-play .p-in_text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.story_swiper {
  overflow: hidden;
}

.pager_swiper {
  overflow: hidden;
}
.pager_swiper .swiper-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pager_swiper .swiper-wrapper .swiper-slide {
  width: 10%;
  padding-top: 8%;
  position: relative;
  -webkit-mask: url(../img/chara/btn_chara_bg.svg) no-repeat center center;
  mask: url(../img/chara/btn_chara_bg.svg) no-repeat center center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  margin: 1.5% 0.7% 0;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pager_swiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  pointer-events: none;
}
.pager_swiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::before, .pager_swiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active::after {
  opacity: 1;
}
@media (hover: hover) {
  .pager_swiper .swiper-wrapper .swiper-slide:hover {
    transform: scale(0.97);
  }
}
@media screen and (max-width: 959px) {
  .pager_swiper .swiper-wrapper .swiper-slide {
    width: 19%;
    padding-top: 16%;
    margin: 2% 1.5% 0;
  }
}
.pager_swiper .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(165, 136, 189, 0.7);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.pager_swiper .swiper-wrapper .swiper-slide::after {
  content: "NOW!";
  position: absolute;
  top: 63%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: "Arvo", serif;
  font-weight: 400;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .pager_swiper .swiper-wrapper .swiper-slide::after {
    font-size: 11px;
  }
}
.pager_swiper .swiper-wrapper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}