@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 960px) {
  .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: #060705;
  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: 70%;
    margin: 0 auto;
    padding: 5% 0;
}

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

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #000001;
}
.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;
}
.fadeInAnime {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOutAnime {
  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;
  }
}

/*--------------------
VIDEO
---------------------*/
#video-area {
  position: fixed;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#video {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  min-height: 100%;
  min-width: 100%;
}
.video-overlay {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 100%, rgba(0, 0, 0, .8) 100%);
  background-size: 3px 3px;
}

/*--------------------
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: 100vh;
    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: 37%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 55%;
    min-width: 800px;
    aspect-ratio: 16 / 9;
    z-index: 999999998;
    height: auto;
    border: 1.5px solid #fdd300;
    box-sizing: content-box;
}

.trailer .trailer_tab{
    position: absolute;
    color: #fdd300;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 15px;
	z-index: 999999998;
}

.trailer .trailer_tab li{
    display: flex;
    justify-content: center;
    width: calc(50% - 5px);
    padding: 10px;
    font-weight: bold;
    background: #fdd300;
    color: #000;
    margin: 0 10px 10px 0;
    font-size: 14px;
    line-height: 1;
    flex-wrap: wrap;
    border: 1px solid #fdd300;
    box-sizing: border-box;
}

.trailer_tab li:nth-child(2){
	margin: 0 0 10px 0;
}
.trailer_tab li:nth-child(3){
    width: 100%;
    margin: 0 0 10px 0;
}
.trailer_tab li:nth-child(odd){
	 margin: 0 0 10px 0;
}
.trailer_tab li:nth-child(4), .trailer_tab li:nth-child(6){
	margin: 0 10px 10px 0;
}
.trailer_tab li:last-child{
     margin: 0 0 10px 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, #youtube3, #youtube4, #youtube5, #youtube6, #youtube7, #youtube8, #youtube9{
    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, .trailer.on #youtube3, .trailer.on #youtube4, .trailer.on #youtube5, .trailer.on #youtube6, .trailer.on #youtube7, .trailer.on #youtube8, .trailer.on #youtube9{
    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;
}


/*-------------------
MENU
--------------------*/
.header{
opacity: 0;
    position: relative;
    z-index: 800;
    width: 100%;
    height: auto;
}

.menu_bg{
	width: 3vw;
    height: 3vw;
    position: fixed;
    top: 2vw;
    right: 3%;
    z-index: 779;
    background-color: #000;
	border: 1px solid #fdd300;
	
}
.menu {
	height: 40%;
    position: absolute;
    right: 50%;
    top: 50%;
    width: 60%;
    z-index: 779;
    cursor: pointer;
    transform: translate(50%, -50%);
}

.menu__line {
  background: #fdd300;
  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: 50%;
     transform: translateY(-50%) rotate(45deg);
}
.menu__line--center.active {
	
  transform: scaleX(0);
}
.menu__line--bottom.active {
bottom: inherit;
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
}



/*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;
	    position: relative;
    z-index: 800;
}
.gnav__menu__item {
        width: 100%;
        height: 5vh;
        vertical-align: middle;
        line-height: 6vh;
		    margin: 10% auto 0;
}
.gnav__menu__item:last-child {
  border: none;
}
.gnav__menu__item a {
            color: #fdd300;
        font-size: clamp(14px, 1vw, 16px);
        font-weight: 700;
        text-decoration: none;
        transition: .5s;
          cursor: pointer;
        padding: 0 20px;
        width: auto;
        height: 100%;
        display: flex;
        margin: 10px auto auto;
        justify-content: center;
        align-items: center;
}
.gnav__menu__item.gray a {
	color: gray;
	pointer-events: none;
	}
	.gnav__menu__item a img {
	    height: 3vh;
	}


.gnav ul.sns_list {
    position: inherit;
    display: flex;
    justify-content: center;
	    margin: 2vh auto 0;
		    opacity: 0;

	}
	
	.gnav ul.sns_list li.sns_item{
	width: 48%;
    margin: 0 4% 0 0;
	}
	.gnav ul.sns_list li.sns_item:last-child{
    margin: 0;
	}
	   .gnav li.sns_item a {
        width: 100%;
        height: auto;
        padding: 10px 0;
		}
		.gnav li.sns_item a img {
    width: auto;
    margin: 0 auto;
    height: 24px;
	}
	
/*humberger-menuここまで*/

