@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: "didoni-urw", serif;
font-weight: 400;
font-style: normal;
***/

/***色
黒　#1c080c; rgba(28,8,12,1);
赤　#81242c;
茶　#421720;
黄　#bea526;
明るい黄　#dbbe2b;
ベージュ　#d8c4b9;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #dbbe2b;
    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;

	font-size: 18em;
	line-height:2;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #1c080c;	
}

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: top;
    background-size: cover;  
    background-color: #1c080c;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
/*
	body:after {
		background-image: url("../images/bg_smp.jpg");
		background-size: cover;  
	}*/
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}

@media screen and (max-width: 600px){
/*	body:after {
		background-size: 10vw;  
	}*/
}


/*****メインコンテンツ*****/

.wrap{
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	margin: 0 auto;
	padding: 0 1em;
}

/****************************************

　ナビ

*****************************************/

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	background: #81242c;
	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: #dbbe2b;
  	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: 0.5em 0;
/*    background: #421720;
    box-shadow: 10px 0 20px rgba(96,70,58,1);*/
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi ul {
    margin: 0 1em;
    padding: 0.5em 0; 
    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.2;
    vertical-align: top;
	text-shadow: 0 0 5px rgba(28,8,12,1);
}

#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
}

#g-navi ul li .en {
	display: block;
	color: #dbbe2b;
    font-family: "didoni-urw", serif;
    font-weight: 400;
    font-style: normal;
	transition: 0.5s;
}

#g-navi ul li .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

#g-navi ul li .jp {
	display: block;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	font-weight: 500;
	font-size: 0.5em;
}

#g-navi ul li:hover .en {
    color: #ffe14b;
	text-shadow:0 0 10px #000, 0 0 20px rgba(231,101,112,1),0 0 30px rgba(231,101,112,1);
}

#g-navi ul li.btn_lang {
    margin-top: 0.5em;
    padding: 0.5em 2em;
    border: 1px solid #fff;
    background: rgba(255,255,255,0.5);
	text-shadow: 2px 2px 5px rgba(255,255,255,0.3);
    font-size: 0.7em;
    vertical-align:baseline;
}

@media screen and (max-width: 400px){

	#g-navi ul li {
		font-size: 20rem;
	}
}

@media screen and (max-width: 320px){

}


/*.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(28,8,12,0.95);
	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: 24rem;
	}
}  
@media screen and (max-height: 520px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 20rem;
	}
} 
@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: 15px;
    line-height: 0;
	z-index: 999;

}

#pagetop a {
	text-decoration: none;
	color: #81242c;
    text-shadow: 0 0 30px rgba(0,0,0,0.3);
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}

footer{
	width: 100%;
	margin: 0 auto;
    padding: 2em 0 0;
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

footer .copy {
	display: block;
	padding: 1em;
	line-height: 1.5;
    font-family: "didoni-urw", serif;
    font-weight: 400;
    font-style: normal;
}

footer .sns_link {
    margin-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em 0.5em;
    text-align: center;
    vertical-align: top;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 35px;
}

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: #fff;
	font-size: 16rem;
	font-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}


/****************************************

　ボックス

*****************************************/

.anchor {
    display: block;
    padding-top: 8em;
    margin-top: -8em;
}

@media screen and (max-width: 768px){

	.anchor {
		padding-top: 20em;
		margin-top: -20em;
	}
}

.sec {
	max-width: 900px;
    margin: 0 auto;
/*	padding: 0 1em;*/
}

/*.sec:not(:first-of-type) {
	padding: 3em 0;
}*/


.sec .inner {
    margin: 0 auto;
}

@media screen and (max-width: 500px){
}



/*******************************************

　見出し

********************************************/

.heading_sec {
    margin: 0.5em auto 0.5em;
    padding: 0.5em;
/*    background: #812529;
    box-shadow: 0 0 20px rgba(96,70,58,0.8) inset;*/
    font-size: 50rem;
    line-height: 1.1;
    text-align: center;
}

