@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);


/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}



/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	max-width: 100vw; /* 変更 */
    overflow-x: hidden;
    position: relative;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 20px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/

body {
	font-family: "M PLUS 1","Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-weight: 300;
	font-optical-sizing: auto;
	letter-spacing: 0.1rem;
	text-indent: 0.1rem;
	-webkit-text-size-adjust: none;
	margin: 0;padding: 0;
	line-height: 2.5;		/*行間*/
	background: #3d3663;		/*背景色*/
	color: #fff;			/*文字色*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li {margin: 0;padding: 0;}
nav ul {list-style: none;}
h1,h2,h3,h4 {font-weight: 400;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
strong {font-weight: 500;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #fff;	/*文字色*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;
}


/*header（ロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 250px;		/*幅*/
	padding: 0 2vw;		/*ヘッダー内の余白。上下、左右への順番。*/
	margin-top: 5vw;	/*ヘッダーの上に空けるスペース*/
	text-align: center;	/*テキストをセンタリング*/
}

/*ロゴ*/
header #logo img {display: block;}
header #logo {
	margin: 0;
	/*background: linear-gradient(30deg, #9efaad, #2b548a, #d22caf);/*グラデーション。30degは角度。*/
	padding: 1.5rem;		/*ロゴ内の余白*/
	border-radius: 5px;	/*角を丸くする指定*/
}

/*ロゴ下の小文字*/
header #logo span {
	display: block;
	font-size: 0.7rem;	/*文字サイズを70%に*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	header {
		position: fixed;	/*スクロールしても動かないようにする設定*/
		left: 0px;
		top: 0px;
	}

	}/*追加指定ここまで*/

	/*画面の高さが500px以下の追加指定*/
	@media screen and (max-height:500px) {

	header {
		position: absolute;	/*メニューが切れて見えなくならないように、fixedを中止する*/
	}

	}/*追加指定ここまで*/


/*mainブロック（右側のsectionを囲むブロック）
---------------------------------------------------------------------------*/

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	main {
		margin-left: 250px;	/*headerのwidthに合わせる*/
	}

	}/*追加指定ここまで*/


/*main内のh2*/
main h2 {
    font-size: clamp(2.5rem, 8vw, 5.0rem);  /* レスポンシブな文字サイズ */
    font-family:   'Noto Serif JP', sans-serif;
    text-align: center;
    line-height: 1.2;  /* 行の高さを調整 */
    margin-bottom: 1rem;  /* 下部の余白 */
}

/* 小さな画面用の追加設定 */
@media screen and (max-width: 768px) {
    main h2 {
        font-size: clamp(2rem, 7vw, 3.5rem);  /* さらに細かい調整 */
        padding: 0 1rem;  /* 左右の余白 */
    }
}

/*main内のh3*/
main h3 {
	font-size: 1.5rem;	/*文字サイズを1.5倍*/
}



/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}


/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul {
	margin: 3rem 0;	/*メニューブロックの外側に空けるスペース*/
}

/*メニュー一個あたり*/
#menubar nav a {
	text-decoration: none;display: block;
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒のことで0.5は色が50%出た状態。*/
	border: 1px solid rgba(255,255,255,0.3);	/*枠線の幅、線種、色。255,255,255は白のことで0.3は色が30%出た状態。*/
	color: #fff;		/*文字色*/
	padding: 0.5rem;	/*余白*/
	margin: 0.5rem 0;	/*メニューの外側に空けるスペース。上下、左右。*/
	border-radius: 5px;	/*角を丸くする指定*/
}

/*マウスオン次*/
#menubar nav a:hover {
	background: rgba(0,0,0,0.9);	/*背景色。透明度を変更して濃くします。*/
	border: 1px solid rgba(255,255,255,0.9);	/*枠線。透明度を変更して濃くします。*/
}

/*900px以下画面でのメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 80px;
	background: rgba(0,0,0,0.8);		/*背景色*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}
.small-screen #menubar ul {
	margin: 3rem;	/*メニューブロックの外側に空けるスペース*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 30px;			/*右からの配置場所指定*/
	top: 30px;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: #d30c44;	/*背景色*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*メニュー内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	justify-content: center;
}
ul.icons li {
	margin-right: 10px;	/*アイコン同士の余白*/
}
ul.icons i {
	font-size: 20px;	/*Font Awesomeのアイコンサイズ*/
}


