@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
***/

/***色
黒　#231815; rgba(35,24,21,1);
***/


/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********リンク********/
a {
    color: #231815;
    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;
}

.anchor {
	display: block;
	margin-top: -100px;
	padding-top: 100px;
}

html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
} 

body{
	margin: 0;
	padding: 0;
/*	border-top: 5px solid #231815;*/
	font-size: 18em;
	line-height:2;
	color: #231815;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;	
	background-color: #fff;
}

body:before{
	content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
	background-image: url(../images/bg_pc.jpg);
	background-position:center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: cover;
	background-color: #f2ede8;
}


@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}
}


@media screen and (orientation: portrait) and (max-width: 740px) { /**　画面が縦長の時　**/
	body:before {
		background-image: url(../images/bg_smp.jpg);
		background-size: auto;
		background-position: top;
	}
}

/****************************************

　構造

*****************************************/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;

}

main{
/*	padding: 0 1em;*/
}

.sec {
	max-width: 900px;
	margin: 0 auto;
}


/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/


#pagetop{
    position: fixed;
    right: 15px;
    bottom: 30px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: rgba(35,24,21,0.1);
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f139";
	font-weight: 900;
	font-size: 4em;
}


footer{
	width: 100%;
	margin: 10em auto 0;
    padding-bottom: 1em;
	text-align: center;
	font-size: 16rem;
	bottom: 0;
}

footer .sponsor {
	width: 90%;
	max-width: 600px;
	margin: 0 auto;
}

footer .sponsor img {
	display: block;
	width: 100%;}

footer .copy {
	display: block;
    color: #1e2432;
}

footer .copy li {
	display: inline-block;
	margin: 0 1em;
}

footer .sns_link {
    padding-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em;
    text-align: center;
    vertical-align: top;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 35px;
}

footer .policy_link {
	display: block;
    margin-bottom: 1em;
}

footer .policy_link .link a {
    display: inline-block;
	margin: 0 1em;
	text-decoration: none;
	color: #231815;
	font-size: 14rem;
	font-weight: 500;
	transition: 0.5s;
}

footer .policy_link .link a:hover {
	color: #231815;
}


/****************************************

　ナビ

*****************************************/

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background: #231815;
	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;
	width:100%;
	padding: 0.5em 0.5em;
    background: #231815;
    font-family: 'Noto Sans JP', sans-serif;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi ul {
    margin: 0 1em;
    padding: 0.5em 0; 
    line-height: 1.3;
    vertical-align: top;
}

#g-navi ul .res_nav {
	display: none;
}

#g-navi ul li {
    display: inline-block;
    margin: 0 0.5em;
    padding: 5px 0 5px; 
    font-size: 22rem;
    line-height: 1.3;
    vertical-align: top;
}

#g-navi ul li::after {
    content: "｜";
    padding-left: 1em;
    color: rgba(255,255,255,0.5);
}

#g-navi ul li:first-of-type::before {
    content: "｜";
    padding-right: 1em;
    color: rgba(255,255,255,0.5);
}
#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
}

#g-navi ul li .jp {
	color: #fff;
	font-weight: 400;
	transition: 0.5s;
}

#g-navi ul li:hover .jp {
}

/*@media screen and (max-width: 1800px){
	#g-navi ul li {
        margin: 0 0.8em;
		font-size: 24rem;
	}
}*/

@media screen and (max-width: 900px){

	#g-navi ul li {
		font-size: 20rem;
	}
}

@media screen and (max-width: 520px){

    #g-navi ul li {
/*        display: inline-block;
        margin: 0 0.5em;
        padding: 5px 0 5px; 
        font-size: 22rem;
        line-height: 1.3;
        vertical-align: top;*/
    }

    #g-navi ul li::after {
        content: none;
        padding-left: 0.5em;
    }

    #g-navi ul li:first-of-type::before {
        content: none;
        padding-right: 0.5em;
    }
}


/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    left: 0;
	z-index: -1;
    /*高さと幅*/  
/*	width:100%;
	height: 100vh;*/
    /*天地中央＆テキスト中央揃え*/  
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;

}

#header.dnone #g-navi .logo {
	display: none;
}

