@charset "utf-8";
/* CSS Document */

/***フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900

英字
font-family: "pf-venue", sans-serif;
font-weight: 700;
font-style: normal;
***/

/***色
黄　#fff104;
青　#0780db;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #c5a44a;
    text-decoration: none;}
a:hover{}


a:hover img{
  filter: alpha(opacity=70);
  opacity: 0.7;
  zoom: 1.0;
  }

a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}



/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}


html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
} 


body{
	margin: 0;
	padding: 0;
	background-color: #02243d;

	font-size: 18em;
	line-height:2;
	color:#fff;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #02243d;
}

html,body { /*背景色用*/
/*  height: 100vh*/
}

body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;  
    background-color: #02243d;
}

@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;
	padding: 0 1em;
}

/****************************************

　ナビ

*****************************************/

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background: #fff104;
	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: #02243d;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width:100%;
	padding-top: 1em;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi ul {
    margin: 0 1em;
    padding: 0.5em 0; 
    font-size: 24rem;
    line-height: 1.3;
    vertical-align: top;
}

#g-navi ul .res_nav {
	display: none;
}

#g-navi ul li {
    display: inline-block;
    margin: 0 0.5em;
    padding: 5px 0 5px; 
    font-size: 30rem;
    line-height: 1.1;
    vertical-align: top;
}


#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
}

#g-navi ul li .en {
	display: block;
	font-family: "pf-venue", sans-serif;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.1em;
	color: #fff104;

}

#g-navi ul li .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

#g-navi ul li .jp {
	display: block;
	color: #fff;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-size: 0.4em;
	transition: 0.5s;
	font-feature-settings: "palt";
}

#g-navi ul li:hover .jp {
	color: #0780db;
}


@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){

	#g-navi ul li {
		font-size: 20rem;
	}
}
@media screen and (max-width: 430px){

/*	#g-navi ul .res_nav {
		display: inline;
	}*/
}

@media screen and (max-width: 320px){

}


/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    left: 0;
	z-index: -1;
    /*高さと幅*/  
/*	width:100%;
	height: 100vh;*/
    /*天地中央＆テキスト中央揃え*/  
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;

}

#header.dnone #g-navi .logo {
	display: none;
}

#header.dnone #g-navi ul .res_nav {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background:rgba(0,0,0,0.9);
	width:100%;
	height: 100vh;
}

#header.dnone.panelactive #g-navi ul li {
	display:block;/*flexの横並びをblockにして縦並びに*/
	padding:1em 10px 0;
	font-size: 28rem;
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{}

@media screen and (max-height: 800px) { /*画面の高さが800以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.5em 0;
		font-size: 20rem;
	}
}  
@media screen and (max-height: 520px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 18rem;
	}
} 
@media screen and (max-height: 400px) { /*画面の高さが360以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.3em 0; 
		font-size: 16rem;
	}
}  


/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/
#pagetop{
    position: fixed;
    right: 15px;
    bottom: 5px;
	z-index: 1000;
	line-height: 1;
}

#pagetop a {
	text-decoration: none;
	color: #fff;
}

#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;
	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;
}

.sec:not(:first-of-type) {
	padding: 3em 0;
}


.sec .inner {
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 500px){
}



/*******************************************

　見出し

********************************************/

.heading_sec {
    margin: 1em auto 0.5em;
    font-size: 50rem;
    line-height: 1.2;
    text-align: center;
}

.heading_sec .en {
	display: block;
	font-family: "pf-venue", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #fff104;

}
.heading_sec .en .ls {
	letter-spacing: 0.3em;
}


.heading_sec .jp {
    display: block;
    color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.3em;
	font-weight: 500;
}

.heading_sec .amp {
	margin: 0 0.3em;
	font-size: 0.8em;
}

@media screen and (max-width: 768px) {
	.heading_sec {
		font-size: 7vw;
	}
}



/****************************************

　ビジュアル

*****************************************/

.area_visual {
    max-width: 900px;
    margin: 0 auto 4em;
}

.area_visual .area_info {
	margin: 1em auto;
}

.area_visual .area_info .btn {
	display: inline-block;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	padding: 0.5em;
	border: 2px solid #fff104;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.3;
	color: #fff104;
	transition: 0.5s;
}

.area_visual .area_info .btn:hover {
	background: rgba(255,241,4,0.9);
	color: #02243d;
}

@media screen and (max-width: 400px){
	.area_visual .area_info .btn {
		font-size: 20rem;
	}
}


.area_visual .visual .item {
    display: block;
    margin: 0 auto 0.5em;
    text-align: center;
}

.area_visual .visual .item img {
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
	
	display: block;
    width: 100%;
    box-shadow: 0 0 100px rgba(0,0,0,0.5),0 0 50px rgba(0,0,0,0.8);
}

.area_visual .visual .credit {
	margin: 0.5em -0.5em 0 0;
	text-align: right;
	line-height: 1.3;
}

.area_visual .visual .credit li {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 0.7em;
	color: #fff;
	font-weight: 400;
}

@media print {
    .area_visual .visual .item { display: none }
}

@media screen and (max-width: 340px){
	.area_visual .visual .credit {
		margin: 0.5em 0;
	}
	.area_visual .visual .credit li {
		display: block;
		font-size: 0.5em;
	}
}

.area_visual .slider {
	position:relative;
	max-width:900px;
	margin:0 auto;
}

.area_visual .slick-box {
	margin: 1em auto 0;
}

.area_visual .slide {
	width: 100%;
	height: auto;	
}

.area_visual .slide img {
	width: 100%;
}

@media print{
	.area_visual .visual {
		display: none;
	}
    .area_visual .slide {
        display: none;
    }
}


/**********************************************************************

　イントロ

**********************************************************************/

.area_intro .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 4em;
	background-color: #fff104;
	color: #02243d;
}

