@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: #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: 60%;
	/*min-width: 850px;*/
    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;
    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: calc(50% - 40px);
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 60%;
    aspect-ratio: 16 / 9;
    z-index: 999999998;
    height: auto;
    border: 1.5px solid #2A646B;
    box-sizing: content-box;
}

.trailer .trailer_tab{
    position: absolute;
    color: #2A646B;
    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: #2A646B;
    color: #000;
    margin: 0 5px 5px 0;
    font-size: 14px;
    line-height: 1;
    flex-wrap: wrap;
    border: 1px solid #2A646B;
    box-sizing: border-box;
    letter-spacing: 0.5rem;
    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, #youtube2, #youtube3{
    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;
}

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

header {
  /*opacity: 0;*/
  position: relative;
  z-index: 299;
  translate: none;
}
nav.header_nav {
    height: auto;
	position: relative;
    top: 0;
    width: 100%;
    z-index: 300;
  opacity: 0;
}
.nav_inner {
    display: flex;
    display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    height: auto;
    flex-direction: column;
    margin: 10% auto;
}
nav.header_nav ul.header_nav_list {
    display: flex;
    display: -webkit-flex;
    -webkit-justify-content: left;
    padding: 0;
    width: fit-content;
    vertical-align: middle;
    box-sizing: border-box;
    z-index: 300;
    align-items: flex-start;
    flex-direction: column;
    position: fixed;
    top: 6%;
    left: 2%;
}
nav.header_nav ul.header_nav_list li {
      padding: 0 0 1.5vw;
}
nav.header_nav ul.header_nav_list li:last-child {
	padding: 0;
}
nav.header_nav ul.header_nav_list li a {
  display: block;
  transition: 0.8s;
  color: #fff;
	transform: rotate(-3deg);
}
nav.header_nav ul.header_nav_list li a:hover {
  color: #E51A1D;
  transition: 0.8s;
}

nav.header_nav ul.header_nav_list li a img{
    height: 1.3vw;
    max-width: inherit;
	min-height: 20px;
}

ul.sns_list{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 5%;
    right: 3%;
	    z-index: 500;
	/*opacity: 0;*/
}
li.sns_item{
	margin: 0 10px 0 0;
}
li.sns_item:last-child{
	margin: 0;
}
li.sns_item a{
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
	transition: .7s;
}
li.sns_item a:hover{
	transition: .7s;
}
li.sns_item a img{
	width: 70%;
	margin: 0 auto;
}




/*--------------------
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;
  }
}




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

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


.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;
		
}

.title{

    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
	opacity: 0;
}
.date{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
	opacity: 0;
}

.kisaragi_hp_bnr{
width: 15%;
	    min-width: 200px;
    margin: 0 auto;
    position: absolute;
    bottom: 3%;
    right: 3%;
    z-index: 5;
	opacity: 0;
}
.kisaragi_hp_bnr a{
   display: block;
   transition: .7s;
   border: 1px solid #fff;
}
.kisaragi_hp_bnr a:hover{
   opacity: .7;
   transition: .7s;
}


#mvtk-widgets-container{
	margin: 0 auto 2%;
}
.mvtk_bnr{
	width: 40%;
	    min-width: 280px;
	margin: 0 auto;
}
.mvtk_bnr a{
   display: block;
   transition: .7s;
}
.mvtk_bnr a:hover{
   opacity: .7;
   transition: .7s;
}


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




h1.midashi_title{
    color: #F7FBFC;
    text-align: center;
    font-size: 2rem;
    margin: 0 auto 5%;
    line-height: 1;
    letter-spacing: 0.5rem;
}
h1.midashi_title img {
    height: 2vw;
    transform: rotate(-3deg);
    min-height: 24px;
}

.news .inner{
width: 50%;

}


.news_wrap{
width: 100%;
margin: 8% auto 0;

}
.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;
}



.viewall{
text-align: right;
font-size: 14px;
}
a.nor{
color: #C11F22;
    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: 2% 0;
    box-sizing: border-box;
    
    background-image: linear-gradient(to right, #C11F22 1px, transparent 2px);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
}
ul.ulblogtitle li:first-child{
     padding: 0 0 2% 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: center;
	font-size: clamp(14px, 1vw, 16px);
}

ul.ulblogtitle li a:hover .news_title, ul.ulblogtitle li a:hover .news_date{
	transition: .7s;
	color: #C11F22;
}


.arrow {
    position: relative;
    display: inline-block;
    width: 17px;
    margin: 0 0 0 10px;
    border-radius: 9999px;
}


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

section.movie{
	position: relative;
}
section.movie::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../img/trailer_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: flex-start;
    align-items: center;
  }
  li.trailer_item{
    width: calc(95% / 3);
    margin: 0 2.5% 0 0;
  }
   li.trailer_item:last-child{
  margin: 0;
  }
.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	border: 1px solid #55706d;
	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: 20%;
    height: 100%;
    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;
}

.movie_midashi{
    color: #fff;
    margin: 10px 0 0 0;
	    letter-spacing: 0.5rem;
		text-align: center;
}
/*
.slides {
    position: relative;
  transition: transform 0.5s ease-in-out;
}

.slides {
  min-width: 100%;
  box-sizing: border-box;
}

input[name="carousel"] {
  display: none;
}

input[name="carousel"]:nth-of-type(1):checked ~ .slides {
  transform: translateX(0%);
  
}
input[name="carousel"]:nth-of-type(1):checked ~ .controls {
right: 0;
left: inherit;
cursor: default;
}
input[name="carousel"]:nth-of-type(1):checked ~ .controls .label1 {
 display: none;
 cursor: none;
}
input[name="carousel"]:nth-of-type(2):checked ~ .controls {
left: 0;
right: inherit;
cursor: default;
}
input[name="carousel"]:nth-of-type(2):checked ~ .controls .label2 {
  display: none;
  cursor: none;
}

input[name="carousel"]:nth-of-type(2):checked ~ .slides {
  transform: translateX(-100%);
}

.controls {
    position: absolute;
    top: 54%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    z-index: 5;
    width: auto;
    justify-content: space-between;
}

.controls label {
  cursor: pointer;
  margin: 0 5px;
}
.controls label img{
height: 50px;
max-width: inherit;
}*/

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

