@charset "UTF-8";
/* CSS Document */

html{
	height: -webkit-fill-available;
  -webkit-text-size-adjust: 100%;

}



body{
	color:#655542;
	font-size: 100%;
	margin:0;
	padding:0;
	text-align: center;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	/* mobile viewport bug fix */
	 min-height: -webkit-fill-available;
}


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

}
}
	
#header{
height: 80px;
display: none;
}

/*========= ハンバーガーメニューナビゲーションPC ===============*/
@media screen and (min-width:768px){

#g-nav{
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position: fixed;
	z-index: 999;
	/*ナビのスタート位置と形状*/
	top: -0%;
	left: -120%;
	width: 40%;
	height: 100vh;/*ナビの高さ*/
	background: #EAE4D1;
	/*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 0%;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
	position: absolute;
    z-index: 999;
    top:50%;
    left:20%;
    transform: translate(-50%,-50%);
	text-align: center;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    padding-left: 0px;
}

/*リストのレイアウト設定*/

#g-nav li{
width: 100%;
    list-style: none;
}

#g-nav li a{
	font-size: 1.5em;
    color: #333;
    text-decoration: none;
    display:  inline-block;
    text-transform: uppercase;
    font-weight: bold;
	line-height: 3em;
}



/*========= ハンバーガーメニューボタンPC ===============*/
.openbtn1{
	position:fixed;
    z-index: 9996;/*ボタンを最前面に*/
	top:20px;
	left: 20px;
	cursor: pointer;
    width: 50px;
    height:50px;
	background-color: #9A1117;
	border-radius: 5px;
}
	
/*×に変化*/	
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: white;
  	width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
	top:15px;	
}

.openbtn1 span:nth-of-type(2) {
	top:23px;
}

.openbtn1 span:nth-of-type(3) {
	top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}
}

/*========= ハンバーガーメニューボタンスマホ ===============*/
@media screen and (max-width:767.98px){
#g-nav{
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position: fixed;
	z-index: 999;
	/*ナビのスタート位置と形状*/
	top: -0%;
	left: -120%;
	width: 100%;
	height: 100%;/*ナビの高さ*/
	background: #EAE4D1;
	/*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 0%;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100%;/*表示する高さ*/
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
	position: absolute;
    width: 100%;
    height: 100%;/*表示する高さ*/
	z-index: 999;
    top:55%;
    left:50%;
    transform: translate(-50%,-50%);
	text-align: center;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    padding-left: 0px;
	padding-top: 15%;
}

/*リストのレイアウト設定*/

#g-nav li{
width: 100%;
    list-style: none;
}

#g-nav li a{
	font-size: 1.5em;
    color: #333;
    text-decoration: none;
    display:  inline-block;
    text-transform: uppercase;
    font-weight: bold;
	line-height: 2.3em;
}
.openbtn1{
	position:fixed;
    z-index: 9998;/*ボタンを最前面に*/
	bottom:50px;
	right: 20px;
	cursor: pointer;
    width: 50px;
    height:50px;
	background-color: #9A1117;
	border-radius: 5px;
}
	
/*×に変化*/	
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: white;
  	width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
	top:15px;	
}

.openbtn1 span:nth-of-type(2) {
	top:23px;
}

.openbtn1 span:nth-of-type(3) {
	top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}

}

/*========= トップへ戻るボタン ===============*/

/*
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.5em;
  line-height: 1;
  z-index: 99;
}

#page-top a {
	text-decoration: none;
	background-color: #9A1117;
	color: #fff;
	width: 40px;
	padding: 10px 3px;
	text-align: center;
	display: block;
	border-radius: 90px;
	opacity: 0.9;
	transition: all .3s ease;
}

#page-top a:hover {
	text-decoration: none;
	opacity: .5;
}
*/








/*========= 全体枠 ===============*/

.wrapper {
	margin:0;
	padding:auto;
}


/*各コーナー枠*/

.container{
	width:auto;
	clear: both;
	margin: 0 auto;
}



/*メニュー部分*/

.top_menu{	
	z-index: 100;
	align-items: center;
	height: auto;
	margin: 0 auto;
}

.top_menu_inner{	
	margin: 0 auto ;
	width: 1000px;
	height: auto;
	z-index: 100;
}

.top_menu ul {
	width: 980px;
	margin: 30px auto 30px;
	box-sizing: content-box;
	font-size: 1em;
	padding-left: 0;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	line-height: 2em;
	}


.top_menu li {
	margin: 0 auto;
	position: center;
	list-style: none;
	padding: 5px 0;
}



