@charset "utf-8";
/* CSS Document */

/***フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900
font-family: 'Love Ya Like A Sister', cursive;　英語
***/

/***色
茶色　#261e1c
黄色　#e6b300
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*sectionのフェードイン*/
.fadein2{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}


/********リンク********/
a {
    color: #261e1c;
    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;
}

/********改行********/

.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;
	background: #e6b300;
	font-size: 16em;
	line-height:2;
	color:#261e1c;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
	font-feature-settings: "palt";
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,body { /*背景色用*/
  height: 100vh
}

/*body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;  
    background-color: #fff;
}*/

@media (orientation: portrait) { /**　画面が縦長の時　**/
   
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}



/**************************************
　ナビ　メニュー
**************************************/

header {
    z-index: 100;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

nav {
    position: fixed;
    width: 100%; 
    margin: 0 auto;
    padding: 5px 0 0;
	background: #261e1c;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}



@media (orientation: portrait) and ( max-height:800px) { /**　画面が縦長かつ高さ800px以下の時　**/
	nav {
		position: absolute;
	}
}

nav .n_list {
    padding: 5px 1em 5px;
}

nav .n_list .res_smp {
    display: none;
}

nav .n_list .n_item {
    display: inline-block;
    margin: 0 0.5em 0.5em;
    padding: 5px 0 5px; 
    font-size: 30rem;
    line-height: 1;
    vertical-align: bottom;
}

nav .n_list .n_item a {
    text-decoration: none;
    transition: 0.5s;
	color: #fff;
}
nav .n_list .n_item a:hover {
/*    	color: #261e1c;*/
}

nav .n_list .n_item .en {
	font-family: 'Love Ya Like A Sister', cursive;
	font-weight: normal;
	letter-spacing: 0.05em;
}

nav .n_list .n_item .jp {
	display: block;
	font-size: 0.5em;
	font-weight: 500;
	color: #e6b300;
}

@media screen and (max-width: 1250px){
    nav .n_list .n_item {
	    font-size: 22rem;
    }
}

@media screen and (max-width: 840px){
    nav .n_list .n_item {
        font-size: 20rem;
    }
/*	nav .n_list .res_smp {
		display: inline;
	}*/
}



@media screen and (max-width: 690px){
	nav .n_list .res_smp {
			display: inline;
	}
}

@media screen and (max-width: 460px){

}

@media screen and (max-width: 370px){
	nav .n_list .n_item {
		font-size: 18rem;
	}
	nav .n_list .res_smp {
			display: none;
	}
}


/***　お願いリンク　***/

nav .n_list .link{
	width: 100%;
	margin: 0 auto 0.8em;
    padding: 0;
    padding-bottom: 0.3em;
	border-bottom: 1px dashed #fff;
}

nav .n_list  .link .item {
    display: inline-block;
    margin: 0 0.5em;
    font-size: 0.9em;
    font-weight: 700;

}

nav .n_list  .link .item a {
    color: #fff;
    transition: 0.5s;
}
nav .n_list  .link .item .fas {
    margin-right: 0.1em;
	color: #e6b300;
}
nav .n_list  .link .item a:hover {
    color: #fff;
}


@media screen and (max-width:1024px){

    nav .n_list  .link{
        padding-bottom: 0.5em;
    }
}

@media screen and (max-width:500px){

    nav .n_list  .link{
        border-bottom: none;
    }

    nav .n_list  .link .item {
        display: block;
        width: 95%;
        margin: 0 auto;
        border: 1px solid #e6b300;
        padding: 0.3em 0 0.2em;
        border-radius: 3px;
    }
    nav .n_list  .link .item:not(:last-of-type) {
        margin-bottom: 0.5em;
    }
    nav .n_list  .link .item .fas {
        display: none;
    }
}
/***　//お願いリンク　***/


/*****メインコンテンツ*****/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	padding-top: 8em;
}

/****************************************

　フッター

*****************************************/


#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #fff;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}


footer{
	width: 100%;
	margin: 0 auto 0;
    padding-top: 40px;
	text-align: center;
	font-size: 16rem;
	bottom: 0;
	background: #261e1c;}

.footer .copy {
	display: block;
	font-style: normal;
    color: #fff;
}

footer .sns_link {
/*    margin-top: 40px;*/
}

footer .sns_link li {
    display: inline-block;
    margin: 1em;
    text-align: center;
    vertical-align: top;
}

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
	z-index: 1000;
}


/****************************************

　ボックス・見出し

*****************************************/

.anchor {
    display: block;
    padding-top: 3em;
    margin-top: -2em;
}
@media (orientation: portrait) and ( max-height:800px) { /**　画面が縦長かつ高さ800px以下の時　**/
	.anchor {
		display: block;
		padding-top: 0;
		margin-top: 0;
	}
}

/*.sec {
	max-width: 900px;
    margin: 0 auto;
    padding: 2em 0 3em;
}
*/

section {
	padding: 0 1em 3em;
}

section .heading_sec {
	margin: 0 auto 0.5em;
	padding: 1em 0 0;
	color: #261e1c;
	font-size: 60rem;
	line-height: 1;
    text-shadow: 2px 2px 2px #bc9108;
}

section .heading_sec .en {
	font-family: 'Love Ya Like A Sister', cursive;
	font-weight: normal;
}

section .heading_sec .jp {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 0.3em;
	letter-spacing: 0.2em;
}

@media screen and (max-width: 600px){
	section .heading_sec {
		font-size: 50rem;
	}
}
@media screen and (max-width: 460px){
	section .heading_sec {
		font-size: 40rem;
	}
}

@media screen and (max-width: 400px){
	section .heading_sec {
		font-size: 38rem;
	}
}

@media screen and (max-width: 290px){
	section .heading_sec {
		margin-top: 1em;
	}	
}

section.b {
	background: #261e1c;
}
section.b .heading_sec {
	color: #e6b300;
    text-shadow: none;
}


section .heading_sec_sub {
	margin: 0 auto 0.5em;
	padding: 1em 0 0;
	color: #261e1c;
	font-size: 60rem;
	line-height: 1;
    text-shadow: 2px 2px 2px #bc9108;
}

section .heading_sec_sub .en {
	font-family: 'Love Ya Like A Sister', cursive;
	font-weight: normal;
}

section .heading_sec_sub .jp {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 0.3em;
	letter-spacing: 0.2em;
}


.inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 0 2em;
}

