@charset "utf-8";
/* CSS Document */

/***　フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900

font-family: 'Alike Angular', serif;
***/

/*** 色 ****/
/*
黄　#fccb20;
赤　#c60019;
*/

/******************************************

　共通

******************************************/

/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********リンク********/
a{ color:#c45b24;}
a:hover{ color: #c45b24;}


a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}


.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.pk {display: inline-block;}


/*******　スクロールで表示　*******/

/* フェードイン(初期値) */
.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: .2s; /* フェード開始を0.5秒遅らせる */
}


/******************************************
　構造
******************************************/

html {  
    overflow-y:scroll;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
    -webkit-text-size-adjust: none;    
}  

body{
    overflow: hidden;
	margin: 0;
	padding: 0;
	font-size: 18em;
	line-height:2;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	background-color: #000;
	animation: fadeIn 1.5s ease-in 0s 1 normal;
} 

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

body:before{
/*	content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
	background-image: url(../images/bg_pc.jpg);
	background-position:top center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: cover;
	background-color: #c60019;*/
}


@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}
}


@media screen and (orientation: portrait) { /**　画面が縦長の時　**/
	body:before{
/*		background-image: url(../images/bg_smp.jpg);
		background-size: cover;
		background-attachment:scroll;*/
	}
}

.wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
}

.main{
	margin: 0 auto;
	padding: 0 2em;
	text-align: center;
	word-wrap: break-word;
}

.sec {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 6em 0;
}

.box {
/*	border: 30px solid #fff;
	border-image-source: url(../images/bg_sec.svg);
	border-image-slice: 30;
	border-image-width: 30px;
	border-image-repeat: stretch;
	background-image-offset: 30px;*/
}

.box .inner {
	padding: 3em;
	background: #fff;
	color: #000;
	font-weight: 500;
}

.anchor {
	display: block;
	margin-top: -100px;
	padding-top: 100px;
}

@media screen and (max-width: 600px) {
	.box .inner {
		padding: 2em;
	}
}

@media screen and (max-width: 400px) {
	.box .inner {
		padding: 2em 2em 1em;
	}
/*	.sec {
		padding: 0;
	}
	.box .inner {
		padding: 1em 0;
	}*/
}

/****************************************

　ナビ

*****************************************/

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background:#fccb20;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 2px;
}

/*ボタンのアイコン設定*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #000;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 120px;
	width:100%;
	padding: 1em 0;
	display: flex;
	justify-content: center;
	align-items: center;
/*	background:rgba(0,0,0,1);
	box-shadow: 0 0 10px rgba(113,8,8,0.9);*/
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi ul {
    margin: 0 1em;
    padding: 5px 0 5px; 
    line-height: 1.3;
    vertical-align: top;
}

#g-navi ul .res_nav {
	display: none;
}

#g-navi ul li {
    display: inline-block;
    margin: 0 0.5em;
    padding: 5px 0 5px; 
    font-size: 30rem;
    line-height: 1.1;
    vertical-align: top;
}

#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
	color: #fff;
}


#g-navi ul li .en {
	display: block;
	color: #fff;
	font-family: 'Alike Angular', serif;
	transition: 0.5s;
}

#g-navi ul li:hover .en {
	color: #fccb20;
}

#g-navi ul li .en .amp {
	margin: 0 0.3em;
	font-size: 0.8em;
}

#g-navi ul li .jp {
	display: block;
	font-size: 0.4em;
	color: #fccb20;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	transition: 0.5s;
}

@media screen and (max-width: 1680px){

	#g-navi ul li {
		margin: 0 0.5em; 
		font-size: 30rem;
	}
}

@media screen and (max-width: 1300px){

	#g-navi ul li {
		font-size: 24rem;
	}
}

@media screen and (max-width: 1480px){

	#g-navi ul .res_nav {
		display: inline;
	}
}


@media screen and (max-width: 840px){

	#g-navi ul .res_nav {
		display: none;
	}
}

@media screen and (max-width: 768px){

	#g-navi ul .res_nav {
		display: inline;
	}
}

