@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: "ab-tsubaki", sans-serif;
font-weight: 400;
font-style: normal;

明朝
font-family: "ryo-display-plusn", serif;
font-weight: 500;
font-style: normal;

font-family: "ryo-display-plusn", serif;
font-weight: 700;
font-style: normal;
***/

/***色
黒　#29201b;　rgba(41,32,27,1);
朱　#e83e0b; rgba(201,79,56,1);
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #29201b;
    text-decoration: none;}
a:hover{}


a:hover img{
  filter: alpha(opacity=70);
  opacity: 0.7;
  zoom: 1.0;
  }

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;
  }
}

/********マージン、パディング********/

.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;}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}



/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}


html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
} 


body{
	margin: 0;
	padding: 0;
	background-color: #e5dbd2;

	font-size: 16em;
	line-height:2;
	color: #29201b;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

html,body { /*背景色用*/
/*  height: 100vh*/
}

body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;  
    background-color: #e5dbd2;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
   
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
   
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}


/*****フェードイン*****/


.scroll-fade-up {
}
.scroll-fade-sideR {

}

/*****メインコンテンツ*****/

.wrap{
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	margin: 0 auto;
}

/****************************************

　ナビ

*****************************************/

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background: #e83e0b;
	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: #fff;
  	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;
	width:100%;
	padding-top: 1em;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi ul {
    margin: 0 1em;
    padding: 0.5em 0; 
    font-size: 24rem;
    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: 38rem;
    line-height: 1.1;
    vertical-align: top;
}


#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
}


#g-navi ul li .jp {
	display: block;
	margin-left: -0.3em;
	color: #e83e0b;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-family: "ab-tsubaki", sans-serif;
	font-weight: 400;
	font-style: normal;
	transition: 0.5s;
	font-feature-settings: "palt";
	letter-spacing: -0.2em;
}


#g-navi ul li .en {
	display: block;
	font-size: 0.4em;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	color: rgba(41,32,27,0.9);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-feature-settings: "palt";
	transition: 0.5s;
}

#g-navi ul li:hover .en {
	color: #e83e0b;
}

#g-navi ul li .jp .amp {
	margin: 0 0.2em;
	font-size: 0.7em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}
#g-navi ul li .en .amp {
	margin: 0 0.2em;
	font-size: 0.9em;
}

@media screen and (max-width: 1680px){

	#g-navi ul li {
		margin: 0 0.5em; 
		font-size: 30rem;
	}
}

@media screen and (max-width: 1610px){

/*	#g-navi ul .res_nav {
		display: inline;
	}*/
}

@media screen and (max-width: 900px){

	#g-navi ul li {
		font-size: 28rem;
	}
}

@media screen and (max-width: 840px){

	#g-navi ul .res_nav {
		display: none;
	}
}

@media screen and (max-width: 540px){
}

@media screen and (max-width: 320px){

	#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 .logo {
	display: none;
}

#header.dnone #g-navi ul .res_nav {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background:rgba(229,219,210,0.9);
	width:100%;
	height: 100vh;
}

#header.dnone.panelactive #g-navi ul li {
	display:block;/*flexの横並びをblockにして縦並びに*/
	padding:1em 10px 0;
	font-size: 28rem;
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{}

@media screen and (max-height: 800px) { /*画面の高さが800以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.5em 0;
		font-size: 20rem;
	}
}  
@media screen and (max-height: 520px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 18rem;
	}
} 
@media screen and (max-height: 400px) { /*画面の高さが360以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.3em 0; 
		font-size: 16rem;
	}
}  

/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/

/****　ページトップへ戻る　****/
#pagetop{
    position: fixed;
    right: 15px;
    bottom: 5px;
	z-index: 1000;
	line-height: 1;
}

#pagetop a {
	text-decoration: none;
	color: #e83e0b;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}


