@charset "utf-8";
/* CSS Document */

/***font
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900
font-family: 'Fjalla One', sans-serif; EN
***/

/***color
green　#8ea99b;
green2 #8ea99b;
red　#ad2f30;
***/

/******フェードイン*****/

/*.fadein {
    animation-name: fadein;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/********リンク********/
a {
    color: #ad2f30;
    text-decoration: none;}
a:hover{}


a:hover img{
  filter: alpha(opacity=70);
  opacity: 0.7;
  zoom: 1.0;
  }

a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}

.point {color:#FF0004;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.pk {
	display: inline-block;
}

.hidden {
	display: none;
}

.pack {
    display: inline-block;
}

.pack2 {
    display: inline-block;
	margin: 0 0.5em;
}

html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
} 

body{
	margin: 0;
	padding: 0;
	font-size: 18em;
	line-height:2;
	color:#fff;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;    
	background-color: #8ea99b;
  
}

body:before{
	content: "";
    display: block;
    position: fixed;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
/*    background-image: url(../images/.png);
    background-position: center;
    background-size: contain;*/
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}


/****************************************

　ページトップへ戻るボタン

*****************************************/


#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
	padding: 0.3em;
    line-height: .5;
	z-index: 1000;
}

#pagetop a {
	text-decoration: none;
	color: rgba(255,255,255,0.2);
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 3em;

}


/****************************************

　フッター

*****************************************/

.btn_close {
	text-align: center;
	font-weight: 700;
}

footer{
	width: 100%;
	margin: 6em auto 0;
    padding: 1.5em 0 0;
	text-align: center;
	font-size: 16rem;
	bottom: 0;
	color: #000;
}

.footer .copy {
	display: block;
	margin-bottom: 1em;
    font-family: 'Noto Sans JP', serif;    
    font-weight: 400;
}

.footer .copy .item {
	display: inline-block;
	margin: 0 0.8em;
    font-family: 'Noto Sans JP', serif;    
    font-weight: 500;
	line-height: 63px;
}
.footer .copy .item img {
	vertical-align: middle;
}

footer .sns_link {
	margin: 4em auto 1em;
}

footer .sns_link li {
    display: inline-block;
	width: 40px;
    margin: 0 15px;
    text-align: center;
    vertical-align: middle;
}
footer .sns_link li img {
	width: 100%;
}
footer .sns_link li.twi a {
	display: block;
	margin-top: -15px;
}


@media screen and (max-width: 500px){
}
@media screen and (max-width: 414px){
    footer{
        font-size: 14rem;
    }
}
footer .policy_link {
	display: block;
    margin-bottom: 1em;
	font-weight: 400;
}

footer .policy_link .link a {
    display: inline-block;
	margin: 0 1em;
	text-decoration: none;
	color: #000;
	font-size: 14rem;
	font-weight: 700;
}

footer .policy_link .link a:hover {
	text-decoration: underline;
}

footer .policy_link .link:not(:last-of-type)::after {
	content: "|";
	padding: 0 0.5em;
	color: #000;
}

footer .policy_link {
	display: block;
    margin-bottom: 1em;
	font-weight: 400;
}

footer .policy_link .link a {
    display: inline-block;
	margin: 0 1em;
	text-decoration: none;
	color: #000;
	font-size: 14rem;
	font-weight: 700;
}

footer .policy_link .link a:hover {
	text-decoration: underline;
}

footer .policy_link .link:not(:last-of-type)::after {
	content: "|";
	padding: 0 0.5em;
	color: #000;
}

footer .btn_sf {
	display: block;
	max-width: 740px;
	width: 95%;
	margin: 0 auto 2em;	
	padding: 0.5em 2em;
	background: #000;
	border-radius: 2em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 20rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	transition: 0.5s;
}
footer .btn_sf .icon {
    margin-right: 0.3em;
}
footer .btn_sf:hover {
	background: #ad2f30;
}
@media screen and (max-width: 340px){
    footer .btn_sf {
        padding: 0.5em 1em;
        font-size: 18rem;
    }
}


/****************************************

　ボックス

*****************************************/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
}

.sec {
	width: 100%;
    margin: 0 auto;
    padding: 0;
    opacity : 0;
/*    transform: translateY(20px);*/
    transition: all 1s;
}
.sec.scrollin {
	opacity: 1;
}

