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

@PC - style.css v5.0.0

(c) ULM Co.,Ltd. - https://www.ulm-design.com
************************************************/
.w100 {
  width: 100%;
}

#top {
  position: relative;
}

@media screen and (min-width: 1024px) {
  #top {
    width: 100%;
    min-width: 1024px;
    background: #fff;
    overflow: hidden;
  }
}

.main-img {
  opacity: 0;
  transition: all .2s linear;
}

.main-img img {
  vertical-align: bottom;
}

.main-img.show {
  opacity: 1;
  animation: rotate-in-ver 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media screen and (min-width: 1024px) {
  .main-img.show {
    opacity: 1;
  }
}

@keyframes rotate-in-ver {
  0% {
    transform: rotateY(-360deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

.top-inner {
  position: absolute;
  bottom: 5vw;
  text-align: center;
  justify-content: center;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (min-width: 1024px) {
  .top-inner {
    text-align: center;
    position: absolute;
    bottom: 3vw;
    right: 0;
    left: 0;
    margin: auto;
    width: 500px;
    max-width: 500px;
  }
}

#top-main-logo {
  justify-content: center;
  width: 59%;
  max-width: 350px;
  margin: 0 auto;
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  #top-main-logo {
    z-index: 1;
    width: 500px;
    max-width: 500px;
    margin: auto;
    transition: all 1s linear;
  }
}

#top-main-logo.show {
  opacity: 1;
  animation: jello-diagonal-1 .8s both;
}

@keyframes jello-diagonal-1 {
  0% {
    transform: skew(0deg 0deg);
  }
  30% {
    transform: skew(25deg 25deg);
  }
  40% {
    transform: skew(-15deg, -15deg);
  }
  50% {
    transform: skew(15deg, 15deg);
  }
  65% {
    transform: skew(-5deg, -5deg);
  }
  75% {
    transform: skew(5deg, 5deg);
  }
  100% {
    transform: skew(0deg 0deg);
  }
}

.mv {
  opacity: 0;
  transform: scale(0.2);
  transition: all 0.5s cubic-bezier(0.03, 0.88, 0.35, 1.26);
}

.mv.show {
  transform: scale(1);
  opacity: 1;
}

.logo {
  position: absolute;
  top: 90%;
  right: 0;
  left: 0;
  width: 87%;
  margin: 0 auto;
  transform: scale(1.1) rotate(10deg);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.03, 0.88, 0.35, 1.26);
}

@media screen and (min-width: 1024px) {
  .logo {
    width: 40%;
    max-width: 800px;
    margin: 0 auto;
  }
}

.logo.show {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.roadshow {
  width: 56%;
  margin: 0 auto;
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .roadshow {
    width: 80%;
    max-width: 400px;
    margin: 10px auto 0;
  }
}

.roadshow.show {
  animation: jello-diagonal-1 .8s both;
  opacity: 1;
}

.badge {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1em;
  position: absolute;
  bottom: 1vw;
  right: 0;
  margin: 5% 0;
  transition: all .3s;
  z-index: 2;
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .badge {
    width: 8.2vw;
    max-width: 123px;
    top: -50px;
    left: -70px;
    right: auto;
  }
}

.badge.show {
  animation: jello-diagonal-1 .8s both;
  opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  #top-main-logo {
    width: 350px !important;
  }
  .roadshow {
    width: 280px !important;
  }
  .badge {
    left: 0;
  }
}

#top-lead {
  width: 95%;
  max-width: 480px;
  margin: 0 auto;
  position: absolute;
  top: 1vw;
  left: 0;
  right: 0;
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  #top-lead {
    width: 70%;
    max-width: 1280px;
  }
}

#top-lead.show {
  opacity: 1;
  animation: roll-in-top .6s ease-out both;
}

@keyframes roll-in-top {
  0% {
    transform: translateY(-800px) rotate(-540deg);
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
}

.hash {
  background: #217fc4;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1em;
  position: absolute;
  bottom: 1vw;
  right: 1%;
  margin: 5% 0;
  transition: all .3s;
  z-index: 2;
  display: none;
}

.hash:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 1024px) {
  .hash {
    width: 100px;
    height: 100px;
    padding: 27px 0 0 0;
    border-radius: 300px;
    font-size: 15px;
    position: absolute;
    bottom: 1vw;
    right: auto;
    left: 1%;
    margin: 0;
    display: block;
  }
}

.sp-lead {
  position: absolute;
  top: 36vw;
  left: 0;
  width: 8%;
  max-width: 80px;
  right: 0;
  margin: auto;
}

.sp-lead {
  opacity: 0;
  transition: all 2s cubic-bezier(0.03, 0.88, 0.35, 1.26);
}

.sp-lead.show {
  opacity: 1;
}

