@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: shippori-mincho, sans-serif; 600,700,800

英字のみ
font-family: gelica, sans-serif; 400,500,600,700
***/

/***色
藍 #070e20; rgba(7,14,32,1);
黄 #ddb03d;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #ddb03d;
    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: 1.8;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #070e20;
}

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: center;
    background-size: auto;  
    background-color: #070e20;*/
}

@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: #070e20;
	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: #fff;
  	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: 100px;
	width:100%;
	padding: 1em 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.3);
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi .logo {
	max-width: 200px;
	width: 80%;
	margin: 0 auto 0.5em;
}

#g-navi .logo img {
	display: block;
	width: 100%;
}

#g-navi ul {
    margin: 0 1em;
    padding: 5px 0 5px;
    line-height: 1.3;
    vertical-align: top;
}


#g-navi ul li {
    display: inline-block;
    margin: 0 0.5em;
    padding: 5px 0 5px; 
    line-height: 1.1;
    vertical-align: top;
    font-size: 24rem;
}


#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-family: gelica, sans-serif;
	font-weight: 400;
	font-style: normal;
	transition: 0.5s;
}

#g-navi ul li .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

#g-navi ul li .jp {
	display: block;
	font-size: 0.4em;
	color: #ddb03d;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	transition: 0.5s;
}

#g-navi ul li .en:hover {
	text-shadow: 0 0 5px rgba(78,146,239,0.9), 0 0 20px rgba(5,84,191,0.9),0 0 20px rgba(5,84,191,0.9);
}

@media screen and (max-width: 1300px){
	#g-navi ul .res_navi {
		display: none;
	}
}
@media screen and (max-width: 600px){

	#g-navi ul li {
		margin: 0 0.5em; 
		font-size: 30rem;
	}
}

@media screen and (max-width: 400px){

	#g-navi ul li {
		font-size: 24rem;
	}
}

@media screen and (max-width: 370px){

	#g-navi ul li {
		font-size: 20rem;
	}
}


/*.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 .logo {
	display: none;
}

#header.dnone #g-navi ul .res {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	display: flex;
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background: rgba(7,14,32,0.91);
	width:100%;
	height: 100vh;
}
#header.dnone.panelactive #g-navi ul {
	max-width: 800px;
}
#header.dnone.panelactive #g-navi ul li {
	display:block;
	padding:0 auto 0.5em;
	font-size: 24rem;
}


/*リストの形状*/

#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: 650px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		display: inline-block;
		margin: 0 0.5em 0.5em;
	}
} 

@media screen and (max-height: 300px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 18rem;
	}
} 
@media screen and (max-height: 360px) { /*画面の高さが360以下の時*/

/*	#header.dnone.panelactive #g-navi ul li {
		padding: 0.3em 0; 
		font-size: 16rem;
	}*/
}  


/****************************************

　バナー 　6月16日より前

*****************************************/
/*#header .info {
	padding: 0 1em;
}
#header .info a {
	display: block;
	max-width: 900px;
	margin: 0.5em auto;
	padding: 1em;
	border-radius: 5px;
	border: 1px groove #ddb03d;
	color: #fff;
	transition: 0.5s;
}
#header .info .lbl {
	display: block;
	margin: 0 auto 0.5em;
	padding: 0.2em 0.5em;
	background: #ddb03d;
	color: #070e20;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	font-size: 0.8em;
}
#header .info .text1 {
	display: block;
	color: #ddb03d;
	font-size: 1.5em;
	font-family: shippori-mincho, sans-serif;
}

#header .info a:hover {
	box-shadow: 0 0 5px inset rgba(78,146,239,0.5), 0 0 20px rgba(5,84,191,0.5),0 0 20px rgba(5,84,191,0.5);

}

#header .info .text2 {
	display: block;
	margin: 0.5em auto 0;
	line-height: 1.5;
}

@media screen and (max-width: 430px) {
	#header .info a {
		padding: 1em 1.5em;
	}
	#header .info .text1 {
		font-size: 1.3em;
	}
}
@media screen and (max-width: 340px) {
	#header .info a {
		padding: 1em;
	}
}*/


/****************************************

　バナー　6月16日以降

*****************************************/

#header .info {
	padding: 0 1em;
}
#header .info a {
	display: block;
	max-width: 900px;
	margin: 0.5em auto;
	padding: 1em;
	border-radius: 5px;
	border: 1px groove #ddb03d;
	color: #fff;
	transition: 0.5s;
}
#header .info .lbl {
	display: block;
	margin: 0 auto 0.5em;
	padding: 0.2em 0.5em;
	background: #ddb03d;
	color: #070e20;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	font-size: 0.8em;
}
#header .info .text1 {
	display: block;
	color: #ddb03d;
	font-size: 1.5em;
	font-family: shippori-mincho, sans-serif;
}

#header .info a:hover {
	box-shadow: 0 0 5px inset rgba(78,146,239,0.5), 0 0 20px rgba(5,84,191,0.5),0 0 20px rgba(5,84,191,0.5);

}

#header .info .text2 {
	display: block;
	margin: 0.5em auto 0;
	line-height: 1.5;
	font-size: 1.5em;
	font-family: shippori-mincho, sans-serif;
}

@media screen and (max-width: 430px) {
	#header .info a {
		padding: 1em 1.5em;
	}
	#header .info .text1 {
		font-size: 1.3em;
	}
	#header .info .text2 {
		font-size: 1.3em;
	}
}
@media screen and (max-width: 340px) {
	#header .info a {
		padding: 1em;
	}
	#header .info .text1 {
		font-size: 1.2em;
	}
	#header .info .text2 {
		font-size: 1.2em;
	}
}

/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/

#pagetop{
    position: fixed;
    right: 10px;
    bottom: 10px;
    line-height: 0;
	z-index: 100;
}

#pagetop img {
	display: block;
	width: 100%;
	max-width: 100px;
}



@media screen and (max-width: 768px) {
	#pagetop img {
		width: 30vw;

	}

}

footer{
	width: 100%;
	margin: 4em auto 0;
    padding: 4em 0 0;
	background: rgba(0,0,0,0.3);
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

footer .copy {
	display: block;
	padding: 1em;
	font-family: gelica, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
}

footer .sns_link {
	display: inline-block;
    margin: 40px 0.5em 0;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em 0.5em;
    text-align: center;
    vertical-align: bottom;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	bottom: 13px;
    width: 35px;
}

footer .sns_link li.ban_teigeki_closing {
    width: 240px;
}

footer .sns_link li.ban_concert {
    width: 200px;
}

footer .banner_link {
	display: inline-block;
    margin: 40px 0.5em 0;
}

footer .banner_link li {
    display: inline-block;
    margin: 1em 0.5em;
    text-align: center;
    vertical-align: bottom;
}

footer .banner_link li img {
    width: 100%;
}

footer .banner_link li.ban_teigeki_closing {
    width: 240px;
}

footer .banner_link li.ban_concert {
    width: 300px;
}

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;
}

.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: 2.5em auto 1.5em;
	font-size: 50rem;
	color: #070e20;
	line-height: 1.1;
	text-shadow: 2px 3px 0 rgba(0,0,0,1);
}

.sec .heading_sec .en {
	display: block;
	font-family: gelica, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
}

.sec .heading_sec .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

.sec .heading_sec .jp {
	display: block;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	color: #ddb03d;
	font-size: 0.4em;
}


@media screen and (max-width: 400px){
	.heading_sec {
		font-size: 40rem;
	}
}


@media screen and (max-width: 300px){
	.heading_sec {
		font-size: 24rem;
	}
}


/****************************************

　ビジュアル

*****************************************/

.area_visual {
    max-width: 900px;
    margin: 0 auto 4em;
}

.area_visual .area_info {
	margin: 1em auto 0;
}

.area_visual .area_info .btn {
	display: inline-block;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	padding: 0.5em;
	border: 1px solid #fff;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.3;
	color: #fff;
	transition: 0.5s;
}
.area_visual .area_info .btn:hover {
	border: 1px solid #ddb03d;
	color: #ddb03d;
}
.area_visual .area_info .btn:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.area_visual .visual .item {
    display: block;
    margin: 1em auto;
    text-align: center;
}