.heading_sec .en {
	display: block;
	color: #dbbe2b;
    font-family: "didoni-urw", serif;
    font-weight: 400;
    font-style: normal;
	text-shadow: 0 0 5px rgba(64,43,34,0.3);
}
.heading_sec .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

.heading_sec .jp {
	display: block;
	color: #fff;
	font-weight: 500;
	font-size: 0.4em;
/*	text-shadow: 0 0 20px rgba(64,43,34,0.8),2px 2px 5px rgba(64,43,34,0.3);*/
}


.heading_sec .and {
	font-size: 0.8em;
}

@media screen and (max-width: 500px) {
	.heading_sec {
		font-size: min(10vw, 34rem);
		
	}
}


/****************************************

　ビジュアル

*****************************************/

.area_visual {
    max-width: 900px;
	width: 100%;
    margin: 0 auto 4em;
}

.area_visual .visual .item {
    display: block;
    margin: 1em auto;
    text-align: center;
    box-shadow: 0 0 100px rgba(186,78,87,1);
}

.area_visual .visual .item img {
	display: block;
    width: 100%;
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

.area_visual .visual .credit {
    text-align: right;
    font-size: 0.8em;
}

.area_visual .visual .credit li {
    display: inline-block;
    margin: 0 0.5em;
}

@media print {
    .area_visual .visual .item { display: none }
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
    .area_visual {

    }  
}

/**********************************************************************

　イントロ

**********************************************************************/

.area_intro {
	display: block;
	width: 100%;
	margin: 0 auto 4em;
    padding: 1em 3em 3em;
	background: rgba(255,255,255,0.9);
    background: rgba(28,8,12,0.8);
    border-radius: 0.5em;
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
}

.area_intro .inner {
}

.area_intro .catch {
	margin: 0 auto 1em;
	font-size: 24rem;
	font-weight: 700;
	text-align: center;
	text-shadow: 2px 2px 5px rgba(64,43,34,0.3);
	color: #dbbe2b;
}
.area_intro .catch .note {
	font-size: 0.8em;
}

.area_intro .text {
	text-align: left;
}

.area_intro .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}


@media screen and (max-width: 768px) {
	.area_intro .catch {
		font-size: 20rem
	}
}

@media screen and (max-width: 500px) {
    .area_intro {
        padding: 1em 1.5em 2em;
    }

    .area_intro .catch {
        font-size: 18rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 380px) {
    .area_intro .catch {
        font-size: 16rem;
    }
}


/**********************************************************************

　ストーリー

**********************************************************************/

.area_story {	display: block;
	width: 100%;
	margin: 0 auto 4em;
    padding: 1em 3em 3em;
	background: rgba(255,255,255,0.9);
    background: rgba(28,8,12,0.8);
    border-radius: 0.5em;
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
}

.area_story .inner {
}

.area_story .text {
	text-align: left;
}

.area_story .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}

@media screen and (max-width: 500px) {
    .area_story {
        padding: 1em 1.5em 2em;
    }
}


/**********************************************************************

　キャスト

**********************************************************************/

.area_cast {	
	width: 100%;
	margin: 0 auto 4em;
    padding: 1em 3em 3em;
	background: rgba(255,255,255,0.9);
    background: rgba(28,8,12,0.8);
    border-radius: 0.5em;
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
}

.area_cast .inner {}

.area_cast .list {
    margin-top: 3em;
}

.area_cast .list li {
    margin: 0 auto 2em;
    font-size: 30rem;
    line-height: 1.3;
}

.area_cast .list .yaku {
    display: block;
    font-size: 0.7em;
    color: #bea526;
    font-weight: 700;
}

.area_cast .list .role{
    display: block;
    font-size: 0.6em;
    color: #bea526;

}
.area_cast .list .role::before{
    content: "（";
}
.area_cast .list .role::after{
    content: "）";
}

.area_cast .list .name {
    display: block;
    margin: 0.3em auto;
}
.area_cast .list .btn_cmt {
    display: block;
    max-width: 14em;
    margin: 0 auto;
    padding: 0.3em 0;
    background: #bea526;
    border-radius: 1em;
    font-size: 0.5em;
    color: #1c080c;
    text-decoration: none;
    font-weight: 700;
}
.area_cast .list .btn_cmt .amp {
    margin: 0 0.2em;
}
@media screen and (max-width: 500px) {
    .area_cast {
        padding: 1em 1em 2em;
    }
}



