/************************************

reset

************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

li {
  list-style-type: none;
}

img {
  border: 0;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

address,
em {
  font-style: normal;
}

button {
  padding: 0;
  border: 0;
}

hr {
  border: 0;
  border-top: 1px solid #000;
}

/************************************

base

************************************/
html {
  font-size: 625%;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 580%;
  }
}

body {
  position: relative;
  background: #000;
  color: #000;
  font-family: sans-serif;
  font-size: .15rem;
}

a {
  color: inherit;
  transition: 0.2s all ease 0s;
}

p {
  line-height: 1.6;
}

p a {
  text-decoration: underline;
}

p a:hover {
  color: #ad0711;
  text-decoration: none;
}

sub {
  font-size: .7em;
  vertical-align: baseline;
}

img {
  max-width: 100%;
  height: auto;
}

.bg video {
  position: fixed;
  z-index: -1;
  bottom: 0;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
  transform: translate(-50%, 0);
}

.billing {
  color: #58473c;
}

.billing img {
  margin-right: .3em;
  transform: translate(0, -2px);
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .billing img {
    width: 17px;
  }
}

.billing.-billing01 {
  font-size: .13rem;
}

@media screen and (max-width: 767px) {
  .billing.-billing01 {
    font-size: .1rem;
  }
}

.billing.-billing02 {
  margin-top: .2em;
  font-size: .11rem;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .billing.-billing02 {
    font-size: .1rem;
  }
}

.bnr {
  display: flex;
  justify-content: center;
  padding: .2rem;
  background-color: #f7efe2;
}

@media screen and (max-width: 767px) {
  .bnr {
    flex-wrap: wrap;
    gap: .14rem;
  }
}

.bnr__item:not(:first-of-type) {
  margin: 0 0 0 .18rem;
}

@media screen and (max-width: 767px) {
  .bnr__item:not(:first-of-type) {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .bnr__item {
    flex-basis: 48%;
  }
}

.bridge img {
  width: 100%;
  max-width: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: .5em 2em;
  border: 1px solid #fff;
  text-decoration: none;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: .3em;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.btn-navi {
  display: block;
  width: .5rem;
  height: .5rem;
  border: 0;
  outline: 0;
  background: #000;
}

.btn-navi span {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 45%;
  height: 1px;
  margin: 0 auto;
  background: #fff;
}

.btn-navi span::before,
.btn-navi span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  transform-origin: center center;
  background: #fff;
  transition: 0.2s all ease 0s;
}

.btn-navi span::before {
  transform: translate(0, -0.08rem);
}

.btn-navi span::after {
  transform: translate(0, 0.08rem);
}

.is-open .btn-navi span {
  background: #000;
}

.is-open .btn-navi span::before {
  transform: translate(0, 0) rotate(-45deg);
}

.is-open .btn-navi span::after {
  transform: translate(0, 0) rotate(45deg);
}

.cast {
  display: flex;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .cast {
    flex-wrap: wrap;
  }
}

.cast__item {
  position: relative;
  z-index: 1;
  flex: 1;
}

.cast__item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ad0711;
}

@media screen and (max-width: 767px) {
  .cast__item {
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
  }
}

.cast__item span {
  display: inline-block;
  visibility: hidden;
  position: relative;
}

.cast__item span::before {
  content: "";
  display: inline-block;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transform-origin: right center;
  background: #000;
}

.cast__item.is-show span:nth-of-type(1) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
}

.cast__item.is-show span:nth-of-type(1)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
}

.cast__item.is-show span:nth-of-type(2) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
}

.cast__item.is-show span:nth-of-type(2)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
}

.cast__item.is-show span:nth-of-type(3) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
}

.cast__item.is-show span:nth-of-type(3)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
}

.cast__item.is-show span:nth-of-type(4) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.52s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.52s forwards;
}

.cast__item.is-show span:nth-of-type(4)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.52s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.52s forwards;
}

.cast__item.is-show span:nth-of-type(5) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.65s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.65s forwards;
}

.cast__item.is-show span:nth-of-type(5)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.65s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.65s forwards;
}

.cast__item:hover {
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .cast__item:hover img {
    transition: .2s ease opacity;
    opacity: .75;
  }
}

