@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: "dnp-shuei-mincho-pr6n", sans-serif;
	font-weight: 500;
  line-height: 1.8;
  background-color: #060705;
  overflow-y: scroll;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}

/*--------------------
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:4s;
 animation-delay: 0.5s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-direction:normal;
	animation-fill-mode: forwards;
}
 
@keyframes slideInAnimeY{
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
	
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.blur {
animation-name: blurAnime;
animation-duration:4s;
animation-iteration-count:none;
animation-timing-function:ease-in-out;
/*animation-delay: 3s;*/
animation-direction:normal;
	animation-fill-mode:none;

}

@keyframes blurAnime {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
	filter: none;
  }
}
/*--------------------
TRAILER
--------------------*/
.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    display:none;
}

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

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

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

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

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

.trailer .trailer_inner{
    position: absolute;
    top: calc(50% - 55px);
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 65%;
    aspect-ratio: 16 / 9;
    z-index: 999999998;
    height: auto;
    border: 1.5px solid #55706d;
    box-sizing: content-box;
}

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

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

.trailer_tab li.f_act:hover{
   
}
#youtube1, #youtube2, #youtube3, #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;
}


/*-------------------
MENU
--------------------*/
header {
  /*opacity: 0;*/
  position: relative;
  z-index: 299;
  translate: none;
}
nav.header_nav {
  background-color: rgba(0, 0, 0, 0.5);
  height: 60px;
  position: fixed;
  top: 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: flex;
  display: -webkit-flex;
  -webkit-justify-content: left;
  padding: 0;
  width: auto;
  height: 16px;
  line-height: 16px;
  vertical-align: middle;
  box-sizing: border-box;
  z-index: 300;
  align-items: center;
}
nav.header_nav ul li {
  padding: 0 2%;
  height: 16px;
  line-height: 16px;
  vertical-align: middle;
}
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;
}
.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 {
      height: 26px !important;
    max-width: inherit;
}
.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;
}

/*--------------------
共通
---------------------*/
section {
  width: 100%;
  padding: 5% 0;
  box-sizing: border-box;
  position: relative;
}
.inner {
  width: 70%;
  margin: 0 auto;
  position: relative;
 
}
h1.midashi_title {
    margin: 0 auto 2vw;
}
h1.midashi_title img{
max-width: inherit;
height: 1.2vw;
}
.text{
color: #fff;
text-align: justify;
text-align-last: left;
}

/*--------------------
VIDEO
---------------------*/
#video-area {
  position: fixed;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
#video {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  min-height: 100%;
  min-width: 100%;
}
.video-overlay {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 100%, rgba(0, 0, 0, .8) 100%);
  background-size: 3px 3px;
}
/*--------------------
TOP
---------------------*/

