@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: 'Spicy Rice', cursive;
font-weight: normal;
***/

/*** 色 ****/
/*
黄色　#fff000; rgba(255,240,0,1);
紫色　#5a1963; rgba(81,22,88,1);
暗い紫　#11022b; rgba(17,2,43,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;}


/********リンク********/
a{ color:#fff000;}
a:hover{ color: #fff000;}


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;}


/*******　スクロールで表示　*******/

.fade {}

.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


/******************************************
　エフェクト
******************************************/

.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;
  }
}
 
.blurTrigger {
    opacity: 0;
}

/******************************************
　構造
******************************************/

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;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #5a1963;
	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:center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: cover;
	background-color: #5a1963;
}


@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: 768px) {}

@media screen and (max-width: 400px) {
    .main {
	    padding: 0 1em;
    }
}


/*******************************************
	メニュー　ナビ
********************************************/

/****　ハンバーガーメニュー　****/
*, *:before, *:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.cp_offcm03 {
    z-index: 100;    
    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: 970px) {
    .cp_offcm03 {
        position: absolute;
        position: fixed;        
        left: -340px;
        width: 340px;
        height: 100%;
        padding-top: 50px;
        color: #fff;
        background-color: rgba(17,2,43,0.8);
    }
    .cp_offcm03 nav {
        background: none;
        text-align: left;
    }
    .cp_offcm03 nav .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 10px;
        width: 100%;
        height: 50px;
        color: #ffffff;
        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;
    }
    .cp_menuicon > span.border {
        display: block;
        position: absolute;
        top: 55%;
        margin-top: -0.3em;
        width: 100%;
        height: 0.3em;
        border-radius: 1px;
        background-color: #fff000;
        -webkit-transition: transform .3s ease;
                transition: transform .3s ease;
/*        box-shadow: 2px 2px 0 rgba(0,0,0,0.9);*/
    }
    .cp_menuicon > span.border:before,
    .cp_menuicon > span.border:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 1px;
        background-color: #fff000;
        -webkit-transition: transform .3s ease-in;
                transition: transform .3s ease-in;
/*        box-shadow: 2px 2px 0 rgba(1,22,75,0.8);*/

    }
    .cp_menuicon > span.border:before {
        -webkit-transform: translateY(-0.6em);
                transform: translateY(-0.6em);
        margin-left: -15px;
    }
    .cp_menuicon > span.border:after {
        -webkit-transform: translateY(0.6em);
                transform: translateY(0.6em);
        margin-left: -15px;
    }
    .cp_menuicon > span.lbl {
        display: block;
  		position: absolute; 
        top:75%;
        font-weight: 500;
        font-size: 0.7em;
        color: #fff000;
		text-indent: -0.2em;
/*        text-shadow: 1px 1px 0 rgba(1,22,75,0.8);*/
	
    }

    #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.cp_menuicon > span.border {
        background-color: #fff000;
        box-shadow: none;
    }
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon.cp_menuicon > span.border:before,
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon.cp_menuicon > span.border:after {
        background-color: #fff000;
        box-shadow: none;
    }
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon > span.lbl {
        display: none;
    }

    
    /* content */
    .cp_container {
        top: 60px;
        height: 92vh;
    }
}
@media (max-width: 970px) {
    .cp_offcm03 {
        left: -300px;
        width: 300px;
    }
    .cp_menuicon > span.lbl {
		text-indent: 0;
	
    }
}

/****　ハンバーガーメニュー　ここまで　****/


nav {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 10000;
    display: block;
    padding: 0.8em 0 0;
    text-align: center;
    animation: fadeIn 2s ease-in 0s 1 normal;
	border-bottom: 3px groove  rgba(255,240,0,0.8);
	background:  rgba(17,2,43,0.8);
}

nav .nav_list {
	padding: 0 1em;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;

}

nav .nav_list a {
	color: #fff;
    text-decoration: none;
}
nav .nav_list a:hover {
    transition-duration: 0.5s;
}

nav .nav_list .nav_item {
    display: inline-block;
    margin: 0 0.5em 0.8em;
    vertical-align: top;
    font-size: 24rem;
    line-height: 1;
    text-align: center;
	transition: 0.2s;     
}

nav .nav_list .nav_item .en {
    display: block;
    color: #fff000;
	font-family: 'Spicy Rice', cursive;
	font-weight: normal;
}