.intro{
	position: relative;
	background-color: #000;
}
.intro .inner{
	position: relative;
	z-index: 2;
}
.intro_img_01{
	width: 30%;
    position: absolute;
    top: 5%;
    left: 2%;
}
.intro_img_02{
	width: 35%;
    position: absolute;
    top: 20%;
	right: 0;
}
.text{
    color: #fff;
    text-align: justify;
    text-align-last: left;
    font-size: 16px;
    line-height: 1.6;
}
.intro_main{
	width: 50%;
    margin: 0 auto 5%;
    filter: drop-shadow(0 0 5px #000);
}
.intro_lead{
	margin: 0 auto 2%;
}

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

.story_img ul{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-wrap: wrap;
}

.story_img ul li{
	width: calc(100% / 4);
}

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

.cast{
	position: relative;
	
}
.cast::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url("../img/cast_bg.jpg");
	background-position: center;
	background-size: cover;
	opacity: .7;
}
.cast .inner{
	position: relative;
	    width: 100%;
}
.cast_note{
	font-size: 14px;
    color: #fff;
    margin: 0 auto 3%;
}
.cast_map{
    width: 900px;
    margin: 0 auto;
    position: relative;

}



.cast_list{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
li.cast_list_item:nth-child(1){
width: 19%;
    height: 16.9%;
    position: absolute;
    top: 38.4%;
    left: 33%;

}

li.cast_list_item:nth-child(2){
width: 17%;
    height: 15.5%;
    position: absolute;
    top: 3.1%;
    left: 34%;

}

li.cast_list_item:nth-child(3){
width: 16%;
    height: 14.4%;
    position: absolute;
    bottom: 10.1%;
    left: 34.6%;

}
li.cast_list_item:nth-child(4){
width: 16%;
    height: 14.5%;
    position: absolute;
    top: 4.3%;
    left: 4.7%;

}
li.cast_list_item:nth-child(5){
    width: 16%;
    height: 14.5%;
    position: absolute;
    top: 31.7%;
    left: 4.7%;

}
li.cast_list_item:nth-child(6){
width: 16%;
    height: 14%;
    position: absolute;
    bottom: 28.5%;
    left: 4.6%;

}
li.cast_list_item:nth-child(7){
width: 16%;
    height: 14.5%;
    position: absolute;
    top: 4.2%;
    right: 24%;

}
li.cast_list_item:nth-child(8){
width: 16%;
    height: 14.5%;
    position: absolute;
    top: 4.2%;
    right: 4.5%;

}




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


.md-scroll{
	    width: 100%;
    height: 100%;
    display: flex;
    align-items:flex-start;
        justify-content: center;
      
	}
.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: 100svh;
}