.sp-top-container {
  position: absolute;
  bottom: 5vw;
  text-align: center;
  justify-content: center;
  left: 0;
  right: 0;
  margin: auto;
}

.sp-roadshow {
  position: absolute;
  width: 160px;
  right: 3vw;
  bottom: 24vw;
}

.cast-photo-sp {
  position: absolute;
  bottom: 0;
}

.cast-photo-sp img {
  vertical-align: bottom;
}

.sp-logo {
  justify-content: center;
  width: 59%;
  max-width: 350px;
  margin: 0 auto;
  opacity: 0;
}

.sp-logo.show {
  opacity: 1;
}

.sp-top-koukai {
  justify-content: center;
  width: 30%;
  max-width: 60px;
  margin: 20px auto;
}

.billing-sp {
  width: 90%;
  max-width: 480px;
  margin: 6vw auto;
}

#top-main {
  width: 100%;
}

#top-sp-main-img {
  position: relative;
}

#top-billing-container {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.03, 0.88, 0.35, 1.26);
}

#top-billing-container.show {
  opacity: 1;
}

.billing {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (min-width: 1024px) {
  .billing {
    width: 600px;
    padding: 80px 0 0;
  }
}

.photo {
  margin: -20px 0 0 0;
}

@media screen and (min-width: 1024px) {
  .photo {
    margin: -100px 0 0 0;
  }
}

.photo img {
  vertical-align: bottom;
}

#story {
  background: url(../img/teaser/bg_sp.jpg) no-repeat center bottom;
  background-size: cover;
  margin: 0 auto;
  padding: 8% 5% 230px;
}

@media screen and (min-width: 1024px) {
  #story {
    background: url(../img/teaser/bg_pc.jpg) no-repeat center bottom;
    background-size: cover;
    margin: 0 auto;
    padding: 80px 0 280px;
  }
}

#story .ttl {
  width: 180px;
}

@media screen and (min-width: 1024px) {
  #story .ttl {
    width: 240px;
  }
}

.ttl {
  margin: 0 auto 12%;
  font-family: 'Montserrat', sans-serif;
  width: 320px;
  color: #ffca00;
  text-shadow: 1px 1px 0px #000000;
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .ttl {
    margin: 0 auto 30px;
    width: 440px;
  }
}

@media screen and (min-width: 1024px) {
  .story-lead {
    width: 740px;
    margin: 0 auto;
  }
}

.story-txt {
  color: #fff;
  text-align: left;
  font-size: 1.1em;
  letter-spacing: 1.3px;
  line-height: 1.8em;
  margin-top: 7%;
}

@media screen and (min-width: 1024px) {
  .story-txt {
    margin-top: 40px;
    width: 930px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 2em;
  }
}

rt {
  zoom: 0.7;
}

.strong {
  font-weight: bold;
}

#cast {
  background: url(../img/cast/bg_sp.jpg) repeat-y center;
  background-size: 100%;
  padding: 2% 3%;
  position: relative;
}

@media screen and (min-width: 1024px) {
  #cast {
    background: url(../img/top/bg_pc.jpg) top center;
    background-size: 100%;
    padding: 0 0 6%;
  }
}

.top-bg {
  margin: -180px 0 0 0;
  background: #2e54bf;
}

.top-bg img {
  vertical-align: bottom;
}

@media screen and (min-width: 1024px) {
  .cast-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 88%;
    max-width: 1900px;
    margin: 0 auto;
  }
}

.cast-box {
  margin: 0 auto 2%;
}

@media screen and (min-width: 1024px) {
  .cast-box {
    margin: 0 2% 1%;
    width: 29%;
    max-width: 400px;
  }
}

.chara-img {
  width: 90%;
  margin: 0 auto;
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .chara-img {
    width: 100%;
  }
}

.chara-name {
  margin: -4% auto 3%;
}

.chara-txt {
  color: #fff;
  text-align: left;
  font-size: 1.1em;
  letter-spacing: 1px;
  line-height: 1.8em;
  padding: 0 2%;
  margin: 0 0 20px;
}

@media screen and (min-width: 1024px) {
  .chara-txt {
    font-size: 16px;
    line-height: 2em;
  }
}

#wb_header {
  display: none;
}

.footer-hash {
  background: #217fc4;
  color: #fff;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  border-radius: 200px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3em;
  padding: 25px 0 0 0;
  transition: all .3s;
  z-index: 2;
}

#copyright {
  padding-bottom: 4%;
}

.news {
  width: 68%;
  margin: 0 auto;
  padding: 30px 0 10px;
}

@media screen and (min-width: 1024px) {
  .news {
    width: 300px;
    padding: 0;
  }
}

.news a {
  display: block;
  height: 100%;
}

