@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.ip {
  display: none !important;
}
.sp {
  display: none !important;
}
/* タブレットで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 960px) {
  .pc {
    display: none!important;
  }
  .ip {
  display: block !important;
}
  .sp {
    display: none !important;
  }
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 500px) {
  .pc {
    display: none !important;
  }
  .ip {
  display: none !important;
}
  .sp {
    display: block !important;
  }
}
body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight: 500;
  line-height: 1.5;
  overflow-y: scroll;
  min-height: 100vh;
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  height: auto;
}
.wrapper {
  position: relative;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  justify-content: space-between;
}
/*LOADING------------------------------------------------*/
.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #fff;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  text-align: center;
  z-index: 1000;
}
.logo img {
  width: 50%;
  margin-bottom: 20px;
}
.loading-bar {
  background: #ccc;
  height: 3px;
  position: relative;
  margin-top: 5%;
}
.loading-bar::before {
  -webkit-animation: width-0to100 3s forwards ease-out;
  -moz-animation: width-0to100 3s forwards ease-out;
  -o-animation: width-0to100 3s forwards ease-out;
  -ms-animation: width-0to100 3s forwards ease-out;
  animation: width-0to100 3s forwards ease-out;
  background: #e9acaf;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
}
@keyframes width-0to100 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.pulse-container {
  width: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 0;
}
.pulse-bubble {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #D6D7C9;
}
.pulse-bubble-1 {
  animation: pulse .4s ease 0s infinite alternate;
}
.pulse-bubble-2 {
  animation: pulse .4s ease .2s infinite alternate;
}
.pulse-bubble-3 {
  animation: pulse .4s ease .4s infinite alternate;
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: .25;
    transform: scale(.75);
  }
}

/*--------------------------
TRAILER（POP）
--------------------------*/

.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    display:none;
    transition-duration: 0.5s;
    
}

.trailer.on{
    opacity: 1;
}


.trailer_overlay{
    position: fixed;
    top: 0;
    width: 100%;
   height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 1;
    z-index: 999999997;
    transition-duration: 1s;
    
}

.close_btn{
         position: fixed;
    top: 5%;
    right: 3%;
    width: 45px;
    height: 45px;
    z-index: 999999999;
    opacity: 0;
    cursor: pointer;
}
.close_btn_inner{
position: relative;
width: 100%;
height: 100%;
}


.trailer.on .close_btn{
     opacity: 1;
}
.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);
}

.close_btn:hover{
    opacity: 0.5 !important;
}

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

.trailer .trailer_inner{
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 67%;
    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{
      display: flex;
    justify-content: center;
    width: calc(100% / 2 - 3px);
    padding: 10px;
    font-weight: bold;
    text-align: center;
        background: #fff;
	color: #000;
    margin-right: 0;
    font-size: 1rem;
    margin: 0 6px 0 0;
    flex-wrap: wrap;
    box-sizing: border-box;
	border: 1px solid #fff; 
}
.trailer_tab li:nth-child(2n){
	margin-right: 0;
}
.trailer_tab li.f_act{
	cursor: pointer;
	
	background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.trailer_tab li.f_act:hover{
   
}
#youtube1,#youtube2{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    transition-duration: 1s;
    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%;
}

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


.menu_bg{
     width: 45px;
    height: 45px;
    position: fixed;
    top: 5%;
    right: 3%;
    z-index: 779;
    background-color: #E999A5;
    border-radius: 50px;
	opacity: 0;
}
.menu {
      height: 15px;
    position: absolute;
    right: 50%;
    top: 50%;
    width: 25px;
    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);
}

ul.sns_item {
  position: fixed;
top: 5%;
 right: 3%;
  display: flex;
  opacity: 0;
  z-index: 5;
      transform: translateX(-60px);
}

ul.sns_item li:first-child {
  margin: 0 15px 0 0;
}
.sns_item li a {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #fff;
  transition: .7s;
  border-radius: 30px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}
.sns_item li a img {
  width: 55%;
  margin: 0 auto;
}
.sns_item li a:hover {
  opacity: .7;
  transition: .7s;
}

/*gnav*/

