@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
***/

/***色
黒　#061c35; rgba(6,28,53,1);
金　#e3c567;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #e3c567;
    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: 16em;
	line-height:2;
	color:#fff;
	font-family: 'Noto Serif JP', serif;
    font-weight: 400;
	font-feature-settings: "palt";
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #163560;
}

body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;  
    background-color: #163560;
}


@media (orientation: portrait) { /**　画面が縦長の時　**/
   
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}



/*****メインコンテンツ*****/

.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:#e3c567;
	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: #061c35;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 120px;
	width:100%;
	padding: 1em 0;
	display: flex;
	justify-content: center;
	align-items: center;
/*	background: #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 Serif JP', 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;
	text-shadow: 0 0 20px rgba(114,148,222,0.5),0 0 10px rgba(114,148,222,0.9),0 0 10px rgba(114,148,222,0.9);
	transition: 0.5s;
}

#g-navi ul li:hover .en {
	text-shadow: 0 0 50px rgba(114,148,222,0.9),0 0 50px rgba(114,148,222,0.9),0 0 10px rgba(114,148,222,0.9),0 0 10px rgba(114,148,222,0.9);
}

#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: #e3c567;
	font-weight: 700;
	text-shadow: 0 0 20px rgba(114,148,222,0.5),0 0 20px rgba(114,148,222,0.9),0 0 20px rgba(114,148,222,0.9);
	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(6,28,53,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: #e3c567;
	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: 2em 0 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: 3em 1em;
	color: #fff;
}

.sec:first-of-type {
	padding: 0 1em 1em;
}


.sec .inner {
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 500px){
}

/****************************************

　見出し

*****************************************/
.heading_sec {
	margin: 0 auto 1em;
	font-size: 50rem;
	color: #fff;
	line-height: 1.3;
	font-family: 'Noto Serif JP', serif;

}

.heading_sec .en {
	font-weight: 700;
	display: block;
	color: #fff;
	text-shadow: 0 0 20px rgba(114,148,222,0.5),0 0 10px rgba(114,148,222,0.9),0 0 10px rgba(114,148,222,0.9);
}

.heading_sec .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

.heading_sec .jp {
	display: block;
	color: #e3c567;
	font-size: 0.4em;
	text-shadow: 0 0 20px rgba(114,148,222,0.5),0 0 20px rgba(114,148,222,0.9),0 0 20px rgba(114,148,222,0.9);
}

.sec.c2 .heading_sec .en {
	display: block;
	color: #151f4c;
}
.sec.c2 .heading_sec .jp {
	display: block;
	color: #061c35;
	font-size: 0.5em;
}




@media screen and (max-width: 480px){
	.heading_sec {
		font-size: 30rem;
	}
}


@media screen and (max-width: 300px){
	.heading_sec {
		font-size: 24rem;
	}
}


/****************************************

　ビジュアル

*****************************************/

.area_visual {
	margin: 0 auto 5em;
}

/*****　お知らせ系ボタン　*****/

.area_visual .btn_area {
	margin: 0 auto 1em;
	font-family: 'Noto Serif JP', serif; 
}

.area_visual .btn_area .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 800px;
	width: 100%;	
	margin: 0 auto 0.5em;
	padding: 0.5em 1.3em 0.5em 1.5em;
	border: 2px solid #fff;
	background: #fff;
	color: #061c35;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 20rem;
	text-align: center;
	line-height: 1.3;
	transition: 0.5s;
}

.area_visual .btn_area .btn:hover {
	background: none;
	color: #fff;
}

@media screen and (max-width: 540px){
	.area_visual .btn_area .btn {
		font-size: 18rem;
	}

}
@media screen and (max-width: 360px){
	.area_visual .btn_area .btn {
		font-size: 16rem;
	}

}

.area_visual .visual {
	width: 100%;;	
	max-width: 900px;
	margin: 0 auto;
}

