@charset "utf-8";
/************************************************

@style.css v5.0.0

(c) ULM Co.,Ltd. - https://www.ulm-design.com
************************************************/

/*-------------------------------

#top

-------------------------------*/
img,
source {
  vertical-align: bottom;
  width: 100%;
}

#main {
  opacity: 0;
  overflow: hidden;
}

#top {
  width: 100%;
  position: relative;
}

#wb-logo {
  position: absolute;
  top: 2vw;
  left: 2vw;
  z-index: 6;
  z-index: 6;
}

#wb-logo img {
  width: 40px;
  height: auto;
}

#tw-link {
  position: absolute;
  top: 3vw;
  right: 4vw;
  z-index: 6;
}

.tw-link-icon {
  font-size: 25px;
  color: #d40e1f;
}

.tw-link-icon:hover {
  opacity: 0.8;
}

#top-main {
  position: relative;
  height: 70vh;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  /* flex-wrap: wrap; */
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.top-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/overlay.png) repeat;
  background-size: 2px 2px;
  opacity: 0.7;
  z-index: 5;
}

.top-video {
  width: 100%;
  height: 100%;
}

#top-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#main-txt {
  position: absolute;
  /*top:10%;*/
  left: 0;
  right: 0;
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
  z-index: 11;
  opacity: 0;
}

#copy {
  padding: 10% 3% 5%;
}

#logo {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 1%;
}

#bnr{
  width: 80%;
  margin: 0 auto;
  padding: 5% 0 0;
  cursor: pointer;
  transition: all .4s;
}

#bnr:hover{
  opacity: 0.7;
}

#billing {
  padding: 0;
}

#roadshow {
  padding: 0 15% 3%;
}

.wb-icon {
  display: none;
}

.fadein {
  opacity: 0;
}

#main-txt.anime,
.btn-list li.anime {
  animation: fadein 600ms ease-in forwards 400ms;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#main-img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10%, 0);
  opacity: 0;
}

#main-img.anime {
  animation: slidein 400ms ease-in forwards 800ms;
}

@keyframes slidein {
  0% {
    transform: translate(-10%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.maeuri-container {
  position: relative;
  z-index: 1;
}

.maeuri-list {
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 0 0;
  z-index: 1;
  flex-wrap: nowrap;
}

.maeuri-list li a {
  margin: 10px auto;
  display: block;
  width: 85%;
}

.maeuri-list li a:hover {
  opacity: 0.8;
}

.glitch_letter {
  display: inline-block;
  margin: 0;

  font-size: 35px;
  color: white;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Noto Serif JP", serif;
}

.lead {
  width: 67%;
  margin: 0 auto calc(25 / 768 * 100vw);
}

#hashtag {
  text-align: center;
  padding: 30px 0 0 0;
  font-size: 15px;
  font-weight: bold;
}

#hashtag a {
  color: #fff;
  letter-spacing: 4px;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#hashtag a:hover {
  color: #b90001;
  display: block;
}

.glitch {
  display: block;
  margin: 10px 0 0 0;
}

.glitch {
  position: relative;
  color: white;
  font-size: 2.3em;
  letter-spacing: 0.2em;
  /* Animation provies a slight random skew. Check bottom of doc
  for more information on how to random skew. */
  animation: glitch-skew 10s infinite linear alternate-reverse;
  font-family: "Noto Serif JP", serif;
}
.glitch::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: 2px;
  text-shadow: -2px 0 #ff00c1;
  /* Creates an initial clip for our glitch. This works in
  a typical top,right,bottom,left fashion and creates a mask
  to only show a certain part of the glitch at a time. */
  clip: rect(44px, 450px, 56px, 0);
  /* Runs our glitch-anim defined below to run in a 5s loop, infinitely,
  with an alternating animation to keep things fresh. */
  animation: glitch-anim 5s infinite linear alternate-reverse;
  opacity: 0.4;
}
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: -2px;
  text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
  animation: glitch-anim2 3s infinite linear alternate-reverse;
  opacity: 0.4;
}

