@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
***/

/***色

***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #c5a44a;
    text-decoration: none;}
a:hover{}


a:hover img{
  filter: alpha(opacity=70);
  opacity: 0.7;
  zoom: 1.0;
  }

a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}



/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}


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: 400;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #020202;
}

body:after {
/*    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;  
    background-color: #02243d;*/
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
   
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}

@media screen and (max-width: 600px){
/*	body:after {
		background-size: 10vw;  
	}*/
}


/*****メインコンテンツ*****/

.wrap{
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	margin: 0 auto;
	padding: 0 1em;
}


/****************************************

　ナビ

*****************************************/

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background: rgba(0,0,0,0.9);
    border: 1px solid rgba(248,179,0,1);
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 2px;
}

/*ボタンのアイコン設定*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: rgba(248,179,0,1);
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width:100%;
	padding: 0.5em 0;
/*    background: #421720;
    box-shadow: 10px 0 20px rgba(96,70,58,1);*/
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi ul {
    margin: 0 1em;
    padding: 0.5em 0; 
    line-height: 1.3;
    vertical-align: top;
}

#g-navi ul .res_nav {
	display: none;
}

#g-navi ul li {
    display: inline-block;
    margin: 0 0.5em;
    padding: 5px 0 5px; 
    font-size: 26rem;
    line-height: 1.2;
    vertical-align: top;
}

#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
    color: rgba(248,179,0,1);
}

#g-navi ul li .en {
	display: block;
	color: rgba(248,179,0,1);
    font-weight: 400;
    font-style: normal;
	transition: 0.5s;
    font-family: 'Noto Serif JP', serif;
}

#g-navi ul li .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

#g-navi ul li .jp {
	display: block;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	font-weight: 400;
	font-size: 0.5em;
}

#g-navi ul li:hover .en {
    color: #ffe14b;
	text-shadow: 0 0 1px rgba(248,179,0,0.8), 0 0 10px rgba(248,179,0,0.5),0 0 3px #be1a21;
}

@media screen and (max-width: 400px){

	#g-navi ul li {
		font-size: 20rem;
	}
}

@media screen and (max-width: 320px){

}


/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    left: 0;
	z-index: -1;
    /*高さと幅*/  
/*	width:100%;
	height: 100vh;*/
    /*天地中央＆テキスト中央揃え*/  
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;

}

#header.dnone #g-navi .logo {
	display: none;
}

#header.dnone #g-navi ul .res_nav {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background: rgba(0,0,0,0.9);
	width:100%;
	height: 100vh;
}

#header.dnone.panelactive #g-navi ul li {
	display:block;/*flexの横並びをblockにして縦並びに*/
	padding:1em 10px 0;
	font-size: 28rem;
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{}

