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

@PC - style.css v5.0.0

(c) ULM Co.,Ltd. - https://www.ulm-design.com
************************************************/
/* reset */
article, aside, details, figcaption, figure, footer, header, hgroup, hr, menu, nav, section {
  display: block;
}

a, hr {
  padding: 0;
}

abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins, mark {
  background-color: #ff9;
  color: #000;
}

body {
  line-height: 1;
}

li, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}

input, select {
  vertical-align: middle;
}

.sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .sp {
    display: none;
  }
}

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

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

html

-------------------------------*/
html, body {
  font: 13px/1 "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  letter-spacing: 1px;
  word-break: break-all;
  word-wrap: break-word;
  color: #fff;
  background: #0c1a6f;
  /*-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;*/
  font-feature-settings: "palt"; /*文字間詰め*/
  -webkit-text-size-adjust: 100%; /* adjust */
}
@media screen and (min-width: 960px) {
  html, body {
    font: 16px/1 "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  }
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.click {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.click:active {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  transform: scale(0.95);
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

@PC - common.css v5.0.0

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

#wrapper

-------------------------------*/
#wrapper {
  width: 100%;
  display: block;
}

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

#main

-------------------------------*/
#main {
  display: block;
}

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

#preloader

-------------------------------*/
#preloader {
  background: rgb(7, 20, 101);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

#preloader-inner {
  width: 500px;
  height: 300px;
  position: absolute;
  z-index: 1;
  top: calc(50% - 150px);
  left: calc(50% - 250px);
}

#preloader-ttl {
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}

#preloader-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
}

#preloader-anime {
  position: absolute;
  top: 115px;
  left: 310px;
  z-index: 3;
}

#progress-txt {
  width: 60px;
  display: block;
  font: 16px/1em Arial black, Helvetica, sans-serif;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 145px;
  left: calc(50% + 140px);
  transform: translateX(-50%);
  z-index: 4;
}

#preloaderAnime {
  position: absolute;
  inset: 0;
}

.loader {
  width: 250px;
  height: 22px;
  border-radius: 20px;
  color: #8176d2;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgb(7, 20, 101);
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 20px);
  transform: translateX(-50%);
}

.loader::before {
  content: "";
  position: absolute;
  margin: 2px;
  inset: 0 100% 0 0;
  border-radius: inherit;
  background: currentColor;
  animation: l6 3s infinite;
}

@keyframes l6 {
  100% {
    inset: 0;
  }
}
/*-------------------------------

#header

-------------------------------*/
#header {
  position: fixed;
  z-index: 90;
  top: 10px;
  right: 10px;
}
@media screen and (min-width: 960px) {
  #header {
    top: 10px;
    right: 10px;
  }
}

#drawer-btn {
  position: absolute;
  z-index: 2;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: rgba(7, 20, 101, 0.4);
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  #drawer-btn {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    transition: background-color 0.4s ease;
  }
  #drawer-btn:hover {
    background: rgba(7, 20, 101, 0.8);
  }
}

#drawer-txt {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 10px;
  text-align: center;
  color: #fff;
  padding: 5px 0 0;
  letter-spacing: 0px;
}
@media screen and (min-width: 960px) {
  #drawer-txt {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

#drawer-line-box {
  width: 49px;
  height: 32px;
  padding: 16px 4px 0 0;
}
@media screen and (min-width: 960px) {
  #drawer-line-box {
    width: 78px;
    height: 57px;
    padding: 28px 5px 0 0;
  }
}

.drawer-line {
  width: 30px;
  height: 1px;
  background: #fff;
  display: block;
  margin: 0 0 6px auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  border-radius: 10px;
}
@media screen and (min-width: 960px) {
  .drawer-line {
    width: 48px;
    margin: 0 0 10px auto;
  }
}

.drawer-line.open:nth-child(1) {
  -webkit-transform: rotate(405deg) translate(5px, 5px);
  transform: rotate(405deg) translate(5px, 5px);
}
@media screen and (min-width: 960px) {
  .drawer-line.open:nth-child(1) {
    -webkit-transform: rotate(405deg) translate(8px, 8px);
    transform: rotate(405deg) translate(8px, 8px);
  }
}

.drawer-line.open:nth-child(2) {
  -webkit-opacity: 0;
  opacity: 0;
}

.drawer-line.open:nth-child(3) {
  -webkit-transform: rotate(-405deg) translate(5px, -5px);
  transform: rotate(-405deg) translate(5px, -5px);
  width: 30px;
}
@media screen and (min-width: 960px) {
  .drawer-line.open:nth-child(3) {
    -webkit-transform: rotate(-405deg) translate(8px, -8px);
    transform: rotate(-405deg) translate(8px, -8px);
    width: 48px;
  }
}

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

#drawer-layer-container