/****************************************

　トップページ

*****************************************/

body.index {
	background: #261e1c;
}

.index #pagetop a {
	color: #e6b300;
}

/*.index nav {
	background: #e6b300;
}

.index nav .n_list .n_item a {
	color: #261e1c;
}*/

.index nav .n_list .n_item .en {
/*	font-weight: bold;*/
	letter-spacing: 0;
}

/*.index nav .n_list .n_item .jp {
	color: #261e1c;
}
*/
.index main{
	padding-top: 1em;
}

.index .btn_wrap {
	margin: 1em auto;
}

.index .btn_wrap .btn {
	display: inline-block;
	max-width: 400px;
	width: 100%;;
	margin: 0 auto;
	padding: 0.5em 0;
	background: #e6b300;
	border-radius: 5px;
	color: #261e1c;
	text-decoration: none;
	font-weight: 900;
	font-size: 24rem;
	line-height: 1.2;
}

.index .area_visual {
	padding: 0 10px;
    margin: 8em auto 3em;
}

.index .area_visual .visual {
	width: 100%;
	height: auto;	
	max-width: 900px;
	max-height: 1273px;
	margin: 1em auto 0;
	background-image: url("../images/visual.jpg");
	background-position: top center;
	background-attachment: scroll;
	background-size: cover;
	background-repeat: no-repeat;
}

