@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
	font-weight: 500;
  line-height: 1.5;
  background-color: #fff;
  overflow-y: scroll;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}
.inner{
    width: 70%;
    margin: 0 auto;
    padding: 5% 0;

}

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

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #fff;
}
.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;
  }
}

/*--------------------
TRAILER（POPアップ）
---------------------*/
.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    display:none;
}

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

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

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

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

.trailer.on .trailer_overlay{
    opacity: 1;
}
.trailer .trailer_inner {
    position: absolute;
    top: calc(44% - 20px);
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 65%;
    aspect-ratio: 16 / 9;
    height: 1;
    z-index: 999999998;
    transition-duration: 0.5s;
}
.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 {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  background: rgb(148,176,192);
  color: #000;
  margin-right: 0;
  font-size: 1rem;
  margin: 0 auto;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.trailer_tab li:nth-child(2n) {
  margin-right: 0;
}
.trailer_tab li.f_act {
  cursor: pointer;
  background: #fff;
  color: rgb(148,176,192);
}
#youtube1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1, 1);
  transition-duration: 1s;
  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%;
}
/*-------------------
MENU
--------------------*/
header {
  /*opacity: 0;*/
  position: relative;
  z-index: 299;
  translate: none;
}
nav.header_nav {
  background-color: #fff;
  height: 60px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 300;
  
}
.nav_inner {
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
      justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
nav.header_nav ul {
	width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0px;
    height: 100%;
    line-height: 16px;
    vertical-align: middle;
    box-sizing: border-box;
    z-index: 300;
    align-items: center;
}
nav.header_nav ul li {
  padding: 0 2% 0 0;
}
nav.header_nav ul li:first-child {
    padding: 0 2% 0 0;
}
nav.header_nav ul li:last-child {
  border: none;
}
nav.header_nav ul li a {
  display: block;
  transition: 0.8s;
  color: #fff;
  font-family: "dnp-shuei-nmincho-std", sans-serif;
  font-weight: 400;
  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: 1vw;
    max-width: inherit;
}
nav.header_nav ul li:last-child a img{
    height: 1.2vw;
}

nav.header_nav ul li:nth-child(1) a img, nav.header_nav ul li:nth-child(6) a img{
    margin: 10% auto 0;
}
nav.header_nav ul li:nth-child(2) a img, nav.header_nav ul li:nth-child(7) a img{
    height: 0.8vw;
}
nav.header_nav ul li:nth-child(8) a img{
    height: 1.1vw;
    padding-top: 2px;
}
.sns_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns_icon a {
  transition: .7s;
  color: #fff;
}
nav.header_nav ul.sns_wrap li a img {
	max-height: 26px;
	height: 2vw !important;
    max-width: inherit;
    margin: 0 auto;
}
.sns_icon a:hover {
  transition: .7s;
}

nav.header_nav ul.sns_wrap {
height: auto;
    line-height: inherit;
    width: 80px;
    align-items: baseline;
	margin: 0 2% 0 0;
}
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;
}


/*--------------------
共通
---------------------*/
h1.midashi_title{
    color: #000;
    text-align: center;
    font-size: 2rem;
    margin: 0 auto 5%;
    line-height: 1;
    letter-spacing: 0.5rem;
}
h1.midashi_title img{
height: 1.5vw;
    transform: rotate(-3deg);
}

.text{
text-align: justify;
text-align-last: left;
}

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

section.top{
	width: 100%;
	position: relative;	
	margin: 60px auto 0;
}


.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_left {
width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.title{
     width: 65%;
    margin: 0 auto 5%;
	opacity: 0;
}
.top_billing{
 width: 65%;
  margin: 0 auto 5%;
	opacity: 0;
}
.date{
    width: 50%;
	margin: 0 auto 15%;
	opacity: 0;
}
.top_main{
    width: 100%;
}

ul.sns_list{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 5%;
    right: 3%;
	    z-index: 500;
		opacity: 0;
}
li.sns_item:first-child{
	margin: 0 20px 0 0;
}
li.sns_item a{
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #fff;
    justify-content: center;
    align-items: center;
	transition: .7s;
}
li.sns_item a:hover{
	transition: .7s;
}
li.sns_item a img{
	width: 60%;
	margin: 0 auto;
}

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

.streaming_bnr{
	width: 40%;
	min-width: 350px;
	margin: 0 auto;
}
.streaming_bnr a{
	transition-delay: .7s;
	display: block;
}
.streaming_bnr a:hover{
	transition-delay: .7s;
	opacity: .7;
}

.mvtk_wrap .inner{
	    padding: 2% 0;
}
#mvtk-widgets-container{
	margin: 0 auto 2%;
}

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

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