.area_visual .visual .item img {
	display: block;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

@media screen and (max-width: 400px){
	.area_visual .area_info .btn {
		font-size: 20rem;
	}
}


/**********************************************************************

　ニュース

**********************************************************************/

.area_news {
	max-width: 900px;
	margin: 0 auto;
}

.area_news .box {
	margin: 0 auto;
}

.area_news .list {
	margin: 0 auto;
	text-align: left;
	font-size: 18rem;
}

.area_news .list .date {
	padding: 0.5em 0.5em 0;
	font-size: 20rem;
	font-family: gelica, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
}

.area_news .list .text {
	padding: 0 0.5em 0.5em;
}
.area_news .list .text:not(:last-of-type) {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.area_news .list .text .point {
	color: red;
}


/**********************************************************************

　イントロ

**********************************************************************/

.area_intro {
	max-width: 900px;
	margin: 0 auto;
}

.area_intro .box {
	margin: 0 auto;
}

.area_intro .catch {
	margin: 0 auto;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 30rem;
}

.area_intro .photo {
	max-width: 650px;
	margin: 2em auto;
}

.area_intro .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_intro .text {
	font-size: 18rem;
	text-align: left;
}

.area_intro .text p {
	margin-bottom: 1em;
}

.area_intro .text p:last-of-type {
	margin-top: 2em;
}

@media screen and (max-width: 420px){

	.area_intro .catch {
		font-size: 24rem;
	}
}

@media screen and (max-width: 310px){

	.area_intro .catch {
		font-size: 22rem;
	}
}

/**********************************************************************

　ストーリー＆ソングス

**********************************************************************/

.area_story {
	max-width: 900px;
	margin: 0 auto;
}

.area_story .box {
	margin: 0 auto;
}

@media screen and (max-width: 960px){
	.area_story .box {
		width: 90%;
	}
}
@media screen and (max-width: 610px){
	.area_story .box {
		width: 95%;
	}
}
@media screen and (max-width: 400px){
	.area_story .box {
		width: 100%;
	}
}

.area_story .catch {
	margin: 0 auto;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 28rem;
}

@media screen and (max-width: 1000px){
	.area_story .catch {
		font-size: 24rem;
	}
}

@media screen and (max-width: 380px){
	.area_story .catch {
		font-size: 20rem;
	}
}

.area_story .box2::after{
  content: "";
  display: block;
  clear: both;
}

.area_story h3 {
    display: flex;
    align-items: center;
	margin: 3em auto 2em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 24rem;
}

.area_story h3:before,
.area_story h3:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff;
}

.area_story h3:before {
    margin-right: 1em;
	background: linear-gradient(-90deg, #fff, transparent);
}

.area_story h3:after {
    margin-left: 1em;
	background: linear-gradient(90deg, #fff, transparent);
}

@media screen and (max-width: 768px){
	.area_story h3 {
		margin: 3em auto 1em;
	}
}

.area_story .photo_w {
	width: 100%;
	margin: 1em auto 0;
}

/*.area_story .photo_w::after{
  content: "";
  display: block;
  clear: both;
}*/

.area_story .photo_w li {
	display: inline-block;
	max-width: 400px;
	margin: 20px 20px 20px;
}

.area_story .photo_s {}

.area_story .photo_s.wide {
	margin: 0.5em auto;
	max-width: 900px;
}

.area_story .photo_s.left {
	clear: both;
	float: left;
	margin: 0.5em 1.5em 20px 20px;
}

.area_story .photo_s.right {
	clear: both;
	float: right;
	margin: 0.5em 20px 20px 1.5em;
}

.area_story .photo_s .tate {
	max-width: 276px;
}
.area_story .photo_s .yoko {
	max-width: 400px;
}

.area_story .photo_w img,
.area_story .photo_s img {
	display: block;
	width: 100%;
	margin: 0 auto;
	box-shadow: 0 0 50px rgba(2,5,14,0.9);
}

@media screen and (max-width: 960px){
	.area_story .photo_w li {
		max-width: 300px;
		margin: 10px 10px 10px;
	}
	.area_story .photo_s.left {
		margin: 0.5em 1.5em 10px 10px;
	}

	.area_story .photo_s.right {
		margin: 0.5em 10px 10px 1.5em;
	}
	.area_story .photo_s .tate {
		max-width: 200px;
	}
	.area_story .photo_s .yoko {
		max-width: 300px;
	}
}

@media screen and (max-width: 760px){
	.area_story .photo_w li {
		max-width: 240px;
	}
	.area_story .photo_s .tate {
		max-width: 160px;
	}
	.area_story .photo_s .yoko {
		max-width: 240px;
	}
}

@media screen and (max-width: 610px){
	.area_story .photo_w li {
		margin: 10px 3px 10px;
	}
}

@media screen and (max-width: 550px){
	.area_story .photo_w li {
		display: block;
		max-width: 340px;
		width: 80%;
		margin: 20px auto 20px;	
	}
	.area_story .photo_s.left {
		float: none;
		margin: 20px auto 20px;	
	}

	.area_story .photo_s.right {
		float: none;
		margin: 20px auto 20px;	
	}
	.area_story .photo_s .tate {
		max-width: 226px;
		width: 50%;
		margin: 0 auto;
	}
	.area_story .photo_s .yoko {
		max-width: 340px;
		width: 80%;
		margin: 0 auto;

	}
}

.area_story .text {
	font-size: 18rem;
	text-align: left;
}

.area_story .text p {
	margin-bottom: 1em;
}


/**********************************************************************

　キャスト（アー写版）

**********************************************************************/

.area_cast {
/*	max-width: 900px;*/
	margin: 2em auto;
}

.area_cast .box {
	margin: 0 auto;
	padding: 5em 1em 3em;
}

/*****　プリンシバル　*****/

.area_cast .list_p {
	margin: 2em auto 0;
}

.area_cast .list_p .wrap_cast {
	text-align: center;
}

.area_cast .list_p .wrap_cast .item {
	display: inline-block;
}

.area_cast .list_p {}

.area_cast .list_p dt {
	margin: 0 auto 0.5em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 24rem;
	color: #ddb03d;
}

.area_cast .list_p .list_name {
	margin: 0 1em 5em;
}

.area_cast .list_p .list_name .res_cast {
	display: none;
}

.area_cast .list_p .list_name li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 2px 2em;
	width: 200px;
	vertical-align: top;
}

.area_cast .list_p .list_name li .photo {
}

.area_cast .list_p .list_name li .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
	border: 1px groove #fff;
}

.area_cast .list_p .list_name li .name {
	display: block;
	margin: 0.3em auto 0;
	font-size: 20rem;
}

.area_cast .list_p .list_name li .btn_prof {
	display: inline-block;
	padding: 0.3em;
	border: 1px groove #fff;
	background: rgba(255,255,255,0.1);
	font-size: 0.7em;
	color: #fff;
	line-height: 1;
}

.area_cast .list_p .list_name li .icon_sns {
	margin-left: 5px;
	vertical-align: middle;
}

.area_cast .list_p .list_name li .icon_sns a{
	color: #fff;
}

@media screen and (max-width: 980px){
	.area_cast .list_p .list_name {
		margin: 0 auto 1em;
	}
	.area_cast .list_p .list_name li {
		width: 20vw;
	}
}

@media screen and (max-width: 560px){
	.area_cast .list_p .item.wide li:nth-child(-n+2) {
		margin-bottom: 0.8em;
	}
	.area_cast .list_p .list_name .res_cast {
		display: inline;
	}
	.area_cast .list_p .list_name li {
		width: 25vw;
	}
	.area_cast .list_p .list_name li .name {
		font-size: 16rem;
	}
}

/*****　アンサンブル　*****/

.area_cast .list_e {
	margin: 2em auto 0;
}

.area_cast .list_e {
	text-align: center;
}

.area_cast .list_e li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 2px 2em;
	width: 160px;
	vertical-align: top;
}

.area_cast .list_e li .photo {
	display: block;
	margin: 0 auto;
}

.area_cast .list_e li .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
	border: 1px groove #fff;
}

.area_cast .list_e li .name {
	display: block;
	margin: 0.3em auto 0;
	font-size: 18rem;
}

.area_cast .list_e li .btn_prof {
	display: inline-block;
	padding: 0.3em;
	border: 1px groove #fff;
	background: rgba(255,255,255,0.1);
	font-size: 0.6em;
	color: #fff;
	line-height: 1;
}

.area_cast .list_e li .icon_sns {
	margin-left: 5px;
	vertical-align: middle;
}

.area_cast .list_e li .icon_sns a{
	color: #fff;
}

@media screen and (max-width: 980px){
	.area_cast .list_e li {
		width: 16vw;
	}
}

@media screen and (max-width: 570px){
	.area_cast .list_e li {
		width: 20vw;
	}
	.area_cast .list_e li .name {
		font-size: 14rem;
	}
}

@media screen and (max-width: 400px){
	.area_cast .list_e li {
		width: 22vw;
	}

	.area_cast .list_e li .photo {
		width: 20vw;
	}

	.area_cast .list_e li .icon_sns {
		display: block;
		margin: auto 0;
	}
}


/*****　子役　*****/

.area_cast .list_k {
	margin: 2em auto 0;
}

.area_cast .list_k .res_list_k {
	display: none;
}

.area_cast .list_k .wrap_cast {
	display: inline-block;
	margin: 0 0.5em;
	text-align: center;
}

.area_cast .list_k .wrap_cast .item {
	display: inline-block;
}

.area_cast .list_k {}

.area_cast .list_k dt {
	margin: 0 auto 0.5em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 20rem;
	color: #ddb03d;
}

.area_cast .list_k ul {}

.area_cast .list_k li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 1px 2em;
	width: 140px;
	vertical-align: top;
}

.area_cast .list_k li .photo {
	display: block;
	margin: 0 auto;
}

.area_cast .list_k li .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
	border: 1px groove #fff;
}

.area_cast .list_k li .name {
	display: block;
	margin: 0.3em auto 0;
	font-size: 18rem;
}

.area_cast .list_k li .btn_prof {
	display: inline-block;
	padding: 0.3em;
	border: 1px groove #fff;
	background: rgba(255,255,255,0.1);
	font-size: 0.5em;
	color: #fff;
	line-height: 1;
}

.area_cast .list_k li .icon_sns {
	margin-left: 5px;
	vertical-align: middle;
}

.area_cast .list_k li .icon_sns a{
	color: #fff;
}

@media screen and (max-width: 980px){
	.area_cast .list_k li {
		width: 14vw;
	}
}
@media screen and (max-width: 570px){
	.area_cast .list_k dt {
		margin-bottom: 2em;
	}
	.area_cast .list_k .wrap_cast {
		display: block;
		margin-bottom: 3em
	}

	.area_cast .list_k .res_list_k {
		display: inline;
	}

	.area_cast .list_k li {
		width: 18vw;
	}
	.area_cast .list_k li .name {
		font-size: 14rem;
	}
}

@media screen and (max-width: 400px){
	.area_cast .list_k li {
		width: 20vw;
	}

	.area_cast .list_k li .photo {
		width: 18vw;
	}
	.area_cast .list_e li .icon_sns {
		display: block;
		margin: auto 0;
	}
}

@media screen and (max-width: 340px){
	.area_cast .list_k li {
		width: 24vw;
	}

	.area_cast .list_k li .photo {
		width: 18vw;
	}
}


/**********************************************************************

　キャスト（扮装衣装版）

**********************************************************************/

.area_cast.costume {
/*	max-width: 900px;*/
	margin: 2em auto;
}

.area_cast.costume .box {
	margin: 0 auto;
	padding: 5em 1em 3em;
}

/*****　プリンシバル　*****/

.area_cast.costume .list_p {
	margin: 2em auto 0;
}

.area_cast.costume .list_p .wrap_cast {
	text-align: center;
}

.area_cast.costume .list_p .wrap_cast .item {
	display: inline-block;
}

.area_cast.costume .list_p {}

.area_cast.costume .list_p dt {
	margin: 0 auto 0.5em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 24rem;
	color: #ddb03d;
}

.area_cast.costume .list_p .list_name {
	margin: 0 1em 5em;
}

.area_cast.costume .list_p .list_name .res_cast {
	display: none;
}

.area_cast.costume .list_p .list_name li {
	display: inline-block;
	margin: 0 2px 2em;
	width: 202px;
	vertical-align: top;
}

.area_cast.costume .list_p .list_name li .photo {
}

.area_cast.costume .list_p .list_name li .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
	border: 1px groove #fff;
}

.area_cast.costume .list_p .list_name li .name {
	display: block;
	margin: 0.3em auto 0;
	font-size: 20rem;
}

.area_cast.costume .list_p .list_name li .btn_prof {
	display: inline-block;
	padding: 0.3em;
	border: 1px groove #fff;
	background: rgba(255,255,255,0.1);
	font-size: 0.7em;
	color: #fff;
	line-height: 1;
}

.area_cast.costume .list_p .list_name li .icon_sns {
	margin-left: 5px;
	vertical-align: middle;
}

.area_cast.costume .list_p .list_name li .icon_sns a{
	color: #fff;
}

@media screen and (max-width: 980px){
	.area_cast.costume .list_p .list_name {
		margin: 0 auto 1em;
	}
	.area_cast.costume .list_p .list_name li {
		width: 20vw;
	}
}

@media screen and (max-width: 560px){
	.area_cast.costume .list_p .item.wide li:nth-child(-n+2) {
		margin-bottom: 0.8em;
	}
	.area_cast.costume .list_p .list_name .res_cast {
		display: inline;
	}
	.area_cast.costume .list_p .list_name li {
		width: 25vw;
	}
	.area_cast.costume .list_p .list_name li .name {
		font-size: 16rem;
	}
}

/*****　アンサンブル　*****/

.area_cast.costume .list_e {
	margin: 2em auto 0;
	text-align: center;
}

