@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  background-color: #000;
  overflow-y: scroll;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
	margin: 50px auto 0;
}
section{
	position: relative;
}
.inner {
  width: 70%;
  margin: 0 auto;
  padding: 7% 0;
}
a {
  display: block;
}
/*--------------------
LOADING
---------------------*/

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #000;
}
.logo {
width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  text-align: center;
  z-index: 1000;
  opacity: 0;
}

/*--------------------
ANIMATION
---------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 2s;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 4s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOut {
  animation-name: fadeOutAnime;
  animation-duration: 2s;
 
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
	display: none;
  }
}
.slideInY{
  animation-name: slideInAnimeY;
animation-duration:2s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-delay: 0.5s;
animation-direction:normal;
	animation-fill-mode: forwards;
}
 
@keyframes slideInAnimeY{
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
	
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*--------------------
TRAILER(POPUP)
---------------------*/
/*--------------------
TOP
---------------------*/


section.top{
	border-bottom: 1px solid #f4bb00;
}
section.top .inner{
	width: 100%;
	padding: 0;
}

.top_info{
    position: absolute;
    width: 15%;
    right: 10%;
    bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.date{
	margin: 0 auto 10%;
}
.theater_btn, .flyer_btn{
	width: 70%;
	transition: .7s;
}
.theater_btn{
	margin: 0 auto 10px;
}
.theater_btn a, .flyer_btn a{
	transition: .7s;
}
.theater_btn a:hover, .flyer_btn a:hover{
	transition: .7s;
	opacity: .7;
}

/*--------------------
MENU
---------------------*/

header {
 /*opacity: 0;*/
  position: fixed;
  z-index: 299;
  translate: none;
}

nav.header_nav {
position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 300;
	border-bottom: 1px solid #f4bb00;
}
.nav_inner {
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 60px;
  margin: 0 auto;
}
nav.header_nav ul {
    display: -webkit-flex;
    justify-content: center;
    padding: 0;
    width: auto;
    vertical-align: middle;
    box-sizing: border-box;
    z-index: 300;
    align-items: center;
    background-color: #000;
    height: 50px;
}
nav.header_nav ul li {
vertical-align: middle;
     padding: 0 1.5% 0 0;
}

nav.header_nav ul li a {
  display: block;
  transition: 0.8s;
}
nav.header_nav ul li a:hover {
  opacity: 0.7;
  transition: 0.8s;
}
nav.header_nav ul li a img{
    height: 1vw;
    min-height: 16px;
    max-width: inherit;
}
.new_tab{
    margin: 0 0 0 10px;
    display: inline-block;
}
.new_tab img{
	max-width: inherit;
	height: 10px !important;
}
.sns_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns_icon a {
transition: .7s;
    box-sizing: border-box;
}
.sns_icon a:hover {
	transition: .7s;
	opacity: .7;
}
.sns_icon a img{
	    width: 50%;
}
.sns_icon a:hover {
  transition: .7s;
}

/*--------------------
NEWS
---------------------*/
.news{
background-color: #4a1027;
position: relative;
z-index: 1;
	 border-bottom: 1px solid #f4bb00;
}
.news .inner{
	padding: 5% 0;
	position: relative;
	z-index: 3;
}
.news h1.midashi_title{
	color: #fff;
}
.news_wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.news h1.midashi_title{
    margin: 0 5% 0 0;
}
.news_date{
 color: #F7FBFC;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 10px 0 0;
}
.news_title {
	width: 100%;
    margin: 0 auto;
    line-height: 1;
	text-align: left;
	color: #F7FBFC;
}
.viewall{
    text-align: right;
    font-size: 14px;
    position: relative;
    width: 120px;
    margin: 0 0 0 auto;
}
a.nor{
color: #fff;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    transition: .7s;
    position: relative;
    display: block;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}

ul.ulblogtitle{
width: 100%;
margin: 0 auto 1%;
}

ul.ulblogtitle li{
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 0 0 10px 0;
    margin: 0 auto 2%;
    box-sizing: border-box;
}
ul.ulblogtitle li a{
	transition: .7s;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	font-size: clamp(14px, 1vw, 16px);
}
ul.ulblogtitle li a:hover .news_title, ul.ulblogtitle li a:hover .news_date{
	transition: .7s;
	color: #fff;
}
.arrow {
    position: absolute;
    display: inline-block;
    bottom: 20%;
    right: 0;
    width: 30px;
    transform: translate(0, -50%);
    height: 2px;
    margin: 0 0 0 0px;
    border-radius: 9999px;
    background-color: #fff;
}

.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}



/*--------------------
ABOUT THE MOVIE
---------------------*/

