@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
***/

/***色
黄色　#e7fa18;
茶色　#130b0a;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #e7fa18;
    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: 500;
	background: #130b0a;
}

body:after {
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
   
}

@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;
}

.box {
    padding: 0 1em;
}

/****************************************

　ナビ

*****************************************/

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background:#e7fa18;
	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: #130b0a;
  	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{
	min-height: 120px;
	width:100%;
	padding: 1em 0;
	display: flex;
	justify-content: center;
	align-items: center;
/*	background: #151f4c;*/
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi ul {
    margin: 0 1em;
    padding: 5px 0 5px; 
    font-size: 24rem;
    line-height: 1.3;
    vertical-align: top;
	font-family: 'Noto Sans JP', sans-serif; 
}

#g-navi ul .res_nav {
	display: none;
}

#g-navi ul li {
    display: inline-block;
    margin: 0 0.5em;
    padding: 5px 0 5px; 
    font-size: 26rem;
    line-height: 1.3;
    vertical-align: top;
}


#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
	color: #fff;
}


#g-navi ul li .en {
	display: block;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
	color: #fff;
	font-weight: 700;
	transition: 0.5s;
}

#g-navi ul li:hover .en {
}

#g-navi ul li .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

#g-navi ul li .jp {
	display: block;
	font-size: 0.4em;
	color: #e7fa18;
	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: 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){
/*	#header{
		height: 100px;
	}*/

	#g-navi ul .res {
		display: inline;
	}

}
@media screen and (max-width: 420px){

	#g-navi ul li {
		font-size: 20rem;
	}
}
@media screen and (max-width: 320px){

	#g-navi ul li {
		font-size: 18rem;
	}
}


/*.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;
	display: none;
}

#header.dnone #g-navi ul .res_nav {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background: rgba(35,24,22,0.9);
	width:100%;
	height: 100vh;
	display: flex;
}

#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{
/*	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: 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: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #e7fa18;
	line-height: 1;
}

#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;
/*	background: #151f4c;*/
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

.footer .copy {
	display: block;
	padding: 1em;
    font-weight: 700;
	font-style: normal;
	line-height: 1.5;
}

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: 3em;
    margin-top: -3em;
}

@media screen and (max-width: 450px){

	.anchor {
		padding-top: 5em;
		margin-top: -5em;
	}
}

.sec {
    margin: 0 auto;
    padding: 0 1em;
	color: #fff;
}

.sec .inner {
    margin: 0 auto;
}

@media screen and (max-width: 500px){
}

/****************************************

　見出し

*****************************************/
.heading_page {
	margin: 0 auto 1em;
    padding: 1em 0;
    background: rgba(255,255,255,0.1);
	font-size: 50rem;
	color: #fff;
	line-height: 1.3;
    font-family: 'Noto Sans JP', sans-serif; 
    text-shadow: 5px 5px 5px rgba(0,0,0,0.9);

}

.heading_page .en {
	font-weight: 700;
	display: block;
	color: #fff;
}

.heading_page .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

.heading_page .jp {
	display: block;
	color: #e7fa18;
	font-size: 0.4em;
}




@media screen and (max-width: 480px){
	.heading_page {
		font-size: 30rem;
	}
}


@media screen and (max-width: 300px){
	.heading_page {
		font-size: 24rem;
	}
}


/****************************************

　ビジュアル

*****************************************/

.area_visual {
    display: flex;
    justify-content: center;
    align-items: center;  
    max-width: 1200px;
    max-height: 80vh;
/*    height: calc(100vh - 300px);*/
    margin: 0 auto;
}

.area_visual img {
	display: block;
    width: 100%;
    max-height: 80vh;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
    .area_visual {
        height: calc(100vh - 300px);
    }
}


/**********************************************************************

　イントロダクション

**********************************************************************/

.area_intro {
	margin: 2em auto;
}

.area_intro .box {
	max-width: 900px;
	margin: 0 auto;
}
.area_intro .box .catch {
    margin: 1.5em auto;
	font-size: 1.5em;
	line-height: 1.5;
    font-weight: 900;
    color: #e7fa18;
}