/**********************************************************************

　スタッフ

**********************************************************************/

.sec.area_staff {	
    display: block;
	width: 100%;
	margin: 0 auto 4em;
    padding: 1em 3em 3em;
    background: rgba(28,8,12,0.8);
    border-radius: 0.5em;
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
}

.area_staff .inner {
}
.area_staff .list {
    font-size: 22rem;
	line-height: 1.4;
}

.area_staff .list:not(:last-of-type) {
	margin-bottom: 2.5em;
}

.area_staff .list dt {
	color: #bea526;
	font-size: 0.8em;
    font-weight: 700;
}

.area_staff .list dd:not(:last-of-type) {
	margin-bottom: 1.5em;
}

.area_staff .list dd .ls {
	letter-spacing: -0.08em;
}

.area_staff .list .note {
	display: block;
	font-size: 0.7em;
}

.area_staff .list .btn_cmt {
    display: block;
    max-width: 14em;
    margin: 0.2em auto 0;
    padding: 0.3em 0;
    background: #bea526;
    border-radius: 1em;
    font-size: 0.7em;
    color: #1c080c;
    text-decoration: none;
    font-weight: 700;
}


@media screen and (max-width: 500px) {
    .area_staff {
        padding: 1em 1.5em 2em;
    }
}





/**********************************************************************

　キャスト、スタッフ：モーダルウィンドウ

**********************************************************************/

.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;
	text-align: center;
	font-weight: 700;
    background-image: url("../images/bg_cmt.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;  
    background-color: #1c080c;
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	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: rgba(255,255,255,0.9);
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {

	background: #dbbe2b;
}

.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: #dbbe2b !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: #fff !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;
    letter-spacing: 0.2;
	text-shadow: 0 0 5px rgba(64,43,34,0.3);
	font-weight: 700;
}

.cast_cmt .name .yaku,
.cast_cmt .name .work{
	display: block;
	margin-bottom: 0.5em;
	font-size: 0.7em;
	color: #dbbe2b;
}

.cast_cmt .name .ls {
    letter-spacing: 0.1em;
}

.cast_cmt .text {
	margin: 0 auto;
	text-align: left;
}

.cast_cmt .text dt {
	background: rgba(255,255,255,0.1);
    text-align: center;
}

.cast_cmt .text dd {
    padding: 1em 0;
    text-align: left;
	color: #fff;
	font-weight: 400;
	font-size: 18rem;
}

@media screen and (max-width: 600px){
	.cast_cmt .name {
		font-size: 24rem;
	}
}





/**********************************************************************

　チケット

**********************************************************************/

.area_ticket{
    display: block;
	width: 100%;
	margin: 0 auto 4em;
    padding: 1em 2em 3em;
    background: rgba(28,8,12,0.8);
    border-radius: 0.5em;
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
}

@media screen and (max-width: 500px){

    .area_ticket{
        padding: 1em 1em 3em;
    }
}

.area_ticket .stage_info {
	margin: 2em auto 3em;
	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: 360px;
	width: 50%;
	margin: 0 auto 3em;
    font-weight: 400;
}

.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;
}

.area_ticket .stage_info .hoshitori img {
	width: 100%;	
}

@media screen and (max-width: 500px){
	.area_ticket .stage_info {
		padding: 1em 0.5em 0;
	}
}

.area_ticket .stage_info .list_price {
	margin: 2em auto 0;

}

.area_ticket .stage_info .list_price caption {
	margin-bottom: 0.3em;
	color: #fff;
	font-size: 1.2em;
}

.area_ticket .stage_info .list_price table {
	table-layout: fixed;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	border: 2px solid #fff;
	line-height: 1.5;
}

.area_ticket .stage_info .list_price th,
.area_ticket .stage_info .list_price td {
	padding: 0.5em;
	border: 1px solid #fff;
	line-height: 1.5;
}

