@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: 'RocknRoll One', sans-serif;
***/

/***色メモ
黄色　#ffe20b;
赤　#af1041
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********リンク********/
a {
    color: #500017;
    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;
}

/********改行********/

.res {
	display: none;
}

.res2 {
	display: none;
}

.res3 {
	display: none;
}

.res4 {
	display: none;
}


@media screen and (max-width: 768px){

	.res {
		display: inline;
	}
}

@media screen and (max-width: 414px){

	.res2 {
		display: inline;
	}
}

@media screen and (max-width: 375px){

	.res3 {
		display: inline;
	}
}

@media screen and (max-width: 320px){

	.res4 {
		display: inline;
	}
}

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: 16em;
	line-height:2;
	color:#fff;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    
	background-image: url(../images/bg_pc.png);
	background-position:bottom -50px center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: contain;	

	background-color: #af1041;


    
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
    body {
	background-image: url(../images/bg_smp.png);
	background-position:top center;
	background-repeat: repeat;
	background-attachment:scroll;
	background-size: auto;	
    }    
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}



/**************************************
　ナビ　メニュー
**************************************/

header {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

nav {
    width: 100%; 
    height: 100%;
    margin: 0 auto;
    background-color: #500017;
    padding: 5px 0;
    font-family: 'RocknRoll One', sans-serif;

}
nav::after {
    position: absolute;
    width: 100%;
    height:100%;
    content: "";
    display: block;
    background: url("../images/nav_bg2027.png") repeat-x top;
}

nav .n_list {
}

nav .n_list .res_nav {
    display: none;
}

nav .n_list .n_item {
    display: inline-block;
    margin: 0 10px;
    padding: 0.5em 0;
    font-size: 20rem;
    line-height: 1;
    vertical-align: middle;
}

nav .n_list .n_item a {
    text-decoration: none;
    color: #ffe20b;
}



@media screen and (max-width: 1040px){
    nav {
    }
    
    nav .n_list {
/*        margin: 0 auto;*/
    }
    
    nav .n_list .n_item {
    
 

    }
}


@media screen and (max-width: 650px){
    nav .n_list {
        padding-bottom: 0.3em;
    }
    nav .n_list .res_nav {
        display: inline;
    }

}

@media screen and (max-width: 414px){
    nav .n_list {
        width: auto;
    }
    nav .n_list .n_item {
        font-size: 18rem;
    }
    nav .n_list .res_nav {
        display: none;
    }

}

@media screen and (max-width: 320px){
    nav .n_list .n_item {
        font-size: 16rem;
    }

}

/*****メインコンテンツ*****/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
}


/****************************************

　ボックス

*****************************************/

.sec {
    max-width: 900px;
    margin: 0 auto;
}

/****************************************

　見出し

*****************************************/
.heading_sec {
    margin: 1em auto 0.5em;
    font-size: 40rem;
    font-family: 'RocknRoll One', sans-serif;
    color: #ffe20b;
    text-shadow: 2px 2px 0 rgba(89,3,28,0.5);
}

.heading_sec .en {
    display: none;
}


/****************************************

　ビジュアル

*****************************************/

.area_visual {
    max-width: 900px;
    padding: 10px;
    margin: 0 auto;
    padding-top: 30px;
}

.area_visual .visual .item {
    display: block;
    margin: 0.5em auto;
    text-align: center;
}

.area_visual .visual .item img {
    width: 100%;
    box-shadow: 0 0 10px #770705;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
   
}

/****************************************

　イントロ

*****************************************/
.area_intro {
    padding: 0 1em;
}

.area_intro.sec {
    max-width: 1200px;
}

.area_intro .text {
    font-size: 20rem;
    line-height: 3em;
}

.area_intro .text .item {
    display: inline-block;
}