.area_cast.costume .list_e .wrap_cast {}

.area_cast.costume .list_e .wrap_cast .res_list_e {
	display: none;
}

.area_cast.costume .list_e .wrap_cast .item {
	display: inline-block;
	margin: 0 0.5em;
}

.area_cast.costume .list_e .wrap_cast .item dt {
	margin: 0 auto 0.5em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 18rem;
	color: #ddb03d;
}

.area_cast.costume .list_e li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 2px 2em;
	width: 142px;
	vertical-align: top;
}

.area_cast.costume .list_e li .photo {
	display: block;
	margin: 0 auto;
}

.area_cast.costume .list_e li .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
	border: 1px groove #fff;
}

.area_cast.costume .list_e li .name {
	display: block;
	margin: 0.3em auto 0;
	font-size: 18rem;
}

.area_cast.costume .list_e li .btn_prof {
	display: inline-block;
	padding: 0.3em;
	border: 1px groove #fff;
	background: rgba(255,255,255,0.1);
	font-size: 0.6em;
	color: #fff;
	line-height: 1;
}

.area_cast.costume .list_e li .icon_sns {
	margin-left: 5px;
	vertical-align: middle;
}

.area_cast.costume .list_e li .icon_sns a{
	color: #fff;
}

@media screen and (max-width: 1020px){
	.area_cast.costume .list_e .wrap_cast {
		display: inline;
	}
	
	.area_cast.costume .list_e .wrap_cast .res_list_e {
		display: inline;
	}
}

@media screen and (max-width: 980px){
	.area_cast.costume .list_e li {
		width: 14vw;
	}
}

@media screen and (max-width: 570px){
	.area_cast.costume .list_e li {
		width: 18vw;
	}
	.area_cast.costume .list_e li .name {
		font-size: 14rem;
	}
}

@media screen and (max-width: 400px){
	.area_cast.costume .list_e li {
		width: 20vw;
	}

	.area_cast.costume .list_e li .photo {
		width: 18vw;
	}

	.area_cast.costume .list_e li .icon_sns {
		display: block;
		margin: auto 0;
	}
}
@media screen and (max-width: 340px){
	.area_cast.costume .list_e li {
		width: 24vw;
	}

	.area_cast.costume .list_e li .photo {
		width: 18vw;
	}
}


/*****　子役　*****/

.area_cast.costume .list_k {
	margin: 2em auto 0;
}

.area_cast.costume .list_k .res_list_k {
	display: none;
}

.area_cast.costume .list_k .wrap_cast {
	display: inline-block;
	margin: 0 0.5em;
	text-align: center;
}

.area_cast.costume .list_k .wrap_cast .item {
	display: inline-block;
}

.area_cast.costume .list_k {}

.area_cast.costume .list_k dt {
	margin: 0 auto 0.5em;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 20rem;
	color: #ddb03d;
}

.area_cast.costume .list_k ul {}

.area_cast.costume .list_k li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 1px 2em;
	width: 142px;
	vertical-align: top;
}

.area_cast.costume .list_k li .photo {
	display: block;
	margin: 0 auto;
}

.area_cast.costume .list_k li .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
	border: 1px groove #fff;
}

.area_cast.costume .list_k li .name {
	display: block;
	margin: 0.3em auto 0;
	font-size: 18rem;
}

.area_cast.costume .list_k li .btn_prof {
	display: inline-block;
	padding: 0.3em;
	border: 1px groove #fff;
	background: rgba(255,255,255,0.1);
	font-size: 0.5em;
	color: #fff;
	line-height: 1;
}

.area_cast.costume .list_k li .icon_sns {
	margin-left: 5px;
	vertical-align: middle;
}

.area_cast.costume .list_k li .icon_sns a{
	color: #fff;
}
@media screen and (max-width: 1020px){
	.area_cast.costume .list_k .wrap_cast {
		display: block;
		margin-bottom: 2em
	}
	.area_cast.costume .list_k .res_list_k {
		display: inline;
	}
}
@media screen and (max-width: 980px){
	.area_cast.costume .list_k li {
		width: 14vw;
	}
}
@media screen and (max-width: 570px){
/*	.area_cast.costume .list_k dt {
		margin-bottom: 2em;
	}*/

	.area_cast.costume .list_k li {
		width: 18vw;
	}
	.area_cast.costume .list_k li .name {
		font-size: 14rem;
	}
}

@media screen and (max-width: 400px){
	.area_cast.costume .list_k li {
		width: 20vw;
	}

	.area_cast.costume .list_k li .photo {
		width: 18vw;
	}
	.area_cast.costume .list_e li .icon_sns {
		display: block;
		margin: auto 0;
	}
}

@media screen and (max-width: 340px){
	.area_cast.costume .list_k li {
		width: 24vw;
	}

	.area_cast.costume .list_k li .photo {
		width: 18vw;
	}
}

/*****　プロフィール　モーダルウィンドウ　*****/

.c-c .prof .title {
    margin: 0 auto;
    font-size: 1.5em;
}

.c-c .prof .item {
/*    max-width: 800px;
    margin: 0 auto;*/
}

.c-c .prof .item .name_wrap {
    margin: 0 auto 1em;       
}

.c-c .prof .item .name {
    display: block;
    font-size: 1.3em;
    line-height: 1;
    letter-spacing: 0.1em;
}

.c-c .prof .item .prof_name .ls {
    letter-spacing: 0.1em;
}

.c-c .prof .item .kana {
    line-height: 1;
	font-size: 0.8em;
}

.c-c .prof .item .text_prof {
    padding: 1em 0;
    text-align: left;
	line-height: 2;
	font-size: 1.1em;
}


@media screen and (max-width: 414px){
    .c-c .prof .item .name_wrap {
        margin: 0 auto 0.5em;

    }    
}

.c-c .modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.c-c .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.c-c .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.c-c .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.c-c .modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
/*  width: 70%;*/
  max-width: 800px;
  padding: 3em 3em 2.5em;
  border-radius: 2px;
  background: #000;
/*  box-shadow: 0 0 30px rgba(0, 0, 0, .6);*/
  vertical-align: middle;
    border: 1px groove #fff;
}

.c-c .modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.c-c .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.c-c .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #fff !important;
  font-size: 28px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.c-c .modal-wrapper .modal-close:hover {
  color: #eee !important
}

@media screen and (max-width: 414px){

    .c-c .modal-wrapper .modal-window {
      padding: 3em 1.5em 1.5em;
    }
}


/*****　プロフィール　モーダルウィンドウ　*****/

.c-c .prof .title {
    margin: 0 auto;
    font-size: 1.5em;
}

.c-c .prof .item {
/*    max-width: 800px;
    margin: 0 auto;*/
}

.c-c .prof .item .name_wrap {
    margin: 0 auto 1em;       
}

.c-c .prof .item .name {
    display: block;
    font-size: 1.3em;
    line-height: 1;
    letter-spacing: 0.1em;
}

.c-c .prof .item .prof_name .ls {
    letter-spacing: 0.1em;
}

.c-c .prof .item .kana {
    line-height: 1;
	font-size: 0.8em;
}

.c-c .prof .item .text_prof {
    padding: 1em 0;
    text-align: left;
	line-height: 2;
	font-size: 1.1em;
}


@media screen and (max-width: 414px){
    .c-c .prof .item .name_wrap {
        margin: 0 auto 0.5em;

    }    
}

.c-c .modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.c-c .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.c-c .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.c-c .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.c-c .modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
/*  width: 70%;*/
  max-width: 800px;
  padding: 3em 3em 2.5em;
  border-radius: 2px;
  background: #000;
/*  box-shadow: 0 0 30px rgba(0, 0, 0, .6);*/
  vertical-align: middle;
    border: 1px groove #fff;
}

.c-c .modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.c-c .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.c-c .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #fff !important;
  font-size: 28px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.c-c .modal-wrapper .modal-close:hover {
  color: #eee !important
}

@media screen and (max-width: 414px){

    .c-c .modal-wrapper .modal-window {
      padding: 3em 1.5em 1.5em;
    }
}


/**********************************************************************

　クリエイティブ

**********************************************************************/

.area_creative {
	max-width: 900px;
	margin: 2em auto;
}

.area_creative .box {
	margin: 0 auto;
}

.area_creative .list {
	font-size: 18rem;
}

.area_creative .list dt {
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 24rem;
	color: #ddb03d;
	font-size: 0.8em;
}

.area_creative .list dd {
	margin-bottom: 2em;
}

@media screen and (max-width: 560px){
	.area_creative .list {
		font-size: 16rem;
	}
}


/**********************************************************************

　キャスト、スタッフ：モーダルウィンドウ

**********************************************************************/
/*
.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(0,0,0,0.9);
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 0 2em;
}

.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #fff;
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: rgba(153,143,133,0.9);
	
}

.cast_cmt .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .5)
}

.cast_cmt .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #fff !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.cast_cmt .modal-wrapper .modal-close:hover {
  color: #fff !important
}

@media screen and (max-width: 414px){

    .cast_cmt .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }

	.cast_cmt .modal-wrapper .modal-window .modal-content {
		padding: 0 0.5em;
	}
}


.cast_cmt .name {
    display: block;
	margin: 1em auto;	
	padding: 1em 0;
	border-top: 1px groove rgba(255,255,255,0.3);
	border-bottom:1px groove rgba(255,255,255,0.3);
    font-size: 30rem;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2;
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
	font-family: 'Noto Serif JP', serif;
	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: #ddb03d;
}

.cast_cmt .name .ls {
    letter-spacing: 0.1em;
}

.cast_cmt .text {
	margin: 0 auto;
}

.cast_cmt .text dt {
	margin: 2em auto 0;
	font-size: 20rem;
	font-family: "nexa-rust-sans-black-2", sans-serif;
	font-weight: 900;
	font-style: normal;
	color: #ddb03d;
}

.cast_cmt .text dd {
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
    text-align: left;
	color: #fff;
	font-weight: 400;
	font-size: 18rem;
}

.cast_cmt .text p:not(last-of-type) {
	margin-bottom: 1em;

}

.cast_cmt .text .qa dt {
	margin: 2em auto 0;
	font-size: 18rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #ddb03d;
}


@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_ticket .sokuho {
	max-width: 900px;
	margin: 4em auto;
}

.area_ticket .sokuho .area_title {
	margin: 0 auto 1em;
	text-align: center;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 40rem;
}

.area_ticket .sokuho .area_tokyo {
	margin: 0 auto 6em;
}
.area_ticket .sokuho .area_tokyo .sch {
	max-width: 850px;
	margin: 0 auto 4em;
}
.area_ticket .sokuho .area_tokyo .sch img {
	display: block;
	width: 100%;
}
.area_ticket .sokuho .area_tokyo .hoshitori {
	max-width: 900px;
	margin: 0 auto;
}
.area_ticket .sokuho .area_tokyo .hoshitori img {
	display: block;
	width: 100%;
}

.area_ticket .sokuho .area_tour {}
.area_ticket .sokuho .area_tour .list {
	font-size: 1.2em;
	line-height: 1.8;
	text-align: center;
}

.area_ticket .sokuho .area_tour .list dt {
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 1.5em;
}
.area_ticket .sokuho .area_tour .list dd {
	margin: 0 auto 1em;
	padding: 1em;
	border: 1px groove #fff;
}
.area_ticket .sokuho .area_tour .list .theater {}
.area_ticket .sokuho .area_tour .list .theater a {
	color: #fff;
}
.area_ticket .sokuho .area_tour .list .theater a:hover {
	text-decoration: underline;
}
.area_ticket .sokuho .area_tour .list .theater .icon {
	margin-left: 0.3em;
	font-size: 0.8em;
	color: #ddb03d;
}
.area_ticket .sokuho .area_tour .list .day {}

.area_ticket .sokuho .area_tour .list .btn {
	display: inline-block;
	max-width: 240px;
	width: 100%;
	margin: 0.5em 0.5em 0;
	padding: 0.2em 2em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 20rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .sokuho .area_tour .list .btn:hover {
	background: none;
	color: #ddb03d;
}

/****　来日公演バナー　****/