.top_menu a{
	text-align: center;
	color: black;
	text-decoration: none;
	padding:0 15px;
	height: 100%;
}

.top_menu a span{
	font-size: 11px;
	color: dimgray;
}



.top_menu a:hover {
	color: palegoldenrod;
}


.top_insta {
	font-size: 90%;
	padding-right: 0px;
	margin-left: 0;
	padding-left: 0;
}

.lang{
	font-size: 1em;
	color :white;
	padding:0 50px 0 0;
	vertical-align: middle;
	position: absolute;
	top:10px;
	left:20px;
}

.lang a {
	color :white;
	border-right:none;
	padding:0;
	text-decoration: none;
}

.lang i {
	margin-right:10px;
}

.lang_off{
		color :gray;

}

/*メニュースマホ用*/
@media screen and (max-width:767.98px){
.top_menu{	
	z-index: 100;
	display:block;
	align-items: center;
	position: absolute;
	text-align: left;
}


	
.top_menu li{	
display: none;
}

.top_menu_inner{	
	width: auto;
	height: auto;
	z-index: 100;
	justify-content:flex-start;
	align-items: center;
	position:relative;
}
	


.lang{
font-size: 0.8em;
color :white;
padding:0px;
	text-align: left;

}

.lang a {
text-shadow: 0px 0px 5px black;
line-height: 2.5em;
	border-right:none;
	padding:0;
}

.lang i {
	margin-right:3px;
	margin-top: 0px;
}

.top_insta {
font-size: 100%;
padding-right: 0px;
margin-left: 0;
padding-left: 0;
}

.lang_off{
		color :gray;

}
}

/*トップメインビジュアル*/

@media screen and (min-width:768px){
	
.top-page .openbtn1{	
display: none;
}

/*トップロゴ*/

.logo_box{
position:relative;
width: 100%;
height: 80%;
min-width: 1000px;

}

.title_logo{
height: 80%;
position:absolute;
top:20px;
right:30px;
}

.title_logo img{
height: 85%;

}

.title_date{
width: 15%;
position:absolute;
bottom:2%;
right:30px;
}

.title_date img{
width: 100%;
}

.bluray-date{
position:absolute;
bottom:7%;
right:30px;
width: 15%;
}

.bluray-date img{
width: 100%;
background-color: red;
}

/*トップメインビジュアルPC*/
.top_kv{
	margin: 0 auto;
	width: 100%;
	min-width: 1000px;
	min-height: 450px;}

.top_bgimage{
	width: 100%;
	height: 85%;
	min-width: 1000px;
	background: url("../src/main_w.jpg")no-repeat;
	background-position: center center;

/*	背景の横幅を画面幅に*/
	background-size: 100% auto;

/*	背景の縦幅　高さ÷幅×100*/
	padding-top: 55%;

}

.top_staff img{
	margin: 0px auto 20px auto ;
	width: auto;
	height: auto;
	}


.top_staff_credit{
	width:100%;
	height:100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background-color: white;
	}

.top_staff_credit img{
		margin: 20px auto 0px auto;
}

.top_logo {
width:90px;
margin: 0 auto;
		margin: 40px auto 40px auto;
}

.top_logo img{
	width:90px;
	height:auto;
}


}


/*	トップスマホ　*/

@media screen and (max-width:767.98px){
.top_kv{
	margin: 0 auto;
	width: 100%;
	position: relative;
}

.top_bgimage{
	width: 100%;
	background: url("../src/main_sp_post.png")no-repeat;
/*	背景の横幅を画面幅に*/
	background-size: 100% auto;

/*	背景の縦幅　高さ÷幅×100*/
	padding-top: 124%;
}

.title_date{
display: none;
}

.title_logo{
display: none;

}

.bluray-date{
position:absolute;
bottom:7%;
right: 5.5%;
text-align: right;
width: 33%;
}

.bluray-date img{
width: 100%;
height: auto;
}


.top_bgimage img{
	width: 30%;
	height: auto;
	position: absolute;
	margin-top: -127%;
	margin-left: -50%;
    padding-top: initial;
}

.top_bgimage p{
    padding-top: initial;
	position: absolute;
	margin-top: -120%;

}

.top_staff img{
	margin: 0px auto 20px auto ;
	width: auto;
	height: auto;
	}


.top_staff_credit{
	width:100%;
	height:100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background-color: white;
	}

.top_staff_credit img{
		margin: 20px auto 0px auto;
}

.top_logo {
width:90px;
margin: 0 auto;
		margin: 00px auto 40px auto;
}

.top_logo img{
	width:90px;
	height:auto;
}

.top_menu{
display: none;
}

}