section.news{
background: rgb(148,176,192);
background: linear-gradient(180deg, rgba(148,176,192,1) 0%, rgba(255,255,255,1) 100%);
}
.news .inner{
width: 50%;

}
.news h1.midashi_title img {
    height: 1.2vw;
	}
.news_date{
 color: #000;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 10px 0 0;
}
.news_title {
     width: 90%;
    margin: 0 auto;
    line-height: 1;
	text-align: left;
	color: #000;
}

.viewall{
    font-size: 14px;
    width: 30%;
    border: 1px solid #000;
    padding: 5px 10px;
    text-align: center;
    margin: 0 auto;
}
.arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #dfdcdb;
  transform-origin: calc(100% - 0px) 50%;
}
.arrow::before {
  transform: rotate(45deg);
}
.arrow::after {
  transform: rotate(-45deg);
}
a.nor{
color: #000;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
	transition: .7s;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}

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

ul.ulblogtitle li{
    width: 100%;
    padding: 1% 0;
    box-sizing: border-box;
  
}
ul.ulblogtitle li:first-child {
    padding: 0 0 1% 0;
}
ul.ulblogtitle li:last-child{
     border-bottom: none; 
	background: none;
}
ul.ulblogtitle li a{
transition: .7s;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: clamp(14px, 1vw, 16px);
    border-bottom: 1px solid #000;
    padding: 0 0 15px 0;
}

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


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

}

/*--------------------
TRAILER_S
---------------------*/
	.trailer_s{
background-image: url("../img/paper_bg.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: top;
	}
section.trailer_s .inner{
	    padding: 0 0 5%;
}
	.trailer_pop_btn {
  margin: 0 auto;
  width: 70%;
  box-sizing: border-box;
  background: #000;
}
.trailer_pop_btn a {
  display: flex;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  text-align: center;
  /*    padding-bottom: 54%;*/
}
.trailer_pop_btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.trailer_pop_btn iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  line-height: 1;
}


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

section.intro{
background-image: url("../img/note_bg.jpg");
background-position: top center;
}
.intro_img{
margin: 0 auto 5%;
}
.lead{
    width: 80%;
    margin: 0 auto 3%;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: bold;
}
.intro .text{
margin: 0 auto 2%;
}
.intro .text span{
font-weight: bold;
font-size: clamp(18px, 1.5vw, 24px);
}

/*--------------------
STORY
---------------------*/
section.story{
background: rgb(143,173,190);
background: linear-gradient(90deg, rgba(135,168,187,1) 0%, rgba(158,184,197,1) 20%, rgba(185,202,210,1) 50%, rgba(197,212,217,1) 70%, rgba(207,217,218,1) 100%);
}

ul.story_img{
display: flex;
margin: 0 auto 5%;
}
li.story_img_item{
width: calc(100% / 3);
margin: 0 1.5% 0 0;
}
li.story_img_item:last-child{
margin: 0 auto;
}
.story_bg{
width: 100%;
}

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

section.cast{
background-image: url("../img/note_bg.jpg");
background-position: top center;
}
.cast .inner{
width: 60%;
    min-width: 650px;
}
.cast h1.midashi_title img {
    height: 1.3vw;
	}
