@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
***/

/***色
オレンジ　#eea436; rgba(238,164,54,1);

***/


/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********リンク********/
a {
    color: #000;
    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;}

.point {color:#c53f88;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}

.anchor {
	display: block;
	margin-top: -100px;
	padding-top: 100px;
}

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:#000;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	background: #fff;
}

body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
	background-image: url("../images/bg_pc.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position:center top;
}

@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{
	padding: 0 1em;
}

.sec {
	max-width: 900px;
	margin: 0 auto;
}

/*@media screen and (max-width: 1475px){
	main {
		margin-top: 30px;
	}
}

@media screen and (max-width: 768px){
	main {
		margin-top: 10px;
	}
}

@media screen and (max-width: 570px){
	main {
		margin-top: 40px;
	}
}

@media screen and (max-width: 330px){
	main {
		margin-top: 70px;
	}
}

@media screen and (max-width: 320px){
	main {
		margin-top: 90px;
	}
}*/



/****************************************

　ナビ

*****************************************/
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top: 0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
    background: rgba(239,152,22,0.95);
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
	width: 100%;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	margin: 2em auto; 
    text-align: center; 
    font-size: 30rem;
    line-height: 1;
	transition: 0.5s;
}

#g-nav li:hover {
	font-size: 1.8em;
}

#g-nav li a {
	text-decoration: none;
	display: block;
	text-transform: uppercase;
}

#g-nav li a .en {
	display: block;
	font-family: 'Noto Serif JP', serif;
	color: #000;
    font-weight: 900;
}

#g-nav li a .jp {
	display: block;
	margin: 0.3em auto 0;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 0.6em;
}


#g-nav li a .en .and {
	margin: 0 0.2em;
}

@media screen and (max-width: 1024px){
	#g-nav li{
		font-size: 22rem;
	}
}

@media screen and (max-width: 380px){
	#g-nav li{
		font-size: 20rem;
	}
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	left: 10px;
	cursor: pointer;
    width: 100px;
    height:100px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 6px;
    border-radius: 2px;
	background-color: #e68f0e;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:27px;
}

.openbtn span:nth-of-type(3) {
	top:39px;
}
.openbtn.active span {
	background-color: #fff;
}
.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%;
}


/****************************************

　フッター

*****************************************/



#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #eea436;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}
@media screen and (max-width: 1024px) {

}

footer{
	margin: 6em auto 0;
    padding-bottom: 0;
	text-align: center;
	font-size: 16rem;
	bottom: 0;
}

.footer .copy {
	display: block;
    font-family: 'Noto Sans JP', serif;    
    font-weight: 500;
    color: #000;
}
footer .sns_link {
    margin-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em;
    text-align: center;
    vertical-align: top;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 30px;
}

footer .sns_link.smp {
    display: none;
}

.footer .policy_link {}

.footer .policy_link li {
	display: inline-block;
	margin: 0 auto 1em;
}

.footer .policy_link li:not(:last-of-type)::after {
	content: "｜";
	margin: 0 0.5em;
}

.footer .policy_link li a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
}

.footer .policy_link li a:hover {
	text-decoration: underline;
}


@media screen and (max-width: 500px){
    footer .sns_link.pc {
        display: none;
    }
    footer .sns_link.smp {
        display: block;
    }
}
@media screen and (max-width: 414px){
    footer{
        font-size: 14rem;
    }
}


/****************************************

　見出し

*****************************************/

.heading_sec {
	font-size: 60rem;
	color: #eea436;
	text-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}

.heading_sec .en {
	display: block;
	font-family: 'Noto Serif JP', serif;
	color: #eea436;
	line-height: 1em;
}
.heading_sec .en .amp {
    margin: 0 0.2em;
    font-size: 0.8em;
}
.heading_sec .jp {
	display: block;
	margin: 0.5em auto 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.4em;
	color: #222;
	line-height: 1em;
}

.heading_sec .s {
	font-size: 0.8em;
}

@media screen and (max-width: 500px){
	.heading_sec {
		font-size: 50rem;
	}
}

@media screen and (max-width: 400px){
	.heading_sec {
		font-size: 40rem;
	}
}
@media screen and (max-width: 330px){
	.heading_sec {
		font-size: 30rem;
	}
}


/****************************************

　ビジュアル

*****************************************/

.area_visual {
    margin: 0 auto 2em;
    padding: 2em 0 3em;
}


/*****　お知らせ系ボタン　*****/