@media screen and (max-width: 640px){

	#g-navi ul .res_nav {
		display: none;
	}

}

@media screen and (max-width: 420px){

	#g-navi ul li {
		font-size: 20rem;
	}
}


/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    left: 0;
	z-index: -1;
    /*高さと幅*/  
/*	width:100%;
	height: 100vh;*/
    /*天地中央＆テキスト中央揃え*/  
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;

}

#header.dnone #g-navi ul .res {
	display: none;
}

#header.dnone #g-navi ul .res_nav {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background:rgba(0,0,0,0.9);
	width:100%;
	height: 100vh;
}

#header.dnone.panelactive #g-navi ul li {
	display:block;/*flexの横並びをblockにして縦並びに*/
	padding:1em 10px 0;
	font-size: 34rem;
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
/*	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition:all 0.3s;*/
}
@media screen and (max-height: 800px) { /*画面の高さが800以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 1em 0 0; 
		font-size: 30rem;
	}
}  
@media screen and (max-height: 600px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 24rem;
	}
} 
@media screen and (max-height: 360px) { /*画面の高さが360以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.3em 0; 
		font-size: 16rem;
	}
}  



/*******************************************
	フッター
********************************************/

/***　協賛　***/
.area_sponsor .logo {
	margin: 1em auto;
}

.area_sponsor .logo .item {
	display: block;
	max-width: 180px;
	margin: 0 auto;
	padding-right: 50px;
}

.area_sponsor .logo .item img {
	display: block;
	width: 100%;
	margin: 0 auto;
	vertical-align: bottom;
}

@media screen and (max-width: 980px) {
	.area_sponsor .logo .item {
		padding: 0;
	}
}

@media screen and (max-width: 900px) {
	.area_sponsor .logo img {
		max-width: 20vw;
	}
}

@media screen and (max-width: 500px) {
	.area_sponsor .logo img {
		max-width: 25vw;
		min-width: 100px;
	}
}


.billing {
    padding-top: 3em; 
    background: #000;
    font-weight: 900;
    color: #fff;
}

.billing a {
    color: #fff;
}

@media screen and (max-width: 414px){
    .billing {
        font-size: 14rem;
    }
}



/*****フッター*****/


footer{
	width: 100%;
	margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 0;
	text-align: center;
	font-size: 16rem;
	bottom: 0;
    background: #000;
}

.footer .copy {
	display: block;
	color: #000;
    font-weight: 700;
    background: #000;
    color: #cd141c;
    color: #fff;
}

footer .sns_link {
    margin-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em;
    text-align: center;
    vertical-align: top;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 51px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 35px;
}

.policy_link {
	display: block;
    margin-bottom: 1em;
	font-weight: 400;
}

.policy_link .link a {
    display: inline-block;
	margin: 0 1em;
	text-decoration: none;
	color: #fff;
	font-size: 14rem;
	font-weight: 500;
}

.policy_link .link a:hover {
	color: #fccb20;
}

.policy_link .link:not(:last-of-type)::after {
	content: "|";
	padding: 0 0.5em;
	color: #fff;
}


/****　ページトップへ戻る　****/
#pagetop{
    position: fixed;
    right: 10px;
    bottom: 10px;
	z-index: 997;
	max-width: 3vw;
	min-width: 100px;
}

#pagetop img {
	width: 100%;
	display: block;
}

@media screen and (max-width: 500px){
	#pagetop{
		min-width: 60px;
	}  
}

/****************************************

　見出し

*****************************************/
.heading_sec {
	margin: 0 auto 0.5em;
	font-size: 60rem;
	line-height: 1.1;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.2);
}

.heading_sec .en {
	display: block;
	color: #fff;
	font-family: 'Alike Angular', serif;
}
.heading_sec .jp {
	display: block;
	font-family: 'Noto Serif JP', serif;
	color: #fccb20;
	font-weight: 700;
	font-size: 0.3em;
}

.heading_sec .en .amp {
	margin: 0 0.3em;
	font-size: 0.8em;
}

@media screen and (max-width: 600px){
	.heading_sec {
		font-size: 50rem;
	}
}


