@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
***/

/***色
赤　#98252a;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #c51329;
    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;
	/* ベースフォントを10pxに設定 (16px * 62.5% = 10px) */
	font-size: 62.5%; 
 	-webkit-text-size-adjust: none;
} 

body {
	margin: 0;
	padding: 0;
	/* PCでのデフォルト文字サイズを18pxに設定 (10px * 1.8 = 18px) */
	font-size: 1.8rem;
	line-height: 2;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
    font-weight: 500;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #000;
}

@media screen and (max-width: 768px){
	body {
		/* スマホでの文字サイズを16pxに変更 (10px * 1.6 = 16px) */
		font-size: 1.6rem;
	}    
}

@media screen and (max-width: 600px){
/*	body:after {
		background-size: 10vw;  
	}*/
}


/*****メインコンテンツ*****/

.wrap{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	margin: 0 auto;
	padding: 0;
}


/****************************************

　ナビ

*****************************************/

/* ハンバーガーボタンの基本スタイル */
.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* ナビゲーションメニューの基本スタイル（初期は画面外） */
.nav-menu {
  position: fixed;
  top: 0;
  left: -400px;
  width: 400px;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  z-index: 99;
  transition: left 0.5s ease;
  padding-top: 80px;
  
  /* 追加: 縦方向のスクロールを許可 */
  overflow-y: auto; 
  /* 追加: スクロールした際の下部の余白（必要に応じて調整） */
  padding-bottom: 20px;
}

.nav-menu ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
}

.nav-menu li a {
	display: block;
	padding: 0.5em;
	text-decoration: none;
	color: #fff;
	font-size: 1.2em;
	font-weight: 500;
	text-align: left;
}

.nav-menu li a:hover {
	opacity: 0.8;
}

.nav-menu li a .amp {
	margin: 0 0.3em;
}

/* メニュー開閉時のスタイル（.active付与時） */
.nav-menu.active {
  left: 0; /* 画面内にスライドイン */
}

/* ハンバーガーボタンを「×」に変形 */
.hamburger.active span {background-color: #fff;}
.hamburger.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0; /* 真ん中の線を消す */
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* PC用横並びヘッダーのスタイル */
.header-desktop {
    width: 100%;
    background-color: #000; /* 背景色（サイトに合わせる） */
    padding: 1em 0;
    text-align: center;
}
.header-desktop nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 0.5em; /* メニュー間の余白 */
}
.header-desktop nav ul li a {
	padding: 0 0.5em;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.2em;
    letter-spacing: 0.1em;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}
.header-desktop nav ul li a:hover {
    color: #c51329; /* ホバー時の色 */
}
.header-desktop nav ul li a .amp {
	margin: 0 0.3em;
}
/*.header-desktop nav ul li:not(:last-of-type)::after {
	content: "｜";
	padding-left: 0.5em;
}*/
.header-desktop nav ul li.ban a {
    letter-spacing: -0.05em;
}


/* JS操作用：ハンバーガーボタン非表示クラス */
.hamburger.is-hidden {
    display: none !important;
}

/* 画面幅762px以下のスタイル */
@media screen and (max-width: 1030px) {
    .header-desktop {
        display: none; /* スマホ幅では横並びメニューを非表示 */
    }
}


/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 999;

}

#pagetop a {
	text-decoration: none;
	color: #771317;
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}


footer{
	width: 100%;
	margin: 0 auto;
    padding: 2em 0 0;
	background: #98252a;	
	color: #fff;
	text-align: center;
	bottom: 0;
}

footer .list_credit {
	display: block;
	margin: 2em auto;
	line-height: 2;
}

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-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}


/****************************************

　ボックス

*****************************************/

.anchor {
    display: block;
    padding-top: 5em;
    margin-top: -5em;
}

@media screen and (max-width: 450px){
/*
	.anchor {
		padding-top: 8em;
		margin-top: -8em;
	}*/
}

.sec {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
    margin: 0 auto;
	padding: 3em;
}
.sec.c1 {
}
.sec.c1:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg_sec.png");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;  
    background-color: #98252a;
}
.sec.c2 {
    background-color: #000;
}