.area_ticket .stage_info .list_price th {
	background: rgba(255,255,255,0.1);
	color: #fff;
}

.area_ticket .stage_info .list_price td {
	height: 4em;
}

@media screen and (max-width: 400px){
	.area_ticket .stage_info .list_price td {
		font-size: 18rem;
	}
}

@media screen and (max-width: 330px){
	.area_ticket .stage_info .list_price {
		font-size: 0.9em;
	}
}

.area_ticket .stage_info > .caution {
	max-width: 900px;
	margin: 3em auto 0;
	padding: 0;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
}
.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 li a {
	color: #dbbe2b;
}

.area_ticket .stage_info .caution li .tele {
	text-decoration: none;
	color: #fff;
}

.area_ticket .stage_info .caution .caution2 {
	padding: 0.5em;
}

.area_ticket .way {
	width: 100%;
	margin: 2em auto 0;
}

.area_ticket .way a {
	color: #402b22;
}

.area_ticket .way {

}

.area_ticket .way > dt {
	padding: 0.5em 1em;
/*	border-top: 1px solid #bea526;
	border-bottom: 1px solid #bea526;*/
    background: rgba(255,255,255,0.1);
	color: #dbbe2b;
	font-size: 22rem;
	line-height: 1.5;
    font-weight: 700;
}

.area_ticket .way > dd {
	padding: 1em 2em;
	line-height: 1.5;
}
.area_ticket .way > dd .caution {
	margin: 2em auto 0;
    font-size: 0.8em;
	font-family: 'Noto Sans JP', sans-serif;
}

.area_ticket .way > dd .caution li {}

.area_ticket .way > dd .caution.left {
    text-align: left;
}

.area_ticket .way > dd .caution.left li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

.area_ticket .way > dd .caution.cen {
    text-align: center;
}

.area_ticket .way > dd .caution.cen li {}

.area_ticket .way .start {
	display: inline-block;
	margin: 1em auto;
	line-height: 1.5;
	font-size: 20rem;
	color: #dbbe2b;
	font-weight: 500;
}

.area_ticket .way .start::before {
	content: "≪";
	margin-right: 0.2em;
}

.area_ticket .way .start::after {
	content: "≫";
	margin-left: 0.2em;
}

@media screen and (max-width: 500px){
	.area_ticket .way > dd {
		padding: 1em 0 0;
	}
}

@media (max-width: 480px) {
	.area_ticket .box_area {
		padding: 1.5em;
	}

	.area_ticket .way > dt {
		font-size: 22rem;
	}
}