.area_ticket .area_tour2 {}
.area_ticket .area_tour2 .ban {
	max-width: 900px;
	margin: 0 auto;
}
.area_ticket .area_tour2 .ban img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 660px){
	.area_ticket .area_tour2 .area_title {
		margin: 0 auto 0.5em;
		font-size: 28rem;
	}
}

@media screen and (max-width: 400px){
	.area_ticket .area_tour2 .area_title {
		font-size: 24rem;
	}
}

/****　本報 ****/

.area_ticket {
/*	max-width: 900px;*/
	margin: 4em auto;
}

.area_ticket .box {
	max-width: 900px;
	margin: 0 auto;
}

.area_ticket .list_area {
	display: flex;
	margin: 0 auto 3em;
	justify-content: center;
}

.area_ticket .list_area .btn {
/*	display: inline-block;*/
	max-width: 300px;
	width: 100%;
	margin: 0 0.2em 0.5em;
	padding: 0.2em 0;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 24rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .list_area .btn:hover {
	background: none;
	color: #ddb03d;
}

@media screen and (max-width: 500px){
	.area_ticket .list_area .btn {
		font-size: 20rem;
	}
}

@media screen and (max-width: 410px){
	.area_ticket .list_area {
		display: block;
	}

	.area_ticket .list_area .btn {
		display: block;
		margin: 0 auto 0.8em;
	}
}

.area_ticket .area_title {
	margin: 0 auto 1em;
	text-align: center;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 40rem;
}

.area_ticket .area_tokyo {
	margin: 0 auto 6em;
}

.area_ticket .area_tokyo .stage_info .sch {
	max-width: 850px;
	margin: 0 auto 1em;
}

.area_ticket .area_tokyo .stage_info .sch img {
	display: block;
	width: 100%;
}

.area_ticket .area_tokyo .stage_info .maeuri {
	max-width: 850px;
	margin: 0 auto 3em;
	padding: 0.5em 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-size: 20rem;
	line-height: 1.3;
}
.area_ticket .area_tokyo .stage_info .maeuri .lbl,
.area_ticket .area_tokyo .stage_info .maeuri .day {
	display: inline-block;
}
.area_ticket .area_tokyo .stage_info .maeuri .day:not(:last-of-type)::after {
	content: "／";
}
.area_ticket .area_tokyo .stage_info .hoshitori {
	max-width: 900px;
	margin: 0 auto;
}

.area_ticket .area_tokyo .stage_info .hoshitori img {
	display: block;
	width: 100%;
}
@media screen and (max-width: 660px){
	.area_ticket .area_tokyo .stage_info .maeuri .lbl {
		display: block;
	}
}

@media screen and (max-width: 600px){
	.area_ticket .area_tokyo .stage_info .maeuri {
		font-size: 18rem;
	}
}
@media screen and (max-width: 480px){
	.area_ticket .area_tokyo .stage_info .maeuri .day {
		display: block;
	}
	.area_ticket .area_tokyo .stage_info .maeuri .day:not(:last-of-type)::after {
		content: none;
	}
	.area_ticket .area_tokyo .stage_info .maeuri {
		font-size: 3vw;
	}
}

.area_ticket .area_tokyo .stage_info .list_btn {
	margin: 4em auto 0;
}


.area_ticket .area_tokyo .stage_info .list_btn .btn {
	display: inline-block;
	max-width: 360px;
	width: 100%;
	margin: 0 0.5em 0.5em;
	padding: 0.5em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 20rem;
	color: #070e20;
	font-weight: 700;
	font-feature-settings: "palt";
	transition: 0.5s;
}

.area_ticket .area_tokyo .stage_info .list_btn .btn:hover {
	background: none;
	color: #ddb03d;
}

@media screen and (max-width: 830px){
	.area_ticket .area_tokyo .stage_info .list_btn .btn {
		display: block;
		margin: 0 auto 0.8em;
	}
}


@media screen and (max-width: 480px){
	.area_ticket .area_tokyo .stage_info .list_btn .btn {
		padding: 0.5em;
		font-size: 4vw;
	}
}

@media screen and (max-width: 420px){
	.area_ticket .area_tokyo .stage_info .list_btn .btn {
		font-size: 18rem;
	}
}

@media screen and (max-width: 380px){
/*	.area_ticket .area_tokyo .stage_info .list_btn .btn {
		display: block;
		margin: 0 auto 0.5em;
	}*/

}


.area_ticket .area_tokyo .stage_info .caution {
    margin-top: 2em;
    padding: 2em 1em 0;
    border-top: 1px dotted #fff;
    text-align: left;
}

.area_ticket .area_tokyo .stage_info .caution li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
	font-size: 0.9em;
}

.area_ticket .area_tokyo .stage_info .caution li .tel a {
    color: #fff;
	text-decoration: none;
}

.area_ticket .area_tokyo .stage_info .list_price {
	margin: 3em auto;
}

.area_ticket .area_tokyo .stage_info .list_price .title {
	margin: 0 auto 1em;
	font-size: 1.1em;
	text-align: center;
}
.area_ticket .area_tokyo .stage_info .list_price table {
	table-layout: fixed;
	width: 100%;
	border: 1px solid #fff;
}
.area_ticket .area_tokyo .stage_info .list_price th,
.area_ticket .area_tokyo .stage_info .list_price td {
	padding: 0.5em 1em;
	border: 1px solid #fff;
	text-align: center;
	font-weight: normal;
}
.area_ticket .area_tokyo .stage_info .list_price th {
	background: rgba(255,255,255,0.05);
}
.area_ticket .area_tokyo .stage_info .list_price th:first-of-type {
	width: 7em;
}
.area_ticket .area_tokyo .stage_info .list_price .note {
	margin: 1em 0 0 0;
	padding: 0 1em;
	text-align: left;
}
.area_ticket .area_tokyo .stage_info .list_price .note li{
	padding-left: 1em;
	text-indent: -1em;
}

.area_ticket .area_tokyo .stage_info .list_price .icon {
	color: #ddb03d;
}

.area_ticket .area_tokyo .stage_info .list_price .link_wrap {
	margin: 0.5em 0 0 auto;
	text-align: right;
}

@media screen and (max-width: 460px){
	.area_ticket .area_tokyo .stage_info .list_price th:first-of-type {
		width: 4em;
	}
}

@media screen and (max-width: 480px){
	.area_ticket .area_tokyo .stage_info .list_price th,
	.area_ticket .area_tokyo .stage_info .list_price td {
		padding: 0.5em;
	}
}

@media screen and (max-width: 330px){
	.area_ticket .area_tokyo .stage_info .list_price th,
	.area_ticket .area_tokyo .stage_info .list_price td {
		font-size: 0.9em;
	}
	.area_ticket .area_tokyo .stage_info .list_price .note {
		font-size: 0.9em;
	}
}

.area_ticket .area_tokyo .way {
	margin: 0 auto 2em;
	border: 1px solid #fff;
}

.area_ticket .area_tokyo .way > dt {
	padding: 0.8em;
	border-bottom: 1px solid #fff;
	background: rgba(255,255,255,0.05);
	font-size: 24rem;
	line-height: 1.3;
}

.area_ticket .area_tokyo .way > dd {
	padding: 2em 1em;
}

.area_ticket .area_tokyo .way > dd .caution {
    margin-top: 2em;
    padding: 2em 1em 0;
	border-top: 1px dotted #fff;
}
.area_ticket .area_tokyo .way > dd .caution li{
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
	text-align: left;
	font-size: 0.9em;
	font-weight: 400;
}


@media screen and (max-width: 600px){

}


.area_ticket .area_tokyo .way .list {}

.area_ticket .area_tokyo .way .list > dt {
	font-size: 20rem;
/*	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;*/
}

.area_ticket .area_tokyo .way .list > dt::before {
	content: "【";
}

.area_ticket .area_tokyo .way .list > dt::after {
	content: "】";
}

.area_ticket .area_tokyo .way .list > dd {
	margin: 0 auto 1em;
}

.area_ticket .area_tokyo .way .list > dd .note {
	margin: 0.5em auto 0;
}

