@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: "dnp-shuei-mincho-pr6n", sans-serif;
	font-weight: 500;
  line-height: 1.5;
  background-color: #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 {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 5% 0;
}
.inner {
  width: 60%;
	min-width: 550px;
  margin: 0 auto;
  position: relative;
 
}
h1.midashi_title{
    color: #fff;
    text-align: left;
    font-size: 2rem;
    margin: 0 auto 3%;
    line-height: 1;
}
h1.midashi_title img{
    max-width: inherit;
    height: 2vw;
}
.text{
color: #fff;
text-align: justify;
text-align-last: left;
}

/*--------------------
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;
    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 5px 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 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;
}
/*--------------------
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: 3s;
  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;
  }
}


/*-------------------
MENU
--------------------*/
header {
  /*opacity: 0;*/
  position: fixed;
  z-index: 299;
  translate: none;
}
nav.header_nav {
    position: fixed;
    top: 5%;
    left: 2%;
    width: auto;
    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: flex;
    display: -webkit-flex;
    -webkit-justify-content: left;
    flex-direction: column;
    padding: 0;
    width: auto;
    vertical-align: middle;
    box-sizing: border-box;
    z-index: 300;
    align-items: flex-start;
}
nav.header_nav ul li {
  vertical-align: middle;
      padding: 0 0 10%;
}
nav.header_nav ul li:last-child {
      padding: 0;
}
nav.header_nav ul li a {
  display: block;
  transition: 0.8s;
  color: #fff;
  font-family: "dnp-shuei-nmincho-std", sans-serif;
  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: 1.6vw;
    max-width: inherit;
}
.sns_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.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;
}



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

section.top{
	width: 100%;
	position: relative;	
	padding: 0;
		background-color: #000;
/*height: 100vh;*/
}


.top .inner{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
   
		
}
.top_main{
width: 90%;
    margin: 0 auto;
	overflow: hidden;
}
.top_main img{
/*height: 100%;
	    max-width: inherit;
    transform: translate(-50%, 0);
    left: 50%;
    position: relative;*/
}
.date_wrap{
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, 0px);
    opacity: 0;
    z-index: 3;
    filter: drop-shadow(0 0 10px #002229);
}
.date{
    width: 17%;
    margin: 0 auto 5px;
    box-sizing: border-box;
}
.theater_name{
    width: 40%;
    margin: 0 auto;
	line-height: 1;
}


.roadshow {
color: rgb(255, 255, 255);
    font-size: 1.1vw;
    letter-spacing: 0.2rem;
    font-weight: bold;
    line-height: 1;
    margin: 1% auto 2%;
}

/*--------------------
MVTK
---------------------*/
	.theater_btn{
    width: 70%;
    max-width: 300px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #fff;
    margin: 0 auto 1%;
	}
	.theater_btn img{
	        width: 50%;
                max-width: 200px;
	}
	.theater_btn a{
	color: #fff;
	}
.muvtke_wrap{
	background-color: #000;
    height: 100%;
    padding: 3% 0;
}

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


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

.news{
background-color: #0a110d;
position: relative;
z-index: 1;
    padding: 3% 0;
}
.news::before{
content: "";
display: block;
position: absolute;
top: 0; 
left: 0;
width: 100%;
height: 100%;
background-image: url("../img/paper_bg.jpg");
opacity: .5;
mix-blend-mode: multiply;
z-index: 2;
}
.news .inner{
width: 50%;
position: relative;
z-index: 3;
}


.news_wrap {
    width: 100%;
    margin: 8% auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;

}
.news h1.midashi_title{
    margin: 0 5% 0 auto;
}
.news_date{
 color: #F7FBFC;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 10px 0 0;
}
.news_title {
     /*width: 90%;*/
	width: 100%;
    margin: 0 auto;
    line-height: 1;
	text-align: left;
	color: #F7FBFC;
}



.viewall{
    text-align: right;
    font-size: 14px;
    position: relative;
    width: 150px;
    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 5%;
    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: 25%;
    right: 10%;
    width: 30px;
    height: 2px;
    margin: 0 0 0 24px;
    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;
	background-color: #000;
}
/*section.movie::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../img/paper_bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	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:last-child{
  margin: 0;
  }
.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	filter: drop-shadow(0 0 5px #fff);
	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/youtube_social_icon_red.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;
}

.movie_midashi{
    color: #fff;
    margin: 10px 0 0 0;
	    letter-spacing: 0.5rem;
		text-align: center;
}




/*--------------------
INTRO
---------------------*/
section.intro{
background-image: url("../img/intro_bg.jpg");
    background-position: center 10%;
background-repeat: no-repeat;
background-size: cover;
}
.intro_lead{
margin: 0 auto 15vw;
}
.intro .text{
margin: 0 auto 1%;
}