nav .nav_list .nav_item .jp {
    display: block;
    margin: 0.3em auto 0;
    font-size: 0.5em;
	color: #fff;
	font-weight: 500;
	transition: 0.5s;
}

nav .nav_list .nav_item:hover .jp {
	color: #fff;
}

nav .nav_list .nav_item.time a {
	padding: 0.2em 1.5em 0.2em;
	box-shadow: 0 0 10px inset rgba(0,0,0,0.5);
	background: url("../images/bg_btn2.jpg") no-repeat;
	background-color: #fff000;
	background-size: auto;
	border-radius: 1px;
	outline: 1px solid rgba(0,0,0,0.3);
	outline-offset: -2px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #000;
	text-shadow: 2px 2px 5px #fff000, -2px -2px 5px #fff000,0 0 30px #fff000;
	line-height: 1;
	letter-spacing: 0.05em;
	font-size: 16rem;
}


nav .nav_list .nav_item.sns {
    float: right;
	margin-bottom: 0;
	font-size: 2em;
}

nav .nav_list .nav_item.sns a {
	color: #fff000;
}

.cp_mobilebar .sns_smp {
    display: none;
}


nav .nav_list .res_nav {
    display: none;
}

nav .nav_list .nav_ban {
    display: inline-block;
	margin-top: -0.3em;
	border: 3px solid #fff000;
	border-radius: 3px;
    font-family: 'Noto sans JP', serif; 
    font-weight: 700;
	font-size: 16rem;
	color: #fff000;
}

nav .nav_list .nav_ban a {
	display: inline-block;
	padding: 0.5em 1em;
	color: #fff000;
}


@media screen and (max-width: 1170px) {
    nav .nav_list .res_nav {
        display: inline;
    }
}

@media screen and (max-width: 970px) {
	nav {
		border-bottom: none;
	}
    nav .nav_list .res_nav {
        display: none;
    }
	
    nav .nav_list {
        padding-top: 60px;

    }
    
    nav .nav_list .nav_item {
        display: block;
        margin: 20px 0;
        text-align: left;
        line-height: 1.5;
	}

	nav .nav_list .nav_item.sns {
		display: none;
	}
	
	.cp_mobilebar .sns_smp {
		display: inline-block;
		float: right;
		margin-bottom: 0;
		font-size: 40rem;
	}
	
	.cp_mobilebar .sns_smp a {
        color: #fff000;
	}
	
    nav .nav_list a {
        color: #fff;
    }
    nav .nav_list a:hover {
        color: #fff000;
    }

    nav .nav_list .en {

    }
    
    nav .nav_list .res_nav {
        display: none;
    }
	
	nav .nav_list .nav_ban {
		display: block;
		margin: 0 auto 1em;
		background: #fff000;
		font-weight: 900;
		text-align: center;
	}
	nav .nav_list .nav_ban a {
		color: #01164b;
	}
 
}

@media screen and (max-height: 780px) {
  nav {
	position: relative;
  }
}

@media print {
	nav {
		display: none;
    }
}


/****************************************

　ビリング

*****************************************/

.area_billing .billing {
	width: 100%;
	max-width: 800px;
	margin: 6em auto 4em;
}
.area_billing .billing img{
	display: block;
	width: 100%;
}


@media screen and (max-width: 800px) {
	.area_billing .billing {
		width: 80%;
		margin: 4em auto;
	}
}

/*******************************************
	フッター
********************************************/

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 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 {
	margin: 1em auto 0;
}

footer .policy_link li {
	display: inline-block;
	margin: 0 auto 1em;
}

footer .policy_link li:not(:last-of-type)::after {
	content: "｜";
	margin: 0 0.5em;
}

footer .policy_link li a {
	text-decoration: none;
	color: #fff;
	font-size: 16rem;
	font-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}


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: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #fff000;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}
@media screen and (max-width: 768px) {

}


/****************************************

　見出し

*****************************************/

.heading_sec {
    margin: 0 auto 1em;
    font-size: 60rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);   
    text-align: center;
}

.heading_sec .en {
    display: block;
    color: #fff000;
	font-family: 'Spicy Rice', cursive;
	font-weight: normal;
}

.heading_sec .en .s {
	font-size: 0.8em;
}

.heading_sec .jp {
    display: block;
    color: #fff;
	font-size: 0.3em;
	font-weight: 700;
}