section.top{
	width: 100%;
	background-image: url("../img/top_visual_pc.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;	
	padding: 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_title{
opacity: 0;
}
.date_wrap{
background-color: #000;
}
.date{
    width: 65%;
    opacity: 0;
    margin: 0px auto;
    padding: 10px 0;
    box-sizing: border-box;
}


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: #000;
    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
---------------------*/

.news h1.midashi_title{
	color: #F7FBFC;
    text-align: center;
    font-size: 1.7vw;
    margin: 0 5% 0 0;
    line-height: 1;
}

section.news{
background-color: #000;
}
.news .inner{
width: 50%;

}


.news_wrap{
width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.news_date{
 color: #F7FBFC;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 10px 0 0;
}
.news_title {
     width: 90%;
    margin: 0 auto;
    line-height: 1.2;
	text-align: left;
	color: #F7FBFC;
}



.viewall{
text-align: right;
font-size: 14px;
}
a.nor{
color: #e60011;
    text-align: right;
    font-size: 16px;
    font-weight: bold;
	transition: .7s;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}

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

ul.ulblogtitle li{
    width: 100%;
    padding: 3% 0;
    box-sizing: border-box;
    
    background-image: linear-gradient(to right, #e60011 1px, transparent 2px);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
}
ul.ulblogtitle li:first-child{
     padding: 0 0 3% 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: baseline;
	font-size: clamp(14px, 1vw, 16px);
}

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


.arrow {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    margin: 0 0 0 10px;
    border-radius: 9999px;
    background-color: #e60011;
}

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

.LG_bnr_wrap {
    width: 100%;
    margin: 5% auto 0;
	border: 1px solid #55706d;
        padding: 4%;
        box-sizing: border-box;
}

.LG_bnr {
        width: 30%;
    filter: drop-shadow(0px 0px 10px #556B69);
    margin: 0 5% 0 0;
}
.LG_bnr_wrap a{
transition: .7s;
display: flex;
    justify-content: center;
    align-items: center;
	
}

.LG_bnr_wrap a:hover{
transition: .7s;
opacity: .7;
}
.LG_bnr_wrap .text {
       width: 65%;
       font-size: 1.05vw;
}
.ply_btn{
    text-align: right;
    text-align-last: right;
    margin: 15px auto 0;
    font-size: 0.8vw;
}

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

.movie{
background:url("../img/noise.webp");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
position: relative;
overflow: hidden;
}
.movie_wrap{
display: flex;
overflow: hidden;
}
ul.trailer_list{
      width: 85%;
    margin: 0 auto;
    display: flex;
        justify-content: flex-start;
    align-items: center;
  }
  li.trailer_item{
  width: 32%;
  margin: 0 2% 0 0;
  }
   li.trailer_item:nth-child(3){
  margin: 0;
  }
.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	border: 1px solid #55706d;
	box-sizing: border-box;
	    background: #000;
}
.trailer_pop_btn a{
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    text-align: center;
}
.trailer_pop_btn a::before{
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	background-image: url("../img/play_btn.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.trailer_pop_btn iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    line-height: 1;
}

.movie_midashi{
    color: #fff;
    margin: 10px 0 0 0;
}

.slides {
      /*width: 100vw;
    transform: translateX(-50%);*/
    position: relative;
/*    left: 50%;*/
  transition: transform 0.5s ease-in-out;
}

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

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

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

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

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

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



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

section.intro{
    overflow: hidden;
	display: flex;
}
section.intro .inner{
        box-sizing: border-box;
        display: flex;
        width: 80%;
        flex-direction: column;
		position: relative;
z-index: 2;
}

.intro h1.midashi_title {

    line-height: 1;
    width: 40%;
    text-align: center;
	    margin: 0 auto 3% 0;
	}
.intro_bg {
     position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    /*width: 40%;*/
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: 100%;
}
.intro_bg img{
    object-fit: cover;
    object-position: right;

}
 .intro .scroll{
overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 20vw;
}
.intro .text{
padding: 0 15px 10px 0;
    overflow-y: auto;
    box-sizing: border-box;
    color: #fff;
    text-align: justify;
    width: 40%;

}
.intro .text::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.3);
  width: 3px;
  height: 3px;
  border-radius: 20px;
}
.intro .text::-webkit-scrollbar-thumb {
  background-color: #55706d;
  opacity: 0.7;
  border-radius: 20px;
}

.loop_wrap {
  display: flex;
  width: 100%;
  height: 260px;
  overflow: hidden;
  padding: 0;
}

.loop_wrap img {
  width: auto;
  height: 100%;
      max-width: inherit;
}



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

section.story{
background-color: #000;
z-index: 1;
}
section.story::before{
content: "";
display: block;
width: 100%;
height: 100%;
background-image: url("../img/noise.webp");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: absolute;
z-index: 2;
top: 0;
left: 0;
}
section.story .inner{
z-index: 3;
}



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


.cast .inner.other_wrap{
	
	padding: 0;
	}
ul.cast_list{
	margin: 0 auto 2%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
li.cast_list_item {
    width: calc(100% / 3);
    margin: 0;
}
li.cast_list_item:nth-child(3n){
	margin: 0;
	}
	ul.other li.cast_list_item, ul.other li.cast_list_item:nth-child(3n) {
    width: 25%;
    margin: 0 0 2% 0;
}
ul.other li.cast_list_item:nth-child(4n){
	margin: 0 0 2%;
	}

.name_wrap{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 1% 0 0 0;
    position: relative;
}
.name_wrap .cast_name img{
	height: 2.5vw;
}

/*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/noise.webp");
  background-repeat: no-repeat;
  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_icon{
	position: relative;
	z-index: 1;
	height: 100%;
}
a.md-btn{
    width: 100%;
    height: auto;
    right: 0px;
    background-color: rgb(0, 0, 0);
    box-sizing: border-box;
    display: block;
	transition: .7s;
}
a.md-btn:hover{
    width: 100%;
    height: 100%;
	transition: .7s;
}
a.md-btn:hover::before{
    content: "SHOW PROFILE";
    background-position: center;
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
	transition: .7s;
}

.cast_img_wrap {
    width: 40%;
    margin: 0 5% 0 0;
}
.cast_img_wrap .name_wrap{
margin: 3% auto 0;
}

.cast_name{
    font-size: clamp(18px, 2.2vw, 22px);
    color: #fff;
	margin-bottom: 10px;
	text-align: left;
	display: flex;
    flex-wrap: wrap;
	flex-flow: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.cast_info{
	    width: 80%;
    height: 100%;
    text-align: left;
}
.cast_info::-webkit-scrollbar {

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

.md-xmark{
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    z-index: 400;
    cursor: pointer;
    background-size: cover;
}
.md-xmark span {
position: absolute;
	  top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
   transform-origin: center;
    background-color: #fff;
}
.md-xmark span:nth-of-type(1) {

    transform: translateX(-50%) rotate(-45deg);
}

.md-xmark span:nth-of-type(2) {

    transform: translateX(-50%) rotate(45deg);
}

/*--------------------
ORIGINAL
---------------------*/
section.original{
    width: 70%;
    padding: 5% 0;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto 5%;
    background-color: rgba(91, 114, 112, 0.95);
}
section.original::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
  filter: contrast(100%) brightness(100%);
  background:  url("../img/noise.svg");
    opacity: 0.3;
}
.original_wrap{
display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
.comic{
    width: 35%;
    margin: 0 5% 0 0;
}
.original_info{
width: 60%;
}
.original_name{
text-align: left;
    margin: 0 auto 3%;
    font-weight: bold;
    font-size: clamp(19px, 2vw, 22px);
}
.original_name span{
font-size: clamp(16px, 1vw, 18px);
font-weight: bold;
}
.original_info .text{
color: #000;
}
.original_btn a{
    display: block;
    background-color: #000;
    color: #fff;
    padding: 1vw 0.5vw;
    width: 60%;
    margin: 5% auto 0 0;
    border-radius: 100px;
    transition: .7s;
    line-height: 1;
}
.original_btn a:hover{
   transition: .7s;
   background-color: #e60011;
}

.original_comment{
margin: 5% auto 0;
border: 1px solid #000;
padding: 5%;
box-sizing: border-box;
}
.original_comment .original_name {
    font-size: clamp(18px, 1vw, 20px);
	}

.original_comment .comic {
    width: 35%;
    margin: 0 0 0 5%;
}
 .original_comment .scroll{
overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 20vw;
}
.original_comment .text{
padding: 0 15px 10px 0;
    overflow-y: auto;
    box-sizing: border-box;
    text-align: justify;
}
.original_comment .text::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.3);
  width: 3px;
  height: 3px;
  border-radius: 20px;
}
.original_comment .text::-webkit-scrollbar-thumb {
  background-color: #55706d;
  opacity: 0.7;
  border-radius: 20px;
}

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

footer{
width: 100%;
border-top: 1px solid #55706d;
    box-sizing: border-box;
	    padding: 5% 0;
}

.billing{
width: 50%;
margin: 0 auto;

}

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

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

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

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

.logo {
width: 14%;
}
/*--------------------
TRAILER
---------------------*/
.trailer .trailer_inner {
    width: 90%;
	}
	.trailer .trailer_inner {
    position: absolute;
	}
 /*-------------------
MENU
--------------------*/
nav.header_nav{
z-index: 777;
}

  /*hamburger-menu*/
  .menu_bg {
    width: 45px;
    height: 45px;
    background-color: #000;
    position: fixed;
           top: 1%;
        right: 3%;
    z-index: 779;
	opacity: 0;
  }
  .menu {
    height: 15px;
    position: absolute;
    right: 50%;
    top: 50%;
    width: 30px;
    z-index: 779;
    cursor: pointer;
    transform: translate(50%, -50%);
  }
  .menu__line {
    background: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
  }
  .menu__line--top {
    top: 0;
  }
  .menu__line--center {
    top: 50%;
    transform: translateY(-50%);
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .menu__line--top.active {
    top: 8px;
    transform: rotate(40deg);
  }
  .menu__line--center.active {
    transform: scaleX(0);
  }
  .menu__line--bottom.active {
    bottom: 5px;
    transform: rotate(-40deg);
  }
  /*gnav*/
  .gnav {
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: auto;
    width: 100%;
    z-index: 778;
  }
  .gnav__wrap {
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    min-height: inherit;
  }
  .gnav__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;
    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: 20px;
  }*/
  nav ul.gnav__menu li img {
    height: 6vw;
    max-height: 20px;
  }
  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: 40px;
        height: 40px;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;

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



  
  /*humberger-menuここまで*/
/*--------------------
共通
---------------------*/
h1.midashi_title img {
    height: 5vw;
	        max-height: 28px;
	}
.inner{
padding: 15% 0;
}
section{
padding: 0;
}

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

.top_menu_wrap{
position: relative;
}
    .top_menu_block {
        width: 100%;
        height: 70px;
        position: relative;
        z-index: 2;
        background: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1), rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        margin-bottom: -30px;
    }
           ul.sns_list {
        top: calc(1% + 7px);
        left: 5%;
        justify-content: flex-start;
        right: initial;
		    z-index: 200;
}

li.sns_item a {
    width: 40px;
    height: 40px;
	}
	li.sns_item:first-child {
    margin: 0 10px 0 0;
}
.title_inner {
   width: 14%;
	    max-width: 80px;
	}

.logo {
max-width: 80px;
}

.date {
    width: 90%;
	max-width: 450px;
}
	
/*--------------------
NEWS
---------------------*/
	
	.news .inner {
    width: 80%;
    padding: 10% 0;
}
.news_wrap {
    flex-direction: column;
	}
.news h1.midashi_title {
    color: #F7FBFC;
    text-align: center;
    font-size: 1.7vw;
    margin: 0 auto 10% 0;
	}
    h1.midashi_title {
		font-size: clamp(16px, 6vw, 20px);
        margin: 0 0 10%;
    }
	ul.ulblogtitle li a {
    flex-direction: column;
		font-size: clamp(14px, 4vw, 16px);
	}
	.news_date {
    width: 100%;
            margin: 0 0 1%;
	}
	.news_title {
    width: 100%;
    margin: 0 0 2%;
	line-height: inherit;
}

.LG_bnr_wrap{
        width: 100%;
        top: inherit;
        margin: 15% auto 0;
        position: inherit;
        left: inherit;
        
}

.LG_bnr_wrap a{
transition: .7s;
flex-direction: row;
display: flex;
    justify-content: center;
    align-items: center;
}
.LG_bnr{
        width: 80%;
        margin: 0 auto 2%;
}
    .LG_bnr_wrap .text {
width: 100%;
        margin: 0 auto;
        padding: 0;
        font-size: clamp(14px, 4vw, 16px);
        text-align: center;
        text-align-last: center;
    }
	.ply_btn{
            font-size: clamp(14px, 0.5vw, 16px);
}

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

.movie .inner{
width: 100%;
}
.movie_wrap{
width: 100%;
overflow-x: scroll;
}
.movie_wrap::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.3);
  width: 3px;
  height: 3px;
  border-radius: 20px;
  margin: 0 auto 0 10px;
}
.movie_wrap::-webkit-scrollbar-thumb {
  background-color: #55706d;
  opacity: 0.7;
  border-radius: 20px;
   margin: 0 auto 0 10px;
}
ul.trailer_list {
        width: fit-content;
        margin: 0 10%;
                padding: 0 10% 10px 0;
	}
	li.trailer_item {
    width: 80vw;
    margin: 0 2% 0 0;
}
li.trailer_item:nth-child(5) {
    margin: 0;
}
li.trailer_item:nth-child(3) {
    margin: 0 2% 0 0;
}
.controls{
display: none;
}
input[name="carousel"]:nth-of-type(1):checked ~ .slides {
  transform: none; 
}
input[name="carousel"]:nth-of-type(2):checked ~ .slides {
  transform: none;
}
.slides {
    /* min-width: 100%; */
    width: auto;
    box-sizing: border-box;
}