.index .area_visual .visual img {
	width: 100%;
	height: auto;
}

@media print{
    .index .area_visual .visual {
        display: none;
    }
}

/**　画面が横長　かつ　高さが700px以上の時　**/
@media only screen and (orientation: landscape) and (min-height: 700px) {

}

@media screen and (max-width: 690px){
	.index .area_visual {
		margin-top: 12em;
	}
}

@media screen and (max-width: 500px){
    .index .area_visual {
		margin-top: 14em;
    }
}

@media screen and (max-width: 316px){
    .index .area_visual {
		margin-top: 18em;
    }
}

/*.index .footer .copy {
    color: #e6b300;
}*/

/****************************************

　イントロ＆ストーリー

*****************************************/

body.intro {
	background: #e6b300;
}


/*****　イントロ　*****/

.area_intro {
    margin: 8em auto 0;
	background: url("../images/intro_catch_bg.png") no-repeat;
	background-size: cover;
}

.area_intro .catch {
	width: 100%;
	max-width: 600px;
	font-size: 30rem;
	color: #261e1c;
    position: relative;
    display: inline-block;
    padding: 2em 0;
	text-shadow: 7px 7px 3px #bc9108;
}

.area_intro .catch .p_l {
	display: block;
	text-align: left;
}

.area_intro .catch .p_r {
	display: block;
	text-align: right;
}

@media screen and (max-width: 1024px){

	.area_intro {
		background: url("../images/intro_catch_bg_smp.png") no-repeat;
		background-size: cover;
	}
}

@media screen and (max-width: 777px){

	.area_intro .catch {
		margin-top: 2em;
		font-size: 26rem;
	}
}

@media screen and (max-width: 768px){
	.area_intro .catch {
		max-width: 400px;
	}
}


@media screen and (max-width: 560px){
	.area_intro .catch {
		max-width: 300px;
	}
}

@media screen and (max-width: 414px){

	.area_intro .catch {
		font-size: 22rem;
	}
}

@media screen and (max-width: 340px){

	.area_intro .catch {
		font-size: 20rem;
	}
}