@media screen and (max-width: 440px) {

	.heading_sec {
		font-size: 40rem;
	}
}

@media screen and (max-width: 300px) {

	.heading_sec {
		font-size: 34rem;
	}
}

.heading_sec_sub {
    display: block;
    font-size: 40rem;
    color: #fff000;
	font-family: 'Spicy Rice', cursive;
	font-weight: normal;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);  
}



/*******************************************
　メインビジュアル
********************************************/
.area_visual {
	margin: 100px auto 10em;
}

.area_visual .area_info {
	margin: 0 auto 1.5em;
}

.area_visual .area_info .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
	padding: 0.5em 1em;
	background-color: rgba(17,2,43,0.5);
	border: 2px solid #fff000;
	border-radius: 5px;
	color: #fff000;
	font-size: 20rem;
	line-height: 1.5;
	font-weight: 700;
	font-style: normal;
	text-decoration: none;
	transition: 0.5s;
}

.area_visual .area_info .btn:hover {
	box-shadow: 0 0 20px rgba(255,240,0,1);
}

@media screen and (max-width: 880px){
	.area_visual .area_info .btn {
		font-size: 18rem;
	}
}

@media screen and (max-width: 470px){
	.area_visual .area_info .btn {
		display: block;
		width: 100%;
		margin: 0 auto 5px;
	}
}

@media screen and (max-width: 360px){
	.area_visual .area_info .btn {
		font-size: 16rem;
	}
}

.area_visual .visual{
	width: 100%;
	height: auto;	
	max-width: 900px;
    margin: 0 auto;
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

.area_visual .visual img {
    display: block;
	width: 100%;
	height: auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);  
}

.area_visual .visual .wrap_credit {
	margin: 0 auto 2em;
}

.area_visual .visual .wrap_credit::after{
  content: "";
  display: block;
  clear: both;
}

.area_visual .visual .credit1 {
	margin-top: 0.8em;
	float: right;
	font-size: 13rem;
	font-weight: 500;
	text-align: right;
	color: rgba(255,255,255,0.9);
	text-shadow: 0 0 10px #000;
}

.area_visual .visual .credit2 {
	float: left;
	max-width: 220px;
}

.area_visual .visual .credit2 img {
	width: 100%;
}

@media screen and (max-height: 780px) {
	.area_visual {
		margin-top: 70px;
	}
}

@media screen and (min-width: 768px) and (max-height: 780px) {
	.area_visual {
		margin-top: 40px;
	}
}


@media print {

	.area_visual .visual{
		display: none;
	}
}


@media (orientation: portrait) { /**　画面が縦長の時　**/
}


/*******************************************

	キャスト

********************************************/

.area_cast.sec {
	max-width: initial;
}

/***　プリンシバル　***/

.area_cast .list_p {
	margin: 1em auto 6em;
	line-height: 1.5;
	font-size: 28rem;
	font-weight: 700;
}

.area_cast .list_p:first-of-type {
	margin-top: 4em;
}

.area_cast .list_p li:not(.cast_w_item) {
	margin: 0 auto 3em;
}

.area_cast .list_p .photo {
	display: block;
	max-width: 240px;
	margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.5); 
}

.area_cast .list_p .photo img{
	display: block;
	width: 100%;
}

.area_cast .list_p .photo.hide {
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

.area_cast .list_p .yaku {
	display: block;
	margin-top: 0.5em;
	font-size: 0.7em;
	color: #fff000;
	font-feature-settings: "palt";
}

.area_cast .list_p .yaku .note {
	display: block;
	font-size: 0.7em;
	font-weight: 500;
}

.area_cast .list_p .yaku .note::before {
	content: "（";
}

.area_cast .list_p .yaku .note::after {
	content: "）";
}

.area_cast .list_p .name {
	display: block;
	letter-spacing: 0.1em;
}


/***　プリンシバル　Wキャスト　***/
.area_cast .list_p li .cast_w_item {
	display: inline-block;
/*	margin: 0 1em 2em;*/
	margin: 0 1em;
}

@media (max-width: 768px) {
	.area_cast .list_p {
		font-size: 22rem;
	}
	.area_cast .list_p .photo {
		max-width: 190px;
	}
}

@media (max-width: 530px) {
	.area_cast .list_p .photo {
		max-width: 160px;
	}
	.area_cast .list_p li .cast_w_item:not(:last-of-type) {
		margin: 0 0.5em 3em;
	}
}

@media print {
	.area_cast .list_p .photo.hide {
		background: none;
	}
}

/***　子役　***/
.area_cast .list_k {
	margin: 1em auto 6em;
	line-height: 1.5;
	font-size: 22rem;
	font-weight: 700;
}

.area_cast .list_k li:not(.cast_w_item),
.area_cast .list_k li:not(.cast_t_item){
	margin: 0 auto 3em;
}

.area_cast .list_k .photo {
	display: block;
	max-width: 180px;
	margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.5); 
}