/* Creates an animation with 20 steaps. For each step, it calculates 
a percentage for the specific step. It then generates a random clip
box to be used for the random glitch effect. Also adds a very subtle
skew to change the 'thickness' of the glitch.*/
@keyframes glitch-anim {
  0% {
    clip: rect(84px, 9999px, 8px, 0);
    transform: skew(0.17deg);
  }
  5% {
    clip: rect(81px, 9999px, 11px, 0);
    transform: skew(0.77deg);
  }
  10% {
    clip: rect(49px, 9999px, 59px, 0);
    transform: skew(0.51deg);
  }
  15% {
    clip: rect(84px, 9999px, 16px, 0);
    transform: skew(0.24deg);
  }
  20% {
    clip: rect(5px, 9999px, 99px, 0);
    transform: skew(0.26deg);
  }
  25% {
    clip: rect(12px, 9999px, 41px, 0);
    transform: skew(0.55deg);
  }
  30% {
    clip: rect(87px, 9999px, 76px, 0);
    transform: skew(0.69deg);
  }
  35% {
    clip: rect(12px, 9999px, 45px, 0);
    transform: skew(0.69deg);
  }
  40% {
    clip: rect(4px, 9999px, 33px, 0);
    transform: skew(0.2deg);
  }
  45% {
    clip: rect(12px, 9999px, 68px, 0);
    transform: skew(0.75deg);
  }
  50% {
    clip: rect(49px, 9999px, 79px, 0);
    transform: skew(0.8deg);
  }
  55% {
    clip: rect(8px, 9999px, 84px, 0);
    transform: skew(0.14deg);
  }
  60% {
    clip: rect(41px, 9999px, 16px, 0);
    transform: skew(0.27deg);
  }
  65% {
    clip: rect(41px, 9999px, 13px, 0);
    transform: skew(0.47deg);
  }
  70% {
    clip: rect(25px, 9999px, 40px, 0);
    transform: skew(0.44deg);
  }
  75% {
    clip: rect(59px, 9999px, 11px, 0);
    transform: skew(0.7deg);
  }
  80% {
    clip: rect(91px, 9999px, 11px, 0);
    transform: skew(0.72deg);
  }
  85% {
    clip: rect(34px, 9999px, 16px, 0);
    transform: skew(0.81deg);
  }
  90% {
    clip: rect(95px, 9999px, 38px, 0);
    transform: skew(0.66deg);
  }
  95% {
    clip: rect(73px, 9999px, 94px, 0);
    transform: skew(0.17deg);
  }
  100% {
    clip: rect(70px, 9999px, 49px, 0);
    transform: skew(0.5deg);
  }
}
@keyframes glitch-anim2 {
  0% {
    clip: rect(33px, 9999px, 29px, 0);
    transform: skew(0.86deg);
  }
  5% {
    clip: rect(12px, 9999px, 7px, 0);
    transform: skew(0.16deg);
  }
  10% {
    clip: rect(8px, 9999px, 11px, 0);
    transform: skew(0.02deg);
  }
  15% {
    clip: rect(55px, 9999px, 20px, 0);
    transform: skew(1deg);
  }
  20% {
    clip: rect(33px, 9999px, 27px, 0);
    transform: skew(0.15deg);
  }
  25% {
    clip: rect(91px, 9999px, 7px, 0);
    transform: skew(0.57deg);
  }
  30% {
    clip: rect(14px, 9999px, 90px, 0);
    transform: skew(0.55deg);
  }
  35% {
    clip: rect(23px, 9999px, 95px, 0);
    transform: skew(0.12deg);
  }
  40% {
    clip: rect(65px, 9999px, 12px, 0);
    transform: skew(0.35deg);
  }
  45% {
    clip: rect(55px, 9999px, 12px, 0);
    transform: skew(0.68deg);
  }
  50% {
    clip: rect(70px, 9999px, 36px, 0);
    transform: skew(0.18deg);
  }
  55% {
    clip: rect(3px, 9999px, 72px, 0);
    transform: skew(0.37deg);
  }
  60% {
    clip: rect(75px, 9999px, 56px, 0);
    transform: skew(0.51deg);
  }
  65% {
    clip: rect(63px, 9999px, 7px, 0);
    transform: skew(0.47deg);
  }
  70% {
    clip: rect(14px, 9999px, 64px, 0);
    transform: skew(0.88deg);
  }
  75% {
    clip: rect(65px, 9999px, 64px, 0);
    transform: skew(0.2deg);
  }
  80% {
    clip: rect(36px, 9999px, 24px, 0);
    transform: skew(0.13deg);
  }
  85% {
    clip: rect(54px, 9999px, 25px, 0);
    transform: skew(0.05deg);
  }
  90% {
    clip: rect(22px, 9999px, 30px, 0);
    transform: skew(0.62deg);
  }
  95% {
    clip: rect(72px, 9999px, 73px, 0);
    transform: skew(0.57deg);
  }
  100% {
    clip: rect(48px, 9999px, 60px, 0);
    transform: skew(0.35deg);
  }
}
@keyframes glitch-skew {
  0% {
    transform: skew(3deg);
  }
  10% {
    transform: skew(-2deg);
  }
  20% {
    transform: skew(3deg);
  }
  30% {
    transform: skew(4deg);
  }
  40% {
    transform: skew(1deg);
  }
  50% {
    transform: skew(-3deg);
  }
  60% {
    transform: skew(-1deg);
  }
  70% {
    transform: skew(0deg);
  }
  80% {
    transform: skew(-2deg);
  }
  90% {
    transform: skew(1deg);
  }
  100% {
    transform: skew(4deg);
  }
}