#header.dnone #g-navi ul .res_nav {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background:rgba(255,255,255,0.95);
	width:100%;
	height: 100vh;
}

#header.dnone.panelactive #g-navi ul li {
	display:block;/*flexの横並びをblockにして縦並びに*/

	font-size: 30rem;
}

#header.dnone.panelactive #g-navi ul li::after {
    content: none;
    padding-left: 0;
}

#header.dnone.panelactive #g-navi ul li:first-of-type::before {
    content: none;
    padding-right: 0;
}

#header.dnone.panelactive #g-navi ul li:not(:last-of-type) {
    border-bottom: 1px solid rgba(35,24,21,0.5);
	padding:0.5em 2em;
}

/*リストの形状*/

#header.dnone.panelactive #g-navi li a .jp{
    color: #231815;
}

@media screen and (max-height: 800px) { /*画面の高さが800以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.5em 0;
		font-size: 28rem;
	}
}  
@media screen and (max-height: 520px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 24rem;
	}
} 
@media screen and (max-height: 400px) { /*画面の高さが360以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.3em 0; 
		font-size: 20rem;
	}
}  


/****************************************

　ヘッダー

*****************************************/

/*.area_info {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 800px;
	margin: 0 auto;
	padding: 2em 1em;
}

.area_info .btn {
	display: block;
	text-decoration: none;
}
.area_info .btn img {
	display: block;
	width: 100%;
}*/

.area_ban {
    margin: 2em auto 0;
    padding: 0 1em;
}

.area_ban .btn_sc {
    display: block;
    max-width: 840px;
    margin: 0 auto 2em;
    padding: 0.5em;
    border: 2px solid #231815;
    background: rgba(255,255,255,0.9);
    border-radius: 5px;
    font-size: 22rem;
    text-decoration: none;
    color: #231815;
    line-height: 1.5;
    transition: 0.5s;
}

.area_ban .btn_sc:hover {
    background: #231815;
    color: #fff;
}

.area_ban .btn_sc .lbl {
    display: inline-block;
    margin-left: 0.5em;
    padding: 0.5em 1em;
	background: #c10536;
    border-radius: 3px;
    color: #fff;
    font-size: 0.8em;
    line-height: 1.1;
}

@media screen and (max-width: 500px){
    .area_ban .btn_sc {
        font-size: 20rem;
    }
}

@media screen and (max-width: 380px){
    .area_ban .btn_sc {
        font-size: 18rem;
    }
}

@media screen and (max-width: 320px){

    .area_ban .btn_sc .lbl {
        display: block;
        margin: 0.5em 0 0;
    }
}

/**********************************************************************

　モーダルウィンドウ

**********************************************************************/

.modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 800px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background-color: rgba(255,255,255,0.9);
	border-radius: 5px;
	outline: 2px solid #231815;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
	padding: 0;
}

.modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #fff;
	
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: rgba(153,143,133,0.9);
	
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #231815!important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #fff !important
}

@media screen and (max-width: 414px){

    .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }
}

.prof_text .name {
    display: block;
	margin: 0 auto;
	font-size: 30rem;
    color: #231815;
    font-weight: 500;
}

.prof_text .work {
    display: block;
	margin: 0.5em auto 1em;
    font-size: 20rem;
    color: #231815;
    font-weight: 500;
}

.prof_text .text {
	padding: 0 1em;
    text-align: left;
	color: #231815;
	font-weight:500;
	font-size: 18rem;
}
.prof_text .text ul {
	margin: 1em auto 0;
}
.prof_text .text ul li{
	padding-left: 1em;
	text-indent: -1em;
}
.prof_text .note {
	margin: 1em 0 0;
	font-size: 0.9em;
}

/***************************************************

　動画

**************************************************/
.movie {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto;
}

.movie.center {
    justify-content: center;
}

.movie .item{
    width: 100%;
    justify-content: center;
	max-width: 800px;
    margin: 0 auto 1em;
    vertical-align: bottom;
	margin-top: auto;
}

.movie .name {
    padding: 0.3em;
    font-size: 18rem;
    color: #231815;
    line-height: 1.3;
	text-align: right;
}

.movie .youtube {
	position: relative;
	height: 0;
	margin-bottom: 0.5em;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%; 
}