.area_intro .box {
	padding: 3em 2em 2em;
	background: #261e1c;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


.area_intro .box {
	max-width: 800px;
	margin: 0 auto;
}

.area_intro .text {
    margin: 0 auto;
    padding: 0 1em;
	font-size: 20rem;
	line-height: 2;
	text-align: left;
	color: #261e1c;
	font-weight: 700;
}

.area_intro .text p {
    margin-bottom: 1em;
}

.area_intro .award.pc {
	width: 90%;
	margin: 2em auto 0;
}

.area_intro .award.smp {
	display: none;
}

@media screen and (max-width: 500px){
	.area_intro .award.pc {
		display: none;
	}
	.area_intro .award.smp {
		display: block;
		width: 100%;
		margin: 2em auto 0;
	}
}

/*****　ストーリー　*****/

.area_story {
}

.area_intro .box {
	max-width: 800px;
	margin: 0 auto;
}

.area_story .text {
	margin: 0 auto;
    padding: 0 1em;
	font-size: 20rem;
 	line-height: 2;
	text-align: left;
	color: #fff;
	font-weight: 400;
}

.area_story .text .point {
	color: #e6b300;
}

.area_story .text p {
    margin-bottom: 1em;
}


/***********************************************

　キャスト

***********************************************/

.area_cast {
    margin: 8em auto 0;
}


/****************
　プリンシパル
****************/

.area_cast .list {
	display: flex;
	justify-content: center;
	margin: 0 auto 5em;
}

.area_cast .list li {
	position: relative;
	max-width: 200px;
	margin: 0 10px;
	padding: 2em 0;
	line-height: 1;
}

.area_cast .list .photo {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	margin: 0 auto 0.5em;
}

.area_cast .list .photo img {
	display: block;
	width: 100%;
	vertical-align: bottom;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.area_cast .list li.hide .photo {
	background: url("../images/cast_okamoto.jpg") no-repeat;
	background-size: cover;
}

@media print{
	.area_cast .list li.hide .photo {
		display: none;
	}
}

.area_cast .list .yaku {
	position: relative;
	z-index: 100;
	display: block;
	width: 5em;
	margin: -1.5em auto 0;
	padding: 0.3em 1em;
	background: #261e1c;
	font-size: 0.8em;
	line-height: 1;
	color: #fff;
	font-weight: 700;
}

.area_cast .list .name {
	display: block;
	margin: 0.3em auto 0;
	font-size: 26rem;
	font-weight: 700;
}

@media screen and (max-width: 640px){

	.area_cast .list .name {
		font-size: 22rem;
	}
}

@media screen and (max-width: 500px){

	.area_cast .list {
		flex-wrap: wrap;
		padding: 0 2em;
	}

	.area_cast .list li {
		width: 48%;
		width : -webkit-calc(50% - 20px) ;
		width: calc(50% - 20px);
	}
}

@media screen and (max-width: 365px){

	.area_cast .list {
		display: block;
		margin: 0 auto;
		padding: 0;
	}

	.area_cast .list li {
		width: 100%;
		max-width: 160px;
		margin: 0 auto;
	}
}

/****************************************
　スタッフ
*****************************************/

.area_staff {}


.area_staff .list {
	font-size: 18rem;
}

.area_staff .list:first-of-type {
	margin-top: 3em;
}

.area_staff .list:not(:last-of-type) {
	margin-bottom: 1.5em;
}

.area_staff .list:nth-of-type(3),
.area_staff .list:nth-of-type(4) {
	margin-bottom: 3em;
}

.area_staff .list::after{
  content: "";
  display: block;
  clear: both;
}

.area_staff .list dt {
	clear: both;
	float: left;
	width: 48%;
	width : -webkit-calc(50% - 10px) ;
	width : calc(50% - 10px) ;
	margin: 0 auto 0.5em;
	text-align: right;
	line-height: 1.3;
}

.area_staff .list dt .bg {
	background: #261e1c;
	color: #e6b300;
	font-weight: 700;
}

.area_staff .list dd {
	float: left;
	width: 48%;
	width : -webkit-calc(50% - 15px);
	width : calc(50% - 15px) ;
	margin: 0 auto 0.5em;
	padding-left: 15px;
	text-align: left;
	line-height: 1.3;
	font-weight: 500;
	color: #fff;
}

@media screen and (max-width: 450px){
	.area_staff .list:not(:last-of-type) {
		margin-bottom: 3em;
	}
	.area_staff .list dt {
		float: none;
		width: 100%;
		text-align: center;
		font-size: 0.8em;
		line-height: 1;
	}

	.area_staff .list dd {
		float: none;
		width: 100%;
		margin-bottom: 1em;
		padding-left: 0;
		text-align: center;
	}
}

/****************************************

　チケット＆スケジュール

*****************************************/


body.ticket {
	background: #e6b300;
}


.area_ticket {
	max-width: 800px;
    margin: 8em auto 0;
}


.area_ticket .area_btn {
    margin: 2em auto;
}

.area_ticket .area_btn .item {
    display: inline-block;
    margin: 10px;
	padding: 0.8em 1.3em 0.8em 1em;
	background: #261e1c;
	border-radius: 3px;
	font-size: 24rem;
	font-weight: 900;
	line-height: 1;
	color: #fff;
}

.area_ticket .area_btn .item .icon {
	margin-right: .3em;
	color: #e6b300;
}

.area_ticket .anchor {
	display: block;
	margin-top: -5em;
	padding-top: 5em;
}


@media screen and (max-width: 414px){

    .area_ticket .area_btn li{
        margin: 3px;
        display: inline-block;
    }
}


@media screen and (max-width: 413px){

    .area_ticket .area_btn li {
        max-width: 130px;
    }
}


.area_ticket .stage_info {
	margin-top: 3em;
	padding: 0 2em;
}

.area_ticket .stage_info .sch {
	max-width: 619px;
	width: 100%;
	height: auto;
	margin: 0 auto 2em;
}

.area_ticket .stage_info .sch img {
	width: 100%;
}

.area_ticket .stage_info .hoshitori {
	max-width: 900px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.area_ticket .stage_info .hoshitori img {
	width: 100%;	
}

.area_ticket .stage_info .caution {
	margin: 2em auto 0;
	text-align: left;
	font-weight: 500;
}
.area_ticket .stage_info .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.area_ticket .stage_info .caution a {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 414px){
	.area_ticket .stage_info {
		padding: 0 1em;
	}
}

.area_ticket .way {
	text-align: left;
	max-width: 700px;
	margin: 60px auto 0;
	background: #fff;
	border: 5px solid #261e1c;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 500px){
	.area_ticket .way {
		margin: 30px 1em 0;
	}
}

.area_ticket .way a {
    color: #261e1c;

}

.area_ticket .way .s {
	font-size: 0.9em;
    font-weight: 900
}

.area_ticket .way > dt{
	padding: 0.4em 0.5em 0.5em;
	background: #261e1c;
	color: #fff;
	font-weight: 900;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
}

.area_ticket .way > dd{
	padding: 20px 20px;
	border-top: none;	
	text-align: center;

}

.area_ticket .way > dd .caution {
	margin: 1em auto 0;
    padding: 1em 0.5em 0;
	border-top: 1px solid #261e1c;
    text-align: left;
    font-size: 0.9em;
	font-weight: 500;
}

.area_ticket .way > dd .caution li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

.area_ticket .way .start {
	display: inline-block;
	margin: 1em auto;
	line-height: 1.5;
	font-size: 20rem;
}
.area_ticket .way .tel {
	display: block;
	position: relative;
	font-size: 30rem;
	font-weight:  bold;
	line-height: 40px;
}

.area_ticket .way .tel a{
	color: #261e1c;
	text-decoration: none;
}
.area_ticket .way .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #261e1c;
}
.area_ticket .way.toho .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #261e1c;
}


@media screen and (max-width: 500px){

	.area_ticket .way > dt{
		font-size: 20rem;
		font-weight: 500;
	}
}


@media screen and (max-width: 414px){
	.area_ticket {
	}
    .area_ticket .start {
        font-size: 18rem;
    }
}
	
@media screen and (max-width: 375px){

	.area_ticket .way > dd{
		padding: 1em;
	}
  
}
@media screen and (max-width: 374px){

/*	.area_ticket .area_btn .btn {
		padding: 0.2em 1em;
	}*/
}


/***　東宝ナビザーブ・テレザーブ　***/

.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 .way.toho .senkou {
	margin: 2em auto 0;
}

.area_ticket .way.toho .senkou dt {
	background: #261e1c;
	color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
}
.area_ticket .way.toho .senkou dd {
	margin-bottom: 1em;
	padding: 0.5em;
	font-size: 20rem;
}

@media screen and (max-width: 500px){
	.area_ticket .way.toho .senkou dt {
		font-weight: 500;
	}
}

@media screen and (max-width: 414px){
    .area_ticket .way.toho .pc {
        font-size: 24rem;
        line-height: 1.5;
    }

	.area_ticket .way.toho .tel {
        font-size: 24rem;

    }
}
	
@media screen and (max-width: 375px){
    .area_ticket .way.toho .pc {
        font-size: 18rem;
    }    
}

@media screen and (max-width: 413px){
    .area_ticket .way.toho .senkou dd {
        font-size: 18rem;
    }
}

@media screen and (max-width: 364px){
    .area_ticket .way.toho .senkou dd {
        font-size: 16rem;
    }
}


/*****　プレイガイド　*****/
.area_ticket .way .playguide {
    margin: 1em auto 0;
}

.area_ticket .way .playguide dt {
    margin-bottom: 0.5em;
    padding: 0 0.5em;
	background: #261e1c;
	color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
}

.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', serif;
	font-weight: 900;
}
.area_ticket .way .playguide .tel {
    display: inline-block;
    margin-bottom: 0.5em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
}
.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 #261e1c;
}
.area_ticket .way .playguide .first_day .lbl {
    display: inline-block;
    margin-right: 1em;
    color: #261e1c;
}
.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: #261e1c;
}
.area_ticket .way .playguide .code {
	display: inline-block;
    font-size: 0.9em;
}