@media screen and (max-height: 800px) { /*画面の高さが800以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.5em 0;
		font-size: 24rem;
	}
}  
@media screen and (max-height: 520px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 20rem;
	}
} 
@media screen and (max-height: 400px) { /*画面の高さが360以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.3em 0; 
		font-size: 16rem;
	}
}  


/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/
#pagetop{
    position: fixed;
    right: 10px;
    bottom: 10px;
	z-index: 1000;
	max-width: 3vw;
	min-width: 150px;
}

#pagetop img {
	width: 100%;
	display: block;
}

@media screen and (max-width: 500px){
	#pagetop{
		min-width: 100px;
	}  
}

footer{
	width: 100%;
	margin: 0 auto;
    padding: 2em 0 0;
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}
footer .billing {
	font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 0.9em;
    color: rgba(255,255,255,0.9);
}
footer .copy {
	display: block;
	padding: 1em;
	font-style: normal;
	line-height: 1.5;
	font-family: 'Noto Serif JP', serif;
}

footer .sns_link {
    margin-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em 0.5em;
    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;
}


/****************************************

　ボックス

*****************************************/

.anchor {
    display: block;
    padding-top: 3em;
    margin-top: -3em;
}

@media screen and (max-width: 450px){

	.anchor {
		padding-top: 5em;
		margin-top: -5em;
	}
}

.sec {
    max-width: 900px;
    margin: 0 auto;
	padding: 0 1em;
}

.sec:not(:first-of-type) {
/*	padding: 3em 0;*/
}


.sec .inner {
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 500px){
}


.heading_sec {
    margin-bottom: 1em;
    font-size: 40rem;
    line-height: 1.3;
    font-weight: 400;
    color: rgba(248,179,0,1);
}

.heading_sec .en {
    display: block;
    letter-spacing: 0.05em;
    text-shadow: 0 0 1px rgba(248,179,0,0.8), 0 0 10px rgba(248,179,0,0.5),0 0 3px #be1a21;
    font-family: 'Noto Serif JP', serif;
}
.heading_sec .jp {
    display: block;
    font-size: 0.4em;
    font-weight: 500;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
}

/****************************************

　ビジュアル

*****************************************/

.area_visual {
    max-width: 900px;
    margin: 2em auto 10em;
}

.area_visual .item {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.area_visual .item img {
	display: block;
    width: 100%;
}



/**********************************************************************

　イントロ

**********************************************************************/

.area_intro {
	display: block;
	width: 100%;
	margin: 0 auto 10em;
}

.area_intro .inner {
}

.area_intro .text {
	text-align: left;
    line-height: 2.5;
    font-family: 'Noto Serif JP', serif;
}

.area_intro .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}


@media screen and (max-width: 768px) {
}

@media screen and (max-width: 500px) {
}


/**********************************************************************

　ストーリー

**********************************************************************/

.area_story {	display: block;
	width: 100%;
	margin: 0 auto 10em;
}

.area_story .inner {
}

.area_story .text {
	text-align: left;
    line-height: 2.5;
    font-family: 'Noto Serif JP', serif;
}

.area_story .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}

@media screen and (max-width: 500px) {

}

/**********************************************************************

　キャスト

**********************************************************************/
.area_cast {
    margin: 0 auto 10em;
    font-family: 'Noto Serif JP', serif;
}

.area_cast .list {
    margin-top: 2.5em;
    font-family: 'Noto Serif JP', serif;
    font-size: 24rem;
}
.area_cast .list li {
    margin-bottom: 2em;
    line-height: 1.5;
}
.area_cast .list .yaku {
    display: block;
    font-size: 0.6em;
}
.area_cast .list .name {
    display: block;
}

/**********************************************************************

　スタッフ

**********************************************************************/
.area_staff {
    margin: 0 auto 10em;
    font-family: 'Noto Serif JP', serif;
}

.area_staff .list {
    margin-top: 2.5em;
    font-family: 'Noto Serif JP', serif;
    font-size: 20rem;
}
.area_staff .list li {
    margin-bottom: 1em;
    line-height: 1.5;
}
.area_staff .list .work {
    display: block;
    font-size: 0.6em;
}
.area_staff .list .name {
    display: block;
}
/**********************************************************************

　スケジュール

**********************************************************************/
.area_sch {
    margin: 0 auto 5em;
    font-family: 'Noto Serif JP', serif;
}

.area_sch .list {
    max-width: 900px;
    margin: 0 auto 0;
    font-size: 20rem;
    line-height: 1.5;
}

.area_sch .list dt {
    margin: 3em auto 0.3em;
    color: rgba(248,179,0,1);
}

.area_sch .list dd {
    margin-bottom: 0.25em;
}
.area_sch .list ul {}
.area_sch .list ul li {}

.area_sch .list .area {
    display: inline-block;
    margin: 0 0.5em;
}

.area_sch .list .theater {
    display: inline-block;
    margin: 0 0.5em;
}


@media screen and (max-width: 360px){

    .area_sch .list .area {
        display: block;
        margin: 0 auto;
    }

    .area_sch .list .theater {
        display: block;
        margin: 0 auto;
    }
    .area_sch .list dd {
        padding: 1em 0.5em;
    }
}