@media screen and (max-width: 414px){
    .movie .name {
        font-size: 16rem;
    }
}

/****************************
    SHOW CASE
****************************/

.logo {
	display: block;
	max-width: 400px;
    width: 70%;
	margin: 1.5em auto 1.5em;
}
.logo img {
	display: block;
	width: 100%;
}


.title {
	display: block;
	margin: 0.5em auto 0;
	font-size: 40rem;
	color: #231815;
}


@media screen and (max-width: 500px){
	.title {
		font-size: 30rem;
	}
}

@media screen and (max-width: 360px){
	.title {
		font-size: 26rem;
	}
}

.box > dt .text {
    font-size: 30rem;
    text-align: center;

}
.box > dt .text {
    padding: 0 0 0 1.3em;
    background-image: url("../images/icon_pen.svg");
    background-repeat: no-repeat;
    background-position: 0 5px;
    background-size: 1em;
}
.box > dd {
	margin: 0em auto 2em;
	padding: 2em;
	background: rgba(255,255,255,0.8);
	border: 1px solid #231815;
	border-radius: 5px;
	font-weight: 500;
}

@media screen and (max-width: 500px){
    .box > dd {
        padding: 2em 1em;
    }
}

.box .caution2 {
	display: inline-block;
	margin: 0 auto;
	text-align: left;
}

.box .caution2 li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.logo1 {
	display: block;
	max-width: 100px;
	margin: 0 auto;
}
.logo_us {
	display: block;
	max-width: 80px;
	margin: 0 auto;
}
.logo_uk {
	display: block;
	max-width: 200px;
	margin: 0 auto;
}

.logo img,.logo_us img,.logo_uk img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 900px){
	.box {
		padding: 2em 2em;
	}
}

@media screen and (max-width: 480px){
	.box {
		padding: 2em 1em;
	}
}

.list_ticket .way {
	margin: 0 auto;
	text-align: left;
}

.list_ticket .way a {
    color: #231815;
	text-decoration: none;
	font-weight: 900;

}

.list_ticket .way .s {
	font-size: 0.9em;
    font-weight: 900
}


.list_ticket .way > dt{
	padding:0.5em 0;
	background: rgba(35,24,21,0.1);
	color: #231815;
	font-weight: 500;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
}

.list_ticket .way > dd{
	padding: 2em 1em;
	border-top: none;	
	text-align: center;
	font-size: 18rem;
}

.list_ticket .way .list {
	display: inline-block;
	margin: 0 auto 1em;
	text-align: left;
}

.list_ticket .way .note {
	font-size: 0.9em;
}
.lead {
	padding: 1em 1em 2.5em;
	text-align: left;
}


/****　writer　****/

.lead .list_writer {
	margin: 1em auto 0;
	text-align: center;
}
.lead .list_writer caption {
	font-weight: 400;
}
.lead .list_writer caption::before {
	content: "《";
	margin-right: 0.5em;
}
.lead .list_writer caption::after {
	content: "》";
	margin-left: 0.5em;
}
.lead .list_writer th,
.lead .list_writer td {
	padding: 0.8em 0.5em;
	border: 1px solid rgba(35,24,21,0.5);
	font-weight: 400;
	line-height: 1.5;
	font-size: 0.9em;
}
.lead .list_writer th {
	width: 8em;
	text-align: center;
}
.lead .list_writer .name li {
	display: inline-block;
}

.lead .list_writer .name li:not(:last-of-type)::after {
	content: "／";
	margin: 0 0.2em;
}
.lead .list_writer .name.palt {
	font-feature-settings: "palt";
}
.lead .list_writer .writer_txt {
	margin: 0 auto 1.5em;
}


@media screen and (max-width: 400px){
	.lead .list_writer th {
		width:inherit;
		white-space: nowrap;
	}
}