@media screen and (max-width: 500px){
	.area_intro .inner{
		padding: 2em;
	}
}

.area_intro .catch {
	margin: 0 auto 1em;
	font-size: 30rem;
	font-weight: 900;
	text-align: center;
	color: #02243d;
}

.area_intro .catch:not(:first-of-type) {
	margin-top: 1.5em;
}

.area_intro .text {
	text-align: left;
}

.area_intro .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}

@media screen and (max-width: 768px) {
	.area_intro .catch {
		font-size: 20rem
	}
}

@media screen and (max-width: 460px) {
	.area_intro .catch {
		font-feature-settings: "palt";
	}
}

@media screen and (max-width: 390px) {
	.area_intro .catch {
		text-align: left;
	}
	.area_intro .catch .pk {
		display: inline;
	}
}

.area_intro .pict {
/*	background: #fff;*/
	max-width: 400px;
	margin: 2em auto 0;}

.area_intro .pict img {
	display: block;
	width: 100%;
	margin: 0 auto;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2)
}
.area_intro .pict .credit {
	margin-top: 0.5em;
	text-align: right;
	font-size: 0.7em;
}

/**********************************************************************

　ストーリー

**********************************************************************/

.area_story .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 4em;
	background: #fff104;
	color: #02243d;
}

.area_story .pict {
	max-width: 900px;
	margin: 2em auto 0;}

.area_story .pict img {
	display: block;
	width: 100%;
	margin: 0 auto;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.2)
}
.area_story .pict .credit {
	margin-top: 0.5em;
	text-align: right;
	font-size: 0.7em;
}

@media screen and (max-width: 500px){
	.area_story .inner{
		padding: 2em;
	}
}

.area_story .text {
	text-align: left;
}

.area_story .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}



/**********************************************************************

　キャスト

**********************************************************************/
.area_cast.sec .inner {
    max-width: 1500px;
}

.area_cast .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
}

@media screen and (max-width: 400px) {
	.area_cast .inner{
		padding: 4em 3em;
	}
}

/****　プリンシバル1　****/
.area_cast .list_p1 {
	margin: 0 auto 1em;
	line-height: 1.5;
}
.area_cast .list_p1:first-of-type {
	margin-top: 5em;
}
.area_cast .list_p1 li {
	margin: 0 auto 3em;
	font-size: 30rem;
}
.area_cast .list_p1 .photo {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
}
.area_cast .list_p1 .photo img {
	width: 100%;
	box-shadow: 0 0 100px rgba(7,128,129,0.5);
}
.area_cast .list_p1 .yaku {
	display: block;
	margin: 0 auto 0.5em;
	font-size: 0.8em;
	color: #fff104;
}

.area_cast .list_p1 .name {
	display: block;
}
.area_cast .list_p1 .name .note {
	display: block;
	font-size: 0.5em;
}
.area_cast .list_p1 .btn_cmt {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 14em;
	margin: 0.3em auto;
	padding: 0.2em 1em;
	border-radius: 1px;
	border: 1px groove #fff104;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	color: #fff104;
	text-decoration: none;
	font-size: 0.4em;
	line-height: 1;
	font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 800px){
	.area_cast .list_p1 li {
		font-size: 26rem;
	}
	.area_cast .list_p1 .photo {
		max-width: 200px;
	}
}

@media screen and (max-width: 540px){
	.area_cast .list_p1 li {
		font-size: 22rem;
	}
	.area_cast .list_p1 .photo {
		max-width: 160px;
	}
}
@media screen and (max-width: 420px){
	.area_cast .list_p1 li {
		margin: 0 auto 5em;
	}
	.area_cast .list_p1 li {
		font-size: 24rem;
	}
	.area_cast .list_p1 .photo {
		max-width: 200px;
	}

}

.area_cast .list_p1 .photo.hide img {
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

@media print {
    .area_cast .list_p1 .photo.hide { display: none }
}

/****　プリンシバル2　****/
.area_cast .list_p2 {
	margin: 0 auto 1em;
	line-height: 1.5;
}
.area_cast .list_p2:first-of-type {
	margin-top: 5em;
}
.area_cast .list_p2 li {
	margin: 0 auto 3em;
	font-size: 30rem;
}
.area_cast .list_p2 .photo {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
}
.area_cast .list_p2 .photo img {
	width: 100%;
	box-shadow: 0 0 100px rgba(7,128,129,0.5);
}
.area_cast .list_p2 .yaku {
	display: block;
	margin: 0 auto 0.5em;
	font-size: 0.8em;
	color: #fff104;
}

.area_cast .list_p2 .name {
	display: block;
}
.area_cast .list_p2 .name .note {
	display: block;
	font-size: 0.5em;
}
.area_cast .list_p2 .btn_cmt {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 14em;
	margin: 0.3em auto;
	padding: 0.2em 1em;
	border-radius: 1px;
	border: 1px groove #fff104;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	color: #fff104;
	text-decoration: none;
	font-size: 0.4em;
	line-height: 1;
	font-family: 'Noto Sans JP', sans-serif;
}

.area_cast .list_p2 li.w_cast {}

.area_cast .list_p2 li.w_cast .item {
	display: inline-block;
	margin: 0 0.5em;
}

@media screen and (max-width: 800px){
	.area_cast .list_p2 li {
		font-size: 26rem;
	}
	.area_cast .list_p2 .photo {
		max-width: 200px;
	}
}

@media screen and (max-width: 540px){
	.area_cast .list_p2 li {
		font-size: 22rem;
	}
	.area_cast .list_p2 .photo {
		max-width: 160px;
	}
}
@media screen and (max-width: 420px){
	.area_cast .list_p2 li {
		margin: 0 auto 5em;
	}
	.area_cast .list_p2 li {
		font-size: 24rem;
	}
	.area_cast .list_p2 .photo {
		max-width: 200px;
	}
	.area_cast .list_p2 li.w_cast .item {
		display: block;
		margin: 0 auto 1em;
	}
}

/***　アンサンブル・スウィング　***/

.area_cast .list_e {
	margin: 0 auto;
	line-height: 1.5;
}
.area_cast .list_e.first {
	margin-top: 8em;
}
.area_cast .list_e li {
	display: inline-block;
	margin: 0 0.5em 1em;
	font-size: 22rem;
	vertical-align: top;
	line-height: 1.3;
}

.area_cast .list_e .res_list_e {}

.area_cast .list_e .res_list_e2 {
	display: none;
}

.area_cast .list_e .note_s {
	display: block;
	font-size: 0.6em;
}

.area_cast .list_s {
	line-height: 1.5;
	font-size: 22rem;
}

.area_cast .list_s dt {
	font-size: 0.7em;
	color: #fff104;
}

@media screen and (max-width: 1330px){
/*	.area_cast .list_e .res_list_e {
		display: inline;
	}*/
}
@media screen and (max-width: 960px){
	.area_cast .list_e .res_list_e {
		display: none;
	}
	.area_cast .list_e .res_list_e2 {
		display: inline;
	}
}
@media screen and (max-width: 800px){
	.area_cast .list_e li {
		font-size: 20rem;
	}
	.area_cast .list_s {
		font-size: 20rem;
	}
}

@media screen and (max-width: 540px){
	.area_cast .list_e li {
		font-size: 18rem;
	}
	.area_cast .list_s {
		font-size: 18rem;
	}
}
@media screen and (max-width: 420px){
	.area_cast .list_e .res_list_e2 {
		display: none;
	}
	.area_cast .list_e li {
		display: block;
		margin: 0 auto 0.5em;
	}
}

/**********************************************************************

　キャスト、スタッフ：モーダルウィンドウ

**********************************************************************/

.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-color: rgba(255,241,4,0.9);
}