.sec .inner {
    margin: 0 auto;
	padding: 0 1em;
}
@media screen and (max-width: 900px) {
    .sec {
		padding-left: 1em;
		padding-right: 1em;
    }
}
@media screen and (max-width: 600px) {
    .sec {
        /* 中央揃えを解除し、上から配置する */
        align-items: flex-start;
        /* ヘッダーに隠れないよう、上下に十分な余白を確保する */
        padding-top: 6em;
        padding-bottom: 6em;
    }
}
@media screen and (max-width: 500px) {
    .sec {
		padding-left: 0;
		padding-right: 0;
    }
}
.heading_sec {
    margin: 1em auto 1.5em;
    font-size: 2.5em;
    line-height: 1.3;
    font-weight: 500;
    color: #fff;
}

.heading_sec .en {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-style: normal;
}

.heading_sec .en .amp {
    margin: 0 0.3em;
}

.heading_sec .jp {
    display: block;
    font-size: 0.4em;
    font-weight: 500;
    color: #999;
}
.heading_sec .note {
	display: block;
	margin-top: 0.5em;
	font-weight: 400;
	font-size: 0.65em;
}

@media screen and (max-width: 500px){
	.heading_sec {
		font-size: 2.2em;
	}
}

@media screen and (max-width: 400px){
	.heading_sec {
		font-size: 1.8em;
	}
}

/****************************************

　ビジュアル

*****************************************/

.area_visual {
    margin: 0 auto;
	padding: 0 1em 1em;
	background: #000;
}

.area_visual .list_ban {
	max-width: 900px;
	margin: 0 auto 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5em;

}

.area_visual .list_ban .ban {
	display: block;
	max-width: 430px;
	width: 100%;
	margin: 0 auto;
}

.area_visual .list_ban .ban img {
	display: block;
	width: 100%;
	height: auto;
}

