@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 Sans JP", sans-serif;
	font-weight: 500;
  line-height: 1.5;
  background-color: #fff;
  overflow-y: scroll;
}
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: 55%;
    margin: 0 auto;
    padding: 10% 0;

}

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

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #007ec5;
}
.logo {
width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  text-align: center;
  z-index: 1000;
  opacity: 0;
}
/*--------------------
TRAILER
--------------------*/
.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    display:none;
}

.trailer.on{
	animation-name: TfadeInAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.trailer.off{
	animation-name: TfadeOutAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.trailer_overlay{
    position: fixed;
    top: 0;
    width: 100%;
   height: 100%;
    background: #000;
    opacity: 1;
    z-index: 999999997;
    
}

.close_btn{
      position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  z-index: 999999999;
  cursor: pointer;
  transition: .7s;
}
.close_btn:hover{
transition: .7s;
opacity: .7;
}
.close_btn_inner{
position: relative;
width: 100%;
height: 100%;
}

.close_btn_inner::before,
.close_btn_inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #ffffff;
}
 
.close_btn_inner::before {
      transform: translate(-50%, -50%) skewY(-45deg);
}
 
.close_btn_inner::after {
     transform: translate(-50%, -50%) skewY(45deg);
}

.trailer.on .trailer_overlay{
    opacity: 1;
}

.trailer .trailer_inner{
    position: absolute;
    top: calc(50% - 40px);
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 60%;
    aspect-ratio: 16 / 9;
    z-index: 999999998;
    height: auto;
    box-sizing: content-box;
}

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

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

.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, .trailer.on #youtube2{
    transform: scale(1,1);
    opacity: 1;
}


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

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 2s;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 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;
/*  animation: slideIn 5s ease 1s 1 normal backwards;*/
}
 
@keyframes slideInAnimeY{
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
	
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-------------------
MENU
--------------------*/
header {
 opacity: 0;
  position: fixed;
  z-index: 398;
  translate: none;
}

nav.header_nav {
position: fixed;
    top: 0;
    right: 3%;
    width: 100%;
    z-index: 399;

}
.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: flex-end;
    padding: 2% 0 0;
    width: auto;
    vertical-align: middle;
    box-sizing: border-box;
    z-index: 399;
    align-items: center;
}
nav.header_nav ul li {
vertical-align: middle;
     padding: 0 1% 0 0;
}

nav.header_nav ul li a {
  transition: 0.8s;
  color: #fff;
  font-weight: 400;
  font-style: normal;
}
nav.header_nav ul li a:hover {
  color: #E51A1D;
  transition: 0.8s;
}

nav.header_nav ul li a img{
    height: 1.1vw;
    min-height: 12px;
    max-width: inherit;
   filter: drop-shadow(0px 0px 3px black);
	display: flex;
}

.sns_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns_icon{
	    margin: 0 10px 0 0;
}
.sns_icon:last-child{
	    margin: 0;
}
.sns_icon a {
    transition: .7s;
    color: #fff;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    width: 40px;
    height: 40px;
}
.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;
}



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


section.top{
	position: relative;
}

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%;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    /* min-height: 100vh; */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;	
}
.title{
    width: 45%;
	min-width: 400px;
    margin: 0 auto 4%;
	opacity: 0;
}
.top_copy{
width: 24%;
    margin: 0px auto 4%;
    position: absolute;
    top: 9%;
    left: 21%;
	opacity: 0;
}
.billing{
width: 59%;
	min-width: 500px;
margin: 0 auto 2%;
}
.date{
width: 40%;
	min-width: 350px;
}



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 img{
height: 3.2vw;
    min-height: 30px;
    max-width: inherit;
}
.mvtk_wrap{
	text-align: center;
    margin: 0 auto 2%;
    display: flex;
    justify-content: center;
}
#mvtk-widgets-wrapper{
	    margin: 0 auto;
}
 .top_btm .inner {
        padding: 5% 0;
	}

.goods_bnr{
	width: 350px;
	margin: 0 auto;
}
.goods_bnr a{
	display: block;
	transition: .7s;
}
.goods_bnr a:hover{
	transition: .7s;
	opacity: .7;
}




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