.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: #0780db;
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #02243d;
	
}

.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: #0780db !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: #000 !important
}

@media screen and (max-width: 414px){

    .cast_cmt .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }

	.cast_cmt .modal-wrapper .modal-window .modal-content {
		padding: 0 0.5em;
	}
}


.cast_cmt .name {
    display: block;
	margin: 1em auto;	
	padding: 1em 0;
    font-size: 30rem;
    line-height: 1;
    color: #02243d;
    font-weight: 700;
    letter-spacing: 0.2;
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
	font-weight: 700;
}

.cast_cmt .photo {
	max-width: 240px;
	margin: 0 auto;
}

.cast_cmt .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.cast_cmt .name .yaku,
.cast_cmt .name .work{
	display: block;
	margin-bottom: 0.5em;
	font-size: 0.7em;
	color: #02243d;
}

.cast_cmt .name .ls {
    letter-spacing: 0.1em;
}

.cast_cmt .text {
	margin: 0 auto;
	color: #02243d;
}

.cast_cmt .text {
    text-align: left;
	font-weight: 500;
	font-size: 18rem;
	text-align: left;
}

.cast_cmt .text p:not(last-of-type) {
	margin-bottom: 1em;

}


@media screen and (max-width: 600px){
	.cast_cmt .name {
		font-size: 24rem;
	}
}
@media screen and (max-width: 360px){
	.cast_cmt .name {
		font-size: 20rem;
	}
}



/**********************************************************************

　スタッフ

**********************************************************************/

.area_staff {
	max-width: 900px;
	margin: 2em auto;
}

.area_staff .box {
	margin: 0 auto;
	padding: 2em 1em 3em;
}

.area_staff .list {
	margin: 0 auto;
	font-size: 20rem;
	line-height: 1.8;
}

.area_staff .list:first-of-type {
	margin-top: 2em;
}

.area_staff .list:not(:last-of-type) {
	margin-bottom: 2em;
}

.area_staff .list::after{
  content: "";
  display: block;
  clear: both;
}

.area_staff .list dt {
	clear: both;
	float: left;
	width: calc(50% - 1em);
	text-align: right;
	color: #fff104;
}
.area_staff .list dt::after {
	content: "：";
}
.area_staff .list dd {
	width: 50%;
	overflow: hidden;
	text-align: left;
}
.area_staff .list .book {
	display: block;
	font-size: 0.8em;
}
.area_staff .btn_cmt {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 14em;
	margin: 0.3em auto 0.3em 0.5em;
	padding: 0.2em 1em;
	border-radius: 1px;
	border: 1px groove #fff104;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	color: #fff104;
	text-decoration: none;
	font-size: 0.5em;
	line-height: 1;
	text-align: center;
}

@media screen and (max-width: 600px){
	.area_staff .list {
		line-height: 1.5;
	}
	.area_staff .list:not(:last-of-type) {
		margin-bottom: 3em;
	}
	.area_staff .list dt {
		float: none;
		width: inherit;
		margin: 0 auto;
		text-align: center;
		color: #fff104;
		font-size: 0.8em;
	}
	.area_staff .list dt::after {
		content: none;
	}
	.area_staff .list dd {
		width: inherit;
		margin: 0 auto 1em;
		text-align: center;
	}

	.area_staff .btn_cmt {
		margin: 0.3em auto;
	}
}

@media screen and (max-width: 540px){
	.area_staff .list {
		margin: 0 auto;
		font-size: 18rem;
	}
}

.area_staff .btn_cmt .amp {
	display: inline-block;
	margin: 0 0.2em;
}


/**********************************************************************

　チケット

**********************************************************************/

.area_ticket{
	margin: 0 auto;
	max-width: 900px;
}

.area_ticket .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 4em;
	background: #fff104;
	color: #02243d;
}

/***　速報　***/
.area_ticket .sokuho{}

.area_ticket .sokuho .sch {
	margin-bottom: 0.5em;
	font-size: 38rem;
	font-weight: 700;
}