.r18 {
  position: absolute;
  bottom: 2vw;
  width: 50px;
  right: 2vw;
  z-index: 11;
  opacity: 0;
}

.point-bnr {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 6;
  max-width: 100px;
  width: 40vw;
  cursor: pointer;
  opacity: 0;
}

.point-bnr a:hover,
.theater-bnr a:hover {
  animation: btn-anime 0.4s infinite;
  opacity: .6;
}

.sub-bnr {
    position: absolute;
    bottom: 150px;
    right: 5px;
    z-index: 6;
    max-width: 200px;
    width: 30vw;
    opacity: 0;
}

.sub-bnr a:hover {
  animation: btn-anime 0.4s infinite;
  opacity: .6;
}

@keyframes btn-anime {
  0% {
      transform: translate(1px, 1px);
  }
  25% {
      transform: translate(1px, -1px);
  }
  50% {
      transform: translate(-1px, -1px);
  }
  75% {
      transform: translate(-1px, 1px);
  }
  100% {
      transform: translate(1px, 1px);
  }
}

.sub-bnr-sp {
    width: 95%;
    margin: 0 auto;
    display: flex;
    padding: 7vw 0 0;
}

.sub-bnr-img {
  display: block;
    width: 40%;
    margin: 0 auto;
    max-width: 250px;
    cursor: pointer;
}

.theater-bnr {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  max-width: 140px;
  width: 40vw;
  cursor: pointer;
  opacity: 0;
}

/* PC */
@media screen and (min-width: 1024px) {
  #wb-logo {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 6;
  }

  #wb-logo img {
    width: 50px;
    height: auto;
  }

  #tw-link {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 6;
  }

  .tw-link-icon {
    font-size: 45px;
    color: #d40e1f;
  }

  #top-main {
    height: 100vh;
    max-height: 1024px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    /* flex-wrap: wrap; */
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }

  #main-txt {
    width: 75vw;
    max-width: 870px;
  }

  #copy {
    padding: 10% 5% 5%;
  }

  #logo {
    width: 90%;
    max-width: 600px;
  }

  #bnr{
    width: 80%;
    max-width: 450px;
  }

  #billing {
    padding: 0;
  }

  #roadshow {
    padding: 1% 15% 3%;
    margin: 0 0 2%;
  }

  #twi-btn {
    top: 65%;
    left: 54%;
  }

  #twi-btn a {
    font-size: 1.4vw;
  }

  #twi-btn .btn-txt {
    letter-spacing: 0.2em;
    margin-left: 0.2em;
    line-height: 1.2em;
  }

  .wb-icon {
    width: 80px;
    position: absolute;
    right: 10px;
    bottom: 10px;
  }

  .glitch {
    letter-spacing: 0.5em;
  }

  .lead {
    width: 68%;
    margin: 0 auto 20px;
  }

  .r18 {
    position: absolute;
    bottom: 65px;
    width: 100px;
    right: 2vw;
    z-index: 11;
    opacity: 0;
  }

  .point-bnr {
    position: absolute;
    bottom: 170px;
    left: 20px;
    z-index: 6;
    max-width: 200px;
    width: 40vw;
  }
	
