@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-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
  background-color: #000;
  overflow-y: scroll;
	position: relative;

}
body::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../img/bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
		pointer-events: none;
	-webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;

}
.inner{
    width: 60%;
	    max-width: 1080px;
	    min-width: 900px;
    margin: 0 auto;
    padding: 5% 0;

}
a{
	display: block;
}

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

/*--------------------
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;
}
 
@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: 0;
    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: center;
    padding: 0;
    width: auto;
    vertical-align: middle;
    box-sizing: border-box;
    z-index: 300;
    align-items: center;
    background-color: #000;
    height: 50px;
}
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: 600;
  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.4vw;
    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 20px 0 0;
}*/
.sns_icon.insta{
	margin: 0;
}
.sns_icon a {
transition: .7s;
    color: #fff;
    background-color: #000;
    border: 1.5px solid #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    width: 35px;
    height: 35px;
}
.sns_icon a:hover {
	transition: .7s;
	opacity: .7;
}
.sns_icon a img{
	    width: 50%;
}
nav.header_nav ul.sns_wrap li a img {
     widows: 50%;
}
.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;
}

/*--------------------
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;
	 font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
}

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

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

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


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

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

section.movie{
	position: relative;
	background-color: #000;
}
.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: 100%;
    margin: 0 auto;
}
.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	box-sizing: border-box;
	    background: #000;
}
.trailer_pop_btn a{
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 5;
    text-align: center;
    justify-content: center;
    align-items: center;
	    overflow: hidden;
}
.trailer_pop_btn a::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/yt_logo.png);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

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

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

section.top{
	padding: 50px 0 0;
	background-color: #050608;
}

section.top::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
/*	background-image: url("../img/bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;*/
}

.top .inner{
    width: 100%;
	max-width: inherit;
    margin: 0 auto;
    padding: 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;
}

h1.midashi_title{
    color: #908963;
    text-align: center;
    font-size: 2rem;
    margin: 0 auto 15%;
}
.eng{
font-size: clamp(20px, 8vw, 30px);
    font-weight: bold;
    letter-spacing: 0.05rem;
}
.jp{
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    letter-spacing: 0.05rem;
	 font-family: "Noto Sans JP", sans-serif;
}
.mvtk_wrap{
	text-align: center;
   margin: 0 auto 5%;
}
#mvtk-widgets-container{
	margin: 0 auto 2%;
}
.mvtk_bnr a{
	display: block;
	transition: .7s;
}
.mvtk_bnr a:hover{
	opacity: .7;
	transition: .7s;
}

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

.kyosan{
background-color: #000;
position: relative;
}
.kyosan .inner{
    padding: 3% 0;
    position: relative;
    width: 80%;
    max-width: inherit;
}
.kyosan_midashi{
	color: #b2b1af;
	font-size: clamp(15px, 1vw, 20px);
	font-weight: bold;
	margin: 0 2% 0 0;
}
ul.kyosan_list{
	display: flex;
    justify-content: center;
    align-items: center;
}
ul.kyosan_list.tokubetu{
	margin: 0 auto 1%;
}
ul.kyosan_list li{
	    margin: 0 2% 0 0;
}
ul.kyosan_list li:last-child{
	    margin: 0;
}
ul.kyosan_list li a{
	  display: block;
	transition: .7s;
}
ul.kyosan_list li a:hover{
	opacity: .7;
	transition: .7s;
}
ul.kyosan_list li a img{
	height: 4vw;
}

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

.news{
background-image: linear-gradient(#908963, #58563f);
position: relative;
z-index: 1;
}
.news::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
  filter: contrast(100%) brightness(100%);
  background:  url("../img/noise.svg");
    opacity: 0.1;
}
.news .inner{
	padding: 3% 0;
	position: relative;
	z-index: 3;
}

.news h1.midashi_title{
	color: #fff;
}

.news_wrap {
    width: 100%;
    margin: 0 auto;
    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: 130px;
    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 2%;
    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: 20%;
    right: 0;
    width: 30px;
    transform: translate(0, -50%);
    height: 2px;
    margin: 0 0 0 0px;
    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%;
}

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


h1.midashi_title{
    text-align: center;
    margin: 0 auto 5%;
	color: #c9bf9a;
}

.text{
	color: #fff;
	text-align: justify;
	text-align-last: left;
}
.intro_lead_01{
    width: 20%;
    min-width: 300px;
    margin: 0 auto 2%;
}

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

.story_lead_01{
	width: 75%;
    margin: 0 auto 3%;
}
.steal{
	width: 100%;
	    margin: 5% auto 0;
}


/*--------------------
CAST
---------------------*/
.cast .inner {
    width: 80%;
    max-width: 1400px;
}