@media screen and (max-width: 350px){
	.lead .list_writer th,
	.lead .list_writer td {
		padding: 0.8em 1em;
	}
	.lead .list_writer .name li {
/*		display: block;
		margin: 0;*/
	}
}
/*.lead .writer {
	margin: 1em auto 0;
	padding: 1em;
	border-top: 1px solid rgba(35,24,21,0.2);
	text-align: left;
}

.lead .writer > dt {}

.lead .list_writer {}

.lead .list_writer dt,
.lead .list_writer dd {
	display: inline-block;
}

.lead .list_writer dd {
}
.lead .list_writer dd:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.lead .list_writer .name {}

.lead .list_writer .name li {
	display: inline-block;
	margin: 0 0.5em;
}

.lead .list_writer .name.palt {
}

@media screen and (max-width: 580px){
	.lead .list_writer .name.usa .pk {
		display: inline;
	}
}
@media screen and (max-width: 380px){
	.lead .list_writer .name.palt {
		font-feature-settings: "palt";
	}
}
@media screen and (max-width: 350px){
	.lead .list_writer .name.palt {
		font-feature-settings: normal;
	}
	.lead .list_writer .name li {
		display: block;
		margin: 0 auto;
	}
}*/



.list_ticket .way .list_cast li {
	display: inline-block;
	margin: 0 0.5em;
}

.list_ticket .way .list_cast li.note {
	font-size: 0.8em;
}

@media screen and (max-width: 600px){
	.list_ticket .way .list_cast .pk {
		display: inline;
	}
}
@media screen and (max-width: 350px){
	.list_ticket .way .list_cast:not(:last-of-type) {
		margin-bottom: 1em;
	}
	.list_ticket .way .list_cast li {
		display: block;
	}
}

/****　お問い合わせ　****/

.list_ticket .way .contact .tel {
	display: inline-block;
	text-decoration: none;
	color: #231815;
}

.btn {
    position: relative;
	display: block;
	padding: 1em;
	border: 1px solid rgba(35,24,21,0.9);
	border-radius: 5px;
	line-height: 1.8;
	font-size: 20rem;
	font-weight: 900;
}

.btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.btn .text .shimekiri {
	padding: 0 1em;
	border-top: 1px solid #c10536;
	border-bottom: 1px solid #c10536;
	color: #c10536;
	font-size: 0.8em;
}

.btn .entry {
	display: block;
	max-width: 200px;
	margin: 1em auto 0;
	padding: 0.3em 2em;
	background: #c10536;
	border-radius: 2em;
	font-weight: 700;
	color: #fff;
}

.btn .entry.close {
	display: block;
	margin: 0 auto;
	background: none;
/*	max-width: 200px;
	margin: 1em auto 0;
	padding: 0.3em 2em;
	background: #c10536;
	border-radius: 2em;*/
	font-weight: 700;
	color: #231815;
	font-size: 0.8em;
}

@media screen and (max-width: 330px){
	.btn {
		font-size: 18rem;
	}
}

@media screen and (max-width: 300px){
	.btn .text .shimekiri {
		border-top: none;
		border-bottom: none;
	}
}

/***　会場のご案内　***/

.kaijyo .day {
    margin: 0 auto 0.5em;
    font-size: 30rem;
}
.kaijyo .theater .logo {
    max-width: 240px;
    width: 60%;
    margin: 0 auto 0.5em;
}
.kaijyo .theater .logo img {
    display: block;
    width: 100%;
}
.kaijyo .add {
    margin: 1em auto;
}
.kaijyo .access {
    display: inline-block;
    margin: 0 auto;
    padding: 1em;
    border-top: 1px solid #231815;
    text-align: left;
}
.kaijyo .theater .btn {
	display: inline-block;
	max-width: 12em;
	width: 100%;
	margin: 0.5em 0.25em 0;
	padding: 0.3em 2em;
	border: 1px solid #231815;
	border-radius: 2px;
	line-height: 1;
	font-size: 0.8em;
	font-weight: 700;
	color: #231815;
}

@media screen and (max-width: 500px){
    .kaijyo .day {
        font-size: 24rem;
    }
	.theater .btn {
		padding: 0.3em 0.5em;
	}
}

@media screen and (max-width: 370px){
	.theater .btn {
		display: block;
		width: 80%;
		max-width: inherit;
		margin: 0.5em auto 0;
		padding: 0.8em 0;
	}
	.theater .btn:first-of-type {
		margin-top: 1em;
	}
}


/***　チケット情報　***/
.list_ticket {}