.area_intro .box .catch .l1 {
    margin: 0 auto 0.5em;
    font-size: 1.3em;
}
.area_intro .box .catch .exc {
    display: inline-block;
    margin-left: 0.1em;
    transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    font-size: 1.2em;
}
.area_intro .box .catch .name {
    display: inline-block;
    font-size: 1.2em;
    vertical-align: top;
    line-height: 1.1;

}
.area_intro .box .catch .meets {
    vertical-align:middle;
}
.area_intro .box .catch .note {
    display: block;
    font-size: 0.5em;
}
.area_intro .box .catch .point {
    font-size: 1.3em;
/*    color: #e7fa18;*/
}
.area_intro .box .text {
	text-align: left;
	line-height: 2.5;
}
.area_intro .box .text p:not(:last-of-type) {
    margin-bottom: 1em;
}

@media screen and (max-width: 900px){
	.area_intro .box {
		width: 90%;
	}
}
@media screen and (max-width: 500px){
	.area_intro .box .text {
		line-height: 2;
	}
}


/**********************************************************************

　ストーリー

**********************************************************************/

.area_story {
	margin: 2em auto;
}

.area_story .box {
	max-width: 900px;
	margin: 0 auto;
}

.area_story .box .text {
	text-align: left;
}

.area_story .box .text .point {
	text-align: left;
    color: #e7fa18;
}

@media screen and (max-width: 900px){
	.area_story .box {
		width: 90%;
	}
}
@media screen and (max-width: 500px){

}


/**********************************************************************

　キャスト

**********************************************************************/

.area_cast {
	margin: 2em auto;
}

.area_cast .box {
	margin: 0 auto;
}

.area_cast .btn_cmt {
    display: block;
    max-width: 8em;
    margin: 0.2em auto 0;
    padding: 0.2em 0;
    background: #e7fa18;
    border: 1px solid #e7fa18;
    color: #130b0a;
    line-height: 1;
    font-weight: 700;
    font-size: 0.6em;
    transition: 0.5s;
}

.area_cast .btn_cmt:hover {
    background: none;
    border: 1px solid #e7fa18;
    color: #e7fa18;
}

.area_cast .list_p1 {
	margin: 4em auto 4em;
	font-size: 1.5em;
	line-height: 1.3;
}

.area_cast .list_p1 li {
	margin: 0 auto 2em;
}

.area_cast .list_p1 .yaku {
    font-size: 0.6em;
    color: #e7fa18;
}

.area_cast .list_p1 .name {
}

.area_cast .list_p1 .photo {
	display: block;
	max-width: 300px;
	margin: 0 auto 0.3em;
}

.area_cast .list_p1 .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_cast .list_p2 {
    max-width: 700px;
	margin: 0 auto 3em;
	font-size: 1.5em;
	line-height: 1.3;
}

.area_cast .list_p2 li {
	display: inline-block;
	margin: 0 0.25em 2em;
}

.area_cast .list_p2 .yaku {
    font-size: 0.6em;
    color: #e7fa18;
}

.area_cast .list_p2 .name {
}

.area_cast .list_p2 .photo {
	display: block;
	max-width: 300px;
	margin: 0 auto 0.3em;
}

.area_cast .list_p2 .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

/*.area_cast .list_p2 li.emp {
    display: none;
	margin: 0 0.25em 2em;
}
*/

@media screen and (max-width: 1000px){
    .area_cast .list_p1 .photo {
        max-width: 240px;
	}
    .area_cast .list_p2 {
        max-width: 740px;
        margin-bottom: 0;
    }
	.area_cast .list_p2 .photo {
        max-width: 240px;
	}
	.area_cast .list_p2 .pk {
        display: inline;
	}
/*
    .area_cast .list_p2 li.emp {
        display: inline-block;
        width: 100%;
        max-width: calc(190px - 2em);
    }
*/
}

