@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: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  overflow-y: scroll;
  background-color: #000;
}
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;

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

/*--------------------
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: 3.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
	  filter: blur(10px);
  }
  100% {
    opacity: 1;
	  filter: blur(0);
  }
}
.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;
  }
}

.scaleIn {
  animation-name: scaleInAnime;
  animation-duration: 2s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes scaleInAnime {
  0% {
	  transform: scale(1.2);
	  filter: blur(10px);
  }
  100% {
	   transform: scale(1);
	  filter: blur(0);
  }
}


.blurS {
	animation-name: blurS;
  animation-duration: 3s;
	  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes blurS {
  0%   {
  	filter: blur(10px);
	  opacity: 0;
	
  }
  100% { 
    filter: blur(0);
	  opacity: 1;
  }
}


/*--------------------
MENU
---------------------*/
header {
  position: fixed;
  z-index: 299;
  translate: none;
	    align-items: center;
}
nav.header_nav {
  position: fixed;
  top: 5%;
  right: 5%;
  width: 50px;
  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;
	min-height: 600px;
}
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;
}
nav.header_nav ul li a:hover {
  opacity: 0.7;
  transition: 0.8s;
}
nav.header_nav ul li a img {
  height: 1vw;
  min-height: 16px;
  max-width: inherit;
  margin: 0 auto;
}
header {
    height: auto;
    position: fixed;
    width: auto;
    top: 1vw;
    right: 1.5vw;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}
nav.header_nav {
  z-index: 777;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
/*hamburger-menu*/

.menu_bg {
  width: 50px;
  height: 50px;
	position: relative;
  z-index: 779;
  background-color: #000;
	box-sizing: border-box;
	  opacity: 0;
}
.menu {
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  z-index: 779;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.menu__line {
  background: #fff;
  display: block;
  height: 3px;
  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: 10px;
  transform: rotate(45deg);
}
.menu__line--center.active {
  transform: scaleX(0);
}
.menu__line--bottom.active {
  bottom: 7px;
  transform: rotate(-45deg);
}
/*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: 700px;
}
.gnav__menu__item {
  width: 100%;
  vertical-align: middle;
}
.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: 80%;
  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 40px;
}
nav.header_nav ul.gnav__menu li:last-child {
  padding: 0;
}
nav.header_nav ul.gnav__menu li:first-child {
  border-left: none;
}
nav.header_nav ul.gnav__menu li img {
  height: 6vw;
  max-height: 26px;
}
nav.header_nav ul li a {
  text-align: center;
  font-size: clamp(16px, 5vw, 20px);
}
/*humberger-menuここまで*/


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

section.top{
	width: 100%;
	position: relative;	
	overflow: hidden;
	    background-color: #000;
}
.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;
}
.top_main_text{
	top: 0;
    position: absolute;
    left: 0;
    width: 100%;
	opacity: 0;
	z-index: 3;
}

ul.sns_list {
display: flex;
    align-items: baseline;
    line-height: 1.3;
    justify-content: center;
    margin: 0 auto;
    position: fixed;
    top: 5%;
    left: 4%;
    opacity: 0;
    z-index: 779;
}
li.sns_item{
	
	margin: 0 20px 0 0;
}
li.sns_item:last-child{
	margin: 0;
}
li.sns_item a{
display: flex;
    justify-content: center;
    align-items: center;
    transition: .7s;
    width: 3vw;
    min-width: 40px;
    max-width: 50px;
}
li.sns_item a:hover{
	transition: .7s;
}
li.sns_item a img{
	width: 70%;
	margin: 0 auto;
}
.cmt_bnr{
    position: absolute;
    width: 15%;
    bottom: 10%;
    left: 1%;
	z-index: 5;
	opacity: 0;
}
.cmt_bnr a{
	transition: .7s;
	display: block;
}

.cmt_bnr a:hover{
	transition: .7s;
	opacity: .7;
	transform-origin: center bottom;
    animation: yurayura 0.2s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
}

.top_btm .inner{
    padding: 5% 0 0;
}
.mvtk_wrap{
    margin: 0 auto;
}
#mvtk-widgets-container{
margin: 0 auto 2%;
}
.bnr_wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    margin: 0 auto;
}
.mvtk_bnr{
    width: 49%;
    margin: 0 2% 0 0;
}
.mjr_bnr{
width: 40%;
}
.mvtk_bnr a, .mjr_bnr a{
display: block;
transition: .7s;
}
.mvtk_bnr a:hover, .mjr_bnr a:hover{
opacity: .7;
transition: .7s;
}



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