.area_visual .visual img {
    display: block;
	width: 100%;
	height: auto;
}



/**********************************************************************

　メッセージ

**********************************************************************/

.area_msg {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 2em auto;
}

.area_msg .box {
	margin: 0 auto;
}

.area_msg .box .text {
	text-align: left;
	font-size: 18rem;
	line-height: 2.5;
}
.area_msg .box .text p {
	margin: 0 auto 1em;
}
.area_msg .box .sign {
	margin: 1em auto 0;
	text-align: right;
}

@media screen and (max-width: 900px){
	.area_msg .box {
		width: 90%;
	}
}
@media screen and (max-width: 500px){
	.area_msg .box .text {
		line-height: 2;
	}
}

/**********************************************************************

　イントロダクション

**********************************************************************/

.area_intro {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 2em auto;
}

.area_intro .box {
	margin: 0 auto;
}

.area_intro .box .text {
	text-align: left;
	font-size: 18rem;
	line-height: 2.5;
}

@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_cast {
	max-width: 1200px;
	margin: 2em auto;
}

.area_cast .box {
	margin: 0 auto;
}

.area_cast .list {
	display: inline-block;
	margin: 0 auto;
	font-size: 24rem;
	line-height: 1.3;
}

.area_cast .list:first-of-type {
	margin: 1em auto 0;
}
.area_cast .list:not(:last-of-type)::after {
	content: "/";
	margin: 0 0.5em;
}

.area_cast .list li {
	display: inline-block;
	margin: 0 0.5em 1em;
}

.area_cast .list .name {
	text-shadow: 0 0 20px rgba(2,84,137,0.8);
}

.area_cast .list .photo {
	display: block;
	max-width: 300px;
	width: 80%;
	margin: 0 auto 0.3em;
	box-shadow: 0 0 100px rgba(2,84,137,0.8);
	border: 1px groove #38b1ff;
}

.area_cast .list .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

@media screen and (max-width: 640px){
	.area_cast .list {
		font-size: 20rem;
	}
}

@media screen and (max-width: 390px){
	.area_cast .list li {
		margin: 0 0.25em 1em;
	}

}
@media screen and (max-width: 360px){
	.area_cast .list {
		font-size: 18rem;
	}
}
@media screen and (max-width: 320px){
	.area_cast .list {
		display: block;
		margin: 0 auto 2em;
	}
	.area_cast .list:first-of-type {
		margin: 1em auto 2em;
	}
	.area_cast .list:not(:last-of-type)::after {
		content: none;
		margin: 0 auto 2em;
	}
	.area_cast .list li {
		display: block;
		margin: 0 auto 1em;
	}

}

/**********************************************************************

　スタッフ

**********************************************************************/


.area_staff {
	max-width: 900px;
	margin: 2em auto 6em;
}

.area_staff .box {
	margin: 0 auto;
}

.area_staff .list {
	margin: 0 auto;
	font-size: 20rem;
}

.area_staff .list:not(:last-of-type) {
	margin-bottom: 2em;
}

.area_staff .list::after{
  content: "";
  display: block;
  clear: both;
}

.area_staff .list .work {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 48%;
	margin: 0;
	padding-right: 0.5em;
	text-align: right;
	color: #e3c567;
	vertical-align: top;
}

.area_staff .list .name {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 48%;
	margin: 0;
	padding-left: 0.5em;
	text-align: left;
}

@media screen and (max-width: 780px){
	.area_staff .list:not(:last-of-type) {
		margin-bottom: 3em;
	}
	.area_staff .list .work {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding-right: 0;
		text-align: center;
		line-height: 1.5;
		font-size: 0.8em;
	}

	.area_staff .list .name {
		width: 100%;
		margin: 0 auto 1em;
		padding-left: 0;
		text-align: center;
		line-height: 1.5;
	}

	.area_staff .list dd:not(:last-of-type) {
		margin-bottom: 1em;
	}

}