@media screen and (max-width: 414px){

	.area_ticket .way > dt{
		font-size: 20rem;
		font-feature-settings: "palt";
	}
	.area_ticket .way > dd{
		padding: 1em 0.5em 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: 440px;
	margin: 0.5em auto 0;
	padding: 0.5em 2em;
	background: #bea526;
    border-radius: 2em;
	color: #1c080c;
	font-weight: 500;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}


.area_ticket .way .toho .btn:hover {
	background: #dbbe2b;
}

.area_ticket .way .toho .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .way .toho .senkou .list {
	table-layout: fixed;
	width: 100%;
	margin: 2em auto 1em;
	border: 1px solid #fff;
	line-height: 1.5;
}

.area_ticket .way .toho .senkou .list th,
.area_ticket .way .toho .senkou .list td {
	padding: 0.5em 1em;
	border: 1px solid #fff;
}

.area_ticket .way .toho .senkou .list th {
	width: 12em;
	background: rgba(255,255,255,0.1);
	color: #fff;
}

.area_ticket .way .toho .senkou .list td {
	height: 4em;
	text-align: left;
}

@media screen and (max-width: 480px){
	.area_ticket .way .toho .senkou .list th,
	.area_ticket .way .toho .senkou .list td {
		padding: 0.5em 0.8em;
	}
	.area_ticket .way .toho .senkou .list th {
		width: 8em;
	}
}

@media screen and (max-width: 420px){
	.area_ticket .way .toho .senkou .list {
	}
	.area_ticket .way .toho .senkou .list th,
	.area_ticket .way .toho .senkou .list td {
		display: block;
		width: 100%;
		text-align: center;
	}

}

.area_ticket .way .toho .senkou .caution {
	margin-top: 0.8em;
	padding: 0 0.8em;
    font-size: 0.9em;
}

/****　としまチケットセンター　****/

.area_ticket .way .toshima .senkou .list {
	table-layout: fixed;
	width: 100%;
	margin: 1em auto 1em;
	border: 1px solid #fff;
	line-height: 1.5;
}

.area_ticket .way .toshima .senkou .list th,
.area_ticket .way .toshima .senkou .list td {
	padding: 0.5em 1em;
	border: 1px solid #fff;
}

.area_ticket .way .toshima .senkou .list th {
	width: 12em;
	background: rgba(255,255,255,0.1);
	color: #fff;
}

.area_ticket .way .toshima .senkou .list td {
	height: 4em;
	text-align: left;
}
.area_ticket .way .toshima .senkou .list a {
    color: #fff;
}

@media screen and (max-width: 480px){
	.area_ticket .way .toshima .senkou .list th,
	.area_ticket .way .toshima .senkou .list td {
		padding: 0.5em 0.8em;
	}
	.area_ticket .way .toshima .senkou .list th {
		width: 8em;
	}
}

@media screen and (max-width: 420px){
	.area_ticket .way .toshima .senkou .list {
	}
	.area_ticket .way .toshima .senkou .list th,
	.area_ticket .way .toshima .senkou .list td {
		display: block;
		width: 100%;
		text-align: center;
	}

}

.area_ticket .way .toshima .senkou .caution {
	margin-top: 0.8em;
	padding: 0 0.8em;
    font-size: 0.9em;
}

.area_ticket .way .toshima .senkou .caution li {
	padding-left: 1em;
    text-indent: -1em;
    text-align: left;
}

/*****　テレザーブ　*****/

.area_ticket .way .tele .tel {
	display: block;
	font-size: 24rem;
	line-height: 1.5;
}

.area_ticket .way .tele .tel a{
	color: #fff;
	text-decoration: none;
}

.area_ticket .way .tele .tel .icon {
	margin-right: 0.2em;
	font-size: 0.9em;
	color: #bea526;
}

.area_ticket .way .tele .tel .note {
	display: inline-block;
	font-size: 0.8em;
}

/*****　プレイガイド　*****/
.area_ticket .way .playguide {
    margin: 1em auto 0;
}

.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: 440px;
	margin: 0.5em auto 0;
	padding: 0.5em 2em;
	background: #bea526;
    border-radius: 2em;
	color: #1c080c;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .way .playguide .btn:hover {
	background: #dbbe2b;
}

.area_ticket .way .playguide .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}


/*****　リセール　*****/

.area_ticket .way .resale p {
	padding: 0 1em;
    text-align: left;
	font-size: 16rem;
}

.area_ticket .way .resale .list {
    margin-top: 1em;
}

.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;
    font-size: 0.9em;
}

.area_ticket .way .resale .list a {
    text-decoration: none;
    color: #bea526;
}

.area_ticket .way .resale .caution {
    margin-top: 1em;
    text-align: left;
}
.area_ticket .way .resale .caution li {
    padding-left: 1em;
    text-indent: -1em;
}

/***　会場案内　***/

.area_ticket .way > dd.kaijyou {
	text-align: center;
}

.area_ticket .kaijyou .logo {
	max-width: 300px;
	width: 80%;
	margin: 1em auto;
    font-weight: 400;
}

.area_ticket .kaijyou .logo img {
	width: 100%;
}
.area_ticket .kaijyou .access {
	display: inline-block;
	margin: 1em auto 0;
	text-align: left;
}

.area_ticket .kaijyou .access li::before {
	content: "・";
	color: #bea526;
}

.area_ticket .kaijyou .list_btn {
    margin: 2em auto 0;
}

.area_ticket .kaijyou .list_btn .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 240px;
    width: 100%;
	margin: 0.5em 0.5em 0;
	padding: 0.5em 2em;
	background: #bea526;
    border-radius: 2em;
	color: #1c080c;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .kaijyou .list_btn .btn:hover {
	background: #dbbe2b;
}