/*--------------------
STORY
---------------------*/
section.story{
	background-color: #000;
}
.story_lead{
margin: 0 auto 5%;
}
.story_lead{
margin: 0 auto 2%;
}
.story .text{
margin: 0 auto 1%;
}
.bold{
font-size: clamp(18px, 1.2vw, 20px);
font-weight: bold;
margin-bottom: 1%;
}

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

section.cast{
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
	position: relative;
}
section.cast::before{
content: "";
display: block;
width: 100%;
height: 100%;
background-color: #000;
opacity: .5;
position: absolute;
top: 0;
left: 0;
	z-index: -1;
}
section.cast::after{
content: "";
display: block;
width: 100%;
height: 100%;
background-image: url("../img/story_bg.jpg");
position: fixed;
top: 0;
left: 0;
	z-index: -2;
}
ul.cmt_list{
    width: 100%;
    max-width: 900px;
	margin: 0 auto;
	list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
li.cmt_item{
    display: flex;
    flex-direction: column;
    margin: 0 5% 10% 0;
    width: 47.5%;
    align-items: center;
}
li.cmt_item:nth-child(2){
    margin: 0 0 10% 0;
}
li.cmt_item:nth-child(3), li.cmt_item:nth-child(4){
	width: calc(95% / 3);
    margin: 0 2.5% 0 0;
}
li.cmt_item:nth-child(5){
	width: calc(95% / 3);
    margin: 0 0 0 0;
}
li.cmt_item:last-child{
margin: 0 auto;
}
.profile_midashi, .cmt_midashi{
	    color: #fff;
    font-size: clamp(16px, 1vw, 20px);
    margin: 0 auto 3% 0;
    text-align: left;
}
.cmt_midashi{
     margin: 0 auto 3% 0;
}
.profile_midashi img, .cmt_midashi img{
	height: 1.3vw;
    min-height: 20px;
    max-height: 30px;
}
.cmt_img{
    width: 100%;
    margin: 0 0 10% 0;
}
.text_wrap{
width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.cmt_name{
    margin: 0 auto 7% 0;
    display: flex;
    align-items: center;
    font-weight: bold;
    justify-content: flex-start;
    flex-wrap: wrap;
	flex-direction: column;
}
.name{
color: #fff;
text-align: left;
    font-size: clamp(18px, 1.4vw, 24px);
	    font-weight: bold;
	line-height: 1.3;
}
li.cmt_item:nth-child(3) .name, li.cmt_item:nth-child(4) .name, li.cmt_item:nth-child(5) .name {
       font-size: clamp(18px, 1.2vw, 22px);
}
li.cmt_item:nth-child(3) .cmt_name, li.cmt_item:nth-child(4) .cmt_name, li.cmt_item:nth-child(5) .cmt_name {
    margin: 0 auto 10% 0;
}
li.cmt_item:nth-child(3) .profile_midashi, li.cmt_item:nth-child(4) .profile_midashi, li.cmt_item:nth-child(5) .profile_midashi {
    margin: 0 auto 5% 0;
}
.name span.kana {
    font-size: clamp(15px, 1vw, 17px);
}
li.cmt_item:nth-child(3) .name span.kana, li.cmt_item:nth-child(4) .name span.kana, li.cmt_item:nth-child(5) .name span.kana{
font-size: clamp(15px, 1vw, 16px);
    font-weight: bold;
	    margin: 0 0 0 -0.5rem;
}
.character_name{
color: #fff;
font-size: clamp(18px, 1.4vw, 20px);
    margin: 0 auto 10px 0;
	    font-weight: bold;
}
li.cmt_item:nth-child(3) .character_name, li.cmt_item:nth-child(4) .character_name, li.cmt_item:nth-child(5) .character_name {
    font-size: clamp(18px, 1vw, 18px);
}

li.cmt_item:nth-child(3) .profile_midashi img, li.cmt_item:nth-child(3) .cmt_midashi img, li.cmt_item:nth-child(4) .profile_midashi img, li.cmt_item:nth-child(4) .cmt_midashi img, li.cmt_item:nth-child(5) .profile_midashi img, li.cmt_item:nth-child(5) .cmt_midashi img {
    height: 1.2vw;
}

/*modal---------------------------*/


.md-scroll{
	    width: 100%;
    height: 100%;
    display: flex;
    align-items:flex-start;
        justify-content: center;
          flex-direction: column;
	}
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background-color: #000;
  opacity: 1;
  z-index: 400;
}
 
.md-contents{
  display: none;
  position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 401;
	width: 100%;
    height: 100vh;
}

.md-inner {
width: 70%;
    height: auto;
    min-height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 5%;
    border: 1px solid #fff;
}
.md-inner-wrap{
    width: 100%;
	height: 100%;
    box-sizing: border-box;
	overflow-y: auto;
	}

.md-inner-wrap::-webkit-scrollbar{
  display: none;
}
.md-inner .profile_img {
    width: 100%;
	margin: 0 auto;
	
}
.cast_icon{
	position: relative;
	z-index: 1;
	height: 100%;
}
a.md-btn{
    border-radius: 5px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: 0.7s;
    border: 1px solid rgb(238, 238, 238);
    background-color: rgb(238, 238, 238);
    padding: 5px 15px;
    display: flex;
    margin: 20% 0px 0px;
	align-items: center;
}
a.md-btn:hover{
    width: 100%;
    height: 100%;
	transition: .7s;
	opacity: .7;
}
.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #000;
  border-right: 0;
  margin: 0 10px 0 0;
}
a.md-btn img{
	height: clamp(16px, 1.3vw, 20px);
}
.md-xmark{
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    z-index: 400;
    cursor: pointer;
    background-size: cover;
}
.md-xmark span {
position: absolute;
	  top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
   transform-origin: center;
    background-color: #fff;
}
.md-xmark span:nth-of-type(1) {

    transform: translateX(-50%) rotate(-45deg);
}