.area_ticket .sokuho .theater {
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
	line-height: 1.5;
}

.area_ticket .sokuho .theater img {
	display: block;
	width: 100%;
}

.area_ticket .sokuho .start {
	max-width: 460px;
	margin: 0.5em auto 0;
	padding: 0.5em 0;
	border-top: 2px solid #02243d;
	border-bottom: 2px solid #02243d;
	line-height: 1.5;
}

.area_ticket .sokuho .note {
	margin: 2em auto 1em;
	padding-left: 1em;
	line-height: 1.5;
	text-align: left;
	text-indent: -1em;
}

.area_ticket .sokuho .msg_tour {
	font-size: 20rem;
	font-weight: 700;
}

@media screen and (max-width: 500px){
	.area_ticket .inner{
		padding: 2em;
	}
	.area_ticket .sokuho .sch {
		font-size: 30rem;
	}
}

@media screen and (max-width: 320px){
	.area_ticket .sokuho .sch {
		font-size: 26rem;
	}
}

/***　本報　***/

/****************************************

　チケット

*****************************************/

.area_ticket {}

.area_ticket .area_btn {
	display: flex;
	justify-content: center;
	margin: 4em auto 0;
}

.area_ticket .area_btn .btn {
	display: block;
	max-width: 300px;
	width: 100%;
	margin: 0 0.5em;
	padding: 0.5em 2em;
	background-color: #02243d;
	background-image: url("../images/bg_noise.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	outline: 2px solid rgba(69,24,27,0.5);
	outline-offset: -2px;

	font-size: 30rem;
	text-decoration: none;
	text-align: center;
	color: #fff;
	font-family: ro-brush-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	transition: 0.5s;
}

.area_ticket .area_btn .btn:hover {
	background-color: #aa0010;
}

.area_ticket .area_btn .btn .icon {
	margin-right: 0.2em;
}

@media screen and (max-width: 900px){
	.area_ticket .area_btn .btn {
		padding: 0.5em 0.5em;
		font-size: 24rem;
	}

}

@media screen and (max-width: 330px){
	.area_ticket .area_btn .btn {
		font-size: 20rem;
	}
}

.area_ticket .wrap_area {
	margin: 5em auto 0;
}

.area_ticket .area_title {
	color: #02243d;
	font-size: 40rem;
	font-family: ro-brush-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.area_ticket .stage_info {
	margin: 2em auto 3em;
	padding: 1em 2em 0;
}

.area_ticket .stage_info .sch {
	max-width: 619px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.area_ticket .stage_info .sch img {
	width: 100%;
}

.area_ticket .stage_info .theater {
	max-width: 400px;
	width: 70%;
	height: auto;
	margin: 0 auto 1em;
}

.area_ticket .stage_info .theater img {
	width: 100%;
}
.area_ticket .stage_info .hoshitori {
	max-width: 1100px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.area_ticket .stage_info .hoshitori img {
	width: 100%;	
}

@media screen and (max-width: 500px){
	.area_ticket .stage_info {
		padding: 1em 0 0;
	}
}

.area_ticket .stage_info .list_price {
	margin: 2em auto 0;
}

.area_ticket .stage_info .list_price table {
	table-layout: fixed;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	border: 1px solid #fff;
	line-height: 1.5;
}

.area_ticket .stage_info .list_price caption {
	margin: 0 auto 0.5em;
	font-size: 1.2em;
}

.area_ticket .stage_info .list_price th,
.area_ticket .stage_info .list_price td {
	padding: 0.5em;
	border: 1px solid #fff;
}
.area_ticket .stage_info .list_price th {
	padding: 0.5em ;
	background:  rgba(255,255,255,0.1);
	font-size: 18rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}
.area_ticket .stage_info .list_price td {
	height: 4em;
	font-size: 20rem;
}

.area_ticket .stage_info .list_price th.seat {
	width: 5em;
}

.area_ticket .stage_info .list_price .note {
	margin: 1em auto 0;
	text-align: right;
	font-size: 0.8em;
}

.area_ticket .stage_info .list_price .price {
	display: inline-block;
}

@media screen and (max-width: 900px){
	.area_ticket .stage_info .list_price .note {
		padding-left: 1em;
		text-indent: -1em;
		text-align: left;
	}
}


@media screen and (max-width: 400px){
	.area_ticket .stage_info .list_price td {
		font-size: 18rem;
	}
}

@media screen and (max-width: 330px){
	.area_ticket .stage_info .list_price {
		font-size: 0.9em;
	}
}

.area_ticket .stage_info > .caution {
	max-width: 900px;
	margin: 3em auto 0;
	padding: 0;
	text-align: left;
	font-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;
}

.area_ticket .stage_info .caution a {
	color: #fff;
	text-decoration: underline;
}

.area_ticket .stage_info .caution li .tele_note {
	display: inline-block;
	text-indent: 0;
}

.area_ticket .stage_info .caution .caution2 {
	padding: 0.5em;
}

.area_ticket .stage_info .box_fc {
	margin: 2em 0 0;
	text-align: left;
	font-size: 0.9em;	
}
.area_ticket .stage_info .box_fc .link {
	margin-left: 1em;
	color: #fff104;
	transition: 0.5s;
}

.area_ticket .stage_info .box_fc .link .icon {
	margin-right: 0.2em;
}

.area_ticket .way {
	width: 100%;
	margin: 2em auto 0;
	padding: 1em;
	background: #fff104;
	color: #02243d;
}

.area_ticket .way a {
	color: #02243d;
}

.area_ticket .way > dt{
	padding: 0.5em 1em;
	border-bottom: 1px solid #02243d;
    font-size: 24rem;
    text-align: center;
	line-height: 1.5;
	color: #02243d;
	font-weight: 900;
}

.area_ticket .way > dd{
	padding: 1em 2em;
	border-top: none;	
	text-align: center;
}

.area_ticket .way > dd .caution {
	margin: 2em auto 0;
    font-size: 0.9em;
	font-family: 'Noto Sans JP', sans-serif;
}

.area_ticket .way > dd .caution li {}

.area_ticket .way > dd .caution.left {
    text-align: left;
}

.area_ticket .way > dd .caution.left li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

.area_ticket .way > dd .caution.cen {
    text-align: center;
}

.area_ticket .way > dd .caution.cen li {}

.area_ticket .way .start {
	display: inline-block;
	margin: 1em auto;
	line-height: 1.5;
	font-size: 20rem;
	color: #02243d;
	font-weight: 500;
}

.area_ticket .way .start::before {
	content: "≪";
	margin-right: 0.2em;
}

.area_ticket .way .start::after {
	content: "≫";
	margin-left: 0.2em;
}


@media (max-width: 480px) {
	.area_ticket .box_area {
		padding: 1.5em;
	}
}

@media screen and (max-width: 414px){

	.area_ticket .way > dt{
		font-size: 20rem;
		font-feature-settings: "palt";
	}
	.area_ticket .way > dd{
		padding: 1em 0;
	}
    .area_ticket .start {
        font-size: 18rem;
    }
}

@media screen and (max-width: 374px){

}

.area_ticket .way .toho .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	width: 90%;
	margin: 1em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #02243d;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .way .toho .btn:hover {
	background: #064879;
	color: #fff;
}

.area_ticket .way .toho .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .way .toho .senkou {
	margin: 2em auto 0;
}

.area_ticket .way .toho .senkou dt {
	font-weight: 900;
	color: #02243d;
	font-size: 20rem;
}
.area_ticket .way .toho .senkou dd {
	margin-bottom: 1em;
}
.area_ticket .way .toho .senkou dd .day {
	padding: 1em 0.5em;
	background: rgba(255,255,255,0.9);
	border: 1px solid #02243d;
	font-size: 20rem;
}

.area_ticket .way .toho .senkou .caution {
	margin-top: 0.8em;
	padding: 0 0.8em;
}

/*@media screen and (max-width: 414px){
	.area_ticket .way .toho .btn {
        font-size: 24rem;
        line-height: 1.5;
    }
}
	
@media screen and (max-width: 375px){
	.area_ticket .way .toho .btn {
        font-size: 18rem;
    }    
}*/

/*@media screen and (max-width: 413px){
    .area_ticket .way .toho .senkou dd {
        font-size: 18rem;
    }
}

@media screen and (max-width: 364px){
    .area_ticket .way .toho .senkou dd {
        font-size: 16rem;
    }
}*/

/*****　としまチケット　*****/
.area_ticket .way .toshima .senkou {
	margin: 2em auto 0;
}

.area_ticket .way .toshima .senkou dt {
	font-weight: 900;
	color: #02243d;
	font-size: 20rem;
}
.area_ticket .way .toshima .senkou dd {
	margin-bottom: 1em;
	padding: 1em 0.5em;
	background: rgba(255,255,255,0.9);
	border: 1px solid #02243d;
	font-size: 20rem;
}

@media screen and (max-width: 413px){
    .area_ticket .way .toshima .senkou dd {
        font-size: 18rem;
    }
}

@media screen and (max-width: 364px){
    .area_ticket .way .toshima .senkou dd {
        font-size: 16rem;
    }
}

.area_ticket .way .toshima .list_toshima {
	margin: 2em auto 0;
}
.area_ticket .way .toshima .list_toshima dt {
	padding: 0.3em;
	background: #02243d;
	color: #fff;
	font-weight: 900;
}
.area_ticket .way .toshima .list_toshima dd {
	padding: 1em;
}

.area_ticket .way .toshima .pc {
	font-size: 24rem;

}

.area_ticket .way .toshima .pc .note {
	display: inline-block;
	margin-left: 0.5em;
	font-size: 0.8em;
}
.area_ticket .way .toshima .pc a {
	transition: 0.5s;
}
.area_ticket .way .toshima .pc a:hover {
	text-decoration: underline;
}

.area_ticket .way .toshima .tel {
	display: block;
	font-size: 24rem;
}

.area_ticket .way .toshima .tel a{
	color: #02243d;
	text-decoration: none;
}

.area_ticket .way .toshima .tel .icon {
	margin-right: 0.2em;
	font-size: 0.9em;
	color: #02243d;

}

@media screen and (max-width: 400px){
	.area_ticket .way .toshima .pc {
		font-size: 20rem;
	}
}


/*****　テレザーブ　*****/

.area_ticket .way .tele .tel {
	display: block;
	font-size: 24rem;
	line-height: 1.5;
}

.area_ticket .way .tele .tel a{
	color: #02243d;
	text-decoration: none;
}

.area_ticket .way .tele .tel .icon {
	margin-right: 0.2em;
	font-size: 0.9em;
	color: #02243d;
}

.area_ticket .way .tele .tel .note {
	display: inline-block;
	font-size: 0.8em;
}

/*****　プレイガイド　*****/
.area_ticket .way .playguide {
    margin: 1em auto 0;
}

.area_ticket .way .playguide .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 1em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #02243d;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .way .playguide .btn:hover {
	background: #064879;
	color: #fff;
}

.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 .playguide .pc {
        font-size: 18rem;
    }
}*/



/***　グループ観劇　***/

.area_ticket .way .group .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 0 auto 1em;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #02243d;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .way .group .btn:hover {
	background: #064879;
	color: #fff;
}