.sec .inner {
	max-width: 900px;
	width: 90%;
	margin: 0 auto;
	padding: 10em 0 10em;
}

/*.sec {
	opacity: 0;
	transition: opacity 2s;
}*/



@media screen and (max-width: 900px){
	.sec .inner2 {
		/*padding: 0 1em;*/
	}
}

.sec.c1 {
	background-color: #000;
	color: #fff;
}
.sec.c2 {
	background-color: #8ea99b;
	color: #000;
}


.heading_sec {
    margin: 0 auto 1em;
	padding: 0;
    font-size: 60rem;
	line-height: 1;
	text-align: left;
	font-family: 'Fjalla One', sans-serif;

}
.heading_sec .amp {
    margin: 0 0.3em;
}
.sec.c1 .heading_sec {
	color: #8ea99b;
}
.sec.c1 .heading_sec .c {
	color: #ad2f30;
	font-size: 0.8em;
}

.sec.c2 .heading_sec {
	color: #000;
}
.sec.c2 .heading_sec .c {
	color: rgba(0,0,0,0.5);
	font-size: 0.8em;
}



.anchor {
    margin-top: -3em;
    padding-top: 3em;
}

@media screen and (max-width: 300px){
	.heading_sec {
		font-size: 50rem;
	}
}


/***************************************************

　ポップアップ

**************************************************/
.popup_box {

}
.popup_box .popup_inner {
	margin: 0 auto;
	padding: 2em 2em;
}


/*****　動画　******/
.popup_area_movie .list {
	position: relative;
    max-width: 800px;
	width: 100%;
    margin: 40px auto 40px;
}
.popup_area_movie .item{
/*    flex-basis: 100%;*/
}

.popup_area_movie .name {
    margin-bottom: 5px;
    font-size: 24rem;
    font-weight: 900;
    color: #000;
    line-height: 1.5;
    z-index: 10;
    position: relative;
	text-align: center;
}
.popup_area_movie .name .pk {
	margin: 0 0.5em;
}

.popup_area_movie .youtube {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
/*	border:3px solid #000;
	border-radius: 10px;*/
}

.popup_area_movie .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
/*    border: 3px solid #bd3774;
    border-radius: 5px;*/
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}


@media screen and (max-width: 414px){
    .popup_area_movie .name {
        font-size: 14rem;
    }
    .popup_area_movie .list {
        margin-bottom: 10px;
    } 
}

/****************************************

　お知らせボタン

*****************************************/

.area_info{
	margin: 1em auto;
	padding: 0 1em;
}


.area_info .btn_audition {
	display: block;
	max-width: 740px;
	width: 100%;
	margin: 1em auto 0;
}
.area_info .btn_audition img {
	width: 100%;
}

.area_info .btn {
	display: block;
	max-width: 740px;
	width: 100%;
	margin: 0 auto;	
	padding: 0.5em 2em;
	background: #000;
	border-radius: 2em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 20rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	transition: 0.5s;
}

.area_info .btn:hover {
	background: #ad2f30;
}

.area_info .btn2 {
	display: block;
	max-width: 740px;
	width: 100%;
	margin: 0 auto 0.5em;	
	padding: 0.5em 2em;
	background: #fff;
    border: 1px solid #000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 20rem;
	font-weight: 700;
	color: #000;
	line-height: 1.3;
}

.area_info .btn3 {
	display: inline-block;
	max-width: calc(735px / 2);
	width: 100%;
	margin: 0 2px 0.5em;	
	padding: 0.5em 2em;
	background: #000;
	border-radius: 2em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 20rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	transition: 0.5s;
}

.area_info .btn3:hover {
	background: #ad2f30;
}

@media only screen and (max-width: 900px){
	.area_info {
		margin: 60px auto 1em;
	}
	.area_info .btn {
    	max-width: 700px;    
		padding: 0.5em 1em;
		font-size: 18rem;
	}
	.area_info .btn2 {
        max-width: 700px; 
		padding: 0.5em 1em;
		font-size: 18rem;
	}
	.area_info .btn3 {
    	max-width: calc(697px / 2);    
		padding: 0.5em 1em;
		font-size: 18rem;
	}
}

@media only screen and (max-width: 740px){
	.area_info .btn3 {
        display: block;
        max-width: 700px;
        margin: 0 auto 0.5em;
	}
}