@media screen and (max-width: 500px){
	.area_ticket .way .playguide dt {
		font-weight: 500;
	}
}

@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 .playguide .first_day .lbl {
        display: block;
    }
}

@media screen and (max-width: 365px){

    .area_ticket .way .playguide .pc {
        font-size: 18rem;
    }
}


@media screen and (max-width: 414px){

    .area_ticket .way .playguide dd {
        font-size: 16rem;
        padding-left: 0;
    }
}



/*****　リセール　*****/

.area_ticket .way .resale p {
    text-align: left;
}

.area_ticket .way .resale .list {
    margin-top: 2em;
}

.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 > dd.kaijyou {
	padding: 20px 20px;
	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: 271px;
	margin: 1em auto 0;
    font-weight: 400;
}

.area_ticket .kaijyou .logo img {
	width: 100%;
}


.area_ticket .kaijyou .add{
	font-size: 0.9em;
    font-weight: 500;
}
.area_ticket .kaijyou .add a{
	color: #e6b300;
    text-decoration: none;
}

.area_ticket .kaijyou .contact {
    margin: 1em auto 0;
    font-weight: 500;
}

.area_ticket .kaijyou .contact dt {
	width: 14em;
	margin: 1em auto 0.5em;
	padding: 0.3em 0 0.4em;
	background: #261e1c;
	font-size: 0.9em;
	line-height: 1;
	color: #fff;
	font-weight: 700;
}