ul.cast_list{
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
li.cast_list_item {
    width: 100%;
    margin: 0 auto 5%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
ul.cast_list.other{
	margin: 5% auto 0;
}
.other li.cast_list_item, .other li.cast_list_item:nth-child(7), .other li.cast_list_item:nth-child(8), .other li.cast_list_item:nth-child(9) {
    width: calc(95% / 3);
    margin: 0 2.5% 5% 0;
}
.other li.cast_list_item:nth-child(3n) {
    
    margin: 0 0 5% 0;
}
.other li.cast_list_item:nth-child(7) .chara_info_wrap, .other li.cast_list_item:nth-child(8) .chara_info_wrap, .other li.cast_list_item:nth-child(9) .chara_info_wrap {
    width: 70%;
}
.other li.cast_list_item:nth-child(6) {
     margin: 0 auto 5%;
}
.other .cast_icon, .other li.cast_list_item:nth-child(7) .cast_icon, .other li.cast_list_item:nth-child(8) .cast_icon, .other li.cast_list_item:nth-child(9) .cast_icon {
    width: 100%;
}

.other li.cast_list_item .name_wrap {
    margin: 0 auto 5% 0;
    flex-direction: column;
}
.other .cast_name {
        font-size: clamp(17px, 1.2vw, 20px);
}
.other .cast_name span {
    font-size: clamp(14px, 1vw, 18px);
    font-weight: bold;
    padding-left: -20px;
    display: block;
    transform: translateX(-0.5rem);
    margin: 5% 0 0;
}
.other .chara_name {
    margin: 0 0 3%;
}
li.cast_list_item:last-child {
margin: 0 auto;
}
li.cast_list_item:nth-child(6){
margin: 0 auto 10%;
}

li.cast_list_item:nth-child(7), li.cast_list_item:nth-child(8), li.cast_list_item:nth-child(9) {
    width: 48%;
	display: flex;
	justify-content: center;
}
li.cast_list_item:nth-child(9) {
    margin: 0;
}
li.cast_list_item:nth-child(7) {
margin: 0 4% 0 0;
}

.cast_icon{
    width: 25%;
	margin: 0 5% 0 auto;
	position: relative;
	z-index: 1;
	height: auto;
}
li.cast_list_item:nth-child(7) .cast_icon, li.cast_list_item:nth-child(8) .cast_icon, li.cast_list_item:nth-child(9) .cast_icon{
    width: 80%;
}
.cast_tag{
    position: absolute;
    bottom: -20%;
    left: 75%;
    width: 100%;
    transform: translate(-50%, 0);
}
.chara_info_wrap{
    width: 70%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;

}
li.cast_list_item:nth-child(7) .chara_info_wrap, li.cast_list_item:nth-child(8) .chara_info_wrap, li.cast_list_item:nth-child(9) .chara_info_wrap {
    width: 100%;
	}
	li.cast_list_item:nth-child(7) .chara_info_wrap .text, li.cast_list_item:nth-child(8) .chara_info_wrap .text, li.cast_list_item:nth-child(9) .chara_info_wrap .text{
    width: 100%;
	    margin: 0 auto 3%;
	}
.name_wrap{
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    margin: 0 auto 3% 0;
    position: relative;
	font-weight: bold;
}
	li.cast_list_item:nth-child(7) .name_wrap, li.cast_list_item:nth-child(8) .name_wrap, li.cast_list_item:nth-child(9) .name_wrap{
    margin: 0 auto 5% 0;
	    flex-direction: column;
}
.cast_name{
    font-size: clamp(18px, 1.2vw, 24px);
color: #000;
	text-align: left;
    line-height: 1;
	font-weight: bold;
}
li.cast_list_item:nth-child(7) .cast_name, li.cast_list_item:nth-child(8) .cast_name, li.cast_list_item:nth-child(9) .cast_name {
    font-size: clamp(18px, 1.15vw, 24px);
	}
.cast_name span{
font-size: 16px;
font-weight: bold;
}
.chara_name{
font-weight: bold;
}
li.cast_list_item:nth-child(7) .chara_name, li.cast_list_item:nth-child(8) .chara_name, li.cast_list_item:nth-child(9) .chara_name {
    margin: 0 0 3%;
}
.chara_info{
width: 100%;
	    margin: 0 auto 10%;
}
.open_btn{
    width: 240px;
    margin: 0 0 0 auto;
}
a.md-btn{
color: #000;
    height: auto;
    right: 0px;
    border: 1px solid #000;
    box-sizing: border-box;
    display: block;
    transition: .7s;
    margin: 0 0 0 auto;
    padding: 5px 10px;
    box-sizing: border-box;
    font-size: clamp(14px, 0.7vw, 16px);
}
a.md-btn:hover{
    width: 100%;
    height: 100%;
	transition: .7s;
}
.ci-xmark {
  width: 10px;
  height: 100%;
  transform: translateY(-50%);
  top: 50%;
  left: 3%;
  padding: 0px 10px 0px 0px;
  position: relative;
}
.ci-xmark span {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 2px;
  transform-origin: center;
  background-color: #000;
}
.ci-xmark span:nth-of-type(1) {
  transform: translateX(-50%);
}
.ci-xmark span:nth-of-type(2) {
  transform: translateX(-50%) rotate(90deg);
}

h2.category_midashi{
    margin: 10% auto 0;
    font-size: clamp(19px, 1.5vw, 20px);
    text-align: left;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    box-sizing: border-box;
}

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


.md-scroll{
	    width: 100%;
    height: 100%;
    display: flex;
    align-items:flex-start;
        justify-content: center;
      
	}
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/note_bg.jpg");
  background-size: cover;
  
  opacity: 1;
  z-index: 400;
}
 
.md-contents{
  display: none;
  position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 401;
	width: 100%;
    height: 100svh;
}

.md-inner {
    width: 70%;
    height: auto;
    min-height: 500px;
	min-width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 3%;
}
.md-inner-wrap{
    width: 100%;
	height: 100%;
    box-sizing: border-box;
	overflow-y: auto;
	}

.md-inner-wrap::-webkit-scrollbar{
  display: none;
}
.md-inner .profile_img {
    width: 100%;
	margin: 0 auto;	
}

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

  width: 3px;
  height: 3px;
  border-radius: 20px;
}
.cast_info::-webkit-scrollbar-thumb {
  background-color: #fdd300;
  opacity: 0.7;
  border-radius: 20px;
}
.cast_profile {
    margin: 0 auto;
    padding: 5% 0 0 0;
}
.cast_profile .text{
	font-size: 16px;
}
.text_01{
	margin: 0 auto 5%;
}
h2.profile_midashi {
     margin: 0 auto 2% 0;
    color: #000;
    border: 1px solid #000;
    width: fit-content;
    padding: 5px 10px;
    line-height: 1;
}