.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: inline-block;
	margin: 0 0.5em 0.5em;
	max-width: 700px;
	width: 100%;
	padding: 0.5em 1.3em 0.5em 1.5em;
	background: rgba(27,143,155,0.1);
	border: 2px solid #eea436;
	border-radius: 3px;
	outline: 1px solid #eea436;
	outline-offset: -5px;
	text-decoration: none;
	font-weight: 700;
	font-size: 20rem;
	color: #000;
	text-align: center;
	line-height: 1.3;
	transition: 0.5s;
}

.area_visual .btn_area .btn .icon {
	display: none;
	margin-right: 0.3em;
	color: #eea436;
}

.area_visual .btn_area .btn .pk {
	margin: 0 0.3em;
}

.area_visual .btn_area .btn .lbl {
	display: inline-block;
	margin-left: 0.5em;
	padding: 0.2em 0.5em;
	background: #7f1181;
	border-radius: 3px;
	color: #fff;
	font-size: 0.7em;
}
.area_visual .btn_area .btn:hover {
	background: rgba(255,255,255,0.8);
}

/*@media screen and (max-width: 920px){
	.area_visual .btn_area .btn {
		width: auto;
	}
}*/
@media screen and (max-width: 540px){
	.area_visual .btn_area .btn {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
		font-size: 18rem;
	}

}
@media screen and (max-width: 360px){
	.area_visual .btn_area .btn {
		font-size: 16rem;
	}

}

.area_visual .visual .item {
    display: block;
	max-width: 900px;
    margin: 0 auto 0;
    text-align: center;
}