.bg{
	background-image: linear-gradient(0deg, #003533, #003533 40%, #000102);
}


h1.midashi_title{
color: #e60011;
    text-align: center;
    font-size: 2rem;
    margin: 0 auto 3%;
    line-height: 2vw;
    letter-spacing: 0.5rem;
}
h1.midashi_title img{
	height: 2vw;
	    min-height: 30px;
    max-width: inherit;
}
.news .inner{
width: 50%;
	padding: 5% 0 0 0;
}
.news_wrap{
width: 100%;
display: flex;

}
.news_date{
 color: #fff;
	background-color: #e60011;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 15px 0 0;
	    padding: 5px 10px;
}
.news_title {
     width: 90%;
    margin: 0 auto;
    line-height: 1.3;
	text-align: left;
	color: #F7FBFC;
}
.title_wrap {
    margin: 0 5% 0 0;
	width: 15%;
}
.viewall{
text-align: right;
font-size: 14px;
	    line-height: 1;
}
a.nor{
    color: #fff;
    font-size: 18px;
    transition: .7s;
    position: relative;
    display: block;
    text-align: center;
	letter-spacing: 0.05rem;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}

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

}

ul.ulblogtitle li{
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
    border: 1px solid #e60011;
    background: rgba(0, 0, 0, 0.8);
	transition: .7s;
	    margin: 0 auto 2%;
}
ul.ulblogtitle li:last-child{
	    margin: 0 auto;
}
ul.ulblogtitle li:hover{
	opacity: 0.7;
    transition: .7s;
}
ul.ulblogtitle li a{
	transition: .7s;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	font-size: clamp(14px, 1vw, 16px);
}