footer{
	width: 100%;
	margin: 0 auto;
    padding: 0.5em 0 0;
	color: #000;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

.footer .copy {
	display: inline-block;
	padding: 1em 0.5em;
	font-style: normal;
	line-height: 1.5;
}

footer .production_link {
	display: block;
	margin: 2em auto 2em;
}

footer .production_link .lbl {
	font-size: 0.8em;
}

footer .production_link .icon_toho,
footer .production_link .icon_amuse {
    display: inline-block;
    vertical-align: top;  
    margin: 0 0 0 10px;
}

footer .production_link .icon_toho img,
footer .production_link .icon_amuse img {
    width: 100%;
}

footer .production_link .icon_toho {
	position: relative;
    width: 35px;
}

footer .production_link .icon_amuse {
	position: relative;
	top: 5px;
    width: 100px;
}

footer .production_link .icon img {
    max-width: 100%;
}


footer .copy {
    font-weight: 500;
    color: #000;
    font-size: 14rem;
    letter-spacing: 0.1em;
}

footer .sns_link {
	display: inline-block;
    margin-left: 10px;
}

footer .sns_link .icon_x,
footer .sns_link .icon_toho {
    display: inline-block;
    vertical-align: top;  
    margin: 0 5px;
}

footer .sns_link .icon_x img,
footer .sns_link .icon_toho img {
    width: 100%;
}

footer .sns_link .icon_toho {
	position: relative;
    width: 35px;
}

footer .sns_link .icon_x {
	position: relative;
	top: 5px;
    width: 25px;
}

footer .sns_link .icon img {
    max-width: 100%;
}


footer .policy_link {
	margin: 1em auto 0;
}

footer .policy_link li {
	display: inline-block;
	margin: 0 auto 1em;
}

footer .policy_link li:not(:last-of-type)::after {
	content: "｜";
	margin: 0 0.5em;
}

footer .policy_link li a {
	text-decoration: none;
	color: #000;
	font-size: 16rem;
	font-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}

/****************************************

　ボックス

*****************************************/

.anchor {
    display: block;
    padding-top: 3em;
    margin-top: -3em;
}

@media screen and (max-width: 450px){

	.anchor {
		padding-top: 5em;
		margin-top: -5em;
	}
}

.sec {
    margin: 0 auto;
	padding: 5em 1em;
	color: #29201b;
	overflow: hidden;
}

.sec:first-of-type {
	padding: 1em 1em 5em;
}

.sec .inner {
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 500px){
}

/****************************************

　見出し

*****************************************/
.heading_sec {
	margin: 0 auto 0.5em;
	font-size: 60rem;
	line-height: 1.3;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.sec .heading_sec .jp {
	display: block;
	margin-left: -0.3em;
	color: #e83e0b;
	font-family: "ab-tsubaki", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: -0.3em;
}

.sec .heading_sec .en {
	display: block;
	font-size: 0.4em;
	font-family: 'Noto Sans JP', sans-serif;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.2);
	color: rgba(41,32,27,0.9);
}

.sec .heading_sec .jp .amp {
	margin: 0 0.2em;
	font-size: 0.7em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}
.sec .heading_sec .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

@media screen and (max-width: 480px){
	.heading_sec {
		font-size: 40rem;
	}
}


@media screen and (max-width: 300px){
	.heading_sec {
		font-size: 30rem;
	}
}


/****************************************

　ビジュアル

*****************************************/

.area_info {
    margin: 0 auto 1em;    
}
/***色
黒　#29201b;　rgba(41,32,27,1);
朱　#e83e0b; rgba(201,79,56,1);
***/
.area_info .btn {
    display: block;
    margin: 0 auto;
    padding: 0.3em;
    max-width: 600px;
    background: #e83e0b;
    color: #fff;
    font-size: 1.3em;
    transition: 0.5s;
}
.area_info .btn:hover {
    background: #29201b;
}
.area_visual {
    max-width: 900px;
    margin: 0 auto 4em;
}


.area_visual .visual {
	width: 100%;
	height: auto;	
	max-width: 900px;
	box-shadow: 2px 2px 10px rgba(41,32,27,0.3);
}

.area_visual .visual img {
    display: block;
	width: 100%;
}


/**********************************************************************

　イントロダクション

**********************************************************************/

.area_intro {
	margin: 0 auto;
}

.area_intro .box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 3em;
	background: rgba(255,255,255,0.7);
	box-shadow: 2px 2px 10px rgba(41,32,27,0.3);
	border: 1px solid #29201b;
}

.area_intro .box .catch {
	margin: 1em auto 1.5em;
	font-size: 28rem;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
	font-feature-settings: "palt";
}

.area_intro .box .text {
	text-align: left;
	font-size: 18rem;
}

.area_intro .box .text .point {
	color: #e83e0b;
	font-weight: 700;
}

.area_intro .box .text .point2 {
	font-family: "ab-tsubaki", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.3em;
}

.area_intro .box .text p:not(:last-of-type) {
	margin: 0 auto 2em;
}

.area_intro .box .text p.note {
	margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #76675f;
    font-size: 0.8em;
}