.caststaff {
  padding: 1rem .2rem;
  background: #f7efe2 url(../images/cast_bg.jpg) repeat-x center top 0.93rem;
}

@media screen and (max-width: 767px) {
  .caststaff {
    background-repeat: repeat-y;
  }
}

.caststaff__heading {
  margin-bottom: .3rem;
  text-align: center;
  opacity: 0;
}

.caststaff__heading img {
  height: 30px;
}

.caststaff__heading.is-show {
  -webkit-animation: fade .4s ease forwards;
  animation: fade .4s ease forwards;
}

.comment {
  padding: 1.3rem .2rem;
}

@media screen and (max-width: 767px) {
  .comment {
    padding: 1.3rem 0;
  }
}

.comment__container {
  max-width: 1280px;
  margin: 0 auto;
}

.comment__heading {
  text-align: center;
  opacity: 0;
}

.comment__heading img {
  height: 34px;
}

.comment__heading.is-show {
  -webkit-animation: fade .4s ease forwards;
  animation: fade .4s ease forwards;
}

.comment__notice {
  margin-top: .1rem;
  color: #fff;
  font-size: .12rem;
  text-align: center;
}

.comment__list {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .5rem;
}

@media screen and (max-width: 990px) {
  .comment__list {
    gap: .2rem;
  }
}

@media screen and (max-width: 767px) {
  .comment__list {
    flex-wrap: nowrap;
    gap: .1rem;
    padding: 0 .15rem;
    overflow-x: scroll;
  }
}

.comment__item {
  flex-basis: calc((100% - .6rem) / 3);
}

@media screen and (max-width: 990px) {
  .comment__item {
    flex-basis: calc((100% - .2rem) / 2);
  }
}

@media screen and (max-width: 767px) {
  .comment__item {
    flex-basis: 88%;
    flex-shrink: 0;
  }
}

.footer {
  padding: 1rem .2rem;
  background-color: #f7efe2;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: .7rem .2rem;
  }
}

.footer__billing {
  margin-top: .2rem;
}

.intro__inner {
  padding: .6rem .2rem 0 .2rem;
  background-color: #f7efe2;
}

.intro__container {
  max-width: 1280px;
  margin: 0 auto;
}

.intro__heading span {
  display: inline-block;
  visibility: hidden;
  position: relative;
}

.intro__heading span::before {
  content: "";
  display: inline-block;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transform-origin: right center;
  background: #000;
}

.intro__heading.is-show span:nth-of-type(1) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
}

.intro__heading.is-show span:nth-of-type(1)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
}

.intro__heading.is-show span:nth-of-type(2) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
}

.intro__heading.is-show span:nth-of-type(2)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
}

.intro__heading.is-show span:nth-of-type(3) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
}

.intro__heading.is-show span:nth-of-type(3)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
}

.intro__txt {
  margin-top: .3rem;
  -moz-column-gap: .35rem;
  column-gap: .35rem;
  -moz-column-rule: 1px solid #c6bfb5;
  column-rule: 1px solid #c6bfb5;
  -moz-column-count: 3;
  column-count: 3;
  text-align: justify;
  opacity: 0;
}

.intro__txt.is-show {
  -webkit-animation: fade .4s ease forwards;
  animation: fade .4s ease forwards;
}

