@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-color: #020607;
  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;
}
.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;
}
.logo {
width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  text-align: center;
  z-index: 1000;
  opacity: 0;
}
/*--------------------
TRAILER
--------------------*/
.trailer{
    position: fixed;
	    top: 0;
    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: calc(50% - 40px);
    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;
}

.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 0 0;
    font-size: 14px;
    line-height: 1;
    flex-wrap: wrap;
    border: 1px solid #fff;
    box-sizing: border-box;
    letter-spacing: 0.05rem;
    text-align: center;
}
.trailer_tab li:nth-child(2n){
	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, #youtube2{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    opacity: 1;
	z-index: 2;
}

.trailer.on #youtube1, .trailer.on #youtube2{
    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;
}
/*--------------------
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;
/*  animation: slideIn 5s ease 1s 1 normal backwards;*/
}
 
@keyframes slideInAnimeY{
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
	
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

nav.header_nav {
position: fixed;
    top: 0;
    right: 5%;
    width: 100%;
    z-index: 300;

}
.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: flex-end;
    padding: 2% 0 0;
    width: auto;
    vertical-align: middle;
    box-sizing: border-box;
    z-index: 300;
    align-items: center;
}
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;
  color: #fff;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 2vw, 18px);
}
nav.header_nav ul li a:hover {
  color: #E51A1D;
  transition: 0.8s;
}

nav.header_nav ul li a img{
    height: 1vw;
    min-height: 16px;
    max-width: inherit;
    filter: drop-shadow(0 0 5px #000);
}
.sns_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns_icon{
	    margin: 0 1% 0 0;
}
.sns_icon a {
  transition: .7s;
  color: #fff;
}
nav.header_nav ul.sns_wrap li a img {
      height: 26px !important;
    max-width: inherit;
}
.sns_icon a:hover {
  transition: .7s;
}
.twitter {
  margin: 0 10px 0 0;
}
nav.header_nav ul.sns_wrap {
    height: auto;
    line-height: inherit;
	       width: 80px;
}
nav.header_nav ul.sns_wrap li {
    margin: 0 10% 0 0;
    height: auto;
    line-height: inherit;
}
nav.header_nav ul.sns_wrap li:last-child {
    margin: 0 auto;
}
nav.header_nav ul.sns_wrap li a{
display: flex;
}
.sns_icon{
	    width: 30px;
}


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

section.top{
	width: 100%;
	position: relative;	
}


.top .inner{
    width: 90%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
	position: relative;
		
}
.title{
width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    z-index: 2;
	opacity: 0;
}
.copy{
	width: 5%;
    position: absolute;
    top: 5%;
    left: 5%;
	opacity: 0;
}
.billing{
width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    z-index: 2;
	opacity: 0;
}


header.menu{
		display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    flex-direction: column;
    top: 5%;
    left: 3%;
    z-index: 500;
	opacity: 0;
}
li.menu_item {
    text-align: left;
        margin: 0 auto 20%;
}

li.menu_item img{
	    height: 1.6vw;
	        max-height: 30px;
    max-width: inherit;
}
li.sns_item:first-child img{
	   height: 1.6vw;
	        max-height: 30px;
	max-width: inherit;
}
ul.sns_list {
    display: flex;
	align-items: baseline;
	    line-height: 1;
}
li.sns_item:first-child{
	margin: 0 20px 0 0;
}
li.sns_item a{
    display: flex;
    justify-content: center;
    align-items: center;
	transition: .7s;
	width: 50px;
    height: 50px;
}
li.sns_item a:hover{
	transition: .7s;
}
li.sns_item a img{
	width: 60%;
	margin: 0 auto;
}

/*--------------------
NOTE
---------------------*/
section.note_wrap{
	background-color: #000;
}
section.note_wrap .inner{
	padding: 2% 0;
}
.note{
	font-size: 14px;
	color: #c5c6bb;
}


/*--------------------
NEWS
---------------------*/

.news{
	position: relative;
	z-index: 1;
}
.news::before{
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/news_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: .5;
}
.news .inner{
width: 50%;
	position: relative;
	z-index: 3;
}

.news h1.midashi_title{
    color: #F7FBFC;
    text-align: left;
    font-size: 2rem;
    margin: 0 auto 15%;
    line-height: 2vw;
    letter-spacing: 0.5rem;
}
h1.midashi_title img{
	height: 1.5vw;
    max-width: inherit;
}
.news_wrap{
width: 100%;
display: flex;

}
.news_date{
 color: #F7FBFC;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 10px 0 0;
}
.news_title {
     width: 90%;
    margin: 0 auto;
    line-height: 1;
	text-align: left;
	color: #F7FBFC;
}
.title_wrap {
    margin: 0 5% 0 0;
	width: 15%;
}
.viewall{
text-align: right;
font-size: 14px;
	    line-height: 1;
}
a.nor{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    transition: .7s;
    position: relative;
    display: block;
    text-align: left;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}

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

ul.ulblogtitle li{
    width: 100%;
    padding: 2% 0;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
}
ul.ulblogtitle li:first-child{
	border-top: 1px solid #fff;

}
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: relative;
    display: inline-block;
    width: 20%;
    height: 2px;
    margin: 0 0 2px 10%;
    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%;
}

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