.area_ticket .area_tokyo .way .list_start {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.area_ticket .area_tokyo .way .list_start th,
.area_ticket .area_tokyo .way .list_start td {
	padding: 0.5em 1em;
	border: 1px solid #fff;
	font-weight: 400;
}
.area_ticket .area_tokyo .way .list_start th {
	width: 40%;
	background: rgba(255,255,255,0.05);
}


/***　ナビザーブ　***/

.area_ticket .area_tokyo .way.t-navi .login {
	margin: 0 auto 2em;
}

.area_ticket .area_tokyo .way.t-navi .login .lbl {
	display: block;
	margin: 0 auto 0.5em;
	color: #ddb03d;
	font-weight: 700;
}

.area_ticket .area_tokyo .way.t-navi .login .btn {
	display: block;
	width: 80%;
	max-width: 500px;
	margin: 0 auto;
	padding: 0.5em 2em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 24rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .area_tokyo .way.t-navi .login .btn:hover {
	background: none;
	color: #ddb03d;
}

@media screen and (max-width: 340px){

	.area_ticket .area_tokyo .way.t-navi .login .btn {
		display: block;
		width: 90%;
		font-size: 20rem;
	}
}

/***　プレイガイド　***/

.area_ticket .area_tokyo .way.playguide {}

.area_ticket .area_tokyo .way.playguide .list {
	margin: 2em auto 0;
}
.area_ticket .area_tokyo .way.playguide .list .btn {
	display: block;
	width: 80%;
	max-width: 500px;
	margin: 0 auto 0.5em;
	padding: 0.5em 2em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 20rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .area_tokyo .way.playguide .list .btn:hover {
	background: none;
	color: #ddb03d;
}



/***　グループ観劇　***/

.area_ticket .area_tokyo .way.group .btn {
	display: block;
	width: 80%;
	max-width: 500px;
	margin: 0 auto;
	padding: 0.5em 2em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 20rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .area_tokyo .way.group .btn:hover {
	background: none;
	color: #ddb03d;
}

.area_ticket .area_tokyo .way.group .tel {
	margin: 1em auto 0;
	font-size: 24rem;
}

.area_ticket .area_tokyo .way.group .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .area_tokyo .way.group .tel .fas {
	margin-right: 0.2em;

}


/***　テレザーブ　***/

.area_ticket .area_tokyo .way.t-tele .tel {
	margin: 1em auto 0;
	font-size: 28rem;
}

.area_ticket .area_tokyo .way.t-tele .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .area_tokyo .way.t-tele .tel .fas {
	margin-right: 0.2em;

}


/***　リセール　***/

.area_ticket .area_tokyo .way.resale .lead {
	margin: 0 auto 2em;
	text-align: left;
}

.area_ticket .area_tokyo .way.resale .list li {
	display: inline-block;
	max-width: 200px;
	margin: 0 0.5em 1em;

}

.area_ticket .area_tokyo .way.resale li a.item:not(:last-of-type) {
	margin-right: 0.3em;
}

.area_ticket .area_tokyo .way.resale .list img {
	display: block;
	margin: 0 auto;
	border:1px solid #000;
}


/***　会場　***/

.area_ticket .area_tokyo .way.theater {
}

.area_ticket .area_tokyo .way.theater .logo {
	display: block;
	max-width: 240px;
	margin: 0 auto 1em;
}

.area_ticket .area_tokyo .way.theater .logo img {
	display: block;
	width: 80%;
	margin: 0 auto;
}

.area_ticket .area_tokyo .way.theater .add {}
.area_ticket .area_tokyo .way.theater .wrap_btn {
	margin: 1em auto;
}
.area_ticket .area_tokyo .way.theater .wrap_btn .btn {
	display: inline-block;
	max-width: 240px;
	width: 100%;
	margin: 0 0.5em 0.5em;
	padding: 0.2em 2em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 20rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .area_tokyo .way.theater .btn:hover {
	background: none;
	color: #ddb03d;
}

.area_ticket .area_tokyo .way.theater .contact a {
	color: #fff;
	text-decoration: none;
}

.area_ticket .area_tokyo .way.theater .contact .lbl {
	display: inline-block;
}

.area_ticket .area_tokyo .way.theater .contact .tel {
	display: inline-block;
	margin: 0 0.3em;
}

.area_ticket .area_tokyo .way.theater .contact .tel .icon {
	margin-right: 0.2em;
}

.area_ticket .area_tokyo .way.theater .contact .office {
	display: inline-block;
	margin: 0 0.3em;
}

@media screen and (max-width: 430px){
	.area_ticket .area_tokyo .way.theater .contact .lbl {
		display: block;
	}
}

/**********************************************************************

　補助席について：モーダルウィンドウ

**********************************************************************/

.about_hojo .modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 10px 40px;
  text-align: center
}

.about_hojo .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.about_hojo .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.about_hojo .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.about_hojo .modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 900px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background-color: rgba(255,255,255,0.9);
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}


.about_hojo .modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
	padding: 1em;
}

.about_hojo .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.about_hojo .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #000;	
}

.about_hojo .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #333;
}



.about_hojo .modal-wrapper .modal-window .modal-main {
	font-weight: 400;
}

.about_hojo .modal-wrapper .modal-window .modal-main dt {
	margin: 0 auto 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #000;
	font-size: 1.5em;
	color: #000;
}

.about_hojo .modal-wrapper .modal-window .modal-main dd {
	color: #000;
	font-size: 1.1em;
}
.about_hojo .modal-wrapper .modal-window .modal-main dd li {
	display: inline-block;
	margin: 0 0.5em 1em;
}
.about_hojo .modal-wrapper .modal-window .modal-main dd .photo {
	display: block;
	max-width: 340px;
	width: 100%;
}

.about_hojo .modal-wrapper .modal-window .modal-main dd .photo img {
	display: block;
	width: 100%;
}

.about_hojo .modal-wrapper .modal-window .modal-main dd .cap {
	display: block;
	margin-top: 0.5em;
}

.about_hojo .modal-wrapper .modal-window .modal-main dd .text {
	margin: 2em auto 0;
}
.about_hojo .modal-wrapper .modal-window .modal-main dd .text li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
	line-height: 1.5;
}

.about_hojo .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.about_hojo .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #000 !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.about_hojo .modal-wrapper .modal-close:hover {
  color: #333 !important
}


@media screen and (max-width: 414px){

    .about_hojo .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }
}


/***************************************************

　TICKET　群馬公演

**************************************************/

.area_ticket .area_gunma {
	margin: 0 auto 6em;
}

.area_ticket .area_gunma .stage_info {
	margin-bottom: 2em;
}

.area_ticket .area_gunma .stage_info .sch {
	max-width: 600px;
	margin: 0 auto 2em;
}

.area_ticket .area_gunma .stage_info .sch img {
	display: block;
	width: 100%;
}

.area_ticket .area_gunma .stage_info .maeuri {
	max-width: 600px;
	margin: 0 auto 3em;
	padding: 0.5em 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-size: 20rem;
	line-height: 1.3;
}
.area_ticket .area_gunma .stage_info .maeuri .lbl,
.area_ticket .area_gunma .stage_info .maeuri .day {
	display: inline-block;
}
.area_ticket .area_gunma .stage_info .maeuri .day:not(:last-of-type)::after {
	content: "／";
}
.area_ticket .area_gunma .stage_info .hoshitori {
	max-width: 300px;
	width: 80%;
	margin: 0 auto;
}

.area_ticket .area_gunma .stage_info .hoshitori img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 660px){
	.area_ticket .area_gunma .stage_info .maeuri .lbl {
		display: block;
	}
}

@media screen and (max-width: 600px){
	.area_ticket .area_gunma .stage_info .maeuri {
		font-size: 18rem;
	}
}

@media screen and (max-width: 480px){
	.area_ticket .area_gunma .stage_info .maeuri .day {
		display: block;
	}
	.area_ticket .area_gunma .stage_info .maeuri .day:not(:last-of-type)::after {
		content: none;
	}
	.area_ticket .area_gunma .stage_info .maeuri {
		font-size: 3vw;
	}
}

.area_ticket .area_gunma .stage_info .list_btn {
	margin: 4em auto 0;
}

.area_ticket .area_gunma .stage_info .list_btn .btn {
	display: inline-block;
	max-width: 360px;
	width: 100%;
	margin: 0 0.5em 0.5em;
	padding: 0.5em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 20rem;
	color: #070e20;
	font-weight: 700;
	font-feature-settings: "palt";
	transition: 0.5s;
}

.area_ticket .area_gunma .stage_info .list_btn .btn:hover {
	background: none;
	color: #ddb03d;
}


@media screen and (max-width: 830px){
	.area_ticket .area_gunma .stage_info .list_btn .btn {
		display: block;
		margin: 0 auto 0.8em;
	}
}


@media screen and (max-width: 480px){
	.area_ticket .area_gunma .stage_info .list_btn .btn {
		padding: 0.5em;
		font-size: 4vw;
	}
}

@media screen and (max-width: 420px){
	.area_ticket .area_gunma .stage_info .list_btn .btn {
		font-size: 18rem;
	}
}



.area_ticket .area_gunma .stage_info .caution {
    margin-top: 2em;
    padding: 2em 1em 0;
    border-top: 1px dotted #fff;
    text-align: left;
}

.area_ticket .area_gunma .stage_info .caution li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
	font-size: 0.9em;
}

.area_ticket .area_gunma .stage_info .list_price {
	margin: 3em auto;
}

.area_ticket .area_gunma .stage_info .list_price .title {
	margin: 0 auto 1em;
	font-size: 1.1em;
	text-align: center;
}
.area_ticket .area_gunma .stage_info .list_price table {
	table-layout: fixed;
	width: 100%;
	border: 1px solid #fff;
}
.area_ticket .area_gunma .stage_info .list_price th,
.area_ticket .area_gunma .stage_info .list_price td {
	padding: 0.5em 1em;
	border: 1px solid #fff;
	text-align: center;
	font-weight: normal;
}
.area_ticket .area_gunma .stage_info .list_price th {
	background: rgba(255,255,255,0.05);
}
.area_ticket .area_gunma .stage_info .list_price th:first-of-type {
	width: 6em;
}
.area_ticket .area_gunma .stage_info .list_price .note {
	margin: 1em 0 0 0;
	padding: 0 1em;
	text-align: left;
}
.area_ticket .area_gunma .stage_info .list_price .note li{
	padding-left: 1em;
	text-indent: -1em;
}

.area_ticket .area_gunma .stage_info .list_price .icon {
	color: #ddb03d;
}

.area_ticket .area_gunma .stage_info .list_price .link_wrap {
	margin: 0.5em 0 0 auto;
	text-align: right;
}

@media screen and (max-width: 460px){
	.area_ticket .area_gunma .stage_info .list_price th:first-of-type {
		width: 4em;
	}
}

@media screen and (max-width: 480px){
	.area_ticket .area_gunma .stage_info .list_price th,
	.area_ticket .area_gunma .stage_info .list_price td {
		padding: 0.5em;
	}
}

@media screen and (max-width: 330px){
	.area_ticket .area_gunma .stage_info .list_price th,
	.area_ticket .area_gunma .stage_info .list_price td {
		font-size: 0.9em;
	}
	.area_ticket .area_gunma .stage_info .list_price .note {
		font-size: 0.9em;
	}
}

.area_ticket .area_gunma .way {
	margin: 0 auto 2em;
	border: 1px solid #fff;
}

.area_ticket .area_gunma .way > dt {
	padding: 0.8em;
	border-bottom: 1px solid #fff;
	background: rgba(255,255,255,0.05);
	font-size: 24rem;
	line-height: 1.3;
}

.area_ticket .area_gunma .way > dd {
	padding: 2em 1em;
}
/*
.area_ticket .area_gunma .way > dd .caution {
    margin-top: 2em;
    padding: 2em 1em 0;
}

.area_ticket .area_gunma .way > dd .caution.left {
	text-align: left;
}

.area_ticket .area_gunma .way > dd .caution.left li{
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
	font-size: 0.9em;
	font-weight: 400;
}*/
.area_ticket .area_gunma .way > dd .caution {
    margin-top: 2em;
    padding: 2em 1em 0;
	border-top: 1px dotted #fff;
}
.area_ticket .area_gunma .way > dd .caution li{
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
	text-align: left;
	font-size: 0.9em;
	font-weight: 400;
}

.area_ticket .area_gunma .way .list {}

.area_ticket .area_gunma .way .list > dt {
	font-size: 20rem;
/*	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;*/
}

.area_ticket .area_gunma .way .list > dt::before {
	content: "【";
}

.area_ticket .area_gunma .way .list > dt::after {
	content: "】";
}