/*原作PC*/
@media screen and (min-width:768px){

.about_comic{
width: 100%;
min-height: 100vh;
		background: repeat  url( "../about_comic/img/bg_paper.png") ;
	position:relative;

}

.about_comic_box{
max-width: 1000px;
margin: 0 auto;
text-align: left;
justify-content: space-between;
height: auto;
padding-bottom: 150px;
}

.comic_page_title{
font-size: 30px;
text-align: left;
line-height: 1em;
padding-top: 50px;
margin-bottom: 50px;
color: black;
}


.comic_page_title span{
font-size: 13px;
text-align: left;
color: black;
}

.comic_imgtext{
height: auto;
background-color: white;
padding: 50px 50px 50px 50px;
margin-bottom: 50px;

}


.comic_text{
width: 90%;
height: 100%;
margin: 0 auto;
flex-direction: column;
flex-wrap: nowrap;
justify-content: space-between;
}


.comic_comment_box{
border:solid 1px gray;
background:rgba(250,250,251,0.71);
padding: 10px 20px;
margin: 20px 0 20px 0;
border-radius: 10px;
}

.comic_title {
margin: 0 auto;
font-size: 25px;
text-align: center;
margin-bottom: 50px;
}
.comic_comment_box .name_2{
font-size: 20px;
}

.comic_text p{
height: 100%;
flex-wrap: nowrap;
justify-content: space-between;
}

.comic_info{
width: 80%;
margin: 0 auto;
text-align: center;
}

.comic_info p
{
margin: 0 auto;
width:70%;
text-align: justify;
}

.comic_info img{
width: 60%;
box-shadow: 0px 0px 10px gray;
margin-bottom: 30px;
}
}

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

.about_comic{
width: 100%;
min-height: 100vh;
		background: repeat  url( "../about_comic/img/bg_paper.png") ;
	position:relative;

}

.about_comic_box{
max-width: 100%;
margin: 0 auto;
text-align: left;
justify-content: space-between;
height: auto;
padding-bottom: 150px;
}

.comic_page_title{
font-size: 30px;
text-align: left;
line-height: 1em;
padding-top: 50px;
margin-bottom: 50px;
margin-left: 20px;
color: black;
}


.comic_page_title span{
font-size: 13px;
text-align: left;
color: black;
}

.comic_imgtext{
height: auto;
background-color: white;
padding: 50px 0px 50px 0px;
margin-bottom: 50px;

}


.comic_text{
width: 90%;
height: 100%;
margin: 0 auto;
flex-direction: column;
flex-wrap: nowrap;
justify-content: space-between;
text-align: justify;
line-height: 1.5em;
}


.comic_comment_box{
border:solid 1px gray;
background:rgba(250,250,251,0.71);
padding: 10px 20px;
margin: 20px 0 20px 0;
border-radius: 10px;
}

.comic_title {
margin: 0 auto;
font-size: 25px;
text-align: center;
margin-bottom: 50px;
}
.comic_comment_box .name_2{
font-size: 20px;
}

.comic_text p{
height: 100%;
flex-wrap: nowrap;
justify-content: space-between;
}

.comic_info{
width: 90%;
margin: 0 auto;
text-align: center;
}

.comic_info p
{
margin: 0 auto;
text-align: justify;
}

.comic_info img{
width: 60%;
box-shadow: 0px 0px 10px gray;
margin-bottom: 0px;
}
}


/*イントロダクション部分スマホ*/
@media screen and (max-width:767.98px){
.introduction{
width: 100%;
background-color: #e5e5e6;
}

.introduction_img{
padding-top:57%;
background: url("../introduction/img/intro_header_sp.jpg") no-repeat 0 0 /contain;;

}

.introduction_box{
width: 100%;
margin: 0 auto;
text-align: left;
justify-content: space-between;
padding-bottom: 80px;
}

.introduction_title{
font-size: 30px;
text-align: left;
line-height: 1em;
padding-top: 30px;
margin-bottom: 30px;
color: black;
}

.introduction_title span{
font-size: 13px;
text-align: left;
color: black;
}

.introduction_image{
float: left;
width: 30%;
margin-right: 5%;
}

.introduction_image img{
width: 100%;
}

.introduction_text{
width: 80%;
margin-top: 50px;
margin: 0 auto;
}

.introduction_text p{
line-height: 1.8em;
text-align: justify;

}
}