/*--------------------
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 Serif JP", 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(2){
	margin: 0 0 5px;
}
.trailer_tab li:nth-child(3){
	margin: 0 5px 0 0;
}
.trailer .trailer_tab li:last-child{
    margin: 0;
}
.trailer_tab li.f_act{
	cursor: pointer;
	background: rgba(0, 0, 0, 0.8);
    color: #fff;
	border: 1px solid #fff;
    box-sizing: border-box;
}

.trailer_tab li.f_act:hover{
   
}
#youtube1, #youtube2, #youtube3, #youtube4{
    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{
    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;
	overflow: hidden;
}
.mvtk_wrap::before{
	    mix-blend-mode: lighten;
}
.movie .inner{
	position: relative;
	z-index: 2;

	    padding: 5% 0;
}
.movie_wrap{
overflow: hidden;
}
.movie_wrap .trailer_list{
display: flex;
}
.movie_wrap .trailer_list.hon{
display: block;
margin: 0 auto 5%;
}
ul.trailer_list{
      width: 100%;
    margin: 0 auto;
    display: flex;
        justify-content: flex-start;
    align-items: center;
  }
li.trailer_item {
width: calc(50% - 5px);
    margin: 0 10px 0 0;
}
li.trailer_item:last-child {
    margin: 0 auto;
}
.trailer_midashi{
	color: #fff;
	font-family: "Noto Serif JP", serif;
}
.trailer_pop_btn{
	    margin: 0 auto 10px;
    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;
}

/*--------------------
INTRO
---------------------*/
section.intro{
background-image: linear-gradient(#000102, #000c0b);
overflow: hidden;
}

.intro_inner{
    width: 100vw;
    position: relative;
    transform: translate(-50%, 0);
    left: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.intro_main{
width: 50%;
margin: 0 5% 0 0;
}
.intro_info{
width: 35%;
}
.intro_lead{
   margin: 0 auto 5%;
    width: 95%;
}
.intro .text, .story .text, .cast .text, .staff .text, .ts .text{
color: #dddddd;
}

/*--------------------
STORY
---------------------*/
.story_main{
position: relative;
}
.story_main_text{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
ul.story_img_list{
display: flex;
}

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

section.cast{
	background-image: url("../img/cast_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}

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: 80%;
margin: 0 auto 5%;
}
li.cast_list_item {
    width: calc(95% / 3);
    margin: 0 2.5% 0% 0;
}
.first li.cast_list_item:last-child {
    width: calc(95% / 3);
    margin: 0;
}
.second li.cast_list_item {
    width: calc(94% / 4);
    margin: 0 2% 0 0;
}
.second li.cast_list_item:last-child {
     width: calc(94% / 4);
    margin: 0;
}

.cast_wrap{
	width: 70%;
	margin: 0 auto;
}

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{
margin: 0 auto 10%;
}
.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: 0 auto 5%;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
h2.profile_midashi img{
	height: 2vw;
    max-width: inherit;
		    max-height: 30px;
}

.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{
	background-image: url("../img/staff_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}
ul.staff_list{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
li.staff_list_item{
    display: flex;
    justify-content: center;
    align-items: flex-start;
	width: 48%;
	margin: 0 4% 0 0;
}
li.staff_list_item:last-child{
margin: 0 auto;
}
.staff_info{
width: 100%;
}
.staff_billing{
    margin: 10% auto 0;
	    max-width: 900px;
    width: 100%;
}

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

section.ts{
position: relative;
z-index: 1;
    background-color: #000;
}

section.ts::before{
	background-image: url("../img/ts_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	width: 50%;
	height: 100%;
	z-index: 2;
	mix-blend-mode: hard-light;
}

section.ts .inner{
position: relative;
	z-index: 3;
}
section.ts ul.staff_list{
display: block;
}

section.ts li.staff_list_item{
	width: 100%;
	margin: 0 auto;
}
.staff_img{
width: 35%;
    margin: 0 5% 0 0;
}
section.ts .staff_info{
width: 60%;
}
.staff_name_wrap{
margin: 0 auto 5%;
}
.position{
color: #fff;
font-size: 16px;
 margin: 0 0 10px 0;
}
.name{
color: #fff;
font-size: 22px;
}

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

.footer_logo{
width: 40%;
    margin: 0 auto;
	    max-width: 450px;
    min-width: 150px;
}



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

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

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

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

header{
    width: 100%;
    background-color: #000;
    top: 0;
    right: 0;
	    justify-content: end;
}
.menu_bg {
    right: 5%;
	}
		ul.sns_list {
        position: inherit;
        margin: 0 auto;
        top: inherit;
        left: 5%;
        height: 50px;
}
li.sns_item {
    margin: 0 auto;
}
li.sns_item a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .7s;
    width: 100%;
    min-width: 40px;
    max-width: 50px;
    height: 50px;
	}
	li.sns_item a img {
    width: 55%;
	}

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

section.top{
  margin: 50px auto 0;
}
#mvtk-widgets-container {
margin: 0 auto 4%;
}
.bnr_wrap{
    flex-direction: column;
    width: 90%;
}
.mvtk_bnr{
width: 100%;
margin: 0 auto 3%;
}
.mjr_bnr{
width: 100%;
margin: 0 auto;
}

/*--------------------
NEWS
---------------------*/
	
    .news .inner {
        width: 80%;
        padding: 10% 0 0;
    }
	.cmt_bnr {
    position: inherit;
    width: 70%;
	    max-width: 250px;
    bottom: inherit;
    left: inherit;
    margin: 0 auto 10%;
}
    .news_wrap {
        flex-direction: column;
    margin: 20% auto 0;
	}
h1.midashi_title {
  margin: 0 auto 10%;
        line-height: 1;
	}
h1.midashi_title img {
        height: 9vw;
        min-height: 20px;
	        max-height: 40px;
    }
	
ul.ulblogtitle {
        width: 100%;
        margin: 0 auto 7%;
    }
	ul.ulblogtitle li{
		margin: 0 auto 5%;
	}
	ul.ulblogtitle li a {
    flex-direction: column;
		font-size: clamp(14px, 4vw, 16px);
	}
	.news_date {
   display: inline-block;
        margin: 0 auto 10px 0;
	}
	.news_title {
    width: 100%;
    margin: 0 0 3%;
}
	
/*--------------------
TRAILER
---------------------*/	
	ul.trailer_list {
    width: 100%;
		flex-direction: column;
	}
	li.trailer_item {
    width: 100%;
    margin: 0 auto 7%;
}
	.movie .inner{
		    padding: 15% 0;
	}
	.trailer .trailer_inner {
    width: 90%;
	top: 30%;
	}
	
	/*--------------------
INTRO
---------------------*/


    .intro_main {
        position: relative;
        transform: translate(-50%, 0);
        left: 50%;
        width: 100vw;
        padding: 0 10% 0 0;
        box-sizing: border-box;
        margin: 0 auto;
    }
.intro_inner {
    flex-direction: column;
    align-items: center;
	}
.intro_info {
    width: 80%;
    margin: 0 auto;
    padding: 15% 0;
}
.intro_lead {
    margin: 0 auto 10%;
    width: 75%;
	    max-width: 250px;
}

ul.story_img_list{
flex-wrap: wrap;
}
.story_img_list li:nth-child(1), .story_img_list li:nth-child(2){
width: 50%;
}
.story_img_list li{
width: calc(100% / 3);
}

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

.cast .inner{
    max-width: 450px;
}

ul.cast_list.first{
    flex-direction: column;
    align-items: center;
	width: 70%;
	margin: 0 auto 15%;
}
li.cast_list_item{
    width: 100%;
    margin: 0 auto 15%;
}
.first li.cast_list_item:last-child {
  width: 100%;
}
.second li.cast_list_item{
    width: calc(98% / 2);
    margin: 0 2% 10% 0;
}
.second li.cast_list_item:nth-child(2){
margin: 0 0 10% 0;
}
.second li.cast_list_item:nth-child(3){
margin: 0 2% 0 0;
}
.second li.cast_list_item:nth-child(4){
  width: calc(98% / 2);
margin: 0;
}
.cast_wrap {
width: 80%;
}
.second .cast_wrap {
width: 90%;
}
.md-inner {
    width: 80%;
    padding: 0;
}
h2.profile_midashi{
margin: 0 auto 10%;
}
h2.profile_midashi img {
    height: 6vw;
    min-height: 20px;

	}

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

ul.staff_list {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}
li.staff_list_item {
    width: 100%;
    margin: 0 auto 15%;
}
.staff_billing {
    margin: 20% auto 0;
    max-width: 500px;
    width: 100%;
}

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

section.ts li.staff_list_item {
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.staff_img {
    width: 80%;
    margin: 0 auto 10%;
}
section.ts .staff_info {
    width: 100%;
}
section.ts::before {
    width: 100%;
    height: 50%;
	}

/*--------------------
FOOTER
---------------------*/
.footer_logo {
    width: 70%;
	}
footer .inner{
    padding: 10% 0 20%;
}
	
}

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

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

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




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

}
	
	
	
	