@media screen and (max-width: 630px){
/*
    .area_cast .list_p2 li.emp {
        max-width: calc(240px);
    }*/

    .area_cast .list_p1 .photo {
        max-width: 200px;
	}
	.area_cast .list_p2 .photo {
        max-width: 200px;
	}
/*    .area_cast .list_p2 .res {
        display: inherit;
    }*/
}

@media screen and (max-width: 480px){
	.area_cast .list_p1 {
		font-size: 1.3em;
	}
	.area_cast .list_p2 {
		font-size: 1.3em;
	}

    .area_cast .list_p1 .photo {
        max-width: 160px;
	}
	.area_cast .list_p2 .photo {
        max-width: 160px;
	}
/*
    .area_cast .list_p2 li.emp {
        max-width: calc(200px);
    }    */
}

@media screen and (max-width: 400px){
    .area_cast .list_p1 .photo {
        max-width: 140px;
	}
	.area_cast .list_p2 .photo {
        max-width: 140px;
	}

}

@media screen and (max-width: 360px){
	.area_cast .list_p1 {
		font-size: 1.2em;
	}
	.area_cast .list_p2 {
		font-size: 1.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: 800px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background: rgba(19,11,10,0.9);
    border: 1px solid #e7fa18;
	text-align: center;
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	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: #fff;
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: rgba(153,143,133,0.9);
	
}

.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: #e7fa18 !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: 1.7em;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2;
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
}

.cast_cmt .text {
	margin: 0 auto;
}

.cast_cmt .text {
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
    text-align: left;
	color: #fff;
}
.cast_cmt .text p:not(:last-of-type){
	margin-bottom: 1em;
}

@media screen and (max-width: 600px){
	.cast_cmt .name {
		font-size: 1.5em;
	}
}
@media screen and (max-width: 360px){
	.cast_cmt .name {
		font-size: 1.2rem;
	}
}


/**********************************************************************

　クリエイティブ

**********************************************************************/


.area_creative {
	margin: 2em auto 6em;
}

.area_creative .box {
	margin: 0 auto;
}

.area_creative .list {
	font-size: 1.5em;
	line-height: 1.3;
}
.area_creative .list:first-of-type {
    margin-top: 3em;
}
.area_creative .list:not(:last-of-type) {
    margin-bottom: 3em;
}

.area_creative .list li {
	margin: 0 auto 1em;
}

.area_creative .list .work {
    display: block;
    font-size: 0.6em;
    color: #e7fa18;
}

.area_creative .list .name {
    display: block;
}

.area_creative .list .name .item {
    display: inline-block;
    vertical-align: top;
}
.area_creative .list .name .item:not(:last-of-type)::after {
    content: "／";
}
.area_creative .list .name .item .office {
    display: block;
    font-size: 0.6em;
}

@media screen and (max-width: 480px){
	.area_creative .list {
		font-size: 1.3em;
	}
}
@media screen and (max-width: 360px){
	.area_creative .list {
		font-size: 1.2rem;
	}
}


/**********************************************************************

　チケット＆スケジュール

**********************************************************************/

.area_ticket {
	margin: 2em auto;
}

.area_ticket .btn_area {
	margin: 3em auto 0;
}

.area_ticket .btn_area .btn {
	position: relative;
	display: inline-block;
	max-width: 8em;
	width: 90%;
	margin: 0 0.5em 0.5em;
    background: #e7fa18;
	border: 2px solid #e7fa18;
	font-size: 30rem;
	font-weight: 700;
    color: #130b0a;
	text-decoration: none;
	transition: 0.5s;
}

.area_ticket .btn_area .btn:hover {
    background: none;
	color: #e7fa18;
}

.area_ticket .btn_area .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 500px){
	.area_ticket .btn_area .btn {
		border: 2px solid #e7fa18;
		font-size: 24rem;

	}
}

@media screen and (max-width: 380px){
	.area_ticket .btn_area .btn {
		max-width: 90%;

	}
}
.area_ticket .box {
	max-width: 900px;
	margin: 2em auto;
	padding: 1.5em 1em 1em;
	background: rgba(255,255,255,0.1);
}
.area_ticket .title_area {
    margin: 0 auto;
    font-size: 3em;
	color: #e7fa18;
}