/**********************************************************************

　チケット＆スケジュール

**********************************************************************/

.area_ticket {
	max-width: 900px;
	margin: 2em auto;
}

.area_ticket .box {
	margin: 0 auto;
}

.area_ticket .stage_info {
/*	max-width: 900px;*/
	margin: 2em auto 3em;
	padding: 1em 2em 0;
}

.area_ticket .stage_info .sch {
	max-width: 700px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
/*.area_ticket .stage_info .sch:not(:last-of-type) {
	margin: 0 auto 3em;
}*/

.area_ticket .stage_info .theater {
	max-width: 353px;
	width: 50vw;
	margin: 1em auto 3em;
}
.area_ticket .stage_info .theater img {
	display: block;
	width: 100%;	
}

.area_ticket .stage_info .hoshitori {
	max-width: 600px;
	margin: 0 auto;
}
.area_ticket .stage_info .hoshitori img {
	width: 100%;	
}
/*.area_ticket .stage_info .theater {
	margin: 1em auto 0;
	font-size: 24rem;
}
.area_ticket .stage_info .theater a{
	text-decoration: none;
	color: #fff;
}*/
@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 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 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		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;
/*	border: 2px solid #e3c567;*/
	background: rgba(114,148,222,0.2);
	border-radius: 5px;
}

.area_ticket .way a {
    color: #e3c567;
	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.5em 1em;
	background: #e3c567;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
	color: #061c35;
	font-weight: 900;
}

.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: 20rem;
	color: #fff;
	font-weight: 700;
}

@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 .pc {
	margin-top: 0.5em;
	position: relative;
	font-size: 30rem;
	line-height: 40px;
}

.area_ticket .way .toho .pc a{
	text-decoration: none;
	color: #fff;font-weight: 700;
}

.area_ticket .way .pc .icon {
	margin-right: 0.3em;
	font-size: 0.8em;
}

.area_ticket .way .toho .senkou {
	margin: 2em auto 0;
}

.area_ticket .way .toho .senkou dt {
	color: #fff;
	font-weight: 700;
	font-style: normal;
}
.area_ticket .way .toho .senkou dd {
	margin-bottom: 1em;
	padding: 1em 0.5em;
	border: 2px solid #e3c567;
	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 #e3c567;
	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 .pc {
    margin-bottom: 0.5em;
}
.area_ticket .way .playguide .tel {
    display: inline-block;
    margin-bottom: 0.5em;
	color: #fff;
}
.area_ticket .way .playguide .time {
    display: inline-block;
    margin-left: 0.5em;
    font-size: 0.8em;
}

.area_ticket .way .playguide .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #061c35;
}
.area_ticket .way .playguide .code {
	display: inline-block;
    font-size: 0.9em;
}


@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 .playguide .pc {
        font-size: 18rem;
    }
}

/***　テレザーブ　***/

.area_ticket .way > dd.tele {}

.area_ticket .way .tele .office {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 20rem;
}

.area_ticket .way > dd.tele .tel {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 24rem;
}

.area_ticket .way .tele .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .way > dd.tele .tel .note {
	margin-left: 0.2em;
	font-size: 0.7em;
}

.area_ticket .way > dd.tele .tel .icon {
	margin-right: 0.2em;
	font-size: 0.8em;
}

/***　会場案内　***/

.area_ticket .way > dd.kaijyou {
	text-align: center;
}

.area_ticket .way > dd.kaijyou .list dt  {
	color: #fff;
	font-weight: 700;
	font-size: 24rem;
}
/*.area_ticket .way > dd.kaijyou .list dt a {
	transition: 0.5s;
}
.area_ticket .way > dd.kaijyou .list dt a:hover  {
	text-decoration: underline;
}
.area_ticket .way > dd.kaijyou .list dt .icon  {
	margin-left: 0.2em;
	font-size: 0.8em;
}*/
.area_ticket .way > dd.kaijyou .list dd {}

