@charset "utf-8";
/* CSS Document */

/***　フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@400;500;600;700;900
font-family: 'Imbue', serif;　@500;700;900英字
***/

/*** 色 ****/
/*
ゴールド　#ceac50;
赤　#b2223d;
*/

/******************************************

　共通

******************************************/

/********マージン、パディング********/

.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;}


/********リンク********/
a{ color:#ca5f19;}
a:hover{ color: #ca5f19;}


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;
  }
}

/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}


.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.pk {display: inline-block;}



/******************************************
　構造
******************************************/

html {  
    overflow-y:scroll;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
    -webkit-text-size-adjust: none;    
}  

body{
    overflow: hidden;
	margin: 0;
	padding: 0;
	font-size: 18em;
	line-height:2;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-align: center;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #0f0b0c;
	animation: fadeIn 1.5s ease-in 0s 1 normal;
} 

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}


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:bottom center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: auto;
	background-color: #040001;
}


@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}
}


@media screen and (orientation: portrait) { /**　画面が縦長の時　**/
	body:before{
/*		background-image: url(../images/bg_smp.jpg);
		background-size: cover;
	background-attachment:scroll;*/
	}
}

.wrap {
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 140px;/*フッター固定用*/
	text-align: center;
	overflow: hidden;
}

.main{
	margin: 0 auto;
	padding: 0 2em;
	text-align: center;
	word-wrap: break-word;
}

.sec {
	max-width: 900px;
	margin: 0 auto 6em;
}

.sec > .inner {}

.anchor {
	display: block;
	margin-top: -100px;
	padding-top: 100px;
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 400px) {
    .main {
	    padding: 0 1em;
    }
}


/*******************************************
	メニュー　ナビ
********************************************/


/****　ハンバーガーメニュー　****/
*, *:before, *:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.cp_offcm03 {
    z-index: 5;    
    overflow: auto;
    width: 100%;
    height: auto;
    padding-top: 0;
    -webkit-transition: transform 0.3s ease-in;
            transition: transform 0.3s ease-in;
    text-align: center;

}

/* menu toggle */
#cp_toggle03 {
    display: none;
   
}
#cp_toggle03:checked ~ .cp_offcm03 {
    -webkit-transform: translateX(0);
                    transform: translateX(0);
}
#cp_toggle03:checked ~ .cp_container {
    -webkit-transform: translateX(0);
                    transform: translateX(0);
}
.cp_mobilebar {
    display: none;
}

@media (max-width: 768px) {
    .cp_offcm03 {
        position: absolute;
        position: fixed;        
        left: -400px;
/*        overflow-y: hidden;*/
        width: 400px;
        height: 100%;
        padding-top: 50px;
        color: #ceac50;
        background-color: rgba(0,0,0,0.9);
        z-index: 10000;
    }
    .cp_offcm03 nav {
        background: none;
        text-align: left;
    }
    .cp_offcm03 nav .n_list {
         overflow: auto;
     -webkit-overflow-scrolling: touch;
    }    
    .cp_offcm03 li {
        display: block;
    }
    
    .cp_offcm03 a {}
    
    .cp_mobilebar {
        display: block;
        z-index: 10;
        position: fixed;
        top: 0;
        left: 0;
        padding: 0 15px;
        width: 100%;
        height: 50px;
        color: #ffffff;
/*        background: #ceac50;*/
        z-index: 20000;
    }
    .cp_menuicon {
        display: block;
        position: relative;
        width:30px;
        height: 100%;
        cursor: pointer;
        -webkit-transition: transform .3s ease-in;
                transition: transform .3s ease-in;
		text-align: left;
    }
    .cp_menuicon > span.border {
        display: block;
        position: absolute;
        top: 55%;
        margin-top: -0.3em;
        width: 100%;
        height: 0.3em;
        background-color: #ceac50;
        -webkit-transition: transform .3s ease;
                transition: transform .3s ease;
    }
    .cp_menuicon > span.border:before,
    .cp_menuicon > span.border:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #ceac50;
        -webkit-transition: transform .3s ease-in;
                transition: transform .3s ease-in;

    }
    .cp_menuicon > span.border:before {
        -webkit-transform: translateY(-0.6em);
                transform: translateY(-0.6em);
    }
    .cp_menuicon > span.border:after {
        -webkit-transform: translateY(0.6em);
                transform: translateY(0.6em);
    }
    .cp_menuicon > span.lbl {
        display: block;
      position: absolute; 
        top:75%;
        font-weight: 700;
        font-size: 0.8em;
        /*text-indent: -0.2em;*/
    }
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
    }
    #cp_toggle03:checked + .cp_mobilebar span:before,
    #cp_toggle03:checked + .cp_mobilebar span:after {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
    }
    #cp_toggle03:checked ~ .cp_offcm03 {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
    #cp_toggle03:checked ~ .cp_container {
        -webkit-transform: translateX(250px);
                transform: translateX(250px);
    }
    
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon > span.lbl {
        display: none;
    }
    
    /* content */
    .cp_container {
        top: 60px;
        height: 92vh;
    }
}
@media (max-width: 768px) {
    .cp_offcm03 {
        left: -300px;
        width: 300px;
        height: 100%;
    }
}

/****　ハンバーガーメニュー　ここまで　****/