@media only screen and (max-width: 500px){
	.area_info .btn {
		font-size: 16rem;
	}
	.area_info .btn2 {
		font-size: 16rem;
	}
	.area_info .btn3 {
		font-size: 16rem;
	}
}
@media only screen and (max-width: 400px){
	.area_info .btn {
		font-size: 14rem;
	}
	.area_info .btn2 {
		font-size: 14rem;
	}
	.area_info .btn3 {
		font-size: 14rem;
	}
}

/****************************************

　ビジュアル

*****************************************/

.area_visual {
    animation-name: fadein_visual;
    animation-duration: 3s;
    margin: 0 auto;
    padding: 0;
}

@keyframes fadein_visual{
    from{
    opacity: 0;
    transform: translatey(20px);
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}


.area_visual .btn_info {
	display: block;
	max-width: 740px;
	width: 100%;
	margin: 1em auto 0;
}
.area_visual .btn_info img {
	width: 100%;
}

.area_visual .visual {
	max-width: 900px;
	width: 100%;
    margin: 1em auto 0;
    text-align: center;
}

.area_visual .visual img {
	display: block;
	margin: 0 auto;
    width: 100%;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

@media only screen and (max-width: 1000px){
	.area_visual {
		margin: 0 auto 1em;
/*		padding-top: 50px;*/
	}
	.area_visual .visual img {
		width: 95%;
	}
}

@media only screen and (max-width: 900px){
	.area_visual .btn_info img {
		width: 90%;
	}
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
	.area_visual .visual {
		max-width: 900px;
		width: 100%;
	}
}

/**　画面が横長　かつ　高さが700px以上の時　**/
@media only screen and (orientation: landscape) and (min-height: 700px) {}


/****************************************

　ツイッター

*****************************************/

.sec.area_twitter .inner {
	padding: 5em 0 5em;
}

.area_twitter {
	margin-top: 1em;
/*	border-top: 1px solid #000;*/
}

.area_twitter .btn {
	display: block;
	max-width: 400px;
	width: 80%;
	margin: 0 auto;
	padding: 0.5em;
	background: #000;
	border-radius: 2em;
	font-size: 24rem;
	font-weight: 500;
	color: #fff;
	line-height: 1.2;
	transition: 0.5s;
}
.area_twitter .btn:hover {
	background: #ad2f30;
}
.area_twitter .btn .account {
	display: block;
	font-size: 0.7em;
}
.area_twitter .twi_box {}

.area_twitter .twi_box dt {
	font-size: 40rem;
	font-weight: bold;
	font-family: 'Fjalla One', sans-serif;
}

@media screen and (max-width: 500px){

	.area_twitter .btn {
		max-width: 240px;	
		font-size: 20rem;
	}
}


@media (orientation: portrait) { /**　画面が縦長の時　**/
	.sec.area_twitter {
		opacity : 1;
	}
}


/****************************************

　ニュース

*****************************************/

.area_news {}


@media (orientation: portrait) { /**　画面が縦長の時　**/
/*	.sec.area_news {
		opacity : 1;
	}*/
}

.area_news .heading_sec {
	margin-bottom: 0.5em;
}

.area_news .wrap_ban {
	margin: 0 auto 1em;
	text-align: left;
}
.area_news .ban {
	display: inline-block;
	margin: 0 auto 0.5em;
}
.area_news .ban .item {
	display: inline-block;
	margin: 0 auto 0 0;
	padding: 0.3em 2em;
	font-size: 18rem;
	font-weight: 900;
	background: #ad2f30;
	color: #000;
	line-height: 1.3;
}

.area_news .target {
	transition: .5s ;
	transform: rotateX( 0deg ) ;
}

.area_news .ban:hover .target {
	transform: rotateX( 360deg ) ;
}


.area_news .list {
    text-align: left;
	line-height: 1.5;
}

.area_news .list dt {
}

.area_news .list dd {
	margin: 0 auto 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #8ea99b;
}
.area_news .list a {
	font-weight: 900;
}


/****************************************

　クリエイティブ

*****************************************/

.area_creat {}

.area_creat .list {
	margin: 0 0 2em 0.2em;
	text-align: left;
	font-weight: 700;
	font-size: 24rem;
	line-height: 1.5;
}

.area_creat .list.s {
	font-size: 18rem;
	line-height: 1.5;
}
.area_creat .list.ss {
	margin: 5em 0 2em 0.2em;
	font-size: 16rem;
}

.area_creat .list dt {
	float: left;
	margin-right: 1em;
	color: #ad2f30;
	font-size: 0.9em;
	line-height: 1.8em;
}

.area_creat .list dd {
	overflow: hidden;
	margin-bottom: 0.5em;
	line-height: 1.5em;
}

.area_creat .list dd .note {
	display: block;
	font-size: 0.7em;
	font-weight: 500;
	text-indent: -0.3em;
}

.area_creat .list dd .btn_cmt {
	display: inline-block;
	padding: 0.3em 1em;
	background: #ad2f30;
	color: #000;
	font-size: 0.7em;
	font-family: 'Fjalla One', sans-serif;
	line-height: 1;
}


.area_creat .list .twi {
	display: inline-block;
	margin: 0 3px;
	color: #fff;font-size: 0.9em;
}

@media screen and (max-width: 440px){
	.area_creat .list dt {
		display: block;
		float: none;
		margin-right: 0;
	}

	.area_creat .list dd {
		display: block;
	}
}

.area_creat .creat_copy {
	margin-left: 0.2em;
	font-size: 18rem;
	font-weight: 700;
	text-align: left;
}

.area_creat .logo {
	display: inline-block;
	max-width: 120px;
	margin-left: 1em;
}
.area_creat .logo img {
	width: 100%;
}


@media screen and (max-width: 380px){
.area_creat .logo {
		margin-left: auto;
		margin-right: auto;
	}
}

/****************************************

　コメント　モーダルウィンドウ

*****************************************/

.modal-wrapper {
	z-index: 999;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 60px 10px;
	text-align: center
}

.modal-wrapper:not(:target) {
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
	opacity: 1;
	visibility: visible;
	transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
	display: inline-block;
	height: 100%;
	margin-left: -.05em;
	vertical-align: middle;
	content: ""
}

.modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 980px;
	padding: 3em;
	border: 3px solid rgba(255,255,255,0.1);
	border-radius: 5px;
	background: rgba(0,0,0, 0.95);
	box-shadow: 0 0 30px rgba(0, 0, 0, .6);
	vertical-align: middle;
	border-radius: 5px;
	color: #fff;
	text-align: left;
}

.modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 0 1em;
}

.modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #333;
	
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #ad2f30;
	
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #ad2f30!important;
  font-size: 3em;
  font-weight: 700;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #ad2f30 !important
}

@media screen and (max-width: 414px){

    .modal-wrapper .modal-window {
      padding: auto 1.5em;
    }
}


/****************************************

　チケット＆スケジュール

*****************************************/

.area_ticket {}

/****　速報　****/

.area_ticket .sokuho .sch {
	text-align: left;
	font-weight: 900;
	line-height: 1.3;
	font-size: 28rem;
}

.area_ticket .sokuho .sch li {
	margin-bottom: 1em;

}

.area_ticket .sokuho .sch .area {
	display: block;
	color: #ad2f30;
	font-weight: 700;
	vertical-align: top;
}

.area_ticket .sokuho .sch .day {
	display: inline-block;
	margin-right: 0.5em;
	vertical-align: top;
}

.area_ticket .sokuho .sch .theater {
	display: inline-block;
	vertical-align: top;
}

.area_ticket .sokuho .sch.pre .note {
	display: block;
	font-size: 0.6em;
}

.area_ticket .sokuho .sch.tokyo {
	font-size: 40rem;
}
@media screen and (max-width: 870px){
    .area_ticket .sokuho .sch .day {
        display: block;
        margin-right: 0;
    }

    .area_ticket .sokuho .sch .theater {
        display: block;
    }

}
@media screen and (max-width: 600px){
	.area_ticket .sokuho .sch {
		text-align: left;
		font-size: 20rem;
	}

    .area_ticket .sokuho .sch.tokyo {
        font-size: 30rem;
    }
}

@media screen and (max-width: 370px){

	.area_ticket .sokuho .sch .day {
		display: block;
	}

	.area_ticket .sokuho .sch .theater {
		display: block;
		margin-left: 0;
	}
}




/****************************************

　イントロ

*****************************************/

.area_intro {}

