@charset "utf-8";

/* @media screen and (min-width:769px) { */

	/* html{
		overflow:auto;
	}
	body {
		overflow: hidden;
	}
	.onlySp,
	.onlySp2 {
		display: none;
	} */


	/* ----------------------------------------
		#container
	---------------------------------------- */
	#page {
		/* border: 2px solid yellow; */
		width: 100%;
		height: 100%;
		overflow-y:hidden;
	}

	#container {
		position: relative;
	}

@media screen and (min-width:769px) {
	/* ----------------------------------------
		header
	---------------------------------------- */

	header#masthead {
		position: fixed;
		top:0;
		left:0;
		margin: 0;
		width:100%;
		height: 120px;
		margin: auto;
		background: #111111;
		z-index: 99;
		transition: all .25s ease-out;
		
		/* 追加：20250806 display: none; */
		
	}
	header#masthead.fixed {
		height: 70px;
	}
	* html header#masthead {
		position: absolute;
		/* top: expression(eval(document.documentElement.scrollTop+0)); */
	}

	header#masthead a:link,
	header#masthead a:visited,
	header#masthead a:active {
		text-decoration: none;
	}
	header#masthead ul {
		margin: auto;
		-js-display: flex;
		display: flex;
		justify-content: flex-end;
	}
	header#masthead .inner {
		position: relative;
		max-width: 1340px;
		width: 100%;
		height: 100%;
		text-align: center;
	}

	header#masthead .site_title a img.logo {
		position: absolute;
		top: 8px;
		left: 10px;
		width: 192px;
		height: auto;
		transition: all .25s ease-out;
	}
	header#masthead.fixed .site_title a img.logo {
		width: 100px;
	}

	/* ------#nav_global------------ */

	header#masthead #nav_global ul#nav_main {
		position: absolute;
		height: 1.3em;
		display: inherit;
		text-align: right;
	}

	header#masthead ul#nav_main > li {
		display: inline-block;
		margin-bottom: 10px;
	}

	header#masthead ul#nav_main li.gnav a,
	header#masthead ul.language li a {
		position: relative;
		font-size: 1em;
		padding-bottom: 3px;
		transition: all .25s ease-out;
	}

	header#masthead ul#nav_main li.gnav a {
		display: inline-block;
	}

	header#masthead ul.language li a {
		margin-left: 30px;
		/* margin-bottom: 5px; */
	}

	header#masthead ul#nav_main li.gnav a::after,
	header#masthead ul.language li a::after {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		content: " ";
		height: 1px;
		background: rgba(211,47,141,0);
		transition: all .25s ease-out;
	}
	header#masthead ul#nav_main li.gnav a:hover::after,
	header#masthead ul.language li a:hover::after,
	header#masthead.jp ul.language li.jp a::after,
	header#masthead.en ul.language li.en a::after,
	header#masthead.ko ul.language li.ko a::after,
	header#masthead.zh ul.language li.zh a::after {
		/* background: rgba(211,47,141,1); */
		/* background: #fff; */
		border-bottom: 5px solid rgba(211, 47, 141, 1);
	}

	/* アクティブ */
	header#masthead ul#nav_main li.page_item a {
		color: gold;
	}

	/* メニュー1ユニットの空きとか */
	header#masthead ul#nav_main li.gnav a {
		margin: 0 20px;
		padding-bottom: 15px;
	}
	header#masthead ul#nav_main li.gnav:last-of-type a {
		margin-right: -5px;
	}

	header#masthead ul#nav_main li.gnav a::after {
		bottom: 12px;
	}
	header#masthead ul#nav_main li.gnav ul {
		position: absolute;
		top: 30px;
		display: block;
		z-index: 9999;
		margin: 0 auto;
		padding: 0 10px 10px;
		opacity: 0;
		background: rgba(211,47,141,0.9);
		visibility: hidden;
		transition: all .25s ease-out;
	}
	header#masthead ul#nav_main li.gnav:hover ul {
		top: 40px;
		visibility: visible;
		opacity: 1;
	}
	header#masthead ul#nav_main li.gnav ul li {
		position: relative;
		width: auto;
	}
	header#masthead ul#nav_main li.gnav ul li a {
		display: block;
		margin: 0;
		padding: 12px 5px;
		font-size: 1rem;
		line-height: 1.4;
		color: #FFFFFF;
		text-align: left;
		border-bottom: 1px solid rgba(255,255,255,0.4);
		transition: all .25s ease-out;
		text-align: center;
	}
	header#masthead ul#nav_main li.gnav ul li a:hover {
		border-bottom: 1px solid rgba(255,255,255,0.8);
	}
	header#masthead ul#nav_main li.gnav ul li a:hover::after {
		display: none;
	}
	header#masthead ul#nav_main li.gnav.archive ul li a {
		padding: 12px 30px;
	}

	/* ------.language------------ */

	header#masthead ul.language {
		/* 20230830追加：言語選択欄を一旦消すため */
		display: none;

		/* -------- */
		position: absolute;
		top: 28px;
		right: 120px;
		transition: all .25s ease-out;
	}
	header#masthead ul.language li a {
		color: #878787;
		padding-bottom: 0;
	}


	/* ------.sns------------ */

	header#masthead ul.sns {
		position: absolute;
		top: 23px;
		right: 20px;
		transition: all .25s ease-out;
	}
	header#masthead ul.sns li a {
		display: inline-block;
		margin-left: 10px;
		width: 35px;
		height: 35px;
		background: #878787;
		border-radius: 50%;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		-js-display: flex;
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: center;
		justify-content: center;
		transition: all .25s ease-out;
	}
	header#masthead ul.sns li a:hover {
		background: #545454;
	}
	header#masthead ul.sns a i {
		color: #000000;
		font-size: 1.375rem;
		transition: all .25s ease-out;
	}
	header#masthead ul.sns a:hover i {
		color: #FFFFFF;
	}

	header#masthead.fixed ul.language,
	header#masthead.fixed ul.sns {
		top: -50px;
	}

	header#masthead .site_title a img.logo {
		width: 120px;
	}
	header#masthead #nav_global ul#nav_main {
		bottom: 10px;
		right: 0;
		left: 0;
		width: 96%;
		margin: auto;
		justify-content: space-between;
	}

	/* header#masthead ul#nav_main li.gnav a {
		margin: 0 20px;
	} */

	/* レイアウトなど */
	.content-area {
		padding: 50px 0 0;
		min-height: max-content;
		/* height: 100%; */
	}

	.content-area.lowerpages {
		padding: 150px 0 70px;
		/* 追加：20250806padding: 0 0 70px; */
		
	}

	.h1-default {
		width: 100%;
		height: 150px;
		background: #CA0C3A;
		margin-top: -1em;
		/*  */
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* パンくずリストの内側 */
	.inner {
		margin: auto;
		padding: 0 20px;
		max-width: 1000px;
		/* min-width: 729px; */
		text-align: right;
	}


	.responce-img {
		display: block;
		margin-top: -3em;
		width: 100%;
		height: fit-content;
	}
}