@media screen and (max-width: 520px){
    .area_ticket .title_area {
        font-size:max(8vw,24rem);
    }

}

.area_ticket .stage_info {
/*	max-width: 900px;*/
	margin: 1em auto 3em;
	padding: 1em 1em 0;
}

.area_ticket .stage_info .sch {
	max-width: 600px;
	width: 95%;
	height: auto;
	margin: 0 auto;
}

.area_ticket .stage_info .theater {
    font-size: 2.5em;
	margin: 0 auto 0.5em;
}

.area_ticket .stage_info .theater a {
    color: #fff;
    transition: 0.5s;
}
.area_ticket .stage_info .theater img {
	display: block;
	width: 100%;	
}
.area_ticket .stage_info .theater .icon {
    margin-left: 0.2em;
    vertical-align: super;
    font-size: 0.6em;
	color: #e7fa18;
}
.area_ticket .stage_info .theater:hover a {
	color: #e7fa18;
}
.area_ticket .stage_info .hoshitori {
	max-width: 700px;
	margin: 0 auto;
}
.area_ticket .stage_info .hoshitori img {
	width: 100%;	
}

@media screen and (max-width: 520px){
    .area_ticket .stage_info {
        padding: 1em 0 0;
    }
    .area_ticket .stage_info .theater {
        font-size:max(5vw,18rem);
    }

}


.area_ticket .stage_info > .caution {
	max-width: 900px;
	margin: 3em auto 0;
	padding: 0 1em;
	text-align: left;
	font-weight: 400;
}
.area_ticket .stage_info .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.9em;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
}

.area_ticket .stage_info .caution a {
	color: #fff;
	text-decoration: none;
}

.area_ticket .stage_info .contact {
	width: 100%;
	margin: 1.5em auto 0;
}
.area_ticket .stage_info .contact dt {
	
}
.area_ticket .stage_info .contact table {
	width: 100%;
	line-height: 1.5;
}

.area_ticket .stage_info .contact th,
.area_ticket .stage_info .contact td {
	padding: 1em;
	border: 1px solid #fff;
	font-weight: normal;
}
.area_ticket .stage_info .contact th {
	white-space: nowrap;
}
.area_ticket .stage_info .contact td {
	text-align: left;
}
.area_ticket .stage_info .contact a {
	color: #fff;
	text-decoration: underline;
}

@media (max-width: 470px) {
	.area_ticket .stage_info .contact th,
	.area_ticket .stage_info .contact td {
		display: block;
		width: 100%;
		text-align: center;
	}
	.area_ticket .stage_info .contact th {
		margin-top: 1em;
	}
	.area_ticket .stage_info .contact td {
		border-top: none;
	}
}

.area_ticket .way {
	max-width: 900px;
	margin: 0 auto 2em;
/*	padding: 1em;
	background: rgba(255,255,255,0.1);*/
}

.area_ticket .way a {
    color: #e7fa18;
	text-decoration: none;
}

.area_ticket .way .s {
	font-size: 0.9em;
    font-weight: 900
}

.area_ticket .way > dt{
	padding: 0.5em 1em;
	background: #e7fa18;
    font-size: 1.2em;
    text-align: center;
	line-height: 1.5;
	color: #130b0a;
    font-weight: 700;
}

.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;
	font-weight: 400;
}

.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: block;
	margin: 1em auto;
	line-height: 1.5;
	font-size: 1.1em;
	color: #fff;
}

@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;
	display: inline-block;
	max-width: 400px;
	width: 90%;
	margin: 1em auto 0;
	border: 2px solid #e7fa18;
	font-size: 1.5em;
    color: #e7fa18;
	text-decoration: none;
	transition: 0.5s;
}

.area_ticket .way .toho .btn:hover {
    background: #e7fa18;
    color: #130b0a;
}

.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: #fff;
	font-style: normal;
}
.area_ticket .way .toho .senkou dd {
	margin-bottom: 1em;
	padding: 1em 0.5em;
	border: 2px solid #ccc;
	font-size: 20rem;
}