.area_intro .catch {
	margin: 0 auto 2em;
	text-align: left;
	font-size: 26rem;
	font-weight: 900;
	color: #000;
	font-feature-settings: "palt";
}

.area_intro .catch .point {
	color: #ad2f30;
	font-weight: 900;
}

.area_intro .catch .res {
	display: inline;
}

@media screen and (max-width: 880px){

	.area_intro .catch {
		font-size: 24rem;
	}
}

@media screen and (max-width: 590px){

	.area_intro .catch {
		font-size: 22rem;
	}
}

@media screen and (max-width: 540px){

	.area_intro .catch {
		font-size: 20rem;
	}
}

@media screen and (max-width: 480px){

	.area_intro .catch {
		font-size: 18rem;
	}
}

@media screen and (max-width: 430px){
	.area_intro .catch {
		font-size: 20rem;
	}
	.area_intro .catch .res {
		display: none;
	}
	
	.area_intro .catch .pack {
		display: inline;
	}
}

.area_intro .text {
    text-align: left;
	line-height: 2;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	font-weight: 700;
}
.area_intro .text a {
	text-decoration: underline;
}
.area_intro .text p {
	margin: 0 auto 1em;
}


.area_intro .text p .point {
	color: #ad2f30;
	font-weight: 900;
}

/****************************************

　ストーリー

*****************************************/

.area_story {}


.area_story .catch {
	margin: 0 auto 1em;
	text-align: left;
	font-size: 30rem;
	font-weight: 700;
	font-feature-settings: "palt";
}

.area_story .catch2 {
	margin: 0 auto 2em;
	text-align: left;
	font-size: 24rem;
	font-weight: 700;
	font-feature-settings: "palt";
}

@media screen and (max-width: 880px){
	.area_story .catch {
		font-size: 28rem;
	}
	.area_story .catch2 {
		font-size: 24rem;
	}
}

@media screen and (max-width: 590px){
	.area_story .catch {
		font-size: 26rem;
	}
	.area_story .catch2 {
		font-size: 22rem;
	}
}

@media screen and (max-width: 540px){
	.area_story .catch {
		font-size: 24rem;
	}
	.area_story .catch2 {
		font-size: 20rem;
	}
}

@media screen and (max-width: 480px){
	.area_story .catch {
		font-size: 22rem;
	}
	.area_story .catch2 {
		font-size: 18rem;
	}
}

@media screen and (max-width: 430px){
	.area_story .catch {
		font-size: 24rem;
	}    
	.area_story .catch2 {
		font-size: 20rem;
	}
	.area_story .catch .res {
		display: none;
	}

}
.area_story .point {
	color: #ad2f30;
	font-weight: 900;
}

.area_story .text {
    text-align: left;
	font-weight: 400;
	line-height: 2;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
}

.area_story .text p {
	margin: 0 auto 1em;
}


/****************************************

　キャスト

*****************************************/

.sec.area_cast .inner {
}

.area_cast .c_anchor {
	display: block;
	margin-top: -5em;
	padding-top: 5em;
}

.area_cast .list_p {
	margin: 0 auto 8em;
	text-align: left;
}

.area_cast .list_p .yaku_wrap {
	width: 100%;
	margin: 1em 0 0;
	padding: 0.5em 0;
	font-size: 20rem;
	font-weight: 900;
	line-height: 1;
}

.area_cast .list_p .yaku {
	display: block;
	position: relative;
}

.area_cast .list_p .yaku .jp {
	display: block;
	font-size: 20rem;
	font-weight: 900;
	line-height: 1;
	color: #ad2f30;
}
.area_cast .list_p .yaku .en {
	display: block;
    display: none;
	position: absolute;
	bottom: 0;
	z-index: 10;

	color: rgba(0,0,0,0.05);
	font-size: 80rem;
	line-height: 1;
	font-family: 'Fjalla One', sans-serif;
}

.area_cast .list_p .yaku_wrap .note {
	display: block;
	margin: 0.5em auto 0;
	margin-left: -0.5em;
	font-size: 0.7em;
	font-weight: 700;
	line-height: 1;
}

.area_cast .list_p .item {
	display: inline-block;
	margin: 0 0 2.5em;
}
.area_cast .list_p .item:not(:last-of-type)::after {
    content: "／";
	font-size: 28rem;
}

.area_cast .list_p .item .name {
	display: inline-block;
	font-size: 28rem;
	font-weight: 700;
	line-height: 1;
}