nav {
    position: relative;
    z-index: 1000;
	display: block;
    margin: 0 auto 1em;
	padding: 0.7em 0.5em 0em;
	background: #b4213d;
	background: -moz-linear-gradient(top left, #0f0b0c 0%, #b4213d 100%);
	background: -webkit-gradient(linear, left top, right bottom, from(#0f0b0c), to(#b4213d));
	background: -webkit-linear-gradient(top left, #0f0b0c 0%, #b4213d 100%);
	background: -o-linear-gradient(top left, #0f0b0c 0%, #b4213d 100%);
	background: linear-gradient(to bottom right, #0f0b0c 0%, #b4213d 100%);
	box-shadow: 0 0 50px rgba(89,0,11,1) inset;
	border-top: 2px groove #ceac50;
	border-bottom: 2px groove #ceac50;
	text-align: center;
}

nav .n_list {
	padding: 0.3em 1em 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

nav .n_list .res_nav {
	display: none;
}

nav .n_list a {
    text-decoration: none;
    transition: 0.5s;
}
nav .n_list a:hover {
}

nav .n_list .n_item {
    display: inline-block;
    margin: 0 1em 1em;
    vertical-align: top;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.9), 1px 1px 1px rgba(0,0,0,0.9), 0 0 5px rgba(226,124,119,0.5), 0 0 10px rgba(226,124,119,0.3);
}

nav .n_list .n_item .en {
    font-size: 34rem;
    line-height: 1;
	font-family: 'Imbue', serif;
	font-weight: 500;
    color: #ceac50;
	color: #ceac50;
}
nav .n_list .n_item .en .and {
	font-size: 0.8em;
}
nav .n_list .n_item .jp {
	display: block;
    font-size: 0.7em;
    line-height: 1;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	color: #ceac50;
	transition: 0.5s;
}

nav .n_list .n_item:hover .jp {
	color: #fff;
}

nav .n_list .n_item.crea {
    max-width: 150px;
    margin-top: -3px;
}
nav .n_list .n_item.crea img {
    max-width: 100%;

}

nav .n_list .break {
    display: none;
}


nav .n_list .n_item .jp .new{
	display: inline-block;
	width: 30px;
	margin-left: 0.5em;
}
nav .n_list .n_item .jp .new img{
	width: 100%;
}

nav .n_list .n_item.btn {
    display: inline-block;
    margin: 0 0.5em;
	padding: 0 1em;
    vertical-align: middle;
	border-radius: 2px;
	border: 1px solid #ceac50;
/*	background: #ceac50;*/
	box-shadow: 5px 5px 3px rgba(0,0,0,0.5);
	color: #fff;
	font-size: 14rem;
	text-shadow: none;
}
nav .n_list .n_item.btn a {
	color: #fff;
}

@media screen and (max-width: 1200px) {

	nav .n_list .n_item {
		margin: 0 0.5em 1em;
	}
	nav .n_list .n_item .en {
		font-size: 28rem;
	}
	nav .n_list .n_item .jp {
		font-size: 0.6em;
	}	
}

@media
	screen and (max-width: 880px) {
	nav .n_list .res_nav {
		display: inline;
	}
}

@media screen and (max-width: 768px) {
    nav {
		background: none;
        border: none;
		box-shadow: none;
    }

	nav .n_list .res_nav {
		display: none;
	}
    nav .n_list .break {
        display: none;
    }
    
    nav .n_list .n_item {
        text-align: left;
        display: block;
        margin: 20px 0;
        font-size: 24rem;
        text-shadow: none;
	}
	
	nav .n_list .n_item .jp {
		color: #fff;
		font-weight: 400;
	}	

    nav .n_list .n_item.crea {
        margin-top: 2em;
    }

    
    nav .n_list a {
        color: #ceac50;
    }
    nav .n_list a:hover {
        color: #ceac50;
    }
	 nav .n_list .n_item.btn {
		margin: 0;
		background: #ceac50;
	} 
}



/*******************************************
	フッター
********************************************/

footer{
	width: 100%;
	margin: 20px auto 0;
	padding-bottom: 1em;
	text-align: center;
	font-size: 14rem;
	font-weight: 500;

	position: absolute;/*←絶対位置*/
	bottom: 0;
}


footer .sns_link {
    margin-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 0 15px;
    text-align: center;
    vertical-align: top;
}

/*footer .sns_link li.twi {}
footer .sns_link li.inst {
    margin-top: 2px;
}
footer .sns_link li.toho {
    margin-left: 8px;
}*/

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 35px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 25px;
}

footer .copy {
    color: #fff;
}

footer .copy .lbl {
    display: inline-block;
    margin: 0 0.5em;
}

footer .copy .name {
    display: inline-block;
    margin: 0 0.5em;
}

@media screen and (max-width: 768px) {
    footer .copy {
        font-size: 0.8em;
    }
}
@media screen and (max-width: 380px) {
    footer .copy .lbl {
        display: block;
    }
    footer .copy {
        margin: 0 auto;
    }
}

/****　ページトップへ戻る　****/

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 10px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	display: block;
/*	text-decoration: none;
	color: #7b1626;*/
}

#pagetop a::before {
	display: inline-block;
	content: "";
	width: 59px;
	height: 150px;
	background: url("../images/icon_pagetop.svg") no-repeat;
	background-size: contain;
}

/*#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #7b1626;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}*/

@media screen and (max-width: 1024px) {

}




/*******************************************
　見出し
********************************************/

.heading_sec {
    margin: 1em auto;
    font-size: 70rem;
    line-height: 1.2;
    text-align: center;
}

.heading_sec .en {
    display: block;
	font-family: 'Imbue', serif;
	font-weight: 500;
	color: #ceac50;
	
        background: #ceac50; /* fallback for old browsers */
        background: -webkit-linear-gradient(top, #836921 15%, #ceac50 40%, #f6cf70 70%, #f6cf70 100%);
        background: linear-gradient(to top, #836921 15%, #ceac50 40%, #f6cf70 70%, #f6cf70 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}

.heading_sec .jp {
    display: block;
    color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-size: 0.3em;
	font-weight: 500;
}

.heading_sec .and {
	font-size: 0.8em;
}

@media screen and (max-width: 768px) {

	.heading_sec {
		margin: 80px auto 1em;
	}
}

@media screen and (max-width: 640px) {
	.heading_sec {
		font-size: 60rem;
	}
}

@media screen and (max-width: 420px) {
	.heading_sec {
		font-size: 50rem;
	}
}


/*******************************************
　お知らせ系ボタン
********************************************/

.btn_area {
	margin: 0 auto 1em;
	font-family: 'Noto Serif JP', serif;
}

.btn_area .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 0.5em 0.5em;
	max-width: 400px;
	width: 100%;
	padding: 0.5em 1.8em 0.5em 2em;
	background: rgba(0,0,0,0.2);
	border: 1px solid #ceac50;
	border-radius: 3px;
	text-decoration: none;
	font-size: 20rem;
	color: #fff;
	text-align: center;
	line-height: 1.3;
	transition: 0.5s;
}

.btn_area .btn .icon {
	margin-right: 0.3em;
	color: #ceac50;
	font-size: 0.8em;
}

.btn_area .btn .pk {
	margin: 0 0.2em;
}

.btn_area .btn:hover {
	box-shadow: 0 0 20px rgba(206,172,80,0.5);
}


.btn_area .btn2 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0 0.5em 0.5em;
	max-width: 560px;
	width: 100%;
	padding: 0.5em 1.8em 0.5em 2em;
	background: rgba(0,0,0,0.2);
	border: 1px solid #fff;
	border-radius: 3px;
	text-decoration: none;
	font-size: 20rem;
	color: #fff;
	text-align: center;
	line-height: 1.3;
	transition: 0.5s;
}

.btn_area .btn2 .icon {
	margin-right: 0.3em;
	color: #fff;
	font-size: 0.8em;
}

.btn_area .btn2 .pk {
	margin: 0 0.2em;
}

.btn_area .btn2:hover {
	background: rgba(255,255,255,0.1);
}

@media screen and (max-width: 920px){
	.btn_area .btn {
		width: auto;
	}
}
@media screen and (max-width: 540px){
	.btn_area .btn {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
		font-size: 18rem;
	}
	.btn_area .btn .icon {
		display: none;
	}
	.btn_area .btn2 {
		font-size: 18rem;
	}
}
@media screen and (max-width: 360px){
	.btn_area .btn {
		font-size: 16rem;
	}
	.btn_area .btn2 {
		font-size: 16rem;
	}
}


/*******************************************
　メインビジュアル
********************************************/

.area_visual {
	max-width: 900px;
	margin: 1em auto 3em;
	width: 100%;
}

.area_visual img {
	width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);      
}

@media screen and (max-width: 768px) {

	.area_visual {
		margin: 80px auto 0
	}
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
}

.area_visual .credit {
	max-width: 900px;
	width: 99%;
	margin: 0.8em 0 0 1em;
	font-size: 13rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	text-align: right;
	color: rgba(255,255,255,0.9);
}

.area_visual .credit .item {
	display: inline-block;
	margin: 0 0.5em;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.area_visual {
		margin-top: 70px;
	}
	.area_visual .credit {
		font-size: 11rem;
	}
}

@media (max-width: 380px) {
	.area_visual .credit {
		margin: 0.8em 0 0 0;
	}
	.area_visual .credit .item {
		display: block;
	}
	.area_visual .credit .item:first-of-type {
		padding-right: 0.8em;
	}
}

/****************************************

　イントロ

*****************************************/

.area_intro {}

.area_intro .text {
	text-align: left;
	font-size: 18rem;
	line-height: 2;
}

.area_intro .text p {
	margin-bottom: 1em;
}

/****************************************

　キャスト

*****************************************/

.area_cast {
    margin: 0 auto 10em;
}

.area_cast.sec {
	max-width: 1200px;
}

.area_cast .list_p1 {
    margin: 0 auto 6em;
	line-height: 1.8;
}

.area_cast .list_p1:first-of-type {
	margin-top: 4em;
}

.area_cast .list_p1 li {
    margin: 0 auto 2em;
	font-size: 28rem;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 5px 5px 5px rgba(0,0,0,0.9);
}

.area_cast .list_p1 .yaku {
	display: block;
	font-size: 0.7em;
	color: #ceac50;
	line-height: 1.3;
/*	text-shadow: 0 0 5px rgba(209,65,95,0.3);*/
	font-feature-settings: "palt";
}
.area_cast .list_p1 .yaku .note {
	display: block;
	font-size: 0.7em;
}

.area_cast .list_p1 .yaku .role {
	display: block;
	max-width: 40em;
	margin: 0 auto 0.5em;
	padding: 0.3em 1em;
	opacity: 0.8;
/*	border-top: 1px groove #6e5c2a;
	border-bottom: 1px groove #6e5c2a;*/
	font-size: 0.7em;
	font-weight: 400;
}
.area_cast .list_p1 .yaku .role::before {
	content: "―";
	margin-right: 0.5em;
}

.area_cast .list_p1 .yaku .role::after {
	content: "―";
}

.area_cast .list_p1.leading .photo {
	display: block;
	max-width: 1100px;
	margin: 0.5em auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);  
}

.area_cast .list_p1 .photo {
	display: block;
	max-width: 440px;
	margin: 0.5em auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);  
}

.area_cast .list_p1 .photo img {
	display: block;
	width: 100%;
}

.area_cast .list_p1 .name {
	display: block;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.3;
	vertical-align: top;

	
}

.area_cast .list_p1 .name .note {
	display: block;
	font-size: 0.4em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.area_cast .list_p1 .name .note .res {
	display: none;
}

.area_cast .list_p1 .w_cast .item {
	display: inline-block;
	max-width: 440px;
	width: 100%;
	margin: 0 5px;
	vertical-align: bottom;
}

/*.area_cast .list_p1 .w_cast .name {
	display: inline-block;
	margin: 0 2em;
}

.area_cast .list_p1 .w_cast .name.ind1{
	text-indent: -1em;
}

.area_cast .list_p1 .w_cast .name.ind2{
	text-indent: -2.2em;
}*/

@media screen and (max-width: 1200px) {

	.area_cast .list_p1.leading .photo {
		max-width: 900px;
	}

	.area_cast .list_p1 .photo {
		max-width: 360px;
	}
	.area_cast .list_p1 .w_cast .item {
		max-width: 360px;
	}
}


@media screen and (max-width: 980px) {

	.area_cast .list_p1.leading .photo {
		max-width: 600px;
	}

	.area_cast .list_p1 .photo {
		max-width: 240px;
	}
	.area_cast .list_p1 .w_cast .item {
		max-width: 240px;
	}
}

@media screen and (max-width: 800px) {

	.area_cast .list_p1 li {
		font-size: 22rem;
	}

	.area_cast .list_p1 .w_cast .item {
		margin: 0 0.5em;
	}
}
@media screen and (max-width: 660px) {

	.area_cast .list_p1.leading .photo {
		max-width: 400px;
	}

	.area_cast .list_p1 .photo {
		max-width: 160px;
	}
	.area_cast .list_p1 .w_cast .item {
		max-width: 160px;
	}
}

@media screen and (max-width: 550px) {

	.area_cast .list_p1 .name .note .res {
		display: inline;
	}
}
@media screen and (max-width: 450px) {

	.area_cast .list_p1.leading .photo {
		max-width: 300px;
	}

	.area_cast .list_p1 .photo {
		max-width: 120px;
	}
	.area_cast .list_p1 .w_cast .item {
		max-width: 120px;
	}
}

@media screen and (max-width: 410px) {
	.area_cast .list_p1 .yaku {
		margin-bottom: 0.8em;
	}
	
	.area_cast .list_p1 .w_cast .name {
		display: block;
		margin: 0 auto 0.5em;
	}
/*
	.area_cast .list_p1 .w_cast .name.ind1{
		text-indent: 0;
	}

	.area_cast .list_p1 .w_cast .name.ind2{
		text-indent: 0;
	}*/
}

@media screen and (max-width: 340px) {

	.area_cast .list_p1.leading .photo {
		max-width: 240px;
	}

	.area_cast .list_p1 .photo {
		max-width: 96px;
	}
	.area_cast .list_p1 .w_cast .item {
		max-width: 96px;
	}
}




.area_cast .list_p2 {
    margin: 0 auto 6em;
	line-height: 1.8;
}

.area_cast .list_p2 li {
	display: inline-block;
    margin: 0 0.5em 2em;
	font-size: 23rem;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 5px 5px 5px rgba(0,0,0,0.9);
}

.area_cast .list_p2 .yaku {
	display: block;
	font-size: 0.7em;
	color: #ceac50;
	line-height: 1.3;
	font-feature-settings: "palt";
}
.area_cast .list_p2 .yaku .note {
	display: block;
	font-size: 0.7em;
}

.area_cast .list_p2 .yaku .role {
	display: block;
	max-width: 40em;
	margin: 0 auto 0.5em;
	padding: 0.3em 1em;
	opacity: 0.8;
	font-size: 0.7em;
	font-weight: 400;
}
.area_cast .list_p2 .yaku .role::before {
	content: "―";
	margin-right: 0.5em;
}

.area_cast .list_p2 .yaku .role::after {
	content: "―";
}

.area_cast .list_p2 .name {
	display: block;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.3;
	vertical-align: top;	
}

.area_cast .list_p2 .name .note {
	display: block;
	font-size: 0.4em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

@media screen and (max-width: 800px) {

	.area_cast .list_p2 li {
		font-size: 19rem;
	}
}

@media screen and (max-width: 410px) {
	.area_cast .list_p2 .yaku {
		margin-bottom: 0.8em;
	}
}

.area_cast .list_e {
	max-width: 900px;
	margin: 0 auto;
}

.area_cast .list_e li {
	display: inline-block;
    margin: 0 0.5em 1em;
	font-size: 18rem;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 5px 5px 5px rgba(0,0,0,0.9);
	vertical-align: top;
}

.area_cast .list_e > .note {
	max-width: 640px;
	margin: 0 auto;
	text-align: right;
	font-size: 0.7em;
}

.area_cast .list_e .res {
	display: none;
}

.area_cast .list_e .res2 {
	display: none;
}

.area_cast .list_e li.empty {
	display: none;
}

@media screen and (max-width: 768px) {
	.area_cast .list_e > .note {
		max-width: 522px;
	}
}

@media screen and (max-width: 600px) {

	.area_cast .list_e li {
		font-size: 16rem;
	}
	.area_cast .list_e > .note {
		max-width: 463px;
	}
}

@media screen and (max-width: 570px) {
	.area_cast .list_e .pk {
		display: inline;
	}
	.area_cast .list_e .res {
		display: inline;
	}

	.area_cast .list_e li {
		width: 6.5em;
	}

	.area_cast .list_e li.empty {
		display: inline-block;
	}

	.area_cast .list_e > .note {
		max-width: 30em;
	}
/*		.area_cast .list_e {
		margin: 0 auto;
	}

.area_cast .list_e li {
		width: 6em;
	}*/
}
@media screen and (max-width: 340px) {
	.area_cast .list_e .res {
		display: none;
	}
	.area_cast .list_e .res2 {
		display: inline;
	}
	.area_cast .list_e li.empty {
		display: none;
	}

	.area_cast .list_e > .note {
		max-width: 22.5em;
	}
}

/****************************************

　スタッフ

*****************************************/

.area_staff {
    margin: 0 auto 6em;
}

.area_staff.sec {
	max-width: 1200px;
}

.area_staff .list {
	margin: 0 auto 2em;
	line-height: 1.5;
	font-family: 'Noto serif JP', sans-serif;
	font-weight: 500;
	font-size: 18rem;
}

.area_staff .list li {
	margin: 0 auto 1em;
}

.area_staff .list .work {
	display: inline-block;
	width: 45%;
	padding: 0 0.5em;
	text-align: right;
	color: #ceac50;
	vertical-align: top;
}

.area_staff .list .name {
	display: inline-block;
	width: 45%;
	padding: 0 0.5em;
	text-align: left;;
}

.area_staff .list .name .note {
	display: inline-block;
	font-size: 0.8em;
}

.area_staff .list .name .item {
	display: inline-block;
}

.area_staff .list .name .item:first-of-type::after {
	content: "／";
	margin-left: 0.2em;
	margin-right: 0.2em;
	color: #ceac50;
}

@media screen and (max-width: 540px) {

	.area_staff .list .work {
		display: block;
		width: 100%;
		padding: 0;
		text-align: center;
	}

	.area_staff .list .name {
		display: block;
		width: 100%;
		padding: 0;
		text-align: center;
	}
}



/****************************************

　チケット

*****************************************/

.area_ticket {}

@media screen and (max-width: 680px){


	.area_ticket .box {
		padding: 3em 1em 3em;
	}
}

.area_ticket .head_info {
	margin: 3em auto 5em;
	padding: 0 2em;
}
.area_ticket .head_info .sch {
	max-width: 600px;
	margin: 0 auto 2em;
}

.area_ticket .head_info .sch img {
	width: 100%;
}


.area_ticket .head_info .hoshitori {
	max-width: 900px;
	margin: 0 auto 2em;
}

.area_ticket .head_info .hoshitori img {
	width: 100%;
}

.area_ticket .head_info .caution {
	max-width: 800px;
	margin: 2em auto 0;

}

.area_ticket .head_info .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	line-height: 1.5;
	text-indent: -1em;
	text-align: left;
	font-size: 0.9em;
}

.area_ticket .head_info .caution li a {
	color: #ceac50;
}

.area_ticket .head_info .list_price {
	margin: 1.5em auto 0;
	line-height: 1.5;
}
.area_ticket .head_info .list_price dt {
	margin-bottom: 0.5em;
	font-size: 20rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}

/*.area_ticket .head_info .list_price dt::before {
	content: "【";
	margin-right: 0.3em;
}
.area_ticket .head_info .list_price dt::after {
	content: "】";
	margin-left: 0.3em;
}*/

.area_ticket .head_info .list_price dt .note {
	margin-left: 0.3em;
	font-size: 0.7em;
}
.area_ticket .head_info .list_price dd {}
.area_ticket .head_info .list_price .list {
	width: 100%;
	text-align: center;
}
.area_ticket .head_info .list_price .list th,
.area_ticket .head_info .list_price .list td {
	padding: 0.5em;
	border: 1px solid #fff;
}
/*.area_ticket .head_info .list_price .list th {
	background:  rgba(150,77,84,0.1);
}*/
.area_ticket .head_info .list_price .list .type:not(.none) {
	width: 40%;
}

.area_ticket .head_info .list_price .list .seat {}

.area_ticket .head_info .list_price .list .price{}



@media screen and (max-width: 680px){

	.area_ticket .head_info {
		padding: 0 1em;
	}
	.area_ticket .head_info .sch {
		max-width: 80%;
	}
}

@media screen and (max-width: 500px){
	.area_ticket .head_info .sch {
		max-width: 90%;
	}
}

@media screen and (max-width: 414px){
	.area_ticket .head_info .sch {
		max-width: 100%;
	}
}

@media screen and (max-width: 380px){
	.area_ticket .head_info .list_price .list .type {
		font-size: 0.9em;
	}
}

.area_ticket .way {
	margin: 0 auto 1.5em;
	padding: 1em;
	background: rgba(0,0,0,0.5);
	border: 2px groove #ceac50;
	color: #fff;
}

.area_ticket .way > dt{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto 0.5em;
	padding: 0.5em;
	background: #ceac50;
	font-size: 22rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
	line-height: 1.2;
	color: #000;
}

.area_ticket .way > dd{
	padding: 1em;
/*	border-top: none;	*/
	text-align: center;
	/*color: #1a0502;*/
}

.area_ticket .way > dd .caution {
    padding: 1em 0.5em 0;
    border-top: 1px solid #ceac50;
    text-align: left;
    font-size: 0.9em;
}

.area_ticket .way > dd .caution li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

.area_ticket .way.toho > dd .caution {
    border-top: none;
}

@media screen and (max-width: 364px){

    .area_ticket .way > dt{
        font-size: 20rem;
    }
}


.area_ticket .way a {
    color: #ceac50;

}


.area_ticket .senkou {
	margin: 2em auto 0;
}

.area_ticket .senkou dt {
	font-size: 18rem;
	color: #ceac50;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}
.area_ticket .senkou dt::before {
	content: "［";
	margin-right: 0.3em;
}
.area_ticket .senkou dt::after {
	content: "］";
	margin-left: 0.3em;
}
.area_ticket .senkou dd {
	margin-bottom: 1em;
	padding: 0.5em;
	border: 1px solid #ceac50;
	font-size: 20rem;
}


@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;
    }
}



.area_ticket .s {
	font-size: 0.9em;
    font-weight: 900
}
.area_ticket .start {
	font-size: 18rem;
	font-weight: 700;
	color: #ceac50;
}

.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: 900;
}