.area_ticket .way .group .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .way .group .tel,
.area_ticket .way .group .office {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 20rem;
}

.area_ticket .way .group .tel a {
    text-decoration: none;
	color: #fff;
}

.area_ticket .way .group .tel .icon {
	margin-right: 0.2em;
	font-size: 0.9em;
	color: #02243d;

}

/*****　リセール　*****/

.area_ticket .way .resale p {
	padding: 0 1em;
    text-align: left;
	font-size: 16rem;
}

.area_ticket .way .resale .list {
    margin-top: 2em;
}

.area_ticket .way .resale .list li {
    margin: 1em;
    display: inline-block;
}

.area_ticket .way .resale .list li img {
	display: block;
}

.area_ticket .way .resale .list .about {
	display: block;
	font-weight: 500;
}

.area_ticket .way .resale .list a {
    text-decoration: none;
}



/***　会場案内　***/

.area_ticket .way > dd.kaijyo {
	text-align: center;
}

.area_ticket .kaijyo .logo {
	max-width: 440px;
	margin: 1em auto;
    font-weight: 400;
}

.area_ticket .kaijyo .logo img {
	width: 100%;
}

.area_ticket .kaijyo .list_btn .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 200px;
	width: 100%;
	margin: 0 0.5em 0.5em;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #02243d;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .kaijyo .list_btn .btn:hover {
	background: #064879;
	color: #fff;
}