.area_visual .visual.tate {
    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.tate img {
    display: block;
    width: 100%;
	box-shadow: 0 0 30px rgba(40,30,28,0.5);
}

.area_visual .visual.yoko {
	position: relative;
/*	display: none;*/
    width: 100%;
    height: calc(100vh - 80px); 
    margin: 0 auto 0;
}
.area_visual .visual.yoko img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

@media print {
    .area_visual {
        display: none;
    }
}

@media (orientation: landscape) {
/*	.area_visual .visual.tate {
		display: none;
	}
	.area_visual .visual.yoko {
		display: block;
	}*/
}
@media screen and (max-width: 1031px) {
	.area_visual {
		padding-top: 60px;
	}
}
@media screen and (max-width: 1019px) {
/*	.area_visual .visual.yoko {
		display: none;
	}
	.area_visual .visual.tate {
		display: block;
	}*/
}
@media screen and (max-width: 500px) {
	.area_visual .list_ban {
		display: block;
	}

	.area_visual .list_ban .ban {
		max-width: inherit;
		margin: 0 auto 0.5em;
	}
}

/***************************************************

　イントロ

**************************************************/

.area_intro{
    margin: 0 auto 6em;
}

.area_intro .inner {
	width: 100%;
	max-width: 1000px;
}
.area_intro .catch {
	margin: 0 auto 1em;
	font-size: 1.6em;
	color: #fff;
	text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}
.area_intro .catch2 {
	margin: 0 auto 1em;
	font-size: 1.3em;
	color: #fff;
	text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}

.area_intro .wrap_text {
	margin: 0 auto 2em;
	text-align: left;
}

.area_intro .wrap_text .text:not(:last-of-type) {
	margin-bottom: 2em;
}

@media screen and (max-width: 600px) {
	.area_intro .catch {
		font-size: 1.4em;
	}
}

@media screen and (max-width: 500px) {
	.area_intro .catch {
		margin-bottom: 2em;
		font-size: 1.2em;
	}
}

@media screen and (max-width: 330px) {
	.area_intro .catch {
		font-size: 1.1em;
	}
}

/***************************************************

　ストーリー

**************************************************/

.area_story{
    margin: 0 auto 6em;
}

.area_story .inner {
	width: 100%;
	max-width: 1000px;
}

.area_story .wrap_text {
	margin: 0 auto 2em;
	text-align: left;
}

.area_story .wrap_text .text:not(:last-of-type) {
	margin-bottom: 1em;
}

.area_story .text .point {
	display: block;
	margin-top: 1em;
	font-size: 1.2em;
	text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
}

@media screen and (max-width: 600px) {
}


/***************************************************

　キャスト

**************************************************/

.area_cast{
    margin: 0 auto 6em;
}

.area_cast .inner {
	width: 100%;
	text-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.area_cast .inner .res {
	display: none;
}
.area_cast .photo img {
	display: block;
	width: 100%;
}

@media print {
    .area_cast .photo img {
        display: none;
    }
}

.area_cast .inner_cast {
	display: inline-block;
	margin: 0 auto;
}

.area_cast .list1 {
	margin: 2em auto 4em;
	font-size: 1.3em;
	line-height: 1.5;
}
.area_cast .list1 .work {
	display: block;
	margin: 0.5em auto 0;
	font-size: 0.7em;
}

.area_cast .list1 .photo {
	display: block;
	max-width: 240px;
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

.area_cast .list2 {
	margin: 0 auto 4em;
	font-size: 1.1em;
}

.area_cast .list2 li {
	display: inline-block;
	margin: 0 0.5em 1em;
}

.area_cast .list2 .photo {
	display: block;
	max-width: calc(240px * 0.8);
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

.area_cast .list2 .note {
	font-size: 0.7em;
	text-align: right;
}

.area_cast .list2 .other {
	font-size: 0.8em;
	text-align: right;
}

.area_cast .list3 {
	margin: 0 auto 4em;
	font-size: 1.1em;
}
.area_cast .list3 .group {
	margin-bottom: 0.5em;
}

.area_cast .list3 .photo {
	display: block;
	max-width: calc(240px * 0.7);
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

.area_cast .list3 li {
	display: inline-block;
	margin: 0 0.5em 1em;
}

.area_cast .list4 {
	margin: 0 auto 4em;
	font-size: 1.1em;
}
.area_cast .list4 .group {
	margin-bottom: 0.5em;
}

.area_cast .list4 .photo {
	display: block;
	max-width: calc(240px * 0.55);
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
    /* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

.area_cast .list4 li {
	display: inline-block;
	margin: 0 0.5em 1em;
}

.area_cast .list_e {
	margin: 0 auto 4em;
}

.area_cast .list_e .res_e {
	display: none;
}
.area_cast .list_e .res_e2 {
	display: none;
}

.area_cast .list_e .list {
	margin-bottom: 1em;
}

.area_cast .list_e .list li {
	display: inline-block;
	margin: 0 0.5em 1em;
}


@media screen and (max-width: 1200px) {
	.area_cast .list1 .photo {
		max-width: 200px;
	}
	.area_cast .list2 .photo {
		max-width: calc(200px * 0.8);
	}

	.area_cast .list3 .photo {
		max-width: calc(200px * 0.7);
	}
	.area_cast .list4 .photo {
		max-width: calc(200px * 0.55);
	}

	.area_cast .list_e .res_e {
		display: inline;
	}
}

@media screen and (max-width: 900px) {
	.area_cast .list1 {
		font-size: 1.2em;
	}
	.area_cast .list2 {
		font-size: 1em;
	}
	.area_cast .list3 {
		font-size: 1em;
	}
	.area_cast .list4 {
		font-size: 1em;
	}
	.area_cast .list_e {
		font-size: 0.9em;
	}
	.area_cast .list1 li {
		margin: 0 0.25em 1em;
	}
	.area_cast .list2 li {
		margin: 0 0.25em 1em;
	}
	.area_cast .list3 li {
		margin: 0 0.25em 1em;
	}
	.area_cast .list4 li {
		margin: 0 0.25em 1em;
	}
	.area_cast .list1 .photo {
		max-width: 180px;
	}
	.area_cast .list2 .photo {
		max-width: calc(180px * 0.8);
	}
	.area_cast .list3 .photo {
		max-width: calc(180px * 0.7);
	}
	.area_cast .list4 .photo {
		max-width: calc(180px * 0.55);
	}
}

@media screen and (max-width: 800px) {
	.area_cast .list1 .photo {
		max-width: 160px;
	}
	.area_cast .list2 .photo {
		max-width: calc(160px * 0.8);
	}
	.area_cast .list3 .photo {
		max-width: calc(160px * 0.7);
	}
	.area_cast .list4 .photo {
		max-width: calc(160px * 0.55);
	}
}

@media screen and (max-width: 640px) {
	.area_cast .inner .res {
		display: inline;
	}
}

@media screen and (max-width: 550px) {
/*	.area_cast .list_e {
		max-width: 360px;
	}*/
	.area_cast .list_e .res_e {
		display: none;
	}
	.area_cast .list_e .res_e2 {
		display: inline;
	}
/*	.area_cast .list_e .list li {
		width: 40%;
		margin-bottom: 0;
	}*/
}

@media screen and (max-width: 400px) {
	.area_cast .list1 .photo {
		max-width: 140px;
	}
	.area_cast .list2 .photo {
		max-width: calc(140px * 0.8);
	}
	.area_cast .list3 .photo {
		max-width: calc(140px * 0.7);
	}
	.area_cast .list4 .photo {
		max-width: calc(140px * 0.55);
	}
}

@media screen and (max-width: 360px) {
	.area_cast .inner .res {
		display: none;
	}
	.area_cast .list1 li {
		display: block;
	}
	.area_cast .list2 li {
		display: block;
	}
	.area_cast .list3 li {
		display: block;
	}
	.area_cast .list4 li {
		display: block;
	}
	.area_cast .list_e .res_e2 {
		display: none;
	}
	.area_cast .list_e .list:not(:last-of-type) {
		margin-bottom: 2em;
	}
	.area_cast .list_e .list li {
		width: 40%;
		margin-bottom: 0;
	}
}

/***************************************************

　スケジュール

**************************************************/

.area_ticket {
    margin: 0 auto;
	padding-bottom: 6em;
}

.area_ticket .inner {
	width: 100%;
    max-width: 1000px;
	margin: 0 auto;
}

.area_ticket .list {}
.area_ticket .list .item {
	margin: 0 auto 2em;
	padding: 1em 2em 2em;
	border: 1px solid #fff;
	border-radius: 3px;
	background: rgba(0,0,0,0.1);
}

.area_ticket .list .item > dt {
	padding: 0;
	font-size: 1.4em;
}
.area_ticket .list .item > dt .area {
	display: block;
	margin: 0 auto 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	font-size: 1.5em;	
	color: #fff;
}
.area_ticket .list .item > dt .theater {
	display: block;
	margin: 0 auto;
}
.area_ticket .list .item > dt .day {
}
.area_ticket .list .item > dd {
	padding: 0.5em 0;
	font-size: 1.1em;
}

@media screen and (max-width: 500px) {
	.area_ticket .list .item > dt {
		font-size: 1.2em;
	}
	.area_ticket .list .item > dt .area {
		font-size: 1.5em;	
	}
}

.area_ticket .list .item .day_list {
	display: flex;
	justify-content: center;
	gap: 2em;
	margin: 0 auto 1em;
}

@media screen and (max-width: 580px) {

	.area_ticket .list .item .day_list {
		display: block;
	}
}


.area_ticket .list .item .cast {
}
.area_ticket .list .item .cast .res {
	display: none;
}
.area_ticket .list .item .cast .res2 {
	display: none;
}
.area_ticket .list .item .cast .lbl {
	margin: 0 auto 1em;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	font-size: 0.8em;
}
.area_ticket .list .item .cast ul {
	margin: 0 auto;
	text-align: left;
}

.area_ticket .list .item .cast li {
	display: inline-block;
	margin: 0 0.5em;
}
.area_ticket .list .item .cast li .note {
	font-size: 0.7em;
}

@media screen and (max-width: 500px) {
	.area_ticket .list .item .cast li {
		font-size: 0.9em;
	}
}
.area_ticket .list .btn {
    display: block;
    max-width: 600px;
    margin: 0.3em auto;
    padding: 0 0 0.2em;
/*	box-shadow: 0 0 10px rgba(0,0,0,0.3) inset;*/
    border: 1px solid #000;
	background: #000;
    border-radius: 1px;
    color: #fff;
    text-decoration: none;
    transition: 0.5s;
}

.area_ticket .list .btn:hover {
    background: rgba(0,0,0,0.5);
}

.area_ticket .list .item .contact {}
.area_ticket .list .item .contact .lbl {
	margin: 0 auto 1em;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	font-size: 0.8em;
}

.area_ticket .list .item .contact .office,
.area_ticket .list .item .contact .tel {
	display: inline-block;
	margin: 0 0.5em;
}
.area_ticket .list .item .contact .tel a {
	color: #fff;
	text-decoration: none;
}
.area_ticket .list .item .contact .tel::before {
	content: "TEL.";
}
.area_ticket .list .item .contact .url {
	display: block;
	word-break: break-all;
}
.area_ticket .list .item .contact .url a {
	color: #fff;
	text-decoration: underline;
}

@media screen and (max-width: 500px) {
	.area_ticket .list .item {
		padding: 1em 1em 2em;
	}
	.area_ticket .list .item .cast .res2 {
		display: inline;
	}
	.area_ticket .list .item .cast ul {
		text-align: center;
	}

	.area_ticket .list .item .cast li {
		display: block;
		margin: 0 auto 0.5em;
		line-height: 1.5;
	}
}
