@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 Serif JP", serif;
	font-weight: 500;
  line-height: 1.5;
  background: #000;
  overflow-y: scroll;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}
section, footer{
	position: relative;
	z-index: 2;
}
.inner{
    width: 60%;
    margin: 0 auto;
    padding: 5% 0 ;

}

/*--------------------
LOADING
---------------------*/
.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #000;
}
.loader {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
}
.loader div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: .8;
}
.one {
  border-top: 1px solid #fff;
  animation: rotate-left 1.5s linear infinite;
}
.two {
  border-right: 1px solid #fff;
  animation: rotate-right 1.5s linear infinite;
}
.three {
  border-bottom: 1px solid #fff;
  animation: rotate-right 1.5s linear infinite;
}
.four {
  border-left: 1px solid #fff;
  animation: rotate-right 1.5s linear infinite;
}
@keyframes rotate-left {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotate-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  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;
  }
}

/*--------------------
TRAILER
--------------------*/
.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    display:none;
}

.trailer.on{
	animation-name: TfadeInAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.trailer.off{
	animation-name: TfadeOutAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.trailer_overlay{
    position: fixed;
    top: 0;
    width: 100%;
   height: 100%;
    background: #000;
    opacity: 1;
    z-index: 999999997;
    
}

.close_btn{
      position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  z-index: 999999999;
  cursor: pointer;
  transition: .7s;
}
.close_btn:hover{
transition: .7s;
opacity: .7;
}
.close_btn_inner{
position: relative;
width: 100%;
height: 100%;
}

.close_btn_inner::before,
.close_btn_inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #ffffff;
}
 
.close_btn_inner::before {
      transform: translate(-50%, -50%) skewY(-45deg);
}
 
.close_btn_inner::after {
     transform: translate(-50%, -50%) skewY(45deg);
}

.trailer.on .trailer_overlay{
    opacity: 1;
}

.trailer .trailer_inner{
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 60%;
    aspect-ratio: 16 / 9;
    z-index: 999999998;
    height: auto;
    box-sizing: content-box;
}

.trailer .trailer_tab{
    position: absolute;
    color: #fff;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 10px;
	z-index: 999999998;
	 font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}

.trailer .trailer_tab li{
    display: flex;
    justify-content: center;
    width: calc(50% - 2.5px);
    padding: 10px;
    font-weight: bold;
    background: #fff;
    color: #000;
    margin: 0 5px 5px 0;
    font-size: 14px;
    line-height: 1;
    flex-wrap: wrap;
    box-sizing: border-box;
    letter-spacing: 0.1rem;
    text-align: center;
}
.trailer_tab li:nth-child(2n){
	margin: 0 0 5px;
}
.trailer .trailer_tab li:last-child{
    width: 100%;
    margin: 0;
}
.trailer_tab li.f_act{
	cursor: pointer;
	
	background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.trailer_tab li.f_act:hover{
   
}
#youtube1{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    opacity: 1;
	z-index: 2;
}

.trailer.on #youtube1{
    transform: scale(1,1);
    opacity: 1;
}


.youtube_wrapper{
		width: 48%;
	
	}
.youtube_wrapper:first-child{
		margin-right: 4%;
	}
.youtube_inner{
position: relative;
 padding-bottom: 56.25%;
  overflow: hidden;
	
}
.youtube_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ytp-cued-thumbnail-overlay-image {
    filter: none;
    -webkit-filter: none;
}

/*--------------------
MOVIE
---------------------*/

section.movie{
	position: relative;
	background-color: #000;
	overflow: hidden;
}
section.movie::before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	background-image: url("../img/texture.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	mix-blend-mode: hard-light;
}

.movie .inner{
	position: relative;
	z-index: 2;
	    padding: 0 0 5%;
}

.billing {
     width: 70%;
    margin: 0 auto 5%;
}
.movie_wrap{
display: flex;
overflow: hidden;
}
ul.trailer_list{
      width: 70%;
    margin: 0 auto;
    display: flex;
        justify-content: flex-start;
    align-items: center;
  }
li.trailer_item {
    width: 100%;
    margin: 0 auto;
}
.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	box-sizing: border-box;
	    background: #000;
}
.trailer_pop_btn a{
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 5;
    text-align: center;
    justify-content: center;
    align-items: center;
	    overflow: hidden;
}
.trailer_pop_btn a::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/yt_logo.png);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.trailer_pop_btn iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    line-height: 1;
}