/*--------------------
共通
---------------------*/

h1.midashi_title{
    color: #F7FBFC;
    text-align: center;
    font-size: 1.7vw;
       margin: 0 auto 2vw;
    line-height: 1;
}

h1.midashi_title img{
    height: 24px;
}
.text{
color: #fff;
text-align: justify;
text-align-last: left;
    letter-spacing: 0.05rem;
}
.text_wrap::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.3);
  width: 3px;
  height: 3px;
  border-radius: 20px;
  margin: 0 auto 0 10px;
}
.text_wrap::-webkit-scrollbar-thumb {
  background-color: #fdd300;
  opacity: 0.7;
  border-radius: 20px;
   margin: 0 auto 0 10px;
}


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

section.top{
	width: 100%;
	background-image: url("../img/top_visual_pc.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;	
}
.top .inner{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;	
	padding: 0;
}
.top_title{
width: 100%;
opacity: 0;
}
.top_copy{
    position: absolute;
    width: 2.5%;
    top: 6vw;
    right: 3.3vw;
    opacity: 0;
}
.date{
      width: 100%;
    background-color: #fdd300;
     opacity: 0; 
	padding: 10px 0;
}
.date_inner{
    width: 60%;
    margin: 0 auto;
}

.f_bnr_wrap{
    position: absolute;
    width: 15%;
    bottom: 3%;
    left: 2%;
	opacity: 0;
}
.butai{
margin: 0 auto 5%;
}

/*--------------------
SNS
---------------------*/
section.sns_sec{
/*opacity: 0;*/
}
section.sns_sec .inner{
padding: 0;
}

ul.sns_list{
	display: flex !important;
	justify-content: flex-start;
	align-items: center;
	position: absolute;
	    top: 2vw;
        left: 2%;
	    z-index: 500;
		opacity: 0;
}
li.sns_item:first-child{
	    margin: 0 1vw 0 0;
}
li.sns_item a{
 display: flex;
    width: 3vw;
    height: 3vw;
    background-color: #000;
    border: 1px solid #fdd300;
    justify-content: center;
    align-items: center;
    transition: .7s;
}
li.sns_item a:hover{
	transition: .7s;
}
li.sns_item a img{
	width: 60%;
	margin: 0 auto;
}


/*--------------------
NEWS
---------------------*/
.news{
background-color: #000001;
}

.news h1.midashi_title{
    width: 12%;
	text-align: left;
	 margin: 0 5% 0 0;
}


.news .inner{
width: 50%;

}


.news_wrap{
width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.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: inherit;
	text-align: left;
	color: #F7FBFC;
}



.viewall{
text-align: right;
font-size: 14px;
}
a.nor{
color: #fff;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
	transition: .7s;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}

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

ul.ulblogtitle li{
    width: 100%;
    padding: 3% 0;
    box-sizing: border-box;
    
    background-image: linear-gradient(to right, #fdd300 1px, transparent 2px);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
}
ul.ulblogtitle li:first-child{
     padding: 0 0 3% 0;

}
ul.ulblogtitle li:last-child{
     border-bottom: none; 
	background: none;
}
ul.ulblogtitle li a{
	transition: .7s;
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
	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: 30px;
    height: 2px;
    margin: 0 0 0 10px;
    border-radius: 9999px;
    background-color: #fff;
}

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


.theater_bnr{
    width: 50%;
       margin: 5% auto 0;
    border: 1px solid #FDD300;
}
.theater_bnr a{
transition: .7s;
    width: 100%;
    height: 100%;
    padding: 5% 10%;
    display: block;
    box-sizing: border-box;
}
.theater_bnr a:hover{
    transition: .7s;
	opacity: .7;
}
.theater_bnr p{
    color: #fff;
    margin: 10px auto 0;
}
.theater_bnr img{
    height: 24px;
}

ul.bnr_list{
    width: 75%;
    display: flex;
    margin: 3% auto 0;
}
li.bnr_item{
width: 33%;
margin: 0 2% 0 0;
}
li.bnr_item a{
transition: .7s;
}
li.bnr_item a:hover{
transition: .7s;
opacity: .7;
}
li.bnr_item:nth-child(2n){
    width: 36%;
}
li.bnr_item:last-child{
margin: 0 auto 0;
}


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

.movie{
background-color: #000001;
position: relative;
}

.movie::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
  filter: contrast(100%) brightness(100%);
  background:  url("../img/noise.svg");
    opacity: 0.2;
}
ul.trailer_list{
      width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
	    flex-wrap: wrap;
  }
  li.trailer_item{
  width: 32%;
  margin: 0 2% 0 0;
  }
   li.trailer_item:nth-child(3){
  margin: 0;
  }
  li.trailer_item:nth-child(4), li.trailer_item:nth-child(5), li.trailer_item:nth-child(7), li.trailer_item:nth-child(8){
      margin: 2% 2% 0 0;
  } 

 li.trailer_item:nth-child(9),  li.trailer_item:nth-child(6){
     margin: 2% 0 0;
 }
 

.trailer_pop_btn{
    margin: 0 auto;
    width: 100%;
    border: 1px solid #fdd300;
    box-sizing: border-box;
    background: #000;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.trailer_pop_btn a{
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    text-align: center;
}
.trailer_pop_btn a::before{
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	background-image: url("../img/play_btn.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.trailer_pop_btn iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    line-height: 1;
}

.movie_midashi{
    color: #fff;
    margin: 10px 0 0 0;
}


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

.intro_img{
width: 100%;
   height: 35vw;
    overflow: hidden;
	margin: 0 auto 5%;
}
	.intro .text{
    width: 98%;
    margin: 0 auto 0 0;
}

/*--------------------
STORY
---------------------*/

.story{
background-color: #424343;
position: relative;
display: flex;
}

.story::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
  filter: contrast(100%) brightness(100%);
  background:  url("../img/noise.svg");
    opacity: 0.1;
	z-index: 2;
}

.story_bg{
width: 30%;
    overflow: hidden;
	background-image: url("../img/story_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left;
	position: relative;
}
.story_bg::before{
	content: "";
	width: 10%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
  filter: contrast(100%) brightness(100%);
  background: linear-gradient(90deg, rgba(66,67,67,0), rgba(66,67,67,1));
  z-index: 1;
}

.story .inner{
    width: 50%;
	    min-width: inherit;
    margin: 0 auto 0 5%;
	position: relative;
	z-index: 3;
}
.text_wrap {
    max-height: 20vw;
    overflow: auto;
}
.story .text{
    width: 98%;
    margin: 0 auto 0 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{
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
/*.other li.cast_list_item, .other li.cast_list_item:nth-child(2){
       width: 31%;
    margin: 0 3.5% 5% 0;
}
	.other li.cast_list_item:nth-child(3n){
	margin: 0;
	}*/
li.cast_list_item {
       width: 47.5%;
    margin: 0 5% 5% 0;
}

li.cast_list_item:nth-child(2n){
	margin-right: 0;
	}
.name_wrap{
	    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 7% 0 0 0;
	position: relative;
}
.name_wrap .chara_name {
    margin: 0 auto 15px;
}

.name_wrap .cast_name{
	margin: 0 auto;
}

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


.md-scroll{
	    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	}
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #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: 100svh;
}

.md-inner {
    width: 70%;
    height: auto;
    min-height: 500px;
    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;
    border: 1px solid #fdd300;
    padding: 3%;
}
.md-inner-wrap{
    width: 90%;
	height: 100%;
    box-sizing: border-box;
	overflow-y: auto;
	}

.md-inner-wrap::-webkit-scrollbar{
  display: none;
}
.md-inner .profile_img {
    width: 50%;
	margin: 0 auto;
	
}
.profile_img a{
	transition: .7s;
}
.profile_img a:hover{
	transition: .7s;
	opacity: .6;
}

.cast_icon{
	position: relative;
	z-index: 1;
}
a.md-btn{
    width: 2.5vw;
    height: 2.5vw;
    right: 0;
    background-color: #000;
	border: 1px solid #fdd300;
	box-sizing: border-box;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.ci-xmark{
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	right: 0;
	top: 0;
}
.ci-xmark span {
position: absolute;
	z-index: 3;
	  top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
   transform-origin: center;
    background-color: #fdd300;
}
.ci-xmark span:nth-of-type(1) {
        transform: translate(-50%, -50%);
}

.ci-xmark span:nth-of-type(2) {
        transform: translate(-50%, -50%) rotate(90deg);
}


.cast_img_wrap{
    width: 100%;
    margin: 0 auto 3%;
}
.cast_img_wrap .name_wrap{
margin: 3% auto 0;
}

.chara_name{
    font-size: clamp(16px, 2vw, 20px);
	margin-top: 0.2rem;
	display: flex;
    flex-wrap: wrap;
	flex-flow: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
	color: #fff;
}
.cast_name{
    font-size: clamp(18px, 2.2vw, 22px);
    color: #fff;
	margin-bottom: 10px;
	text-align: left;
		display: flex;
    flex-wrap: wrap;
	flex-flow: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
span.group{
    display: contents;
    font-size: clamp(14px, 2vw, 16px);
}
.md-scroll .cast_name{
   font-size: clamp(10px, 2.2vw, 22px);

}
 .cast_name span.group{
        font-size: clamp(14px, 2vw, 16px);
}
.md-scroll .chara_name {
       font-size: clamp(16px, 2vw, 20px);
}
.md-scroll span.group{
    font-size: clamp(14px, 2vw, 16px);
}

.cast_info{
	    width: 80%;
    height: 100%;
    text-align: left;

}

.cast_info::-webkit-scrollbar {

  width: 3px;
  height: 3px;
  border-radius: 20px;
}
.cast_info::-webkit-scrollbar-thumb {
  background-color: #fdd300;
  opacity: 0.7;
  border-radius: 20px;
}

.cast_profile {
    margin: 0 auto;
    border-top: 1px solid #fff;
    padding: 3% 0 0 0;

}
.cast_profile .text{
	font-size: 16px;
}
h2.profile_midashi {
    margin: 0 auto 3%;
}
h2.profile_midashi img {
    height: 18px;
}
.md-xmark{
        position: absolute;
    top: 5%;
    right: 3%;
    width: 50px;
    height: 50px;
    z-index: 400;
    cursor: pointer;
    background-size: cover;
    border: 1px solid #fdd300;
}
.md-xmark span {
position: absolute;
	  top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
   transform-origin: center;
    background-color: #fdd300;
}
.md-xmark span:nth-of-type(1) {

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

.md-xmark span:nth-of-type(2) {

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


.cast_imgs{
width: 100%;
height: 600px;
background-image: url("../img/cast_imgs.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}


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

footer{
width: 100%;
}
footer .inner{
    padding: 5% 0px 3%;
}

.copyright{
font-size: 12px;;
color: #fdd300;
}



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

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

.inner {
    width: 80%;
    margin: 0 auto;
    padding: 15% 0;
}
/*--------------------
TRAILER
---------------------*/
.trailer .trailer_inner {
    width: 90%;
	        top: 30%;
			min-width: inherit;
	}
	.trailer .trailer_tab li {
            width: 49%;
        margin: 0 1.5% 1.5% 0;
		line-height: 1.2;
		text-align: center;
}
	.trailer .trailer_tab li:nth-child(2) {
    margin: 0 0 1.5%;
}
	.trailer .trailer_tab li:nth-child(3) {
    width: 100%;
	margin: 0 0 1.5% 0;
}
	.trailer .trailer_tab li:nth-child(4), .trailer .trailer_tab li:nth-child(5), .trailer .trailer_tab li:nth-child(6), .trailer .trailer_tab li:nth-child(7) {
    width: 100%;
	margin: 0 0 1.5% 0;
}
.trailer .trailer_tab li:nth-child(8) {
            width: 49%;
        margin: 0 1.5% 0 0;
		}

	.trailer .trailer_tab li:nth-child(9) {
    width: 49%;
	margin: 0;
	        line-height: 1.2;
			text-align: center;
}


.trailer .trailer_tab {
    margin-top: 3%;
	}
ul.trailer_list{
	    flex-wrap: nowrap;
		}

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

.logo {
width: 60%;
}

/*--------------------
MENU
---------------------*/
.menu_bg {
width: 10vw;
        height: 10vw;
    position: fixed;
    top: 2%;
	        max-width: 45px;
        max-height: 45px;
	}
	.gnav__menu__item a img {
    height: 2.5vh;
}
.gnav__menu__item {
    width: 100%;
    height: 4vh;
    vertical-align: middle;
    line-height: 4vh;
	}

/*--------------------
共通
---------------------*/

.inner{
    min-width: inherit;
}
	h1.midashi_title {
width: auto;
        margin: 0 0 10% 0;
}
    h1.midashi_title img {
        height: 24px;
        max-width: inherit;
    }
	
.text{
    letter-spacing: inherit;
}

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

section.top{
	width: 100%;
	background-image: url("../img/top_visual_sp.jpg");	
}
.date_inner{
    width: 90%;
}
ul.sns_list {
    top: 3%;
    right: 6%;

}

li.sns_item a {
    width: 40px;
    height: 40px;
	}
	li.sns_item:first-child {
    margin: 0 10px 0 0;
}
    .top_copy {
        width: 6%;
        top: 17vw;
    }

.f_bnr_wrap{
width: 100%;
        background: #000;
        padding: 10% 0 0;
		position: inherit;
		bottom: inherit;
		left: inherit;
}
.bnr_wrap_inner{
width: 60%;
margin: 0 auto;
}


/*--------------------
SNS
---------------------*/
section.sns_sec {
    background-color: #000001;
	}
section.sns_sec .inner {
    padding: 10% 0 0;
}
ul.sns_list {
    position: inherit;
    display: flex;
    justify-content: center;
	}
	
	ul.sns_list li.sns_item{
	width: 48%;
    margin: 0 4% 0 0;
	}
	ul.sns_list li.sns_item:last-child{
    margin: 0;
	}
	    li.sns_item a {
        width: 100%;
        height: auto;
        padding: 10px 0;
		}
		li.sns_item a img {
    width: auto;
    margin: 0 auto;
    height: 24px;
	}
	
/*--------------------
NEWS
---------------------*/
	
	
    .news .inner {
        width: 80%;
        padding: 15% 0;
    }
	.news_wrap {
    flex-direction: column;
	}
	ul.ulblogtitle li a {
    flex-direction: column;
		font-size: clamp(14px, 4vw, 16px);
	}
	.news_date {
    width: 100%;
    margin: 0 0 10px;
	}
	.news_title {
    width: 100%;
    margin: 0 0 5%;
	line-height: inherit;
}
	.news h1.midashi_title {
width: auto;
        margin: 0 0 10% 0;
}
 .news h1.midashi_title img {
        height: 24px;
        max-width: inherit;
    }
	
	.theater_bnr {
    width: 100%;
    margin: 15% auto 0;
	}

    ul.bnr_list {
              width: 100%;
        flex-wrap: wrap;
        display: flex;
        margin: 5% auto 0;
}
li.bnr_item{
width: 47%;
margin: 0 2% 2% 0;
}
li.bnr_item:nth-child(2n){
    width: 51%;
	margin: 0 0 2% 0;
}
li.bnr_item:last-child{
margin: 0 auto 0;
}

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

.movie .inner{
width: 100%;
}
.movie_wrap{
width: 100%;
overflow-x: scroll;
}
.movie_wrap::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.3);
  width: 3px;
  height: 3px;
  border-radius: 20px;
  margin: 0 auto 0 10px;
}
.movie_wrap::-webkit-scrollbar-thumb {
  background-color: #fdd300;
  opacity: 0.7;
  border-radius: 20px;
   margin: 0 auto 0 10px;
}
ul.trailer_list {
        width: fit-content;
        margin: 0 10%;
        padding: 0 0 10px 0;
		flex-direction: row-reverse;
		        align-items: flex-start;
	}
	li.trailer_item {
    width: 80vw;
    margin: 0 0 0 1%;
	        max-width: 350px;
}

li.trailer_item:nth-child(1){
	margin: 0 0 0 1%;
}

	li.trailer_item:nth-child(4), li.trailer_item:nth-child(5), li.trailer_item:nth-child(6), li.trailer_item:nth-child(7), li.trailer_item:nth-child(8){
	margin: 0 1% 0 0;
}

	li.trailer_item:nth-child(9){
	margin: 0 1% 0 0;
}

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

.intro_img {
        min-height: auto;
    width: 100%;
    height: 45vw;
    overflow: hidden;
    margin: 0 auto 10%;
	}


/*--------------------
STORY
---------------------*/

.story {
    flex-direction: column-reverse;
	}
	.story .inner {
    width: 80%;
    margin: 0 auto;
}
.story_bg {
    width: 100%;
    height: 65vw;
	}
	.story_bg::before {
    width: 100%;
    height: 10%;
    top: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(66, 67, 67, 0), rgba(66, 67, 67, 1));
	}
	
	.text_wrap {
        max-height: 60vh;
    }
	
	.loop_wrap {
    height: 150px;
	}
	.loopo_list li{
        width: 257px;
}
	
/*--------------------
CAST
---------------------*/
	
	li.cast_list_item {
    width: 100%;
    margin: 0 0 10% 0;
}
    a.md-btn {
        width: 10vw;
        height: 10vw;
		        max-width: 45px;
        max-height: 45px;
    }
	.chara_name {
    font-size: clamp(14px, 4.5vw, 16px);
	}
	.cast_name {
    font-size: clamp(16px, 6vw, 18px);
	}
	.other li.cast_list_item, .other li.cast_list_item:nth-child(2) {
    width: 100%;
    margin: 0 0 10% 0;
	}
	.other li.cast_list_item:nth-child(3n) {
    margin: 0 0 10%;
}
.md-inner .profile_img {
    width: 100%;
	}
	.cast_img_wrap .name_wrap {
    margin: 10% auto 0;
}
.md-inner {
        width: 80%;
        max-height: 70vh;
        height: 100%;
        min-height: 500px;
        padding: 10% 5%;
	}
	.md-scroll {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
	}
	.cast_img_wrap {
    width: 100%;
    margin: 0 auto 10%;
	}
.cast_info {
    width: 100%;
	}
.md-scroll .cast_name{
font-size: clamp(16px, 6vw, 18px);
}
.cast_profile{
    padding: 10% 0 0 0;
}
h2.profile_midashi img {
    height: 16px;
}
h2.profile_midashi {
    margin: 0 auto 5%;
}
.md-xmark {
    position: absolute;
	        width: 10vw;
        height: 10vw;
        top: 2%;
        right: 3%;
        max-width: 45px;
        max-height: 45px;
	}
.cast_name span.group {
    font-size: clamp(14px, 2vw, 16px);
}


/*--------------------
FOOTER
---------------------*/
footer .inner {
    padding: 5% 0px 10%;
}
	
	
}

@media screen and (max-width: 500px) {
	
/*--------------------
TOP
---------------------*/
	
}

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

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




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

}
	
	
	
	