-------------------------------*/
#drawer-container {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 80;
  top: 0px;
  right: 0px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  display: none;
  opacity: 0;
  background: rgb(7, 20, 101);
  padding: 50px 0 0 0;
}
#drawer-container .sns-container {
  position: relative;
  top: auto;
  right: auto;
  margin: 20px 0;
}
@media screen and (min-width: 960px) {
  #drawer-container {
    width: 400px;
  }
}

#drawer-container-inner {
  width: 100%;
  padding: 6% 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #drawer-container-inner {
    padding: 6% 60px;
  }
}

#drawer-nav-container {
  font-size: 16px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  #drawer-nav-container {
    margin: 0 auto 50px;
  }
}

.drawer-nav-box {
  display: block;
  margin: 0 0 3% 0;
}

.drawer-nav-box:last-child {
  margin: 0 auto;
}

.drawer-nav-btn {
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  padding: 20px 0;
}
@media screen and (min-width: 960px) {
  .drawer-nav-btn {
    font-size: 20px;
    padding: 30px 0;
    transition: color 0.4s ease;
  }
}

.drawer-nav-btn.coming {
  pointer-events: none;
  opacity: 0.1;
}

#drawer-nav-theaters .drawer-nav-btn {
  width: 80%;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 100px;
  padding: 20px;
  margin: 60px auto 30px;
}
@media screen and (min-width: 960px) {
  #drawer-nav-theaters .drawer-nav-btn {
    width: 100%;
    margin: 80px auto 30px;
  }
}

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

animation

-------------------------------*/
.fade {
  opacity: 0;
}

.fadein {
  opacity: 0;
  transform: translate(0px, 10px);
  transition: all 2s ease;
}

.fadein.fadein-anime {
  animation: fadein 2s ease forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translate(0px, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
/*-------------------------------

@SNS

-------------------------------*/
#social-container {
  margin: 0 auto 12px auto;
}
@media screen and (min-width: 960px) {
  #social-container {
    margin: 0 auto 40px auto;
  }
}

.sns-btn {
  width: 59px;
  object-fit: cover;
}
@media screen and (min-width: 960px) {
  .sns-btn {
    width: 82px;
  }
}

.sns-btn:nth-last-child(1) {
  padding: 0;
}

.share-link-btn {
  color: #fff;
  transition: all 0.1s ease;
  font-size: 26px;
}
@media screen and (min-width: 960px) {
  .share-link-btn {
    font-size: 30px;
  }
}
.share-link-btn:hover {
  color: #a17aff;
}

.share-link-btn:active {
  transform: scale(0.95);
}

.custom-line-btn {
  transform: scale(1.2);
}

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

#footer

-------------------------------*/
/*--------------------------------------------------
リマケタグの隙間対策
--------------------------------------------------*/
iframe[name=google_conversion_frame] {
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  margin-top: -13px;
}

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

@modules

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

a

-------------------------------*/
a {
  text-decoration: none;
  display: inline-block;
}

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

a:link {}
a:visited {}
a:hover {}
a:active {}

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


@flex
.flex-left {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-right {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
-------------------------------*/
.flex {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 39px;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex-center {
  -webkit-justify-content: center;
  justify-content: center;
}

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

font-weight

-------------------------------*/
.bold {
  font-weight: bold;
}

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

font-style

-------------------------------*/
.italic {
  font-style: italic;
}

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

display

-------------------------------*/
.none {
  display: none;
}

.block {
  display: block;
}

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

position

-------------------------------*/
.relative {
  position: relative;
}

.margin-auto {
  margin: 0 auto;
}

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

guard

-------------------------------*/
.guard {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../common/img/spacer.gif);
  background-repeat: repeat;
}

.protect {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -khtml-user-drag: none;
  -webkit-user-drag: none;
}

#cboxOverlay {
  background: #020b46;
}

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

@PC - style.css v5.0.0

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

top

-------------------------------*/
.top-main {
  position: relative;
  width: 100vw;
  aspect-ratio: 9/16;
  position: relative;
}
@media screen and (min-width: 960px) {
  .top-main {
    aspect-ratio: 16/9;
  }
}

.ttl-wrap {
  position: absolute;
  left: 50%;
  bottom: 100px;
  width: 80%;
  transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .ttl-wrap {
    top: 2%;
    left: 3%;
    bottom: "";
    transform: none;
    width: 30%;
  }
}

.roadshow {
  width: 80%;
  margin: -2% auto 0;
}
@media screen and (min-width: 960px) {
  .roadshow {
    width: 70%;
  }
}

.top-contents {
  position: relative;
  background: url(../img/top/bg_sp.jpg) no-repeat;
  background-size: 100%;
  padding: 20px 0;
}
@media screen and (min-width: 960px) {
  .top-contents {
    background: url(../img/top/bg_pc.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0;
  }
}

.btn-wrap {
  position: absolute;
  top: 8px;
  left: 10px;
}
.btn-wrap ul {
  display: flex;
}
.btn-wrap li {
  margin: 5px;
  width: 30%;
}
.btn-wrap a {
  display: block;
}
@media screen and (min-width: 960px) {
  .btn-wrap {
    top: 125px;
    left: auto;
    right: 40px;
    width: 176px;
  }
  .btn-wrap ul {
    display: block;
  }
  .btn-wrap li {
    width: 100%;
    margin-bottom: 20px;
  }
  .btn-wrap a {
    transition: opacity 0.4s ease;
  }
  .btn-wrap a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 960px) {
  .modaal-image .modaal-container {
    width: 960px;
  }
}

.modaal-close {
  position: absolute;
  top: -50px;
  right: -10px;
}

.modaal-close:focus, .modaal-close:hover {
  background: #fff;
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #110243;
}

.contents-ttl {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2em;
  width: 90%;
  margin: 0 auto 20px;
}
@media screen and (min-width: 960px) {
  .contents-ttl {
    max-width: 1100px;
    font-size: 60px;
    margin: 0 auto 30px;
  }
}

#top-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../common/img/overlay.png);
  background-size: 2px;
  opacity: 0.3;
}

#main-pc,
#main-sp {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.theaters-btn {
  position: relative;
  display: block;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 20px 40px;
  text-align: center;
  width: 90%;
  max-width: 320px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  .theaters-btn {
    position: absolute;
    bottom: auto;
    top: 30px;
    left: auto;
    right: 120px;
    z-index: 1;
    width: 260px;
    transform: none;
    font-size: 20px;
    transition: background-color 0.4s ease;
  }
  .theaters-btn:hover {
    background: rgba(7, 20, 101, 0.4);
  }
}

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