.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 sans JP', serif;
    font-weight: 700;
}

.area_ticket .tel a{
	color: #fff;
	text-decoration: none;
}
.area_ticket .way .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #ceac50;
}
.area_ticket .way.toho .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #ceac50;
}

.area_ticket .way .caution {
	margin-top: 1em;
    text-align: center;
}

.area_ticket .way .caution.cen {
	text-align: center;
}

@media screen and (max-width: 767px){

	.area_ticket .way {
		margin: 20px auto 0;
	}

	.area_ticket .way .caution.cen {
		text-align: left;
	}
}


@media screen and (max-width: 414px){
	.area_ticket {
	}

    .area_ticket .way.toho .pc {
        font-size: 24rem;
        line-height: 1.5;
    }

    .area_ticket .start {
        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;
    }    
}

.area_ticket .playguide {}

.area_ticket .playguide .list {
	padding: 0 2em;
	text-align: left;
	font-size: 18rem;
}

.area_ticket .playguide .list li {
	padding: 1em;
}
.area_ticket .playguide .list li:not(:last-of-type) {
	border-bottom: 1px solid #ceac50;
}

.area_ticket .playguide .list a {
	text-decoration: none;
}
.area_ticket .playguide .mark {
	margin-right: 0.3em;
	color: #ceac50;
}
.area_ticket .playguide .name {
	font-weight: 700;
	color: #fff;
}
.area_ticket .playguide .url {
	margin-left: 1.3em;
	word-break: break-all;
}