/* @media screen and ( max-width:980px ) {

	header#masthead .site_title a img.logo {
		width: 120px;
	}
	header#masthead #nav_global ul#nav_main {
		bottom: 10px;
		right: 0;
		left: 0;
		width: 96%;
		margin: auto;
		justify-content: space-between;
	}

	header#masthead ul#nav_main li.gnav a {
		margin: 0 20px;
	}

} */


/* ----------------------------------------
	#content
---------------------------------------- */

#content {
	margin: 0 auto;
	padding: 70px 10px 80px;
	max-width: 1080px;
	/* min-width: 729px; */
	/* width: 100%; */
}
#content section:after,
#content div.group:after,
.inner:after {
	content: "";
	display: block;
	clear: both;
	height: 1px;
	overflow: hidden;
}
/*#content a img {
	transition: all 0.2s linear;
}
#content a img:hover {
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}*/




/* ---------------------------------------- */

.flex_center {
	display: flex;
	justify-content: center;
}

/* ----------------------------------------
	footer
---------------------------------------- */

footer#mastfoot {
	position: relative;
	/* position: absolute; */
	left: 0;
	bottom: 0;
	width: 100%;
	min-height: max-content;
	color: #FFFFFF;
	text-align: center;
	padding: 40px 0 20px;
	background: #000000;
}

footer#mastfoot a:link,
footer#mastfoot a:visited,
footer#mastfoot a:active {
	color: #FFFFFF;
	text-decoration: none;
}
footer#mastfoot a:hover {
	text-decoration: none;
}
footer#mastfoot ul {
	-js-display: flex;
	display: flex;
	justify-content: center;
}