.area_ticket .kaijyo .list_btn .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 480px){


	.area_ticket .kaijyo .access {
		font-size: 15rem;
	}
	
	.area_ticket .kaijyo .list_btn .btn {
		padding: 0.5em 2em 0.5em 1.5em;
		font-size: 18rem;
	}
}

@media screen and (max-width: 360px){
	.area_ticket .kaijyo .list_btn {
		display: block;
		max-width: inherit;
	}
	.area_ticket .kaijyo .list_btn .btn {
		display: block;
		margin: 0 auto;
		padding: 0.5em 1em;
		font-weight: 900;
	}
	.area_ticket .kaijyo .list_btn .btn:not(:last-of-type) {
		margin-bottom: 0.5em;
	}
	.area_ticket .kaijyo .list_btn .btn .in::before {
		content: none;
	}
}


/****************************************
　お問合せ
****************************************/

.area_ticket .way .contact{
    padding: 1em;
    text-align: center;
    line-height: 1.5;
}
.area_ticket .way .contact .office {
    display: inline-block;
    margin-right: 0.2em;
}

.area_ticket .way .contact .tel {
    display: inline-block;
    margin: 0.5em auto 0;
}

.area_ticket .way .contact .tel a{
    color: #02243d;
    text-decoration: none;
}

.area_ticket .way .contact .tel .icon {
    margin-right: 0.2em;
    font-size: 0.9em;
}


@media screen and (max-width: 340px){
    .area_ticket .way .contact .caution {
        text-align: left;
        padding-left: 1em;
        text-indent: -1em;
    }
}


/***　ツアー速報　***/

.area_ticket .tour .sokuho.box {
	margin: 0 auto 2em;
	padding: 1em;
	border: 3px solid #02243d;
	background: rgba(43,38,48,0.3);
}

.area_ticket .tour .sokuho .list {
	display: inline-block;
	margin: 1em auto;	
}

.area_ticket .tour .sokuho .list li {
	font-size: 30rem;
	font-weight: 700;
}
.area_ticket .tour .sokuho .list li:not(:last-of-type) {
	margin-bottom: 1em;
	
}
.area_ticket .tour .sokuho .list .day {
	display: block;
	text-align: center;
	color: #02243d;

}

.area_ticket .tour .sokuho .list .theater {
	display: block;
}

@media screen and (max-width: 650px){
	.area_ticket .tour .sokuho .list {
		display: block;
	}

	.area_ticket .tour .sokuho .list li {
		font-size: 24rem;
		text-align: center;
		line-height: 1.5;
	}

}

@media screen and (max-width: 400px){
	.area_ticket .tour .sokuho .list li {
		font-size: 20rem;
	}
}



/**********************************************************************

　ツアー

**********************************************************************/

.area_tour {
	max-width: 900px;
	margin: 2em auto;
}

.area_tour .list {
	margin: 0 auto;
}

.area_tour .list .list dt {
	font-size: 30rem;
	color: #e83428;
	font-weight: 700;
	text-shadow: 2px 2px 2px #140402;
}
.area_tour .list .list dd {
	margin: 0 auto 3em;
	padding: 2em 1em;
	background: rgba(255,255,255,0.1);
	line-height: 1.5;
}

.area_tour .list {
	width: 100%;
	margin: 2em auto 0;
	padding: 1em;
	background: #fff104;
	color: #02243d;
}

.area_tour .list a {
	color: #02243d;
}

.area_tour .list > dt{
	padding: 0.5em 1em;
	border-bottom: 1px solid #02243d;
    font-size: 24rem;
    text-align: center;
	line-height: 1.5;
	color: #02243d;
	font-weight: 900;
}

.area_tour .list > dd{
	padding: 1em 2em;
	border-top: none;	
	text-align: center;
}


.area_tour .list .day {
	display: block;
	margin: 0 0.5em;
	font-size: 30rem;
	font-weight: 700;
}
.area_tour .list .day .s {
	display: inline-block;
	margin: 0 0.1em;
	font-size: 0.7em;
}
.area_tour .list .theater {
	display: block;
	margin: 0 0.5em;
	font-size: 24rem;
	font-weight: 700;
	line-height: 1.5;
}
.area_tour .list .hoshitori {
	display: block;
	max-width: 440px;
	width: 100%;
	margin: 0 auto;
}
.area_tour .list .hoshitori img {
	display: block;
	width: 100%;
}
@media screen and (max-width: 500px){
	.area_tour .list .day {
		font-size: 28rem;
	}
	.area_tour .list .theater {
		font-size: 20rem;
	}
}
@media screen and (max-width: 400px){
	.area_tour .list > dd{
		padding: 1em;
	}
	.area_tour .list .day {
		font-size: 22rem;
	}
	
	.area_tour .list .theater {
		font-size: 20rem;
	}
}