/*--------------------
INTRO
---------------------*/
section.intro {
    flex-direction: column;
	background-color: #000;
	}
.intro_bg {
           position: inherit;
        top: inherit;
        right: inherit;
        justify-content: flex-end;
        overflow: hidden;
        height: 50vw;
	}
.intro .scroll {
               height: auto;
        max-height: 60vh;
	}
.intro .text {
    padding: 0 15px 10px 0;
    overflow-y: auto;
    box-sizing: border-box;
    color: #fff;
    text-align: justify;
    width: 100%;
	}

.intro h1.midashi_title {
    width: 100%;
    margin: 0 auto 8% 0;
}

.loop_wrap {
    display: flex;
    width: 100%;
    height: 150px;
	}
	

	
/*--------------------
CAST
---------------------*/	
    .cast .inner {
        padding: 15% 0 0;
    }
	.cast .inner.other_wrap {
    padding: 0 0 15%;
}
	.cast_item_inner {
    flex-direction: column;
	}
	.cast_info {
    width: 100%;
	}
	.cast_name {
    width: 100%;
	margin: 0 auto 8%;
}
	.cast_name img {
      height: 7.2vw;
}
.cast_img {
    width: 90%;
    margin: 0px auto 8%;
}
ul.cast_list {
    flex-direction: column;
	}
	.inner.other_wrap{
	width: 100%;
	}
	ul.cast_list.other{
	    flex-direction: row;
	        margin: 10% 0 0;
	}