@media screen and (max-width: 420px){
	.area_intro .box .catch {
		font-size: 26rem;
	}
}

@media screen and (max-width: 400px){
	.area_intro .box .catch {
		font-size: 24rem;
	}
	.area_intro .box {
		padding: 2em;
	}
}

@media screen and (max-width: 360px){
	.area_intro .box .catch {
		font-size: 22rem;
	}
}

@media screen and (max-width: 330px){
	.area_intro .box .catch {
		font-size: 20rem;
	}
}

/**********************************************************************

　ストーリー

**********************************************************************/

.area_story {
	margin: 0 auto;
}

.area_story .box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 3em;
	border-radius: 10px;
	background: #fff;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.area_story .box .text {
	text-align: left;
	font-size: 18rem;
}

.area_story .box .text p:not(:last-of-type) {
	margin: 0 auto 1.5em;
}

.area_story .box .text .point {
	color: #e83e0b;
	font-weight: 700;
}

.area_story .box .text .note {
	margin-top: 2em;
	padding: 2em 0 0;
	border-top: 1px solid #29201b;
	font-size: 0.9em;
}

@media screen and (max-width: 599px){

}
/**********************************************************************

　キャスト

**********************************************************************/

.area_cast {
	margin: 0 auto;
}

.area_cast .box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 3em 1em;
	font-weight: 700;
}

.area_cast .list_p {
	margin: 0 auto 2em;
}

.area_cast .list_p li {
	margin: 0 auto 1.5em;
	font-size: 34rem;
	line-height: 1.3;

}

.area_cast .list_p .photo {
	display: block;
	max-width: 300px;
	width: 80%;
	margin: 0.5em auto;
}
.area_cast .list_p .photo img {
	display: block;
	width: 100%;
	box-shadow: 2px 2px 5px rgba(41,32,27,0.5);
}

.area_cast .list_p .yaku {
	display: block;
	margin: 0.3em auto 0;
	font-size: 0.6em;
	color: #e83e0b;
	font-feature-settings: "palt";
}
/*.area_cast .list_p .yaku::after {
	content: "役";
}*/
.area_cast .list_p .name {
	display: block;
	margin: 0 auto;
	color: #29201b;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.5;
}

.area_cast .list_p .btn_cmt {
	display: block;
	max-width: 10em;
	margin: 0 auto 0;
	padding: 0.3em 0;
	border: 2px solid #e83e0b;
	background: #e83e0b;
	color: #fff;
	text-decoration: none;
	font-weight: 900;
	font-size: 14rem;
	line-height: 1;
}

.area_cast .list_p .btn_cmt .amp {
	margin: 0 0.2em;
}

.area_cast .other {
	margin: 2em auto 0;
	font-size: 20rem;
}

@media screen and (max-width: 599px){

}

/**********************************************************************

　モーダルウィンドウ

**********************************************************************/

.prof_window .modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.prof_window .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.prof_window .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.prof_window .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.prof_window .modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 800px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background-color: #e83e0b;
	outline: 2px solid #e83e0b;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.prof_window .modal-wrapper .modal-window .modal-content {
		max-height: 80vh;
		overflow-y: auto;
		padding: 0 2em;
}

.prof_window .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.prof_window .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #fff;
	
}
.prof_window .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #999;
	
}

.prof_window .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.prof_window .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #fff !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.prof_window .modal-wrapper .modal-close:hover {
  color: #fcf9f6 !important
}

@media screen and (max-width: 414px){

    .prof_window .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }
}

.prof_window .title {
	margin: 0 auto 1em;
	border: 2px solid #fff;
	border-radius: 3px;
	font-family: "ab-tsubaki", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
}

.prof_window .name {
    display: block;
	margin: 1em auto;	
    font-size: 30rem;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2;
}

.prof_window .name .lbl {
	margin: 0 1em;
	color: #fff;
	font-size: 0.6em;
}

.prof_window .name .ls {
    letter-spacing: 0.1em;
}

.prof_window .text {
    text-align: left;
	color: #fff;
	font-weight: 400;
}

.prof_window .text p:not(last-of-type) {
	margin-bottom: 1em;

}

.prof_window .text .profile {
	font-size: 0.9em;
}
.prof_window .text .profile p {
	margin-bottom: 0;
}
.prof_window .text .profile dt {
	background: rgba(255,255,255,0.1);
	text-align: center;
}

