@charset "utf-8";
/* CSS Document */

/***font
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900
***/

/***color
赤　#c1181f;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********リンク********/
a {
    color: #c1181f;
    text-decoration: none;}
a:hover{}


a:hover img{
  filter: alpha(opacity=70);
  opacity: 0.7;
  zoom: 1.0;
  }

a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}

.point {color:#FF0004;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}

html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
} 

body{
	margin: 0;
	padding: 0;
	font-size: 18em;
	line-height:2;
	color:#fff;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    
/*	background-image: url(../images/bg.jpg);
	background-position: top;
	background-repeat: no-repeat;
	background-attachment:scroll;
	background-size: cover;	*/
    
	background-color: #000;
  
}

body:before{
	content: "";
    display: block;
    position: fixed;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url("../images/bg_pc.jpg");
    background-position: center;
    background-size: contain;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/

	body:before{
		background-image: url("../images/bg_smp.jpg");
	}
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}


/****************************************

　ページトップへ戻るボタン

*****************************************/


#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
	padding: 0.3em;
    line-height: .5;
	z-index: 1000;
}

#pagetop a {
	text-decoration: none;
	color: #c1181f;
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 3em;

}


/****************************************

　フッター

*****************************************/

footer{
/*	width: 100%;*/
	margin: 0 auto 0;
    padding: 1em;
	text-align: center;
}

footer .btn_kako {
	position: relative;
    display: block;
    max-width: 600px;
    width: 90%;
    margin: 0 auto 3em;
	background: #c1181f;
    border: 2px solid #c1181f;
    border-radius: 2px;
    font-family: 'Noto serif JP', sans-serif;
    font-weight: 900;
    font-size: 24rem;
    color: #000;
	transition: 0.5s;
}

footer .btn_kako:hover {
	background: rgba(0,0,0,0.5);
    color: #c1181f;

}
footer .btn_kako .note{
    margin-left: -0.5em;
    font-size: 0.8em;
}
footer .btn_kako .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

footer .copy_origin {
    margin-bottom: 2em;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.1em;
 
}

footer .copy {
    font-weight: 400;
    color: #fff;
    font-size: 12rem;
    letter-spacing: 0.1em;
 
}

footer .sns_link {
    margin-left: 10px;
}

footer .sns_link .icon {
    display: inline-block;
    width: 100%;
    max-width: 30px;
    margin-left: 5px;
}

footer .sns_link .icon.x {
    max-width: 30px;
    padding: 0 0.5em;
}
footer .sns_link .icon.toho {
    max-width: 35px;
    margin-bottom: -10px;
}

footer .sns_link .icon img {
    display: block;
    max-width: 100%;
}

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;
}


#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
	z-index: 1000;
}

@media screen and (max-width: 600px){
    footer .btn_kako {
        font-size: 20rem;
        padding: 0.5em;
        line-height: 1.5;
    }
    footer .btn_kako .pk {
        display: block;
    }
}

@media screen and (max-width: 500px){
    footer .copy {
            display: block;
            margin-bottom: 10px;
        } 
}
@media screen and (max-width: 375px){
    footer {
        padding: 5px 0 0;    
    }

    footer .sns_link .icon {
        margin: 0 5px;   
    }    

}



/****************************************

　ボックス

*****************************************/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	position: relative;
}

.sec {
	width: 100%;
    margin: 0 auto;
    padding: 0;
	opacity: 0;
    transition: all 1s;
}

.sec.scrollin {
	opacity: 1;
}

.sec .inner {
/*	max-width: 900px;*/
	width: 90%;
	margin: 0 auto;
	padding: 10em 0 10em;
}

@media screen and (max-width: 900px){
	.sec .inner2 {
		/*padding: 0 1em;*/
	}
}

.sec.c1 {
}

.sec.c2	 {
}

.heading_sec {
    display: block;
    margin: 0 auto 1em;
	padding: 0;
    font-size: 60rem;
	line-height: 1;
	text-align: center;
	color: #c1181f;
    font-family: 'Noto serif JP', sans-serif;
	background-image: url(../images/heading_page_bg.jpg);
	background-position: top;
	background-size: contain;
	-webkit-background-clip: text;
	color: transparent;
}

.heading_sec .amp {
    margin: 0 0.3em;
}

.heading_sec .chosei {
	letter-spacing: -0.1em;
}


.anchor {
    margin-top: -3em;
    padding-top: 3em;
}

@media screen and (max-width: 600px){
	.heading_sec {
		font-size: 50rem;
	}
}

@media screen and (max-width: 500px){
	.heading_sec {
		font-size: 40rem;
	}
}


/****************************************

　ビジュアル

*****************************************/

.area_visual {
    margin: 0 auto;
	padding: 5px 0;
}

.area_visual .slider {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
    z-index: 1;
    box-shadow: 0 0 100px rgba(80,71,63,1),0 0 20px rgba(80,71,63,1);
}

.area_visual .slick-box {
	margin: 1em auto 0;
}

.area_visual .slide {
	width: 100%;
	height: auto;

}