@media screen and (max-width: 400px){
	.heading_sec {
		font-size: 40rem;
	}
}

@media screen and (max-width: 300px){
	.heading_sec {
		font-size: 30rem;
	}
}




/*******************************************

　ビジュアル

********************************************/

.area_visual {
	margin: 0 auto;
	padding: 1em 0;
}

/*****　お知らせ系ボタン　*****/

.area_visual .btn_area {
	max-width: 900px;
	margin: 0 auto 1em;
}

.area_visual .btn_area .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 500px;
	width: 47%;	
	margin: 0 1% 0.5em;
	padding: 0.5em 1.3em 0.5em 1.5em;
	background: #fccb20;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.8);
	text-shadow: 0 0 10px rgba(0,0,0,0.2);
	text-decoration: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
	font-size: 24rem;
	color: #000;
	text-align: center;
	line-height: 1.3;
	transition: 0.5s;
}


.area_visual .btn_area .btn .icon {
	margin-right: 0.2em;
	font-size: 0.8em;
}

.area_visual .btn_area .btn:hover {
	background: #000;
	color: #fccb20;
}

.area_visual .btn_area .btn2 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 96.5%;	
	margin: 0 auto 0.5em;
	padding: 0.5em 1.3em 0.5em 1.5em;
	background: #fff;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.8);
	text-shadow: 0 0 10px rgba(0,0,0,0.2);
	text-decoration: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
	font-size: 24rem;
	color: #000;
	text-align: center;
	line-height: 1.3;
	transition: 0.5s;
}

.area_visual .btn_area .btn2 .icon {
	margin-right: 0.2em;
	font-size: 0.8em;
}

.area_visual .btn_area .btn3 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 96.5%;	
	margin: 0 auto 0.5em;
	padding: 0.5em 1.3em 0.5em 1.5em;
	background: #fccb20;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.8);
	text-shadow: 0 0 10px rgba(0,0,0,0.2);
	text-decoration: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
	font-size: 24rem;
	color: #000;
	text-align: center;
	line-height: 1.3;
	transition: 0.5s;
}

.area_visual .btn_area .btn3 .icon {
	margin-right: 0.2em;
	font-size: 0.8em;
}

@media screen and (max-width: 1200px){
	.area_visual .btn_area .btn,
	.area_visual .btn_area .btn2,
	.area_visual .btn_area .btn3 {
		font-size: 20rem;
	}
}

@media screen and (max-width: 540px){
	.area_visual .btn_area .btn {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
		font-size: 18rem;
	}
	.area_visual .btn_area .btn2 {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
		font-size: 18rem;
	}
	.area_visual .btn_area .btn3 {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
		font-size: 18rem;
	}
}

@media screen and (max-width: 360px){
	.area_visual .btn_area .btn {
		font-size: 15rem;
	}
	.area_visual .btn_area .btn2 {
		font-size: 15rem;
	}
	.area_visual .btn_area .btn3 {
		font-size: 15rem;
	}
}

.area_visual .btn_area2 .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 600px;
	width: 100%;	
	margin: 0 0.2em 0.5em;
	padding: 0.5em 1.3em 0.5em 1.5em;
	background: #fccb20;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.8);
	text-shadow: 0 0 10px rgba(0,0,0,0.2);
	text-decoration: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
	font-size: 24rem;
	color: #000;
	text-align: center;
	line-height: 1.3;
	transition: 0.5s;
}


.area_visual .btn_area2 .btn .icon {
	margin-right: 0.2em;
	font-size: 0.8em;
}

.area_visual .btn_area2 .btn:hover {
	background: #000;
	color: #fccb20;
}

@media screen and (max-width: 540px){
	.area_visual .btn_area2 .btn {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
		font-size: 18rem;
	}

}
@media screen and (max-width: 360px){
	.area_visual .btn_area2 .btn {
		font-size: 16rem;
	}

}