.prof_window .text .profile dd {
	padding: 0.5em;
}

/**********************************************************************

　スタッフ

**********************************************************************/

.area_staff {
	margin: 2em auto;
}

.area_staff .box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 3em;
}

.area_staff .list1 {
	margin: 0 auto 5em;
}

.area_staff .list1 li {
	margin: 0 auto 1.5em;
	font-size: 30rem;
	line-height: 1.3;
}

.area_staff .list1 .photo {
	display: block;
	max-width: 300px;
	width: 80%;
	margin: 0.5em auto;
}
.area_staff .list1 .photo img {
	display: block;
	width: 100%;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.area_staff .list1 .work {
	display: block;
	margin: 0.3em auto 0;
	font-size: 0.6em;
	color: #e83e0b;
	font-feature-settings: "palt";
}

.area_staff .list1 .name {
	display: block;
	margin: 0 auto;
	color: #29201b;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.5;
}

.area_staff .list1 .btn_cmt {
	display: block;
	max-width: 10em;
	margin: 0 auto 0;
	padding: 0.3em 0;
	border: 2px solid #e83e0b;
	background: #e83e0b;
	color: #fff;
	text-decoration: none;
	font-weight: 900;
	font-size: 14rem;
	line-height: 1;
}

.area_staff .list1 .btn_cmt .amp {
	margin: 0 0.2em;
}

@media screen and (max-width: 599px){

}

.area_staff .list2 {
	margin: 0 auto 5em;
}

.area_staff .list2 li {
	margin: 0 auto 1.5em;
	font-size: 30rem;
	line-height: 1.3;
}

.area_staff .list2 .work {
	display: block;
	font-size: 0.6em;
	color: #e83e0b;
	font-feature-settings: "palt";
}
.area_staff .list2 .name {
	display: block;
	margin-top: 0.2em;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.3;
}

.area_staff .list3:not(:last-of-type) {
	margin: 0 auto 5em;
}

.area_staff .list3 li {
	margin: 0 auto 1.5em;
	font-size: 24rem;
	line-height: 1.3;
}

.area_staff .list3 .work {
	display: block;
	font-size: 0.7em;
	color: #e83e0b;
	font-feature-settings: "palt";
}
.area_staff .list3 .name {
	display: block;
	margin-top: 0.2em;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.3;

}
.area_staff .name .item {
	display: inline-block;
	margin: 0 0.5em 0.5em;
	vertical-align: top;
}
.area_staff .item .note {
	display: block;
	font-size: 0.7em;
	font-feature-settings: "palt";
}

.area_staff .list4 {
	margin: 0 auto 5em;
}

.area_staff .list4 li {
	margin: 0 auto 1.5em;
	font-size: 16rem;
	line-height: 1.3;
}

.area_staff .list4 .work {
	display: block;
	font-size: 0.9em;
	color: #e83e0b;
	font-feature-settings: "palt";
}
.area_staff .list4 .name {
	display: block;
	margin-top: 0.2em;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
	line-height: 1.3;

}

/**********************************************************************

　チケット＆スケジュール

**********************************************************************/

.area_ticket {
	max-width: 900px;
	margin: 2em auto;
}


/*****　（速報）　*****/

.area_ticket .box.sokuho {
	margin: 0 auto;
}

.area_ticket .box.sokuho > dl > dt {
	font-size: 30rem;
	color: #e83e0b;
	font-weight: 700;
	text-shadow: 2px 2px 2px #140402;
}
.area_ticket .box.sokuho > dl > dd {
	margin: 0 auto 3em;
	line-height: 1.5;
}

.area_ticket .box.sokuho .day {
	display: block;
	margin: 0 0.5em;
	font-size: 34rem;
	font-weight: 700;
}
.area_ticket .box.sokuho .day .s {
	display: inline-block;
	margin: 0 0.1em;
	font-size: 0.7em;
}
.area_ticket .box.sokuho .theater {
	display: block;
	margin: 0 0.5em;
	font-size: 24rem;
}

.area_ticket .box.sokuho .tokyo {
	background: rgba(255,255,255,0.1);
}

.area_ticket .box.sokuho .tokyo {
	padding: 2em 1em;
}

.area_ticket .box.sokuho .tokyo .theater.logo {
	max-width: 240px;
	width: 80%;
	margin: 0.5em auto;
}

.area_ticket .box.sokuho .tokyo .theater img{
	display: block;
	width: 100%;
}

.area_ticket .box.sokuho .tokyo .maeuri {
	max-width: 20em;
	margin: 0 auto;
	padding: 0.3em 1em;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	line-height: 1.5;
	font-size: 18rem;
	font-weight: 500;
}

@media screen and (max-width: 500px){
	.area_ticket .box.sokuho .day {
		font-size: 28rem;
	}
	.area_ticket .box.sokuho .theater {
		font-size: 20rem;
	}
}

@media screen and (max-width: 360px){
	.area_ticket .box.sokuho .day {
		font-size: 24rem;
	}
	.area_ticket .box.sokuho .theater {
		font-size: 18rem;
	}
}

/***　本報　***/

.area_ticket .stage_info {
	margin: 2em auto 5em;
	padding: 1em 2em 0;
}

.area_ticket .stage_info .sch {
	max-width: 619px;
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
}

.area_ticket .stage_info .sch img {
	width: 100%;
}

.area_ticket .stage_info .theater {
	max-width: 300px;
	margin: 0 auto 2em;
	width: 50%;
}

.area_ticket .stage_info .theater img {
	display: block;
	width: 100%;
}

.area_ticket .stage_info .hoshitori {
	max-width: 1100px;
	width: 100%;
	height: auto;
	margin: 0 auto 2em;
}

.area_ticket .stage_info .hoshitori img {
	width: 100%;	
}

@media screen and (max-width: 500px){
	.area_ticket .stage_info {
		padding: 1em 0 0;
	}
}
.area_ticket .stage_info > .caution {
	max-width: 900px;
	margin: 3em auto 0;
	padding: 0;
	text-align: left;
}
.area_ticket .stage_info .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.9em;
}