.news{
    position: relative;
    z-index: 1;
    background-color: #c6e1e7;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6.4vw), 0 100%);
    margin: 0 auto -7vw;

}
.news .inner{
width: 50%;
position: relative;
z-index: 3;
	padding: 7% 0;
	    padding: 7% 0 10.5%;
}
.news h1.midashi_title{
    color: #F7FBFC;
    text-align: left;
    font-size: 2rem;
    margin: 0 auto 15%;
    line-height: 2vw;
    letter-spacing: 0.5rem;
}

.news_wrap {
    width: 100%;
    display: flex;
	flex-direction: column;
    justify-content: center;
        align-items: center;

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



.viewall{
    text-align: right;
    font-size: 14px;
    position: relative;
    width: 130px;
    margin: 0 auto;
}
a.nor{
color: #3f3f3f;
    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 #3f3f3f;
    padding: 0 0 10px 0;
    margin: 0 auto 5%;
    box-sizing: border-box;
}
ul.ulblogtitle li a{
	transition: .7s;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	font-size: clamp(14px, 1vw, 16px);
}

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


.arrow {
position: absolute;
    display: inline-block;
    bottom: 25%;
    right: 10%;
    width: 30px;
    height: 2px;
    margin: 0 0 0 24px;
    border-radius: 9999px;
    background-color: #3f3f3f;
}

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

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

section.movie{
	position: relative;
	 background-image: linear-gradient(90deg, #fad274, #fade91 57%, #fad698 86%, #fbd17c);
	    clip-path: polygon(0 6.7vw, 100% 0, 100% 100%, 0 100%);/*上辺だけ*/
}
section.movie::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.4;
}
.movie .inner{
	position: relative;
	z-index: 2;
	padding: 10.5% 0 7%;
}

.movie_wrap{
display: flex;
overflow: hidden;
}
ul.trailer_list{
      width: 100%;
    margin: 0 auto;
    display: flex;
        justify-content: center;
    align-items: center;
  }
  li.trailer_item{
    width: 100%;
        margin: 0 3% 0 0;
  }
   li.trailer_item:last-child{
  margin: 0;
  }
.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	box-sizing: border-box;
	    background: #000;
	position: relative;
	z-index: 1;
}