.area_visual .visual {
	width: 100%;
	height: auto;	
	max-width: 900px;
	max-height: 1274px;
	margin: 1em auto 0;
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

@media print {
	.area_visual .visual {
		display: none;
    }
}

/*.area_visual .visual .item {
    display: block;
    margin: 0.5em auto;
    text-align: center;
}

.area_visual .visual .item img {
    width: 100%;
    box-shadow: 0 0 10px rgba(82,84,123,0.3);
}*/
.area_visual .visual .slide {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.area_visual .visual .slide.visual_a {
	background-image: url("../images/visual2024_4a.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-attachment: scroll;
	background-size: cover;
}

.area_visual .visual .slide.visual_b {
	background-image: url("../images/visual2024_4b.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-attachment: scroll;
	background-size: cover;
}

.area_visual .visual .slide.visual_c {
	background-image: url("../images/visual2024_4c.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-attachment: scroll;
	background-size: cover;
}

.area_visual .visual img {
    display: block;
	width: 100%;
	height: auto;
}
@media print{
    .area_visual .visual {
        display: none;
    }
}

.area_visual .logo {
	max-width: 900px;
	width: 100%;
	margin: 1em auto;
	text-align: right;
	vertical-align: middle;
}

.area_visual .logo::after{
  content: "";
  display: block;
  clear: both;
}

.area_visual .logo .item {
	float: right;
	max-width: 180px;
}

.area_visual .logo .item img {
	display: block;
	width: 100%;
	vertical-align: bottom;
}

@media screen and (max-width: 900px) {
	.area_visual .logo img {
		max-width: 20vw;
	}
}

@media screen and (max-width: 500px) {
	.area_visual .logo img {
		max-width: 25vw;
		min-width: 100px;
	}
}


/**********************************************************************

　イントロダクション

**********************************************************************/

.area_intro {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 2em auto;
}

.area_intro .box .text {
	font-size: 18rem;
	text-align: left;
	font-weight: 400;
}

.area_intro .box .text p:last-of-type {
	margin-top: 1em;
}


/**********************************************************************

　ストーリー

**********************************************************************/

.area_story {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 2em auto;
}

.area_story .box {
}

.area_story .box .text {
	font-size: 18rem;
	text-align: left;
	font-weight: 400;
}

.area_story .box .text p {
	margin-bottom: 1em;
}

.area_story .box .text .point {
	display: inline-block;
	color: #fccb20;
}


/**********************************************************************

　キャスト

**********************************************************************/

.sec.area_cast {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 2em auto;
}

.area_cast .sokuho {}

.area_cast .sokuho .list_p1 {
	margin: 0 auto 0;
	font-size: 24rem;
}
.area_cast .sokuho .list_p1 .yaku {
	margin: 0 auto 1em;
	color: #000;
	line-height: 1.3;
	font-size: 0.8em;
	font-weight: 700;
}
.area_cast .sokuho .list_p1 .yaku .note {
	display: block;
	font-size: 0.6em;
}
.area_cast .sokuho .list_p1 li {
	display: inline-block;
	max-width: 200px;
	margin: 0 0.5em 1.5em;

}

.area_cast .sokuho .list_p1 li .photo {
	display: block;
	margin: 0 auto;
}

.area_cast .sokuho .list_p1 li .photo img {
	display: block;
	width: 100%;
}

.area_cast .sokuho .list_p1 li .photo.hide {
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

@media print {
	.area_cast .sokuho .list_p1 li .photo.hide {
		display: none;
    }
}
.area_cast .sokuho .list_p1 li .name {
	}

.area_cast .sokuho .list_p1 li .btn_cmt {
	display: block;
	padding: 0.5em 0.5em;
	background: #c60019;
	color: #fff;
	line-height: 1;
	font-size: 0.6em;
	text-decoration: none;
	font-weight: 700;
	transition: 0.5s;
}

.area_cast .sokuho .list_p1 li .btn_cmt:hover {
	background: #000;
}


@media screen and (max-width: 940px) {
	.area_cast .sokuho .list_p1 .yaku {
		margin-bottom: 2em;
		font-size: 1em;
	}
	.area_cast .sokuho .list_p1 li {
		display: block;
		max-width: 240px;
		width: 60%;
		margin: 0 auto 1.5em;
	}
}
@media screen and (max-width: 400px) {
	.area_cast .box .inner {
		padding-top: 3em;
	}
	.area_cast .sokuho .list_p1 .yaku {
		font-size: 0.9em;;
	}
}

@media screen and (max-width: 340px) {
	.area_cast .sokuho .list_p1 li {
		width: 80%;
	}
}


/**********************************************************************

　キャストプロフィール＆コメント：モーダルウィンドウ

**********************************************************************/

.cast_cmt .modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.cast_cmt .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.cast_cmt .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.cast_cmt .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.cast_cmt .modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 900px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background-color: rgba(198,0,25,0.95);
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
	max-height: 60vh;
	overflow-y: auto;
    margin-top: 2em;
	padding: 0 2em;

}

.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #eee;
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #000;
	
}

.cast_cmt .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .5)
}

.cast_cmt .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #000 !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.cast_cmt .modal-wrapper .modal-close:hover {
  color: #000 !important
}

@media screen and (max-width: 414px){

    .cast_cmt .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }

	.cast_cmt .modal-wrapper .modal-window .modal-content {
		padding: 0 0.5em;
	}
}