.area_ticket .stage_info .caution a {
	color: #e83e0b;
	text-decoration: underline;
}

.area_ticket .way {
	margin: 0 auto 2em;
	padding: 2em;
	background: rgba(255,255,255,0.7);
	box-shadow: 2px 2px 10px rgba(41,32,27,0.3);
	border: 1px solid #29201b;
}

/***色
黒　#29201b;　rgba(41,32,27,1);
朱　#e83e0b; rgba(201,79,56,1);
***/
.area_ticket .stage_info .talkshow {
	margin: 0.5em auto 2em;
	padding: 1em 2em;
	border-radius: 2px;
	background: rgba(255,255,255,0.9);
	color: #29201b;
}

.area_ticket .stage_info .talkshow .lead {
	font-size: 20rem;
	line-height: 1.5;
	color: #29201b;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
}

.area_ticket .stage_info .talkshow table {
	width: 100%;
	margin: 1em auto 0;
	border: 2px solid #29201b;
}

.area_ticket .stage_info .talkshow th,
.area_ticket .stage_info .talkshow td {
	padding: 0.5em 1em;
	border: 2px solid #e83e0b;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
}

.area_ticket .stage_info .talkshow th {
	background: rgba(201,79,56,0.1);
}
.area_ticket .stage_info .talkshow td {}
/*.area_ticket .stage_info .talkshow td .mark {
	color: #e83e0b;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}
.area_ticket .stage_info .talkshow td .mark2 {
	color: #e83e0b;
	font-weight: 400;
}*/
.area_ticket .stage_info .talkshow .caution {
	margin: 1em auto 0;
	text-align: left;
	font-weight: 500;
}

@media screen and (max-width: 550px){
	.area_ticket .stage_info .talkshow .lead {
		font-size: 18rem;
	}

	.area_ticket .stage_info .talkshow table {
		border: none;
	}
	.area_ticket .stage_info .talkshow th,
	.area_ticket .stage_info .talkshow td {
		display: block;
		width: 100%;
	}

	.area_ticket .stage_info .talkshow th {
		border-bottom: none;
	}
	.area_ticket .stage_info .talkshow td {
		margin-bottom: 1em;
	}
}

.area_ticket .way a {
    color: #e83e0b;
	text-decoration: none;
}

.area_ticket .way .s {
	font-size: 0.9em;
    font-weight: 900
}

.area_ticket .way > dt{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 1em 1em;
	border-bottom: 1px solid #29201b;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
	color: #29201b;
	font-weight: 500;
}

.area_ticket .way > dd{
	padding: 1em 2em;
	border-top: none;	
	text-align: center;
}

.area_ticket .way > dd .caution {
	display: inline-block;
	margin: 2em auto 0;
    text-align: left;
    font-size: 0.9em;
	font-family: 'Noto Sans JP', sans-serif;
}