.md-xmark{
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    z-index: 400;
    cursor: pointer;
    background-size: cover;
}
.md-xmark span {
position: absolute;
	  top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
   transform-origin: center;
    background-color: #000;
}
.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-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.staff .inner{
width: 60%;

}
.staff h1.midashi_title img {
    height: 2vw;
	}
.staff_list li.cast_list_item{
color: #fff;
}
.staff_list li.cast_list_item .md-contents .name_wrap, .staff_list .md-contents .cast_name ,.staff_list li.cast_list_item .md-contents .text{
color: #000 !important;
}
.staff_list .cast_name{
color: #fff;
}
.staff_list .chara_info_wrap {
    width: 100%;
	}
	.staff_list .chara_info {
    margin: 0 auto 5%;
	}

.staff_list a.md-btn {
    color: #fff;
    border: 1px solid #fff;
	}



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

footer{
width: 100%;
border-top: 1px solid #2A646B;
color: #fff;
font-size: 14px;
background-image: url("../img/footer_bg.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.billing{
    width: 60%;
    margin: 0px auto 3%;

}
.footer_date{
    width: 60%;
    margin: 0 auto;
}

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

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

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

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

.logo {
width: 50%;
}
/*-------------------
TRAILER
--------------------*/
	.trailer .trailer_inner {
    width: 90%;
		        top: 35%;

	}
/*-------------------
MENU
--------------------*/
header {
width: 100%;
        height: 50px;
        position: fixed;
        top: 0;
        background-color: #fff;
	}

nav.header_nav{
z-index: 777;
}

  /*hamburger-menu*/
  .menu_bg {
width: 45px;
        height: 45px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: 3%;
        z-index: 779;
	/*opacity: 0;*/
  }
  .menu {
    height: 15px;
    position: absolute;
    right: 50%;
    top: 50%;
    width: 30px;
    z-index: 779;
    cursor: pointer;
    transform: translate(50%, -50%);
  }
  .menu__line {
    background: #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-color: #fff;
    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: 7vh;
        vertical-align: middle;
        line-height: 7vh;
        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;
    margin: 10px auto auto;
    justify-content: center;
    align-items: center;
  }
  .gnav__menu__item.gray a {
    color: gray;
    pointer-events: none;
  }
  /*追加*/
  nav ul.gnav__menu {
    width: 80%;
  }
  nav ul.gnav__menu li {
    text-align: center;
  }
  nav ul.gnav__menu li:first-child {
    border-left: none;
  }
  nav ul.sns_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 20% auto 0;
  }

  nav ul.gnav__menu li img {
    height: 5vw;

  }
      nav ul.gnav__menu li:nth-child(2) img, nav ul.gnav__menu li:nth-child(7) img {
        height: 4vw;
		}
  nav ul.sns_icon li:last-child {
    margin: 0;
  }
  ul.sns_icon {
    margin-top: 30px;
  }
  nav ul.sns_icon li img {
    height: 26px;
  }
  ul.sns_icon li:nth-child(2) a, ul.sns_icon li:nth-child(3) a {
    display: inline-block;
    width: auto;
  }
  nav .sns_wrap {
    position: inherit;
    top: inherit;
    right: inherit;
    margin: 5vh auto 0;
  }
    nav li.sns_icon a {
           width: 50px;
        height: 50px;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;

  }
  nav .sns_icon a img {
    height: 30px;
  }



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