/*イントロダクション部分PC*/
@media screen and (min-width:768px){
.introduction{
width: 100%;
background-color: #e5e5e6;
padding-bottom: 180px;
}

.introduction2{
background: url("../introduction/img/intro_bg.png")  no-repeat 0 0/cover border-box;
height: auto;
background-position: center top;
background-attachment	:fixed;
overflow:hidden;
background-color: #e5e5e6;
}

.introduction_img_box{


}
.introduction_img{
 width: 100%;
 max-width: 1980px;
 min-width: 1000px;
padding-top:39%;
background: url("../introduction/img/intro_header.jpg") no-repeat 0 0 /contain;;

}

.introduction_img2{
 width: 100%;
 max-width: 1980px;
 min-width: 1000px;
padding-top:39%;
background: url("../introduction/img/intro_header.jpg") no-repeat 0 0 /contain;;

}



.introduction_box{
max-width: 1000px;
margin: 0 auto;
text-align: left;
justify-content: space-between;
}

.introduction_box2{
width: 1000px;
margin: 0 auto;
text-align: left;
justify-content: space-between;
}



.introduction_title{
font-size: 4vh;
text-align: left;
line-height: 1em;
color: white;
position: absolute;
left: 10%;
top:3%;
max-width: 57%;
}

.introduction_title span{
font-size: 13px;
text-align: left;
color: white;
}

.introduction_image{
float: left;
width: 30%;
margin-right: 5%;
}

.introduction_image img{
width: 100%;
}

.introduction_text{
font-size: 16px;
height: 100%;
margin-top: 50px;
max-width: 100%;
width: 90%;
margin: 50px auto 0 auto;
}

.introduction_text p{
line-height: 2.6em;
justify-content: space-between;

}
.introduction_text2{
width: 100%;
padding:50px;
  background:rgba(255, 255, 255, 0.9);
font-size: 16px;
height: 100%;
margin-top: 50px;
margin-bottom: 100vh;
}

.introduction_text2 p{
line-height: 2.6em;
justify-content: space-between;

}

}

/*スライダー関連*/
@keyframes introduction_image_slide {
    0% { background-position: 0 0;}
  100% { background-position: -10185px 0;}
}
.introduction_image_slide {
  width: 100%;
  padding-top: 280px;
  background: url("../introduction/img/introduction_scroll_image.jpg")  0 0 /contain;
  background-position: center;
  background-size: 3395px 341px;
  animation: introduction_image_slide 100s linear infinite;
  margin-bottom: 70px;
}
/**/





/*ストーリースマホ用*/

@media screen and (max-width:767.98px){
	
.story_container{
width: 100%;

background-color: #e5e5e6;
}

.story{
width: 100%;
background-color: #e5e5e6;
}

.story_image{
width: 100%;
background: url("../story/img/story_header_sp.jpg") no-repeat 0 0 /cover;
padding-top: 57%;
background-color: #e5e5e6;

}



.story_box{
width: 80%;
margin: 0 auto;
text-align: left;
justify-content: space-between;
}

.story_title{
font-size: 30px;
text-align: left;
line-height: 1em;
padding-top: 30px;
margin-bottom: 30px;
color: black;
}

.story_title span{
font-size: 13px;
text-align: left;
color: black;
}




.story_text{
margin-top: 0px;
height: 100%;
text-align: justify;
line-height: 2.5em;
margin-bottom: 100px;
}

.story_text p{

line-height: 1.8em;
text-align: justify;
}
.text-big{
font-size: 25px;
line-height: 2em;
font-weight: bold;
justify-content: space-between;
}

a .comment{
font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
border-radius: 3px;
color: #984246;
font-size: 0.3em;
background: #ddaeae;
border: solid 1px #984246;
padding: 3px 10px;
margin-left: 5px;
}


a {
text-decoration: none;
}

}

/*ストーリー部分PC*/
@media screen and (min-width:768px){

.story_container{
background-color: #e5e5e6;
}

.story{
width: 100%;
background-color: #e5e5e6;
}

.story_image{
width: 100%;
background: url("../story/img/story_header.jpg") no-repeat 0 0 /cover;
padding-top: 39%;
background-color: #e5e5e6;

}



.story_box{
max-width: 1000px;
margin: 0 auto;
text-align: left;
justify-content: space-between;
}

.story_title{
font-size: 4vh;
text-align: left;
line-height: 0.7em;
color: white;
position: absolute;
left: 10%;
top:3%;
max-width: 50%;
}


.story_title span{
font-size: 13px;
text-align: left;
padding-top: -10px;
color: white;
}




.story_text{
width: 90%;
margin: 50px auto 0 auto;
height: 100%;
text-align: justify;
line-height: 2.5em;
margin-bottom: 100px;
}

.story_text p{
justify-content: space-between;
}

.text-big{
font-size: 25px;
line-height: 2em;
font-weight: bold;
justify-content: space-between;
}

a .comment{
font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
border-radius: 3px;
color: #984246;
font-size: 0.3em;
background: #ddaeae;
border: solid 1px #984246;
padding: 3px 10px;
margin-left: 5px;
}


a {
text-decoration: none;
}
}