@media screen and (max-width: 414px){
    .area_ticket .way .toho .pc {
        font-size: 24rem;
        line-height: 1.5;
    }
}


@media screen and (max-width: 413px){
    .area_ticket .way .toho .senkou dd {
        font-size: 18rem;
    }
}
	
@media screen and (max-width: 375px){
    .area_ticket .way .toho .pc {
        font-size: 24rem;
    }    
}
@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;
	font-weight: 700;
	font-style: normal;
}

.area_ticket .way .playguide dd {
	margin-bottom: 1em;
	padding: 1em 0.5em;
	border: 2px solid #e7fa18;
	font-size: 20rem;
	word-break: break-all;
	line-height: 1.5;
}

.area_ticket .way .playguide a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .way .playguide .btn {
	position: relative;
	display: inline-block;
	max-width: 400px;
	width: 90%;
	margin: 0 auto 0.5em;
	border: 2px solid #e7fa18;
	font-size: 1.1em;
    color: #e7fa18;
	text-decoration: none;
	transition: 0.5s;
}

.area_ticket .way .playguide .btn:hover {
    background: #e7fa18;
    color: #130b0a;
}

.area_ticket .way .playguide .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}


@media screen and (max-width: 480px){

    .area_ticket .way .playguide dd {
        font-size: 18rem;
    }

}

@media screen and (max-width: 414px){

    .area_ticket .way .playguide dd {
        font-size: 16rem;
    }
}

@media screen and (max-width: 365px){
}

/***　テレザーブ　***/

.area_ticket .way.toho_t > dd {}

.area_ticket .way .toho_t .office {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 20rem;
}

.area_ticket .way.toho_t > dd .tel {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 24rem;
}

.area_ticket .way .toho_t .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .way.toho_t > dd .tel .note {
	margin-left: 0.2em;
	font-size: 0.7em;
}

.area_ticket .way.toho_t > dd .tel .icon {
	margin-right: 0.2em;
	font-size: 0.8em;
    color: #e7fa18;
}

/***　会場案内　***/

.area_ticket .way > dd.kaijyou {
	text-align: center;
}

.area_ticket .way > dd.kaijyou .list dt  {
	color: #fff;
	font-size: 24rem;
}

.area_ticket .way > dd.kaijyou .list dd {}

.area_ticket .way > dd.kaijyou .list a {
	color: #fff;
}

.area_ticket .way > dd.kaijyou .theater {
	margin: 1em auto;
    font-size: 1.5em;
}

.area_ticket .way > dd.kaijyou .theater a {
    color: #fff;
    transition: 0.5s;
}

.area_ticket .way > dd.kaijyou .theater .icon {
    margin-left: 0.2em;
    vertical-align: super;
    font-size: 0.6em;
	color: #e7fa18;
}
.area_ticket .way > dd.kaijyou .theater:hover a {
	color: #e7fa18;
}

.area_ticket .way > dd.kaijyou .list .tel,
.area_ticket .way > dd.kaijyou .list .url,
.area_ticket .way > dd.kaijyou .list .add {
	display: block;
	margin: 0.2em 0.5em;
	font-size: 18rem;
	line-height: 1.5;
}

.area_ticket .way > dd.kaijyou .list .tel .icon {
	margin-right: 0.3em;
}

.area_ticket .way > dd.kaijyou .list .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .list_btn .btn {
    position: relative;
	display: inline-block;
	max-width: 200px;
    width: 100%;
	margin: 1em 0.5em 0.5em;
	padding: 0.5em 1em;
	text-decoration: none;
	border: 2px solid #e7fa18;
    color: #e7fa18;
	line-height: 1;
	transition: 0.5s;
}

.area_ticket .list_btn .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .list_btn .btn:hover {
    background: #e7fa18;
    color: #130b0a;
}