.trailer_pop_btn a{
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 5;
    text-align: center;
    justify-content: center;
    align-items: center;
	    overflow: hidden;
}
.trailer_pop_btn a::before{
content: "";
    position: absolute;
    background-image: url("../img/yt_logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    display: block;
    right: 0;

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

.movie_midashi{
color: rgb(255, 255, 255);
    margin: 10px 0px 0px;
    font-size: 1rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.5rem;
}


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

.intro_main{
	position: relative;
	margin: 0 auto -7%;
}
.intro_text_01{
position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}
.intro{
    background-image: url(../img/intro_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    clip-path: polygon(0 6.4vw, 100% 0, 100% calc(100% - 6.6vw), 0 100%);
    margin: 0 auto -7vw;
}
h1.midashi_title{
    text-align: center;
    margin: 0 auto 5%;
}
.text{
	color: #3f3f3f;
	text-align: justify;
	text-align-last: left;
	    font-weight: 600;
}
.intro_lead_01{
	    width: 90%;
	    min-width: 550px;
    margin: 0 auto 2%;
}
.intro_lead_02{
        width: 45%;
    min-width: 300px;
    margin: 5% auto 2%;
}
.intro_lead_03{
	    width: 70%;
	    min-width: 500px;
       margin: 5% auto 2%;
}


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

.story_main{
	margin: 0 auto -7%;
}
.story{
    background-image: url(../img/story_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-position: top;
    clip-path: polygon(0 6.7vw, 100% 0, 100% calc(100% - 6.4vw), 0 100%);
    margin: 0 auto -6.4vw;
}
.story_lead_01{
width: 45%;
    margin: 4% auto 2%;
    max-width: 450px;
}
.story_lead_02{
width: 45%;
    margin: 4% auto 2%;
    max-width: 450px;
}
.story_imgs{
	margin: 0 auto -7%;
}

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


.cast{
	background-color: #2fabda;
	margin: 0 auto -7%;
}
.cast .inner{
	    width: 90%;
    padding: 10% 0 0;
    z-index: 397;
    position: relative;
}

ul.cast_list{
   width: 50%;
    min-width: 500px;
	margin: 0 auto 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
	position: relative;
}
ul.cast_list.cast_list_02{
	margin: 0 auto 5%;
}
.cast_icon{
	position: relative;
	z-index: 1;
	height: 100%;
}
.cast_label_01, .cast_label_02{
    width: 40%;
    position: absolute;
    top: 0;
    left: 0;
      transform: rotate(-10deg) translate(-25%, -15%);
    z-index: 2;
	
}
ul.cast_list.other {
	width: 90%;
	    min-width: 700px;
	 margin: 0 auto 5%;
	}
ul.cast_list.other2 {
    width: 50%;
    margin: 0 auto;
    min-width: 400px;
	}

li.cast_list_item {
	width: calc(90% / 2);
    margin: 0 auto;
}

ul.cast_list li.cast_list_item:first-child{
	margin: 0 10% 0 0;
}
ul.cast_list.cast_list_02 li.cast_list_item:first-child{
	margin: 0;
}
ul.cast_list.other li.cast_list_item:nth-child(5n){
	margin: 0;
	}
	ul.cast_list.other li.cast_list_item {
    width: calc(92% / 5);
    margin: 0 2% 0 0;
	}
	ul.cast_list.other2 li.cast_list_item {
width: calc(95% / 3);
    margin: 0 2.5% 7% 0;
}
ul.cast_list.other2 li.cast_list_item:nth-child(3) {
    margin: 0 0 7%;
}
ul.cast_list.other2 li.cast_list_item:nth-child(4), ul.cast_list.other2 li.cast_list_item:nth-child(5){
	margin: 0 2.5% 0 0;
}
ul.cast_list.other2 li.cast_list_item:nth-child(6){
	 margin: 0;
}

.cast_img{
	position: relative;
	margin: 0 auto 7%;
}
.cast_img::before {
    position: absolute;
    content: "";
    display: block;
    color: #fff;
    bottom: 5%;
    right: 5%;
    font-weight: bold;
    background-image: url(../img/open_btn.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
}
.cast_name{
color: #fff;
    display: flex;
    text-align: center;
    margin: 0 auto 5%;
    font-weight: bold;
    letter-spacing: 0.05rem;
    font-family: 'メイリオ', 'Meiryo', sans-serif;
    justify-content: center;
    align-items: end;
	flex-wrap: wrap;
	    font-size: clamp(18px, 2vw, 24px);
}

.chara_name{
	color: #fff;
    font-size: clamp(14px, 1.5vw, 18px);
    margin: 0 auto 10px;
    line-height: 1;
	font-weight: bold;
	font-family:'メイリオ', 'Meiryo', sans-serif;
}
rt{
	margin: 0 auto 1px;
	font-size: 80%;
}
.cast_name span{
font-size: clamp(12px, 1vw, 16px);
    display: block;
    vertical-align: bottom;
    font-weight: bold;
    font-family: 'メイリオ', 'Meiryo', sans-serif;
	    margin: 0 0 5px;
}



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

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 399;
 background-color: #2fabda;
	box-sizing: border-box;
}
/* モーダルのコンテンツ */
.modal__content {
position: relative;
    width: 60%;
    padding: 0;
    box-sizing: border-box;
    height: 70vh;
    overflow-y: scroll;
	    margin: 0 auto 5%;
}
.modal__content::-webkit-scrollbar{
  display: none;
}


/* モーダルを閉じるボタン */

.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2fabda;
  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: 70vh;
	  
}
.md-inner {
       width: 65%;
    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;
}
.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: flex-start;
    align-items: center;
    flex-direction: column;
	}


.cast_img_wrap {
    width: 30%;
    max-width: 500px;
    margin: 5% auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 250px;
}
.profile_img{
width: 100%;
}

.cast_info{
	    width: 100%;
    height: auto;
    text-align: left;
	margin: 3% 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: 3% 0 0 0;
}
.cast_info .name_wrap {
        display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 0 3%;
    border-bottom: 1px solid #fff;
}
.cast_info .cast_name {
    display: flex;
    margin: 0 auto 1%;;
    align-items: inherit;
}
.cast_info .chara_name {
    margin: 0;
}
.cast_profile .text{
	font-size: 16px;
	color: #fff;
}
h2.profile_midashi {
margin: 3% auto 1%;
    font-size: 18px;
    font-weight: bold;
	color: #F9BB01;
}


.md-xmark{
    position: fixed;
    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: 3px;
    transform-origin: center;
    background-color: #fff;
    border-radius: 10px;
}
.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_bg{
    position: relative;
        position: relative;
       margin: -20vw auto -9vw;
	width: 100%;
        overflow: hidden;
}
.cast_bg::before{
content: "";
    display: block;
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, 0);
    background-image: linear-gradient(180deg, #2fabda, #2fabda 80%, rgba(46, 171, 216, 0) 100%);

}
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px!important;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
		left: 5%!important;
	right: auto!important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
	right: 5%!important;
	left: auto!important;
}
.swiper-button-next:after, .swiper-button-prev:after{
	display: none!important;
}


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

.staff{
    background-image: linear-gradient(0deg, #fad274, #fade91 57%, #fad698 86%, #fbd17c);
    clip-path: polygon(0 6.7vw, 100% 0, 100% calc(100% - 6.7vw), 0 100%);
    margin: 0 auto -7vw;
}
.staff .cast_name{
	color: #3f3f3f;
}
.staff .chara_name{
	color: #3f3f3f;
}
.staff .text{
	    text-align: left;
}

/*--------------------
THEMA SONG
---------------------*/
.themasong{
	background-color: #C7E1E8;
	    clip-path: polygon(0 6.7vw, 100% 0, 100% 100%, 0 100%);/*上辺だけ*/
}
.themasong .inner{
	width: 70%;
}
.ts_inner{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: row-reverse;
}
.ts_img_wrap{
	width: 40%;
}
.ts_member{
	text-align: center;
    margin: 5% auto 0;
    font-size: clamp(13px, 0.8vw, 16px);
}
.ts_text_wrap{
	width:55%;
	margin: 0 5% 0 0;
}
.ts_title{
	    text-align: left;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: bold;
    margin: 0 auto 3%;
}
.ts_info{
	    font-size: clamp(13px, 1vw, 16px);
    text-align: left;
    margin: 0 auto 7%;
}
h3.ts_komidashi{
	ont-size: clamp(16px, 1.2vw, 20px);
    text-align: left;
    font-weight: bold;
    margin: 0 auto 3%;
}


/*--------------------
GB SNS
---------------------*/
.gb_sns_area{
border-top: 1px solid #fff;
background-color: #fff;
}

.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) {
	.news .inner {
    width: 70%;
}

}

@media screen and (max-width: 960px) {
	
/*-------------------
MENU
--------------------*/
header{
height: 50px;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
}
nav.header_nav{
z-index: 777;
    position: fixed;
    top: inherit;
    left: inherit;
    width: 100%;
}
.sns_wrap{
        position: absolute;
        top: 35%;
        left: 5%;
        z-index: 779;
	justify-content: flex-start;
    }
	.sns_icon {
		width: auto;
            margin: 0 5% 0 0;
}

  /*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: #000;
    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-image: url("../img/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: auto;
    width: 100%;
    z-index: 778;
  }
  .gnav__wrap {
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    min-height: inherit;
  }
  .gnav__menu__item {
    width: 100%;
    height: 6vh;
    vertical-align: middle;
    line-height: 6vh;
    margin: 0 auto;
  }
  .gnav__menu__item:last-child {
    border: none;
  }
  .gnav__menu__item a {
    color: #fff;
    font-size: clamp(18px, 6vw, 22px);
    font-weight: 700;
    text-decoration: none;
    transition: .5s;
    cursor: default;
    padding: 0;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: left;
  }

     nav.header_nav ul.gnav__menu {
        width: 60%;
        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: 5.5vw;
        max-height: 26px;
    }

nav.header_nav ul li a {
    text-align: center;
	}


  
  /*humberger-menuここまで*/
	
	.sns_wrap_sp{
		display: block!important;
	}
	.sns_icon.pc{
		display: none!important;
	}
	
	.sns_icon a {
    width: 35px;
    height: 35px;
}
	
	h1.midashi_title img {
    height: 3.2vw;
    min-height: 40px;
	}
	
.inner {
    width: 80%;
}
	.themasong .inner {
    width: 80%;
}
		.cast_img::before {
    width: 30px;
    height: 30px;
}

}

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

.inner {
    width: 80%;
    margin: 0 auto;
    padding: 20% 0;
}

	#mvtk-widgets-wrapper {
    width: 342px !important;
    padding: 20px !important;
	}
	#mvtk-widgets-container iframe{
		width: 342px !important;
    height: 394px !important;
	}
	