.area_ticket .kaijyou .contact dd {
}

.area_ticket .kaijyou .contact .tel {
    display: block;
}
.area_ticket .kaijyou .contact .tel a {
    text-decoration: none;
}
.area_ticket .kaijyou .contact .office {
    margin: 0 0.5em;
}


.area_ticket .kaijyou .list_btn {
	display: flex;
	justify-content: center;
	max-width: 400px;
	margin: 1em auto 0;
	padding: 0 10px;
}

.area_ticket .list_btn .btn {
	width: 240px;
	margin: 0 5px;
	padding: 0.8em 0;
	background: #261e1c;
	border-radius: 5px;
	color: #e6b300;
	font-size: 20rem;
	line-height: 1;
}

.area_ticket .list_btn .btn.ls {
	letter-spacing: 0.1em;
}

.area_ticket .list_btn .btn .fas {
	margin-right: 0.2em;
	color: #e6b300;
}


@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 .list_btn .btn {
		font-size: 16rem;
	}
}


/***********　ツアー　**************/


.area_ticket .area_tour .area_heading {
	margin: 2em auto 0;
	padding: 0.4em 0.5em 0.3em;
    background: #261e1c;
	font-weight: 900;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
    color: #fff;
    letter-spacing: 0.1em;
}


.area_ticket .area_tour .tour_list {
    margin: 0 auto;
    width: 100%;
    background: #fff;
	border: 5px solid #261e1c;
}

.area_ticket .area_tour .tour_list td{
    border: 1px solid rgba(81,68,47,1);
    padding: 0.2em 0.5em;
}


.area_ticket .area_tour .tour_list .day{
    width: 16em;
}

.area_ticket .area_tour .tour_list .holiday {
	color: #d82b2b;
}

