@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
金　#e2cb73;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadein2 {
/*  opacity : 0;*/
  transform: translateY(20px);
  transition: all 1s;
}


@media (orientation: portrait) { /**　画面が縦長の時　**/
}

/********リンク********/
a{
    color: #e2cb73;
    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:#e2cb73;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}

.anchor {
	display: block;
	margin-top: -3em;
	padding-top: 3em;
}

/********改行********/

.res {
	display: none;
}

.res2 {
	display: none;
}

.res3 {
	display: none;
}

.res4 {
	display: none;
}


@media screen and (max-width: 768px){

	.res {
		display: inline;
	}
}

@media screen and (max-width: 414px){

	.res2 {
		display: inline;
	}
}

@media screen and (max-width: 375px){

	.res3 {
		display: inline;
	}
}

@media screen and (max-width: 320px){

	.res4 {
		display: inline;
	}
}



html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
} 

body{
	margin: 0;
	padding: 0;
	font-size: 16em;
	line-height:2;
	color:#fff;
	font-family: 'Noto Serif JP', serif; 
    font-weight: 400;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    
	background-color: #000;

}

body:before{}

@media (orientation: portrait) { /**　画面が縦長の時　**/
    body {}    
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}


@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}



/******************************
　メニュー
******************************/

/*モーダルメニュー*/
.menu-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 1em;
    height: 2.5em;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
}

.menu-btn span {
    color: #e2cb73;
    line-height: 1;

}
.menu-btn span .lbl {
    display: block;
    font-weight: 900;
    font-size: 0.7em;

}