.theater {
  width: 68%;
  margin: 0 auto;
  padding: 0 0 30px 0;
}

@media screen and (min-width: 1024px) {
  .theater {
    width: 300px;
    padding: 0;
  }
}

.theater a {
  display: block;
  height: 100%;
}

.ar,
.cp {
  width: 75%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .ar,
  .cp {
    width: 300px;
    padding: 20px 0;
  }
}

.ar img,
.cp img {
  border-radius: 10px;
}

.top-bnr {
  display: block;
}

@media screen and (min-width: 1024px) {
  .top-bnr {
    display: flex;
    width: 100%;
    max-width: 1280px;
    margin: 60px auto 0;
    justify-content: center;
  }
}

.top-bnr a {
  margin: 5px;
}

@media screen and (min-width: 1024px) {
  .tieup img {
    margin: -12px 0 0 0;
  }
}

@media screen and (min-width: 1024px) {
  .voice-actor {
    position: absolute;
    max-width: 570px;
    bottom: 5px;
    right: 5px;
    width: 32vw;
    opacity: 0;
  }
}

.voice-actor.show {
  animation: jello-diagonal-1 .8s both;
  opacity: 1;
}

.voice-actor-sp {
  background: #e50112;
  padding: 20px 0 0 0;
}

@media screen and (min-width: 1024px) {
  .voice-actor-sp {
    display: none;
  }
}

.voice-actor-sp img {
  width: 100%;
  max-width: 580px;
}

@media screen and (min-width: 1024px) {
  .voice-actor-sp img {
    width: 680px;
    max-width: 750px;
    margin: 0 auto;
    border: 2px solid #f4ea2b;
    border-radius: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .cp-bnr {
    position: absolute;
    max-width: 260px;
    top: 5vw;
    left: 10px;
    width: 17vw;
    opacity: 0;
  }
}

.cp-bnr.show {
  animation: jello-diagonal-1 .8s both;
  opacity: 1;
}

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

#movie

-------------------------------*/
#trailer {
  padding: 30px 0 20px;
  background: url(../img/top/bg_sp.jpg);
  background-size: cover;
  position: relative;
}

@media screen and (min-width: 1024px) {
  #trailer {
    padding: 60px 0 50px;
  }
}

#trailer .ttl {
  width: 130px;
  margin: 0 auto 7%;
}

@media screen and (min-width: 1024px) {
  #trailer .ttl {
    width: 170px;
    margin: 0 auto 3%;
  }
}

.pc-modal-movie, .pc {
  display: none;
}

.sp {
  display: block;
}

#movie-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 30px;
  opacity: 0;
  transition: opacity .6s ease;
}

#movie-container.swiper-container-horizontal {
  opacity: 1;
}

.movie-thumb-box {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
}

.movie-thumb-box img, .movie-thumb-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie-thumb-list li {
  width: 100%;
  padding: 0 10px;
}

.movie-cap {
  padding: 15px 0 30px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.play-icon {
  color: #e60027;
  width: 52px;
  height: 58px;
  font-size: 60px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  display: block;
  line-height: 1em;
}

.movie-thumb-box:hover .play-icon {
  opacity: .8;
}

.movie-thumb-list .slider-arrow {
  position: absolute;
  top: 50%;
  height: 60px;
  margin-top: -50px;
  color: #aaa;
  line-height: 36px;
  font-size: 28px;
  cursor: pointer;
  width: 30px;
  z-index: 10;
}

.movie-thumb-list .slider-arrow img {
  width: 100%;
}

.movie-thumb-list .slider-prev {
  left: 0;
}

.movie-thumb-list .slider-next {
  right: 0;
}

#trailer-play {
  padding: 30px;
}

#trailer-play a {
  transition: opacity .2s ease;
  opacity: .7;
}

#trailer-play a:hover {
  opacity: 1;
}

.btn-container li {
  position: relative;
  border: 1px solid #7f1e1e;
  border-radius: 50px;
  margin: 0 0 10px;
  padding: 7px 15px;
  text-align: center;
}

.btn-container li.new::after {
  content: "New";
  font-size: .8em;
  background: #7f1e1e;
  position: absolute;
  top: -4px;
  left: -4px;
  padding: 2px;
}

.btn-container li a {
  display: block;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: color .3s ease;
}

.btn-container li a:hover {
  color: #7f1e1e;
}

.swiper-container {
  padding: 0 0 20px;
}

.swiper-pagination-bullet {
  background: #fff;
  width: 18px !important;
  height: 18px !important;
  opacity: .6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffdd00;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0 !important;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px !important;
}

.trailer-prev, .trailer-next {
  position: absolute;
  width: 55px;
  top: 19%;
  z-index: 1;
  transform: translateY(-50%);
}