@media screen and (max-width: 500px){
	.area_ticket .playguide .list {
		padding: 0;
	}

	.area_ticket .playguide .list li {
		padding: 1em 0;
	}
}



/*****　リセール　*****/

.area_ticket .way .resale p {
    text-align: left;
	font-size: 16rem;
	font-weight: 400;
		
}

.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;
	font-weight: 500;
}
.area_ticket .way .resale .list img {
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}


/*****　会場のご案内　*****/

.area_ticket .kaijyo .theater {
	max-width: 300px;
	margin: 1em auto 1em;
}

.area_ticket .kaijyo .theater img {
	width: 100%;
}

@media screen and (max-width: 500px){

	.area_ticket .kaijyo .theater {
		width: 80%;
		max-width: 180px;
	}
}

.area_ticket .kaijyo .add {
	line-height: 1.5;
}
.area_ticket .kaijyo .add .pk {
	margin: 0 0.5em;
}
.area_ticket .kaijyo .wrap_btn {
	margin: 1em auto 0;
}
.area_ticket .kaijyo .wrap_btn .btn {
	display: inline-block;
	max-width: 200px;
	width: 100%;
	margin: 0 10px 0.5em;
	padding: 0.5em 0;
	border: 1px solid #ceac50;
	border-radius: 3px;
	color: #ceac50;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	text-decoration: none;
	font-size: 18rem;
	line-height: 1;
	letter-spacing: 0.2em;
	transition: 0.5s;
}
.area_ticket .kaijyo .wrap_btn .btn .icon {
	margin-right: 0.3em;
}
.area_ticket .kaijyo .wrap_btn .btn:hover {
	background: rgba(206,172,80,0.8);
	color: #000;
}
.area_ticket .contact {
	margin: 1em auto 0;
}