.md-xmark span:nth-of-type(2) {
    transform: translateX(-50%) rotate(45deg);
}

/*--------------------
STAFF
---------------------*/
.inner#staff{
	margin: 5% auto 0;
}
.inner#staff .cmt_midashi{
    margin: 0 auto 1% 0;
}
.inner#staff li.cmt_item:last-child{
	width: 40%;
}


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

.crowdfunding_wrap{
	    margin: 0 auto 10%;
}

h2.sp_midashi{
	    font-size: clamp(18px, 1.8vw, 24px);
    margin: 0 auto 2%;
    font-weight: bold;
}
.cf_name{
	    line-height: 2;
    font-size: 15px;
}

footer{
width: 100%;
color: #fff;
font-size: 14px;
background-color: #000;
}
footer .inner {
    padding: 5% 0;
}
.billing{
width: 70%;
margin: 0 auto;

}

.footer_date{
    width: 18%;
    margin: 0 auto 3%;
}
.footer_date_text{
    width: 40%;
    margin: 0 auto 5%;
}
/*--------------------
GB SNS
---------------------*/
.gb_sns_area{
border-top: 1px solid #fff;
background-color: #000;
}

.gb_sns_area .inner{
align-items: center;
    padding: 2% 0;
    display: flex;
   justify-content: flex-end;
    width: 40%;
}
.gb_logo{
        width: 50%;
		    text-align: left;
}
.gb_logo img{
        width: 45%;
}
.officialsns {
    color: #fff;
    width: 25%;
    display: flex;
    align-items: center;
    margin: 0 5% 0 0;
}
ul.gb_sns_list{
display: flex;
width: 20%;
}
ul.gb_sns_list li{
	margin: 0 10% 0 0;
}
ul.gb_sns_list li:last-child{
	margin: 0;
}



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

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

.wrapper{
margin: 50px auto 0;
}
section{
padding: 0;
}
.inner {
    width: 80%;
	min-width: inherit;
    margin: 0 auto;
    padding: 15% 0;
}
h1.midashi_title  {
        margin: 0 0 10%;
}
h1.midashi_title img {
    max-width: inherit;
    height: 8vw;
	max-height: 40px;
	}

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

.logo {
width: 80%;
}
	
/*--------------------
TRAILER
---------------------*/
	
	.trailer .trailer_inner {
           top: calc(40% - 20px);
    width: 90%;
}

/*-------------------
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_icon{
        width: 25px;
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translate(0, -50%);
        z-index: 779;
    }

  /*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%;
  }
  nav.header_nav ul.gnav__menu li {
    text-align: center;
	padding: 0 0 5%;
  }
  nav.header_nav ul.gnav__menu li:first-child {
    border-left: none;
  }
  nav.header_nav ul.gnav__menu li img {
	        height: 8vw;
        max-height: 40px;
  }




  
  /*humberger-menuここまで*/

/*--------------------
TOP
---------------------*/
section.top {
    height: auto;
	}
	.top .inner{
	    padding: 0 0 10%;
	}
	.top_main {
    height: auto;
}
.top_main img {
    height: auto;
	max-width: 100%;
	}
	.date_wrap {
    bottom: 5%;
	}
	.date {
    width: 50%;
	        max-width: 350px;
	}
	.roadshow {
    font-size: 3vw;
	    margin: 2% auto 4%;
	}
	.theater_name {
    width: 100%;
	}
.theater_btn {
    margin: 5% auto;
	}
	
	/*--------------------
MVTK
---------------------*/

#mvtk-widgets-container {
    margin: 0 auto 5%;
}
	
/*--------------------
NEWS
---------------------*/
	
.news{
padding: 0;
}
	.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%;
        text-align: left;
        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;
}
	