/* ------.sns------------ */

footer#mastfoot ul.sns {
	position: relative;
	padding-bottom: 50px;
	z-index: 3;
}
footer#mastfoot ul.sns li a {
	display: inline-block;
	margin-left: 10px;
	width: 35px;
	height: 35px;
	background: #878787;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-js-display: flex;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	transition: all .25s ease-out;
}
footer#mastfoot ul.sns li a:hover {
	background: #545454;
}
footer#mastfoot ul.sns a i {
	color: #000000;
	font-size: 1.375rem;
	transition: all .25s ease-out;
}
footer#mastfoot ul.sns a:hover i {
	color: #FFFFFF;
}

/* ------.sponsorship------------ */

footer#mastfoot ul.sponsorship {
	padding-bottom: 20px;
}
footer#mastfoot ul.sponsorship li {
	margin: 0 10px;
	-js-display: flex;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
footer#mastfoot ul.sponsorship li.sponsor01 img {
	width: 45px;
	height: auto;
}
footer#mastfoot ul.sponsorship li.sponsor02 img {
	width: 170px;
	height:auto;
}
footer#mastfoot ul.sponsorship li.sponsor03 img {
	width: 250px;
	height: auto;
}
footer#mastfoot ul.sponsorship li.sponsor04 img {
	width: 30px;
	height: auto;
}

footer#mastfoot .add {
	width: max-content;
	height: max-content;
	margin: auto;
	padding-bottom: 30px;
	font-size: 0.9375rem;
}
footer#mastfoot small {
	display: block;
	font-size: 0.75rem;
}

/* ------#pagetop------------ */

#pagetop a {
	display: block;
	position: absolute;
	top: -35px;
	left: 0;
	right: 0;
	width: 80px;
	height: 80px;
	margin: auto;
	text-align: center;
	text-decoration: none;
	background: #000000;
	z-index: 2;
	-js-display: flex;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#pagetop a i {
	color: #878787;
	font-size: 2.25rem;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition: all .25s ease-out;
}
#pagetop a:hover i {
	color: #FFFFFF;
}



/**=========================================
	Basic Layout Design Pattern
*/
h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.3em;
	color: #e4007f;
	border-bottom: 1px dashed #e4007f;
	margin: 0 0 1em;
	/* padding-bottom: 0.5em; */
}

h3 {
	font-size: 1.2em;
	color: #e4007f;
}

p {
	padding: 0 0 1.5em;
}

.button-container {
	padding: 1em 0;
}
.button-container > * {
	margin: auto;
}

/**=========================================
	Table Design Pattern
*/
.t-type-a {
	border-collapse: separate;
	border-spacing: 3px;
	margin: 1em 0;
}
.t-type-a th {
	color: #e4007f;
	background: #ffd7ed;
	padding: 0.5em 1em;
	white-space: nowrap;
}
.t-type-a td {
	background: white;
	padding: 0.5em 1em;
}

.t-type-b {
	width: 100%;
	border: 1px dashed #333;
	border-width: 0 0 1px;
}

.t-type-b td {
	vertical-align: top;
	padding: 0.5em 1em;
	border-top: 1px dashed #333;
	line-height: 1.5;
}

.t-type-c {
	width: 100%;
}

.t-type-c th {
	font-weight: bold;
	color: white;
	text-align: center;
	padding: 0.5em 1em;
	background: #454545;
}

.t-type-c td {
	color: white;
	text-align: left;
	padding: 0.5em 1em;
	border-bottom: 1px dashed #9a9a9a;
}

.t-type-c td:nth-child(even) {
	background: #383838;
}


/**=========================================
	List Design Pattern
*/
.list-a > li {
	padding-left: 1.3em;
	text-indent: -1.3em;
	margin-bottom: 0.5em;
}
.list-a > li::before {
	content: "●";
	padding-right: 0.3em;
}

.list-a > li > ul {
	margin-left: 1.5em;
}

.list-a > li > ul > li {
	list-style-type: circle;
	text-indent: 0;
	padding: 0 0 0.5em 0;
}

.list-b {
	margin-left: 1.3em;
}

.list-b > li {
	list-style-type: decimal;
}

