@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
***/

/***color
赤　#c1181f;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********リンク********/
a {
    color: #c1181f;
    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;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}

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-image: url(../images/bg.jpg);
	background-position: top;
	background-repeat: no-repeat;
	background-attachment:scroll;
	background-size: cover;	*/
    
	background-color: #000;
  
}

body:before{
	content: "";
    display: block;
    position: fixed;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url("../images/bg_pc.jpg");
    background-position: center;
    background-size: contain;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/

	body:before{
		background-image: url("../images/bg_smp.jpg");
	}
}

@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: #c1181f;
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 3em;

}


/****************************************

　フッター

*****************************************/

footer{
/*	width: 100%;*/
	margin: 0 auto 0;
    padding: 1em;
	text-align: center;
}

footer .btn_kako {
	position: relative;
    display: block;
    max-width: 600px;
    width: 90%;
    margin: 0 auto 3em;
	background: #c1181f;
    border: 2px solid #c1181f;
    border-radius: 2px;
    font-family: 'Noto serif JP', sans-serif;
    font-weight: 900;
    font-size: 24rem;
    color: #000;
	transition: 0.5s;
}

footer .btn_kako:hover {
	background: rgba(0,0,0,0.5);
    color: #c1181f;

}
footer .btn_kako .note{
    margin-left: -0.5em;
    font-size: 0.8em;
}
footer .btn_kako .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

footer .copy_origin {
    margin-bottom: 2em;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.1em;
 
}

footer .copy {
    font-weight: 400;
    color: #fff;
    font-size: 12rem;
    letter-spacing: 0.1em;
 
}

footer .sns_link {
    margin-left: 10px;
}

footer .sns_link .icon {
    display: inline-block;
    width: 100%;
    max-width: 30px;
    margin-left: 5px;
}

footer .sns_link .icon.x {
    max-width: 30px;
    padding: 0 0.5em;
}
footer .sns_link .icon.toho {
    max-width: 35px;
    margin-bottom: -10px;
}

footer .sns_link .icon img {
    display: block;
    max-width: 100%;
}

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;
}


#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
	z-index: 1000;
}

@media screen and (max-width: 600px){
    footer .btn_kako {
        font-size: 20rem;
        padding: 0.5em;
        line-height: 1.5;
    }
    footer .btn_kako .pk {
        display: block;
    }
}

@media screen and (max-width: 500px){
    footer .copy {
            display: block;
            margin-bottom: 10px;
        } 
}
@media screen and (max-width: 375px){
    footer {
        padding: 5px 0 0;    
    }

    footer .sns_link .icon {
        margin: 0 5px;   
    }    

}



/****************************************

　ボックス

*****************************************/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	position: relative;
}

.sec {
	width: 100%;
    margin: 0 auto;
    padding: 0;
	opacity: 0;
    transition: all 1s;
}

.sec.scrollin {
	opacity: 1;
}

.sec .inner {
/*	max-width: 900px;*/
	width: 90%;
	margin: 0 auto;
	padding: 10em 0 10em;
}

@media screen and (max-width: 900px){
	.sec .inner2 {
		/*padding: 0 1em;*/
	}
}

.sec.c1 {
}

.sec.c2	 {
}

.heading_sec {
    display: block;
    margin: 0 auto 1em;
	padding: 0;
    font-size: 60rem;
	line-height: 1;
	text-align: center;
	color: #c1181f;
    font-family: 'Noto serif JP', sans-serif;
	background-image: url(../images/heading_page_bg.jpg);
	background-position: top;
	background-size: contain;
	-webkit-background-clip: text;
	color: transparent;
}

.heading_sec .amp {
    margin: 0 0.3em;
}

.heading_sec .chosei {
	letter-spacing: -0.1em;
}


.anchor {
    margin-top: -3em;
    padding-top: 3em;
}

@media screen and (max-width: 600px){
	.heading_sec {
		font-size: 50rem;
	}
}

@media screen and (max-width: 500px){
	.heading_sec {
		font-size: 40rem;
	}
}


/****************************************

　ビジュアル

*****************************************/

.area_visual {
    margin: 0 auto;
	padding: 5px 0;
}

.area_visual .slider {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
    z-index: 1;
    box-shadow: 0 0 100px rgba(80,71,63,1),0 0 20px rgba(80,71,63,1);
}

.area_visual .slick-box {
	margin: 1em auto 0;
}

.area_visual .slide {
	width: 100%;
	height: auto;

}