@media screen and (max-width: 1000px) {
  .intro__txt {
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media screen and (max-width: 767px) {
  .intro__txt {
    -moz-column-count: 1;
    column-count: 1;
  }
}

.intro__photo img {
  width: 100%;
  max-width: none;
}

.main {
  background-color: rgba(0, 0, 0, 0.25);
}

.main__container {
  position: relative;
  height: 100vh;
  min-height: 740px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .main__container {
    height: 85vh;
    min-height: 560px;
  }
}

.main__title {
  position: absolute;
  top: 1rem;
  width: 100%;
  padding: 0 .2rem;
}

.main__info {
  position: absolute;
  bottom: .3rem;
  width: 100%;
  padding: 0 .2rem;
}

.main__date {
  max-width: 466px;
  margin: 0 auto;
}

.main__catch {
  margin-top: .15rem;
}

.main__bnr {
  display: none;
}

@-webkit-keyframes bnr {
  100% {
    opacity: 1;
  }
}

@keyframes bnr {
  100% {
    opacity: 1;
  }
}

.modal {
  display: none;
}

.modal__container {
  padding: .4rem;
  background: url(../images/bg.jpg) center center/cover;
}

.modal__position {
  display: inline-block;
  padding: .03rem;
  background-color: #ad0711;
  color: #fff;
  font-size: .16rem;
}

.modal__name {
  display: inline-block;
  padding: .03rem;
  background-color: #000;
  color: #fff;
  font-size: .26rem;
}

.modal__txt {
  margin-top: .2rem;
  line-height: 1.5;
}

.modal__btn {
  margin-top: .15rem;
  text-align: center;
}

.modal__close {
  display: inline-block;
  padding: .3em 2em;
  background-color: #ad0711;
  color: #fff;
}

.modal__close:hover {
  cursor: pointer;
}

.movie {
  padding: .5rem .2rem;
  background-color: rgba(0, 0, 0, 0.9);
}

.movie__container {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.slick-dotted.slick-slider {
  margin-bottom: .2rem;
}

.movie__inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.movie__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie-switch {
  display: flex;
}

.movie-switch__btn {
  flex: 1;
  padding: .1rem;
  border: 1px solid #ad0711;
  color: #ad0711;
  text-align: center;
}

.movie-switch__btn.active {
  background: #ad0711;
  color: #fff;
}

.movie-switch__btn:hover {
  cursor: pointer;
}

.movie__control {
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie__arrow {
  color: #fff;
}

.movie__arrow span {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.movie__arrow.-left span {
  transform: rotate(-135deg);
}

.movie__arrow.-right span {
  transform: rotate(45deg);
}

.movie__arrow:hover {
  cursor: pointer;
}

.movie__dots {
  position: relative;
  margin: 0 .35rem;
}

.movie__dots .slick-dots {
  position: relative;
  bottom: 0;
}

.movie__dots .slick-dots li {
  height: 25px;
}

.movie__dots .slick-dots li.slick-active button::before {
  opacity: 1;
  color: #ad0711;
}

.movie__dots .slick-dots li button::before {
  opacity: .4;
  color: #fff;
  font-size: 8px;
}

.navigation {
  position: absolute;
  z-index: 5;
  top: .2rem;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .navigation {
    position: fixed;
    top: 0;
  }
}

.navigation__btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .navigation__btn {
    display: block;
    position: absolute;
    z-index: 60;
    top: 0;
    right: 0;
  }
}

.navigation__container {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .navigation__container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.86, 0, 0.07, 1) height;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    gap: 0;
  }

  .is-open .navigation__container {
    height: 100vh;
  }
}

.navigation__item {
  position: relative;
  z-index: 1;
  color: #fff;
}

.navigation__item:not(:first-of-type) {
  margin: 0 0 0 4.5vw;
}

@media screen and (max-width: 767px) {
  .navigation__item:not(:first-of-type) {
    margin: .3rem 0 0 0;
    transform: translate(0, -10px);
    transition: .2s ease all;
    opacity: 0;
    pointer-events: none;
  }

  .is-open .navigation__item:not(:first-of-type) {
    pointer-events: all;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(1) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.05s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(2) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.1s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(3) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.15s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(4) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.2s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(5) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.25s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(6) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.3s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(7) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.35s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(8) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.4s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(9) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.45s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(10) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.5s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(11) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.55s;
    opacity: 1;
  }

  .is-open .navigation__item:not(:first-of-type):nth-of-type(12) {
    transform: translate(0, 0);
    transition: 0.4s ease all 0.6s;
    opacity: 1;
  }
}

.navigation__item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ad0711;
  transition: 0.2s all ease 0s;
}

@media screen and (min-width: 769px) {
  .navigation__item:hover::after {
    width: 100%;
  }
}

.photo {
  display: flex;
}

@media screen and (max-width: 767px) {
  .photo {
    flex-wrap: wrap;
  }
}

.photo__item {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .photo__item {
    flex-basis: 50%;
  }
}

.staff {
  display: flex;
  justify-content: center;
  max-width: 820px;
  margin: .4rem auto 0 auto;
}

@media screen and (max-width: 767px) {
  .staff {
    display: block;
    max-width: 80%;
  }
}

.staff__item {
  position: relative;
  z-index: 1;
  flex: 1;
}

.staff__item::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ad0711;
}