.theater-bnr {
    position: fixed;
    bottom: 68px;
    left: 43px;
    z-index: 99;
    max-width: 160px;
    width: 40vw;
    opacity: 0;
}

	

  #hashtag {
    font-size: 20px;
  }
}

@media screen and (max-width: 1280px) {
	
.sub-bnr {
    position: absolute;
    bottom: 150px;
    right: 5px;
    z-index: 6;
    max-width: 140px;
    width: 30vw;
    opacity: 0;
}
}


/*-------------------------------

add bule-ray&dvd section (.c-delivery)

-------------------------------*/

.c-delivery {
  width: 100%;
  background: #000;
  position: relative;
  padding: 40px 0 0;
}

.c-delivery:after {
  content: "";
  width: 100%;
  height: 100%;
  /* background:  url(../img/bg/bgmovie-dot.png) repeat; */
  position: absolute;
  top: 0;
  left: 0;
}

.delivery-top {
  width: 80%;
  max-width: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.delivery-top__title {
  text-align: center;
  font-size: 30px;
  color: #bc191b;
  margin: 50px 0;
}

.delivery-top__movie {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.delivery-top__movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.delivery-top__bnr {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.delivery-top__bnr li {
  width: 12%;
  margin: 1px;
}

.delivery-top__bnr li a {
  width: 100%;
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  cursor: pointer;
  border: solid 1px #fff;
}

.delivery-top__bnr li a:hover {
  opacity: 0.8;
}

.delivery-top__bnr li a figure {
  width: 100%;
}

.delivery-top__bnr li a figure img {
  width: 100%;
  vertical-align: bottom;
}

.delivery-bottom {
  width: 80%;
  max-width: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.delivery-bottom__ttl {
  text-align: center;
  font-size: 26px;
  color: #bc191b;
  margin: 50px 0 20px;
}

.sp {
  display: none;
}

.delivery-bottom__contents {
  display: flex;
  justify-content: center;
}

.delivery-bottom__img {
  width: 35%;
  margin: 2%;
}

.delivery-bottom__img img {
  width: 100%;
  vertical-align: bottom;
}

.delivery-bottom__text {
  width: 55%;
  display: flex;
  flex-direction: column;
  margin: 2%;
}

.delivery-bottom__text div {
  color: #fff;
}

.delivery-bottom__text div p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.delivery-bottom__text div ul {
  list-style: none;
}

.delivery-bottom__text div ul li {
  color: #f2b530;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.delivery-bottom__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 20px auto 0;
  padding: 10px 0;
  text-decoration: none;
  border: solid 2px #fff;
  color: #fff;
  transition: all 0.4s;
}

.delivery-bottom__btn:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.delivery-bottom__btn p {
  font-size: 24px;
}

.delivery-bottom__notes {
  font-size: 12px;
  color: #fff;
  text-align: center;
  margin: 20px auto 0;
}

.delivery-bottom__bnr {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  margin: 20px auto 0;
}

.delivery-bottom__bnr li {
  width: 24%;
  margin: 1px;
}

.delivery-bottom__bnr li a {
  width: 100%;
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  cursor: pointer;
  border: solid 1px #fff;
}

.delivery-bottom__bnr li a:hover {
  opacity: 0.8;
}

.delivery-bottom__bnr li a figure {
  width: 100%;
}

.delivery-bottom__bnr li a figure img {
  width: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 1100px) {
  .delivery-top__title {
    margin: 30px 0;
  }

  .delivery-top__bnr li {
    width: 24%;
    margin: 2px;
  }

  .delivery-bottom__ttl {
    margin: 30px 0 15px;
  }
}

@media only screen and (max-width: 768px) {
  .c-delivery {
    width: 100%;
    background: #000;
    position: relative;
    padding: calc(40 / 750 * 100vw) 0 0;
  }

  .delivery-bottom__contents {
    flex-direction: column;
  }

  .delivery-bottom__ttl {
    line-height: 1.5;
  }

  .sp {
    display: block;
  }

  .delivery-bottom__img {
    width: 80%;
    margin: 2% auto;
  }

  .delivery-bottom__text {
    width: 90%;
    margin: 2% auto;
  }
}

@media only screen and (max-width: 500px) {
  .delivery-top__title {
    margin: 15px 0;
    font-size: 16px;
  }

  .delivery-top__bnr li {
    width: 45%;
    margin: 5px;
  }

  .delivery-bottom__ttl {
    font-size: 16px;
    margin: 15px 0 0;
  }

  .delivery-bottom__text div p {
    font-size: 14px;
  }

  .delivery-bottom__text div ul li {
    font-size: 14px;
  }

  .delivery-bottom__btn {
    width: 65%;
    margin: 15px auto 0;
    padding: 15px 0;
  }

  .delivery-bottom__btn p {
    font-size: 18px;
  }

  .delivery-bottom__notes {
    font-size: 14px;
    margin: 15px auto 0;
  }

  .delivery-bottom__bnr li {
    width: 45%;
    margin: 5px;
  }
}


/*-------------------------------

#movie

-------------------------------*/
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  display: none;
}

#trailer {
  background: #000000;
  padding: calc(90 / 768 * 100vw) 0 0;
}

.trailer-contents {
  width: 100%;
  margin: 0 auto;
}

.trailer-contents li {
  display: none;
  opacity: 0;
  width: 80%;
  height: 0;
  padding-bottom: 45%;
  position: relative;
  border: solid 1px #250206;
  border-radius: 2px;
  margin: 0 auto;
}

.trailer-contents li iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.trailer-nav {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  /*-ms-flex-direction: column;
  flex-direction: column;*/
  padding: 10px 0 40px;
  margin: 0 auto;
	flex-wrap: wrap;
}

.trailer-nav li {
  padding: 15px 5px;
  text-align: center;
  color: #c9caca;
  font-size: calc(27 / 768 * 100vw);
  font-weight: bold;
  border: solid 1px #8d8e8e;
  width: 45%;
  -webkit-transition: 0.4s all;
  -o-transition: 0.4s all;
  transition: 0.4s all;
  cursor: pointer;
  margin: 5px;
  line-height: 1.4;
}

.trailer-nav li:hover {
  background-color: #8d8e8e;
  color: #000;
}

/* PC */
@media screen and (min-width: 1024px) {
  #trailer {
    width: 100%;
    background: #000000;
    padding: 90px 0 0;
  }

  .trailer-contents {
    width: 80%;
  }

  .trailer-nav {
    width: 65%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    padding: 20px 0 0;
  }

  .trailer-nav li {
    font-size: 15px;
    width: 30%;
    padding: 20px 0;
    margin: 10px;
  }
}

/*-------------------------------

list

-------------------------------*/

.l-section {
  width: 100%;
  margin: 0 auto;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: calc(60 / 768 * 100vw) 0;
}

.l-section__inner {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width:1280px;
}

.l-section__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-section__ttlTxt {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 5px;
  text-indent: 5px;
  padding: 0 2px;
  border-bottom: 1px solid;
  -webkit-border-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#cd0000),
    to(#1192be)
  );
  -webkit-border-image: -webkit-linear-gradient(left, #cd0000 0%, #1192be 100%);
  -o-border-image: linear-gradient(to right, #cd0000 0%, #1192be 100%);
  border-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#cd0000),
    to(#1192be)
  );
  border-image: linear-gradient(to right, #cd0000 0%, #1192be 100%);
  border-image-slice: 1;
}

.p-info {
  color: #fff;
}

.p-info__box {
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}

.c-tabInfo__selector {
  margin: 0 auto 30px;
}

.c-tabInfo__selectorList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.c-tabInfo__selectorItem {
  font-size: 16px;
  letter-spacing: 3px;
  -webkit-transition: all 0.3s cubic-bezier(0, 0.55, 0.45, 1);
  transition: all 0.3s cubic-bezier(0, 0.55, 0.45, 1);
  padding: 10px 5px;
  border-bottom: 2px solid #fff;
  width: calc(100% / 3 - 5px);
  text-align: center;
  cursor: pointer;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", serif;
}

.c-tabInfo__selectorItem:hover {
  background: #fff;
  color: #c51e1b;
}

.c-tabInfo__item a {
  color: #fff;
}

.c-tabInfo__selectorItem.-on {
  color: #c51e1b;
  cursor: inherit;
  pointer-events: none;
  border-bottom: 2px solid #c51e1b;
}

.c-tabInfo__content {
  margin: 30px auto 0;
  display: none;
}

.c-tabInfo__content.-on {
  display: block;
}

.c-tabInfo__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
}

.c-tabInfo__item {
  width: calc(100% / 4 - 10px);
  margin: 0 10px 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0, 0.55, 0.45, 1);
  transition: all 0.3s cubic-bezier(0, 0.55, 0.45, 1);
}

.c-tabInfo__item:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.c-tabInfo__img {
  width: 100%;
  border: 1px solid #c9caca;
}

.c-tabInfo__txt {
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 0 0;
  text-align: center;
}

.more-btn,
.close-btn {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: underline;
  margin: 24px 0 0;
}

.more-btn:hover,
.close-btn:hover {
  color: #c51e1b;
}

@media only screen and (max-width: 500px) {
  .l-section {
    padding: 60px 0;
  }
  .l-section__ttlTxt {
    font-size: 6vw;
  }
  .c-tabInfo__selectorItem {
    font-size: 3vw;
    letter-spacing: 0;
  }
  .c-tabInfo__item {
    width: calc(100% / 2 - 10px);
    margin: 0 1vw 5vw;
  }
  .more-btn {
    margin: 3vw 0 0;
  }
}

/*-------------------------------

info

-------------------------------*/
#info {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(60 / 768 * 100vw) 0;
}

#info a {
  display: block;
  text-decoration: none;
  width: 45%;
  margin: 0 calc(12.5 / 768 * 100vw);
  cursor: pointer;
  transition: 0.4s all;
}