.area_visual .slide img {
	width: 100%;

    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

@media print{
	.area_visual .visual {
		display: none;
	}
    .area_visual .slide {
        display: none;
    }
}


.area_visual .art_credit {
	max-width: 880px;
	margin: 0.5em auto 0;
    font-size: 13rem;
    font-weight: 400;
    text-align: right;
}

@media only screen and (max-width: 1100px){
	.area_visual {
		margin: 60px auto 1em;
		padding: 5px;
	}
}

@media only screen and (max-width: 900px){
	.area_visual .art_credit {
		padding: 0 1em;
	}
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
}

/**　画面が横長　かつ　高さが700px以上の時　**/
@media only screen and (orientation: landscape) and (min-height: 700px) {
}

/****************************************

　イントロ

*****************************************/

.area_intro {}

.area_intro .catch {
    max-width: 900px;
    margin: 0 auto 1em;
    padding: 1em 0;
    font-size: 24rem;
    font-family: 'Noto Serif JP', serif;
    background: rgba(0,0,0,0.7);
    border-top: 1px groove rgba(206,170,80,0.5);
    border-bottom: 1px groove rgba(206,170,80,0.5);
}

.area_intro .catch .text1 {
    margin: 0 auto 0.5em;
    font-size: 1.6em;
    font-weight: 700;
    letter-spacing: 0.1em;
	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;
}
.area_intro .catch .text2 {
    font-weight: 400;
    color: #dab95f;
/*    text-shadow: 5px 5px 5px rgba(0,0,0,1), 0 0 10px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,1);*/

}

.area_intro .catch .text2 p {

}

@media screen and (max-width: 420px){
    .area_intro .catch {
        font-size: 20rem;
    }
}

@media screen and (max-width: 360px){
    .area_intro .catch .text1 {
        font-size: 1.2em;
        letter-spacing: 0em;
    }
}

@media screen and (max-width: 320px){
    .area_intro .catch {
        font-size: 18rem;
    }
}

.area_intro .text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.area_intro .text p {
    margin-bottom: 1em;
    font-weight: 400;
}

/****************************************

　キャスト＆クリエイティブ　クレジット

*****************************************/

.area_credit {}

.area_credit .heading_sec {
	margin-bottom: 2em;
}

.area_credit {
	width: 100%;
	margin: 0 auto;
}

/***　速報　***/
.area_credit .sokuho {
    font-family: 'Noto Serif JP', serif;
    font-size: 24rem;
    line-height: 1.5;
}
.area_credit .sokuho .list_creat {
    margin: 0 auto 2em;
}

.area_credit .sokuho .list_creat2 {
    font-size: 0.9em;
}
.area_credit .sokuho .list_creat3 {
    font-size: 0.7em;
}

.area_credit .sokuho .list_cast {
    margin: 5em auto;
}

.area_credit .sokuho dt {
    font-size: 0.7em;
    color: #ff323b;
    font-weight: 900;
    text-shadow: 0 0 20px #000,0 0 30px #000,0 0 100px #000,3px 3px 3px #000;
}
.area_credit .sokuho dd {
    margin-bottom: 1em;
    text-shadow: 0 0 20px #000,0 0 30px #000,0 0 100px #000,3px 3px 3px #000;
}
.area_credit .sokuho dd .book {
    display: block;
    font-size: 0.6em;
}

.area_credit .sokuho .list_cast dd:not(:last-of-type) {
    margin-bottom: 3em;
}
.area_credit .sokuho .list_creat2 .teaser {
    margin: 3em auto;
}
.area_credit .sokuho .list_creat2 .teaser .work {
    margin-bottom: 1em;
    font-size: 0.8em;
}
.area_credit .sokuho .list_creat2 .teaser .office {
    display: block;
    line-height: 1.3;
    font-size: 0.8em;
}
/*
.area_credit .sokuho .list_creat .sepa {
    display: flex;
    justify-content: center;
    align-items: center;
}

.area_credit .sokuho .list_creat .sepa .item {
    margin: 0 1em;
}*/

@media screen and (max-width: 1024px){}


/****************************************

　チケット＆スケジュール

*****************************************/


.area_ticket{}

/***　速報　***/

.area_ticket .sokuho {
	max-width: 800px;
	width: 100%;
	margin: 5em auto 0;
    font-family: 'Noto Serif JP', serif; 
}

.area_ticket .sokuho .list {
    font-size: 24rem;
    text-shadow: 0 0 20px #000,0 0 30px #000,0 0 100px #000, 5px 5px 5px #000;
}
.area_ticket .sokuho dt {
    color: #ff323b;
    font-weight: 900;
    font-size: 1.2em;
}
.area_ticket .sokuho dd {
    margin-bottom: 2em;
    padding: 2em;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.8);
}
.area_ticket .sokuho .theater {}
.area_ticket .sokuho .day {}

.area_ticket .sokuho .tour ul {
}
.area_ticket .sokuho .tour li {
}
.area_ticket .sokuho .tour .theater {
    display: inline-block;
}
.area_ticket .sokuho .tour .day {
    display: inline-block;
}

@media screen and (max-width: 500px){
    .area_ticket .sokuho .list {
        font-size: 20rem;
    }
}

@media screen and (max-width: 340px){
    .area_ticket .sokuho .list {
        font-size: 18rem;
    }
    .area_ticket .sokuho dd {

        padding: 1em;
    }
}


/***************************************************

　ムービー

**************************************************/

.area_movie {}

.area_movie .list {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto 40px;
    padding: 10px;
}


.area_movie .list.center {
    justify-content: center;
}

.area_movie .item{
    width: 47%;
    justify-content: center;
    margin-bottom: 4em;
    margin: 0 10px 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_movie .name {
    margin-bottom: 0.5em;
    padding: 0.3em 1em;
    font-size: 18rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.area_movie .name .pk {
	margin: 0 0.5em;
}

.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%;
}

@media screen and (max-width: 768px){
    .area_movie .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_movie .item{
        width: 100%;
        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 {
        margin-bottom: 10px;
    } 
}