.area_cast .list_p .item .name .note {
	font-size: 0.6em;
}


@media screen and (max-width: 600px){
    .area_cast .list_p .item .name {
        font-size: 24rem;
    }
}



/****************************************

　クリエイティブ

*****************************************/

.area_creat {}

.area_creat .list {
	margin: 0 0 2em 0.2em;
	text-align: left;
	font-weight: 700;
	font-size: 24rem;
	line-height: 1.5;
}

.area_creat .list.s {
	font-size: 18rem;
	line-height: 1.5;
}
.area_creat .list.ss {
	margin: 5em 0 2em 0.2em;
	font-size: 16rem;
}

.area_creat .list dt {
	float: left;
	margin-right: 1em;
	color: #ad2f30;
	font-size: 0.9em;
	line-height: 1.8em;
}

.area_creat .list dd {
	overflow: hidden;
	margin-bottom: 0.5em;
	line-height: 1.5em;
}

.area_creat .list dd .note {
	display: block;
	font-size: 0.7em;
	font-weight: 500;
	text-indent: -0.3em;
}

.area_creat .list dd .btn_cmt {
	display: inline-block;
	padding: 0.3em 1em;
	background: #ad2f30;
	color: #000;
	font-size: 0.7em;
	font-family: 'Fjalla One', sans-serif;
	line-height: 1;
}


.area_creat .list .twi {
	display: inline-block;
	margin: 0 3px;
	color: #fff;font-size: 0.9em;
}

@media screen and (max-width: 440px){
	.area_creat .list dt {
		display: block;
		float: none;
		margin-right: 0;
	}

	.area_creat .list dd {
		display: block;
	}
}

.area_creat .creat_copy {
	margin-left: 0.2em;
	font-size: 18rem;
	font-weight: 700;
	text-align: left;
}

.area_creat .logo {
	display: inline-block;
	max-width: 120px;
	margin-left: 1em;
}
.area_creat .logo img {
	width: 100%;
}


@media screen and (max-width: 380px){
.area_creat .logo {
		margin-left: auto;
		margin-right: auto;
	}
}

/****************************************

　コメント　モーダルウィンドウ

*****************************************/

.modal-wrapper {
	z-index: 999;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 60px 10px;
	text-align: center
}

.modal-wrapper:not(:target) {
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
	opacity: 1;
	visibility: visible;
	transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
	display: inline-block;
	height: 100%;
	margin-left: -.05em;
	vertical-align: middle;
	content: ""
}

.modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 980px;
	padding: 3em;
	border: 3px solid rgba(255,255,255,0.1);
	border-radius: 5px;
	background: rgba(0,0,0, 0.95);
	box-shadow: 0 0 30px rgba(0, 0, 0, .6);
	vertical-align: middle;
	border-radius: 5px;
	color: #fff;
	text-align: left;
}
/*
.modal-wrapper .modal-window .title {
	font-family: 'Fjalla One', sans-serif;
	font-size: 50rem;
	color: rgba(255,255,255,0.1);
}
.modal-wrapper .modal-window .name {
	margin-bottom: 0.5em;
	font-size: 30rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.modal-wrapper .modal-window .name .work {
	margin-right: 0.5em;
	font-size: 0.7em;
	font-weight: 500;
}*/

.modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 0 1em;
}

.modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #333;
	
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #ad2f30;
	
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #ad2f30!important;
  font-size: 3em;
  font-weight: 700;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #ad2f30 !important
}

@media screen and (max-width: 414px){

    .modal-wrapper .modal-window {
      padding: auto 1.5em;
    }
}

/***　2023.1.11up コミックスインスパイヤビジュアル***/
/***　2023.2.20up 遠藤達哉先生書下ろし初ミュージカル化 お祝いイラスト***/

.news_popup .modal-overlay {
  background: none
}
.news_popup .modal-wrapper .modal-window {
/*	max-width: 700px;*/
	padding: 3em;
}
.news_popup .modal-wrapper .modal-window .modal-content {
}
.news_popup .modal-wrapper.photo {
	margin: 0 auto;
	max-width: 600px;
}
.news_popup .modal-wrapper.photo img {
	width: 100%;
}

.news_popup .modal-wrapper.photo .credit {
	font-size: 0.8em;
	text-align: right;
}