#info a:hover {
  opacity: 0.7;
}

#info a figure {
  width: 100%;
}

/* PC */
@media screen and (min-width: 1024px) {
  #info {
    padding: 60px 0;
  }

  #info a {
    width: 15%;
    margin: 0 10px;
  }
}

/*-------------------------------

intro

-------------------------------*/
#intro {
  width: 100%;
  background: #000;
}

.intro-top {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(20 / 768 * 100vw) 0;
}

.intro-top figure:first-child {
  width: 100%;
}

.intro-top figure:last-child {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.intro-top figure:last-child img {
  opacity: 0;
}

.intro-middle {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(200 / 768 * 100vw) 0 calc(600 / 768 * 100vw);
  overflow: hidden;
}

.intro-middle picture:first-child {
  display: block;
  width: 100%;
}

.intro-middle p {
  width: 90%;
  position: absolute;
  z-index: 10;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", serif;
  font-size: calc(28 / 768 * 100vw);
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-align: justify;
  word-break: break-all;
}

.intro-middle p span {
  opacity: 0;
}

.intro-middle picture:last-child {
  display: block;
  position: absolute;
  bottom: 5%;
  z-index: 10;
  width: 90%;
}

.intro-middle picture:last-child img,
.intro-middle picture:last-child source {
  opacity: 0;
}

.intro-bottom {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(20 / 768 * 100vw) 0;
}

.intro-bottom picture {
  display: block;
  width: 100%;
}

.intro-bottom figure {
  width: 50%;
  position: absolute;
  top: 45%;
  left: 33%;
  transform: translate(-50%, -50%);
}

.intro-bottom figure img {
  opacity: 0;
}

/* PC */
@media screen and (min-width: 1024px) {
  #intro {
  }

  .intro-top {
    padding: 0 0;
  }

  .intro-top figure:last-child {
    width: 15%;
  }

  .intro-middle {
    padding: 0 0 calc(280 / 1440 * 100vw);
  }

  .intro-middle p {
    width: 75%;
    font-size: 18px;
    color: #fff;
    line-height: 2.3;
  }

  .intro-middle picture:last-child {
    bottom: 5%;
    width: 73%;
  }

  .intro-bottom {
    padding: 50px 0;
  }

  .intro-bottom figure {
    width: 33%;
    position: absolute;
    top: 50%;
    left: 33%;
    transform: translate(-50%, -50%);
  }
}