.staff__item:not(:first-of-type) {
  margin: 0 0 0 .3rem;
}

@media screen and (max-width: 767px) {
  .staff__item:not(:first-of-type) {
    margin: .05rem 0 0 0;
  }
}

.staff__item span {
  display: inline-block;
  visibility: hidden;
  position: relative;
}

.staff__item span::before {
  content: "";
  display: inline-block;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transform-origin: right center;
  background: #000;
}

.staff__item.is-show span:nth-of-type(1) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
}

.staff__item.is-show span:nth-of-type(1)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
}

.staff__item.is-show span:nth-of-type(2) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
}

.staff__item.is-show span:nth-of-type(2)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
}

.staff__item.is-show span:nth-of-type(3) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
}

.staff__item.is-show span:nth-of-type(3)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
}

.staff__item:hover {
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .staff__item:hover img {
    transition: .2s ease opacity;
    opacity: .75;
  }
}

.story {
  padding: 1.3rem .2rem;
}

.story__heading {
  text-align: center;
  opacity: 0;
}

.story__heading img {
  height: 34px;
}

.story__heading.is-show {
  -webkit-animation: fade .4s ease forwards;
  animation: fade .4s ease forwards;
}

.story__sub-heading {
  display: inline-block;
  margin-bottom: .4em;
  padding: .3em .5em;
  background-color: #ad0711;
}

.story__container {
  display: flex;
  max-width: 812px;
  margin: .3rem auto 0 auto;
}

.story__catch {
  opacity: 0;
}

.story__catch.is-show {
  -webkit-animation: fade .4s ease forwards;
  animation: fade .4s ease forwards;
}

@media screen and (max-width: 767px) {
  .story__catch {
    flex-basis: 27%;
  }
}

.story__content {
  flex: 1;
  margin: 0 0 0 .44rem;
}

@media screen and (max-width: 767px) {
  .story__content {
    margin: 0 0 0 .2rem;
  }
}

.story__item {
  color: #fff;
}

.story__item p {
  text-align: justify;
}

.story__item em {
  padding: .1em .2em;
  background-color: #ad0711;
}

.story__item+.story__item {
  margin-top: .8rem;
}

.story__item span {
  display: inline-block;
  visibility: hidden;
  position: relative;
}

.story__item span::before {
  content: "";
  display: inline-block;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transform-origin: right center;
  background: #000;
}

.story__item.is-show span:nth-of-type(1) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
}

.story__item.is-show span:nth-of-type(1)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.13s forwards;
}

.story__item.is-show span:nth-of-type(2) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
}

.story__item.is-show span:nth-of-type(2)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.26s forwards;
}

.story__item.is-show span:nth-of-type(3) {
  -webkit-animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
  animation: catchText 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
}

.story__item.is-show span:nth-of-type(3)::before {
  -webkit-animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
  animation: catchFrame 0.7s cubic-bezier(0.86, 0, 0.07, 1) 0.39s forwards;
}

.story__column {
  display: flex;
}

@media screen and (max-width: 767px) {
  .story__column {
    display: block;
  }
}

.story__column-txt {
  flex: 1;
  margin: 0 .22rem 0 0;
}

@media screen and (max-width: 767px) {
  .story__column-txt {
    margin: 0 0 .22rem 0;
  }
}

.story__book {
  display: flex;
}

@media screen and (max-width: 767px) {
  .story__book {
    display: block;
  }
}

.story__book-txt {
  flex: 1;
  margin: 0 0 0 .22rem;
}

@media screen and (max-width: 767px) {
  .story__book-txt {
    margin: .22rem 0 0 0;
  }
}

.story__book-heading {
  margin-top: .2em;
  font-size: .21rem;
  font-weight: bold;
  line-height: 1.2;
}