.area_ticket .way > dd .caution li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

.area_ticket .way .start {
	display: inline-block;
	margin: 0.5em auto;
	line-height: 1.5;
	font-size: 20rem;
	font-weight: 700;
	color: #e83e0b;
}

.area_ticket .way .tel {
	display: block;
	font-size: 30rem;
	font-weight: 700;
	line-height: 1.5;
}
.area_ticket .way .tel .note {
	display: inline-block;
	font-size: 0.7em;
}
.area_ticket .way .tel a{
	color: #29201b;
	text-decoration: none;
}
.area_ticket .way .icon {
	margin-right: 0.2em;
	font-size: 0.8em;
}



@media (max-width: 480px) {
	.area_ticket .box_area {
		padding: 1.5em;
	}
}

@media screen and (max-width: 414px){

	.area_ticket .way > dt{
		font-size: 20rem;
		font-feature-settings: "palt";
	}
	.area_ticket .way > dd{
		padding: 1em 0;
	}
    .area_ticket .start {
        font-size: 18rem;
    }
}

@media screen and (max-width: 374px){

}

.area_ticket .way .toho .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 1em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #e83e0b;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 28rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}
.area_ticket .way .toho .btn:hover {
	background: #29201b;
	color: #fff;
}

.area_ticket .way .toho .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .way .toho .senkou {
	margin: 2em auto 0;
}

.area_ticket .way .toho .senkou dt {
	color: #e83e0b;
	font-style: normal;
	font-size: 20rem;
}
.area_ticket .way .toho .senkou dd {
	margin-bottom: 1em;
	padding: 1em 0.5em;
	border: 1px solid #29201b;
	font-size: 20rem;
}

@media screen and (max-width: 414px){

	.area_ticket .way .toho .tel {
        font-size: 24rem;

    }
}

@media screen and (max-width: 413px){
    .area_ticket .way .toho .senkou dd {
        font-size: 18rem;
    }
}

@media screen and (max-width: 364px){
    .area_ticket .way .toho .senkou dd {
        font-size: 16rem;
    }
}


/*****　プレイガイド　*****/
.area_ticket .way .playguide {
    margin: 1em auto 0;
}

.area_ticket .way .playguide dt  {
	color: #fff;
}

.area_ticket .way .playguide dd {
	margin-bottom: 1em;
	padding: 1em 0.5em;
	border: 2px solid #fff;
	font-size: 20rem;
	word-break: break-all;
	line-height: 1.5;
}

.area_ticket .way .playguide .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 1em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #e83e0b;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .way .playguide .btn:hover {
	background: #140402;
	color: #fff;
}

.area_ticket .way .playguide .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}
.area_ticket .way .playguide .senkou {
	margin: 2em auto 0;
}

@media screen and (max-width: 480px){


}

@media screen and (max-width: 414px){

}


/***　ナビザーブ　***/

.area_ticket .way .tele .start {
	display: block;
}
.area_ticket .way .tele .tel {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 24rem;
}

.area_ticket .way .tele .office {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 20rem;
}

/***　グループ観劇　***/

.area_ticket .way .group .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 0 auto 1em;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #e83e0b;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .way .group .btn:hover {
	background: #140402;
	color: #fff;
}

.area_ticket .way .group .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;	
}

.area_ticket .way .group .tel,
.area_ticket .way .group .office {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 20rem;
}

.area_ticket .way .group .tel a {
	color: #29201b;
}



/*****　リセール　*****/

.area_ticket .way .resale p {
	padding: 0 1em;
    text-align: left;
	font-size: 16rem;
}

.area_ticket .way .resale .list {
    margin-top: 2em;
}

.area_ticket .way .resale .list li {
    display: inline-block;
}

.area_ticket .way .resale .list li img {
	display: block;
}

.area_ticket .way .resale .list .about {
	display: block;
	font-weight: 500;
}

.area_ticket .way .resale .list a {
    text-decoration: none;
}
.area_ticket .way .resale .caution {
    margin-top: 0;
}


/***　会場案内　***/

.area_ticket .way > dd.kaijyou {
	text-align: center;
}

.area_ticket .kaijyou .map {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
}

.area_ticket .kaijyou .map img {
	width: 100%;
}

.area_ticket .kaijyou .logo {
	max-width: 271px;
	margin: 1em auto 0;
    font-weight: 400;
}

.area_ticket .kaijyou .logo img {
	width: 100%;
}