/*-------------------------------

staff

-------------------------------*/
#staff {
  background: #000;
  padding: calc(60 / 1440 * 100vw) 0 0;
}

#staff h2 {
  display: block;
  width: calc(114 / 750 * 100vw);
  margin: 0 auto calc(30 / 1440 * 100vw);
}

#staff p {
  width: 90%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: calc(24 / 768 * 100vw);
  font-weight: medium;
  color: #c9caca;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 auto;
}

#staff p .sp {
  display: none;
}

@media screen and (min-width: 1024px) {
  #staff {
    padding: calc(50 / 1440 * 100vw) 0 0;
  }

  #staff h2 {
    width: 86px;
    margin: 0 auto 30px;
  }

  #staff p {
    width: 100%;
    font-size: 18px;
  }

  #staff p .sp {
    display: block;
  }
}

/*-------------------------------

cast

-------------------------------*/

#cast {
  background: #000;
  padding: calc(60 / 1440 * 100vw) 0 0;
}

#cast h2 {
  display: block;
  width: calc(94 / 750 * 100vw);
  margin: 0 auto calc(30 / 1440 * 100vw);
}

#cast p {
  width: 90%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: calc(24 / 768 * 100vw);
  font-weight: medium;
  color: #c9caca;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  #cast {
    padding: calc(100 / 1440 * 100vw) 0 0;
  }

  #cast h2 {
    width: 69px;
    margin: 0 auto 30px;
  }

  #cast p {
    width: 100%;
    font-size: 18px;
  }
}