@media screen and (max-width: 540px){

	.area_ticket .list_btn .btn {
        max-width: 140px;
		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 {
        margin-top: 1em;
    }
	.area_ticket .list_btn .btn {
		display: block;
		margin: 0 auto;
		padding: 0.5em 1em;
	}
	.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 > dd.contact {}

.area_ticket .way dd.contact .office {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 20rem;
}

.area_ticket .way > dd.contact .tel {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 24rem;
}

.area_ticket .way dd.contact .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .way > dd.contact .tel .note {
	margin-left: 0.2em;
	font-size: 0.7em;
}

.area_ticket .way > dd.contact .tel .icon {
	margin-right: 0.2em;
	font-size: 0.8em;
}



/**********************************************************************

　ツアー

**********************************************************************/

.area_tour .box {
	max-width: 900px;
	margin: 0 auto;
	padding: 1em;
	background: rgba(255,255,255,0.1);
}
.area_tour .title_area {
    margin: 0.5em auto 0;
    font-size: 3em;
	color: #e7fa18;
}
.area_tour .stage_info {
	margin: 1em auto 3em;
	padding: 1em 1em 0;
}

.area_tour .stage_info .sch {
	max-width: 600px;
	width: 95%;
	height: auto;
	margin: 0 auto 1em;
}

.area_tour .stage_info .theater {
    margin: 0 auto 1em;
	font-size: 1.6em;
    font-weight: 700;
    line-height: 1.5;
}

.area_tour .stage_info .theater a{
    color: #fff;
    transition: 0.5s;
}

.area_tour .stage_info .theater .icon {
    margin-left: 0.2em;
    vertical-align: super;
    font-size: 0.6em;
	color: #e7fa18;
}

.area_tour .stage_info .theater a:hover{
	color: #e7fa18;
}

.area_tour .stage_info .hoshitori {
	max-width: 300px;
    width: 70%;
	margin: 0 auto;
}
.area_tour .stage_info .hoshitori img {
	width: 100%;	
}

@media screen and (max-width: 520px){
    .stage_info .stage_info {
        padding: 1em 0 0;
    }
    .stage_info .stage_info .theater {
        font-size:max(5vw,18rem);
    }

}


.area_tour .way {
	max-width: 900px;
	margin: 2em auto 0;
/*	padding: 1em;
	background: rgba(255,255,255,0.1);*/
}

.area_tour .way a {
    color: #e7fa18;
	text-decoration: none;
}

.area_tour .way .s {
	font-size: 0.9em;
    font-weight: 900
}

.area_tour .way > dt{
	padding: 0.5em 1em;
	background: #e7fa18;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
	color: #130b0a;
	font-weight: 900;
}

.area_tour .way > dd{
	padding: 1em 2em;
	border-top: none;
	text-align: center;
}

/***　お問い合わせ　***/

.area_tour .way > dd.contact {}

.area_tour .way dd.contact .office {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 20rem;
}

.area_tour .way > dd.contact .tel {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 24rem;
}

.area_tour .way dd.contact .tel a {
	text-decoration: none;
	color: #fff;
}

.area_tour .way > dd.contact .tel .note {
	margin-left: 0.2em;
	font-size: 0.7em;
}

.area_tour .way > dd.contact .tel .icon {
	margin-right: 0.2em;
	font-size: 0.8em;
}

/***************************************************

　ムービー

**************************************************/

.area_movie {}

.area_movie .list {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto;
/*    padding: 10px;*/
}

.area_movie .list.center {
    justify-content: center;
}

.area_movie .item{
    width: 100%;
    justify-content: center;
	max-width: 900px;
    margin-bottom: 4em;
    margin: 0 auto 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_movie .name {
    margin-bottom: 0.5em;
    padding: 0.3em 1em;
    font-size: 20rem;
    color: #fff;
	font-weight: 500;
    line-height: 1.3;
	text-align: center;
}

.area_movie .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.area_movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #e7fa18;  
}

@media screen and (max-width: 768px){
    .area_movie .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_movie .item{
        margin: 0 auto 2em;
    }
	.area_movie .name {
		margin-bottom: 0;
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_movie .name {
        font-size: 16rem;
		font-weight: 700;

    }
    .area_movie .list {
       /* margin-bottom: 10px;*/
    } 
}