@media screen and (max-width: 360px){

	.area_tour .list .day {
		font-size: 20rem;
		font-weight: 500;
	}

	.area_tour .list .theater {
		font-size: 18rem;
		font-weight: 500;
	}
}

.area_tour .list .contact {
	width: 100%;
	margin: 1em auto 0;
	padding: 0.5em 1em;
	border: 1px solid #02243d;
	background: #fff;
	line-height: 1.5;
}
.area_tour .list .contact .lbl {
	display: inline-block;
}
.area_tour .list .contact .lbl::after {
	content: "：";
}
.area_tour .list .contact .office,
.area_tour .list .contact .tel,
.area_tour .list .contact .time {
	display: inline-block;
}

.area_tour .list .contact .tel {
	margin: 0 0.5em;
}
.area_tour .list .contact .tel a{
	text-decoration: none;
	color: #0780db;
}
.area_tour .list .contact .url {
	display: block;
}

.area_tour .list .contact .url a {
	color: #0780db;
	text-decoration: none;
	transition: 0.5s;
}

.area_tour .list .contact .url a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 560px){
	.area_tour .list .contact .lbl {
		display: block;
	}
	.area_tour .list .contact .lbl::before {
		content: "［";
	}
	.area_tour .list .contact .lbl::after {
		content: "］";
	}
}

@media screen and (max-width: 400px){
	.area_tour .list .contact td {
		padding: 0.5em;
		line-height: 1.5em;
	}
	.area_tour .list .contact .url .lbl {
		display: block;
		margin-top: 0.8em;
		line-height: 1;
	}
}

/***************************************************

　ムービー

**************************************************/

.area_movie {}

.area_movie .list {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto 40px;
}

.area_movie .list.center {
    justify-content: center;
}

.area_movie .list .item{
    width: 100%;
    justify-content: center;
    margin-bottom: 4em;
    margin: 0 10px 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_movie .list .name {
    margin-bottom: 0.5em;
    padding: 0.3em 1em;
    font-size: 24rem;
    line-height: 1.3;
	color: #fff;
}

.area_movie .list .name .pk {
	display: inline-block;
	margin: 0 0.25em;
}

.area_movie .list .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.area_movie .list .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
 

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 768px){
    .area_movie .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_movie .list .item{
        margin: 0 auto 2em;
    }
	.area_movie .list .name {
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_movie .list .name {
        font-size: 16rem;
    }
    .area_movie .list .list {
        margin-bottom: 10px;
    } 
}
@media screen and (max-width: 340px){

}

/***************************************************

　フライヤー

**************************************************/

.area_flyer {
	margin: 0 auto;
	padding-bottom: 0;
}
.area_flyer.sec {
	margin-bottom: 2em;
}
.area_flyer .heading_page {
	margin-bottom: 1em;
}

.area_flyer .box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
	padding: 3em;
	border-radius: 10px;
	background: #fff;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.area_flyer a {
	text-decoration: none;
}

.area_flyer .item {
    display: inline-block;
	max-width: 300px;
    margin: 1em;
    vertical-align: top;
}

.area_flyer .item dt {
    margin: 0.5em auto 0;
	padding: 0.3em 1em;
    font-size: 18rem;
	text-decoration: none;
    line-height: 1;
}

.area_flyer .item dt .note {
    display: block;
    font-size: 0.8em;
}

.area_flyer .item img {
	box-shadow: 2px 2px 10px rgba(41,32,27,0.3);
    width: 100%;
    margin: 0 auto;
    display: block;
}


@media screen and (max-width: 700px){
    .area_flyer .item {
		display: block;
		margin: 0 auto 3em;
	}
    .area_flyer .item img {
        margin: 0 auto;
    }
}


/****************************************

　グッズ

*****************************************/

.area_goods {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    margin: 2em auto 6em;
}

.area_goods .box {
	max-width: 900px;
	margin: 0 auto;
}


/*
.area_goods .list .item > dt{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.8em 0;
	border-radius: 0.1em;
	background: #ccae50;
    font-size: 24rem;
    text-align: center;
	line-height: 1.3;
	color: #141116;
	font-family: "fot-chiaro-std", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.area_goods .list .item > dd{
	padding: 1em 2em;
	border-top: none;	
	text-align: center;
}
*/

.area_goods .list {
	width: 100%;
	margin: 2em auto 0;
}

.area_goods .list .item {
/*	margin: 0 auto 2em;
	padding: 2em;
	background: #fff;
	border-radius: 10px;*/
	margin: 0 auto 2em;
	padding: 1em;
	background: #fff104;
	color: #02243d;
}
.area_goods .list .item a {
	color: #02243d;
}

.area_goods .list .item > dt{
	padding: 0.5em 1em;
	border-bottom: 1px solid #02243d;
    font-size: 24rem;
    text-align: center;
	line-height: 1.5;
	color: #02243d;
	font-weight: 900;
}

.area_goods .list .item > dd{
	padding: 1em 2em;
	border-top: none;	
	text-align: center;
}

.area_goods .list .item > dt .name {
	display: inline-block;
	margin: 0 0.5em;
}

.area_goods .list .item > dt .price {
	display: inline-block;
	margin: 0 0.5em;
}

.area_goods .list .item > dt .price .s {
	font-size: 0.8em;
}

.area_goods .list dd .photo {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding: 1em;
	background: #fff;
}

.area_goods .list .program dd .photo img { 
	display: block;
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
}
.area_goods .list .set dd .photo img {
	display: block;
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}

.area_goods .list dd .catch {
	margin: 1em auto 0;
	padding: 1em;
	color: #02243d;
}

.area_goods .list dd .data {
	margin: 1em auto 0;
	padding: 2em 0 0;
	border-top: 1px solid #02243d;
	font-size: 0.9em;
}

.area_goods .list dd .data li {
	display: inline-block;
}

.area_goods .list dd .data li:not(:last-of-type)::after {
	content: "／";
	margin-left: 0.5em;
}