.gnav {
background:  linear-gradient(0deg, rgba(216, 138, 142, 1), rgba(233, 172, 175, 1)) ;
	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::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 779;
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
  filter: contrast(100%) brightness(100%);
  background:  url("../img/noise.svg"), linear-gradient(0deg, rgba(216,138,142,1), rgba(233,172,175,1));
    opacity: 0.2;
}

    .gnav__wrap {
        flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
	        height: 100%;
	min-height: inherit;
	    position: relative;
    z-index: 800;
}
.gnav__menu__item {
        width: 100%;
        height: 6vh;
        vertical-align: middle;
        line-height: 6vh;
		    margin: 10% auto 0;
}
.gnav__menu__item:last-child {
  border: none;
}
.gnav__menu__item a {
            color: #fff;
        font-size: clamp(14px, 1vw, 16px);
        font-weight: 700;
        text-decoration: none;
        transition: .5s;
          cursor: pointer;
        padding: 0 20px;
        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;
	}
	.gnav__menu__item a img {
	    height: 4vh;
		    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
	}
	.gnav ul.sns_item {
    position: inherit;
    justify-content: center;
	opacity: 1;
	    margin: 10% auto 0;
		transform: inherit;
}
	
/*humberger-menuここまで*/


/*TOP---------------------------------------------*/
section.top {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
      padding: 0;
}
section.top .inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: auto;
}

.top_main{
width: 100%;
opacity: 0;
}
.top_copy{
    position: absolute;
    width: 3.7%;
    top: 15.6%;
    left: 51.5%;
	opacity: 0;
}


.sec_btm {
  width: 100%;
   background:  linear-gradient(0deg, rgba(216, 138, 142, 1), rgba(233, 172, 175, 1)) ;
  position: relative;
  z-index: 1;
  padding: 0;
}

.sec_btm::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
  filter: contrast(100%) brightness(100%);
  background:  url("../img/noise.svg"), linear-gradient(0deg, rgba(216,138,142,1), rgba(233,172,175,1));
    opacity: 0.2;
}

.sec_btm .inner {
  width: 65%;
  margin: 0 auto;
  padding: 3% 0 4%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.copy {
  width: 100%;
  margin: 0 auto 3%;
}
.billing {
  width: 60%;
}
.mvtk_bnr{
    position: absolute;
    bottom: 6%;
    right: 2.5vw;
    width: 13%;
    opacity: 0;
}
.mvtk_bnr a{
   transition: .7s;
}
.mvtk_bnr a:hover{
   transition: .7s;
   opacity: .7;
}
.mvtk_wrap{
width: 100%;
    padding: 2%;
    /* overflow: hidden; */
    box-sizing: border-box;
}
#mvtk-widgets-container{
margin: 0 auto;
}

.bnr_wrap{
    width: 19%;
    position: absolute;
    top: 46%;
    left: 3%;
	opacity: 0;
}
.cmt_bnr, .butai_bnr{
    width: 100%;
    margin: 3% auto 0;
}
.cmt_bnr a, .butai_bnr a{
    transition: .7s;
	display: block;
}
.cmt_bnr a:hover , .butai_bnr a:hover{
    transition: .7s;
	opacity: .7;
}

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


.md-scroll{
    width: 100%;
    padding: 2% 0;
    margin: 0 auto;
    height: auto;
    display: flex;
    justify-content: center;
	        align-items: flex-start;
			position: relative;
	}

		.md-scroll_inner{
margin: 0 auto;
    position: absolute;
    overflow: auto;
    width: 70%;
    height: 100%;
    box-sizing: border-box;
    bottom: 0;
    padding: 2% 0;
	 -ms-overflow-style: none;
	   scrollbar-width: none;
	}
.md-scroll_inner::-webkit-scrollbar{
  display: none;
}
.md-scroll_inner::-webkit-scrollbar{
  display: none;
}
	.md-scroll img{
	width: 100%;
	}
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  z-index: 800;
}
 
.md-contents{
  display: none;
  position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 801;
	width: 100%;
    height: 100vh;
}

.md-inner {
width: 100%;
    height: 100%;
    min-height: 500px;
    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;
}
.md-inner-wrap{
    width: 100%;
	height: 100%;
    padding: 0;
    box-sizing: border-box;
	overflow: scroll;
	position: relative;
	line-height: 1;
	display: flex;
	}