/**=========================================
	パンくずリスト:ver.2021
*/
.breadcrumbs-container {
	/* padding: 125px 0 5px;
	background: #eee; */

	padding: 10px 0 5px;
}
.breadcrumbs {
	margin: auto;
	width: 1000px;
	font-size: 0.7em;
}


/**=========================================
	Button Design Pattern
*/
.button-type-a {
	display: block;
	background: #0055ff;
	text-align: center;
	padding: 1em;
	border-radius: 3em;
	font-size: 0.8em;
	margin-bottom: 1.5em;
}

a:link.button-type-a {
	color: white;
}

.button-type-a > * {
	display: block;
	font-size: 1.3em;
	font-weight: bold;
	border-bottom: 1px solid white;
	margin: 0 0 0.3em;
}

/**=========================================
	Columns
*/
.c-2cols {
	width: 100%;
	display: table;
	table-layout: fixed;
}

.c-2cols > * {
	display: table-cell;
}

/* 暫定設定 */
.c-ex-zan {
	width: 30%;
}

/**=========================================
	table-cell:ver.2021
*/
.columns {
	width: 100%;
	display: table;
	table-layout: fixed;
}

.columns > * {
	display: table-cell;
	vertical-align: middle;
}


/**=========================================
	COM
*/
.w-middle {
	width: 520px;
}

/* スマホ画面の時のみ表示する */
.display_sp {
	display: none;
}

/* PC画面の時のみ表示する */
.display_pc {
	display: inline-block;
}

/**=========================================
	INDEX:ver.2021
*/
.enclose-a {
	border: 3px solid  #e4007f;
	padding: 1.2em 1.5em;
	height: fit-content;
	/* background: white; */
	margin: 0 0 1.5em;
}

.h1-index {
	font-size: 2.3em;
	padding: 1.5em 0;
	background: url(../img/index/h1-image.png) no-repeat;
	background-size: contain;
	margin-bottom: 1em;
}

.h1-index > small {
	display: block;
	font-size: 0.6em;
}

.enclose-inner-b {
	/* line-height: 2; */
}

.enclose-inner-b > b {
	padding: 3px 5px;
	background: #e4007f;
	color: white;
	display: inline-block;
	margin: 0 0.3em 0 0.5em;
	/* border-radius: 10px; */
	width: 80px;
	text-align: center;
	border-bottom: 2px solid #fff;
}

.flex-com {
	display: -ms-grid;
	display: grid;
	gap: 1em;
	-ms-grid-columns: 1fr 1em 1fr 1em 1fr;
	grid-template-columns: 1fr 1fr 1fr;
	-ms-grid-rows: 1fr;
	grid-template-rows: 1fr;
}.flex-com > *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}.flex-com > *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}.flex-com > *:nth-child(3) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}

.grid2x2 {
	/* display: grid;
	gap: 1em;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr; */
	width: 100%;
	display: table;
	table-layout: fixed;
	border-collapse:separate;
	border-spacing: 2em;
}

.grid2x2 > * {
	width: 200px;
	height: 200px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	line-height: 1.5;
	/* background: #e4007f;
	color: white;
	text-align: center;
	font-weight: bold; */

	/* align-items: center;
    justify-content: center; */

}

.grid2x2 > * > a.a-ex {
	display: block;
	height: 100%;
	color: white;
	background: #e4007f;
	text-align: center;
	padding-top: calc(100px - 1em);
	/* align-items: center;
    justify-content: center; */
}

.grid2x2 > * > a.a-ex2 {
	display: block;
	height: 100%;
	color: white;
	background: #e4007f;
	text-align: center;
	padding-top: calc(100px - 1.5em);
	/* align-items: center;
    justify-content: center; */
}

.misc2021 {
	display: block;
	font-size: 0.8em;
	text-align: center;
}

.off-btn {
	opacity: 0.7;
	background: #e4007f;
	color: #ccc;
}

.indexx2 {
	width: 490px;
	height: 250px;

	vertical-align: baseline;

	/* border:1px solid red; */
}

.indexx2 figure > img {
	display: block;
}

.indexx2 a {
	text-align: center;
	display: block;
	width: 100%;
	height: 250px;
	padding-top: calc(50% - 0.5em);
	font-size: 1.1em;
	font-weight: bold;
	color: white;
}

.indexx2 .link01 {
	background: #4a1490;
	color: white;
}