.area_ticket .contact {
}

.area_ticket .contact {}

.area_ticket .contact .office {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 1em;
}

.area_ticket .contact .tel {
	display: inline-block;
	margin: 0 0.5em;
	font-family: 'Noto Serif JP', serif;
}

.area_ticket .contact .tel a {
	color: #fff;
	text-decoration: none;
}

.area_ticket .contact .tel .mark {
	margin-right: 0.3em;
	color: #ceac50;
}

@media screen and (max-width: 500px){

	.area_ticket .kaijyo .theater {
		width: 90%;
	}
	
	.area_ticket .kaijyo .wrap_btn .btn {

		font-size: 16rem;
	}
}

/****************************************

　ツアー

*****************************************/

.area_tour {
    margin: 0 auto 6em;
}


.area_tour .blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
  }

  to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
  }
}
 
.area_tour .blurTrigger{
    opacity: 0;
}

/****　速報1　****/
.area_tour .sokuho1 .list {}

.area_tour .sokuho1 .list li {
	display: inline-block;
	width: 20%;
	width : -webkit-calc(25% - 10px) ;
	width : calc(25% - 10px) ;
	margin: 0 5px;
	font-size: 30rem;
	line-height: 1.3;
	font-family: 'Noto Serif JP', serif;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.area_tour .sokuho1 .list .date {
	display: block;
	padding: 0.5em 1em;
	outline: 1px groove rgba(214,192,117,0.8);
	outline-offset: -3px;
/*	background: rgb(65,23,27);
	background: -moz-linear-gradient(180deg, rgba(65,23,27,1) 0%, rgba(4,0,1,1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(65,23,27,1) 0%, rgba(4,0,1,1) 100%);
	background: linear-gradient(180deg, rgba(65,23,27,1) 0%, rgba(4,0,1,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#41171b",endColorstr="#040001",GradientType=1);*/
	font-size: 0.6em;
	color: #ceac50;
}

.area_tour .sokuho1 .list .date .s {
	font-size: 0.8em;
	font-weight: 500;
}

.area_tour .sokuho1 .list .date .smp {
	display: none;
}

.area_tour .sokuho1 .list .area {
	display: block;
	margin: 0.3em auto 0;
	letter-spacing: 0.1em;
	font-weight: 900;
}


@media screen and (max-width: 640px) {
	.area_tour .sokuho1 .list li {
		font-size: 24rem;
	}
	.area_tour .sokuho1 .list .area {
		font-weight: 700;
	}
}
@media screen and (max-width: 540px) {

	.area_tour .sokuho1 .list li {
		width: 40%;
		width : -webkit-calc(50% - 10px) ;
		width : calc(50% - 10px) ;
		margin: 0 5px 1em;
	}

	.area_tour .sokuho1 .list .date .smp {
		display: inline;
	}
}

@media screen and (max-width: 340px) {

	.area_tour .sokuho1 .list li {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 0.5em 0;
	}
}


/****　速報2　****/
.area_tour .sokuho2 .list {
	margin: 4em auto 0;
}

.area_tour .sokuho2 .list li {
	margin: 0 auto 2em;
	font-size: 30rem;
	line-height: 1.3;
	font-family: 'Noto Serif JP', serif;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.area_tour .sokuho2 .list li a {
	text-decoration: none;
	color: #fff;
}

.area_tour .sokuho2 .list .date {
	display: block;
/*	padding: 0.5em 1em;
	outline: 1px groove rgba(214,192,117,0.8);
	outline-offset: -3px;*/
	font-size: 0.8em;
	color: #ceac50;
}

.area_tour .sokuho2 .list .date .s {
	font-size: 0.8em;
	font-weight: 500;
}

.area_tour .sokuho2 .list .date .smp {
	display: none;
}

.area_tour .sokuho2 .list .area {
	display: block;
	margin: 0.3em auto 0;
	letter-spacing: 0.1em;
	font-weight: 500;
}

.area_tour .sokuho2 .list .area .city {
	display: inline-block;
	margin-right: 0.8em;
}

/*.area_tour .sokuho2 .list .area .city::after {
	content: "・";
	color: #ceac50;
}*/

.area_tour .sokuho2 .list .area::after {
	content: "";
	display: inline-block;
	width: 0.7em;
	height: 0.7em;
	background: url("../images/icon_link.svg") no-repeat;
	background-size: contain;
	margin-left: 0.2em;
}

@media screen and (max-width: 640px) {
	.area_tour .sokuho2 .list li {
		font-size: 24rem;
	}
}
@media screen and (max-width: 430px) {
	.area_tour .sokuho2 .list li {
		font-size: 20rem;
	}
}

@media screen and (max-width: 360px) {
	.area_tour .sokuho2 .list li {
		font-size: 18rem;
	}
}

@media screen and (max-width: 320px) {
	.area_tour .sokuho2 .list .area .city {
		display: block;
		margin: 0 auto 0.2em;
	}
	.area_tour .sokuho2 .list .area .city::before {
		content: "―";
		margin-right: 0.2em;
		color: #ceac50;
	}
	.area_tour .sokuho2 .list .area .city::after {
		content: "―";
		margin-left: 0.2em;
		color: #ceac50;
	}
}


/****************************************

　グッズ

*****************************************/

.area_goods {
    margin: 6em auto 0;
}

.area_goods .box {
	margin: 0 auto 6em;
}

.area_goods .list{
	margin: 0 auto 1.5em;
	padding: 1em;
	background: rgba(0,0,0,0.5);
	border: 2px groove #ceac50;
	color: #fff;
}

.area_goods .list > dt {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto 0.5em;
	padding: 0.5em;
	background: #ceac50;
	font-size: 22rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
	line-height: 1.2;
	color: #000;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.area_goods .list > dd {
	padding: 1em;
/*	border-top: none;	*/
	text-align: center;
	/*color: #1a0502;*/
}

.area_goods .list .name {
	display: inline-block;
	margin: 0 0.5em;
}

.area_goods .list .name .note {
	display: inline-block;
	font-size: 0.7em;
}

.area_goods .list .price {
	display: inline-block;
	margin: 0 0.5em;
}
.area_goods .list .price .s {
	font-size: 0.8em;
}

.area_goods .list .photo {
	margin: 0 auto;
	padding: 1em;
/*	background: rgba(255,255,255,0.8);*/
	background: #fff;
}

.area_goods .list .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_goods .list.ac .photo img { max-width: 639px;}
.area_goods .list.poster .photo img { max-width: 531px;}
.area_goods .list.magnet .photo img { max-width: 772px;}
.area_goods .list.program .photo img { max-width: 300px;}
.area_goods .list.towel .photo img { max-width: 470px;}
.area_goods .list.pouch .photo img { max-width: 738px;}
.area_goods .list.bag .photo img { max-width: 656px;}
.area_goods .list.ts .photo img { max-width: 788px;}
.area_goods .list.charm .photo img { max-width: 680px;}
.area_goods .list.file .photo img { max-width: 666px;}

.area_goods .list .list_cont {
	display: inline-block;
	margin: 2em auto 1em;
}

.area_goods .list .list_cont dt {
	margin-bottom: 0.5em;
	border-top: 1px solid #ceac50;
	border-bottom: 1px solid #ceac50;
	color: #ceac50;
}

.area_goods .list .list_cont dd {
	padding: 1em 3em 0;
	text-align: left;
}
.area_goods .list .list_cont li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.area_goods .list .list_cont .mark {
	color: #ceac50;
}

.area_goods .list .list_cont .lbl {
	display: inline-block;
	margin-right: 0.2em;
	padding: 0.2em 1em;
	border: 2px solid #ceac50;
	border-radius: 5px;
	font-size: 0.8em;
	line-height: 1;
	color: #ceac50;
	text-align: center;
	text-indent: 0;
}

.area_goods .list .catch {
	padding: 1em 2em;
/*	background: rgba(255,255,255,0.05);*/
	/*border: 1px groove #ceac50;*/
	border-radius: 10px;
/*	border-top: 1px dotted #ceac50;
	border-bottom: 1px dotted #ceac50;*/
	font-size: 16rem;
	font-weight: 400;
	text-align: left;
	color: #ceac50;
}

.area_goods .list .data {
	margin: 2em auto 0.5em;
	padding: 0 0.5em;
	font-size: 0.8em;
	font-weight: 400;
	line-height: 1.5;
	text-align: right;
}

.area_goods .list.ts .data {
	margin: 1em auto 1em;
	font-size: 18rem;
	text-align: center;
}

.area_goods .list .data li {
	display: inline-block;
}

.area_goods .list .data li:not(:last-of-type)::after {
	content: "／";
	padding-left: 0.5em;
}

.area_goods .list .credit {
	padding: 0 0.5em;
	text-align: right;
	font-size: 0.9em;
}

.area_goods .list .credit .lbl {
	font-size: 0.7em;
}

.area_goods .list .caution {
	text-align: center;
	font-size: 0.9em;
}

.area_goods .list .ts_size table{
	width: 100%;
	max-width: 600px;
	margin: 0.5em auto 0;
	font-size: 0.8em;
	font-weight: 400;
}

.area_goods .list .ts_size th,
.area_goods .list .ts_size td {
	border: 1px groove #ceac50;
}
.area_goods .list .ts_size th {
	background: rgba(255,255,255,0.05);
	font-weight: normal;
}

@media screen and (max-width: 580px){

	.area_goods .list .name {
		display: block;
		margin-bottom: 0.3em;
		padding-bottom: 0.3em;
		border-bottom: 1px groove #000;
		line-height: 1.3;
	}
	.area_goods .list .price {
		display: block;
		margin: 0 auto;
	}
	
		.area_goods .list .list_cont dd {
		padding: 0 0.5em;
	}
	.area_goods .list .catch {
		padding: 1em 1.5em;
	}
}

@media screen and (max-width: 450px){
	.area_goods .list .data {
		font-size: 0.9em;
	}
}

@media screen and (max-width: 400px){
	.area_goods .list > dt {
		font-size: 20rem;
	}
	.area_goods .list .data li {
		font-size: 0.8em;
	}
}

@media screen and (max-width: 340px){
	.area_goods .list .name .note {
		font-size: 0.7em;
	}
}


.area_goods .caution {
	display: inline-block;
	margin: 2em auto;
	text-align: left;
}

.area_goods .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.9em;
	font-weight: 400;
}

.area_goods .sale {
	margin: 3em auto 0;
}

.area_goods .sale > dt{
	padding: 0 0.5em 0.3em;
	color: #ceac50;
	font-weight: 700;
    font-size: 24rem;
    text-align: left;
	line-height: 1.5;
}


.area_goods .sale > dt::before {
	content: "●";
	margin-right: 0.2em;
	color: #ceac50;
}

.area_goods .sale > dd{
	margin-bottom: 2em;
/*	padding: 20px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;*/

}

@media screen and (max-width: 430px){

	.area_goods .sale > dt{
		text-align: center;
	}

	.area_goods .sale > dt::before {
		content: none;
	}
	
/*	.area_goods .sale > dd{
		padding: 10px;
	}*/

}

.area_goods .sale table {
	width: 100%;
	margin: 0 auto;
	border: 1px groove #ceac50;
	background: rgba(0,0,0,0.5);
}

.area_goods .sale th,
.area_goods .sale td {
	padding: 1em;
	border: 1px groove #ceac50;
	vertical-align: middle;
}

.area_goods .sale th {
	width: 8em;
	background: rgba(255,255,255,0.05);
	white-space: nowrap;
}

.area_goods .sale td {
	text-align: left;

}
.area_goods .sale .kikan {
	margin: 0.5em auto 0;
}
.area_goods .sale .kikan li{
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}
.area_goods .sale .kikan li:before {
	content: "・";
	color: #ceac50;
}
.area_goods .sale .kikan .theater,
.area_goods .sale .kikan .day {
	display: inline-block;
	margin: 0 0.5em;
	text-indent: 0;
	padding-left: 0;
}
.area_goods .sale .kikan .day {
	width: 18em;
}

.area_goods .sale .btn_order {
	display: block;
	width: 10em;
	margin: 0.5em 0;
	padding: 0.5em 1em 0.5em;
	border-radius: 1px;
	outline: 1px solid #ceac50;
	text-decoration: none;
	font-weight: 700;
	font-size: 24rem;
	text-align: center;
	color: #ceac50;
	line-height: 1;
	transition: 0.5s;
}

.area_goods .sale .btn_order.ls {
	letter-spacing: 0.1em;
}

.area_goods .sale .btn_order .icon {
	margin-right: 0.2em;
	transition: 0.5s;
}

.area_goods .sale .btn_order:hover {
	background: rgba(255,255,255,0.1);
	color: #fff;
}

.area_goods .sale .note {
	display: block;
	padding: 0.5em;
	font-size: 0.9em;
	line-height: 1.5;
}

/**　削除用タイマー　**/
.area_goods .sale .js-time_limited{
  display: none;
}
.area_goods .sale .js-time_limited_fire{
  display: block;
}
/**　//削除用タイマー　**/

.area_goods .sale .link {
	text-decoration: underline;
	color: #ceac50;
}

@media screen and (max-width: 580px){
	.area_goods .sale .kikan .theater {
		display: block;
	}
}

@media screen and (max-width: 430px){
	.area_goods .sale table {
		width: 100%;
		border: 1px groove #ceac50;
	}
	
	.area_goods .sale th,
	.area_goods .sale td {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		padding: 0.5em;
		box-sizing: border-box;
		text-align: center;
	}
	.area_goods .sale th {
		display: block;
		width: 100%;
		border-right: none;
		border-left: none;
/*		border-top: 1px groove #ceac50;
		border-bottom: 1px groove #ceac50;
		background: rgba(17,2,43,0.8);*/

		text-align: center;
	}

	.area_goods .sale td {
		display: block;
		width: 100%;
		padding: 10px 1em;
		border: none;
	}

	.area_goods .sale .kikan li:before {
		content: none;
	}
	.area_goods .sale .kikan .theater,
	.area_goods .sale .kikan .day {
		display: block;
		width: auto;
	}
/*	.area_goods .sale .kikan .theater {
		color: #ceac50;
	}*/

	.area_goods .sale .btn_order {
		margin: 0 auto;
		width: 80%;
	}
}

/**　臨時販売　**/
.area_goods .rinji {
	text-align: left;
	margin: 4em auto 0;
	padding: 2em;
	border: 1px groove #ceac50;
	border-radius: 3px;
	background: rgba(0,0,0,0.5);
}
.area_goods .rinji .lead {
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px groove #ceac50;
	color: #ceac50;
	font-size: 20rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.area_goods .rinji table {
	width: 100%;
	margin: 0 auto;
	border: 1px groove #ceac50;
	background: rgba(0,0,0,0.5);
}

.area_goods .rinji th,
.area_goods .rinji td {
	padding: 1em;
	border: 1px groove #ceac50;
	vertical-align: middle;
}

.area_goods .rinji th {
	width: 8em;
	background: rgba(255,255,255,0.05);
	white-space: nowrap;
}

.area_goods .rinji td {
	text-align: left;

}

.area_goods .rinji td.space .pk {
	display: inline-block;
	margin: 0 0.5em;
}
.area_goods .rinji .caution {
	padding: 0 1em;
}
.area_goods .rinji .note {
	display: block;
	padding: 0.5em;
	font-size: 0.9em;
	line-height: 1.5;
}

@media screen and (max-width: 430px){
	.area_goods .rinji table {
		width: 100%;
		border: 1px groove #ceac50;
	}
	
	.area_goods .rinji th,
	.area_goods .rinji td {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		padding: 0.5em;
		box-sizing: border-box;
		text-align: center;
	}
	.area_goods .rinji th {
		display: block;
		width: 100%;
		border-right: none;
		border-left: none;
		text-align: center;
	}

	.area_goods .rinji td {
		display: block;
		width: 100%;
		padding: 10px 1em;
		border: none;
	}

}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 330px){
	.area_goods .rinji {
		padding: 1em;
	}
	.area_goods .rinji .lead {
		text-align: left;
		font-weight: 500;
	}
	.area_goods .rinji .lead .pk {
		display: inline;
	}
}

/**　劇場グッズ　**/


.area_goods .area_theater {
	text-align: left;
	margin: 4em auto 0;
	padding: 1em;
	border: 1px groove #ceac50;
	border-radius: 3px;
	background: rgba(0,0,0,0.5);
}

.area_goods .area_theater a {
	text-decoration: none;
}

.area_goods .area_theater > dt{
	padding: 0.5em 0 1em;
	border-bottom: 1px groove #ceac50;
	color: #ceac50;
	font-weight: 700;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
}

.area_goods .area_theater > dd{
	padding: 20px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;

}

.area_goods .area_theater .btn  {
	display: block;
	width: 10em;
	margin: 0.5em auto;
	padding: 0.5em 1em 0.5em;
	border-radius: 1px;
	outline: 1px solid #ceac50;
	text-decoration: none;
	font-weight: 700;
	font-size: 24rem;
	text-align: center;
	color: #ceac50;
	line-height: 1;
	transition: 0.5s;
}

.area_goods .area_theater .btn.ls {
	letter-spacing: 0.1em;
}

.area_goods .area_theater .btn .icon {
	margin-right: 0.2em;
	transition: 0.5s;
}

.area_goods .area_theater .btn:hover {
	background: rgba(255,255,255,0.1);
	color: #fff;
}


@media screen and (max-width: 500px){
	.area_goods .area_theater > dt {
		font-size: 18rem;
	}
	.area_goods .area_theater .btn  {
		width: 90%;
		max-width: 200px;
		font-size: 20rem;
	}
}