@media screen and (max-width: 580px){

}
@media screen and (max-width: 500px){

	.area_goods .list {
		padding: 1em 0;
	}
	.area_goods .list .item > dt {
		padding: 0.5em 0.5em;
		line-height: 1.5;
	}
	
	.area_goods .list .item > dd {
		padding: 1em 0;
	}
	.area_goods .list .item > dt .name {
		display: block;
	}
	.area_goods .list .item > dt .price {
		display: block;
		margin-left: 1.2em;
		font-size: 0.9em;
	}
}
@media screen and (max-width: 460px){
	.area_goods .list dd .catch {
		/*text-align: left;*/
		font-size: 0.9em;
	}
}

@media screen and (max-width: 400px){
	.area_goods .list dd .data li {
		display: block;
		margin-right: 0.5em;
		text-align: right;
	}

	.area_goods .list dd .data li:not(:last-of-type)::after {
		content: none;
		margin-left: 0;
	}
}

@media screen and (max-width: 380px){
	.area_goods .list .item > dt {
		font-size: 22rem;
	}
	.area_goods .list dd .catch {
		text-align: left;
	}
	.area_goods .list dd .catch .pk {
		display: inline;
	}
}

@media screen and (max-width: 320px){
	.area_goods .list .item > dt {
		font-size: 20rem;
	}
}

/****　プログラム　***/

.area_goods .list .program .p_cont {
	display: inline-block;
	margin: 2em auto 0;
	padding: 1em 2em;
	text-align: left;
}

.area_goods .list .program .p_cont .lbl {
	display: block;
	background: #02243d;
	color: #fff;
	text-align: center;
	font-weight: 700;
}

.area_goods .list .program .p_cont ul {
	padding: 1em;
	text-align: left;
}

.area_goods .list .program .p_cont ul li {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1.2em;
	text-indent: -1.2em;
	line-height: 1.5;
}

.area_goods .list .program .p_cont ul li .pk {
	padding-left: 0;
	text-indent: 0;
}

.area_goods .list .program .p_cont .icon {
	margin-right: 0.2em;
}

@media screen and (max-width: 430px){
	.area_goods .list .program .p_cont {
		padding: 1em 0;
	}
	.area_goods .list .program .p_cont ul {
		padding: 1em 0;
	}
}

.area_goods .foot_caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-align: left;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.9em;
}

.area_goods .foot_caution {
	padding: 0 2em;
	color: #fff;
	font-weight: 400;
}

.area_goods .credit {
	margin: 0 auto 2em;
	font-size: 0.9em;
	color: #fff;
	font-weight: 500;
}

.area_goods .wrap_order {
	margin: 6em auto 4em;
}

.area_goods .wrap_order .list_way {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .wrap_order .list_way > dt {
	margin: 2em auto 0.5em;
	padding-left: 0.2em;
	color: #fff;
	font-size: 24rem;
	line-height: 1.3;
	text-align: left;
}
.area_goods .wrap_order .list_way > dt::before {
	content: "●";
	margin-right: 0.1em;
	color: #fff104;
}

.area_goods .wrap_order .list_way > dd {
}
.area_goods .wrap_order .list_way table {
	width: 100%;
	margin: 0 auto 2em;
	border: 1px solid #02243d;
	background: #fff;
	color: #02243d;
}

.area_goods .wrap_order .list_way th,
.area_goods .wrap_order .list_way td {
	padding: 0.5em 1em;
	border: 1px solid #02243d;
	text-align: left;
}
.area_goods .wrap_order .list_way th {
	width: 8em;
	background: #fff104;
	color: #02243d;
	font-weight: 700;
	text-align: center;
}
.area_goods .wrap_order .list_way td {
	line-height: 1.5;
}
.area_goods .wrap_order .list_way td .list_handling{
}

.area_goods .wrap_order .list_way td .note {
	margin: 0.5em 0 0 1em;
	font-size: 0.9em;
	text-indent: -1em;
	line-height: 1.5;
}

.area_goods .wrap_order .list_way td .note2 {
	font-size: 0.9em;
}

.area_goods .wrap_order .chanter {
	color: #d50558;
	text-decoration: underline;
	transition: 0.5s;
	font-weight: 500;
}

.area_goods .wrap_order .chanter .fas {
}

.area_goods .wrap_order .chanter:hover {
}

.area_goods .wrap_order .btn_order {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #02243d;
	border-radius: 5px;
	color: #fff;
	font-weight: 700;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.5;
	text-align: center;
	transition: 0.5s;
}

.area_goods .wrap_order .btn_order:hover {
	background: #064879;
	color: #fff;
}

.area_goods .wrap_order .btn_order .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 500px){
	.area_goods .wrap_order .list_way th {
		width: 5.5em;
		padding: 0.5em;
	}
	.area_goods .wrap_order .btn_order {
		width: 90%;
		max-width: 200px;
		font-size: 20rem;
	}
}

@media screen and (max-width: 400px){
	.area_goods .wrap_order .list_way > dt{
		font-size: 20rem;
	}
	
	.area_goods .wrap_order .list_way table {
	}
	.area_goods .wrap_order .list_way th,
	.area_goods .wrap_order .list_way td {
		display: block;
		width: 100%;
		text-align: center;
	}
	.area_goods .wrap_order .list_way th {
		padding: 0.5em 0;
		border: none;
		line-height: 1;
		background: #fff104;
	}
	.area_goods .wrap_order .list_way td {
		padding: 1em 0;
		border: none;
	}
	.area_goods .wrap_order .btn_order {
		margin: 0 auto;
		width: 90%;
	}

	.area_goods .wrap_order .list_way td .note {
		padding: 1em 2em 0;
		text-align: center;
	}
}

@media screen and (max-width: 340px){
	.area_goods .wrap_order .list_way td .note {
		text-align: left;
	}
}