/*--------------------
MOVIE
---------------------*/

	ul.trailer_list {
    width: 100%;
	}
	li.trailer_item {
    width: 100%;
	}
	
/*--------------------
INTRO
---------------------*/

 section.intro{
 padding: 0;
     background-size: 165%;
	 background-position: center 0;
 }
		.intro_lead {
    margin: 0 auto 25vw;
}
.intro .text {
    margin: 0 auto 7%;
}

/*--------------------
STORY
---------------------*/
.story_lead {
    margin: 0 auto 10%;
	max-width: 450px;
}
.story .text {
    margin: 0 auto 7%;
}
.bold {
    margin-bottom: 5%;
	}
    

/*--------------------
COMMENT
---------------------*/

section.comment{
background-position: 50%;
}
	ul.cmt_list {
    width: 100%;
	}

.cmt_img {
    width: 100%;
    margin: 0 auto 10%;
	}
.cmt_name {
	width: 100%;
margin: 0 auto 10%;
	}
.character_name {
    margin: 0 auto 2% 0;
	}
	.character_name {
    font-size: clamp(22px, 2vw, 26px);
}
	.name {
		width: 100%;
        font-size: clamp(20px, 3.5vw, 22px);
		    line-height: 1.2;
    }
	    li.cmt_item:nth-child(3) .name, li.cmt_item:nth-child(4) .name, li.cmt_item:nth-child(5) .name {
        font-size: clamp(20px, 3.5vw, 22px);
    }
	    .name span.kana {
        font-size: clamp(18px, 1.2vw, 22px);
    }
	li.cmt_item:nth-child(3) .name span.kana, li.cmt_item:nth-child(4) .name span.kana, li.cmt_item:nth-child(5) .name span.kana{
	    margin: 0;
}
	span.slash{
	display: none;
	}
	.text_wrap {
    width: 100%;
	}
	a.md-btn {
    margin: 25% 0px 0px;
	}
	.profile_midashi, .cmt_midashi {
    margin: 0 auto 5% 0;
	}
	.md-inner {
    width: 80%;
    padding: 10% 5%;
	}
	
/*--------------------
STAFF
---------------------*/	
	.inner#staff {
    margin: 0 auto;
}


/*--------------------
FOOTER
---------------------*/
	h2.sp_midashi {
    font-size: clamp(18px, 5.5vw, 24px);
    margin: 0 auto 7%;
	}
footer{
font-size: 12px;
}
    footer .inner {
        padding: 10% 0;
    }
.footer_date {
    width: 35%;
	max-width: 180px;
	margin: 0 auto 7%;
	}
	.footer_date_text {
    width: 85%;
	        max-width: 400px;
    margin: 0 auto 10%;
}
.billing {
    width: 100%;
	max-width: 400px;
	}
	
/*--------------------
GB SNS
---------------------*/
	.gb_sns_area .inner {
    flex-direction: column;
    align-items: center;
    padding: 10% 0;
    display: flex;
    justify-content: flex-end;
    width: 80%;
}
.gb_logo {
            width: 75%;
        max-width: 300px;
    text-align: center;
    margin: 0 auto 5%;
}
.gb_logo img {
    width: 60%;
}
.officialsns {
    color: #fff;
    width: 40%;
	max-width: 200px;
    display: flex;
    align-items: center;
    margin: 0 auto 7%;
	}
ul.gb_sns_list {
    width: 40%;
	        max-width: 200px;
	}

}

@media screen and (max-width: 500px) {
	
/*--------------------
TOP
---------------------*/
	
	li.cmt_item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin: 0 0 20% 0;
	}
	li.cmt_item:nth-child(2) {
    margin: 0 0 20% 0;
}
	li.cmt_item:nth-child(3), li.cmt_item:nth-child(4) {
    width: 100%;
    margin: 0 0 20% 0;
}
		li.cmt_item:nth-child(5) {
    width: 100%;
    margin: 0;
}
		.name {
        font-size: clamp(22px, 5.5vw, 24px);
    }
	li.cmt_item:nth-child(3) .name, li.cmt_item:nth-child(4) .name, li.cmt_item:nth-child(5) .name {
     font-size: clamp(22px, 5.5vw, 24px);
}
	.character_name{
font-size: clamp(18px, 1.4vw, 20px);
	
}
.name span.kana {
    font-size: clamp(15px, 1.2vw, 16px);
	}
	li.cmt_item:nth-child(3) .name span.kana, li.cmt_item:nth-child(4) .name span.kana, li.cmt_item:nth-child(5) .name span.kana{
	    margin: 0;
}
		.inner#staff li.cmt_item:last-child {
    width: 100%;
}
	
	
	}






@media (orientation: landscape) and (max-width: 960px){
/*デバイスが横向き、画面の横幅が 767px 以下の場合の記述*/

}
	
	
	
	