/*--------------------
LOADING
---------------------*/

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


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

	.top .inner {
    width: 100%;
	}
	.title {
    width: 75%;
	min-width: inherit;
    margin: 0 auto 5%;
}
.billing {
    width: 100%;
	min-width: inherit;
	margin: 0 auto 10%;
}
	.date {
	width: 35%;
        min-width: inherit;
        margin: 0 auto 7%;
	}
 .top_btm .inner {
        width: 80%;
        margin: 0 auto;
        padding: 10% 0;
	}
	.mvtk_wrap{
          margin: 0 auto 0;
        width: 100vw;
        position: relative;
        transform: translate(-50%, 0);
        left: 50%;
}

h1.midashi_title {
    text-align: center;
    margin: 0 auto 10%;
}
h1.midashi_title img {
        height: 13vw;
        min-height: 20px;
        max-height: 50px;
    }
		.goods_bnr{
        max-width: 350px;
        width: 100%;
}
	.mvtk_wrap{
	text-align: center;
    margin: 0 auto 5%;
    display: flex;
    justify-content: center;
}
	

/*--------------------
NEWS
---------------------*/
	
.news{
padding: 0;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 7.4vw), 0 100%);
        margin: 0 auto -8vw;
}
	.news .inner {
    width: 80%;
    padding: 15% 0 20%;;
}
.news_wrap {
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
	}