.md-inner-wrap::-webkit-scrollbar{
  display: none;
}
.ci-xmark{
	width: 40px;
	height: 40px;
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	background-color: #fff100;
}
.ci-xmark span {
position: absolute;
	z-index: 3;
	  top: 50%;
    left: 50%;
    width: 60%;
    height: 1px;
   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);
}

.md-xmark{
    position: fixed;
    top: 4.7%;
    right: 2.8%;
    width: 45px;
    height: 45px;
    z-index: 140;
    cursor: pointer;
    background-color: #fff;
    border-radius: 40px;
}
.md-xmark span {
position: absolute;
	  top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
   transform-origin: center;
    background-color: #222118;
}
.md-xmark span:nth-of-type(1) {

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

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

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



/*共通--------------------------*/

section{
width: 100%;
margin: 0 auto;
padding: 5% 0;
position: relative;

}
.inner{
width: 70%;
margin: 0 auto;
    position: relative;
    z-index: 3;
}
h1.midashi_title{
text-align: left;
    margin: 0 auto 5%;
}
h1.midashi_title img{
    height: 30px;
}
.text{
font-size: 16px;
font-weight: bold;
    text-align: justify;
    text-align-last: left;
    margin: 0 auto 2%;
	line-height: 1.8;
	    word-break: break-all;
}

.trailer_wrap{
    width: 60%;
    margin: 5% 0 0;
}
ul.trailer_list{
      width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  li.trailer_item{
  width: 100%;
  }  
  .trailer_item_midashi{
      font-size: 18px;
    color: #fff;
    margin: 5% auto 0;
  }

.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	border: 1px solid #fff;
	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%;
    /*background-image: url(../img/trailer_btn.png);
    background-repeat: no-repeat;
    background-size: 10%;
    background-position: center;*/
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

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

/*AWARD--------------------------*/

.award{
width: 100%;
background-image: url("../img/award_bg.jpg");
background-position: top;
background-repeat: no-repeat;
background-size: cover;
    padding: 0;
}
.award .inner{
width: 100%;
}
.award_img {
    width: 70%;
    margin: 0 auto;
    padding: 21% 0 5%;
}



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

section.intro{
position: relative;
z-index: 1;
background: linear-gradient(180deg, rgba(235, 243, 218, 1), rgba(212, 234, 217, 1));
    padding: 5% 0 0;
}
section.intro::before{
content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
    filter: contrast(100%) brightness(100%);
    background: url(../img/noise.svg), linear-gradient(0deg, rgba(237, 245, 223, 1), rgba(211, 234, 216, 1));
    opacity: 0.4;
}
.intro .inner{
z-index: 5;
    padding: 0 0 10%;
}
.intro_lead{
    width: 50%;
    margin: 0 0 3% 0;
}
.intro_bg{
width: 100%;
height: 80vh;
background-image: url("../img/intro_bg.webp");
background-repeat: no-repeat;
background-position: top;
background-size: cover;
margin: -15% auto 0;
    position: relative;
    z-index: 4;
	    mix-blend-mode: multiply;
}

ul.intro_imgs_list{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	       
}
li.intro_imgs_item {
text-align: center;
 height: auto;

}
li.intro_imgs_item img{
display: block;
}

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

section.cast{
position: relative;
z-index: 1;
background: linear-gradient(180deg, rgba(237, 245, 223, 1), rgba(211, 234, 216, 1));
    padding: 5% 0;
}
section.cast::before{
content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
    filter: contrast(100%) brightness(100%);
    background: url(../img/noise.svg), linear-gradient(0deg, rgba(237, 245, 223, 1), rgba(211, 234, 216, 1));
    opacity: 0.4;
}
ul.cast_list{
width: 100%;
display: flex;
justify-content: center;

}
li.cast_list_item{
width: 48%;
margin: 0 4% 0 0;
    display: flex;
    flex-direction: column;
	justify-content: flex-start;
}
li.cast_list_item:nth-child(2n){
width: 48%;
margin: 0 auto;
}

.cast_name_eg{
text-align: left;
     margin: 0 0 3%;
}
.cast_name_eg img{
    height: 35px;
}

.cast_inner{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
	margin: 0 auto 5%;
}
.cast_name_jp{
    width: 45%;
    margin: 0 5% 0 0;
    text-align: left;
    font-size: clamp(16px, 1vw, 20px);
    font-weight: bold;
}

.cast_img{
width: 50%;
}
li.cast_list_item .text{
margin: 0 auto 10%;
 flex-grow:1;
}


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

section.staff{
position: relative;
    background-image: url(../img/staff_bg.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 5% 0 45%;
}

.staff li.cast_list_item:last-child .cast_name_eg{
        margin: 0;
    margin-bottom: calc(3% - 10px);

}
.staff li.cast_list_item:last-child .cast_name_eg img{
height: 45px;
}
.staff  .cast_name_jp {
    width: 45%;
	}
.staff  .cast_img {
    width: 50%;
}
.cast_name_jp span{
    font-size: clamp(14px, 1vw, 16px);
    font-weight: bold;
}


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

.footer_imgs{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.footer_imgs li{
text-align: center;
}
.footer_imgs li img{
display: block;
}
.footer_bg{
width: 100%;
background-image: url("../img/footer_bg.webp");
background-position: top;
background-size: cover;
background-repeat: no-repeat;

}
.footer_bg_inner{
    width: 30%;
    padding: 25% 0 5%;
    margin: 0 auto;

}

.footer_date{
    width: 90%;
    margin: 5% auto 0;
}


/*animation--------------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 2s;
}
.main_bg {
  filter: blur(10px);
  position: relative;
  z-index: -1;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  /*animation-delay: 0.5s;*/
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeOut {
  animation-name: fadeOutAnime;
  animation-duration: 3s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  /*animation-delay: 0.5s;*/
  animation-fill-mode: forwards;
}
@keyframes fadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*アニメーション------*/

.fadeUp {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.fadeUp.is-show{
  opacity: 1;
  visibility: visible;
}


.slideInY{
  animation-name: slideInAnimeY;
animation-duration:3s;
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);
  }
}


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

.inner{
width: 80%;
}

}

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

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

  .logo {
    top: 47%;
    padding: 0;
  }
  .logo img {
    width: 100%;
  }
  
 /*TRAILER------------------------------------------*/ 
  .trailer .trailer_inner {
    width: 90%;
	    transform: translate(-50%, -60%) scale(1, 1);
	}
  
  /*MENU------------------------------------------*/
  
  .menu_bg {
    top: 3%;
	}
  .gnav ul.sns_item {
        transform: none;
		}
		.gnav__menu__item a img {
    height: 3vh;
}
.gnav__menu__item {
    height: 5vh;
    line-height: 5vh;
}
.gnav ul.sns_item {
    margin: 15% auto 0;
}

  
  /*TOP------------------------------------------*/
  
  section.top {
    background-image: url("../img/bg_sp.jpg");
  }
.sec_btm .inner {
    width: 80%;
    margin: 0 auto;
    padding: 4% 0 6%;
	}
  ul.sns_item {
        position: absolute;
        top: inherit;
                bottom: 4.5%;
        left: 50%;
        transform: translate(-50%, 0);
        display: flex;
        justify-content: center;
        align-items: flex-end;
  }
 
      .sns_item li a {
        width: 50px;
        height: 50px;
    }
  .top_copy {
    width: 7.6%;
    top: 16.25%;
    left: 53.2%;
	} 
	.trailer_wrap {
    width: 100%;
    margin: 10% 0 0;
}
.mvtk_wrap {
    padding: 5%;
    line-height: 1;
	}
	.mvtk_bnr {
        position: inherit;
        bottom: inherit;
        right: inherit;
        width: 100%;
        margin: 0 auto 7%;
}
	
	.bnr_wrap{
    width: 50%;
    position: inherit;
    top: inherit;
    left: inherit;
	margin: 0 auto 5%;
}
.cmt_bnr, .butai_bnr {
    margin: 1% auto 0;
}
.md-scroll {
               width: 100%;
        padding: 0;
        margin: 0 auto;
        height: auto;
        display: flex;
		position: relative;

	}
.md-scroll_inner {
    width: 100%;
	}


.md-scroll img{
min-width: inherit;
width: 100%;
}
.md-xmark {
    top: 3%;
	}
	

/*共通------------------------------------------*/

    h1.midashi_title {
        margin: 0 auto 8%;
    }
h1.midashi_title img {
    height: 25px;
}
.inner {
    width: 80%;
	}

/*AWARD------------------------------------------*/	

    .award_img {
        width: 90%;
        margin: 0 auto;
        padding: 30% 0 10%;
    }
	
	/*INTRO------------------------------------------*/
	
    section.intro {
        padding: 15% 0 0;
    }
	.intro .inner {
    padding: 0 0 20%;
}
    .intro_lead {
        width: 78%;
        margin: 0 0 10% 0;
        padding: 5% 0 0;
    }
	
	.intro_bg {
    height: 30vh;
    margin: -20% auto 0;
}
ul.intro_imgs_list {
    flex-wrap: wrap;
}
li.intro_imgs_item {
width: 50%;
text-align: center;

}

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

section.cast {
    padding: 15% 0;
}
ul.cast_list {
    flex-wrap: wrap;
	}
	li.cast_list_item {
    width: 100%;
    margin: 0 auto 15%;
	}
	li.cast_list_item:nth-child(2n) {
    width: 100%;
	}
	.cast_name_eg img {
    height: 25px;
}
	.cast_inner {
    flex-direction: column;
	    margin: 0 auto 10%;
	}
	.cast_name_jp {
    width: 100%;
    margin: 0 auto 5%;
	}
	
	.cast_img {
    width: 80%;
    margin: 0 0 0 auto;
}

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

section.staff{
 background: rgb(250,253,255);
background: #e5eaf3;
 padding: 15% 0;
}
.staff .inner{
position: relative;
z-index: 3;
}
.staff_bg{
 width: 100%;
        height: 45vh;
           background: linear-gradient(to bottom, #e5eaf3 0%, transparent 20%, transparent 100%), url(../img/staff_bg.webp);
        background-position: center bottom 10%;
        background-repeat: no-repeat;
        background-size: 200%;
        margin: -40% 0 0 0;
        position: relative;
        z-index: 2;
}
.staff .cast_name_jp {
           width: 100%;
        line-height: 1.3;
}	
.staff .cast_img {
    width: 70%;
}
.staff .cast_name_eg img {
        height: 50px;
    }
	.staff li.cast_list_item:last-child .cast_name_eg {
    margin: 0 0 3%;
}
.staff li.cast_list_item:last-child .cast_name_eg img {
    height: 65px;
}

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

ul.footer_imgs {
	flex-wrap: wrap;
}
ul.footer_imgs li{
	width: 50%;
}
ul.footer_imgs li:last-child{
width: 100%;
        height: auto;
        overflow: hidden;
        align-items: center;
        display: flex;
}


	.footer_bg_inner {
    width: 60%;
    padding: 60% 0 15%;
    margin: 0 auto;
	}
	
	

}


@media screen and (max-width: 500px) {
  .logo {
    top: 47%;
    padding: 0;
  }
  .logo img {
    width: 100%;
  }
  
  /*TOP------------------------------------------*/
  
   .sns_item li a {
    width: 40px;
    height: 40px;
  }
  
    .sec_btm {
    width: 100%;
    height: auto;
    min-height: 20vh;
    box-sizing: border-box;
    padding: 10% 0 12%;
  }
  .sec_btm .inner {
    width: 85%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
  }

  .copy {
    margin: 0 auto 8%;
  }
  .billing {
    width: 100%;
  }
  .bnr_wrap{
	width: 100%;
	}
			.md-scroll::before {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-image: url(../img/cmd_comment_bg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
        z-index: -1;
	}
			.md-scroll_inner{
		width: 100%;
	height: 75%;
        padding-bottom: 10%;
		}
	
	
  
}
@media screen and (max-width: 300px) {}
@media (orientation: landscape) and (max-width: 960px) {
  /*デバイスが横向き、画面の横幅が 767px 以下の場合の記述*/
}