.area_cast .list_k .photo img{
	display: block;
	width: 100%;
}

.area_cast .list_k .yaku {
	display: block;
	margin-top: 0.5em;
	font-size: 0.7em;
	color: #fff000;
	font-feature-settings: "palt";
}

.area_cast .list_k .yaku .note {
	display: block;
	font-size: 0.7em;
	font-weight: 500;
}

.area_cast .list_k .yaku .note::before {
	content: "（";
}

.area_cast .list_k .yaku .note::after {
	content: "）";
}

.area_cast .list_k .name {
	display: block;
}


/***　子役　Wキャスト、トリプルキャスト　***/
.area_cast .list_k li .cast_w_item {
	display: inline-block;
	margin: 0 0.5em 2em;
}
.area_cast .list_k li .cast_t_item {
	display: inline-block;
	margin: 0 0.5em 2em;
}

.area_cast .list_k li .res_list_k {
	display: none;
}

.area_cast .list_k li .cast_t_item.empty {
	display: none;
}


@media (max-width: 768px) {
	.area_cast .list_k {
		font-size: 18rem;
	}
	.area_cast .list_k .photo {
		max-width: 140px;
	}
}

@media (max-width: 530px) {
	.area_cast .list_k .photo {
		max-width: 120px;
	}
}

@media (max-width: 470px) {
}


@media (max-width: 299px) {
	.area_cast .list_k li:not(.cast_w_item),
	.area_cast .list_k li:not(.cast_t_item){
		display: block;
	}
	.area_cast .list_k li .cast_w_item,
	.area_cast .list_k li .cast_t_item{
		display: block;
	}
	.area_cast .list_k li .res_list_k {
		display: none;
	}
	.area_cast .list_k li .cast_t_item.empty {
		display: none;
	}
}

/***　アンサンブル　***/
.area_cast .list_e {
	margin: 1em auto 6em;
	line-height: 1.5;
	font-size: 22rem;
	font-weight: 700;
}

.area_cast .list_e li {
	display: inline-block;
	margin: 0 0.5em 2em;
	vertical-align: top;
}

.area_cast .list_e .photo {
	display: block;
	max-width: 180px;
	margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.5); 
}

.area_cast .list_e .photo img{
	display: block;
	width: 100%;
}

.area_cast .list_e .name {
	display: block;
	margin-too: 0.5em;
}
.area_cast .list_e .note {
	display: block;
	margin: 2em 0 0;
	font-size: 0.7em;
	text-align: right;
	font-weight: 400;
}

.area_cast .list_e .swing {}

.area_cast .list_e .swing .s_note {
	display: block;
	line-height: 1;
	font-size: 0.6em;
	font-weight: 400;
}

.area_cast .list_e li.empty {
	width: 180px;
}

.area_cast .list_e .res {
	display: none;
}

@media (max-width: 768px) {
	.area_cast .list_e {
		font-size: 18rem;
	}
	.area_cast .list_e .photo {
		max-width: 140px;
	}

	.area_cast .list_e li.empty {
		width: 140px;
	}
}

@media (max-width: 530px) {
    .area_cast .list_e .pk {
        display: inline;
    }

    .area_cast .list_e .res {
        display: inline;
    }
}

/****************************************

　チケット＆クリエイティブ

*****************************************/

.area_create .list {
	margin: 1em auto 3em;
	line-height: 1.5;
	font-size: 20rem;
}

.area_create .list::after{
  content: "";
  display: block;
  clear: both;
}