.cast_cmt .name {
    display: block;
	margin: 1em auto;	
	padding: 1em 0;
    font-size: 30rem;
    line-height: 1.3;
    color: #fff;
    letter-spacing: 0.2;
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
	font-weight: 700;
}

.cast_cmt .name .note {
	display: inline-block;
	font-size: 0.6em;
}
.cast_cmt .name .en {
	display: block;
	font-size: 0.6em;
}

.cast_cmt .box_cmt {}

.cast_cmt .box_cmt dt {
	margin: 1em auto 0;
	background: #000;
	color: #fff;
}
.cast_cmt .box_cmt dd {
	padding: 1em;
}
.cast_cmt .box_cmt .text {
	margin: 0 auto;
	color: #fff;
}

.cast_cmt .box_cmt .text {
	font-weight: 500;
	font-size: 18rem;
	text-align: left;
}

.cast_cmt .box_cmt .text p:not(last-of-type) {
	margin-bottom: 1em;

}


@media screen and (max-width: 600px){
	.cast_cmt .box_cmt .name {
		font-size: 24rem;
	}
}
@media screen and (max-width: 360px){
	.cast_cmt .box_cmt .name {
		font-size: 20rem;
	}
}

/**********************************************************************

　スタッフ

**********************************************************************/

.area_creative {
	margin: 2em auto;
}

.area_creative .box {
}

.area_creative .list {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
	font-size: 22rem;
	line-height: 1.5;
}

.area_creative .list li {
	margin-bottom: 2em;
}

.area_creative .list .work {
	display: block;
	color: #c60019;
	font-size: 0.7em;
	font-weight: 700;

}

.area_creative .list .name {
	display: block;
	font-weight: 500;
}

.area_creative .list .name .office {
	display: block;
	font-size: 0.7em;
}

@media screen and (max-width: 400px) {
	.area_creative .box .inner {
		padding-bottom: 0.5em;
	}
}

/***************************************************

　ツアー

**************************************************/
.area_schedule {
	margin: 2em auto 4em;
}

.area_schedule .box .inner {
	padding: 2em;
}
.area_schedule .list {
	margin: 0 auto;
	font-size: 24rem;
}

.area_schedule .list .day {
	display: block;
	background: #c60019;
	color: #fff;
	font-size: 0.9em;
	font-weight: 700;
}
.area_schedule .list .theater {
	display: block;
	padding: 0.5em;
	font-weight: 500;
}
.area_schedule .list .theater a {
	text-decoration: none;
	color: #000;
}
.area_schedule .list .theater a .icon {
	margin-left: 0.2em;
	vertical-align: super;
	font-size: 0.8em;
	color: #c60019;
}


@media screen and (max-width: 600px) {
	.area_schedule .box .inner {
		padding: 2em 1em;
	}
	.area_schedule .list {
		margin: 0 auto;
		font-size: 22rem;
		line-height: 1.5;
	}
}

@media screen and (max-width: 400px) {

}