.news h1.midashi_title{
          margin: 0px 0px 10%;
              text-align: center;
        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 auto;
	line-height: inherit;
}
/*--------------------
MOVIE
---------------------*/
	section.movie{
		clip-path: polygon(0 7.4vw, 100% 0, 100% 100%, 0 100%);
	}
	    .movie .inner {
        padding: 20% 0 15%;
    }
	.trailer .trailer_inner {
    top: 40%;
    width: 90%;
	}
	ul.trailer_list {
    width: 100%;
	flex-direction: column;
	}
	li.trailer_item {
	width: 100%;
		margin: 0 auto 7%;
	}
	
/*--------------------
INTRO
---------------------*/
	
	
	.intro_main {
            margin: 0 auto -8%;
}
	.intro_text_01 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
	.intro_text_02{
		margin: 0 auto 15%;
		        max-width: 500px;
	}
    .intro {
             clip-path: polygon(0 7.4vw, 100% 0, 100% calc(100% - 6.3vw), 0 100%);
        margin: 0 auto -7vw;
    }
	
.intro_lead_01 {
            width: 95%;
        max-width: 400px;
	min-width: inherit;
    margin: 0 auto 7%;
}
	.intro_lead_02 {
            width: 80%;
		max-width: 350px;
		min-width: inherit;
    margin: 10% auto 7%;
}
		.intro_lead_03 {
    width: 95%;
		max-width: 350px;
		min-width: inherit;
    margin: 10% auto 7%;
}
/*--------------------
STORY
---------------------*/
	.story {
    
   clip-path: polygon(0 2%, 100% 0, 100% calc(100% - 2%), 0 100%);/*上下*/
    margin: 0 auto -7%;
}
	.story_lead_01, .story_lead_02 {
    width: 65%;
    margin: 10% auto 7%;
    max-width: 250px;
}
	.story_imgs {
    margin: 0 auto -7%;
}
	
/*--------------------
CAST
---------------------*/
.cast {
    margin: 0 auto -2%;
}
	.cast .inner{
		padding: 15% 0 0;
	}
	.md-scroll {
    flex-direction: column;
    justify-content: flex-start;
	}
	
.md-inner {
    width: 90%;
    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: 0 5%;
	}
	.cast_img_wrap {
        width: 70%;
        margin: 10% auto 5%;
	}
ul.cast_list {
    width: 70%;
	    justify-content: center;
	}
	
	
	ul.cast_list.cast_list_02 {
    margin: 0 auto 15%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
	}
	