.area_visual .visual .item img {
	width: 100%;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

@media screen and (max-width: 1000px){

	.area_visual {
		margin: 6em auto 6em;
	}

}
/*.area_visual {
    margin: 0 auto 2em;
    padding: 1em 0 3em;
}

.area_visual .visual .item {
    display: block;
	max-width: 900px;
    margin: 0 auto 0;
    text-align: center;
}

.area_visual .visual .item img {
	width: 100%;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.area_visual .visual .credit {
	display: block;
	max-width: 900px;
	margin: 0 auto;
    font-size: 13rem;
    font-weight: 400;
    text-align: right;
	line-height: 1.3;
}

.area_visual .visual .credit .c_item {
	display: inline-block;
	margin: 0 0.5em;
}*/


/***************************************************

　イントロダクション

**************************************************/

.area_intro {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 4em auto 10em;
	padding: 0 1em;
}

.area_intro .text {
	margin: 2em auto 0;
	font-size: 18rem;
	text-align: left;
	line-height: 1.8;
}
.area_intro .text .pk {
	display: inline;
}
.area_intro .text p {
	margin-bottom: 1em;
}


@media screen and (max-width: 960px){}

@media screen and (max-width: 360px){}



/***************************************************

　メッセージ

**************************************************/

.area_msg {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 4em auto 10em;
	padding: 0 1em;
}

.area_msg .text {
	margin: 2em auto 0;
	font-size: 18rem;
	text-align: left;
	line-height: 1.8;
}
.area_msg .text .pk {
	display: inline;
}
.area_msg .text p {
	margin-bottom: 1em;
}
.area_msg .text p.sign {
    text-align: right;
}

@media screen and (max-width: 960px){}

@media screen and (max-width: 360px){}

/***************************************************

　スタッフ

**************************************************/

.area_staff {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 4em auto 10em;
	padding: 0 1em;
}

.area_staff .list {
	margin: 2em auto 0;
}
.area_staff .list:first-of-type {
	margin-top: 5em;
}
.area_staff .list dt {
	display: inline-block;
	width: 50%;
	text-align: right;
	color: #e68f0e;
}
.area_staff .list dt::after {
	content: "：";
}
.area_staff .list dd {
	display: inline-block;
	width: 50%;
	text-align: left;
}

@media screen and (max-width: 450px){

	.area_staff .list {
		margin: 3em auto 0;
	}
	
	.area_staff .list:first-of-type {
		margin-top: 3.5em;
	}
	
	.area_staff .list dt {
		display: block;
		width: 100%;
		text-align: center;
		font-size: 0.8em;
		line-height: 1.4;
	}
	
	.area_staff .list dt::after {
		content: none;
	}
	.area_staff .list dd {
		display: block;
		width: 100%;
		margin: 0 auto 1em;
		text-align: center;
		line-height: 1.4;
	}

}

@media screen and (max-width: 360px){}

/****************************************

　チケット＆スケジュール

*****************************************/
.area_ticket {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 4em auto 10em;
}

/*.area_ticket .box {
	padding: 2em 4em;
	border-radius: 10px;
}*/

@media screen and (max-width: 900px){
	.area_ticket .box {
		padding: 2em 2em;
	}
}

@media screen and (max-width: 480px){
	.area_ticket .box {
		padding: 2em 1em;
	}
}

.area_ticket .stage_info {
	max-width: 900px;
	margin: 2em auto 4em;
}

.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 .list_hoshitori {}

.area_ticket .stage_info .list_hoshitori table {
    margin: 0 auto 1em 0;
    background: rgba(255,255,255,0.5);
}
.area_ticket .stage_info .list_hoshitori table th,
.area_ticket .stage_info .list_hoshitori table td {
    padding: 0.2em 1em;
	border: 1px solid #e68f0e;
    line-height: 1.3;
    font-weight: 500;
}
.area_ticket .stage_info .list_hoshitori table th {
	background: rgba(238,164,54,0.2);
    color: #000;
}
.area_ticket .stage_info .list_hoshitori table th.time {
	width: 6em;
}
.area_ticket .stage_info .list_hoshitori table th .youbi {
    display: inline-block;
    font-size: 0.8em;
}
.area_ticket .stage_info .list_hoshitori table td {
    width: 6em;
}
.area_ticket .stage_info .list_hoshitori table td.guest {
    padding: 1em;
    font-size: 0.8em;
}

.area_ticket .stage_info .hoshitori {
	max-width: 900px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.area_ticket .stage_info .hoshitori img {
	width: 100%;	
}

.area_ticket .stage_info .hoshitori .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	width: 100%;
	margin: 1em auto;
	padding: 0.5em 1em;
	background: #e68f0e;
	color: #fff;
	text-decoration: none;
	font-size: 20rem;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .stage_info .hoshitori .btn .icon {
	margin-right: 0.3em;
}

.area_ticket .stage_info .hoshitori .btn:hover {
	background: rgba(27,143,155,0.5);
}

.area_ticket .stage_info .caution {
	margin: 2em auto 0;
	text-align: left;
	font-weight: 500;
}
.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: 500;
}
.area_ticket .stage_info .caution li .tel a {
	text-decoration: none;
    color: #000;
}

.area_ticket .stage_info .list_price {
    margin: 1em auto 0;
}
.area_ticket .stage_info .list_price dt {

}
.area_ticket .stage_info .list_price dt .note {
    font-size: 0.8em;
}
.area_ticket .stage_info .list_price dd {
    padding: 0.5em;
    border: 2px solid #e68f0e;
    font-size: 1.1em;
}

@media screen and (max-width: 720px){
    .area_ticket .stage_info .list_hoshitori table th.time {
        width: 4em;
    }
    .area_ticket .stage_info .list_hoshitori table td {
        width: 4em;
    }
}

@media screen and (max-width: 620px){

	.area_ticket .stage_info .sch {
		width: 90%;
	}
    .area_ticket .stage_info .list_hoshitori table td {
        width: 3em;
    }
}

@media screen and (max-width: 620px){
	.area_ticket .stage_info .hoshitori .btn {
		font-size: 18rem;
	}
}

@media screen and (max-width: 460px){
    .area_ticket .stage_info .list_hoshitori table th,
    .area_ticket .stage_info .list_hoshitori table td {
        padding: 0.2em 0.3em;
    }
    .area_ticket .stage_info .list_hoshitori table th.time {
        width: 3.5em;
    }
    .area_ticket .stage_info .list_hoshitori table td {
        width: 2.5em;
    }
}

@media screen and (max-width: 330px){
    .area_ticket .stage_info .list_hoshitori table th,
    .area_ticket .stage_info .list_hoshitori table td {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 320px){
    .area_ticket .stage_info .list_hoshitori table td.guest li:not(:last-of-type)::after {
        content: "／";
        display: block;
    }
}

.area_ticket .way {

}


.area_ticket .way a {
    color: #fbc300;
	text-decoration: none;
	font-weight: 900;

}

.area_ticket .way .s {
	font-size: 0.9em;
    font-weight: 900
}

.area_ticket .way {
	text-align: left;
	max-width: 900px;
	margin: 1em auto 0;
	background: rgba(255,255,255,0.3);
	border: 3px solid #eea436;
	border-radius: 1px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.area_ticket .way > dt{
	padding: 0.8em 0;
	background: rgba(238,164,54,0.2);
	color: #000;
	font-weight: 700;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
	font-family: 'Noto Sans JP', sans-serif;
}

.area_ticket .way > dd{
	padding: 20px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;

}

.area_ticket .way > dd .caution {
	margin: 1em auto 0;
    padding: 1em 0.5em 0;
	border-top: 1px solid #000;
    text-align: left;
    font-size: 0.9em;
	font-weight: 500;
}

.area_ticket .way > dd .caution li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

.area_ticket .way > dd .caution li a {
    color: #000;
}

.area_ticket .way .start {
	display: inline-block;
	margin: 1em auto;
	line-height: 1.5;
	font-size: 20rem;
}
.area_ticket .way .tel {
	display: block;
	position: relative;
	font-size: 30rem;
	line-height: 40px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}

.area_ticket .way .tel a{
	color: #000;
	text-decoration: none;
}
.area_ticket .way .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #000;
}
.area_ticket .way.toho .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #000;
}
.area_ticket .way.toho_t .tel {
    margin-bottom: 0.5em;
    line-height: 1.5;
}
.area_ticket .way.toho_t .tel .note {
    display: inline-block;
    font-size: 0.7em;
    font-weight: 400;
}

.area_ticket .way .group .btn {
	display: block;
	margin: 0 auto;
	padding: 0.5em;
	color: #000;
	font-weight: 700;
	text-decoration: none;
	transition: 0.5s;
}

.area_ticket .way .group .btn .icon {
	margin-right: 0.3em;
	color: #e68f0e;
}

.area_ticket .way .group .btn:hover {
	color: #e68f0e;
}

@media screen and (max-width: 767px){

	.area_ticket .way {
		margin: 20px auto 0;
	}
}


@media screen and (max-width: 414px){
	.area_ticket {
	}
    .area_ticket .start {
        font-size: 18rem;
    }
	.area_ticket .way .start {
		font-size: 18rem;
	}
}
	
@media screen and (max-width: 375px){

	.area_ticket .way > dd{
		padding: 1em;
	}

	.area_ticket .area_btn .btn {
		padding: 0.2em 1em;
	}
}

@media screen and (max-width: 330px){
	.area_ticket .way > dt{
		font-size: 20rem;
	}
	.area_ticket .way .tel {
		font-size: 24rem;
	}
}

/***　東宝ナビザーブ・テレザーブ　***/

.area_ticket .way.toho .pc {
	margin-top: 0.5em;
	position: relative;
	font-size: 30rem;
	font-weight:  bold;
	line-height: 40px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}

.area_ticket .way.toho .pc a{
	text-decoration: none;
	color: #000;
}
.area_ticket .way.toho .senkou {
	margin: 2em auto 0;
}

.area_ticket .way.toho .senkou dt {
	background: rgba(238,164,54,0.2);
	color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}
.area_ticket .way.toho .senkou dd {
	margin-bottom: 1em;
	padding: 0.5em;
	font-size: 20rem;
}

@media screen and (max-width: 414px){
    .area_ticket .way.toho .pc {
        font-size: 24rem;
        line-height: 1.5;
    }

	.area_ticket .way.toho .tel {
        font-size: 24rem;

    }

    .area_ticket .way.toho .senkou dd {
        font-size: 18rem;
    }
}

@media screen and (max-width: 375px){
    .area_ticket .way.toho .pc {
        font-size: 18rem;
    }    

    .area_ticket .way.toho .senkou dd {
        font-size: 16rem;
    }

}


/*****　プレイガイド　*****/
.area_ticket .way .playguide {
    margin: 1em auto 0;
}

.area_ticket .way .playguide dt {
    margin-bottom: 0.5em;
    padding: 0 0.5em;
	background: rgba(238,164,54,0.2);
	color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.area_ticket .way .playguide dd {
	text-align: left;
    font-size: 20rem;
	margin-bottom: 1em;
	padding: 1em 0;
    word-break: break-all;
    text-align: center;
    line-height: 1.5;
}

.area_ticket .way .playguide a {
	text-decoration: none;
	color: #000;
}
.area_ticket .way .playguide .pc {
    margin-bottom: 0.5em;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}
.area_ticket .way .playguide .tel {
    display: inline-block;
    margin-bottom: 0.5em;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}
.area_ticket .way .playguide .time {
    display: inline-block;
    margin-left: 0.5em;
    font-family: 'Noto sans JP', serif; 
    font-weight: 500;
    font-size: 0.8em;
}
.area_ticket .way .playguide .first_day {
    width: 90%;
    margin: 0 auto;
    padding: 0.5em;
    border: 1px groove #000;
}
.area_ticket .way .playguide .first_day .lbl {
    display: inline-block;
    margin-right: 1em;
    color: #000;
}
.area_ticket .way .playguide .first_day .f_caution {
    font-size: 0.8em;
}
.area_ticket .way .playguide .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #000;
}
.area_ticket .way .playguide .note {
	display: inline-block;
    font-size: 0.9em;
}


@media screen and (max-width: 480px){

    .area_ticket .way .playguide dd {
        font-size: 18rem;
    }
    .area_ticket .way .playguide .time {
        font-size: 0.8em;
    }    
}
@media screen and (max-width: 450px){
    .area_ticket .way .playguide .first_day .lbl {
        display: block;
    }
}

@media screen and (max-width: 365px){

    .area_ticket .way .playguide .pc {
        font-size: 18rem;
    }
}


@media screen and (max-width: 414px){

    .area_ticket .way .playguide dd {
        font-size: 16rem;
        padding-left: 0;
    }
}



/*****　リセール　*****/

.area_ticket .way .resale p {
    text-align: left;
	font-size: 16rem;
	font-weight: 500;
}

.area_ticket .way .resale .list {
}

.area_ticket .way .resale .list li {
    display: inline-block;
}

.area_ticket .way .resale .list li a {
	color: #000;
}

.area_ticket .way .resale .list span {
    font-size: 0.9em;
	font-weight: 500;
}
.area_ticket .way .resale .list img {
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}

/*****　リセール　*****/

.area_ticket .way .resale {	
	font-weight: 500;
}

.area_ticket .way .resale p {
	padding: 0 1em;
    text-align: left;
	font-size: 16rem;		
	font-weight: 500;
}

.area_ticket .way .resale .list {
    margin-top: 1em;
}

.area_ticket .way .resale .list li {
    margin: 1em;
    display: inline-block;
}

.area_ticket .way .resale .list span {
    font-size: 0.9em;
}

.area_ticket .way .resale .list img {
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}

.area_ticket .way .resale .about {
/*	color: #091d7e;*/
}

/***　会場案内　***/

.area_ticket .way > dd.kaijyou {
	padding: 20px 20px;
	text-align: center;
}

.area_ticket .kaijyou .map {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
}

.area_ticket .kaijyou .map img {
	width: 100%;
}

.area_ticket .kaijyou .logo {
	max-width: 271px;
	width: 100%;
	margin: 1em auto 0;
    font-weight: 400;
}

.area_ticket .kaijyou .logo img {
	width: 100%;
}


.area_ticket .kaijyou .add{
	font-size: 0.9em;
    font-weight: 500;
}
.area_ticket .kaijyou .add a{
	color: #000;
    text-decoration: none;
}

.area_ticket .kaijyou .koutsu {
	max-width: 20em;
	margin: 1em auto 0;
	padding: 1em 1em 1em 2em;
	border-top: 1px solid #e68f0e;
	border-bottom: 1px solid #e68f0e;
	text-align: left;
	font-weight: 500;
}

.area_ticket .kaijyou .koutsu li {
	margin-bottom: 0.5em;
	line-height: 1.5;
	padding-left: -1em;
	text-indent: -1em;
}

.area_ticket .kaijyou .koutsu li .mark {
	margin-right: 0.3em;
	color: #e68f0e;
}

.area_ticket .contact {
    margin: 1em auto 0;
    font-weight: 500;
}

.area_ticket .contact dt {
	margin: 0.5em;
}

.area_ticket .contact dt::before {
    content: "〔";

}
.area_ticket .contact dt::after {
    content: "〕";

}
.area_ticket .contact dd {
}

.area_ticket .contact .tel {
    display: inline-block;
	font-size: 20rem;
	line-height: 1.5;
}
.area_ticket .contact .tel a {
    text-decoration: none;
    color: #000;
}
.area_ticket .contact .tel .note {
    display: inline-block;
    font-weight: 400;
        
}
.area_ticket .contact .office {
    display: inline-block;
    margin: 0 0.5em;
}

.area_ticket .list_btn .btn{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 200px;
	width: 100%;
	margin: 1em auto;
	padding: 0.5em 1em;
	background: #e68f0e;
	color: #fff;
	text-decoration: none;
	font-size: 20rem;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .list_btn .btn .icon {
	margin-right: 0.3em;
}

.area_ticket .list_btn .btn:hover {
	background: rgba(27,143,155,0.5);
}


@media screen and (max-width: 414px){

	.area_ticket .kaijyou .logo {
		max-width: 200px;
	}

    .area_ticket .contact dt {
        display: block;
    }

    .area_ticket .contact dd {

    }
	.area_ticket .list_btn .btn .btn {
		font-size: 16rem;
	}
}

@media screen and (max-width: 599px){

}


/*******************************************
	ツアー
********************************************/

.area_tour {
	max-width: 900px;
    margin: 0 auto;
}

.area_tour .box {
	margin: 0 auto 10em;
}

@media screen and (max-width: 900px){
	.area_tour .box {
		padding: 0 2em;
	}
}

@media screen and (max-width: 480px){
	.area_tour .box {
		padding: 0 1em;
	}
}

.area_tour .list {
	text-align: left;
	max-width: 900px;
	margin: 1em auto 0;
	background: rgba(255,255,255,0.3);
	border: 3px solid #eea436;
	border-radius: 1px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.area_tour .list dt{
	padding: 0.8em 0;
	background: rgba(238,164,54,0.2);
	color: #000;
	font-weight: 700;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
	font-family: 'Noto Sans JP', sans-serif;
}

.area_tour .list > dd{
	padding: 20px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;

}

.area_tour .list .theater {
    margin: 0 auto 1em;
    font-size: 1.5em;
    line-height: 1.5;
}

.area_tour .list .theater .icon {
    margin-left: 0.2em;
    vertical-align: super;
    font-size: 0.8em;
    color: #e68f0e;
}

.area_tour .list .theater a {
    transition: 0.5s;
}

.area_tour .list .theater a:hover {
    color: #e68f0e;
}
.area_tour .list table {
    table-layout: fixed;
    width: 100%;
    margin: 0 auto;
}
.area_tour .list table th,
.area_tour .list table td {
    padding: 0.2em 1em;
	border: 1px solid #e68f0e;
    line-height: 1.3;
    font-weight: 500;
}
.area_tour .list table th {
	background: rgba(238,164,54,0.2);
	color: #000;
}
.area_tour .list table th.time {
	width: 6em;
}
.area_tour .list table th .youbi {
    display: inline-block;
    font-size: 0.8em;
}
.area_tour .list table td {
}
.area_tour .list table td.guest {
    padding: 1em;
    font-size: 0.8em;
}
.area_tour .list table td.guest li {
    display: inline-block;
}
.area_tour .list table td.guest li:not(:last-of-type)::after {
    content: "・";
}

.area_tour .list .contact {
    margin: 1em auto 0;
    line-height: 1.5;
}

.area_tour .list .contact .lbl {
    display: inline-block;
    margin: 0;
}
.area_tour .list .contact .lbl::before {
    content: "［"
}
.area_tour .list .contact .lbl::after {
    content: "］"
}
.area_tour .list .contact .office {
    display: inline-block;
    margin: 0 0.5em;
}
.area_tour .list .contact .tel {
    display: inline-block;
    margin: 0 0.5em;
}
.area_tour .list .contact .tel a {
    text-decoration: none;
    color: #000;
}

.area_tour .caution {
    margin: 2em auto 0;
}

@media screen and (max-width: 720px){
    .area_tour .list table th.time {
        width: 4.5em;
    }
    .area_tour .list table td {
        width: 4em;
    }
}

@media screen and (max-width: 620px){

    .area_tour .list table td {
        width: 3em;
    }
}

@media screen and (max-width: 620px){
    .area_tour .list table td.guest li {
        display: block;
    }
    .area_tour .list table td.guest li:not(:last-of-type)::after {
        content: none;
    }
}

@media screen and (max-width: 460px){

    .area_tour .list .theater {
        font-size: 1.3em;
    }

    .area_tour .list table th,
    .area_tour .list table td {
        padding: 0.2em 0.3em;
    }

    .area_tour .list table td {
        width: 2.5em;
    }

    .area_tour .list .contact .lbl {
        display: block;
        margin: 0 auto;
    }
}

@media screen and (max-width: 330px){
    .area_tour .list table th,
    .area_tour .list table td {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 320px){
    .area_tour .list table td.guest li:not(:last-of-type)::after {
        content: "／";
        display: block;
    }
}