@media screen and (min-width: 1024px) {
  .trailer-prev, .trailer-next {
    top: 36%;
  }
}

.trailer-prev {
  left: 2px;
}

@media screen and (min-width: 1024px) {
  .trailer-prev {
    left: 42px;
  }
}

.trailer-next {
  right: 2px;
}

@media screen and (min-width: 1024px) {
  .trailer-next {
    right: 42px;
  }
}

.trailer-prev.swiper-button-disabled, .trailer-next.swiper-button-disabled {
  opacity: .1;
}

.box {
  width: 80%;
  max-width: 350px;
  margin: 10px auto 0;
  background: #f4ea2b;
  color: #e70012;
  padding: 12px 10px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.5;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border-radius: 30px;
  transition: .4s;
}

@media screen and (min-width: 1024px) {
  .box {
    width: 90%;
    padding: 15px 10px;
    margin: 20px auto 0;
  }
}

.box a {
  display: block;
}

.box:hover {
  background: #fff;
}

.box span {
  font-size: 10px;
}

.modal-overlay {
  z-index: 150;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #2e54bfde;
}

.modal-open:hover {
  cursor: pointer;
}

.modal-content {
  position: fixed;
  display: none;
  z-index: 300;
  margin: 10px;
  padding: 30px;
  border-radius: 2px;
  background: #fff;
  height: auto;
  margin-top: 100px !important;
}

@media screen and (min-width: 1024px) {
  .modal-content {
    margin-top: 0 !important;
    max-width: 800px;
  }
}

.modal-content img {
  width: 100%;
  /*max-height: 75vh;*/
  vertical-align: bottom;
}

.modal-content h1 {
  font-size: 23px;
  line-height: 1.2;
  font-weight: bold;
}

.modal-content p {
  /*max-width: 700px;*/
  text-align: left;
  text-align: justify;
  line-height: 1.8;
  font-size: 14px;
  padding-bottom: 20px;
  letter-spacing: 2px;
  margin: 0vw 0 0 3vw;
  color: #222 !important;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #fdd000;
  font-size: 35px;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
}

.modal-close:hover {
  cursor: pointer;
}

.modal-content h2 {
  /*width: 300px;*/
  margin: 5vw auto;
}

.modal-content h3 {
  padding: 30px 0 !important;
  text-align: center;
  width: 65%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .modal-content h3 {
    width: 230px;
    margin: 0 auto 10px;
  }
}

.n3 {
  width: 100% !important;
}

@media screen and (min-width: 1024px) {
  .n3 {
    width: 400px !important;
    margin: 0 auto 10px;
  }
}

.modal-content h4 {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
  padding: 8px 0 8px;
}

.comment-txt span {
  font-weight: bold;
  margin: 0 0 10px !important;
  background: linear-gradient(transparent 50%, #fffd95 50%);
}

/* PC */
@media screen and (min-width: 1024px) {
  .pc {
    display: block;
    margin: 0 auto;
  }
  .sp {
    display: none;
  }
  #sp-bg {
    display: none;
  }
  #top-main {
    width: 100%;
    /*min-height: 100vh;*/
    /*position: relative;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .cast-photo-pc {
    /*position: absolute;
    bottom: 0;*/
  }
  .cast-photo-pc img {
    vertical-align: bottom;
  }
  #top-main-billing {
    width: 440px;
    margin: 0 auto;
    /*position: absolute;
    right: 2vw;
    bottom: 2vw;*/
  }
  #top-koukai {
    z-index: 2;
    width: 80%;
    max-width: 135px;
    position: absolute;
    right: 2vw;
    bottom: 0vw;
    padding: 2% 0%;
  }
  /*	.pc-lead2 {
		width: 70%;
    max-width: 900px;
		position: absolute;
    bottom: 1vw;
    left: 0;
    right: 0;
    margin: auto;
    
}*/
  .pc-lead2 {
    position: absolute;
    top: 8vw;
    left: 0;
    right: 0;
    margin: auto;
    width: 4.4%;
    max-width: 52px;
    opacity: 0;
    transition: all 1s linear;
  }
  .pc-lead2.show {
    animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    opacity: 1;
  }
  @keyframes scale-up-center {
    0% {
      transform: scale(0.5);
    }
    100% {
      transform: scale(1);
    }
  }
  .billing2 {
    max-width: 450px;
    margin: 0 auto;
    padding: 2.5vw 0 2vw;
  }
  #trailer {
    margin: 0 auto;
    padding: 60px 0;
    width: 100%;
    background: url(../img/top/bg_pc.jpg) no-repeat;
    background-size: cover;
    padding: 60px 80px;
  }
  .pc-modal-movie {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
  }
  .youtube {
    pointer-events: none;
  }
}
/*# sourceMappingURL=style.css.map */