section.movie{
	position: relative;
}
section.movie::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.4;
}
.movie .inner{
	position: relative;
	z-index: 2;
}

.movie_wrap{
display: flex;
overflow: hidden;
}
ul.trailer_list{
      width: 80%;
    margin: 0 auto;
    display: flex;
        justify-content: center;
    align-items: center;
  }
  li.trailer_item{
    width: 80%;
    margin: 0 auto;
  }
   li.trailer_item:first-child{
      margin: 0 5% 0 0;
  }
.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	box-sizing: border-box;
	    background: #000;
	position: relative;
	z-index: 1;
}

.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: "";
    position: absolute;
    background-image: url("../img/yt_logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    display: block;
    right: 0;

}
.trailer_pop_btn iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    line-height: 1;
}
.trailer_midashi{
	    color: #fff;
    margin: 10px auto 0;
}

/*--------------------
INTRO
---------------------*/

section.intro{
	background-image: url("../img/intro_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
h1.midashi_title{
    text-align: center;
    margin: 0 auto 5%;
}

.text{
	color: #fff;
	text-align: justify;
	text-align-last: left;
}

/*--------------------
STORY
---------------------*/
section.story{
	position: relative;
	z-index: 1;
	overflow: hidden;
}
section.story .inner{
	position: relative;
	z-index: 3;
	padding: 5% 0 30%;
}
.story_bg{
	width: 100%;
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}
.loop_wrap {
  display: flex;
  width: 100%;
  height: 260px;
  overflow: hidden;
  padding: 0;
}

.loop_wrap img {
  width: auto;
  height: 100%;
      max-width: inherit;
}
.loopo_list{
display: flex;
}
.loopo_list li{
        width: 446px;
}


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


ul.cast_list{
	display: flex;
    flex-direction: column;
}

li.cast_list_item{
	    display: flex;
    justify-content: center;
    align-items: flex-start;
	margin: 0 auto 5%;
}
li.cast_list_item:nth-child(2n){
	    flex-direction: row-reverse;
}
li.cast_list_item:last-child{
	margin: 0 auto;
}
.cast_img{
	    width: 40%;
    margin: 0 5% 0 auto;
}
li.cast_list_item:nth-child(2n) .cast_img {
    margin: 0 auto 0 5%;
}
.cast_info{
	width: 65%;
}
.cast_name{
	    text-align: left;
    margin: 0 auto 2%;
}
.cast_name img{
	height: 28px;
}


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

footer{
	position: relative;
	z-index: 1;
	overflow: hidden;
}
footer .inner{
	position: relative;
	z-index: 3;
	padding: 5% 0 20%;
}
.footer_bg{
	width: 100%;
	position: absolute;
	z-index: 2;
	bottom: -10%;
	left: 50%;
	transform: translate(-50%, 0);
}

.footer_billing{
	    width: 60%;
	margin: 0 auto;
}



@media screen and (max-width: 1200px) {
	.news .inner {
    width: 70%;
}
}

@media screen and (max-width: 768px) {

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

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

.logo {
width: 50%;
}
	
/*--------------------
TRAILER
---------------------*/
	.trailer .trailer_tab li {
    width: 100%;
	margin: 0 auto 5px;
	}

/*-------------------
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%;
}
.sns_wrap{
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translate(0, -50%);
        z-index: 779;
	justify-content: flex-start;
    }
	.sns_icon {
		width: auto;
            margin: 0 30% 0 0;
}
	.sns_icon img{
		height: 30px;
		        max-width: inherit;
}

  /*hamburger-menu*/
  .menu_bg {
width: 100%;
        height: 50px;
        background-color: #000;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 779;
  }
  .menu {
        height: 15px;
        position: absolute;
        top: 50%;
        right: 5%;
        width: 30px;
        z-index: 779;
        cursor: pointer;
        transform: translate(0, -50%);
  }
  .menu__line {
    background: #fff;
    display: block;
    height: 2px;
    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: 8px;
    transform: rotate(40deg);
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 5px;
    transform: rotate(-40deg);
  }
  /*gnav*/
  .gnav {
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    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: 60%;
        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 10%;
  }
	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;
	}


  
  /*humberger-menuここまで*/
/*--------------------
TOP
---------------------*/
	
	header.menu {
    left: 5%;
	}
	li.menu_item img {
    height: 5vw;
	}
	li.sns_item:first-child img {
    height: 5vw;
	}
ul.sns_list {
    top: 3%;
    right: 6%;
}
	li.sns_item:first-child {
    margin: 0 10px 0 0;
}
	section.top{
		    margin: 50px auto 0;
	}
	.top .inner {
    width: 100%;
	}
	.copy {
    width: 10%;
    top: 4%;
	}

/*--------------------
NOTE
---------------------*/
section.note_wrap .inner{
	padding: 5% 0;
}
.note{
	font-size: 13px;
}
	
/*--------------------
NEWS
---------------------*/
	
	
    .news .inner {
        width: 80%;
        padding: 15% 0;
    }
    .news_wrap {
        flex-direction: column;
    margin: 0 auto;
	}
	    h1.midashi_title {
        margin: 0 auto 10%;
	}
.news h1.midashi_title {
  margin: 0 auto 5%;
	}
h1.midashi_title img {
        height: 6vw;
        min-height: 20px;
	        max-height: 30px;
    }
	.title_wrap {
    margin: 0 auto;
    width: 100%;
}
	ul.ulblogtitle {
		width: 100%;
    margin: 10% auto 0;
	}
	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;
}
	.arrow {

    margin: 0 0 2px 10px;
    max-width: 20px;
	}
	
/*--------------------
MOVIE
---------------------*/
	.trailer .trailer_inner {
    top: 40%;
    width: 90%;
	}
	ul.trailer_list {
    width: 100%;
		flex-direction: column;
	}
	li.trailer_item {
	width: 100%;
	}
	li.trailer_item:first-child {
	width: 100%;
		margin: 0 auto 5%;
	}
	
/*--------------------
STORY
---------------------*/
	section.story .inner {
    position: relative;
    z-index: 3;
    padding: 15% 0 90%;
	}

	.story_bg {
    width: 300%;
	}
	
	.loop_wrap {
    height: 150px;
	}
	.loopo_list li{
        width: 257px;
}
	
/*--------------------
CAST
---------------------*/
	
	li.cast_list_item {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15%;
}
	li.cast_list_item:nth-child(2n) {
    flex-direction: column;
}
	.cast_img, li.cast_list_item:nth-child(2n) .cast_img {
    width: 100%;
	max-width: 450px;
    margin: 0 auto 10%;
}
	.cast_info {
    width: 100%;
}
	.cast_name {
    text-align: center;
    margin: 0 auto 5%;
}
	
/*--------------------
FOOTER
---------------------*/	
	
	footer .inner {
    position: relative;
    z-index: 3;
    padding: 15% 0 60%;
}
	.footer_bg {
    width: 350%;
		    bottom: -20%;
	}
	.footer_billing {
    width: 80%;
	max-width: 400px;
	}
	
}

@media screen and (max-width: 500px) {
	
li.sns_item a {
    width: 40px;
    height: 40px;
	}
	
}




	
	
	