.area_ticket .kaijyou .add{
	font-size: 0.9em;
}

.area_ticket .kaijyou .add .pk {
	margin: 0 0.5em;
}

.area_ticket .kaijyou .access {
	display: inline-block;
	margin: 1em auto;
	font-size: 16rem;
}
.area_ticket .kaijyou .access li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	line-height: 1.5;
	text-align: left;
	text-indent: -1em;
}
.area_ticket .kaijyou .access li::before {
	content: "・";
	margin-right: 0.2em;
}

.area_ticket .list_btn .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 240px;
	margin: 2em auto 1em;
	padding: 0.5em 1em;
	text-decoration: none;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #e83e0b;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	font-size: 20rem;
	transition: 0.5s;
}

.area_ticket .list_btn .btn:hover {
	background: #140402;
	color: #fff;
}

.area_ticket .list_btn .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;		
}

.area_ticket .way dd.contact {
    margin: 1em auto 0;
}

.area_ticket .way dd.contact dt {}

.area_ticket .way dd.contact dt::before {
    content: "〔";
	margin-right: 0.3em;

}
.area_ticket .way dd.contact dt::after {
    content: "〕";
	margin-left: 0.3em;
}
.area_ticket .way dd.contact dd {
}

.area_ticket .way dd.contact .tel {
	display: inline-block;
    margin: 0 0.5em;
	font-size: 20rem;
}
.area_ticket .way dd.contact .tel a {
    text-decoration: none;
	color: #29201b;
}
.area_ticket .way dd.contact .tel .icon {
	margin-right: 0.3em;
	font-size: 0.8em;
}
.area_ticket .way dd.contact .office {
    margin: 0 0.5em;
}

@media screen and (max-width: 480px){


	.area_ticket .kaijyou .logo {
		width: 200px;
	}

	.area_ticket .kaijyou .access {
		font-size: 15rem;
	}
    .area_ticket .way dd.contact dt {
        display: block;
    }
	.area_ticket .list_btn .btn {
		padding: 0.5em 2em 0.5em 1.5em;
		font-size: 18rem;
	}
}

@media screen and (max-width: 360px){
	.area_ticket .kaijyou .list_btn {
		display: block;
		max-width: inherit;
	}
	.area_ticket .list_btn .btn {
		display: block;
		margin: 0 auto;
		padding: 0.5em 1em;
		font-weight: 900;
	}
	.area_ticket .list_btn .btn:not(:last-of-type) {
		margin-bottom: 0.5em;
	}
	.area_ticket .list_btn .btn .in::before {
		content: none;
	}
}


/****************************************
　お問合せ
****************************************/

.area_ticket .way.contact dd{
    padding: 1em;
    text-align: center;
    line-height: 1.5;
}
.area_ticket .way.contact .office {
    display: block;
    margin: 0 auto;
    color: #e83e0b;
    font-weight: 900;
}

.area_ticket .osaka .way.contact .office {
    letter-spacing: 0.1em;
}

.area_ticket .way.contact .tel {
    display: block;
    margin: 0.5em auto 0;
    font-size: 28rem;
    color: #fff;
}

.area_ticket .way.contact .tel a{
    color: #29201b;
    text-decoration: none;
}

.area_ticket .way.contact .tel .fas {
    padding-right: 0.3em;
    font-size: 0.9em;
    color: #e83e0b;
}

.area_ticket .way.contact .time {
    display: block;
    margin: 0 auto;
    color: #29201b;
}
.area_ticket .way.contact .caution {
    margin: 1em auto 0;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 340px){
    .area_ticket .way.contact .caution {
        text-align: left;
        padding-left: 1em;
        text-indent: -1em;
    }
}



/**********************************************************************

　ツアー

**********************************************************************/

.area_tour {
	max-width: 900px;
	margin: 2em auto;
}

.area_tour .box {
	margin: 0 auto;
}
.area_tour .box .list {
}

.area_tour .box .list {
	margin: 0 auto 2em;
	padding: 2em;
	background: rgba(255,255,255,0.7);
	box-shadow: 2px 2px 10px rgba(41,32,27,0.3);
	border: 1px solid #29201b;
}

.area_tour .box .list > dt{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 1em 1em;
	border-bottom: 1px solid #29201b;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
	color: #29201b;
	font-weight: 500;
}

.area_tour .box .list > dd{
	padding: 1em 2em;
	border-top: none;	
	text-align: center;
}