ul.cast_list{
   width: 100%;
	margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
	position: relative;
}
ul.cast_list.first{
	width: 70%;
}
 ul.cast_list.second{
	width: 65%;
}
ul.cast_list.third{
	width: 80%;
}
ul.cast_list.forth{
	width: 100%;
}

li.cast_list_item {
    width: calc(95% / 3);
    margin: 0 2.5% 10% 0;
}
li.cast_list_item:nth-child(3n) {
   width: calc(95% / 3);
    margin: 0 0 10% 0;
}

ul.cast_list.first li.cast_list_item{
	    margin: 0 0 10% 0;
    width: 45%;
}
ul.cast_list.second li.cast_list_item{
	    margin: 0 0 10% 0;
    width: 40%;
}

ul.cast_list.forth li.cast_list_item {
    width: calc(96% / 5);
    margin: 0 1% 0 0;
}
ul.cast_list.forth li.cast_list_item:nth-child(5) {
	 width: calc(96% / 5);
    margin: 0;
}

.cast_wrap{
	width: 95%;
}
.name_wrap{
    margin: 10% auto 6%;
}

.cast_name{
    font-size: clamp(17px, 1.6vw, 21px);
    color: #fff;
    text-align: left;
    margin: 0 auto 15px;
    font-weight: bold;
    line-height: 1.2;
}

.chara_name{
	color: #fff;
    font-size: clamp(16px, 0.8vw, 18px);
    margin: 0 auto 10px;
    line-height: 1;
	font-weight: bold;
	text-align: left;
}

.cast_name span{
    font-size: clamp(12px, 0.7vw, 16px);
    margin: 0 0 10px 0;
	font-weight: bold;
}
ul.cast_list.forth .cast_name span{
    margin: 0 0 10px -0.5rem;
}

a.md-btn{
    width: 100%;
    margin: 0 auto;
}
.cast_icon{
position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.chara_info{
       font-size: clamp(13px, 1.65vw, 16px);
}


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



.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: 100%;
}
.md-inner {
width: 65%;
    height: auto;
    max-height: 70vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    margin: 0px auto;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 3% 5%;
    border-radius: 20px;
}
.md-inner-wrap{
    width: 100%;
	height: 100%;
    box-sizing: border-box;
	overflow-y: auto;
	}
.md-inner-wrap::-webkit-scrollbar{
  display: none;
}
.md-scroll{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
	}

.cast_img_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cast_img{
	position: relative;
	z-index: 1;
}
.cast_img::before{
	position: absolute;
	z-index: 2;
	display: block;
	content: "PROFILE & COMMENT  ▶";
	width: auto;
	background-color: rgba(0,0,0,0.8);
	color: #fff;
	padding: 8px 20px;
	bottom: 0;
	left: 0;
	letter-spacing: 0.05rem;
	font-size: clamp(10px, 0.8vw, 16px);
}

ul.cast_list.third li:last-child .cast_img::before{
	display: none;
}

ul.cast_list.forth .cast_img::before{
	display: none;
}

.profile_img{
width: 100%;
}

.cast_info{
	    width: 100%;
    height: auto;
    text-align: left;
	margin: 0 auto 0;
}
.cast_info::-webkit-scrollbar {
width: 3px;
  height: 3px;
  border-radius: 20px;
}
.cast_info::-webkit-scrollbar-thumb {
  opacity: 0.7;
  border-radius: 20px;
}
.cast_profile {
    margin: 0 auto;
    padding: 0;
}
.cast_profile .text{
	font-size: 15px;
}
h2.profile_midashi {
    margin: 3% auto 1%;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
	text-align: left;
}

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

section.steal_img_wrap{
padding: 0;
}
.steal_img{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*--------------------
STAFF
---------------------*/

ul.staff_list li.staff_list_item{
	margin: 0 auto 10%;
}
ul.staff_list li.staff_list_item:last-child{
	margin: 5% auto 0;
}
li.staff_list_item .text{
	font-size: 15px;
}
.staff ul.staff_list .cast_img::before{
	display: none;
}
.staff_name_wrap{
	    display: flex;
    justify-content: center;
    align-items: center;
}
.staff_name{
	font-size: clamp(18px, 2vw, 22px);
    color: #fff;
    text-align: left;
        margin: 0 auto 0 0;
	font-weight: bold;
}
.staff .cast_img{
	margin: 0 auto 3%;
    width: 35%;
}

.position{
	color: #fff;
    font-size: clamp(16px, 1.2vw, 18px);
    margin: 0 0 0 auto;
    line-height: 1;
	font-weight: bold;
	text-align: left;
}
.staff_name span{
    font-size: clamp(12px, 0.7vw, 16px);
    margin: 0 auto 10px;
	font-weight: bold;
}
.song_name{
	font-size: clamp(17px, 1.6vw, 20px);
    color: #fff;
    text-align: left;
        margin: 10px auto 0;
	font-weight: bold;
}
.song_name span{
   font-size: clamp(12px, 0.7vw, 16px);
}
.os_wrap{
	    text-align: left;
}
a.os{
	    display: inline-block;
    color: red;
	transition: .7s;
}
a.os:hover{
	 opacity: .7;
	transition: .7s;
}

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

footer .inner {
    padding: 5% 0 10%;
}
.footer_logo{
	    width: 55%;
    margin: 0 auto;
}
.billing{
	    width: 70%;
    margin: 3% auto 0;
}

/*--------------------
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: 55%;
		    text-align: left;
}
.gb_logo img{
        width: 40%;
}
.officialsns {
    color: #fff;
    width: 20%;
    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;
}
ul.gb_sns_list li a img{
	width: 90%;
}


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

}

@media screen and (max-width: 960px) {
	.inner {
		    width: 80%;
		    max-width: inherit;
	           min-width: 750px;
}


}

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


.inner {
	min-width: inherit;
    margin: 0 auto;
    padding: 15% 0;
}

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

.logo {
width: 70%;
	top: 45%;
}

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


  /*hamburger-menu*/
  .menu_bg {
width: 100%;
        height: 70px;
        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;
    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 5%;
  }
	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;
	font-size: clamp(16px, 5vw, 20px);
	}
	
  /*humberger-menuここまで*/
	