.area_ticket .area_gunma .way .list > dd {
	max-width: 80%;
	margin: 0 auto 1em;
	padding: 1em 2em;
	border: 1px solid #fff;
}

.area_ticket .area_gunma .way .list > dd .note {
	margin: 0.5em auto 0;
}

.area_ticket .area_gunma .way .start {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: center;
}


/***　ナビザーブ　***/

.area_ticket .area_gunma .way.t-navi .login {
	margin: 0 auto 2em;
}

.area_ticket .area_gunma .way.t-navi .login .lbl {
	display: block;
	margin: 0 auto 0.5em;
	color: #ddb03d;
	font-weight: 700;
}

.area_ticket .area_gunma .way.t-navi .login .btn {
	display: block;
	width: 80%;
	max-width: 500px;
	margin: 0 auto;
	padding: 0.5em 2em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 24rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .area_gunma .way.t-navi .login .btn:hover {
	background: none;
	color: #ddb03d;
}

/***　プレイガイド　***/

.area_ticket .area_gunma .way.playguide {}

.area_ticket .area_gunma .way.playguide .list {
	margin: 2em auto 0;
}
.area_ticket .area_gunma .way.playguide .list .btn {
	display: block;
	width: 80%;
	max-width: 500px;
	margin: 0 auto 0.5em;
	padding: 0.5em 2em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 20rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .area_gunma .way.playguide .list .btn:hover {
	background: none;
	color: #ddb03d;
}

/***　テレザーブ　***/

.area_ticket .area_gunma .way.t-tele .tel {
	margin: 1em auto 0;
	font-size: 28rem;
}

.area_ticket .area_gunma .way.t-tele .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .area_gunma .way.t-tele .tel .fas {
	margin-right: 0.2em;

}

.area_ticket .area_gunma .way.t-tele .tel .note {
	display: inline-block;
	font-size: 0.7em;
}

/***　グループ観劇　***/
.area_ticket .area_gunma .way.group .office {
	display: block;
}
.area_ticket .area_gunma .way.group .tel {
	margin: 1em auto 0;
	font-size: 28rem;
}

.area_ticket .area_gunma .way.group .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .area_gunma .way.group .tel .fas {
	margin-right: 0.2em;
}

/***　リセール　***/

.area_ticket .area_gunma .way.resale .lead {
	margin: 0 auto 2em;
	text-align: left;
}

.area_ticket .area_gunma .way.resale .list li {
	display: inline-block;
	max-width: 200px;
	margin: 0 0.5em 1em;

}

.area_ticket .area_gunma .way.resale li a.item:not(:last-of-type) {
	margin-right: 0.3em;
}

.area_ticket .area_gunma .way.resale .list img {
	display: block;
	margin: 0 auto;
	border:1px solid #000;
}

/***　会場　***/

.area_ticket .area_gunma .way.theater {

}

.area_ticket .area_gunma .way.theater .name {
	margin: 0 auto 0.5em;
	font-size: 24rem;
}

.area_ticket .area_gunma .way.theater .name .icon {
	margin-left: 0.3em;
	font-size: 0.8em;
	color: #ddb03d;
}

.area_ticket .area_gunma .way.theater .add {}
.area_ticket .area_gunma .way.theater .wrap_btn {
	margin: 1em auto;
}
.area_ticket .area_gunma .way.theater .wrap_btn .btn {
	display: inline-block;
	max-width: 240px;
	width: 100%;
	margin: 0 0.5em 0.5em;
	padding: 0.2em 2em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 20rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .area_gunma .way.theater .btn:hover {
	background: none;
	color: #ddb03d;
}

.area_ticket .area_gunma .way.theater .contact a {
	color: #fff;
	text-decoration: none;
}

.area_ticket .area_gunma .way.theater .contact .lbl {
	display: inline-block;
}

.area_ticket .area_gunma .way.theater .contact .tel {
	display: inline-block;
	margin: 0 0.3em;
}

.area_ticket .area_gunma .way.theater .contact .tel .icon {
	margin-right: 0.2em;
}

.area_ticket .area_gunma .way.theater .contact .office {
	display: inline-block;
	margin: 0 0.3em;
}

@media screen and (max-width: 430px){
	.area_ticket .area_gunma .way.theater .contact .lbl {
		display: block;
	}
}

.area_ticket .area_gunma .btn_back {
	display: block;
	max-width: 240px;
	width: 100%;
	margin: 5em auto 0;
	padding: 0.5em 0;
	border: 1px solid #ddb03d;
	transition: 0.5s;
}

.area_ticket .area_gunma .btn_back .icon {
	margin-right: 0.2em;
}

.area_ticket .area_gunma .btn_back:hover {
	border: 1px solid #fff;
	color: #fff;
}

/***************************************************

　VIDEO　動画

**************************************************/

.area_video {
	max-width: 900px;
}

.area_video .year_list {
	margin: 0 0 0 auto;
	text-align: right;
}
.area_video .year_list li {
	display: inline-block;
}
.area_video .year_list li:not(:last-of-type)::after {
	content: "／";
}

.area_video .year_title {
	margin: 2em auto;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 28rem;
}

.area_video .year_title .s {
	font-size: 0.9em;
}

.area_video .list {
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto 40px;
/*    padding: 10px;*/
}

.area_video .list .item {
    width: 45%;
    justify-content: center;
    margin: 0 auto 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_video .list:after {
    content: "";
    display: block;
    justify-content: center;
    width: 50%;
    height: 0;
}

/***　最初の1件目　***/

.area_video .list.center.single {
    display: block;
}

.area_video .list.center.single .item {
    width: 80%;
    margin: 0 auto 4em;
    vertical-align: bottom;
	margin-top: auto;
}


.area_video .list .name {
    margin: 0.5em auto;
    padding: 0.3em 1em;
    font-size: 18rem;
	font-style: normal;
    line-height: 1.3;
	color: #fff;
}

.area_video .list .name .pk {
	display: inline-block;
	margin: 0 0.5em;
}

.area_video .list .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
	border: 1px solid #fff;
}

.area_video .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_video .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_video .list .item{
        width: 90%;
        margin: 0 auto 2em;
    }
	.area_video .list .name {
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_video .list .name {
        font-size: 16rem;
    }
    .area_video .list .list {
        margin-bottom: 10px;
    } 
}
@media screen and (max-width: 340px){

}

/*************************************

　レポート

*************************************/

.area_report {
	max-width: 900px;
	margin: 0 auto;
}

.area_report .box {
	margin: 0 auto;
}

@media screen and (max-width: 960px){
	.area_report .box {
		width: 90%;
	}
}

@media screen and (max-width: 600px){
	.area_report .box {
		width: 95%;
	}
}

@media screen and (max-width: 400px){
	.area_report .box {
		width: 100%;
	}
}

/***　バックナンバー ***/

.area_report .list_bk {
	margin: 0 auto 5em;
}

.area_report .list_bk ul {
	padding: 2em;
	border: 1px solid #fff;
	text-align: left;
}
.area_report .list_bk li {
	padding-left: 1em;
	text-indent: -1em;
}
.area_report .list_bk li::before {
	content: "・";
}
.area_report .list_bk li a:hover {
	text-decoration: underline;
}


.area_report .hidden{
	display: none;
}

.area_report .title{
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 28rem;
}

.area_report .lead{
	font-size: 18rem;
	text-align: left;
}

.area_report .text{
	margin: 1em 0;
	font-size: 18rem;
	text-align: center;
}
.area_report .text2{
	margin: 1em 0;
	font-size: 18rem;
	text-align: left;
}

.area_report .photo {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 680px;
	margin: 2em auto;
	border: 5px solid #fff;
}
.area_report .photo img {
	display: block;
	width: 100%;
	text-align: center;
}

.area_report .photo_list {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 680px;
	margin: 2em auto;
}

.area_report .photo_list li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 0.5em 0.5em;
	border: 5px solid #fff;
}

.area_report .photo_list img {
	display: block;
	width: 100%;
	text-align: center;
}

.area_report .cast {
	overflow: hidden;
	width:600px;
	margin: 0 auto 40px;
}

.area_report .cast dt{
	float: left;
	width: 180px;
	text-align: center;
	font-weight: bold;
}

.area_report .cast dt img{
	margin-bottom: 0.5em;
}

.area_report .cast dd {
	padding-left: 180px;
	
}

.area_report .video {
	max-width: 500px;
	margin: 2em auto;
}

.area_report .video dt {
	margin-bottom: 0.5em;
}

.area_report .video .youtube {
	position: relative;
	height: 0;
	margin: 0 auto;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.area_report .video .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;
}

/*.area_report .qa{}

.area_report .qa dt{
	margin-top: 2em;
	font-weight: bold;
}

.area_report .qa dd{
	margin-top: 1em;
	text-indent: -3em;
	padding-left: 3em;
}

.area_report .qa dd .space{
	margin-right:1.5em;
}*/


/*****レポート　製作発表2024 *****/

.area_report .seisaku.y2024 {
	text-align: center;
}
.area_report .seisaku.y2024 .title2{
	margin: 2em auto 0;
	font-family: shippori-mincho, sans-serif;
	font-weight: 800;
	font-size: 24rem;
}
.area_report .seisaku.y2024 .lead{
	margin: 0 auto 1em;
	text-align: center;
}
.area_report .seisaku.y2024 .list_media {}

.area_report .seisaku.y2024 .list_media li {
	display: inline-block;
	width: 45%;
	margin: 0 0.25em 0.5em;
	padding: 0.5em 0;
	border: 1px solid #ddb03d;
}

.area_report .seisaku.y2024 .list_media li a {
	display: block;
}

@media screen and (max-width: 400px){
	.area_report .seisaku.y2024 .title {
		font-size: 20rem;
	}
}

@media screen and (max-width: 320px){
	.area_report .seisaku.y2024 .list_media {
		width: 90%;
		margin: 0 auto;
	}
	.area_report .seisaku.y2024 .list_media li {
		display: block;
		width: inherit;
		margin: 0 auto 0.5em;
	}
}

.area_report .seisaku.y2024 .list_video {
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto 40px;
/*    padding: 10px;*/
}

.area_report .seisaku.y2024 .list_video .item {
    width: 45%;
    justify-content: center;
    margin: 0 auto 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_report .seisaku.y2024 .list_video:after {
    content: "";
    display: block;
    justify-content: center;
    width: 50%;
    height: 0;
}

/***　最初の1件目　***/

.area_report .seisaku.y2024 .list_video.center.single {
    display: block;
}

.area_report .seisaku.y2024 .list_video.center.single .item {
    width: 80%;
    margin: 0 auto 4em;
    vertical-align: bottom;
	margin-top: auto;
}


.area_report .seisaku.y2024 .list_video .name {
    margin: 0.5em auto;
    padding: 0.3em 1em;
    font-size: 18rem;
	font-style: normal;
    line-height: 1.3;
	color: #fff;
}

.area_report .seisaku.y2024 .list_video .name .pk {
	display: inline-block;
	margin: 0 0.5em;
}

.area_report .seisaku.y2024 .list_video .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
	border: 1px solid #fff;
}

.area_report .seisaku.y2024 .list_video .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_report .seisaku.y2024 .list_video {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_report .seisaku.y2024 .list_video .item{
        width: 90%;
        margin: 0 auto 2em;
    }
	.area_report .seisaku.y2024 .list_video .name {
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_report .seisaku.y2024 .list_video .name {
        font-size: 16rem;
    }
    .area_report .seisaku.y2024 .list_video .list {
        margin-bottom: 10px;
    } 
}

/*****レポート　製作発表*****/

.area_report .seisaku {}

.area_report .seisaku .sec2 {
	margin: 4em auto;
}


.area_report .seisaku h4 {
	margin: 0 auto;
	text-align: center;
	font-size: 28rem;
	font-family: shippori-mincho, sans-serif;
	font-weight: 600;
}
.area_report .seisaku h4::before {
	content: "～";
	margin-right: 0.2em;
}
.area_report .seisaku h4::after {
	content: "～";
	margin-left: 0.2em;
}

@media screen and (max-width: 500px){
	.area_report .seisaku h4 {
		font-size: 24rem;
	}
}

@media screen and (max-width: 400px){
	.area_report .seisaku h4 {
		padding: 0.5em;
		border-top: 1px solid #fff;
		border-bottom: 1px dotted #fff;
		line-height: 1.3;
		font-size: 22rem;
	}
	.area_report .seisaku h4::before {
		content: none;
	}
	.area_report .seisaku h4::after {
		content: none;
	}
	.area_report .seisaku h4 .note {
		display: block;
		font-size: 0.8em;
	}	
}

.area_report .seisaku .list_prof {
	max-width: 680px;
	margin: 0 auto 0;
	text-align: left;
	font-size: 0.8em;
}


.area_report .seisaku .aisatsu {
	clear: both;
	margin: 2em auto 0;
	padding: 2em;
	overflow: hidden;
	background: rgba(255,255,255,0.05);
}

.area_report .seisaku .aisatsu dt {
	float: left;
	width: 190px;
	text-align: center;
	font-weight: 700;
}
.area_report .seisaku .aisatsu dd {
	margin-left: 200px;
	text-align: left;
}
.area_report .seisaku .aisatsu_photo {
	padding-top: 0.5em;
}
.area_report .seisaku .aisatsu_name {
	margin-top: 15px;
	font-size: 1.1em;
}
.area_report .seisaku .aisatsu_yaku {
	font-size: 0.8em;
	font-weight: 400;
}
.area_report .seisaku .box_aisatsu .note {
	font-size: 0.8em;
}


@media screen and (max-width: 500px){

	.area_report .seisaku .aisatsu {
		padding: 1.5em 1em;
	}

	.area_report .seisaku .aisatsu dt {
		float: none;
		margin: 0 auto;
		font-size: 20rem;
	}
	.area_report .seisaku .aisatsu dd {
		margin: 0 auto;
		padding: 1em;
	}
	
	.area_report .seisaku .aisatsu_photo {
		margin: 0 auto;
		padding-top: 0;
	}
	.area_report .seisaku .aisatsu_name {}
	
	.area_report .seisaku .aisatsu_yaku {}										
}
	

/***　質疑応答　***/

.area_report .seisaku .qa {
	margin: 2em auto 0;
	padding: 3em 2em 2em;
	background: rgba(255,255,255,0.05);
	text-align: left;
}

.area_report .seisaku .qa dt {
	margin: 0 auto;
	padding: 1em;
	border-top: 1px solid #ddb03d;
	border-bottom: 1px dotted #ddb03d;
}

.area_report .seisaku .qa dt:not(:first-of-type) {
	margin-top: 3em;
}

.area_report .seisaku .qa dt .icon {
	color: #ddb03d;
}

.area_report .seisaku .qa dd {
	padding: 2em 1em 0;
/*	text-indent: -5em;
	padding-left: 5em;*/
}

.area_report .seisaku .qa dd .name {
	color: #ddb03d;
}

@media screen and (max-width: 500px){

	.area_report .seisaku .qa {
		padding: 1.5em 1em;
	}
}

/***　ファンの集い　***/

.area_report .event0121 .talk_show .text {
	text-align: left;
}

.area_report .event0121 .talk_show .photo_cast {
	float: left;
	margin: 0 1em 0.5em 0;
}

.area_report .event0121 .talk_show .name {
	color: #ddb03d;
}

.area_report .event0121 .video dd{
	margin-bottom: 2em;
}

/***　オープニングイベント　***/

.area_report .event1104 {
}

.area_report .event1104 .photo {
	max-width: 333px;
}

.area_report .event1104 .cmt {
	clear: both;
	margin: 2em auto 0;
	padding: 2em;
	overflow: hidden;
	background: rgba(255,255,255,0.05);
}

.area_report .event1104 .cmt dt {
	float: left;
	width: 190px;
	text-align: center;
	font-weight: 700;
}
.area_report .event1104 .cmt dd {
	margin-left: 200px;
	text-align: left;
}

.area_report .event1104 .cmt .photo_cast {
	padding-top: 0.5em;
}

@media screen and (max-width: 450px){
	.area_report .event1104 .cmt dt {
		float: none;
		margin: 0 auto 1em;
	}
	.area_report .event1104 .cmt dd {
		margin: 0 auto;
	}
}


/*****レポート　のどじまん2015 *****/

.area_report .song2015 h3{
	max-width: 680px;
	margin: 0 auto;
	padding: 50px 0 20px 0;
}

.area_report .song2015 h3 img {
	display: block;
	width: 100%;
}

.area_report .song2015 h4 {
	max-width: 680px;
	margin: 0 auto 1em;
	text-align: center;
}

.area_report .song2015 h4 img {
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.area_report .song2015 h4::before,
.area_report .song2015 h4::after {
	content: none;
}

.area_report .seisaku.song2015 .box_entry {
	margin: 2em auto 0;
	padding: 2em;
	background: rgba(255,255,255,0.05);
}

.area_report .seisaku.song2015 .photo2 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 680px;
	margin: 2em auto;
	border: 5px solid #fff;
}

.area_report .seisaku.song2015 .photo2 img {
	display: block;
	width: 100%;
	text-align: center;
}
.area_report .seisaku.song2015 .photo2 dt {}

.area_report .seisaku.song2015 .photo2 dd {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.5em;
	background: #fff;
	color: #000;
	font-size: 0.8em;
	text-align: left;
	font-weight: 500;
}

.area_report .song2015 .photo_list {
	max-width: inherit;
}

/*****レポート　のどじまん*****/

.area_report .song2018 h3{
	max-width: 680px;
	margin: 0 auto;
	padding: 50px 0 20px 0;
}

.area_report .song2018 h3 img {
	display: block;
	width: 100%;
}

.area_report .seisaku.song2018 h4{
	margin: 0 auto 1em;
	font-size: 20rem;
}

.area_report .seisaku.song2018 .box_entry {
	margin: 2em auto 0;
	padding: 2em;
	background: rgba(255,255,255,0.05);
}

.area_report .seisaku.song2018 .photo2 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 680px;
	margin: 2em auto;
	border: 5px solid #fff;
}

.area_report .seisaku.song2018 .photo2 img {
	display: block;
	width: 100%;
	text-align: center;
}
.area_report .seisaku.song2018 .photo2 dt {}

.area_report .seisaku.song2018 .photo2 dd {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.5em;
	background: #fff;
	color: #000;
	font-size: 0.8em;
	text-align: left;
	font-weight: 500;
}

.area_report .song2018 .photo_list {
	max-width: inherit;
}


/*********** レポート　プロフィール***********/

.report .cast_box .top{
 vertical-align: top;
}

/*** reoirt11125用 ***/

.report .profbox{
	width:500px;
	font-size:14px;
	line-height:2;
	margin:0 auto;
	padding:20px;
	border:1px solid #666;
	text-align: left;
}
/*** //reoirt11125用 ***/

.report .prof_box {
	max-width:800px;
	padding: 40px;
	border: 3px groove #999;
background-color: rgba(0,0,0,0.8)
}

.report .prof_box dt {
	font-size: 1.2em;
	line-height: 2em;
	border-bottom: 1px solid #999;
/*	border-bottom: 1px solid #a58f18;*/
	padding-bottom: 0.8em;
	margin-bottom: 0.8em;
}

.report .prof_box .yaku {
/*	color: #dec11f;*/
	color: #ccc;
text-shadow:0 1px 0 #000;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.report .prof_box .name {
	font-size: 1.2em;
}

.report .prof_box .history {
	line-height: 1.8em;
}

.report .cast .banner td img[src$=".jpg"] {
  background:cyan;
  border: 5px solid black;
  box-sizing:border-box;
	border:1px solid #fff;
}


/*************************************************************

　レビュー

*************************************************************/

.area_review {
	max-width: 900px;
	margin: 0 auto;
}

.area_review .box {
	margin: 0 auto;
}

.area_review .title {
	max-width: 670px;
	margin: 0 auto;
}

.area_review .title img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_review .photo {
	max-width: 600px;
	margin: 2em auto;
}

.area_review .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_review .text {
	text-align: left;
}

.area_review .text p {
	margin-bottom: 1em;
	text-indent: 1em;
}


/*************************************************************

　コラム

*************************************************************/

.area_column {
	max-width: 800px;
	margin: 0 auto;
}

.area_column .box {
	margin: 0 auto;
	padding: 3em;
	background: rgba(25,255,255,0.05);
}

@media screen and (max-width: 450px){
	.area_column .box {
		padding: 2em;
	}

}

.area_column .title {
	max-width: 670px;
	margin: 0 auto;
}

.area_column .title img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_column .title2 {
	width: 80%;
	margin: 0 auto 2em;
}

.area_column.col1 .title2 { max-width: 346px;}
.area_column.col2 .title2 { max-width: 532px;}
.area_column.col3 .title2 { max-width: 598px;}
.area_column.col4 .title2 { max-width: 430px;}
.area_column.col5 .title2 { max-width: 487px;}
.area_column.col6 .title2 { max-width: 314px;}

.area_column .title2 img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_column .list_bk {
	margin: 0 auto 2em;
	text-align: right;
}

.area_column .list_bk dt,
.area_column .list_bk dd
{
	display: inline-block;
}
.area_column .text {
	margin: 1em auto;
	text-align: left;
}

.area_column .photo {
	max-width: 600px;
	width: 100%;
	margin: 1.5em auto;
	text-align: center;
}

.area_column .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_column .photo img.sepa,
.area_column .photo img.sepa2,
.area_column .photo img.sepa3 {
	display: inline-block;
	margin: 0 auto;
	padding: 0 0.5em;
}

.area_column .photo .cap {
	display: block;
	margin: 0.5em auto 0;
	font-size: 0.8em;
	text-align: center;
}

/***コラム1　写真***/
.area_column.col1 .photo img.sepa {
	max-width: 247px;
	width: 50%;
}

/***コラム2　写真***/
.area_column.col2 .photo img.tate {
	max-width: 350px;
}

.area_column.col2 .photo img.sepa {
	max-width: 300px;
	width: 50%;
}

/***コラム3　写真***/
.area_column.col3 .photo img.sepa {
	max-width: 300px;
	width: 50%;
	margin: 0 auto 0.5em;
}

.area_column.col3 .photo img.sepa2 {
	max-width: 227px;
	width: 33%;
}

.area_column.col3 .photo img.sepa3 {
	max-width: 348px;
	width: 50%;
}

/***コラム4　写真***/
.area_column.col4 .photo img.sepa {
	max-width: 295px;
	width: 49%;
	margin: 0 auto 0.5em;
}

/***コラム5　写真***/
.area_column.col5 .photo img.sepa {
	max-width: 250px;
	width: 49%;
	margin: 0 auto 0.5em;
}
.area_column.col5 .photo.flex {
	display: flex;
	max-width: 500px;
	margin: 3em auto;
}

.area_column.col5 .photo.flex li {
	max-width: 180px;
	width: 49%;
	margin: 0 auto 0.5em;
}

.area_column.col5 .photo.flex li.ishii {
	max-width: 247px;
}

.area_column.col5 .photo.flex li .cap {
	display: block;
	font-size: 18rem;
}

@media screen and (max-width: 800px){
	.area_column.col2 .photo img.tate {
		width: 30%;
		min-width: 200px;
	}
}

@media screen and (max-width: 500px){
	.area_column.col2 .photo img.sepa,
	.area_column.col3 .photo img.sepa,
	.area_column.col3 .photo img.sepa2,
	.area_column.col3 .photo img.sepa3,
	.area_column.col4 .photo img.sepa {
		display: block;
		width: 100%;
	}
	.area_column.col2 .photo img.sepa:not(:last-of-type),
	.area_column.col3 .photo img.sepa:not(:last-of-type),
	.area_column.col3 .photo img.sepa2:not(:last-of-type) {
		margin-bottom: 1em;
	}
}

.area_column .note_r {
	text-align: right;
}


/**********************************************************************

　モーダルウィンドウ

**********************************************************************/

.column .modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.column .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.column .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.column .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.column .modal-wrapper .modal-window {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	margin: 0 auto 2em;
	padding: 0 3em;
	background-color: rgba(0,0,0,0.2);
	outline: 1px solid #fff;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.column .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	margin: 2em auto 1em;
	padding: 0 1em;
}

.column .modal-wrapper .modal-window .modal-content img {
	width: 100%;
}

.column .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.column .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #333;
	
}
.column .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #fff;
	
}