/*ストーリー部分 verB
.story_container{
background: url("../story/img/story_bg.png") no-repeat 0 0 / cover;
width: 100%;
height: 100%;
}



.story_title{
font-size: 30px;
text-align: left;
padding-top: 150px;
margin-bottom: 10vh;
color: black;
border-bottom: solid 2px red;
}


.story_title span{
font-size: 13px;
text-align: left;
}

.storybox{
	width: 1000px;
	margin: 0 auto;
	text-align: left;
}

.storybox p{

	font-size:1em;
	color:#655542;
	line-height: 1.7em;
}

.story_textimage{
display: none;
}

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

.story_container{
margin-top: 550px;
background: url("../story/img/story_bg.png") no-repeat 0 0 /  fixed;
background-position: right bottom;
width: 100%;
height: 100%;
}



.story_title{
position:absolute;
font-size: 30px;
text-align: left;
line-height: 1em;
top: 30px;
padding-top: 0;
margin-bottom: 3vh;
color: black;
border: none;
}


.story_title span{
font-size: 13px;
text-align: left;
}

.story_textimage{
position: absolute;
display: contents;
width: 100%;
}

.story_textimage img{
position: absolute;
width: 90%;
top:150px;
left: 5%;
}

.storybox{
display: none;
}

}

*/


/*トレーラー部分*/
.top_trailer{
height: 100%;
width:  100%;
	padding: 0;
}

.trailer_button{
height: 10%;
top:30;
}

.top_trailer button{
	border: solid 1px white;
	color: white;
	cursor: pointer;
	font-size: 15px;
	padding: 5px 7px;
	margin: 15px 10px auto ;
	background-color: #000;
}

.top_trailer button:hover{

	background-color: #484646;
}

.trailer_movie{
background-color: red;
width: 100%;
height: 85%;
}

.trailer_movie iframe{
height: 100%;
width: 100%;

}

#modal11 .md-contents  a {
    text-align: center;
    color: black;
    text-decoration: none;
    padding: 37px 11px 37px 12px;
    height: 0px;
}


#modal11 li .md-xmark span:nth-of-type(1) {
top: 27px;
    transform: translateY(10px) rotate(-45deg);
}
 
 
#modal11 .top_menu_inner .md-xmark span:nth-of-type(2) {
bottom: 25px;
    transform: translateY(-10px) rotate(45deg);
    border: red;
}

@media screen and (max-width:767.98px){
.top_trailer button{
	border: solid 1px white;
	color: white;
	cursor: pointer;
	font-size: 15px;
	padding: 5px 7px;
	margin: 15px 10px auto ;
	background-color: #000;
}
.trailer_movie{
background-color: black;
width: 100%;
height: 100%;
}

.trailer_movie iframe{
height: 40%;
width: 100%;
padding-top: 150px;

}

#modal11 .md-contents  a {
    text-align: center;
    color: black;
    text-decoration: none;
    padding: 37px 11px 37px 12px;
    height: 0px;
}


#modal11 li .md-xmark span:nth-of-type(1) {
top: 27px;
    transform: translateY(10px) rotate(-45deg);
}
 
 
#modal11 .top_menu_inner .md-xmark span:nth-of-type(2) {
bottom: 25px;
    transform: translateY(-10px) rotate(45deg);
    border: red;
}
}



/*キャストスマホ*/
@media screen and (max-width:767.98px){
.credit_PC{
	display: none;
	}
	
#cast{
background: url("../cast/img/cast_sp.jpg")  no-repeat 0 0/cover border-box;
height: auto;
background-position: center top;
background-attachment	:fixed;
overflow:hidden;
background-color: #e5e5e6;
background-size:100% auto;
}


#cast2{
background-color: #e5e5e6;
height: auto;
background-position: center top;
background-attachment	:fixed;
overflow:hidden;
}

.cast_container {
width:100%;
margin: 0 auto;
padding-bottom: 0;
}

.cast_page_title{
width: auto;
font-size: 30px;
text-align: left;
padding-top: 30px;
padding-bottom: 70px;
padding-left: 20px;
line-height: 1em;
  color: #fff;
 text-shadow:2px 2px 5px black;

}