.menu-btn > span:before {
    font-family: "Font Awesome 6 Free";	
	content: "\f0c9";
	font-size: 2.5em;
    font-weight: 900;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu-btn span {
    color: #fff;
}
.open .menu-btn span .lbl {
    display: none;
}

.open .menu-btn > span:before {
    font-family: "Font Awesome 6 Free";
	content: "\f00d";
	font-size: 3em;
}


@media screen and (max-width: 414px){
.menu-btn {
    left: 5px;    
    line-height: 1.6;
    }
}

/*モーダルメニューここまで*/

/*メニューのスタイル*/
nav {
    position: fixed;
    display: table;
	z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
}

nav  ul {
    display: table-cell;
	padding: 2em 0;
    vertical-align: middle;
}

nav li {
    max-width: 600px;
    line-height: 1.3;
    margin: 0 auto 1em;
    text-align: center;
	font-size: 30rem;
}


nav li .s {
	font-size: 14rem;
}

nav li a {
    display: block;
/*	font-size: 2.4rem;*/
    color: #e2cb73;
	text-decoration: none;
    transition: 0.2s;
}

nav li a:hover {
   color: #fff;
}

nav li .fab {
	padding-left: 0.2em;
}

nav li a .en {
	font-family: 'Noto Serif JP', serif;
	color: #e2cb73;
	background: -webkit-linear-gradient(90deg, #403404, #ffe378, #ffe378, #ecda80);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
} 

nav li .en .amp {
	margin: 0 0.2em;
}

nav li a .jp {
	display: block;
    letter-spacing: 0;
    font-size: 0.4em;
    font-family: 'Noto Sans JP', sans-serif; 
    font-weight: 500;
    color: #fff;
} 

/* 開閉用ボタンがクリックされた時のスタイル */
.open nav  {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}
/*メニューのスタイルここまで*/

 
@media only screen and (max-width: 767px){

	/*モーダルメニュー*/
	.menu-btn {
		right: 5px;
		top: 5px;
	}

	nav {
		padding-top: 40px;
	}
	
	nav li {
/*		height: 40px;*/
		font-size: 28rem;
	}
}

@media only screen and (max-width: 767px){
	nav li {
		margin: 0 auto 0.5em;
	}
}


@media only screen and (max-width: 500px){
/*    nav li {
        font-size: 20rem;
    }*/
}

@media screen and (orientation: landscape) and (max-height: 640px) { /*画面が横長で高さが500以下の時*/
    nav {

    }

    nav  ul {
        display: block;
        height: 100%;
        overflow-scrolling:touch;
        overflow-y: scroll;
        padding: 2em 0 4em;
    }

    nav  ul li:not(:last-of-type) {
        margin: 0 auto 0.5em;
    }



    nav  ul li:last-of-type {
        margin: 0 auto 2em;
    }
}  


/**********************
　フッター
***********************/

.foot_link {
	text-align: center;
    margin: 3em auto;
    padding: 0 1em;
	line-height: 1.5;
	font-feature-settings: "palt";
	color: #fff;
}

.foot_link .item {
    display: inline-block;
    font-weight: 700;
}

.foot_link a {
    text-decoration: none;
	color: #fff;
}

footer{
	width: 100%;
	margin: 10px auto 0;
    padding-bottom: 0;
	text-align: center;
	font-size: 16rem;
	bottom: 0;
}

.footer .crea {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
.footer .crea img {
    width: 100%;
}

@media screen and (max-width: 767px){
    .footer .crea {
        width: 60%;
    }
}

.footer .copy {
	display: block;
	color: #fff;
    font-weight: 500;
}

.footer .copy .icon {
	display: inline-block;
    width: 90px;
	margin: 0 0.5em;
	vertical-align: top;
}
.footer .copy .icon img {
	width: 100%;
}


footer .sns_link {
    margin: 30px auto;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em;
    text-align: center;
    vertical-align: middle;
}

footer .sns_link li.twi {
    width: 34px;
}


footer .sns_link li img {
    display: block;
	width: 100%;
}

.policy_link {
	display: block;
    margin-bottom: 1em;
	font-weight: 400;
}

.policy_link .link a {
    display: inline-block;
	margin: 0 1em;
	text-decoration: none;
	color: #fff;
	font-size: 14rem;
	font-weight: 500;
}

.policy_link .link a:hover {
	text-decoration: underline;
}

.policy_link .link:not(:last-of-type)::after {
	content: "|";
	padding: 0 0.5em;
	color: #fff;
}

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #dec56e;
    text-shadow: 0 0 20px #000;
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}
@media screen and (max-width: 414px){
}




/**********************
　構造
***********************/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;

	opacity: 0;
	animation-name:appeare;
	animation-duration:3s;
	animation-timing-function:ease;
	animation-iteration-count:1;
	animation-fill-mode:forwards;
}

@keyframes appeare {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sec {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto 15em;
	padding: 0 20px;
}


/**********************
　見出し
***********************/

.heading_sec {
    text-align: center;
    font-size: 50rem;
    margin: 0 auto 1.5em;
	line-height: 1;
}

.heading_sec .en {
    font-family: 'Noto Serif JP', serif;
	color: #e2cb73;
	background: -webkit-linear-gradient(90deg, #403404, #ffe378, #ffe378, #ecda80);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.heading_sec .en .amp {
	margin: 0 0.2em;
}

.heading_sec .jp {
    display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
    font-size: 0.35em;
    margin: 0.5em auto 0;
	color: #fff;
}

@media screen and (max-width: 550px){
    .heading_sec {
        font-size: 40rem;
    }
}

@media screen and (max-width: 490px){
    .heading_sec {
        font-size: 30rem;
    }
}


@media screen and (max-width: 365px){
    .heading_sec {
        font-size: 28rem;
    } 
}

@media screen and (max-width: 320px){
/*    .heading_sec {
        font-size: 40rem;
    } */
}

@media (orientation: portrait) { /**　画面が縦長の時　**/

    .heading_sec.first {
        margin: 0em auto 0;
    }
}




/**********************
　トップページ
***********************/


/****　メインビジュアル　****/

.area_hero {
    margin: 1em auto 10em;
}

.area_hero .visual {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 1em auto 0;
}

.area_hero .visual img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 980px){
    .area_hero .visual{
		margin-top: 70px;
    }
}
@media screen and (max-width: 900px){
    .area_hero {
		width: 95%;
    }
}

/**************************************
　イントロ
**************************************/

.area_intro {}

.area_intro .box{}

.area_intro .text {
	margin: 3em auto;
}

.area_intro p {
	line-height: 3em;
    font-size: 18rem;
    font-weight:500;
    text-align: center;
}

.area_intro .sign {
	font-size: 20rem;
}

.area_intro .sign .work {
	margin: 0 0.5em;
	font-size: 0.8em;
}

.area_intro .sign .name {
	margin: 0 0.5em;
}


@media screen and (max-width: 330px){
	.area_intro p {
		font-size: 16rem;
	}
}



/**************************************
　ストーリー
**************************************/

.area_story {}

.area_story .box{}

.area_story .lead {
	margin: 3em auto 0;
}

.area_story .lead p {
	margin-bottom: 3em;
	line-height: 2;
    font-size: 18rem;
    font-weight:500;
    text-align: center;
}

.area_story .list {
	margin-top: 10em;
}
.area_story .list .yaku {
	margin-top: 2em;
	font-weight: 900;
	font-style: normal;
	font-size: 1.5em;
	color: #e2cb73;
	background: -webkit-linear-gradient(90deg, #e2cb73, #e2cb73, #e2cb73, #ecda80);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.area_story .list .cast_box {
    border: 1px dotted #e2cb73;
    padding: 2em;
}

.area_story .list .prof{
    text-align: left;
}


.area_story .list .cast .name{
}

.area_story .msg {
	margin: 2em auto 0;
	font-size: 2.2em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	letter-spacing: 0.1em;
    color: #e2cb73;
    background: -webkit-linear-gradient(90deg, #e2cb73, #e2cb73, #e2cb73, #ecda80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	text-indent: 0.5em;
}


@media screen and (max-width: 560px){
}




/**************************************
　スタッフ
**************************************/

.area_staff {}

.area_staff .box {
    max-width: 900px;
    margin: 0 auto;
}

.area_staff .list {
    width: 100%;
    margin: 1.5em auto 2em;
    font-size: 18rem;
}

.area_staff .list.s {
    font-size: 16.5rem;
}

.area_staff .list::after{
  content: "";
  display: block;
  clear: both;
}

.area_staff .list .work {
    width: 50%;
    clear: both;
    float: left;
    text-align: right;
    color: #e2cb73;
    font-weight: 700;
}


.area_staff .list .work::after {
    content: "：";
}


.area_staff .list .name {
    width: 50%;
    float: left;
    text-align: left;
    font-weight: 500;
}


@media screen and (max-width: 660px){

    .area_staff .list .work {
		display: block;
        width: 100%;
        float: none;
        text-align: center;
		font-size: 0.9em;
		line-height: 1.3;
    }


    .area_staff .list .work::after {
        content: none;
    }

    .area_staff .list .name {
		display: block;
        width: 100%;
        float: none;
        margin: 0 auto 1.5em;
        text-align: center;
		line-height: 1.3;
    }
}


/**************************************
　ミュージシャン
**************************************/

.area_music {}

.area_music .msg {
	margin: 2em auto;
	font-size: 30rem;
	color: rgba(255,255,255,0.9);
}

.area_music {
	text-align: center;
}

.area_music .list_part {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto;
}

.area_music .list_part > dt {
	font-size: 38rem;
	font-weight: 700;
	color: #e2cb73;
}

.area_music .list_part > dd {
	margin: 0 auto 2em;
	padding: 2em 2em 0;
	border: 2px solid #e2cb73;
}

.area_music .prof {
	margin: 0 auto;
	padding:2em;
}

.area_music .prof:not(:last-of-type) {
	border-bottom: 1px dotted #e2cb73;
}

.area_music .prof::after{
  content: "";
  display: block;
  clear: both;
}

.area_music .prof .photo {
	float: left;
	max-width: 300px;
	padding: 0 2em 1em 0;
}
.area_music .prof .photo {
	max-width: 300px;
}
.area_music .prof .photo.yoko {
	max-width: 450px;
}
.area_music .prof .photo img {
	width: 100%;
}

.area_music .prof .name {
	margin: 0 auto;
	padding: 1em 0;
	font-size: 20rem;
	font-weight: bold;
	line-height: 1em;
	text-align: left;
}

.area_music .prof .name .en {
	margin: 0 1em;
	color: #e2cb73;
	font-size: 0.7em;
	font-weight: 500;
}

.area_music .prof .gakki {
	display: none;
	line-height: 3em;
	font-size:0.9em;
}

.area_music .prof .history {
	margin-top: 1em;
	text-align: left;
}

@media screen and (max-width: 768px){

	.area_music .prof .photo {
		max-width: 200px;
	}
	.area_music .prof .photo.yoko {
		max-width: 350px;
	}

}

@media screen and (max-width: 680px){
    .area_music .list_part > dt {
        font-size: 24rem;
    }
	.area_music .prof {
	}

	.area_music .prof .photo {
		float: none;
		margin: 0 auto;
		padding: 1em;
	}
	.area_music .prof .name {
		font-weight: 500;
		font-size: 22rem;
		text-align: center;
	}

	.area_music .prof .name .en {
		display: block;
		margin: 0.5em auto 0;
	}
}

@media screen and (max-width: 450px){
    .area_music .list_part > dt {
        font-size: 22rem;
    }
	.area_music .list_part > dd {
		padding: 1.5em 1em 0;
	}

	.area_music .prof {
		padding: 1em 1em 2em;
	}
}

/**************************************
　チケット
**************************************/


.area_ticket {}

/***　速報　***/
.area_ticket .sokuho {
    font-size: 36rem;
    line-height: 1.5;
}

.area_ticket .sokuho .theater {
    margin-top: 0.5em;
}
.area_ticket .sokuho .theater a  {
    color: #fff;
    transition: 0.5s;
}
.area_ticket .sokuho .theater a:hover  {
    color: #e2cb73;
}
.area_ticket .sokuho .theater .icon {
    margin-left: 0.3em;
    font-size: 0.6em;
    vertical-align: super;
    color: #e2cb73;
}

@media screen and (max-width: 600px){
    .area_ticket .sokuho {
        font-size: 30rem;
    }
}

@media screen and (max-width: 380px){
    .area_ticket .sokuho {
        font-size: 26rem;
    }
}

/***　本報　***/

.area_ticket .box_area {
	margin-bottom: 5em;
}

.area_ticket .title_area {
	margin: 0 auto 0.5em;
	font-size: 34rem;
	color: #e2cb73;
}

.area_ticket .msg {
	margin: 2em auto;
	font-size: 30rem;
	color: rgba(255,255,255,0.9);
}

.area_ticket .stage_data {
	max-width: 900px;
	margin: 0 auto;
}

.area_ticket .tokyo .stage_data .sch {
	max-width: 735px;
	width: 100%;
	margin: 0 auto;
}
.area_ticket .stage_data .sch img {
	width: 100%;
}


.area_ticket .tokyo .stage_data .hoshitori {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}
.area_ticket .tokyo .stage_data .hoshitori img {
	width: 100%;
}

.area_ticket .stage_data .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 300px;
	margin: 1em auto;
	padding: 0.8em 1em;
	background: rgba(226,203,115,0.8);
	border-radius: 3px;
	color: #000;
	font-size: 20rem;
	line-height: 1;
	font-weight: 900;
	text-decoration: none;
	transition: 0.5s;
}

.area_ticket .stage_data .btn .icon {
	margin-right: 0.3em;
}

.area_ticket .stage_data .btn2 {
	display: block;
	margin: 1em auto;
	color: rgba(226,203,115,0.8);
	font-size: 18rem;
	line-height: 1;
	font-weight: 500;
	text-decoration: none;
	transition: 0.5s;
}
.area_ticket .stage_data .btn2:hover {
	color: #fff;
}
.area_ticket .stage_data .btn2 .icon {
	margin-right: 0.3em;
}

.area_ticket .stage_data .btn:hover {
	background: rgba(226,203,115,1);	
}

.area_ticket .stage_data .list_price {
	max-width: 900px;
	margin: 2em auto 0;
	border: 2px solid #e2cb73;
	line-height: 1.5;

}
.area_ticket .stage_data .list_price th,
.area_ticket .stage_data .list_price td {
	padding: 0.5em;
	border: 1px solid #e2cb73;
}
.area_ticket .stage_data .list_price th {
	padding: 0.5em ;
	background:  rgba(255,255,255,0.1);
	font-size: 18rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}
.area_ticket .stage_data .list_price td {
	height: 4em;
	font-size: 20rem;
}


.area_ticket .stage_data .list_price .price {
	display: inline-block;
}
.area_ticket .stage_data .list_price .note {
	display: inline-block;
	font-size: 0.8em;
}


@media screen and (max-width: 400px){
	.area_ticket .stage_data .list_price td {
		font-size: 18rem;
	}
}

/*ベース*/
.area_ticket .stage_data .list_price .toggle {
	display: none;
}
.area_ticket .stage_data .list_price .Label {		/*タイトル*/
	display: block;
	max-width: 10em;
	margin: 0.5em auto 0;
	padding: 0.2em 1em;
	background: rgba(226,203,115,0.8);
	line-height: 1.5;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 900;
	font-size: 0.7em;
}
.area_ticket .stage_data .list_price .Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.area_ticket .stage_data .list_price .Label,
.area_ticket .stage_data .list_price .about {
	-webkit-backface-visibility: hidden;	
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.area_ticket .stage_data .list_price .about {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.area_ticket .stage_data .list_price .toggle:checked + .Label + .about {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}

.area_ticket .stage_data .list_price .toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

.area_ticket .stage_data .list_price .u25 {
	margin: 0.5em auto 0;
	text-align: left;
}
.area_ticket .stage_data .list_price .u25 .title {
	margin: 0 auto 0.5em;
	color: #e2cb73;
	text-align: center;
	font-weight: 700;
}

.area_ticket .stage_data .list_price .u25 .text {
	padding: 2em;
	background:  rgba(66,74,154,0.1);
	border-radius: 5px;
	font-size: 0.9em;
	color: #fff;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.8;
}

.area_ticket .stage_data .list_price .u25 .caution {
	margin-top: 0;
	padding: 1em 1em 0;
}

.area_ticket .stage_data .list_price .u25 .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.8em;
}


.area_ticket .stage_data .caution {
	margin: 2em auto 0;
	padding: 0 1em;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 0.9em;
}
.area_ticket .stage_data .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

@media screen and (max-width: 414px){

	.area_ticket .stage_data .day {
		font-size: 26rem;
		letter-spacing: 0.1em;
	}
	
	.area_ticket .stage_data .info_btn {
		background: rgba(0,0,0,0.5);
		border: 2px solid #fff;
		font-size: 18rem;
		font-weight: 500;
	}
}


.area_ticket .way {
	text-align: left;
	margin: 6em auto 0;
    border: 2px solid #e2cb73;
}

.area_ticket .way > dt{
	padding:0.5em 1em;
	background: rgba(226,203,115,0.8);
	color: #000;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
	font-weight: 900;
}

.area_ticket .way > dd{
	padding: 20px 20px;
	border-top: none;	
	text-align: center;
    background: rgba(0,0,0,0.5);
}

.area_ticket .way > dd .caution {
    padding: 1em 0.5em 0;
    border-top: 1px solid #e2cb73;
    text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
    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: 414px){
	.area_ticket .way > dt{
		font-size: 20rem;
	}
}

@media screen and (max-width: 365px){
	.area_ticket .way > dt{
		font-size: 18rem;
	}

	.area_ticket .way > dd .caution {
		text-align: left;
	}

	.area_ticket .way > dd .caution li {
		margin-bottom: 0.5em;
		padding-left: 1em;
		text-indent: -1em;
		line-height: 1.5;
	}
	.area_ticket .way > dd .caution li .pk {
		display: inline;
	}
}

.area_ticket .way a {
    color: #fff;

}

.area_ticket .s {
	font-size: 0.9em;
    font-weight: 900
}

.area_ticket .way.toho .pc {
	margin-top: 0.5em;
	position: relative;
	font-size: 30rem;
	font-weight:  bold;
	line-height: 40px;
    font-family: 'Noto serif JP', serif;
    font-weight: 700;
}

.area_ticket .way.toho .pc a{
	text-decoration: none;
}

.area_ticket .tel {
	display: block;
	position: relative;
	font-size: 24rem;
	font-weight:  bold;
	line-height: 40px;
    font-family: 'Noto serif JP', serif;
    font-weight: 700;
}

.area_ticket .way .senkou {
	margin: 3em auto 0;
}

.area_ticket .way .senkou dt {
	background: rgba(226,203,115,0.8);
	padding: 0.1em 0.5em;
	color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}
.area_ticket .way .senkou dd {
	margin-bottom: 1em;
	padding: 0.5em;
	font-size: 20rem;
}


.area_ticket .way .kaishi {
	display: inline-block;
	margin: 0.5em auto;
	padding: 0 1em;
    border-top: 1px solid #e2cb73;
    border-bottom: 1px solid #e2cb73;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	line-height: 1.5;
	font-size: 17rem;
}

.area_ticket .way .tel a{
	color: #fff;
	text-decoration: none;
}
.area_ticket .way .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #fff;
}
.area_ticket .way.toho .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #fff;
}

.area_ticket .way .caution {
	margin-top: 1em;
    text-align: center;
}


@media screen and (max-width: 413px){
    .area_ticket .senkou dd {
        font-size: 18rem;
    }
}

@media screen and (max-width: 364px){
    .area_ticket .senkou dd {
        font-size: 16rem;
    }
}

@media screen and (max-width: 767px){

	.area_ticket .way {
		margin: 20px auto 0;
	}
}


@media screen and (max-width: 414px){
	.area_ticket {
	}

    .area_ticket .way.toho .pc {
        font-size: 24rem;
        line-height: 1.5;
    }

    .area_ticket .way .kaishi {
        font-size: 18rem;
    }

    .area_ticket .way.toho .tel {
        font-size: 24rem;

    }
}
	
@media screen and (max-width: 375px){

	.area_ticket .way > dd{
		padding: 1em;
	}

    .area_ticket .way.toho .pc {
        font-size: 18rem;
    }    
}
@media screen and (max-width: 374px){

	.area_ticket .area_btn .btn {
		padding: 0.2em 1em;
	}
}

/*****　プレイガイド　*****/

.area_ticket .way .playguide {
    margin: 1em auto 0;
}

.area_ticket .way .playguide dt {
    margin-bottom: 0.5em;
    padding: 0 0.5em;
    background: rgba(226,203,115,0.8);
	color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.area_ticket .way .playguide dd {
	text-align: left;
    font-size: 20rem;
	margin-bottom: 1em;
	padding: 1em 0;
    word-break: break-all;
    text-align: center;
    line-height: 1.5;
}

.area_ticket .way .playguide a {
	text-decoration: none;
}
.area_ticket .way .playguide .pc {
    margin-bottom: 0.5em;
    font-family: 'Noto serif JP', sans-serif;
    font-weight: 900;
}

.area_ticket .way .playguide .pc .note {
	display: inline-block;
	font-size: 0.8em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.area_ticket .way .playguide .tel {
    display: inline-block;
    margin-bottom: 0.5em;
    font-family: 'Noto sans JP', serif; 
    font-weight: 700;
}
.area_ticket .way .playguide .time {
    display: inline-block;
    margin-left: 0.5em;
    font-family: 'Noto sans JP', serif; 
    font-weight: 500;
    font-size: 0.8em;
}
.area_ticket .way .playguide .first_day {
    width: 90%;
    margin: 0 auto;
    padding: 0.5em;
    border: 1px groove #000;
}
.area_ticket .way .playguide .first_day .lbl {
    display: inline-block;
    margin-right: 1em;
    color: #000;
}
.area_ticket .way .playguide .first_day .f_caution {
    font-size: 0.8em;
}
.area_ticket .way .playguide .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #fff;
}
.area_ticket .way .playguide .code {
    font-size: 0.9em;
}


@media screen and (max-width: 480px){

    .area_ticket .way .playguide dd {
        font-size: 18rem;
    }
    .area_ticket .way .playguide .time {
        font-size: 0.8em;
    }    
}
@media screen and (max-width: 450px){
    .area_ticket .way .first_day .lbl {
        display: block;
    }
}

@media screen and (max-width: 365px){

    .area_ticket .way .playguide dd {
        font-size: 16rem;
		font-weight: 500;
    }
}

/*****　グループ観劇　*****/

.area_ticket .way .group .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 300px;
	margin: 0.5em auto;
	padding: 0.8em 1em;
	background: rgba(226,203,115,0.8);
	border-radius: 3px;
	color: #000;
	font-size: 20rem;
	line-height: 1;
	font-weight: 900;
	text-decoration: none;
}

.area_ticket .way .group .btn .icon {
	margin-right: 0.3em;
}

.area_ticket .way .group .office {
	display: block;
} 

/*****　リセール　*****/

.area_ticket .resale p {
	padding: 0 1em;
    text-align: left;
	font-size: 16rem;
}

.area_ticket .resale .list {
    margin-top: 2em;
}

.area_ticket .resale .list li {
    margin: 1em;
    display: inline-block;
}

.area_ticket .resale .list span {
    font-size: 0.9em;
}
.area_ticket .resale .list img {
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}
.area_ticket .resale .list .day {
    display: block;
    margin-bottom: 0.3em;
    color: #e2cb73;
}

.area_ticket .resale .list a {
    text-decoration: none;
}

/*****　リセール　*****/

.area_ticket .way .resale {	
	font-weight: 500;
}

.area_ticket .way .resale p {
    text-align: left;
	font-size: 16rem;		
	font-weight: 500;
}

.area_ticket .way .resale .list {
    margin-top: 1em;
}

.area_ticket .way .resale .list li {
    margin: 1em;
    display: inline-block;
}

.area_ticket .way .resale .list span {
    font-size: 0.9em;
}

.area_ticket .way .resale .list img {
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}

.area_ticket .way .resale .about {
/*	color: #091d7e;*/
}

/***　会場案内　***/

.area_ticket .kaijyou {
	padding-top: 40px;
	text-align: center;
}

.area_ticket .kaijyou .map {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.area_ticket .kaijyou .map img {
	width: 100%;
}

.area_ticket .kaijyou .logo {
	max-width: 300px;
	margin: 1em auto 0;
    font-weight: 400;
}

.area_ticket .kaijyou .logo img {
	width: 100%;
}


.area_ticket .kaijyou .add{
	font-size: 0.9em;
	color: #fff;
    font-weight: 500;
}
.area_ticket .kaijyou .add a{
	color: #fff;
    text-decoration: none;
}

.area_ticket .kaijyou .koutsu{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width:100%;
    max-width: 24em;
	margin: 1em auto 0;
    padding: 1em;
	text-align: left;
	font-size: 0.9em;
    border-top: 1px solid #e2cb73;
    border-bottom: 1px solid #e2cb73;
    font-weight: 500;
}

.area_ticket .kaijyou .koutsu li{
	padding-left: 1.3em;
	text-indent: -1.3em;
}
.area_ticket .kaijyou .koutsu li::before {
	content: "・";
	margin-right: 0.5em;
	color: #e2cb73;
}

.area_ticket .kaijyou .contact {
    margin: 1em auto 0;
    font-weight: 500;
}

.area_ticket .kaijyou .contact dt {
    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;
	color: #fff;
}
.area_ticket .kaijyou .contact .tel a {
    color: #fff;
    text-decoration: none;
}
.area_ticket .kaijyou .contact .office {
    margin: 0 0.5em;
}

.area_ticket .kaijyou .btn_seat {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 300px;
	margin: 1em auto;
	padding: 0.8em 1em;
	background: rgba(226,203,115,0.8);
	border-radius: 3px;
	color: #000;
	font-size: 20rem;
	line-height: 1;
	font-weight: 900;
	text-decoration: none;
	transition: 0.5s;
}

.area_ticket .kaijyou .btn_seat .icon {
	margin-right: 0.3em;
}

.area_ticket .kaijyou .btn_seat:hover {
	background: rgba(226,203,115,1);	
}


@media screen and (max-width: 414px){

	.area_ticket .kaijyou .logo {
		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 .box_osaka {
	padding: 3em 1em 1em;
    border: 2px solid #e2cb73;
}

.area_ticket .osaka .stage_data .sch {
	max-width: 500px;
	width: 100%;
	margin: 0 auto 1em;
}

.area_ticket .osaka .stage_data .hoshitori {
	max-width: 230px;
	width: 100%;
	margin: 0 auto 1em;
}

.area_ticket .box_osaka .link {
	margin: 2em auto 1em;
	padding: 1em;
	background: rgba(255,255,255,0.1);
	font-size: 20rem;
}

.area_ticket .box_osaka .link .lbl {
	display: block;
}

.area_ticket .box_osaka .link .url {
	display: block;
	word-break: break-all;
}


.area_ticket .box_osaka .contact {
    margin: 1em auto 0;
    font-weight: 500;
}

.area_ticket .box_osaka .contact dt {
    color: #fff;

}
.area_ticket .box_osaka .contact dt::before {
    content: "〔";

}
.area_ticket .box_osaka .contact dt::after {
    content: "〕";

}
.area_ticket .box_osaka .contact dd {
    display: inline-block;
}


.area_ticket .box_osaka .contact .tel {
    display: inline-block;
	color: #fff;
}
.area_ticket .box_osaka .contact .tel a {
    color: #fff;
    text-decoration: none;
}

.area_ticket .box_osaka .contact .tel .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #fff;
}

.area_ticket .box_osaka .contact .office {
    margin: 0 0.5em;
}



@media screen and (max-width: 900px) {

	.area_ticket .osaka .stage_data .sch {
		width: 70%;
	}

	.area_ticket .osaka .stage_data .hoshitori {
		width: 40%;
	}
}

@media screen and (max-width: 414px){

    .area_ticket .box_osaka .contact dt {
        display: block;
    }

}

@media screen and (max-width: 400px) {

	.area_ticket .osaka .stage_data .sch {
		width: 90%;
	}

	.area_ticket .osaka .stage_data .hoshitori {
		width: 50%;
	}
	
	.area_ticket .box_osaka .link {
		font-size: 18rem;
	}
}

/***************************************************

　サポート

**************************************************/

.area_support {}

.area_support.sec {
	margin: 0 auto 5em;
}

.area_support .box {
    max-width: 900px;
    margin: 0 auto;
}

.area_support .logo {
    width: 100%;
    margin: 0 auto;
    font-size: 18rem;
}

.area_support .logo .work {
    color: #dec56e;
    font-weight: 700;
}

.area_support .logo .work {
	line-height: 18px;
}

.area_support .logo .work::after {
    content: "：";
}


.area_support .logo .name {
    font-weight: 500;
}

.area_support .logo .name {
	display: inline-block;
    max-width: 180px;
	width: 100%;
	margin: 0 auto 0 0;
	line-height: 18px;

}

.area_support .logo .name img {
    display: block;
	width: 100%;

}

@media screen and (max-width: 660px){

    .area_support .logo .work {
		display: block;
        width: 100%;
        float: none;
        text-align: center;
		font-size: 0.9em;
		line-height: 1.3;
    }


    .area_support .logo .work::after {
        content: none;
    }

    .area_support .logo .name {
		display: block;
        width: 100%;
        float: none;
        margin: 0 auto 1.5em;
        text-align: center;
		line-height: 1.3;
    }
	
	.area_support .logo .work {
		line-height: inherit;
	}

	.area_support .logo .name {
		max-width: 140px;
        margin: 0 auto 1.5em;
		line-height: inherit;
	}

}