section.top{
margin: 50px auto 0;
}
ul.sns_list {
    top: 3%;
    right: 6%;

}

li.sns_item a {
    width: 40px;
    height: 40px;
	}
	li.sns_item:first-child {
    margin: 0 10px 0 0;
}
	
	/*--------------------
NEWS
---------------------*/

.mvtk_wrap .inner{
	    padding: 10% 0;
}
	
	.streaming_bnr{
	width: 90%;
	min-width: inherit;
		max-width: 350px;
}
#mvtk-widgets-container{
	margin: 0 auto 4%;
}

	
/*--------------------
NEWS
---------------------*/
	
    .news h1.midashi_title img {
        height: 4vw;
		}
	
	.news .inner {
    width: 80%;
    padding: 15% 0;
}
.news_wrap {
    margin: 15% auto 0;
	}

   h1.midashi_title {
    font-size: 1.7rem;
        margin: 0 0 15%;
    }
	ul.ulblogtitle {
    margin: 0 auto 10%;
	}
	ul.ulblogtitle li a {
    flex-direction: column;
		font-size: clamp(14px, 4vw, 16px);
		padding: 0;
	}
	.news_date {
    width: 100%;
    margin: 0 0 5px;
	}
	.news_title {
    width: 100%;
    margin: 0 0 3%;
	line-height: inherit;
}
	/*--------------------
TRAILER_S
---------------------*/
	.trailer_pop_btn {
    margin: 0 auto;
    width: 100%;
	}
	section.trailer_s .inner {
    padding: 0 0 10%;
}

/*--------------------
共通
---------------------*/
h1.midashi_title img {
    height: 5vw;
	}
	
/*--------------------
TOP
---------------------*/	
	.top_main {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
	}
	.top_left {
    width: 100%;
    justify-content: flex-end;
    z-index: 2;
	}
	.top_main_btm{
	margin: 50% auto 0;
	}
	    .top_billing {
        width: 80%;
		margin: 0 auto 5%;
		}
	.title {
    width: 75%;
	}
	.date {
    width: 70%;
    margin: 0 auto 35%;
	}
	
	
	
	
/*--------------------
INTRO
---------------------*/

.intro_img {
overflow: hidden;
    margin: 0 auto 10%;
}
.intro_img img{
        width: 120%;
        max-width: inherit;
        position: relative;
        transform: translateX(-50%);
        left: 50%;
}

.lead {
    width: 100%;
    margin: 0 auto 5%;
	}
	.intro .text {
    margin: 0 auto 5%;
}

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

ul.story_img{
    flex-wrap: wrap;
	margin: 0 auto 10%;
}
li.story_img_item:first-child {
    width: 100%;
    margin: 0 auto 3%;
}
li.story_img_item {
        width: calc(98% / 2);
        margin: 0 1.5% 0 0;
}

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

.cast .inner{
    min-width: inherit;
}

.cast h1.midashi_title img {
    height: 4.5vw;
}
li.cast_list_item {
    flex-direction: column;
    align-items: center;
	margin: 0 auto 20%;
	}
	li.cast_list_item:nth-child(6) {
    margin: 0 auto 20%;
}
.cast_icon {
    width: 80%;
    margin: 0 auto 15%;
	}
	.chara_info_wrap {
    width: 100%;
	}
	.open_btn {
    width: 100%;
	}
	.name_wrap {
           margin: 0 auto 10% 0;
	}
	.cast_name {
    font-size: clamp(20px, 6vw, 24px);
	}
	.md-inner {
    width: 90%;
    min-width: inherit;
	}
		.cast_info{
		        height: 70vh;
	}
	h2.profile_midashi {
    margin: 0 auto 5% 0;
		    padding: 5px 10px 8px;
    font-size: 14px;
	}
	.viewall{
    width: 100%;
}
	    ul.cast_list.other {
        margin: 20% auto 0;
        width: 100%;

}
.other .cast_name span {
    font-size: clamp(12px, 1vw, 18px);
	}
	   