.cast_page_title span{
font-size: 13px;
text-align: left;
color: white;
}

.cast_box {
width:100%;
  background:rgba(255, 255, 255, 0.9);

margin-bottom: 100vh;

}

.cast_prof_box {
display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
	padding:10px 0 0 0;

}

.cast_prof_box .main{

margin-bottom: 80px;

}

.cast_prof_box p{

width: 85%;
margin: 0 auto;
text-align: justify;
line-height: 2em;
}

.cast_prof_box img{
width: 85%;
border-radius: 10px;
}

}

/*キャストPC*/

@media screen and (min-width:768px){
#cast{
background: url("../cast/img/cast_background2.jpg")  no-repeat 0 0/cover border-box;
height: auto;
background-position: center top;
background-attachment	:fixed;
overflow:hidden;
background-color: #e5e5e6;
min-width: 1000px;
}

#cast2{
background-color: #e5e5e6;
height: auto;
background-position: center top;
background-attachment	:fixed;
overflow:hidden;
}

.cast_container {
width:1000px;
margin: 0 auto;
padding-bottom: 0;
}

.cast_page_title{
font-size: 30px;
text-align: left;
padding-top: 150px;
margin-bottom: 10vh;
color: white;

}


.cast_page_title{
font-size: 30px;
text-align: left;
padding-top: 150px;
margin-bottom: 10vh;
color: white;

}

.cast_page_title2{
font-size: 30px;
text-align: left;
padding-top: 80px;
margin-bottom: 10vh;
color: black;

}

.cast_page_title2 span{
font-size: 13px;
text-align: left;
color: black;
}


.cast_page_title span{
font-size: 13px;
text-align: left;
color: white;
}


.cast_box {
width: 1000px;
  background:rgba(255, 255, 255, 0.9);

margin-bottom: 100vh;

}


.cast_box2{
width: 1000px;

margin-bottom: 100px;

}

.cast_prof_box {
display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
	padding:0px;
padding: 40px;

}

.cast_prof_box .main{

	margin-bottom: 80px;

}

.cast_prof_box p{
width: 430px;
margin-bottom: 0px;
text-align: justify;
line-height: 2em;
font-feature-settings: "pkna";
letter-spacing: 0.1em;
}

.text_space{
letter-spacing: 0.1em;
font-feature-settings: "palt";
}


.cast_prof_box img{
width: 430px;
border-radius: 10px;
}






}


/*スタッフスマホ*/
@media screen and (max-width:767.98px){
.credit_PC{
	display: none;
	}
	
#staff{
background: url("../staff/img/staff_bg_sp.jpg" ) no-repeat 0 0 / cover border-box;
background-size:100% auto;
background-position: right top;
background-attachment	:fixed;
overflow:hidden;
}

#staff img{
width: 100%;
}

.staff_container {
padding-bottom: 100vh;
}

.staff_container .page_title{
width: auto;
    font-size: 30px;
    text-align: left;
    padding-top: 30px;
    margin-bottom: 0px;
	padding-bottom: 70px;
    padding-left: 20px;
    line-height: 1em;
    color: #fff;
    text-shadow: 2px 2px 5px black;
}

.staff_container .page_title span{
font-size: 13px;
text-align: left;
color: white;
}

.directortext{
width: 100%;
height: 100%;
text-align: justify;
margin-bottom: 50px;

}

.staff_box {
width: 100%;
  background:rgba(255, 255, 255, 0.9);
padding-top: 30px;
padding-bottom: 30px;
margin: 0 auto;

}



.staff_profile{
padding: 0px 30px 30px 30px;
margin: 0 auto;
font-size: 16px;
line-height: 1.8em;
text-align: justify;

}

	
.staff_profile p{
margin: 0 auto;
font-size: 16px;
line-height: 1.8em;
text-align: justify;
padding: 0px 0px 50px 0px;

}

/*========= モーダル関連スマホ ===============*/

.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 1;
  z-index: 9999;

}



.md-contents{
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 9999;
overflow: scroll;
}
 
 
 .top_menu_inner .md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}

.top_menu_inner .md-inner{
 max-width: 1000px;
margin: 0 auto;
  background: #000;
  height: 50vh;
}
 
 
#modal12 .md-inner_menu{
 max-width: 100%;
margin: 0 auto;
  background: #000;
  height: 80vh;
}

#modal12 .md-contents  a {
    text-align: center;
    color: black;
    text-decoration: none;
    padding: 37px 11px 37px 12px;
    height: 0px;
}