.column .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.column .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #fff !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.column .modal-wrapper .modal-close:hover {
  color: #eccc84 !important
}

@media screen and (max-width: 414px){

    .column .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }
}



/**********************************************************************

　パブリシティ

**********************************************************************/

.area_pub {
	max-width: 900px;
	margin: 0 auto;
}

.area_pub .box {
	margin: 0 auto;
}

.area_pub .lead {
	margin: 0 auto 2em;
	font-size: 18rem;
}

.area_pub .list {
	margin: 0 auto;
	text-align: left;
	font-size: 18rem;
}

.area_pub .list .date {
	padding: 0.5em 0.5em 0;
	font-size: 20rem;
	font-family: gelica, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #fff;
}

.area_pub .list .text {
	padding: 0 0.5em 0.5em;
}
.area_pub .list .text:not(:last-of-type) {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.area_pub .list .text .point {
	color: red;
}


/****************************************

　グッズ

*****************************************/

.area_goods {
	max-width: 900px;
    margin: 8em auto 6em;
}

.area_goods .inner {
	max-width: 900px;
	margin: 0 auto;
}
.area_goods .heading_page_sub {
	max-width: 20em;
	width: 95%;
	margin: 3em auto 2em;
	padding: 0.5em;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-weight: 500;
	font-size: 30rem;
	line-height: 1.5;
}
.area_goods .heading_page_sub .note {
	display: block;
	font-size: 0.8em;
}

.area_goods .list .item {
	margin: 0 auto 2em;
	border: 1px solid #fff;
}
.area_goods .list .item a {
/*	color: #070e20;*/
	text-decoration: underline;
}

.area_goods .list .item > dt {
	padding: 0.8em;
	border-bottom: 1px solid #fff;
	background: rgba(255,255,255,0.05);
	font-size: 24rem;
	line-height: 1.3;
}

.area_goods .list .item > dd {
	padding: 2em 1em;
}

.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.5em auto 0;
	padding: 1em;
	background: #fff;
}