/*ul.cast_list li.cast_list_item:first-child {
    margin: 0 10% 7% 0;
}*/
	.cast_label_01, .cast_label_02 {
    width: 40%;
	max-width: 150px;
}
	ul.cast_list.other {
		    width: 85%;
    margin: 0 auto 15%;
	min-width: inherit;
}

	ul.cast_list.other li.cast_list_item:first-child {
        margin: 0 2% 10% 0;
    }
	ul.cast_list.other li.cast_list_item:nth-child(3){
		 margin: 0 0 10% 0;
	}
ul.cast_list.other li.cast_list_item {
    width: calc(96% / 3);
	}
	ul.cast_list.other2 {
    width: 80%;
	}
	
	.cast_info{
		width: 85%;
		margin: 0 auto;
	}
	.cast_info .name_wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
		padding: 0 0 20px;
	}
	.cast_info .cast_name {
    margin: 0 auto 2%;
	}
		.cast_name span{
            font-size: clamp(13px, 1vw, 16px);
	
	}
	.cast_profile {
    padding: 5% 0 0 0;
}
	.cast_name {
    font-size: clamp(16px, 5vw, 22px);
	}
	.point{
		color: #fff;
    margin: 0 auto 15%;
		        font-size: 10px;
	}
	.point:last-child{
    margin: 15% auto 0;
	}
	
	.cast_bg {
    position: relative;
		    margin: -40% auto -15vw;

}
	.cast_bg::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
	}
	
    .swiper-button-next, .swiper-button-prev {
      width: 30px !important;
        top: 30% !important;
    }

	.modal__content {
           position: relative;
        width: 100%;
        margin: 0 auto 10%;
	}
	rt {
    margin: 0 auto 1px;
	}
	.chara_name {
    color: #fff;
    font-size: clamp(15px, 4vw, 18px);
	}


	.cast_bg img{
		    width: 200%;
    max-width: inherit;
		        transform: translate(-45%, 0);
	}
	
/*--------------------
THEMA SONG
---------------------*/
	.themasong {
    background-color: #C7E1E8;
            clip-path: polygon(0 6.9vw, 100% 0, 100% 100%, 0 100%);
	}
	.ts_inner {
    display: flex
;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    flex-direction: column;
	}
	.ts_img_wrap {
    width: 100%;
}
.ts_text_wrap {
        width: 100%;
        margin: 10% auto 0;
    }
	.themasong .inner {
    width: 80%;
}
	
	.ts_title {
            text-align: center;
        font-size: clamp(18px, 6.5vw, 22px);
    font-weight: bold;
    margin: 0 auto 5%;
}
	.ts_info {
    font-size: clamp(13px, 1vw, 16px);
    text-align: center;
    margin: 0 auto 10%;
}
	h3.ts_komidashi {
    ont-size: clamp(16px, 1.2vw, 20px);
    text-align: center;
    font-weight: bold;
    margin: 0 auto 5%;
}
	
/*--------------------
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;
	}
	
ul.cast_list {
	min-width: inherit;
    margin: 0 auto 10%;
	}

	li.cast_list_item {
    width: 100%;
}
ul.cast_list li.cast_list_item:first-child {
        margin: 0 0 15% 0;
    }
.cast_label_01, .cast_label_02 {
        width: 50%;
        max-width: 100px;
}
	ul.cast_list.other{
		        width: 100%;
	}
		ul.cast_list.other li.cast_list_item {
    width: calc(95% / 2);
	margin: 0 5% 10% 0;
	}
		ul.cast_list.other li.cast_list_item:nth-child(2n) {
    margin: 0 auto 10%;
	}
	ul.cast_list.other2 {
    width: 90%;
	min-width: inherit;
	}
	ul.cast_list.other2 li.cast_list_item {
    width: calc(95% / 2);
	}
	    ul.cast_list.other2 li.cast_list_item:first-child, ul.cast_list.other2 li.cast_list_item:nth-child(3n) {
        margin: 0 5% 10% 0;
    }
	ul.cast_list.other2 li.cast_list_item:nth-child(2n) {
    margin: 0 auto 10%;
	}
	.goods_bnr{
	        width: 100%;
        max-width: 350px;
}
	
	
	
}




	
	
	