.md-inner{
margin: auto auto;
  background: #fff;
margin-top: 20vh;
border-radius: 10px;
margin-bottom: 100px;
width: 90%;
padding-top: 30px;
padding-bottom: 30px;
}

.md-inner .name{
font-size: 25px;
margin-bottom: 10px;

}

.md-inner .name_mini{
font-size: 16px;
line-height: 3em;

}

  
.md-inner p{
padding: 0 0 30px 0;
height: 90%;
width: 90%;
float: none;
margin: 0 auto;
font-size: 18px;
/*    position: fixed;*/
    -webkit-overflow-scrolling: touch;
	}
 
.md-xmark{
  position: absolute;
  top: 34px;
  left: 20px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  cursor: pointer;
  border: 3px solid white;
}
 
.md-xmark span {
    position: absolute;
    left: 2px;
    width: 90%;
    height: 3px;
    background-color: white;
    border-radius: 4px;
}

 
.md-xmark span:nth-of-type(1) {
    top: 14px;
    transform: translateY(10px) rotate(-45deg);
}
 
 
.md-xmark span:nth-of-type(2) {
bottom: 14px;
    transform: translateY(-10px) rotate(45deg);
    border: white;
}

#modal12 .md-xmark span:nth-of-type(1) {
    top: 25px;
    transform: translateY(10px) rotate(-45deg);
}
 
 
#modal12 .md-xmark span:nth-of-type(2) {
bottom: 25px;
    transform: translateY(-10px) rotate(45deg);
    border: white;
}

 #modal12 .md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  z-index: 9999;

}
}

/*スタッフPC*/

@media screen and (min-width:768px){
#staff{
background: url("../staff/img/staff_bg.jpg" )  no-repeat 0 0/cover border-box;
background-position: center top;
background-attachment	:fixed;
overflow:hidden;
background-color: #e5e5e6;
min-width: 1000px;
}

#staff img{
width: 100%;
}

.staff_container {
padding-bottom: 100vh;
}

 .page_title{
margin: 0 auto;
width:1000px;
font-size: 30px;
text-align: left;
padding-top: 150px;
margin-bottom: 300vh;
color: white;
}

.page_title span{
font-size: 13px;
text-align: left;
color: white;
}



.staff_box {
width:1000px;
  background:rgba(255, 255, 255, 0.9);
padding-top: 30px;
padding-bottom: 30px;
margin: 0 auto;

}

.director {
width:1000px;
text-align: justify;
height: 100%;
margin: 0 auto;
}

.director p{
float: right;
font-size: 16px;
line-height: 1.8em;
}

.director img{
text-align: left;
margin-right: 30px;
width:250px !important ;
float: left;
padding-bottom: 30px;
margin-bottom: 30px;
padding-top: 30px;
}

.directortext{
width: 100%;
height: 100%;
text-align: justify;
margin-bottom: 50px;
line-height: 2em;
font-feature-settings: "pkna";
letter-spacing: 0.1em;
}




.staff_profile{
padding: 0px 30px 30px 30px;
margin: 0 auto;
font-size: 16px;
line-height: 1.8em;
text-align: justify;

}

	
.staff_profile p{
margin: 0 auto;
font-size: 16px;
line-height: 1.8em;
text-align: justify;
padding: 0px 0px 50px 0px;
font-feature-settings: "pkna";
letter-spacing: 0.03em;
}

/*========= モーダル関連PC ===============*/

.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  z-index: 9999;
}
 
.md-contents{
  display: none;
  position: fixed;
  top: 10px;
  left: 50%;
  width: 95%;
  height: auto;
  overflow: hidden;
  transform: translateX(-50%);
  z-index: 9999;
}
 
 
 .top_menu_inner .md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  z-index: 9999;
}

.top_menu_inner .md-inner{
 max-width: 1000px;
margin: 0 auto;
  background: #000;
  height: 80vh;
}
 
 
#modal12 .md-inner_menu{
 max-width: 1000px;
margin: 50px auto 0 auto;
  background: #000;
  height: 80vh;
}

#modal12 .md-contents  a {
    text-align: center;
    color: black;
    text-decoration: none;
    padding: 37px 11px 37px 12px;
    height: 0px;
}


 #modal12 .md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  z-index: 9999;

}
 
.md-inner{
max-width: 1000px;
margin: auto auto;
  background: #fff;
  height: auto;
  padding: 50px;
margin-top: 25vh;
border-radius: 10px;
}

.md-inner .name{
font-size: 25px;
margin-bottom: 10px;

}