.area_ticket .way > dd.kaijyou .list a {
	color: #fff;
}

.area_ticket .way > dd.kaijyou .theater {
	max-width: 353px;
	width: 60vw;
	margin: 1em auto;
}
.area_ticket .way > dd.kaijyou .theater img {
	display: block;
	width: 100%;	
}

.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 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 200px;
	margin: 1em auto;
	padding: 0.5em 1em;
	text-decoration: none;
	border: 2px solid #fff;
	border-radius: 3px;
	color: #fff;
	line-height: 1;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .list_btn .btn .icon {
	margin-right: 0.3em;	
}


@media screen and (max-width: 480px){

	.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 > 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 {
	max-width: 900px;
	margin: 2em auto;
}

.area_tour .box {
	max-width: 900px;
	margin: 0 auto 2em;
	padding: 3em 2em 2em;
/*	border: 2px solid #e3c567;*/
	background: rgba(114,148,222,0.2);
	border-radius: 5px;
}

.area_tour .day {
	display: block;
	margin: 0 auto;
}

.area_tour .sch {
	display: block;
	max-width: 600px;
	width: 80%;
	margin: 0 auto 0.5em;
}
.area_tour .sch img {
	display: block;
	width: 100%;
}

.area_tour .area {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 30rem;
}

.area_tour .theater {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 30rem;
}

.area_tour .hoshitori {
	display: block;
	max-width: 600px;
	margin: 1em auto 0;
}
.area_tour .hoshitori img {
	display: block;
	width: 100%;	
}


.area_tour .theater a {
	text-decoration: none;
	color: #fff;
	transition: 0.5s;
}
.area_tour .theater a:hover {
	text-decoration: underline;
}
.area_tour .theater .icon {
	margin-left: 0.3em;
	font-size: 0.6em;
	vertical-align: super;
}

.area_tour .contact {
	display: block;
	margin: 1em auto 0;
}

.area_tour .contact .lbl {
	display: inline-block;
}
.area_tour .contact .lbl::before {
	content: "[";
	padding-right: 0.2em;
}
.area_tour .contact .lbl::after {
	content: "]";
	padding-left: 0.2em;
}
.area_tour .contact .office {
	display: inline-block;
	margin: 0 0.5em;
}

.area_tour .contact .tel {
	display: inline-block;
	margin: 0 0.5em;
}

.area_tour .contact .tel a {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 600px){

	.area_tour .area {
		font-size: 24rem;
		line-height: 1.5;
	}

	.area_tour .theater {
		font-size: 24rem;
		line-height: 1.5;
	}
}

@media screen and (max-width: 460px){

	.area_tour .sch {
		width: 95%;
	}
}

@media screen and (max-width: 390px){
	.area_tour .area {
		font-size: 20rem;
	}

	.area_tour .theater {
			font-size: 20rem;
	}
}

/***************************************************

　フライヤー

**************************************************/

.area_flyer {
	max-width: 900px;
	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 2em;
	padding: 1em;
	background: rgba(114,148,222,0.2);
	border-radius: 5px;
	font-size: 30rem;
}

.area_flyer a {
	text-decoration: none;
}

.area_flyer .item.tate {
    display: inline-block;
	max-width: 240px;
    margin: 1em;
    vertical-align: bottom;
}

.area_flyer .item.yoko {
    display: inline-block;
	max-width: 338px;
    margin: 1em;
    vertical-align: bottom;
}

.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 dd {
	vertical-align: bottom;
}

.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: 1000px){
	.area_flyer .item.tate {
		max-width: 180px;
	}

	.area_flyer .item.yoko {
		max-width: 254px;
	}
}

@media screen and (max-width: 400px){
	.area_flyer .item.tate {
		max-width: 144px;
	}

	.area_flyer .item.yoko {
		max-width: 203px;
	}
}