.area_ticket .kaijyou .list_btn .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 480px){

	.area_ticket .kaijyou .access {
		font-size: 15rem;
	}
	
	.area_ticket .kaijyou .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 .kaijyou .list_btn .btn {
		display: block;
		margin: 0 auto;
		padding: 0.5em 1em;
		font-weight: 900;
	}
	.area_ticket .kaijyou .list_btn .btn:not(:last-of-type) {
		margin-bottom: 0.5em;
	}
	.area_ticket .kaijyou .list_btn .btn .in::before {
		content: none;
	}
}


/****************************************
　お問合せ
****************************************/

.area_ticket .way .contact{
    text-align: center;
    line-height: 1.5;
}
.area_ticket .way .contact .office {
    display: inline-block;
    margin-right: 0.2em;
}

.area_ticket .way .contact .tel {
    display: inline-block;
    margin: 0.5em auto 0;
}

.area_ticket .way .contact .tel a{
    color: #fff;
    text-decoration: none;
}

.area_ticket .way .contact .tel .icon {
    margin-right: 0.2em;
    font-size: 0.9em;
	color: #bea526;
}

@media screen and (max-width: 340px){
    .area_ticket .way .contact .caution {
        text-align: left;
        padding-left: 1em;
        text-indent: -1em;
    }
}




/**********************************************************************

　ツアー

**********************************************************************/


.area_tour{
    display: block;
	width: 100%;
	margin: 0 auto 4em;
    padding: 1em 2em 3em;
    background: rgba(28,8,12,0.8);
    border-radius: 0.5em;
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
}

.area_tour .stage_info {
	margin: 0 auto;
	padding: 0 2em 0;
}

.area_tour .stage_info dt {
    margin: 0 auto 1.5em;
	padding: 0.5em 1em;
    background: rgba(255,255,255,0.1);
	color: #dbbe2b;
	font-size: 26rem;
	line-height: 1.5;
    font-weight: 700;
}

.area_tour .stage_info .sch {
	max-width: 619px;
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
}

.area_tour .stage_info .sch img {
	width: 100%;
}

.area_tour .stage_info .theater {
	font-size: 26rem;
}
.area_tour .stage_info .theater a {
	text-decoration: none;
    color: #fff;
}

.area_tour .stage_info .theater {
	max-width: 520px;
	width: 90%;
	margin: 0 auto 1em;
    font-weight: 400;
}

.area_tour .stage_info .theater img {
	display: block;
	width: 100%;
}

.area_tour .stage_info .theater .icon {
    margin-left: 0.3em;
    vertical-align: super;
    font-size: 0.8em;
}
.area_tour .stage_info .hoshitori {
	max-width: 260px;
	width: 50%;
	height: auto;
	margin: 1em auto;
}

.area_tour .stage_info .hoshitori img {
	width: 100%;	
}

.area_tour .stage_info .contact {
    margin: 1em auto;
}

.area_tour .stage_info .contact .lbl {
    display: inline-block;
    margin-right: 0.5em;
}
.area_tour .stage_info .contact .office {
    display: inline-block;
    margin-right: 0.5em;
}
.area_tour .stage_info .contact .office::before {
    content: "［";
}
.area_tour .stage_info .contact .office::after {
    content: "］";
}
.area_tour .stage_info .contact .tel {
    display: inline-block;
    margin-right: 0.5em;
}
.area_tour .stage_info .contact .tel a {
    color: #fff;
    text-decoration: none;
}

.area_tour .stage_info .btn {
    display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 440px;
    width: 100%;
	margin: 1.5em auto 1em;
	padding: 0.5em 2em;
	background: #bea526;
    border-radius: 2em;
	color: #1c080c;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_tour .stage_info .btn:hover {
	background: #dbbe2b;
}

.area_tour .stage_info .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_tour .stage_info .caution {
    font-size: 0.9em;
}

@media screen and (max-width: 500px){
	.area_tour .stage_info {
		padding: 1em 0 0;
	}
}