/*--------------------
TRAILER
---------------------*/
	.trailer .trailer_inner {

    width: 90%;
	}
	
/*--------------------
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{
	padding: 0;
	}
	.top .inner {
    width: 100%;
	}
	.title {
    width: 75%;
	min-width: inherit;
    margin: 0 auto 5%;
}
.billing {
    width: 85%;
	min-width: inherit;
    margin: 0 auto 5%;
}
	.date {
    width: 60%;
		min-width: inherit;
	}
	

h1.midashi_title {
    text-align: center;
    margin: 0 auto 15%;
}
h1.midashi_title img {
        height: 13vw;
        min-height: 20px;
        max-height: 50px;
    }
.bnr_wrap {
     margin: -37% 0 0;
        height: 100%;
        padding: 0 0 10%;
    }
	
	.sns_wrap{
        position: inherit;
        margin: 4% auto 0;
        top: 35%;
        left: 5%;
        z-index: 779;
        justify-content: center;
    }
	.sns_icon a {
    border-radius: 45px;
    width: 45px;
    height: 45px;
}
	.top .sns_icon {
		width: 70%;
        /*margin: 0 20px 0 0;*/
}
	.top .sns_icon a {
border-radius: 0;
        width: 100%;
        height: auto;
        padding: 10px 0;
}
	.top  .sns_icon a img {
	height: 28px;
        width: auto;
        margin: 0 20px 0 0;
}
	.theater_bnr{
		    width: 70%;
    margin: 0 auto;
	}
	.theater_bnr a{
	display: block;
		transition: .7s;
	}
		.theater_bnr a:hover{
	opacity: .7;
		transition: .7s;
	}
	
	
/*--------------------
協賛
---------------------*/
	
	.kyosan .inner {
    padding: 10% 0;
    width: 90%;
}
	.kyosan_midashi {
	margin: 0 auto 10px;
}
	ul.kyosan_list.tokubetu .kyosan_midashi {
	margin: 0 3% 0 0;
}
	ul.kyosan_list.tokubetu {
    width: 80%;
    margin: 0 auto 5%;
}
	
	ul.kyosan_list li a img {
    height: auto;
		max-height: 50px;
	}
	
/*--------------------
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;
}
	.mvtk_wrap {
    margin: 0 auto 10%;
}
	
/*--------------------
MOVIE
---------------------*/
	
	ul.trailer_list {
    width: 100%;
	}
	 .movie h1.midashi_title {
        text-align: center;
        margin: 0 auto 10%;
    }

/*--------------------
INTRO
---------------------*/
.intro_lead_01 {
    width: 85%;
	max-width: 350px;
	min-width: inherit;
    margin: 0 auto 7%;
}
	.intro_lead_02 {
            width: 75%;
		max-width: 300px;
		min-width: inherit;
    margin: 15% auto 7%;
}
		.intro_lead_03 {
    width: 90%;
		max-width: 300px;
		min-width: inherit;
    margin: 15% auto 7%;
}
	
/*--------------------
STORY
---------------------*/		
	.story_lead_01 {
    width: 100%;
    margin: 0 auto 7%;
}
	.steal {
    margin: 10% auto 0;
}
	
/*--------------------
CAST
---------------------*/	
	
	.cast .inner{
		width: 90%;
	}
	