.area_intro .text .point1{
    display: inline-block;
    margin: 0 0.2em;
    font-size: 1.2em;
    font-weight: 900;

}
.area_intro .text .point2{
    display: inline-block;
    margin: 0 0.2em;
    font-size: 1.4em;
    font-weight: 900;
    line-height: 1.5;
    color: #ffe20b;
    border-bottom: 2px dashed #ffe20b;

}

.area_intro .photo {
    max-width: 700px;
    width: 90%;
    margin: 2em auto 0;
-moz-transform: rotate(-2deg);
-webkit-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
-ms-transform: rotate(-3deg);
}

.area_intro .photo img {
    display: block;
    width: 100%;
    vertical-align: bottom;

    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.area_intro .photo .cap {
    display: block;
    font-size: 15rem;
    text-align: right;
    font-weight: 500;
}
@media screen and (max-width: 630px){

    .area_intro .text .point2{
        display: inline;
        border-bottom: none;

    }
}
@media screen and (max-width: 490px){
    .area_intro .text {
        font-size: 16rem;
        line-height: 2.5em;
    }
}
@media screen and (max-width: 380px){
    .area_intro .text .point1{
        font-size: 1.1em;
    }
    .area_intro .text .point2{
        font-size: 1.2em;
    }
}
@media screen and (max-width: 380px){
    .area_intro .text {
        font-size: 0.9em;
    }
}

/****************************************

　キャスト

*****************************************/
.area_cast {
    padding: 0 1em;
}

.area_cast.sec {
    max-width: 1200px;
    margin: 0 auto 8em;    
}

.area_cast .cast_res3 {
    display: none;
} 

.area_cast .list_p1 {
    margin: 1em auto 0;    
    font-size: 30rem;
}

.area_cast .list_p1 li {
    display: inline-block;
    margin: 0 1em;
	line-height: 1.5;
}
.area_cast .list_p1 li .yaku {
	display: block;
    font-size: 0.7em;
	color: #ffe20b;
}
.area_cast .other {
	margin: 1em auto;
	font-size: 1.1em;
}
.area_cast .list_p2 {
    margin: 1em auto 0;
    font-size: 24rem;
}

.area_cast .list_p2 li {
    display: inline-block;
    margin: 0 1em;
}

.area_cast .list_p3 {
    margin: 1em auto 0;
    font-size: 24rem;
}

.area_cast .list_p3 li {
    display: inline-block;
    margin: 0 1em;
}

.area_cast .list_k {
    margin: 0 auto 0;
    font-size: 18rem;
}

.area_cast .list_k li {
    display: inline-block;
    margin: 0 0.2em;
    vertical-align: top;
}

.area_cast .list_k .name {
    display: inline-block;
    margin: 0 0.5em;
    line-height: 1;
}

.area_cast .list_k .note {
    display: block;
    margin-top: -0.2em;
    font-size: 0.7em;
    line-height: 1;
}

.area_cast .list_e {
    margin: 2em auto 0;
    font-size: 18rem;
}

.area_cast .list_e li {
    display: inline-block;
    margin: 0 0.5em;
}

@media screen and (max-width: 940px){
    .area_cast .list_p1 {
        margin: 2em auto 0;    
        font-size: 24rem;
    }


    .area_cast .list_p2 {
        margin: 1em auto 0;
        font-size: 20rem;
    }

    .area_cast .list_p3 {
        margin: 1em auto 0;
        font-size: 20rem;
    }
    .area_cast .list_k {
        font-size: 15rem;
    }
    .area_cast .list_e {
        margin: 2em auto 0;
        font-size: 15rem;
    }
}


@media screen and (max-width: 770px){
    .area_cast .list_p1 li {
        margin: 0 0.5em;
    }

    .area_cast .list_p2 li {
        margin: 0 0.5em;
    }
    .area_cast .list_p3 li {
        margin: 0 0.5em;
    }
}

@media screen and (max-width: 550px){

    .area_cast .cast_res {
        display: none;
    }    

    
    .area_cast .list_p1 {
        margin: 2em auto 0;    
        font-size: 28rem;
    }

    .area_cast .list_p2 {
        margin: 1em auto 0;
        font-size: 22rem;
    }
    
    .area_cast .list_p2 li {
        display: block;
    }

    .area_cast .list_p3 {
        margin: 1em auto 0;
        font-size: 22rem;
    }
    
    .area_cast .list_k {
        font-size: 16rem;
    }

    .area_cast .list_e {
        margin: 2em auto 0;
        font-size: 16rem;
    }
}


@media screen and (max-width: 460px){

    .area_cast .cast_res2 {
        display: none;
    } 

    .area_cast .cast_res3 {
        display: inline;
    }

}

@media screen and (max-width: 320px){
.area_cast .list_k li {
        margin: 0 auto;
    }

}


/****************************************

　スタッフ

*****************************************/
.area_staff {
    padding: 0 1em;
}

.area_staff.sec {
    max-width: 1200px;
    margin: 0 auto 8em;
}

.area_staff .list {
    margin: 0 auto 1em;
    font-size: 18rem;
}

.area_staff .list::after {
  content: "";
  display: block;
  clear: both;
}

.area_staff .list dt {
    clear: both;
    float: left;
    width: 48%;
    padding-right: 0.5em;
    text-align: right;
    color: #ffe20b;
}


.area_staff .list dd {
    float: left;
    width: 48%;
    padding-left: 0.5em;
    text-align: left;
}

@media screen and (max-width: 540px){

    .area_staff .list {
        margin: 0 auto 3em;
    }
    
    .area_staff .list dt {
        float: none;
        width: 100%;
        padding-right: 0;
        text-align: center;
        line-height: 1.3;
    }


    .area_staff .list dd {
        float: none;
        width: 100%;
        margin: 0 auto 1em;
        padding-left: 0;
        text-align: center;
    }
}


/****************************************

　あらすじ　ストーリー

*****************************************/
.area_story {
    padding: 0 2em;
}
.area_story .text {
    text-align: left;
    font-size: 19rem;
}
.area_story .text p {
    margin-bottom: 1em;
}
.area_story .text p.close {
    margin-top: 2em;
}

@media screen and (max-width: 414px){
    .area_story {
        padding: 0 1em;
    }
}
@media screen and (max-width: 380px){
    .area_story .text {
        font-size: 0.9em;
    }
}

/****************************************

　公演情報

*****************************************/
.area_stage {
	margin: 6em auto 0;
	padding: 0 1em;
}
/******　速報　******/
.area_stage .sokuho .item {
	max-width: 900px;
    margin: 0 auto 3em;
    border: 3px solid #500017;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
}
.area_stage .sokuho dt {
	background: #500017;
	padding: 0.5em 0 0.5em;
	vertical-align: middle;
	font-size: 1.3em;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
}
.area_stage .sokuho dd {
    margin: 0.5em auto;
    color: #500017;
	font-size: 1.8em;
    line-height: 1.3;
/*    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);*/
}

.area_stage .sokuho dd a {
	transition: 0.5s;
}
.area_stage .sokuho dd a:hover {
	text-decoration: underline;
}
.area_stage .sokuho dd a .icon {
	margin-left: 0.2em;
	color: #500017;
	vertical-align: super;
	font-size: 0.8em;
}

@media screen and (max-width: 600px){
	.area_stage .sokuho dt {
		font-size: 1.1em;
	}
	.area_stage .sokuho dd {
		font-size: 1.3em;
	}
}


/*****フッター*****/


#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #ffe20b;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}


/****************************************

　フッター

*****************************************/


footer{
	width: 100%;
	margin: 0 auto;
    padding: 2em 0 0;
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

footer .copy {
	display: block;
	padding: 1em;
	line-height: 1.5;
    font-family: "ab-megadot9", sans-serif;
    font-weight: 400;
    font-style: normal;
}

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;
}