.area_visual .slide img {
	width: 100%;

    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

@media print{
	.area_visual .visual {
		display: none;
	}
    .area_visual .slide {
        display: none;
    }
}


.area_visual .art_credit {
	max-width: 880px;
	margin: 0.5em auto 0;
    font-size: 13rem;
    font-weight: 400;
    text-align: right;
}

@media only screen and (max-width: 1100px){
	.area_visual {
		margin: 60px auto 1em;
		padding: 5px;
	}
}

@media only screen and (max-width: 900px){
	.area_visual .art_credit {
		padding: 0 1em;
	}
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
}

/**　画面が横長　かつ　高さが700px以上の時　**/
@media only screen and (orientation: landscape) and (min-height: 700px) {
}

/****************************************

　イントロ

*****************************************/

.area_intro {}

.area_intro .catch {
    max-width: 900px;
    margin: 0 auto 1em;
    padding: 1em 0;
    font-size: 24rem;
    font-family: 'Noto Serif JP', serif;
    background: rgba(0,0,0,0.7);
    border-top: 1px groove rgba(206,170,80,0.5);
    border-bottom: 1px groove rgba(206,170,80,0.5);
}

.area_intro .catch .text1 {
    margin: 0 auto 0.5em;
    font-size: 1.6em;
    font-weight: 700;
    letter-spacing: 0.1em;
	font-family: 'Imbue', serif;
	font-weight: 500;
	color: #ceac50;
	
        background: #ceac50; /* fallback for old browsers */
        background: -webkit-linear-gradient(top, #836921 15%, #ceac50 40%, #f6cf70 70%, #f6cf70 100%);
        background: linear-gradient(to top, #836921 15%, #ceac50 40%, #f6cf70 70%, #f6cf70 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}
.area_intro .catch .text2 {
    font-weight: 400;
    color: #dab95f;
/*    text-shadow: 5px 5px 5px rgba(0,0,0,1), 0 0 10px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,1);*/

}

.area_intro .catch .text2 p {

}

@media screen and (max-width: 420px){
    .area_intro .catch {
        font-size: 20rem;
    }
}

@media screen and (max-width: 360px){
    .area_intro .catch .text1 {
        font-size: 1.2em;
        letter-spacing: 0em;
    }
}

@media screen and (max-width: 320px){
    .area_intro .catch {
        font-size: 18rem;
    }
}

.area_intro .text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.area_intro .text p {
    margin-bottom: 1em;
    font-weight: 400;
}


/****************************************

　キャスト

*****************************************/

.area_cast .list {
	margin-bottom: 8em;
	font-family: 'Noto Serif JP', serif;
}

.area_cast .list dt {
	color: #c1181f;
	font-size: 1.3em;
	font-weight: 900;
    text-shadow: 0 0 20px #000,0 0 30px #000,0 0 100px #000,3px 3px 3px #000;
	line-height: 1.3;
}
.area_cast .list dt .kana {
	display: block;
	color: rgba(255,255,255,0.8);
	font-size: 0.5em;
	font-weight: 400;
	font-feature-settings: "palt";
}

.area_cast .list dd {
	margin: 0 auto 1em;
	font-size: 1.6em;
}

.area_cast .list .name {
    text-shadow: 0 0 20px #000,0 0 30px #000,0 0 100px #000,3px 3px 3px #000;
}
.area_cast .list .name .note {
    display: block;
	font-size: 0.5em;
}

.area_cast .list .wcast .name {
	display: inline-block;
	margin: 0 0.5em;
	max-width: 150px;
	width: 100%;
}

.area_cast .list .wcast2 .name {
	display: inline-block;
	margin: 0 0.5em;
	max-width: 150px;
	width: 100%;
}

.area_cast .list .role {
	max-width: 30em;
	margin: 0.5em auto;
	padding: 0.5em 1em;
    border-top: 1px groove rgba(206,170,80,0.5);
    border-bottom: 1px groove rgba(206,170,80,0.5);
	font-size: 0.5em;
	color: rgba(255,255,255,0.9);
	font-weight: 400;
	line-height: 1.5;
}

.area_cast .list .btn_cmt {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 140px;
	padding: 0.3em 0.3em 0.4em;
	background: #c1181f;
	border: 1px solid #fff;
	background: rgba(0,0,0,0.5);
	color: #fff;
	text-decoration: none;
	font-size: 0.5em;
	font-weight: 700;
	line-height: 1;
	transition: 0.5s;
}

.area_cast .list .btn_cmt:hover {
	background: #e3232b;
}

@media screen and (max-width: 768px){
	.area_cast .list .wcast2 .name {
		max-width: 120px;
	}
}

@media screen and (max-width: 500px){

	.area_cast .list .wcast .name {
		max-width: 120px;
	}

	.area_cast .list .btn_cmt {
		max-width: 120px;
	}

}

@media screen and (max-width: 340px){

	.area_cast .list .wcast .name {
		max-width: 100px;
	}

	.area_cast .list .btn_cmt {
		max-width: 100px;
	}

}

.area_cast .list2 {
	margin-bottom: 4em;
	font-family: 'Noto Serif JP', serif;
}

.area_cast .list2 dt {
	color: #c1181f;
	font-size: 1.1em;
	font-weight: 900;
    text-shadow: 0 0 20px #000,0 0 30px #000,0 0 100px #000,3px 3px 3px #000;
	line-height: 1.3;
}
.area_cast .list2 dt .kana {
	display: block;
	color: rgba(255,255,255,0.8);
	font-size: 0.6em;
	font-weight: 400;
	font-feature-settings: "palt";
}

.area_cast .list2 dd {
	margin: 0 auto 1em;
	font-size: 1.4em;
}

.area_cast .list2 .name {
    text-shadow: 0 0 20px #000,0 0 30px #000,0 0 100px #000,3px 3px 3px #000;
}
.area_cast .list2 .name .note {
    display: block;
	font-size: 0.5em;
}

.area_cast .list2 .wcast .name {
	display: inline-block;
	margin: 0 0.5em;
	max-width: 150px;
	width: 100%;
}

.area_cast .list2 .wcast .note {
	font-size: 0.6em;
}

@media screen and (max-width: 768px){

	.area_cast .list2 .wcast .name {
		max-width: 80px;
	}
}

@media screen and (max-width: 500px){

	.area_cast .list .wcast .name {
		max-width: 120px;
	}
}

@media screen and (max-width: 340px){

	.area_cast .list2 .wcast .name {
		max-width: 100px;
	}
}

.area_cast .list_e {
	margin-top: 8em;
	font-family: 'Noto Serif JP', serif;
}

.area_cast .list_e li {
	display: inline-block;
	margin: 0 0.5em 0.5em;
	font-size: 1.2em;
}
.area_cast .list_e li.emp {
	display: none;
}

.area_cast .list_e .res2,
.area_cast .list_e .res3 {
	display: none;
}

@media screen and (max-width: 900px){
	.area_cast .list_e .res {
		display: none;
	}
	.area_cast .list_e .res2 {
		display: inline;
	}
	.area_cast .list_e li {
		width: 6em;
		margin: 0 auto 0.5em;
	}
}

@media screen and (max-width: 360px){
	.area_cast .list_e li {
		width: 5.5em;
	}
}

@media screen and (max-width: 320px){
	.area_cast .list_e li.emp {
		display: inline-block;
		width: 5.5em;
		height: 0;
		line-height: 0;
	}
	.area_cast .list_e .res2 {
		display: none;
	}
	.area_cast .list_e .res3 {
		display: inline;
	}
}


/****************************************

　コメント　モーダルウィンドウ

*****************************************/

.cast_cmt .modal-wrapper {
	z-index: 999;
	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: 980px;
	padding: 3em;
	border: 3px solid rgba(255,255,255,0.1);
	border-radius: 5px;
	background-image: url("../images/bg_pc.jpg");
    background-position: center;
    background-size: cover;
	box-shadow: 0 0 30px rgba(0, 0, 0, .6);
	vertical-align: middle;
	border-radius: 5px;
	color: #fff;
	text-align: left;
}

.cast_cmt .modal-wrapper .modal-window .title {
	font-size: 50rem;
	color: rgba(255,255,255,0.1);
}
.cast_cmt .modal-wrapper .modal-window .name {
	margin-bottom: 0.5em;
	font-size: 30rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.cast_cmt .modal-wrapper .modal-window .name .work {
	margin-right: 0.5em;
	font-size: 0.7em;
	font-weight: 500;
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 0 1em;
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #c1181f;
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #000;
	
}

.cast_cmt .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.cast_cmt .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  color: #c1181f !important;
  font-size: 3em;
  font-weight: 700;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.cast_cmt .modal-wrapper .modal-close:hover {
  color: #c1181f !important
}

@media screen and (max-width: 414px){

    .cast_cmt .modal-wrapper .modal-window {
      padding: auto 1.5em;
    }
}


/*****　キャストコメント　*****/

.cast_cmt .cmt .cmt_box {
	text-align: center;
	font-family: 'Noto Serif JP', serif;
}

.cast_cmt .cmt .cmt_box .title {
	display: block;
	margin: 1em auto;
	color: #c1181f;
	font-size: 18rem;
	font-weight: 900;
	line-height: 1;
}

.cast_cmt .cmt .cmt_box .title::before {
	content: "―";
	margin-right: 1em;
}

.cast_cmt .cmt .cmt_box .title::after {
	content: "―";
	margin-left: 1em;
}

.cast_cmt .cmt .cmt_box .yaku {
    display: block;
	margin-bottom: 0.5em;
    font-size: 20rem;
    line-height: 1;
    color: #fff;
    font-weight: 500;
	letter-spacing: 0.1em;
}
.cast_cmt .cmt .cmt_box .yaku::after {
	content: "役";
}
.cast_cmt .cmt .cmt_box .name {
    display: block;
    font-size: 28rem;
    line-height: 1;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.1;
}
.cast_cmt .cmt .cmt_box .name .note {
    display: block;
	margin-top: 0.5em;
    font-size: 0.5em;
	font-weight: 500;
	letter-spacing: 0;
}

/*.cast_cmt .cmt .cmt_box .name_en {
	margin: 0.3em auto 0;
	line-height: 1;
	font-size: 16rem;
	color: #30148b;
	font-style: normal;
}*/

.cast_cmt .cmt .cmt_box .name .ls {
    letter-spacing: 0.1em;
}

.cast_cmt .cmt .text {
    text-align: left;
	color:#fff;
	font-weight:500;
}
.cast_cmt .cmt .cmt_box .text p {
    margin-bottom: 1em;
	font-size: 18rem;
}


@media screen and (max-width: 500px){
	.cast_cmt .cmt .cmt_box .name_en {
		margin-bottom: 0.1em;
		letter-spacing:0;
	}
}



/****************************************

　キャスト＆クリエイティブ　クレジット

*****************************************/

.area_credit {}

.area_credit .heading_sec {
}

.area_credit {
	width: 100%;
	margin: 0 auto;
}

/***　速報　***/
.area_credit .sokuho {
    font-family: 'Noto Serif JP', serif;
    font-size: 22rem;
    line-height: 1.5;
}
.area_credit .sokuho .list_creat {
	max-width: 900px;
    margin: 0 auto 1em;
}
.area_credit .sokuho .list_creat img {
	display: block;
	margin: 0 auto;
	width: 80%;
}

/****************************************

　チケット＆スケジュール（速報）

*****************************************/


.area_ticket{}

.area_ticket .sokuho {
	max-width: 800px;
	width: 100%;
	margin: 5em auto 0;
    font-family: 'Noto Serif JP', serif; 
}

.area_ticket .sokuho .list {
    font-size: 24rem;
/*    text-shadow: 0 0 20px #000,0 0 30px #000,0 0 100px #000, 5px 5px 5px #000;
*/}
.area_ticket .sokuho dt {
    color: #ff323b;
    font-weight: 900;
    font-size: 1.2em;
}
.area_ticket .sokuho dd {
    margin-bottom: 2em;
    padding: 2em;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.8);
}
.area_ticket .sokuho .theater {}
.area_ticket .sokuho .day {}
.area_ticket .sokuho .hoshitori {
	max-width: 800px;
	margin: 1em auto;
}
.area_ticket .sokuho .hoshitori img {
	display: block;
	width: 100%;
}
.area_ticket .sokuho .btn_castsche {
	display: block;
	max-width: 300px;
	margin: 0 auto;
	padding: 0.5em;
	background: #c1181f;
	color: #fff;
	text-decoration: none;
	font-size: 0.9em;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .sokuho .btn_castsche:hover {
	background: #ff313a;
}
.area_ticket .sokuho .tour ul {
}
.area_ticket .sokuho .tour li {
}
.area_ticket .sokuho .tour .theater {
    display: inline-block;
}
.area_ticket .sokuho .tour .day {
    display: inline-block;
}


@media screen and (max-width: 500px){
    .area_ticket .sokuho .list {
        font-size: 20rem;
    }
}

@media screen and (max-width: 340px){
    .area_ticket .sokuho .list {
        font-size: 18rem;
    }
    .area_ticket .sokuho dd {

        padding: 1em;
    }
}

/****************************************

　チケット＆スケジュール（本報）

*****************************************/


.area_ticket{}

.area_ticket .stage_deta {
	max-width: 800px;
	width: 100%;
	margin: 5em auto 0;
}

.area_ticket .stage_deta .sch {
	width:100%;
	max-width: 700px;
	margin: 3em auto 1.5em;
}
.area_ticket .stage_deta .sch img {
	width: 100%;
}

.area_ticket .stage_deta .hoshitori {
	max-width: 800px;
	margin: 0 auto 2em;
}

.area_ticket .stage_deta .hoshitori img {
	width: 100%;
}

.area_ticket .stage_deta .btn_castsche {
	position: relative;
	display: block;
	max-width: 18em;
	width: 100%;
	margin: 0 auto 2em;
	padding: 1em 0;
	background-color: #c1181f;
	background-size: cover;
	border-radius: 2px;
	color: #fff;
	text-decoration: none;
	line-height: 1;
	font-size: 22rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .stage_deta .btn_castsche .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .stage_deta .btn_castsche:hover {
	background-color: #f22d35;
}

.area_ticket .stage_deta .toho-one {
	margin: 0 auto 2em;
	padding: 2em;
	background: rgba(0,0,0,0.8);
	border: 1px solid #fff;
}
.area_ticket .stage_deta .toho-one .tokuten {
	margin: 0 auto;
	margin: 1.5em auto;
}
.area_ticket .stage_deta .toho-one .tokuten th,
.area_ticket .stage_deta .toho-one .tokuten td {
	padding: 0.5em 1em;
	border: 1px solid #fff;
}
.area_ticket .stage_deta .toho-one .tokuten th {
	width: 5em;
	background: rgba(255,255,255,0.1);
}
.area_ticket .stage_deta .toho-one .tokuten .caution {
	display: inline-block;
	margin: 0 auto;
}

.area_ticket .stage_deta .caution {
    text-align: left;
}

.area_ticket .stage_deta .caution li {
    font-size: 0.9em;
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
    font-weight: 400;
}
.area_ticket .stage_deta .caution .link {
	font-weight: 700;
}
.area_ticket .stage_deta .caution .tel {
	text-decoration: none;
	color: #fff;
}

.area_ticket .stage_deta .list_price {
	table-layout: fixed;
	width: 100%;
	background: rgba(0,0,0,0.8);
}
.area_ticket .stage_deta .list_price caption {
	font-weight: 500;
	font-size: 1.1em;
}
.area_ticket .stage_deta .list_price caption .note {
	font-size: 0.8em;
}
.area_ticket .stage_deta .list_price th,
.area_ticket .stage_deta .list_price td {
	padding: 0.5em 1em;
	border: 1px solid #fff;
}

.area_ticket .stage_deta .list_price th {
	background: rgba(255,255,255,0.1);
	font-weight: 400;
}
.area_ticket .stage_deta .list_price td {}

.area_ticket .stage_deta .theater {
	max-width: 480px;
	width: 100%;
	margin: 0 auto 1em;
}
.area_ticket .stage_deta .theater img {
	width: 100%;
}

@media screen and (max-width: 900px){
}

@media screen and (max-width: 560px){
/*	.area_ticket .stage_deta .logo {
		width: 80%;
	}*/

	.area_ticket .stage_deta .btn_castsche {
		max-width: 100%;
		width: 80%;
		font-size: 20rem;
	}
}

@media screen and (max-width: 420px){

	.area_ticket .stage_deta .toho-one {
		padding: 1.5em;
	}
	.area_ticket .stage_deta .toho-one .lead {
		text-align: left;
	}
	.area_ticket .stage_deta .toho-one .lead .pk {
		display: inline;
	}
	.area_ticket .stage_deta .toho-one .tokuten td {
		text-align: left;
		line-height: 1.5;
	}
	.area_ticket .stage_deta .toho-one .tokuten .caution {
		display: inline-block;
		margin: 0 auto;
	}

}

@media screen and (max-width: 414px){
	.area_ticket .stage_deta {
		margin: 3em auto 0;
	}
	.area_ticket .stage_deta .btn_castsche {
		font-size: 18rem;
	}
}

.area_ticket .way {
	text-align: left;
	max-width: 800px;
	margin: 2em auto 0;
    border: 3px solid #c1181f;
    border-radius: 10px;
}

.area_ticket .way > dt{
	padding:0.5em 0;
    border-bottom: 3px solid #c1181f;
	background: #c1181f;
	color: #fff;
    font-size: 22rem;
    font-weight: 700;
    text-align: center;
	line-height: 1.5;
}

.area_ticket .way > dd{
	padding: 20px 20px;
	border-top: none;	
	text-align: center;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background: rgba(0,0,0,0.7);
}
.area_ticket .way .senkou {
	margin: 2em auto 0;
}

.area_ticket .way .senkou dt {
	padding: 0.1em 0.5em;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	background: rgba(255,255,255,0.1);
	color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
.area_ticket .way .senkou dd {
	margin-bottom: 1em;
	padding: 0.5em;
	font-size: 20rem;
/*	font-weight: 900;   */ 
}


@media screen and (max-width: 413px){
    .area_ticket .way .senkou dd {
        font-size: 18rem;
    }
}

@media screen and (max-width: 364px){
    .area_ticket .way .senkou dd {
        font-size: 16rem;
    }
}

.area_ticket .way > dd > .caution {
    padding: 1em 0.5em 0;
    border-top: 1px solid #c1181f;
    text-align: left;
    font-size: 0.9em;
}

.area_ticket .way > dd > .caution li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

@media screen and (max-width: 364px){

    .area_ticket .way > dt{
        font-size: 20rem;
    }
}

.area_ticket .way .start {
	display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
	line-height: 1.5;
	font-size: 20rem;
	color: #c1181f;
}


.area_ticket .way a {
    color: #fff;
}

.area_ticket .way > dd > .caution {
	margin-top: 1em;
    text-align: center;
}

.area_ticket .way > dd > .caution.cen {
	text-align: center;
}


/***　東宝ナビザーブ　***/

.area_ticket .way.toho .btn {
	position: relative;
	display: block;
	max-width: 18em;
	width: 100%;
	margin: 0 auto 2em;
	padding: 1em 0;
	background-color: #c1181f;
	background-size: cover;
	border-radius: 2px;
	color: #fff;
	text-decoration: none;
	line-height: 1;
	font-size: 22rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .way.toho .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .way.toho .btn:hover {
	background-color: #f22d35;
}

.area_ticket .way.toho .toho-one {
	padding: 2em;
	background: rgba(255,255,255,0.1);
	border-radius: 5px;
	text-align: left;
	font-weight: 400;
	font-size: 0.9em;
}
.area_ticket .way.toho .toho-one p:not(:last-of-type) {
	margin-bottom: 1em;
}
.area_ticket .way.toho .toho-one .btn2 {
	display: block;
	margin: 1em 0;
	font-size: 1.1em;
	transition: 0.5s;
}
.area_ticket .way.toho .toho-one .btn2 .icon {
	margin-right: 0.2em;
	color: #c1181f
}
.area_ticket .way.toho .toho-one .btn2:hover{
	color: #c1181f;
	font-weight: 700;
}

.area_ticket .way.toho .toho-one .link a {
	text-decoration: underline;
}
.area_ticket .way.toho .toho-one table {
	margin: 0 auto 1em;
	width: 100%;
}
.area_ticket .way.toho .toho-one th,
.area_ticket .way.toho .toho-one td {
	padding: 0.5em 1em;
	border: 1px solid #fff;
	font-weight: 400;
}
.area_ticket .way.toho .toho-one th {
	white-space: nowrap;
	background: rgba(255,255,255,0.1);
}
.area_ticket .way.toho .toho-one td a {
	text-decoration: underline;
}
.area_ticket .way.toho .toho-one td .tel a {
	text-decoration: none;
	color: #fff;
}
@media screen and (max-width: 450px){
	.area_ticket .way.toho .toho-one table {
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		border-left: 1px solid #fff;
	}
	.area_ticket .way.toho .toho-one th,
	.area_ticket .way.toho .toho-one td {
		display: block;
		text-align: center;
	}
	.area_ticket .way.toho .toho-one th {
		white-space:inherit;
		border: none;
	}
	.area_ticket .way.toho .toho-one td {
		border-right: none;
		border-left: none;
	}
}

/***　としまチケット　***/
.area_ticket .way.toshima {}
.area_ticket .way.toshima .senkou {}
.area_ticket .way.toshima .senkou .note {
	display: inline-block;
	font-size: 0.8em;
}

.area_ticket .way.toshima .way2 {}
.area_ticket .way.toshima .way2 th,
.area_ticket .way.toshima .way2 td {
	padding: 0.5em 1em;
	border: 1px solid #fff;
	font-weight: 400;
}
.area_ticket .way.toshima .way2 th {
	background: rgba(255,255,255,0.1);
}
.area_ticket .way.toshima .way2 td {
	text-align: left;
}
.area_ticket .way.toshima .way2 .caution {
	margin: 0.5em auto 0;
	font-size: 0.9em;
}
.area_ticket .way.toshima .way2 .caution li {
	padding-left: 1em;
	text-indent: -1em;
}



/*****　プレイガイド　*****/
.area_ticket .playguide {
    margin: 1em auto 0;
}

.area_ticket .playguide dt {
	padding: 0.1em 0.5em;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	background: rgba(255,255,255,0.1);
	color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.area_ticket .playguide dd {
	text-align: left;
    font-size: 20rem;
	margin-bottom: 1em;
	padding: 1em 0;
word-break: break-all;
    text-align: center;
    line-height: 1.5;
}

.area_ticket .playguide a {
	text-decoration: none;
}
.area_ticket .playguide .pc {
    margin-bottom: 0.5em;
    font-family: 'Noto sans JP', serif; 
    font-weight: 700;
}
.area_ticket .playguide .tel {
    display: inline-block;
    margin-bottom: 0.5em;
    font-family: 'Noto sans JP', serif; 
    font-weight: 700;
}
.area_ticket .playguide .time {
    display: inline-block;
    margin-left: 0.5em;
    font-family: 'Noto sans JP', serif; 
    font-weight: 500;
    font-size: 0.8em;
}
.area_ticket .playguide .first_day {
    width: 90%;
    margin: 0 auto;
    padding: 0.5em;
    border: 1px groove #c1181f;
}
.area_ticket .playguide .first_day .lbl {
    display: inline-block;
    margin-right: 1em;
    color: #c1181f;
}
.area_ticket .playguide .first_day .f_caution {
    font-size: 0.8em;
}
.area_ticket .playguide .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #c1181f;
}
.area_ticket .playguide .code {
    font-size: 0.9em;
/*    font-weight: 700;*/
}


@media screen and (max-width: 480px){

    .area_ticket .playguide dd {
        font-size: 18rem;
    }
    .area_ticket .playguide .time {
        font-size: 0.8em;
    }    
}
@media screen and (max-width: 450px){
    .area_ticket .playguide .first_day .lbl {
        display: block;
    }
}
@media screen and (max-width: 380px){

    .area_ticket .playguide dd {
    }
}
@media screen and (max-width: 365px){

    .area_ticket .playguide .pc {
        font-size: 18rem;
    }
}


@media screen and (max-width: 414px){

    .area_ticket .playguide dd {
        font-size: 16rem;
        padding-left: 0;
    }
	.ticket_smp {
		text-align: center;
	}
	.area_ticket .pc {
		font-size: 1.2em;
		line-height: 1.5;
	}
	.ticket_crea .text{
		text-align: left;
	}	
}



/***　テレザーブ　***/

.area_ticket .way.tele .office {
	display: inline-block;
	margin: 0 0.5em;
}
.area_ticket .way.tele .tel {
	display: inline-block;
	margin: 0 0.5em;;
	font-size: 24rem;
	line-height: 40px;
    font-family: 'Noto sans JP', serif;
    font-weight: 500;
}

.area_ticket .way.tele .tel a{
	color: #fff;
	text-decoration: none;
}

/****　グループ観劇　****/
.area_ticket .way.group {}
.area_ticket .way.group .btn {
	position: relative;
	display: block;
	max-width: 14em;
	width: 100%;
	margin: 1em auto;
	padding: 1em 0;
	background-color: #c1181f;
	background-size: cover;
	border-radius: 2px;
	color: #fff;
	text-decoration: none;
	line-height: 1;
	font-size: 20rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .way.group .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .way.group .btn:hover {
	background-color: #f22d35;
}

.area_ticket .way.group .office {
	display: block;
}
.area_ticket .way.group .tel {
	display: inline-block;
	margin: 0 0.5em;
}
.area_ticket .way.group .tel a {
	text-decoration: none;
	color: #fff;
}
.area_ticket .way.group .time {
	display: inline-block;
	margin: 0 0.5em;
}

/*****　リセール　*****/

.area_ticket .resale p {
    text-align: left;
	font-size: 16rem;
	font-weight: 400;
		
}

.area_ticket .resale .list {
    margin: 2em auto 0;
	text-align: center;
}

.area_ticket .resale .list li {
    margin: 1em;
    display: inline-block;
}

.area_ticket .resale .list span {
    font-size: 0.9em;
	font-weight: 500;
}
.area_ticket .resale .list img {
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}


/***　会場案内　***/

.area_ticket .kaijyou {
	text-align: center;
}

.area_ticket .kaijyou .theater {
	max-width: 400px;
	margin: 1em auto 0;
    font-weight: 400;
}

.area_ticket .kaijyou .theater img {
	width: 100%;
}


.area_ticket .kaijyou .add{
	font-size: 0.9em;
	color: #fff;
    font-weight: 500;
}

.area_ticket .kaijyou .add .pk {
	margin: 0 0.5em;
}

.area_ticket .kaijyou .add a{
	color: #fff;
    text-decoration: none;
}

.area_ticket .kaijyou .contact {
    margin: 1em auto 0;
    font-weight: 500;
}

.area_ticket .kaijyou .contact dt {
    display: block;
    color: #fff;

}
.area_ticket .kaijyou .contact dt::before {
    content: "〔";

}
.area_ticket .kaijyou .contact dt::after {
    content: "〕";

}
.area_ticket .kaijyou .contact dd {
    display: inline-block;
}

.area_ticket .kaijyou .contact .tel {
    display: inline-block;
}
.area_ticket .kaijyou .contact .tel a {
    color: #fff;
    text-decoration: none;
}
.area_ticket .kaijyou .contact .office {
    margin: 0 0.5em;
}
.area_ticket .kaijyou .wrap_btn {
	margin: 1em auto;
}

.area_ticket .kaijyou .wrap_btn .btn {
	position: relative;
	display: block;
	max-width: 14em;
	width: 100%;
	margin: 1em auto;
	padding: 1em 0;
	background-color: #c1181f;
	background-size: cover;
	border-radius: 2px;
	color: #fff;
	text-decoration: none;
	line-height: 1;
	font-size: 20rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	transition: 0.5s;
}

.area_ticket .kaijyou .wrap_btn .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .kaijyou .wrap_btn .btn:hover {
	background-color: #f22d35;
}

@media screen and (max-width: 414px){

	.area_ticket .kaijyou .logo {
		max-width: 200px;
	}
    .area_ticket .kaijyou .koutsu{
        width:100%;
        max-width: auto;
    }
    .area_ticket .kaijyou .contact dt {
        display: block;
    }

    .area_ticket .kaijyou .contact dd {

    }
}

/****　お問合せ　****/
.area_ticket .way.contact {}

.area_ticket .way.contact .office {
	display: inline-block;
	margin: 0 0.5em;
}

.area_ticket .way.contact .tel {
	display: inline-block;
	margin: 0 0.5em;
}

.area_ticket .way.contact .tel a {
	text-decoration: none;
	color: #fff;
}


/****************************************

　ツアー

*****************************************/


.area_tour {}


.area_tour .sokuho {}

.area_tour .sokuho .list {
	margin: 0 auto;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
	font-size: 28rem;
	line-height: 1.5;
}

.area_tour .sokuho .list th,
.area_tour .sokuho .list td {
	padding: 0.3em;
}

.area_tour .sokuho .list th {
	text-align: right;
}

.area_tour .sokuho .list td {
	text-align: left;
}

.area_tour .sokuho .list a {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	transition: 0.5s;
}

.area_tour .sokuho .list a:hover {
	color: #c1181f;
}


.area_tour .sokuho .list .icon {
	margin-left: 0.5em;
	font-size: 0.7em;
	color: #c1181f;
}


@media screen and (max-width: 480px){
	.area_tour .sokuho .list {
		font-size: 20rem;
	}
}
@media screen and (max-width: 360px){
	.area_tour .sokuho .list th,
	.area_tour .sokuho .list td {
		display: block;
		padding: 0.3em 0 0;
		text-align: center;
	}
	.area_tour .sokuho .list td {
		margin-bottom: 1em;
		padding-left: 1em;;
	}
}

.area_tour .sokuho2 .list {
	text-align: left;
	max-width: 800px;
	margin: 2em auto 0;
    border: 3px solid #c1181f;
    border-radius: 10px;
}

.area_tour .sokuho2 .list > dt{
	padding:0.5em 0;
    border-bottom: 3px solid #c1181f;
	background: #c1181f;
	color: #fff;
    font-size: 22rem;
    font-weight: 700;
    text-align: center;
	line-height: 1.5;
}

.area_tour .sokuho2 .list > dd{
	padding: 20px 20px;
	border-top: none;	
	text-align: center;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background: rgba(0,0,0,0.7);
	font-size: 1.2em;
}
.area_tour .sokuho2 .list .day {
	display: inline-block;
	margin: 0 0.5em;
}
.area_tour .sokuho2 .list .theater {
	display: inline-block;
	margin: 0 0.5em;
}

.area_tour .sokuho2 .list .btn {
	display: block;
	margin: 0.5em auto 0;
	width: 100%;
	max-width: 200px;
	padding: 0.3em 0.3em 0.4em;
	background: #c1181f;
	border: 1px solid #fff;
	background: rgba(0,0,0,0.5);
	color: #fff;
	text-decoration: none;
	font-size: 0.9em;
	font-weight: 700;
	line-height: 1;
	transition: 0.5s;
}

.area_tour .sokuho2 .list .btn:hover {
	background: #e3232b;
}

/***************************************************

　ギャラリー

**************************************************/

.area_gallery {}
.area_gallery .sliderArea {
    max-width:600px;
    margin: 4em auto 0;
    padding: 0 25px;
}
.area_gallery .slick-slide {
    margin: 0 5px;
}
.area_gallery .slick-slide img {
width: 100%;
height: auto;
}
.area_gallery .slick-prev,
.area_gallery .slick-next {
top:-180%;
z-index: 1;
}
.area_gallery .slick-prev:before,
.area_gallery .slick-next:before {
color: #000;
}
.area_gallery .slick-slide {
transition: all ease-in-out .3s;
opacity: .2;
}
.area_gallery .slick-active {
opacity: 1;
}
.area_gallery .slick-current {
opacity: 1;
}
.area_gallery .thumb {
margin: 20px 0 0;
}
.area_gallery .thumb .slick-slide {
cursor: pointer;
}
.area_gallery .thumb .slick-slide:hover {
opacity: .7;
}


/****************************************

　レポート

*****************************************/

.area_report {}

.area_report .title {
    max-width: 900px;
    margin: 0 auto 1em;
    padding: 1em 0;
    background: rgba(0,0,0,0.7);
    border-top: 1px groove rgba(206,170,80,0.5);
    border-bottom: 1px groove rgba(206,170,80,0.5);
	color: #ceac50;

	background: #ceac50; /* fallback for old browsers */
	background: -webkit-linear-gradient(top, #836921 15%, #ceac50 40%, #f6cf70 70%, #f6cf70 100%);
	background: linear-gradient(to top, #836921 15%, #ceac50 40%, #f6cf70 70%, #f6cf70 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    font-size: 1.5em;
    font-family: 'Noto Serif JP', serif;
}

@media screen and (max-width: 420px){
    .area_report .title {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 320px){
    .area_report .title {
        font-size: 1.1em;
    }
}

.area_report .catch {
	margin: 2em auto 0.5em;
    font-size: 1.2em;
	font-family: 'Noto Serif JP', serif;
	color: #ceac50;
	
        background: #ceac50; /* fallback for old browsers */
        background: -webkit-linear-gradient(top, #836921 15%, #ceac50 40%, #f6cf70 70%, #f6cf70 100%);
        background: linear-gradient(to top, #836921 15%, #ceac50 40%, #f6cf70 70%, #f6cf70 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}

.area_report .catch::after {
  content: "";
  display: block;
  clear: both;
}

.area_report .text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
	text-shadow: 0 0 50px #000;
}

.area_report .text p {
    font-weight: 400;
}

.photo_wrap {
	display: flex;
	max-width: 900px;
	gap: 1em;
}

.area_report .photo_l {
	max-width: 900px;
	margin: 1em auto;
}

.area_report .photo_s {}

/*.area_report .photo_s {
	float: right;
	max-width: 450px;
	margin: 0;
	padding: 1em;
}*/

.area_report .photo_l img,
.area_report .photo_s img {
	display: block;
	width: 100%;
	border: 1px groove rgba(206,170,80,0.5);
}

@media screen and (max-width: 600px){

	.photo_wrap {
		display: block;
	}
	.area_report .photo_wrap .photo_s {
		max-width: 380px;
		width: 80%;
		margin: 1em auto
	}
}

/**************************************************

　ムービー

**************************************************/

.area_movie {}

.area_movie .list {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto 40px;
    padding: 10px;
}


.area_movie .list.center {
    justify-content: center;
}

.area_movie .item{
    width: 47%;
    justify-content: center;
    margin-bottom: 4em;
    margin: 0 10px 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_movie .name {
    margin-bottom: 0.5em;
    padding: 0.3em 1em;
    font-size: 18rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.area_movie .name .pk {
	margin: 0 0.5em;
}

.area_movie .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.area_movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px){
    .area_movie .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_movie .item{
        width: 100%;
        margin: 0 auto 2em;
    }
	.area_movie .name {
		margin-bottom: 0;
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_movie .name {
        font-size: 16rem;
		font-weight: 700;

    }
    .area_movie .list {
        margin-bottom: 10px;
    } 
}