.area_ticket .area_tour .tour_list .contact{
    background: rgba(81,68,47,0.1);
}

.area_ticket .area_tour .tour_list .midashi {
    font-size: 16rem;
}

.area_ticket .area_tour .tour_list .midashi::before {
    content: "［"
}
.area_ticket .area_tour .tour_list .midashi::after {
    content: "］"
}

.area_ticket .area_tour .tour_list .contact .office {
	display: inline-block;
	margin: 0 0.5em;
}

.area_ticket .area_tour .tour_list .contact .tel {
	display: inline-block;
	margin: 0 0.5em;
}

.area_ticket .area_tour .tour_caution {
    text-align: right;
}

.area_ticket .area_tour .note {
	margin: 0.5em auto 0;
	line-height: 1.5;
    text-align: right;
	color: rgba(81,68,47,1);
}

.area_ticket .area_tour .note .caution {
	font-size: 0.8em;
}

@media screen and (max-width: 768px){
}

@media screen and (max-width: 560px){

    .area_ticket .area_tour .tour_list .day{
        width: 12em;
        text-align: center;
	}
}

@media screen and (max-width: 414px){

	.area_ticket .area_tour .tour_list {
        line-height: 1.5;
    } 

	.area_ticket .area_tour .tour_list td{
        padding: 0.5em;
    }    
}



/***************************************************

　コメント

**************************************************/
.area_cmt {
    margin: 8em auto 0;
}
.area_cmt .list {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 2em;
}

@media print{
	.area_cmt .hide {
		display: none;
	}
}


.area_cmt .item{
    flex-basis: 49.5%;
    margin-bottom: 40px;
}

.area_cmt .name {
	margin: 0.3em auto 0;
	font-size: 26rem;
	font-weight: 700;
    z-index: 10;
    position: relative;
}

.area_cmt .list.cmt .name {
    font-size: 22rem;
    font-weight: 900;
}


.area_cmt .youtube {
  position: relative;
/*  height: 0;*/
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.area_cmt .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}



@media screen and (max-width: 414px){
    .area_cmt .name {
        font-size: 18rem;
    }
    .area_cmt .list {
        margin-bottom: 10px;
    } 
}




/***************************************************

　フライヤー

**************************************************/


/*body.flyer {
	background: #e6b300;
}*/

.area_flyer {
	display: flex;
	justify-content: center;
    margin: 8em auto 0;
}

.area_flyer .inner {
/*	padding: 0 2em;*/
}

.area_flyer .list {
	margin: 5em auto 0;
}

.area_flyer .item {
	display: inline-block;
	margin: 0 1em 3em;

	
}

.area_flyer .item > dt {
	display: inline-block;
	margin: 1em auto;
	padding: 0.3em 2em;
	background: #261e1c;
	color: #fff;
	font-size: 0.9em;
	line-height: 1;
	font-feature-settings: "palt";
}

.area_flyer .item > dt i {
	margin-left: 0.3em;
}


.area_flyer .item > dd {
	padding: 0;
	text-align: left;
	font-size: 18rem;
	font-weight: 700;
}

.area_flyer .item a {
	color: #e6b300;
    text-decoration: none;
}
.area_flyer .item .thm {
	max-width: 240px;
	width: 100%;
}

.area_flyer .item .thm img{
    display: block;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.area_flyer .item .fas {
    margin-left: 0.3em;
}


.area_flyer .item.hide .thm {
	background: url("../images/flyer_front_thm.jpg") no-repeat;
	background-size: cover;
}

@media print{
	.area_flyer .item.hide .thm {
		display: none;
	}
}


@media screen and (max-width: 768px){
     .area_flyer .item dt {
        margin: 0.5em auto 0.5em;
        font-size: 18rem;
    }   
}


@media screen and (max-width: 700px){
    .area_flyer .item {}
    .area_flyer .item img {
        width: 80%;
        margin: 0 auto;
    }
}