/*--------------------
TOP
---------------------*/

section.top{
	width: 100%;
	position: relative;	
	opacity: 0;
	z-index: 3;
}
.top .inner{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
	color: #fff;
}

ul.menu_list{
	    display: flex;
    position: absolute;
    top: 20px;
    left: 5%;
    justify-content: center;
    align-items: center;
}
ul.menu_list li{
	margin: 0 10px 0 0;
	font-size: clamp(18px, 1vw, 20px);
	font-weight: bold;
}
ul.menu_list li:last-child{
	margin: 0;
}
ul.menu_list li a{
	color: #b1b1b1;
	transition: .7s;
}
ul.menu_list li a:hover{
	opacity: .7;
	transition: .7s;
}
ul.menu_list li.current a{
	color: #fff;
}

.top_date{
    width: 11%;
    position: absolute;
    bottom: 3%;
    left: 5%;
}
.theater_bnr {
    width: 9%;
    position: fixed;
    bottom: 5%;
    right: 3%;
    filter: drop-shadow(0px 0px 10px #fff);
	z-index: 50;
	min-width: 120px;
}
.theater_bnr a{
    display: block;
	transition: .7s;
}
.theater_bnr a:hover{
	transition: .7s;
	opacity: .7;
}

/*--------------------
MVTK
---------------------*/

.mvtk_wrap{
	    margin: 0 auto 5%;
	opacity: 0;
}

.mvtk_bnr{
	width: 300px;
	    margin: 1% auto 0;
}

.mvtk_bnr a{
	display: block;
	transition: .7s;
}

.mvtk_bnr a:hover{
	opacity: .7;
	transition: .7s;
}

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


/*--------------------
INTRO
---------------------*/
.intro{
	opacity: 0;
}

.lead{
	    margin: 0 auto 5%;
	    max-width: 1000px;
}
.title{
	font-size: clamp(18px, 1.2vw, 24px);
	font-weight: bold;
	margin: 0 auto 3%;
	text-align: left;
	color: #fff;
}
	
.text{
	text-align: justify;
	text-align-last: left;
	margin: 0 auto 3%;
	color: #fff;
}
.date{
	    width: 35%;
	min-width: 300px;
    margin: 7% auto 7%;
}
.info, .info a{
	color: #fff;
	
}


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

footer{
	border-top: 1px solid #fff;
}
footer .inner {
    padding: 20px 0;
}
.copyright{
	font-size: 12px;
	color: #fff;
}




@media screen and (max-width: 768px) {
	.wrapper{
		margin: 0 auto;
	}

.inner {
    width: 80%;
    margin: 0 auto;
    padding: 15% 0;
}
	


/*--------------------
LOADING
---------------------*/

.logo {
width: 50%;
}


/*--------------------
TOP
---------------------*/

	.date{
		    width: 60%;
		max-width: 400px;
           margin: 15% auto;
	}
	.top_date {
    width: 22%;
    position: absolute;
    bottom: 3%;
    left: 3%;
}
	.theater_bnr {
    width: 100%;
    position: inherit;
    bottom: inherit;
    right: inherit;
    filter: drop-shadow(0px 0px 5px #fff);
	z-index: 50;
	margin: 0 auto 7%;
	max-width: 350px;
		min-width: inherit;
}
	
/*--------------------
TRAILER
---------------------*/
	.trailer .trailer_inner {
    width: 90%;
		top: 45%;
	}
	ul.trailer_list {
    width: 100%;
	}
.movie .inner {
    padding: 0 0 15%;
}
	
/*--------------------
MVTK
---------------------*/
	
.mvtk_wrap{
	margin: 0 auto 20%;
	max-width: 280px;
}
	#mvtk-widgets-container {
    transform: translate(-50%, 0);
    position: relative;
    left: 50%;
    width: 100vw;
}
.mvtk_bnr{
	width: 80%;
	    margin: 5% auto 0;
}
	
/*--------------------
INTRO
---------------------*/

	.title{
		    margin: 0 auto 7%;
	}
	.lead {
    margin: 0 auto 10%;
		    max-width: 350px;
}
	.text{
	margin: 0 auto 7%;
}

	
}




	
	
	