.area_tour .box .day {
	display: block;
	margin: 0 0.5em;
	font-size: 24rem;
}
.area_tour .box .day .s {
	display: inline-block;
	margin: 0 0.1em;
	font-size: 0.7em;
}
.area_tour .box .theater {
	display: block;
	margin: 0 0.5em;
	font-size: 20rem;
}

@media screen and (max-width: 500px){
	.area_tour .box .list > dd{
		padding: 1em 0;
	}

	.area_tour .box .day {
		font-size: 28rem;
	}
	.area_tour .box .theater {
		font-size: 20rem;
	}
}
@media screen and (max-width: 400px){

	.area_tour .box .day {
		font-size: 24rem;
	}
	
	.area_tour .box .theater {
		font-size: 20rem;
	}
}

@media screen and (max-width: 360px){

	.area_tour .box .day {
		font-size: 22rem;
		font-weight: 500;
	}

	.area_tour .box .theater {
		font-size: 18rem;
		font-weight: 500;
	}
}

.area_tour .box .contact {
	width: 100%;
	margin: 1em auto 0;
	border: 1px solid #29201b;
}

.area_tour .box .contact th {
	padding: 0.2em 1em;
	border-bottom: 1px solid #29201b;
	font-weight: 500;
}

.area_tour .box .contact td {
	padding: 1em;
	line-height: 2em;
}

.area_tour .box .contact .office,
.area_tour .box .contact .mail,
.area_tour .box .contact .tel,
.area_tour .box .contact .time {
	display: inline-block;
}
.area_tour .box .contact .mail {
	margin: 0 0.5em;
}
.area_tour .box .contact .tel {
	margin: 0 0.5em;
}
.area_tour .box .contact .tel a{
	text-decoration: none;
	color: #29201b;
}
.area_tour .box .contact .url {
	display: block;
}

.area_tour .box .contact .url a {
	color: #e83e0b;
	text-decoration: none;
	transition: 0.5s;
}

.area_tour .box .contact .url a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 500px){}

@media screen and (max-width: 400px){
	.area_tour .box .contact td {
		padding: 0.5em;
		line-height: 1.5em;
	}
	.area_tour .box .contact .url .lbl {
		display: block;
		margin-top: 0.8em;
		line-height: 1;
	}
}


/***************************************************

　フライヤー

**************************************************/

.area_flyer {
	margin: 0 auto;
	padding-bottom: 0;
}
.area_flyer.sec {
	margin-bottom: 2em;
}
.area_flyer .heading_page {
	margin-bottom: 1em;
}

.area_flyer .box {
	max-width: 900px;
	margin: 0 auto;
	padding: 2em;
	background: rgba(255,255,255,0.7);
	box-shadow: 2px 2px 10px rgba(41,32,27,0.3);
	border: 1px solid #29201b;
}

.area_flyer a {
	text-decoration: none;
}

.area_flyer .item {
    display: inline-block;
	max-width: 300px;
    margin: 1em;
    vertical-align: top;
}

.area_flyer .item dt {
    margin: 0.5em auto 0;
	padding: 0.3em 1em;
    font-size: 18rem;
	text-decoration: none;
    line-height: 1;
}

.area_flyer .item dt .note {
    display: block;
    font-size: 0.8em;
}

.area_flyer .item img {
	box-shadow: 2px 2px 10px rgba(41,32,27,0.3);
    width: 100%;
    margin: 0 auto;
    display: block;
}


@media screen and (max-width: 700px){
    .area_flyer .item {
		display: block;
		margin: 0 auto 3em;
	}
    .area_flyer .item img {
        margin: 0 auto;
    }
}



/**********************************************************************

　クレジット

**********************************************************************/

.area_credit {
	max-width: 900px;
	margin: 2em auto;
}

.area_credit .box {
	margin: 0 auto;
}
.area_credit .list {
	margin: 1em auto 0;
	line-height: 1.5;
}

.area_credit .list .work {}

.area_credit .list .name {}



/**********************************************************************

　ナビザーブ電話番号変更

**********************************************************************/


.area_ticket .tele_note {
	margin: 0.5em auto 0;
	padding: 0.5em 1em;
	border: 1px solid #29201b;
	line-height: 1.5;
}

.area_ticket .tele_note .tele_no a{
	color: #29201b;
	text-decoration: none;
}

@media screen and (max-width: 350px){
	.area_ticket .tele_note {
		text-align: left;
	}
	.area_ticket .tele_note .pk {
		display: inline;
	}
}