.md-inner .name_mini{
font-size: 16px;
line-height: 3em;

}

  
.md-inner p{
float: none;
width: 100%;
margin: 0 auto;
font-size: 18px;
}
 
.md-xmark{
  position: absolute;
  top: 34px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 9999;
  cursor: pointer;
  border: 3px solid white;
}
 
.md-xmark span {
    position: absolute;
    left: 2px;
    width: 90%;
    height: 3px;
    background-color: white;
    border-radius: 4px;
}

 
.md-xmark span:nth-of-type(1) {
    top: 14px;
    transform: translateY(10px) rotate(-45deg);
}
 
 
.md-xmark span:nth-of-type(2) {
bottom: 14px;
    transform: translateY(-10px) rotate(45deg);
    border: white;
}

#modal12 .md-xmark span:nth-of-type(1) {
    top: 25px;
    transform: translateY(10px) rotate(-45deg);
}
 
 
#modal12 .md-xmark span:nth-of-type(2) {
bottom: 25px;
    transform: translateY(-10px) rotate(45deg);
    border: white;
}

}




/*京都スタッフスマホ*/
@media screen and (max-width:767.98px){
.credit_PC{
	display: none;
	}
	
#kyoto_staff{
background: url("../cooperation/img/kyotostaff_bg.jpg" ) no-repeat 0 0 / cover border-box;
background-position: center top;
background-attachment	:fixed;
overflow:hidden;
background-color: black;
}

#kyoto_staff img{
width: 100%;
}

.kyoto_staff_container {
width:100%;
margin: 0 auto;
padding-bottom: 100vh;
}

.page_title{
width: auto;

font-size: 30px;
text-align: left;
padding-top: 30px;
margin-bottom: 120px;
padding-left: 20px;
line-height: 1em;
  color: #FFF;
 text-shadow:1px 1px 3px black;
}

.page_title span{
font-size: 13px;
text-align: left;
color: white;
}

.kyoto_staff_box {
width:100%;
background-color: white;
opacity: 0.9;
padding-top: 30px;
padding-bottom: 80px;

}

	
.kyoto_staff_box p{
font-size: 16px;
line-height: 1.8em;
padding: 0px 30px 30px 30px;
text-align: justify;
font-feature-settings: "pkna";
letter-spacing: 0.03em;
}

.name_1{
font-size: 14px;

}

.name_2{
line-height: 1em;
font-size: 22px;
font-weight: 600;
}

.toplink{
position: relative;
font-size: 15px;
clear: both;
}

.toplink a{
position: absolute;
color: #9A1117;
text-decoration: none;
bottom: 20px;
}

}

/*京都スタッフPC*/

@media screen and (min-width:768px){
#kyoto_staff{
background: url("../cooperation/img/kyotostaff_bg.jpg" ) no-repeat 0 0 / cover border-box;
background-position: center top;
background-attachment	:fixed;
overflow:hidden;
background-color: #e5e5e6;
min-width: 1000px;
}

#page-top{
display: none;
}

#kyoto_staff img{
width: 100%;
}

.kyoto_staff_container {
width:1000px;
margin: 0 auto;
padding-bottom: 100vh;
}

.page_title{
font-size: 30px;
text-align: left;
padding-top: 150px;
margin-bottom: 20vh;
color: white;
}

.page_title span{
font-size: 13px;
text-align: left;
color: white;
}

.kyoto_staff_box {
max-width:1000px;
background-color: white;
opacity: 0.9;
padding-top: 30px;
}

	
.kyoto_staff_box p{
font-size: 16px;
line-height: 1.8em;
padding: 0px 30px 30px 30px;
text-align: justify;
font-feature-settings: "pkna";
letter-spacing: 0.03em;
}

.name_1{
font-size: 14px;
line-height: 1em;

}

.name_2{
font-size: 22px;
font-weight: 600;
}

.toplink{
position: relative;
font-size: 15px;
clear: both;
}

.toplink a{
position: absolute;
color: #9A1117;
text-decoration: none;
bottom: 20px;
}
}




/*フッタークレジット部分スマホ*/
@media screen and (max-width:767.98px){
	.credit_PC{
	display: none;
	}
	
	.top_credit{
		background-color: pink;
		padding:10px;
		font-size: 0.6em;
		color:white;
		position: static;
}
}


/*フッタークレジット部分PC*/
@media screen and (min-width:768px){
	.credit_SP{
	display: none;
	}
	.br-sp {
	display: none;
	}
	}
	
		.top_credit{
		width: 100%;
		background-color: #e5deca;
		padding:10px 0;
		font-size: 0.6em;
		color:black;
		position: static;
		clear: both;
}