li.cast_list_item {
    width: 90%;
    margin: 0 auto 5%;
}
li.cast_list_item:nth-child(3n) {
    margin: 0 auto;
}
ul.other li.cast_list_item, ul.other li.cast_list_item:nth-child(3n) {
    width: 50%;
    margin: 0 0 5% 0;
}
ul.other li.cast_list_item:nth-child(7), ul.other li.cast_list_item:nth-child(7) {
    margin: 0 auto;
}

.md-inner {
    height: 70svh;
	min-width: inherit;
	 width: 80%;
	}
	.md-scroll {
    flex-direction: column;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
	.cast_img_wrap {
    width: 100%;
    margin: 0 auto 10%;
}
	.name_wrap .cast_name img {
    height: 7vw;
}
	h2.profile_midashi {
    margin: 0 auto 5% 0;
    font-size: 16px;
	}
	.md-xmark {
    width: 60px;
    height: 60px;
	}
	

/*--------------------
ORIGINAL
---------------------*/	
	section.original {
    width: 80%;
	        margin: 0 auto 15%;
	padding: 0;
	}
	.original_wrap {
    flex-direction: column;
	}
	.comic {
    width: 70%;
    margin: 0 auto 10%;
}
	.original_info {
    width: 100%;
}
.original_name{
text-align: center;
}
    .original_info .scroll {
       max-height: 45vh;
        height: auto;
    }
		.original_btn a {
    padding: 5%;
    width: 100%;
    margin: 15% auto 0 0;
    box-sizing: border-box;
	}
	.original_comment .comic {
    width: 100%;
    margin: 12% auto 0;
}
    .original_comment {
        margin: 15% auto 0;
        padding: 10% 5%;
	}
	.original_comment .original_name {
            margin: 0 auto 8%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
		font-weight: bold;
        line-height: 1.4;
}
.original_comment .original_name p{
font-weight: bold;
}
	
/*--------------------
FOOTER
---------------------*/
footer{
padding: 0;
}
.billing {
    width: 100%;
	max-width: 450px;
	}
	
	
}

@media screen and (max-width: 500px) {
	
/*--------------------
TOP
---------------------*/
		.scroll{
overflow: hidden;
    display: flex;
    flex-direction: column;
     height: 60vh;
}
 .text{
padding: 0 15px 10px 0;
    overflow-y: auto;

}
 .text::-webkit-scrollbar {
  background-color: rgba(255, 255, 255, 0.3);
  width: 3px;
  height: 3px;
  border-radius: 20px;
}
 .text::-webkit-scrollbar-thumb {
  background-color: #55706d;
  opacity: 0.7;
  border-radius: 20px;
}

.LG_bnr_wrap{
        padding: 10% 5%;
}
	 .LG_bnr_wrap a{
	        flex-direction: column;
	}
	.LG_bnr {
        width: 90%;
        margin: 0 auto 5%;
    }
	    .LG_bnr_wrap .text {
        margin: 5% auto 0;
	
}
.ply_btn {
    text-align: right;
    text-align-last: right;
    margin: 15px auto 0;
    font-size: 3.5vw;
	}

}

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

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




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

}
	
	
	
	