.list_ticket {
	margin: 0 auto 0;
}
.list_ticket .head {
	margin: 0 auto 2em;
    padding: 0 1em;
}
.list_ticket .head .sch {
    font-size: 30rem;
}

.list_ticket .head .maeuri{
    margin: 0 auto 1em;
    font-size: 20rem;
}

.list_ticket .head .logo {
    max-width: 240px;
    width:60%;
    margin: 0 auto 0.5em;
}
.list_ticket .head .logo img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 500px){
   .list_ticket .head .sch {
        font-size: 24rem;
    }

}

.list_ticket .caution {
	margin: 2em auto 0;
	font-size: 0.9em;
	text-align: left;
}
.list_ticket .caution li {
	padding-left: 1em;
	text-indent: -1em;
}
.list_ticket .caution li a {
	font-weight: 500;
	text-decoration: underline;
}


.list_ticket .way {
/*	border: 1px solid #231815;
    border-radius: 5px;*/
}

.list_ticket .way dt,
.list_ticket .way dd {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    margin-bottom: 0.5em;
}

.list_ticket .way dt {
	width: 100%;
	padding: 0.5em;
	border-top: 1px solid #231815;
	border-bottom: 1px solid #231815;
	text-align: center;
    font-size: 18rem;
}

.list_ticket .way dd {
	width: 100%;
	padding: 1em 2em;
	border-top: none;
}
.list_ticket .way dd .caution {
	margin-top: 1em;
    text-align: center;
}

@media screen and (max-width: 670px){
    .list_ticket .way dd .caution {
        text-align: left;
    }

}

@media screen and (max-width: 400px){
	.list_ticket .way dd {
		padding: 1em;
	}
}

.list_ticket .way .price .note {
	display: inline-block;
	font-size: 0.9em;
}

.list_ticket .way .start {}
.list_ticket .way .start .lbl {
	display: inline-block;
}
.list_ticket .way .start .day {
	display: inline-block;
}

.list_ticket .way .toho_navi .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 0.5em auto 0;
	padding: 0.5em 0;
	border-radius: 3px;
	background: #231815;
	color: #fff;
	text-decoration: none;
	font-size: 24rem;
	transition: 0.5s;
	font-weight: 500;
}

.list_ticket .way .toho_navi .btn .icon {
	margin-right: 0.3em;
}

.list_ticket .way .toho_navi .btn:hover {
	background: #fff;
	color: #231815;
}

@media screen and (max-width: 400px){

	.list_ticket .way .toho_navi .btn {
		font-size: 20rem;
	}
}

.list_ticket .way .tele {}

.list_ticket .way .tele .office {
	display: inline-block;
	margin: 0 0.5em;
}

.list_ticket .way .tele .tel {
	display: inline-block;
	margin: 0 0.5em;
}

.list_ticket .way .tele .tel a {
	text-decoration: none;
	color: #231815;
}
.list_ticket .way .tele .note {
	display: inline-block;
}
.list_ticket .way .u25 .shimekiri {
    max-width: 400px;
    margin: 0 auto;
	padding: 0 1em;
	border-top: 1px solid #c10536;
	border-bottom: 1px solid #c10536;
	color: #c10536;
    font-weight: 700;
}

.list_ticket .way .u25 .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 0.5em auto 0;
	padding: 0.5em 0;
	border-radius: 3px;
	background: #231815;
	color: #fff;
	text-decoration: none;
	font-size: 24rem;
	transition: 0.5s;
	font-weight: 500;
}

.list_ticket .way .u25 .btn .icon {
	margin-right: 0.3em;
}

.list_ticket .way .u25 .btn:hover {
	background: #fff;
	color: #231815;
}

/**********************************************************************

　リンクボタン

**********************************************************************/

.btn_link {
    position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
    width: 100%;
	max-width: 600px;
    min-height: 3em;
    margin: 0 auto;
	padding: 0.8em 1em;
	border: 1px solid #231815;
    background: #231815;
	border-radius: 3px;
	text-decoration: none;
	color: #fff;
	font-size: 20rem;
	line-height: 1.3;
	font-weight: 500;
	transition: 0.5s;
}

.btn_link:hover {
	background: rgba(255,255,255,0.5);
	color: #231815;
}

.btn_link .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}