.md-inner {
width: 70%;
    height: 70vh;
    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;
    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{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: block;
	transition: .7s;
}
a.md-btn:hover{
    width: 100%;
    height: 100%;
	transition: .7s;
}
a.md-btn:hover::before{
    content: "SHOW PROFILE";
    background-position: center;
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
	transition: .7s;
}

.cast_img_wrap {
    width: 40%;
    margin: 0 5% 0 0;
}
.chara_name_wrap{
    padding-bottom: 3%;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    margin: 0 auto 5%;
}
.chara_name{
	    font-size: clamp(18px, 2vw, 22px);
    color: #fff;
    margin: 0 auto 1%;
}

.cast_name {
    font-size: clamp(18px, 1.5vw, 26px);
    color: #fff;
    text-align: left;
    line-height: 1;
}
.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;
    padding: 5% 0 0 0;
}
.cast_profile .text{
	font-size: 16px;
}
h2.profile_midashi {
     margin: 0 auto 2% 0;
    color: #000;
    background-color: #fff;
    width: fit-content;
    padding: 5px 10px;
    line-height: 1;
}

.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
---------------------*/

section.staff{
	position: relative;
	background-image: url("../img/staff_bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
section.staff::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.8;
}
.staff .inner{
	position: relative;
	z-index: 2;
}
li.staff_list_item{
	    margin: 0 auto 5%;
}

li.staff_list_item:last-child{
	    margin: 0;
}
.ko_midashi{
	color: #fff;
    text-align: left;
    margin: 3% 0 1% -0.5rem;;
}
.staff_name{
	color: #fff;
    text-align: left;
        font-size: clamp(18px, 1.2vw, 24px);
    font-weight: bold;
    margin: 0 auto 1.5%;
}
span.name_red{
	color: #cc0000;
}
.staff_billing{
	width: 100%;
	    margin: 7% auto 0;
    padding: 5% 0 0;
    border-top: 1px solid #fff;
}


/*--------------------
SONG
---------------------*/

.song_wrap{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.song_img{
	width: 30%;
	margin: 0 5% 0 0;
}

.song_info{
	width: 65%;
}

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

footer{
width: 100%;
border-top: 1px solid #2A646B;
color: #fff;
font-size: 14px;
}
footer .inner{
padding: 2% 0;
}
.footer_date{
	width: 65%;
	margin: 0 auto 2%;
}
.billing{
width: 63%;
margin: 0 auto;

}

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

@media screen and (max-width: 960px) {
	.cast .inner{
	position: relative;
	    width: 90%;
}
	.cast_map {
    width: 100%;
	}
	
	
}

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

	.wrapper{
		    margin: 50px auto 0;
	}
.inner {
    width: 80%;
	min-width: inherit;
    margin: 0 auto;
    padding: 15% 0;
}
h1.midashi_title img {
    height: 8vw;
	}
	
	
/*--------------------
LOADING
---------------------*/

.logo {
width: 50%;
}

/*--------------------
TRAILER
---------------------*/

.trailer .trailer_inner{
    top: 40%;
    width: 90%;
	}
	
 /*-------------------
MENU
--------------------*/
nav.header_nav{
z-index: 777;
}

  /*hamburger-menu*/
  .menu_bg {
    width: 45px;
    height: 45px;
    background-color: #000;
    position: fixed;
           top: 1%;
        right: 3%;
    z-index: 779;
	/*opacity: 0;*/
  }
  .menu {
    height: 15px;
    position: absolute;
    right: 50%;
    top: 50%;
    width: 30px;
    z-index: 779;
    cursor: pointer;
    transform: translate(50%, -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__wrap_inner{
		transform: rotate(-3deg);
	}
  .gnav__menu__item {
    width: 100%;
    vertical-align: middle;
           margin: 15% 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;
    margin: 10px auto auto;
    justify-content: center;
    align-items: center;
  }

    .gnav__menu__item a img {
        height: 7vw;
        min-height: 24px;
        max-width: inherit;
        
        max-height: 36px;
    }
	.gnav__wrap ul.sns_list {
		top: auto;
        left: auto;
        right: auto;
        justify-content: flex-start;
        position: inherit;
        margin: 20% auto 0;
	}
	
	
  /*追加*/
	ul.sns_list{
		        top: 3%;
        left: 5%;
        right: inherit;
        justify-content: flex-start;
	}
	li.sns_item a {
    width: 40px;
    height: 40px;
	}
	li.sns_item{
    margin: 0 10px 0 0;
}


  
  /*humberger-menuここまで*/
	
/*--------------------
TOP
---------------------*/

	#mvtk-widgets-container {
    margin: 0 auto 5%;
}
.mvtk_bnr {
    width: 100%;
	    min-width: inherit;
    margin: 0px auto 5%;
}

	
/*--------------------
NEWS
---------------------*/
	
	.kisaragi_hp_bnr {
    width: 100%;
		    position: inherit;
	}
	
	.news .inner {
    width: 80%;
    padding: 15% 0;
}
.news_wrap {
    margin: 15% auto 0;
	}

   h1.midashi_title {
    font-size: 1.7rem;
        margin: 0 0 15%;
    }
	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
---------------------*/

	
	section.movie::before{
		background-size: inherit;
	}
.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: #55706d;
  opacity: 0.7;
  border-radius: 20px;
   margin: 0 auto 0 10px;
}
ul.trailer_list {
        width: fit-content;
        margin: 0 10%;
                padding: 0 10% 10px 0;
	}
	li.trailer_item {
    width: 80vw;
    margin: 0 2% 0 0;
}
li.trailer_item:last-child {
    margin: 0;
}

	
/*--------------------
INTRO
---------------------*/
	
	.intro_main {
    width: 100%;
    margin: 0 auto 10%;
	}
	.intro_lead {
    margin: 0 auto 7%;
	filter: drop-shadow(0 0 6px black);
}
	.intro .text{
		    filter: drop-shadow(0 0 6px black);
	}
	.intro_img_01 {
    width: 90%;
    position: absolute;
    top: 20%;
		left: 0;
	}
	.intro_img_02 {
    width: 100%;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
}

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

.story_img ul li{
	width: 50%;
}

/*--------------------
CAST
---------------------*/
	
	.cast_note {
    margin: 0 auto 7%;
}
	
	.cast .inner {
		width: 90%;
    }

	.cast_item_inner {
    flex-direction: column;
	}
	.cast_info {
    width: 100%;
	}
	.cast_name {
    width: 100%;
	margin: 0 auto 8%;
}
	.cast_name img {
      height: 7.2vw;
}
.cast_img {
    width: 90%;
    margin: 0px auto 8%;
}

	
li.cast_list_item:nth-child(1) {
    width: 41%;
    height: 9%;
    position: absolute;
    top: 0%;
    left: 5%;
	}
	li.cast_list_item:nth-child(2) {
    width: 38%;
    height: 8.5%;
    position: absolute;
    top: 7%;
		left: auto;
		right: 5%;
	}
	li.cast_list_item:nth-child(3) {
    width: 37%;
    height: 8.2%;
    position: absolute;
    top: 19.4%;
    left: 7.8%;
	}
	li.cast_list_item:nth-child(4) {
    width: 37%;
    height: 8.3%;
    position: absolute;
    top: 51.6%;
    left: 6.4%;
	}
	li.cast_list_item:nth-child(5) {
    width: 36%;
    height: 8.3%;
    position: absolute;
		        top: auto;
    bottom: 22.7%;
    left: 6.7%;
	}
	li.cast_list_item:nth-child(6) {
    width: 36%;
    height: 8.2%;
    position: absolute;
    bottom: 8%;
    left: 6.7%;
	}
	
	li.cast_list_item:nth-child(7) {
            width: 37%;
        height: 8%;
        position: absolute;
        top: 24.5%;
        right: 5.5%;
	}
	li.cast_list_item:nth-child(8) {
    width: 37%;
    height: 8%;
    position: absolute;
    top: 40.5%;
    right: 5.5%;
	}
.md-inner {
    height: 70vh;
	min-width: inherit;
	 width: 80%;
	padding: 10% 5%;
	}
	.md-scroll {
    flex-direction: column;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
	.cast_img_wrap {
    width: 100%;
    margin: 0 auto 10%;
}
	.md-xmark {
    width: 60px;
    height: 60px;
	}
	.md-inner .profile_img {
    width: 70%;
	}
	
	.cast_profile {
    padding: 0;
}
    .chara_name_wrap {
        padding-bottom: 7%;
        margin: 0 auto 10%;
    }
	    .cast_name {
        width: 100%;
        margin: 0 auto 7%;
        font-size: clamp(18px, 5vw, 26px);
    }
	
	
/*--------------------
STAFF
---------------------*/
	
	li.staff_list_item {
    margin: 0 auto 10%;
}
	.staff_name {
    font-size: clamp(18px, 6vw, 22px);
		margin: 0 auto 5%;
	}
		  .staff_billing {
        margin: 15% 0 0;
			  padding: 15% 0 0;
    }
	    .staff_billing img{
        max-width: 400px;
    }

	
/*--------------------
SONG
---------------------*/
	
	.song_wrap {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
	}
	.song_img {
    width: 70%;
    margin: 0 auto 10%;
}
	.song_info {
    width: 100%;
}
	.ko_midashi {
    color: #fff;
    text-align: left;
    margin: 7% 0 3% -0.5rem;
}
	
/*--------------------
FOOTER
---------------------*/
footer{
font-size: 12px;
}
    footer .inner {
        padding: 10% 0;
    }
.billing {
    width: 100%;
	max-width: 450px;
	}
	.footer_date {
    width: 80%;
    margin: 0 auto 5%;
}
	
}

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


/*--------------------
STAFF
---------------------*/
	    .staff_billing img{
			max-width: 100%;
    }


	
}

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

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




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

}
	
	
	
	