/*-------------------------------

copy

-------------------------------*/

#copy {
  background: #000;
  padding: calc(100 / 768 * 100vw) 0 calc(100 / 768 * 100vw);
}

#copy h3 {
  display: block;
  width: 70%;
  margin: 0 auto calc(30 / 768 * 100vw);
}

@media screen and (min-width: 1024px) {
  #copy {
    padding: calc(100 / 1440 * 100vw) 0 calc(100 / 768 * 100vw);
  }

  #copy h3 {
    width: 33%;
  }
}

/*-------------------------------

poster

-------------------------------*/

#poster {
  background: #000;
  padding: 0 0 calc(200 / 768 * 100vw);
  width: 100%;
  position: relative;
  overflow: hidden;
}

#poster figure:first-child {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

#poster figure:last-child {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 1024px) {
  #poster {
    padding: 0 0 calc(400 / 1440 * 100vw);
  }

  #poster figure:first-child {
    width: 60%;
  }

  #poster figure:last-child {
    right: 0;
    bottom: 0;
  }
}

/*-------------------------------

footer

-------------------------------*/

.cc {
  padding: 30px 0;
  font-size: 0.8em;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #main-txt {
    /*width: 60%;*/
  }
}

@media all and (-ms-high-contrast: none) {
  #main-txt {
    top: 5%;
    left: 0;
    right: 0;
    margin: auto;
    width: 50vw;
    max-width: 600px;
  }
}

/*-----------------------
ムビチケ　メイジャー
------------------------*/
#tickets {
  position: relative;
  width: 302px; /*2枚*/
  /*width:146px;*/ /*1枚*/
  margin: 30px auto 0;
}
#ma {
  position: relative;
  width: 146px;
  height: auto;
}
#mv {
  position: absolute;
  right: 0;
  top: 0;
  width: 146px;
  height: auto;
}
#sns_text {
  margin: 20px auto -5px;
}

.hash {
  display: block;
  font-size: 24px;
  color: #000;
  text-align: center;
  margin: 30px 0 10px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  cursor: pointer;
  transition: all 0.4s;
}

.hash:hover {
  opacity: 0.7;
}

/*-------------------------------

anime

-------------------------------*/

@keyframes active-animation-text {
  0% {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
.active-animation-text {
  animation: active-animation-text 2s;
  animation-fill-mode: forwards;
}

@keyframes animation-img {
  0% {
    transform: skewX(0.3deg);
  }
  50% {
    transform: skewX(-0.3deg);
  }
  100% {
    transform: skewX(0.3deg);
  }
}
.animation-img {
  animation: animation-img 3s infinite;
}

@keyframes animation-poster {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  0.5% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  1% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  1.5% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  2% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  2.5% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }

  20% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  20.5% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  21% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  22.5% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  23% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  23.5% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
.animation-poster {
  animation: animation-poster 3s infinite;
}