section.atm .inner{
	width: 100%;
	padding: 0;
	display: flex;
	justify-content: center;
	    align-items: stretch;
}
h1.midashi_title{
	margin: 0 auto 5%;
	text-align: center;
}
h1.midashi_title img{
	height: auto;
    max-height: 38px;
    min-height: 20px;
	    object-fit: contain;
}
.text{
	color: #fff;
	text-align: justify;
	text-align-last: left;
}
.atm_main{
	width: 45%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
		.atm_main::before {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 2;
        content: "";
		width: 30px;
        height: 100%;
        background-image: linear-gradient(90deg, transparent, #000000);
    }
.atm_main img{
	    max-width: inherit;
    height: 100%;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}
.atm_inner{
	width: 55%;
    height: 100%;
    padding: 7% 10% 7% 5%;
    box-sizing: border-box;
	
}
.img_list_wrap{
	border-top: 1px solid #f4bb00;
	border-bottom: 1px solid #f4bb00;
}
ul.img_list{
		display: flex;
    justify-content: center;
    align-items: center;
}


/*--------------------
CAST
---------------------*/

section.cast{
	background-color: #4a1027;
	z-index: 1;
}
section.cast::before{
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-image: url("../img/cast_bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0.2;
}
section.cast .inner{
	position: relative;
	z-index: 3;
	    min-width: 800px;
}
.cast_img{
	    width: 70%;
    margin: 0 auto 5%;
}
.cast_name{
	margin: 0 auto 1%;
}
.cast_name img {
    height: 6vw;
    max-height: 30px;
    min-height: 20px;
}
.cast_name_eng{
	color: #fed661;
	margin: 0 auto 3%;
}

ul.cast_list.list_02{
	display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
ul.cast_list.list_01{
	width: 50%;
	    min-width: 600px;
    margin: 0 auto 7%;
}
ul.cast_list.list_02 li.cast_list_item{
	width: calc(95% / 2);
	margin: 0 5% 5% 0 ;
}
ul.cast_list.list_02 li.cast_list_item:nth-child(2n){
	margin: 0 0 5% 0 ;
}
ul.cast_list.list_02 li.cast_list_item:last-child{
	margin: 0;
}

ul.cast_list.list_02 .cast_name img {
    height: 5.8vw;
    max-height: 25px;
    min-height: 18px;
}



/*--------------------
STAFF
---------------------*/

.staff{
	    margin: 7% auto 0;
}
.staff ul.cast_list{
	width: 50%;
	min-width: 600px;
	margin: 0 auto;
}
.staff ul.cast_list li:first-child{
	margin: 0 0 10% 0 ;
}
.staff ul.cast_list li .cast_name img {
    height: 5.8vw;
    max-height: 25px;
    min-height: 18px;
}


/*--------------------
FOOTER
---------------------*/

.footer_logo{
	    width: 50%;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 960px) {
  /*--------------------
LOADING
---------------------*/
  /*--------------------
TRAILER(POPUP)
---------------------*/
  /*--------------------
TOP
---------------------*/
  /*--------------------
MENU
---------------------*/
  /*--------------------
TOP
---------------------*/
  /*--------------------
RAILER
---------------------*/
  /*--------------------
INTRODUCTION
---------------------*/
  /*--------------------
STORY
---------------------*/
  /*--------------------
CAST
---------------------*/

	    section.cast .inner {
        min-width: 750px;
    }
  /*--------------------
STAFF
---------------------*/

	
  /*--------------------
FOOTER
---------------------*/
}
@media screen and (max-width: 768px) {
	
	.inner {
    width: 80%;
    margin: 0 auto;
    padding: 20% 0;
}
	.wrapper {
	margin: 60px auto 0;
}
	
  /*--------------------
LOADING
---------------------*/
	.logo {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
	}
  /*--------------------
TRAILER(POPUP)
---------------------*/
  /*--------------------
TOP
---------------------*/
	
	.top_info {
    position: inherit;
    width: 100%;
    padding: 15% 10%;
		box-sizing: border-box;
	}
	.date {
    width: 70%;
		max-width: 300px;
	}
	.theater_btn, .flyer_btn {
    width: 100%;
		max-width: 400px;
	}
	
  /*--------------------
MENU
---------------------*/
	
	header{
height: 50px;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
}
nav.header_nav{
z-index: 777;
    position: fixed;
    top: inherit;
    left: inherit;
    width: 100%;
}


  /*hamburger-menu*/
  .menu_bg {
width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 779;
	  background-color: #000;
	  border-bottom: 2px solid #f4bb00;
  }
  .menu {
        height: 20px;
        position: absolute;
        top: 50%;
        right: 5%;
        width: 30px;
        z-index: 779;
        cursor: pointer;
        transform: translate(0, -50%);
  }
  .menu__line {
    background: #f4bb00;
    display: block;
    height: 3px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
  }
  .menu__line--top {
    top: 0;
  }
  .menu__line--center {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .menu__line--top.active {
    top: 10px;
    transform: rotate(45deg);
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 7px;
    transform: rotate(-45deg);
  }
  /*gnav*/
  .gnav {
    background-color: #000;
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: auto;
    width: 100%;
    z-index: 778;
  }
  .gnav__wrap {
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    min-height: inherit;
  }
  .gnav__menu__item {
    width: 100%;
    height: 6vh;
    vertical-align: middle;
    line-height: 6vh;
    margin: 0 auto;
  }
  .gnav__menu__item:last-child {
    border: none;
  }
  .gnav__menu__item a {
    color: #fff;
    font-size: clamp(18px, 6vw, 22px);
    font-weight: 700;
    text-decoration: none;
    transition: .5s;
    cursor: default;
    padding: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: left;
  }

     nav.header_nav ul.gnav__menu {
        width: 80%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: left;
  }
  nav.header_nav ul.gnav__menu li {
    text-align: center;
	padding: 0 0 5%;
  }
	nav.header_nav ul.gnav__menu li:last-child {
	padding: 0 auto;
  }
  nav.header_nav ul.gnav__menu li:first-child {
    border-left: none;
  }
     nav.header_nav ul.gnav__menu li img {
        height: 6vw;
        max-height: 35px;
    }

nav.header_nav ul li a {
    text-align: center;
	font-size: clamp(16px, 5vw, 20px);
	}
	
  /*humberger-menuここまで*/
	
	.sns_wrap {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
	}
	
  /*--------------------
TOP
---------------------*/
	
	section.top {
    border-bottom: 2px solid #f4bb00;
	}
/*--------------------
NEWS
---------------------*/
	
.news{
padding: 0;
	 border-bottom: 2px solid #f4bb00;
}
	.news .inner {
    width: 80%;
    padding: 10% 0;
}
.news_wrap {
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
	}
.news h1.midashi_title{
          margin: 0px 0px 10%;
        width: 100%;
}
	ul.ulblogtitle li a {
    flex-direction: column;
		font-size: clamp(14px, 4vw, 16px);
	}
	.news_date {
    width: 100%;
    margin: 0 0 5px;
	}
	.news_title {
    width: 100%;
    margin: 0 0 3%;
	line-height: inherit;
}
	.mvtk_wrap {
    margin: 0 auto 10%;
}
	ul.ulblogtitle {
    width: 100%;
    margin: 0 auto 5%;
}
	
  /*--------------------
ABOOUT THE MOVIE
---------------------*/
	
	section.atm{
			overflow: hidden;
	}
	
	section.atm .inner {
    flex-direction: column;
    width: 80%;
	align-items: center;
	}
	.atm_main {
            width: 130vw;
		position: relative;
		z-index: 1;
}
		.atm_main::before {
    width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        content: "";
        height: 30px;
        background-image: linear-gradient(180deg, transparent, #000000);
    }
	.atm_inner {
	width: 100%;
        height: 100%;
        padding: 20% 0;
	}
	ul.img_list{
		flex-wrap: wrap;
	}
	.atm li.img_list_item{
		width: 50%;
	}
	h1.midashi_title {
    margin: 0 auto 15%;
	}
	h1.midashi_title img{
    max-height: 35px;
	}
	.atm_main img{
		    max-width: 100%;
    height: inherit;
    top: inherit;
    position: inherit;
    left: inherit;
    transform: inherit;
	}

  /*--------------------
CAST
	---------------------*/
	
		section.cast .inner{
		min-width: inherit;
	}
	
	.cast_img {
    width: 100%;
    margin: 0 auto 10%;
}
	.cast_name {
    margin: 0 auto 3%;
}
	.list_01 .cast_name img {
    height: 8vw;
}
	.cast_name_eng {
    margin: 0 auto 5%;
		font-size: clamp(13px, 4vw, 16px);
}
	ul.cast_list.list_01 {
    width: 100%;
		 margin: 0 auto 15%;
		   min-width: inherit;
	}
	ul.cast_list.list_02 {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
		        min-width: inherit;
	}
	ul.cast_list.list_02 li.cast_list_item {
    width: 100%;
    margin: 0 0 15% 0;
}
	ul.cast_list.list_02 li.cast_list_item:nth-child(2n) {
    margin: 0 0 15% 0;
}
	  ul.cast_list.list_02 .cast_img {
        width: 80%;
	}
	
	
  /*--------------------
STAFF
---------------------*/
	
	.staff {
    margin: 20% auto 0;
}
	.staff ul.cast_list {
    width: 100%;
		min-width: inherit;
	}
	.staff ul.cast_list li:first-child {
    margin: 0 0 15% 0;
}
	.staff .cast_img{
		width: 90%;
	}
	
	
  /*--------------------
FOOTER
---------------------*/
	
	.img_list_wrap {
    border-top: 2px solid #f4bb00;
    border-bottom: 2px solid #f4bb00;
}
	
	.footer li.img_list_item{
		width: 100%;
	}
	.footer_logo {
    width: 90%;
	}

	
	
}
@media screen and (max-width: 500px) {
  /*--------------------
LOADING
---------------------*/
  /*--------------------
TRAILER(POPUP)
---------------------*/
  /*--------------------
TOP
---------------------*/
  /*--------------------
MENU
---------------------*/
  /*--------------------
TOP
---------------------*/
  /*--------------------
RAILER
---------------------*/
  /*--------------------
INTRODUCTION
---------------------*/
  /*--------------------
STORY
---------------------*/
  /*--------------------
CAST
---------------------*/
  /*--------------------
STAFF
---------------------*/
  /*--------------------
FOOTER
---------------------*/
}