.story__book-info01 {
  margin-top: .1rem;
  font-size: .8em;
  line-height: 1.3;
}

.story__book-info02 {
  margin-top: .06rem;
  line-height: 1.2;
}

.story__boo-btn {
  margin-top: .18rem;
}

.ticket {
  padding: .2rem .2rem 0 .2rem;
  background-color: rgba(0, 0, 0, 0.9);
}

.ticket #mvtk-widgets-container {
  margin: 0 auto;
}

.wrap {
  background-color: rgba(0, 0, 0, 0.64);
}

@-webkit-keyframes catchFrame {
  0% {
    width: 0%;
    transform: scaleX(1);
  }

  40% {
    width: 100%;
    transform: scaleX(1);
  }

  60% {
    width: 100%;
    transform: scaleX(1);
  }

  100% {
    width: 100%;
    transform: scaleX(0);
  }
}

@keyframes catchFrame {
  0% {
    width: 0%;
    transform: scaleX(1);
  }

  40% {
    width: 100%;
    transform: scaleX(1);
  }

  60% {
    width: 100%;
    transform: scaleX(1);
  }

  100% {
    width: 100%;
    transform: scaleX(0);
  }
}

@-webkit-keyframes catchText {
  0% {
    visibility: hidden;
  }

  40% {
    visibility: hidden;
  }

  60% {
    visibility: visible;
  }

  100% {
    visibility: visible;
  }
}

@keyframes catchText {
  0% {
    visibility: hidden;
  }

  40% {
    visibility: hidden;
  }

  60% {
    visibility: visible;
  }

  100% {
    visibility: visible;
  }
}

@-webkit-keyframes fade {
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  100% {
    opacity: 1;
  }
}

/************************************

Display switch

************************************/
.pc-block {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp-block {
  display: none;
}

.sp-inline {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-block {
    display: none;
  }

  .sp-block {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .pc-inline {
    display: none;
  }

  .sp-inline {
    display: inline;
  }
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  overflow: hidden;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  display: block;
  max-width: none;
  margin: auto;
  float: left;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  opacity: .5;
  background: #000;
}

#colorbox {
  outline: 0;
}

#cboxContent {
  margin-bottom: 100px;
  overflow: visible;
  background: none;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  padding: 0;
  background: none;
}

#cboxLoadingGraphic {
  /* background:url(images/loading.gif) no-repeat center center; */
}

#cboxLoadingOverlay {
  background: #fff;
}

#cboxTitle {
  position: absolute;
  top: -22px;
  left: 0;
  color: #fff;
}

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  position: absolute;
  top: -20px;
  /* background:url(images/controls.png) no-repeat 0 0; */
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  text-indent: -9999px;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxPrevious {
  right: 44px;
  background-position: 0 0;
}

#cboxPrevious:hover {
  background-position: 0 -25px;
}

#cboxNext {
  right: 22px;
  background-position: -25px 0;
}

#cboxNext:hover {
  background-position: -25px -25px;
}

#cboxClose {
  top: auto;
  bottom: -66px;
  left: calc(50% - 29px);
  width: 58px;
  height: 58px;
  background: url(../images/close.svg) no-repeat center center;
}

.cboxSlideshow_on #cboxPrevious,
.cboxSlideshow_off #cboxPrevious {
  right: 66px;
}

.cboxSlideshow_on #cboxSlideshow {
  right: 44px;
  background-position: -75px -25px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -100px -25px;
}

.cboxSlideshow_off #cboxSlideshow {
  right: 44px;
  background-position: -100px 0;
}

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -75px -25px;
}

/************************************

Color box override

************************************/
#colorbox {
  box-shadow: none;
}

#cboxOverlay {
  background: #000;
}

#cboxLoadingOverlay {
  background: #000;
}

#cboxContent {
  margin-bottom: 0;
}

#cboxClose {
  display: none;
  top: auto;
  bottom: -40px;
  left: 50%;
  width: auto;
  height: auto;
  padding: .3em 3.5em;
  transform: translate(-50%, 0);
  border: 1px solid #f7efe2;
  background: none;
  color: #f7efe2;
  font-family: sans-serif;
  font-size: .115rem;
  text-indent: 0;
}