.area_goods .list dd .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_goods .list .program dd .photo img { max-width: 300px;}
.area_goods .list .as dd .photo img { max-width: 534px;}
.area_goods .list .bag dd .photo img { max-width: 664px;}
.area_goods .list .bag_add dd .photo img { max-width: 400px;}
.area_goods .list .strap dd .photo img { max-width: 714px;}
.area_goods .list .bm dd .photo img { max-width: 579px;}
.area_goods .list .coin dd .photo img { max-width: 574px;}
.area_goods .list .ts dd .photo img { max-width: 745px;}
.area_goods .list .charm dd .photo img { max-width: 580px;}
.area_goods .list .charm_set dd .photo img { max-width: 530px;}
.area_goods .list .hair dd .photo img { max-width: 591px;}
.area_goods .list .sb dd .photo img { max-width: 663px;}
.area_goods .list .letter dd .photo img { max-width: 600px;}
.area_goods .list .costume dd .photo img { max-width: 318px;}
.area_goods .list .bear dd .photo img { max-width: 600px;}

.area_goods .list dd .catch {
	display: inline-block;
	margin: 2em auto 0;
	font-size: 18rem;
	line-height: 1.5;
	font-weight: 400;
}

.area_goods .list dd .lbl_tc {
	display: block;
	padding: 0.5em;
	background: #ddb03d;
	color: #070e20;
	font-weight: 700;
	line-height: 1.3;
}

.area_goods .list dd .data {
	margin: 2em auto 0;
	padding: 2em 0.5em 0;
	border-top: 1px solid #fff;
	font-size: 0.9em;
	font-weight: 400;
	text-align: right;
}


.area_goods .list .ts dd .size {
	width: 90%;
	margin: 1em auto 0;
	font-size: 0.9em;
}
.area_goods .list .ts dd .size caption {
	font-size: 1.1em;
}
.area_goods .list .ts dd .size th,
.area_goods .list .ts dd .size td {
	padding: 0.3em;
	border: 1px solid #fff;
	text-align: center;
}
.area_goods .list .ts dd .size th {
	background: rgba(157,134,186,0.1);
	font-weight: 400;
}
.area_goods .list .ts dd .data .note{
	width: 90%;
	margin: 0 auto;
	text-align: right;
	font-size: 0.9em;
}

@media screen and (max-width: 580px){

	.area_goods .list {
		padding: 1em 0;
	}
	.area_goods .list .item > dt {
		line-height: 1.5;
	}
	
	.area_goods .list .item > dd {
	}
}

@media screen and (max-width: 460px){
	.area_goods .list dd .catch {
		display: block;
		text-align: left;
		font-size: 0.9em;
	}
	.area_goods .list dd .catch .pk {
		display: inline;
	}	
}
@media screen and (max-width: 430px){
	.area_goods .list .item > dt {
		font-size: 20rem;
	}
}

@media screen and (max-width: 380px){
	.area_goods .list .item > dt {
		font-size: 18rem;
	}
	
	.area_goods .list .item > dt .name {
		display: block;
	}

	.area_goods .list .item > dt .price {
		display: block;
		margin-top: 0.2em;
		margin-left: 1em;
		font-size: 0.9em;
	}
}

/****　プログラム　***/
.area_goods .list .program .msg {
	margin: 0 auto 2em;
}
.area_goods .list .program .p_cont {
	display: inline-block;
	margin: 2em auto 0;
	padding: 1em;
	text-align: left;
	font-size: 0.9em;
}

.area_goods .list .program .p_cont .lbl {
	display: block;
	border: 1px solid #fff;
	color: #fff;
	text-align: center;
}

.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: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.area_goods .list .program .p_cont .icon {
	margin-right: 0.3em;
}

.area_goods .foot_caution {
	padding: 0 2em;
}

.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;
}


@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 .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: #ddb03d;
}

.area_goods .wrap_order .list_way > dd {
}
.area_goods .wrap_order .list_way table {
	width: 100%;
	margin: 0 auto 2em;
	border: 1px solid #fff;
}

.area_goods .wrap_order .list_way th,
.area_goods .wrap_order .list_way td {
	padding: 1em;
	border: 1px solid #fff;
	text-align: left;
	font-weight: 500;
}
.area_goods .wrap_order .list_way th {
	width: 8em;
	background: rgba(255,255,255,0.1);
	color: #fff;
	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 {
	padding: 1em 1em 0;
	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: #fff;
	text-decoration: underline;
	transition: 0.5s;
	font-weight: 900;
}

.area_goods .wrap_order .chanter .fas {
}

.area_goods .wrap_order .chanter:hover {
}

.area_goods .wrap_order .btn_order {
	display: inline-block;
	max-width: 360px;
	width: 100%;
	margin: 0 auto 0.5em;
	padding: 0.5em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 24rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
	text-align: center;
}

.area_goods .wrap_order .btn_order:hover {
	background: none;
	color: #ddb03d;
}
.area_goods .wrap_order .btn_order .icon {
	margin-right: 0.2em;
}


@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;
	}
	.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;
	}
}

.area_goods .area_theater {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 2em auto 4em;
	padding: 1.5em 2em;
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
}

.area_goods .area_theater > dt {
	margin-bottom: 1em;
	color: #fff;
	font-size: 20rem;
	font-weight: 500;
	line-height: 1.3;
}

.area_goods .area_theater > dt .pk {
	margin: 0 0.25em;
}

.area_goods .area_theater > dd{
}

.area_goods .area_theater .btn {
	display: inline-block;
	max-width: 360px;
	width: 100%;
	margin: 0 auto 0.5em;
	padding: 0.5em;
	background: #ddb03d;
	border: 2px solid #ddb03d;
	font-size: 24rem;
	color: #070e20;
	font-weight: 700;
	transition: 0.5s;
	text-align: center;
}

.area_goods .area_theater .btn:hover {
	background: none;
	color: #ddb03d;
}
.area_goods .area_theater .btn .icon {
	margin-right: 0.2em;
}

@media screen and (max-width: 500px){
	.area_goods .area_theater > dt {
		font-size: 18rem;
	}
	.area_goods .area_theater .btn  {
		width: 90%;
		max-width: 200px;
		font-size: 20rem;
	}
}

/***　ナビザーブ電話番号変更　***/
.area_ticket .tele_note {
	margin: 0.5em auto 0;
	padding: 0.5em 1em;
	border: 1px dotted #fff;
	line-height: 1.5;
}

.area_ticket .tele_note .tele_no a{
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 350px){
	.area_ticket .tele_note {
		text-align: left;
	}
	.area_ticket .tele_note .pk {
		display: inline;
	}
}


