@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
	font-family: "noto-sans", sans-serif;
  /* font-family: 'Noto Serif 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;
}
a {
  color: beige;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}
div.inner{
	width: 60%;
	margin: 0 auto;
	padding: 5%;
}
.midashi_title{
	color: #6a665f;
	font-weight: 500;
	font-size: 1.3rem;
	font-style: italic;
	margin-bottom: 5%;
	font-family: 'Noto Serif JP', sans-serif;
}


/*LOADING------------------------------------------------*/
.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 989;
  background-color: #fff;
}

/*COPY------------------------------------------------*/

.copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  text-align: center;
  z-index: 1000;
  color: #fff;
	overflow: hidden;
}
.copy img {
  width: 25%;
}

.copy::before, .copy::after{
	animation: copyanim 2.2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 50%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1001;
	animation-timing-function:linear;
}
.copy::after{
	animation-delay: 2.5s;
	right: 50%;
	left: 0;
}
@keyframes copyanim {
  100% {
    transform: translateY(100%);
  }
}

/*TRAILER------------------------------------------*/

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

.trailer.on{
    opacity: 1;
	min-height: 500px;
}


.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: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 999999999;
  opacity: 0;
  cursor: pointer;
}



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

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

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

.trailer .trailer_inner{
    position: absolute;
    top: calc(50%);
    left: 50%;
    transform: translate(-50%,-56%) scale(0.9,0.9);
      width: 80%;
    padding-bottom: 45%;
    height: 1;
    z-index: 999999998;
    transition-duration: 0.5s;
}

.trailer.on .trailer_inner{
    transform: translate(-50%,-56%) scale(1,1);
}


.trailer_tab{
    position: absolute;
    color: #fff;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: center;
	margin-top: 20px;
}

.trailer_tab li{
	display: flex;
	justify-content: center;
    width: 100%;
	margin-right: 10px;
	padding: 10px;
    border:solid 1px #fff;
	font-family: 'Noto Serif JP', sans-serif;
	font-style: italic;
    font-size: 1rem;
	font-weight: bold;
    text-align: center;
    background:#fff;
    color: #6a665f;
	
}
.trailer_tab li:last-child{
	margin-right: 0;
}

.trailer_tab li.f_act{
    background: #6a665f;
    color: #fff;
	cursor: pointer;
}

.trailer_tab li.f_act:hover{
    background: #6a665f;
}

#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%;
  height: 0;
  overflow: hidden;
	
}
.youtube_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

.fadeIn {
animation-name: fadeInAnime;
animation-duration:2s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-delay: 0.8s;
animation-direction:normal;
	animation-fill-mode: forwards;
}


@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.zoom {
animation-name: zoomAnime;
animation-duration:1.5s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-direction:normal;
	animation-fill-mode: forwards;
}

@keyframes zoomAnime {
   0% {
      transform: scale(1.1);
	   opacity: 0;
   }
   100% {
      transform: scale(1);
	   opacity: 1;
   }
}


/*MENU------------------------------------------*/
.menu {
        height: 20px;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    width: 65%;
    z-index: 779;
    cursor: pointer;
	
}
.menu_bg {
 
    width: 50px;
    height: 50px;
    position: fixed;
    top: 2vw;
    right: 2vw;
	z-index: 779;
	border-radius: 5px;
	background-color: rgba(255,255,255,0.7);
}
.menu__line {
  background: #6a665f;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}
.menu__line--center {
  top: 9px;
}
.menu__line--bottom {
  bottom: 0;
}
.menu__line--top.active {
  top: 8px;
  transform: rotate(45deg);
}
.menu__line--center.active {
  transform: scaleX(0);
}
.menu__line--bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}
/*gnav*/