.area_create .list .work {
	display: block;
	float: left;
	width : 48% ;
	width : -webkit-calc(50% - 1em) ;
	width : calc(50% - 1em) ;
	margin-bottom: 0.5em;
	padding-right: 1em;
	color: #fff000;
	font-weight: 500;
	text-align: right;
}
.area_create .list .name {
	display: block;
	float: left;
	width: 50%;
	margin-bottom: 0.5em;
	font-weight: 500;
	text-align: left;
}
.area_create .list .name.palt {
	font-feature-settings: "palt";
}

@media screen and (max-width: 440px){
	.area_create .list {
		font-size: 18rem;
	}
	.area_create .list .work {
		float: none;
		width: 100%;
		margin-bottom: 0;
		text-align: center;
		font-size: 0.7em;
	}
	.area_create .list .work::after {
		content: none;
	}
	.area_create .list .name {
		float: none;
		width: 100%;
		margin-bottom: 0.8em;
		text-align: center;
	}
}



/****************************************

　チケット＆スケジュール

*****************************************/

.area_ticket {
    margin: 6em auto 0;
}
.area_ticket .sokuho {}

.area_ticket .sokuho .list_sch {
    margin: 0 auto;
}

.area_ticket .sokuho .list_sch dt {
    display: flex;
    align-items: center;
    font-size: 1.3em;
    font-weight: 900;
    color: #fff000;
}

.area_ticket .sokuho .list_sch dt:before,
.area_ticket .sokuho .list_sch dt:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #fff000;
}

.area_ticket .sokuho .list_sch dt:before {
    margin-right: 1em;
}

.area_ticket .sokuho .list_sch dt:after {
    margin-left: 1em;
}

.area_ticket .sokuho .list_sch dd {
    margin-bottom: 1em;
}

.area_ticket .sokuho .list_sch .sch {
    max-width: 700px;
    width: 80%;
    margin: 0 auto 0;
}

.area_ticket .sokuho .list_sch .sch img {
    display: block;
    width: 100%;
}

.area_ticket .sokuho .list_sch .theater {
    max-width: 500px;
    width: 60%;
    margin: 0.5em auto 0;
}

.area_ticket .sokuho .list_sch .theater img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 340px){
}


.area_ticket .sokuho .list_outline {
	text-align: left;
	max-width: 900px;
	margin: 3em auto 0;
	background: rgba(17,2,43,0.5);
	border: 1px solid #fff000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.area_ticket .sokuho .list_outline > dt{
	padding:0.5em 0;
	background:  rgba(17,2,43,0.8);
	border-top: 1px solid #fff000;
	border-bottom: 1px solid #fff000;
	color: #fff000;
	font-weight: 700;
    font-size: 1.3em;
    text-align: center;
	line-height: 1.5;
}
.area_ticket .sokuho .list_outline > dt .note {
    font-size: 0.7em;
}
.area_ticket .sokuho .list_outline > dd {
	padding: 1em;
	border-top: none;	
	text-align: center;
}

.area_ticket .sokuho .list_outline .price {}
.area_ticket .sokuho .list_outline .price li {
    display: inline-block;
    margin: 0 0.5em;
}

/****************************************

　ツアー

*****************************************/

.area_tour {
    margin: 8em auto 0;
}
.area_tour .sokuho .list {}
.area_tour .sokuho .list li {
    display: inline-block;
    margin: 0 0.5em;
    font-size: 1.8em;

}

.area_tour .sokuho .list li .sch {
    display: inline-block;
    margin: 0 0.25em;
    font-weight: 900;
    color: #fff000;
}
.area_tour .sokuho .list li .area {
    display: inline-block;
    margin: 0 0.25em;
    font-weight: 700;
}

/***************************************************

　ムービー

**************************************************/

.area_movie {
    margin: 10em auto 0;
}

.area_movie .list {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto;
/*    padding: 10px;*/
}

.area_movie .list.center {
    justify-content: center;
}

.area_movie .item{
    width: 100%;
    justify-content: center;
	max-width: 900px;
    margin: 0 auto 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_movie .name {
    margin-bottom: 0.5em;
    padding: 0.3em 1em;
    font-size: 20rem;
    color: #fff;
	font-weight: 500;
    line-height: 1.3;
	text-align: center;
}

.area_movie .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.area_movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #fff000;  
}

@media screen and (max-width: 768px){
    .area_movie .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_movie .item{
        margin: 0 auto 2em;
    }
	.area_movie .name {
		margin-bottom: 0;
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_movie .name {
        font-size: 16rem;
		font-weight: 700;

    }
    .area_movie .list {
    } 
}