ul.cast_list.first {
    width: 90%;
}
ul.cast_list.second {
    width: 90%;
}
	ul.cast_list.third {
    width: 90%;
	}
	ul.cast_list.forth {
    width: 100%;
	}
	ul.cast_list.forth li.cast_list_item {
	width: calc(96% / 2);
        margin: 0px 4% 15% 0px;
	}
	 ul.cast_list.forth li.cast_list_item:first-child {
	width: calc(96% / 2);
        margin: 0px 4% 15% 0px;
	}
	ul.cast_list.forth li.cast_list_item:nth-child(2n) {
			margin: 0 auto 15%;
	}
	
	.cast_icon {
    flex-direction: column;
	}
	    ul.cast_list {
        width: 100%;
			margin: 0 auto;
			justify-content: center;
	}
	li.cast_list_item {
		width: 100%;
    margin: 0 0 20% 0;
}
	ul.cast_list li.cast_list_item:first-child {
    margin: 0 0 20% 0;
    width: 100%;
}
	li.cast_list_item:nth-child(3), li.cast_list_item:nth-child(4){
    width: 100%;
    margin: 0 0 20% 0;
}
	    ul.cast_list.forth li.cast_list_item:nth-child(3) {
        margin: 0px 4% 0 0px;
	}
	ul.cast_list.forth li.cast_list_item:nth-child(5) {
    width: calc(95% / 2);
		margin: 0;
	}
	 li.cast_list_item:nth-child(7) {
    width: 100%;
    margin: 0 auto;
}
	li.cast_list_item:nth-child(3n) {
    width: 100%;
    margin: 0 auto 20%;
}

	a.md-btn {
    width: 90%;
    margin: 0 auto 7%;
}
	.cast_wrap {
            width: 85%;
        margin: 0 auto;
}
	.name_wrap {
    margin: 5% auto 8%;
}
	 ul.cast_list.forth .name_wrap {
        margin: 15% auto 10%;
    }
	.md-scroll {
    flex-direction: column;
    justify-content: flex-start;
	}
	
.md-inner {
    width: 90%;
    height: 70vh;
	min-height: inherit;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    margin: 0px auto;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
	}
	.cast_img_wrap {
    width: 60%;
    margin: 0 auto 5%;
	}
	ul.third li:last-child .cast_img{
		width: 90%;
	}
	.cast_img::before {
    font-size: clamp(12px, 2.5vw, 16px);
	}
	.cast_name, .staff_name {
    font-size: clamp(18px, 5.8vw, 20px);
	}
	ul.cast_list.forth .cast_name {
        font-size: clamp(16px, 5.5vw, 18px);
    }
	.cast_name span {
    font-size: clamp(14px, 3.5vw, 16px);
	}
	 ul.cast_list.forth .cast_name span {
        font-size: clamp(14px, 3.5vw, 16px);
        margin: 0 0 10px -0.5rem;
    }
	.chara_info {
    font-size: clamp(14px, 3.8vw, 16px);
}
	 ul.cast_list.forth .chara_info {
    font-size: clamp(14px, 3.8vw, 16px);
}
	 ul.cast_list.forth .chara_name {
    font-size: clamp(15px, 1vw, 18px);
	}
	ul.cast_list.forth .cast_wrap {
        width: 90%;
	}
	
/*--------------------
STAFF
---------------------*/
	h2.profile_midashi {
    margin: 10% auto 3%;
	}
	.staff_name_wrap {
    margin: 0 auto;
}
	ul.staff_list li.staff_list_item:nth-child(3) .staff_name_wrap, ul.staff_list li.staff_list_item:nth-child(4) .staff_name_wrap {
        flex-direction: column;
	}
	ul.staff_list li.staff_list_item:nth-child(3) .staff_name_wrap .position, ul.staff_list li.staff_list_item:nth-child(4) .staff_name_wrap .position {
    margin: 0 auto 10px;
    text-align: center;
}
	
	ul.staff_list li.staff_list_item:nth-child(3) .staff_name_wrap .staff_name, ul.staff_list li.staff_list_item:nth-child(4) .staff_name_wrap .staff_name {
    text-align: center;
		margin: 0 auto;
}
	
		ul.staff_list li.staff_list_item {
			margin: 0 auto 20%;
	}
		ul.staff_list li.staff_list_item:last-child {
    margin: 0 auto;
}
	.song_name {
    font-size: clamp(17px, 2vw, 20px);
    text-align: center;
    margin: 5% auto 0;
}
    .staff .cast_img {
        margin: 0 auto 10%;
        width: 80%;
    }
	.staff_name span {
    font-size: clamp(14px, 0.7vw, 16px);
	}
	
	
/*--------------------
FOOTER
---------------------*/	

	footer .inner {
        padding: 15% 0 30%;
    }
	
    .footer_logo {
        width: 95%;
        margin: 0 auto 10%;
    }
	.billing{
		width: 100%;
		margin: 0 auto;
	}

	
/*--------------------
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) {
	
li.sns_item a {
    width: 40px;
    height: 40px;
	}
	


	
	
	
}




	
	
	