/*section
---------------------------------------------------------------------------*/
/*フェード設定*/
.section::before {
	opacity: 0; /* 初期状態では非表示 */
	transition: opacity 1s; /* 1秒かけてフェードイン/フェードアウト */
}
.section.active::before {
	opacity: 1; /* フェードイン状態 */
}
.section.inactive::before {
	opacity: 0; /* フェードアウト状態 */
}

/*section要素*/
section {
	padding: 2vw 5vw;	/*ボックス内の余白。上下、左右への順番。*/
}

/*４つのsectionブロックの共通設定*/
#section1,#section2,#section3,#section4,#section5 {
	min-height: calc(100dvh - 50px);	/*最低の高さ。100dvhは画面の高さ100%のこと。50pxは下のmarginの値。*/
	margin-bottom: 50px;	/*ボックスの下に空けるスペース*/
	padding: 5vw;			/*ボックス内の余白*/
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	#section1,#section2,#section3,#section4 {
		border-radius: 3vw 0 0 3vw;	/*角丸の指定。左上、右上、右下、左下への順番。*/
	}

	}/*追加指定ここまで*/


/*背景画像を置く為の設定*/
#section1::before,#section2::before,#section3::before,#section4::before {
	content: '';
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100vw; /* 変更 */
    height: 100vh; /* 高さも調整 */
    overflow: hidden; /* 追加 */
}

/*section1の設定*/
/*section1の設定*/
#section1 {
	color: #fff;	/*文字色*/
}
#section1::before {
	background: #1a1a1a;	/*深みのあるブラックに近いダークグレー*/
}

/*section2の設定*/
#section2 {
	background-color: rgba(24, 44, 62, 0.8);	/*落ち着いたダークブルーグレー*/
	color: #fff;	/*文字色*/
}
#section2::before {
	background: url('../images/honchira_upper.png') no-repeat center center / cover;
}

/*section3の設定*/
#section3 {
	background-color: rgba(34, 48, 64, 0.8);	/*少し柔らかさを加えたダークブルーグレー*/
	color: #fff;	/*文字色*/
}
#section3::before {
	background: url('../images/honchira_lower.png') no-repeat center center / cover;
}

/*section4の設定*/
#section4 {
	color: #fff;	/*文字色*/
}
#section4::before {
	background: #1a1a1a;	/*section1と統一感を持たせたダークグレー*/
}
#section5 {
	color: #fff;	/*文字色*/
}
#section5::before {
	background: #1a1a1a;	/*section1と統一感を持たせたダークグレー*/
}

/*背景色を入れない場合（画像だけを表示したい場合）*/
.no-bgcolor {background-color: transparent !important;}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.8rem;
	text-align: center;		/*内容をセンタリング*/
	padding-bottom: 1rem;
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new dd {
	padding-bottom: 1rem;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0 0.5rem;		/*上下、左右へのブロック内の余白*/
	width: 6rem;			/*幅。６文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: rgba(255,255,255,0.8);		/*背景色*/
	color: #333;			/*文字色*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

	}/*追加指定ここまで*/


/*list-grid（gallery.htmlでサムネイルを表示している部分の設定です）
---------------------------------------------------------------------------*/
/* 外側のボックス */
.list-grid-trimming {
    display: flex;          /* フレックスボックスを使用 */
    flex-direction: column; /* 縦並びに設定 */
    align-items: center;    /* 各アイテムを中央に揃える */
    gap: 20px;              /* 各キャストの間隔 */
    justify-content: center;/* 中央に配置 */
}

/* ボックス全体 */
.list-grid-trimming .list {
	display: flex;
	flex-direction: column; /* 縦方向に配置 */
	align-items: center;
	text-align: center;
}

/* 画像を正方形にする指定 */
.list-grid-trimming .list a {
	display: block;
	width: 100%; /* 親要素に合わせる */
	overflow: hidden;
	position: relative;
}

/* 画像のスタイル */
.list-grid-trimming .list img {
	width: 50%;
	height: 50%;
	object-fit: cover; /* 中央を切り抜く */
	object-position: center;
	transition: transform 0.5s, filter 0.5s; /* マウスオン時のアニメーション */
}