.indexx2 .link02 {
	background: #e5007f;
	color: white;
	padding-top: calc(50% - 1.5em);
	line-height: 1.3;
}

.indexx3 .link03, .indexx3 .link04 {
	display: block;
	height: 250px;
	color: white;
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
}

.indexx3 .link03 {
	background: #111111;
	padding-top: calc(25% - 3em);
	line-height: 1.3;
	cursor: default;
}

.indexx3 .link04 {
	background: #2b5ca9;
	padding-top: calc(25% - 2em);
	line-height: 1.3;
	cursor: default;
}

/* .grid-index {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 1fr 1fr;
} */

.grid-index {
	display: -ms-grid;
	display: grid;
	gap: 20px;
	-ms-grid-columns: 1fr 20px 1fr;
	grid-template-columns: 1fr 1fr;
	-ms-grid-rows: 1fr 20px 1fr;
	grid-auto-rows: 1fr 1fr;
}

.grid-index > *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.grid-index > *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}

.grid-index > *:nth-child(3) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}

.grid-index > *:nth-child(4) {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}

.whats-new {
	margin: 0 0 3em;
}

.whats-new li {
	padding: 0.2em 0;
}

.whats-new time {
	/* display: inline-block; */
	/* margin-right: 3em; */
	width: 8em;
	vertical-align: top;
	color: #e5007f;
}

.whats-list b {
	color: #e5007f;
}


.content.ex {
	padding:10em 5em;
}


/**=========================================
	table pattern:ver.2021
*/
.t-type01 {
	margin: 0 0 2em;
}
.t-type01 li {
	border-bottom: 1px dashed #999;
}
.t-type01 .row1, .t-type01 .row2 {
	padding:8px 10px;
}

.t-type01 .row1 {
	/* display: inline-block; */
	background: #ffd8ed;
	width: 6em;
	color: #e4007f;
	font-weight: bold;
}


/**=========================================
	春期公演申込ボタン :ver.2021
*/
#page .ticket-btn {
	display: inline-block;
	background: #0166ff;
	padding: 10px 80px;
	color: white;
	font-weight: bold;
	border-radius: 10% / 50%;

	/*  */
	/* display: none; */
}


/**=========================================
	予約フォーム:ver.2021
*/
.input-number label[for=client-adult], .input-number > br {
	display: none;
}

#client-adult {
	border: 1px solid #333;
}

/**=========================================
	暫定: インデックス 20221011追加
*/
.h3_2022 {
	font-size: 1.3em;
	text-align: left;
	color: gold;
	padding-bottom: 0.5em;
}

.btn_ticket2022 {
	display: inline-block;
	background: red;
	padding: 0.3em 0.5em;
	text-align: center;
	border-radius: 5px;
}

.flex-layout {
	width: 17em;
	display: flex;
    justify-content: center;
    align-items: center;
}

/**=========================================
	暫定: インデックス 20230317追加
*/

.ex-size-lg {
	font-size: 2.5em;
	line-height: 1.2;
	font-weight: bold;
	color: gold;
	text-align: center;
	margin: 0 0 1em;
	/* padding-bottom: 0.5em; */
}

.ex-size-sm {
	font-size: 1.5em;
	line-height: 1.2;
	font-weight: bold;
	color: gold;
	text-align: left;
	margin: 0 0 1em;
}



/**=========================================
	暫定: インデックス 20230705追加
*/
.menber-list {
	margin-left: 1.5em;
	font-size: 1.2em;
	line-height: 2;
}

@media screen and (max-width:769px) {
	.h3_2022 {
		font-size: 1.5em !important;
		padding-bottom: 0;
	}

	.t-type-c {
		display: block;
	}
	.t-type-c tr {
		display: block;
		border-bottom: 1px dotted #9a9a9a;
	}
	.t-type-c th {
		display: none;
	}
	.t-type-c td {
		display: block;
		border: none;
	}

	.t-type-c td.pc_only {
		display: none;
	}

	.t-type-c td:nth-child(4) {
		background: transparent;
	}

	.flex-layout {
		width: 100%;
		display: block;
		background: transparent;
		text-align: center;
	}

	.pc_only {
		display: none;
	}

	.btn_ticket2022 {
		display: block;
		margin: auto;
	}

	/**=========================================
		暫定: インデックス 20230317追加
	*/

	.ex-size-lg {
		font-size: 1.5em;
	}
}