.gnav {
  background-color: #fff;
  display: none;
  height: 100%;
  position: fixed;
	top: 0;
	bottom: 0;
	overflow: auto;
  width: 100%;
  z-index: 778;
	
}
.gnav__wrap {
  align-items: center;
  display: flex;
  justify-content: center;
	height: 100%;
	    min-height: 500px;
	flex-flow: column;
}
.gnav__menu__item {
  width: 100%;
  height: 50px;
  vertical-align: middle;
  line-height: 50px;
	text-align: center;
}
.gnav__menu__item:last-child {
  border: none;
}
.gnav__menu__item a {
  color: #6a665f;
  font-size: 16px;
	font-weight: bold;
  text-decoration: none;
  transition: .5s;
	font-style: italic;
	font-family: 'Noto Serif JP', sans-serif;
	
}
.gnav__menu__item a:hover {
	transition: .5s;
	opacity: 0.7;
	
}

.menu_logo{
	width: 350px;
	margin: 0 auto;
	padding-bottom: 30px;
}
/*humberger-menuここまで*/
	
/*nav---------------------------------------------*/

#nav_box{
	    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    z-index: 300;
    background-color: #c6bfb4;
    background-repeat: no-repeat;
    background-position: top center;

}

.nav_box_inner{
	padding: 0;
    width: auto;
    height: 55px;
    margin: 0px auto 0 auto;
    box-sizing: border-box;
    z-index: 300;
}
.nav_box_inner ul{
	display: flex;
	display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.nav_item{
	height: 55px;
    font-size: clamp(16px, 2vw, 18px);
    color: #3f3a39;
    border: 0;
    overflow: hidden;
    position: relative;
    transition: 0.7s;
    -webkit-transition: 0.7s;
}

.nav_item a{
	height: 55px;
	display: inline-block;
	padding-left: 25px;
    padding-right: 25px;
	color: #3f3a39;
	cursor: default;
	vertical-align: middle;
	line-height: 55px;
}
.nav_item a:hover{
	transition: 1s;
}
.nav_item_hover a{
	color: #3f3a39;
	cursor: pointer;
	transition: 1s;
	pointer-events: none;
	
}

.nav_item_hover a:hover{
	opacity: 0.7;
	transition: .7s;
}
	.gnav__menu__item i.fa-brands{
		font-size: 20px;
    color: #6a665f;
	}

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

section.top{
	position: relative;
	overflow: hidden;
}

section.top .inner{
	width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_left{
	width: 50%;
	position: relative;
}

.top_main{
	width: 100%;
	height: 100%;
	padding-bottom: calc(2458 / 2220 * 100%);
	opacity: 0;
	overflow: hidden;
}
.top_main::before {
	 content: '';
	display: block;
   width: 100%;
   height: 100%;
	background-image: url("../img/main_pc.jpg");
	
	background-repeat: no-repeat;
	    background-position: center;
	position: absolute;
	background-size: cover;
}

.top_copy{
	width: 9%;
    position: absolute;
    top: 5%;
    right: 6%;
	opacity: 0;
	z-index: 3;
}
.top_right{
	width: 50%;
    padding-right: 1.5vw;
	position: relative;
	opacity: 0;
	flex-grow: 1;
}
.titlelogo{
	width: 80%;
    margin: 0 auto 0;
	
  }
.top_billing{
	width: 55%;
    margin: 5% auto;
}
.top_date{
	width: 45%;
    margin: 0 auto;
}
ul.sns_wrap{
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 3% auto 0;
}

li.sns_item a{
	font-size: 2vw;
    color: #30333b;
	transition: .7s;
}
li.sns_item a:first-child{
	opacity: .7;
	transition: .7s;
}
li.sns_item a:first-child{
	margin: 0 20px 0 auto;
}

.cherryblossom_01{
	position: absolute;
    width: 9%;
    top: -25%;
    left: 0;
}
.cherryblossom_02{
	position: absolute;
    width: 7%;
    top: -15%;
    left: 25%;
}
.cherryblossom_03{
	position: absolute;
    width: 20%;
    top: 35%;
    left: 0;
}

/*MVTK＆BNR-------------------*/

.mvtkbnr{
	    width: 49%;
    text-align: left;
    /*position: absolute;
    bottom: 5%;
    left: 3%;*/
	opacity: 0;
}
.mvtkbnr a{
	transition: .7s;
}
.mvtkbnr a:hover{
	transition: .7s;
	opacity: .7;
}

.bnr_wrap{
	width: 25%;
    position: absolute;
    right: 2%;
    bottom: 5%;
    display: flex;
	justify-content: center;
	align-items: center;
    /* flex-flow: column; */
    opacity: 0;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}
.gamaroke{
	width: 49%;
	margin-right: 2%;
	text-align: right;
}
.gamaroke a{
	transition: .7s;

}
.gamaroke a:hover{
	transition: .7s;
	opacity: .7;
}
.gamaroke img{
	width: 100%;
    max-width: 250px;
}

/*intro---------------------------------------------*/
section.intro{
	background-image: url("../img/intro_bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
}
section.intro .inner{
	position: relative;
    z-index: 3;
}


.intro_lead_01{
	width: 80%;
	margin: 0 auto 20px;
}
.intro_lead_02{
	width: 60%;
    margin: 40px auto 20px;
}
.text{
	/*font-size: 16px;*/
	font-size: 1vw;
	text-align: center;
	text-align-last: center;
	    line-height: 1.7;
}

.intro_cherryblossom_01 {
       width: 17%;
    position: absolute;
    top: 10%;
    left: 7%;

}
.intro_cherryblossom_02 {
     width: 20%;
    position: absolute;
    right: 2%;
    bottom: 14%;
}

/*story---------------------------------------------*/

section.story{
	width: 100%;
	position: relative;
}
.story .inner{
	padding: 5% 0 ;
}
.story_lead {
    width: 50%;
    margin: 0 auto 20px;
}
.steal_img_01, .steal_img_02{
	position: absolute;
    width: 20%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}
.steal_img_02{
    left: inherit;
	right: 0;
}

/*cast---------------------------------------------*/

section.cast{
	background-image: url("../img/intro_bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
}

/*ul.cast_list.first_list{
	width: 74.75%;
}*/
ul.cast_list{
	    width: auto;
    margin: 0 auto 2%;
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
	
}
li.cast_item{
	width: 24.25%;
	margin: 0 1% 0 0;
}

li.cast_item:last-child{
	margin: 0;
}



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

.md-inner-wrap{
		overflow-y: scroll;
		max-height: 70vh;
	box-sizing: border-box;
    width: 100%;
	}
	.md-scroll{
		    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
	}
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  z-index: 9999;
	background-image: url("../img/intro_bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}
 
.md-contents{
  display: none;
  position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    z-index: 10000;
}
.md-inner-wrap::-webkit-scrollbar {
  background: #F1F1F1;
  width: 5px;
  height: 5px;
}
.md-inner-wrap::-webkit-scrollbar-thumb {
  background-color: #9d294e;
	
}
.md-inner {
   padding: 0px 5%;
    max-height: 85vh;
    display: flex;
    width: 60%;
    margin: 0 auto;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.md-xmark{
  position: absolute;
    top: 0px;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 9999;
    background-color: #9d294e;
    cursor: pointer;
	
}
 
.md-xmark span {
  position: absolute;
  left: 6px;
  width: 70%;
  height: 2px;
  background-color: #fff;
}
 
.md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(23px) rotate(-45deg);
}
 
 
.md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-25px) rotate(45deg);
}


/*modalここまで--------*/

.profile_img {
    width: 300px;
    margin: 0 auto 3%;
}
.cast_info{
	width: 100%;
}
.chara_name{
	font-size: 1.2rem;
    color: #30333b;
    margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	font-family: 'Noto Serif JP', sans-serif;
	line-height: 1;
	font-weight: 600;
	    letter-spacing: 0.05rem;
}

.cast_name{
	    font-size: 1.3rem;;
    color: #9d294e;
    margin: 40px auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	line-height: 1;
	font-weight: 600;
	    letter-spacing: 0.05rem;
}
.cast_name p{
	font-weight: 600;
}
.cast_name small{
	font-size: 1vw;
	font-weight: 600;
}
/*.text.profile{
	text-align: left;
	text-align-last: left;
}*/
.ruby {
        font-size: 60%;
    text-align: center;
   /* transform: translateY(-0.3rem);
	-webkit-transform: translateY(-0.3rem);*/
	    transform: translate(0, -0.3rem);
	    -webkit-transform: translate(0, -0.3rem);
	font-weight: 600;
}
.staff .ruby {
	    transform: translate(-7%, -0.3rem);
	    -webkit-transform: translate(-7%, -0.3rem);

}
/*.cast .test{
	    font-size: 0.96vw;
}*/
.text.profile{
	text-align: left;
    text-align-last: left;
}

.cast .intro_cherryblossom_01 {
    top: 16%;
}
.cast .intro_cherryblossom_02 {
    width: 20%;
    position: absolute;
    right: 4%;
    bottom: inherit;
    top: 20%;
}



/*staff---------------------------------------------*/

.staff_name{
	width: auto;
	margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.staff_name .chara_name{
	margin: 0 0 0 auto;
}
.staff_name .cast_name{
	    margin: 0 auto 0 20px;
	    align-items: flex-start;
}
.staff .text{
	    text-align: left;
    text-align-last: left;
}

/*footer---------------------------------------------*/

footer{
	position: relative;
	background-image: url("../img/billing_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
}
footer .inner{
	padding: 5% 0;
}
.billing{
	    width: 60%;
    margin: 0 auto;
}
.billing img{
	    filter: drop-shadow(0px 0px 15px #AD6F60);
}
.cherryblossom{
	    width: 22%;
    position: absolute;
    top: -10%;
    left: 5%;
}
/*.mvtk_wrap{
	margin: 10% auto 0;
}*/
#mvtk-widgets-container{
	margin: 5% auto 0;
}


/*nav---------------------------------------------*/

#nav_box{
    width: 100%;
    height: 50px;
    z-index: 300;
    background-color: rgba(255,255,255,0.6);
    background-repeat: no-repeat;
    background-position: top center;
    margin: 0 auto;
}

.nav_box_inner{
	padding: 0;
    width: auto;
    height: 50px;
    margin: 0px auto 0 auto;
    box-sizing: border-box;
    z-index: 300;
}
.nav_box_inner ul{
	display: flex;
	display: -webkit-flex;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
    padding-right: 50px;
	height: 50px;
    align-items: center;
	width: 100%;
	max-width: 100vw;
	box-sizing: border-box;
}

.nav_item{
    font-family: 'Noto Serif JP', sans-serif;
    font-size: clamp(16px, 1vw, 18px);
    font-weight: 500;
    color: #6a665f;
    border: 0;
    overflow: hidden;
    position: relative;
    transition: 0.7s;
    -webkit-transition: 0.7s;
}

.nav_item a{
	width: auto;
    height: auto;
    line-height: normal;
	vertical-align: middle;
	display: inline-block;
	padding-left: 15px;
    padding-right: 15px;
	color: #6a665f;
	cursor: pointer;
	transform: translate(0, 1px);
	font-style: italic;
}

.nav_item.sns.twitter a{
	padding-right: 0;
	transform: translate(0, 0px);
}
.nav_item.sns.twitter a i{
	font-size: 25px;
    line-height: 1;
    vertical-align: middle;
}
.nav_item a:hover{
	opacity: .7;
	transition: .7s;
}
.nav_item_hover a{
	color: gray;
	cursor: default;
	transition: .7s;
}

.nav_item_hover a:hover{
	opacity: .7;
	transition: .7s;
}
/*gnav*/


.gnav {
  display: none;
}
.social__icon{
	display: flex;
	justify-content: center;
	margin-top: 5%;
}
.social__icon li{
	width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social__icon .gnav__menu__item a {
  color: #3f3a39;
    background-color: #fff;
    width: 40px;
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 20px;
	
}
.social__icon .gnav__menu__item a:hover{
	opacity: 0.7;
    transition: .5s;
    cursor: pointer;
}
.social__icon .gnav__menu__item:last-child a{
	margin-right: 0;
}







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

	div.inner {
    width: 80%;
    padding: 15% 0;
}
	.midashi_title {
    margin-bottom: 10%;
	}
	
	.copy img {
    width: 30%;
}
/*TRAILER--------------------------------------------*/
	.trailer_tab {
    margin-top: 10px;
	}
	.trailer_tab li {
    padding: 5px;
	}
	.trailer .trailer_inner{
    
      width: 90%;
    padding-bottom: 51%;

}.trailer.on .trailer_inner {
    transform: translate(-50%, -70%) scale(1, 1);
}
	
/*TOP---------------------------------------------------*/
	section.top .inner{
		width: 100%;
    	padding: 0;
		flex-flow: column;
	}
	.top_left, .top_right {
    width: 100%;
}
	.top_main.top{
	padding-bottom: calc(676 / 1200 * 100%);
}
.top_main.top::before {
	background-image: url("../img/main_sp_top.jpg");
}
	
	.top_main.btm{
	padding-bottom: calc(677 / 1200 * 100%);
}
.top_main.btm::before {
	background-image: url("../img/main_sp_btm.jpg");
}
	
	.top_right{
		       padding: 5% 0 3%;
	}
	.top_billing {
    width: 55%;
    margin: 3% auto;
}
	ul.sns_wrap {
    margin: 4% auto 0;
}
	li.sns_item a:first-child {
    margin: 0 10px auto;
}
	li.sns_item a {
    font-size: 6vw;
	}
	.cherryblossom_01 {
    top: -2%;
	}
	.cherryblossom_02 {
    top: -2%;

	}
	.cherryblossom_03 {
    left: 5%;
	}
	.top_copy {
    width: 9%;
    position: absolute;
    top: 16%;
	}
	
/*MVTK＆BNR--------------*/	
	
	.bnr_wrap{
	    position: initial;
    width: 80%;
    margin: 2% auto 5%;
    display: flex;
}
	
	
/*INTRO---------------------------------------------------*/
	section.intro .inner{
		    padding: 10% 0;
	}
	.intro_lead_01 {
    width: 65%;
	margin: 0 auto 5%;
	}
	
		.intro_lead_02 {
    width: 55%;
	margin: 10% auto 5%;
	}
	.intro_cherryblossom_01 {
    width: 40%;
		position: absolute;
    top: 9%;
    left: 4%;
	}
	.intro_cherryblossom_02 {
        width: 37%;
    top: inherit;
    bottom: 5%;
	}
	.intro .text, .story .text{
		text-align: left;
		text-align-last: left;
	}
	
/*STORY---------------------------------------------------*/
	.story{
		overflow: hidden;
	}
	.story .inner{
		   padding: 10% 0 0;
	}
	.story_lead {
    width: 65%;
        margin: 0 auto 5%;
}
	
	.steal_img_wrap{
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% 0 15%;
	}
	.steal_img_01 {
		    position: inherit;
    margin: 5% 0 0 -5%;
    width: 25%;
    transform: inherit;
    /*top: 8%;
    left: inherit;
    right: 1%;*/
}
	.steal_img_02 {
		position: inherit;
    width: 40%;
    /*top: 2%;
    left: 0;*/
    transform: inherit;
}
	
	.steal_img_03 {
	position: inherit;
    width: 50%;
    top: inherit;
    left: inherit;
   /* right: 0;
    bottom: 0%;*/
}
		.steal_img_04 {
	position: inherit;
    width: 27%;
    margin: -8% -10% 0 -5%;
    /*left: 4%;
    bottom: 1%;*/
}
	
/*CAST---------------------------------------------------*/
	.cast .inner{
		 padding: 10% 0;
	}
	ul.cast_list {
		    width: 90%;
    flex-wrap: wrap;
		margin: 0 auto;
		    justify-content: space-around;
	}
	li.cast_item {
    width: 49%;
    margin: 0 0 1% 0;
}
	
	li.cast_item:last-child {
     margin: 0 0 1% 0;
}
	
	
/*modal-------------------*/
	.md-inner {
    padding: 0;
    width: 85%;
	}
	.md-scroll {
    width: 70%;
    margin: 0 auto;
	}
	.profile_img {
    width: 70%;
    margin: 0 auto 10%;
}
	
	/*.chara_name {
    font-size: 6vw;
	}
	.cast_name {
    font-size: 5vw;
}*/
	.cast_name small {
    font-size: 1rem;
    display: flex;
    line-height: 1;
    margin: 0.3rem 0 0 0;
	}
	.cast_profile .text{
		text-align: left;
		text-align-last: left;
	}	
	
	.cast .intro_cherryblossom_01 {
		width: 60%;
		    top: 2%;
    left: -1%;
	}
	.cast .intro_cherryblossom_02 {
		width: 60%;
    top: inherit;
    bottom: 1%;
    right: -5%;
	}
	
/*STAFF----------------------------------------------*/	.staff .inner{
		 padding: 10% 0;
	}
	
	.staff_name {
    flex-flow: column;
		
	}
	.staff_name .chara_name {
    margin: 0 auto 30px;
}
	.staff_name .cast_name{
		align-items: center;
		    margin: 0 auto;
    width: 100%;

	}
.staff .ruby {
    transform: translate(0, -0.3rem);
    -webkit-transform: translate(0, -0.3rem);
	}
	
/*FOOTER---------------------------------------------------*/
	
	
	footer{
		    background-size: 260%;
	}
	footer .inner {
    width: 100%;
    padding: 10% 0;
}
	.billing {
    width: 60%;
}
	
	.billing img {
    filter: drop-shadow(0px 0px 2px #AA5137);
	}
	
	
		
	.text{
	font-size: 16px;
}
	
}

@media screen and (max-width: 500px) {
	
	.copy img {
    width: 50%;
}
	
	
/*INTRO---------------------------------------------------*/
	section.intro .inner{
		    padding: 15% 0;
	}
	.intro_lead_01 {
    width: 90%;
	}
	.intro_lead_02 {
    width: 85%;
	}
	
/*STORY---------------------------------------------------*/
	.story .inner{
		   padding: 15% 0 0;
	}
	.story_lead {
    width: 90%;
	}
	
/*CAST---------------------------------------------------*/	
	.cast .inner{
		 padding: 15% 0;
	}
ul.cast_list {
    flex-flow: column;
	}
	li.cast_item {
    width: 100%;
    margin: 0 0 3% 0;
}

	li.cast_item:last-child {
    margin: 0 0 3% 0;
}
	.profile_img {
    width: 90%;
	}
	.md-scroll {
    width: 90%;
	}
	
/*STAFF---------------------------------------------------*/		.staff .inner{
		 padding: 15% 0;
	}
	.staff_name .cast_name small {
    display: inline-block;
		font-size: 3.3vw;
}
	
/*FOTTER---------------------------------------------------*/	footer .inner {
    padding: 15% 0;
}
	.billing {
		width: 80%;
	}
	
	
}



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

	.gnav__wrap {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    height: 100%;
    min-height: inherit;
    flex-flow: column;
    padding-top: 5%;
}

}*/
/*	@media (orientation: landscape){

	.gnav__wrap {
    justify-content: flex-start;
		padding:  5% 0;
}

}*/
	
	
	