/* 画像のマウスオン時 */
.list-grid-trimming .list img:hover {
	transform: scale(1.1); /* 拡大 */
	filter: contrast(1.3); /* コントラスト強調 */
}

.list-grid-trimming .list p {
	margin-top: 0.5rem; /* 画像と文字の間隔 */
	font-size: clamp(1rem, 4vw, 1.5rem);  /* レスポンシブな文字サイズ */
	color: #fff;
	line-height: 1.4;
	text-align: center;  /* 中央揃え（必要に応じて） */
 }
 
 /* 小さな画面用の追加設定 */
 @media screen and (max-width: 768px) {
	.list-grid-trimming .list p {
		font-size: clamp(0.9rem, 3.5vw, 1.3rem);  /* さらに細かい調整 */
		padding: 0 0.5rem;  /* 左右の余白 */
	}
 }




/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 0.2s 0.2s both;	/*一瞬ボタンが出ちゃうのを隠す為の応急措置*/
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #000;border: 1px solid #fff;border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.color-check, .color-check a {color: #ffcf0d;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

	}/*画面幅900px以上の追加指定ここまで*/

/*自分で追加
/* セクション内の全体レイアウト */
.info-container {
     /* ウィンドウサイズに応じて折り返し */
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

/* 各ブロックのスタイル */
.info-block {
    background-color: rgba(26, 26, 26, 0.9); /* ダークグレーの背景色 */
    color: #fff; /* 白文字 */
    padding: 15px;
	margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* 軽いシャドウで立体感 */
    flex: 1 1 calc(30% - 20px); /* 3列に配置 */
    min-width: 200px; /* 最小幅を設定 */
}

.info-block h3 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);  /* レスポンシブなヘッダーサイズ */
    margin-bottom: 10px;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

.info-block ul li {
    font-size: 20px;  /* レスポンシブなリストアイテムサイズ */
    margin-bottom: 8px;
}

/* 小さな画面用の追加設定 */
@media screen and (max-width: 768px) {
    .info-block h3 {
        font-size: clamp(1rem, 4.5vw, 1.3rem);  /* さらに小さく */
        padding-bottom: 3px;
    }

    .info-block ul li {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);  /* さらに小さく */
        margin-bottom: 6px;
    }
}

.info-block ul {
    list-style: none; /* デフォルトのマーカーを削除 */
    padding: 0;
}

/* 公演画像と日付を重ねるコンテナ */
.info-image-container {
    position: relative;
    text-align: center;
}

.info-image-container p {
    font-size: clamp(1.5rem, 7vw, 2.0rem);  /* レスポンシブな文字サイズ */
    font-family: sans-serif;
    line-height: 1.4;  /* 行の高さを調整 */
    text-align: center;  /* 必要に応じて */
}

/* 小さな画面用の追加設定 */
@media screen and (max-width: 768px) {
    .info-image-container p {
        font-size: clamp(1.2rem, 6vw, 2.5rem);  /* さらに細かい調整 */
        padding: 0 1rem;  /* 左右の余白 */
    }
}

/* 動画のレスポンシブ対応 */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* アスペクト比16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.staff-list {
    display: flex;            /* フレックスボックスを使用 */
    flex-direction: column;   /* リストアイテムを縦に並べる */
    align-items: center;      /* 中央揃え */
    text-align: center;       /* テキストを中央揃え */
    gap: 10px;                /* アイテム間の間隔 */
    padding: 0;
    list-style: none;         /* デフォルトのリストマーカーを削除 */
}

/* スタッフ名のスタイル */
.staff-list li {
    font-size: clamp(1rem, 4vw, 1.5rem);  /* レスポンシブな文字サイズ */
    font-weight: bold;
    font-family: 'Noto Serif JP', sans-serif;
    line-height: 1.5;  /* 行の高さを調整 */
}

/* 小さな画面用の追加設定 */
@media screen and (max-width: 768px) {
    .staff-list li {
        font-size: clamp(0.9rem, 4vw, 1.2rem);  /* さらに細かい調整 */
        padding: 0.5rem 0;  /* 必要に応じて余白を追加 */
    }
}

.top_img_container{
	text-align: center;
}

.menubar{
	font-size: 14px;
}

.komezirushi{
	position: relative;
    text-align: center;
}