.other li.cast_list_item:nth-child(7) .name_wrap, .other li.cast_list_item:nth-child(8) .name_wrap, .other li.cast_list_item:nth-child(9) .name_wrap {
        flex-direction: column;
    }
	   .other .cast_name {
        font-size: clamp(17px, 5vw, 20px);
    }
	 .other li.cast_list_item:nth-child(7) .cast_name, .other li.cast_list_item:nth-child(8) .cast_name, .other li.cast_list_item:nth-child(9) .cast_name {
         font-size: clamp(17px, 5vw, 20px);
        margin: 0 auto;
    }
	    .other .cast_icon {
        width: 100%;
        margin: 0 auto 10%;
    }
	.other .chara_name {
    margin: 0 0 3%;
	}
	h2.category_midashi {
    margin: 25% auto 0px;
	}

/*--------------------
STAFF
---------------------*/
    .staff h1.midashi_title img {
        height: 6vw;
		}
	.staff_list .chara_info {
    margin: 0 auto 10%;
}

/*--------------------
FOOTER
---------------------*/
footer{
font-size: 12px;
}
    footer .inner {
        padding: 10% 0;
    }
.billing {
    width: 100%;
	max-width: 450px;
	    margin: 0px auto 10%;
	}
	.footer_date {
    width: 80%;
	}
	
}

@media screen and (max-width: 500px) {
	
	  nav ul.gnav__menu li img {
    height: 6vw;

  }
      nav ul.gnav__menu li:nth-child(2) img {
        height: 4vw;
		}
	 nav ul.gnav__menu li:nth-child(6) img {
        height: 5vw;
		}
	     nav ul.gnav__menu li:nth-child(8) img {
        height: 6vw;
    }
	nav ul.gnav__menu li:last-child img {
        height: 6vw;
    }
  
  li.cast_list_item:nth-child(7), li.cast_list_item:nth-child(8), li.cast_list_item:nth-child(9) {
    width: 100%;
    display: block;
}
  li.cast_list_item:nth-child(7) {
    margin: 0 auto 20%;
}
li.cast_list_item:nth-child(7) .cast_icon, li.cast_list_item:nth-child(8) .cast_icon, li.cast_list_item:nth-child(9) .cast_icon {
    width: 70%;
}
li.cast_list_item:nth-child(7) .name_wrap, li.cast_list_item:nth-child(8) .name_wrap, li.cast_list_item:nth-child(9) .name_wrap {
    margin: 0 auto 5% 0;
     flex-direction: row; 
	width: 100%;
}
li.cast_list_item:nth-child(7) .cast_name, li.cast_list_item:nth-child(8) .cast_name, li.cast_list_item:nth-child(9) .cast_name {
    font-size: clamp(20px, 5vw, 24px);
	        margin: 0 0 0 1rem;
}
	.guest{
		    margin: 0 3% 3% !important;
	}
	
	ul.cast_list.other {
    margin: 15% auto 0;
width: 100%;
	
}
	.other li.cast_list_item, .other li.cast_list_item:nth-child(7), .other li.cast_list_item:nth-child(8), .other li.cast_list_item:nth-child(9) {
    width: calc(95% / 2);
		margin: 0 5% 10% 0;
	}
	.other li.cast_list_item:nth-child(2n) {
    margin: 0 0 10% 0 !important;
}
	.other li.cast_list_item:nth-child(3n) {
    margin: 0 5% 10% 0;
}
	    .other .cast_name span {
        font-size: clamp(14px, 1vw, 18px);
    }
	.text_01 {
    margin: 0 auto 10%;
}
}
	
	
	@media screen and (max-width: 440px) {
	
  	#mvtk-widgets-container iframe{
	transform: translate(-50%, 0);
        position: relative;
        left: 50%;
}
}






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

}
	
	
	
	