trailer

-------------------------------*/
.trailer {
  margin: 40px 0;
}
@media screen and (min-width: 960px) {
  .trailer {
    margin: 80px 0;
  }
}

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

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

.movie-thumb-box {
  position: relative;
  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;
}

.movie-cap {
  display: none;
  padding: 15px 0 5px;
  text-align: center;
  color: #fff;
  font-size: 1.1em;
}

.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: 0.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 0.2s ease;
  opacity: 0.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: 0.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 0.3s ease;
}

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

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

.swiper-pagination-bullet {
  background: #ccc;
}

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

.swiper-slide {
  transform: scale(0.9);
  transition: all 0.4s ease;
  opacity: 0.5;
}

.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

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

news

-------------------------------*/
.news {
  margin: 40px 0 20px;
}
@media screen and (min-width: 960px) {
  .news {
    margin: 80px 0 20px;
  }
}

.news-feed {
  width: 90%;
  margin: 0 auto;
}
.news-feed li {
  position: relative;
  margin: 10px 0;
  background: #071465;
}
@media screen and (min-width: 960px) {
  .news-feed li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #020b46;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  }
  .news-feed li:hover::after {
    transform: scale(1, 1);
  }
}
.news-feed .news-item {
  position: relative;
  z-index: 1;
  display: block;
  padding: 20px 20px;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .news-feed .news-item {
    display: flex;
    align-items: center;
    padding: 30px 40px;
  }
}
.news-feed .news-date {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 10px;
}
@media screen and (min-width: 960px) {
  .news-feed .news-date {
    margin: 0 50px 0 0;
  }
}
.news-feed .news-article-ttl {
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .news-feed {
    max-width: 1100px;
  }
}

.news-btn {
  display: block;
  width: 60%;
  margin: 0 auto;
  background: url(../img/top/btn_bg_sp.png) no-repeat center center;
  background-size: 100%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  padding: 30px 30px;
}
@media screen and (min-width: 960px) {
  .news-btn {
    background: url(../img/top/btn_bg_pc.png) no-repeat center center;
    background-size: 100%;
    aspect-ratio: 169/50;
    width: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
    transition: opacity 0.4s ease;
  }
  .news-btn:hover {
    opacity: 0.7;
  }
}

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

intro

-------------------------------*/
#intro {
  background: rgba(6, 12, 54, 0.4);
  position: relative;
  padding: 40px 5%;
}
@media screen and (min-width: 960px) {
  #intro {
    text-align: center;
    padding: 80px 0;
  }
}

.intro-lead {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .intro-lead {
    max-width: 1100px;
  }
}

.txt-wrap p {
  line-height: 1.8;
  margin: 0.5em 0;
}

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

footer

-------------------------------*/
#footer {
  position: relative;
  background: url(../img/top/bg_sp.jpg) no-repeat;
  background-size: 100%;
  padding: 20px 0;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #footer {
    background: url(../img/top/bg_pc.jpg) no-repeat;
    background-size: cover;
    padding: 60px 0;
  }
}

.copy-right {
  color: #b8dafb;
  font-size: 10px;
  line-height: 1.4;
}
@media screen and (min-width: 960px) {
  .copy-right {
    font-size: 12px;
  }
}

.share-ttl {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
  margin: 40px auto 20px;
}/*# sourceMappingURL=style.css.map */