@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
html{
	scroll-behavior: smooth;}
body {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	font-size: 16px;
	color: #000;
	overflow-x: hidden;
}
a {
	transition: .3s;
}
a:link, a:visited {
	color: #0952a4;
}
a:hover {
	opacity: 0.8;
}
a:hover img {
	opacity: 0.8;
	filter: progid:DXImageTransform.Microsoft.Alpha(Enabled=1, Style=0, Opacity=80);
}
.active {
	opacity: 1;
}
:root {
	--fblack: #180614;
	--fbeige: #f8f4e8;
	--fgold: #936f3b;
	--fgold2: #b3915c;
	--fgold3: #bfad91;
	--frgold: #ebd1a9;
	--frgold2: #f8f4e8;
	--fpurple: #56256e;
	--fblue: #004b9d;
	--jblue: #00499f;
	--fsky: #6495ed;
	--forange: #f6ad49;
	--navy: #1b1464;
	--subFont1: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	--subFont2: "Shippori Mincho", serif;
	--subFont3: Arial, Helvetica, "sans-serif";
	--yellow: #ffff00;
	--yellowRGB: 255 255 0;
	--red: #ff0000;
}
article img {
	width: 100%;
}
section, nav {
	position: relative;
	/*font-feature-settings: "palt";*/
	/*font-weight: 500;*/
}
article b {
	font-size: 1.2em;
}
article mark {
	background: linear-gradient(transparent 48%, var(--yellow) 48% 90%, transparent 90%);
}
.red {
	color: #FF0000;
}
.black {
	color: #444444;
}
.noWrap {
	white-space: nowrap;
}
.breakWord {
	word-break: break-word;
}
.textCenter {
	text-align: center;
}
.textRight {
	text-align: right;
}
.tab-switch {
	display: none; /* ラジオボタン非表示 */
}
.small {
	font-size: .8em;
}
ul.midpoint > li, ul.kome > li, ul.square > li {
	line-height: 1.4;
	padding-top: .25em;
	text-indent: -1em;
	margin-left: 1em;
}
ul.kome > li:before {
	content: '※';
}
ul.square > li:before {
	content: '■';
	padding-right: .1em;
}
ul.midpoint > li:before {
	content: '●';
	font-size: .8em;
	padding-right: .1em;
	vertical-align: middle;
}
article .inner {
	max-width: 970px;
	margin: 0 auto;
	padding: 4em clamp(0.8rem, 0.702rem + 0.49vw, 1rem);
	color: #444;
}
/*背景色設定*/
article {
	background: var(--fblack);
}
section#entryJR, section#entry, section#digitalticket {
	background: var(--fbeige);
}
/*タイトル共通*/
.maintitle {
	width: fit-content;
	font-family: var(--subFont2);
	font-size: clamp(1.188rem, 0.664rem + 2.62vw, 2.25rem);
	line-height: 1;
	color: var(--fgold2);
	font-weight: 900;
	margin: 0 auto 1em;
	align-items: center;
	display: flex;
	justify-content: center;
}
.maintitle::before, .maintitle::after {
	background: var(--fgold2);
	content: "";
	height: 2px;
	width: 1.2em;
}
.maintitle::before {
	margin-right: .1em;
}
.maintitle::after {
	margin-left: .1em;
}
.subtitle {
	color: #fff;
	font-family: var(--subFont2);
	font-size: 1.5em;
	text-align: center;
	font-weight: 900;
}
/*ボタン共通*/
.Btn a {
	display: block;
	background: var(--jblue);
	color: #fff;
	font-family: var(--subFont1);
	font-weight: 700;
	padding: .5em 1em .5em 3%;
	position: relative;
	font-size: 1.05em;
}
.Btn a::after {
	content: "";
	border-top: solid 2px;
	border-right: solid 2px;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: .5em;
	transform: rotate(45deg);
	translate: 0 -50%;
	transition: all .2s;
}
.Btn a:hover::after {
	translate: 40% -50%;
}
.Btn a span {
	margin-left: .5em;
	padding: 3px 4px 0;
	background: #fff;
	border-radius: 2px;
	color: var(--jblue);
	display: inline-block;
	line-height: 1;
}
.btnWrap {
	display: grid;
	gap: 1em;
	margin: 1.2em auto .5em;
}
/*販売前ボタン＋ボタン非活性コード　・・・該当ボタンを含むタブに class="beforeSale"付与する*/
.beforeSale .Btn a {
	pointer-events: none;
}
.beforeSale .Btn a::before {
	display: grid;
	place-items: center;
	position: absolute;
	font-size: 1.2em;
	background: #999;
	z-index: 100;
	inset: 0px;
	border-radius: 5px;
}
.beforeSale .Btn a::before {
	content: "coming soon!";
}
.Btn a + span {
	display: block;
	width: fit-content;
	margin: .5em auto 0;
	font-size: 1.05em;
	text-align: center;
}
/*販売終了ボタン含むタブに class="ended"付与する*/
.ended .Btn a {
	background: #999;
	pointer-events: none;
}
.ended .Btn a span {
	color: #999;
}
/*販売終了のaタブに class="ended"付与する*/
a.ended {
	background: #999;
	pointer-events: none;
}
a.ended span {
	color: #999;
}
/*トップナビ*/
nav {
	margin-top: 1em;
	background: var(--fgold);
}
.topNav {
	max-width: fit-content;
	margin: 0 auto;
	padding: .2em 0;
	text-align: center;
}
.topNav a span {
	font-weight: 700;
	display: inline-block;
	padding: 0 .5em 1px;
	margin: 2px 0;
	font-size: 1em;
	color: var(--fbeige);
	font-family: var(--subFont2);
}
.topNav a:not(:last-of-type)::after {
	content: '|';
	vertical-align: .1em;
	color: var(--fbeige);
}
/*導入#intro*/
#intro .inner {
	max-width: 1000px;
	padding: 2em clamp(0.8rem, 0.702rem + 0.49vw, 1rem) 0;
}
#intro h2 {
	font-size: 1.4em;
	font-family: var(--subFont2);
	font-weight: 800;
	color: var(--frgold2);
	line-height: 2;
}
#intro h3 {
	margin: 1.5em auto 0;
	font-family: var(--subFont2);
	color: var(--frgold);
	text-align: center;
	font-weight: 800;
	font-size: 1.3em;
	line-height: 2;
}
#intro p {
	margin: 1em auto 0;
	font-size: 1.05em;
	font-family: var(--subFont2);
	color: var(--frgold);
	font-feature-settings: "palt"1;
	line-height: 2;
}
#intro p a {
	color: var(--frgold);
	text-decoration: underline;
}
/*閉館後貸切鑑賞会のご案内＃overview*/
#overview h3 strong {
	display: inline-block;
	background: var(--fbeige);
	color: var(--fgold);
	padding: .2em;
	line-height: 1;
	font-size: .8em;
	vertical-align: 1px;
}
.planExplanation {
	margin-bottom: 2em;
	background: var(--fbeige);
	border: solid 8px var(--fgold);
	outline: solid 1px var(--frgold);
	outline-offset: -3px;
}
.planExplanation h3 {
	background: var(--fgold);
	font-family: var(--subFont2);
	color: #fff;
	text-align: center;
	font-size: 1.7em;
	font-weight: 800;
	padding: .1em 0 0 0;
}
.planExplanation > p {
	background: var(--fgold);
	color: #fff;
	padding: 0 .5em .4em;
	text-align: center;
	font-size: 1.2em;
}
.planExplanation .h3sub {
	font-family: var(--subFont2);
	font-weight: 800;
}
.planExplanationBox {
	margin: clamp(0.8rem, 0.455rem + 1.72vw, 1.5rem);
}
.planExplanation h4 {
	font-size: 1.4em;
	color: var(--fpurple);
	font-family: var(--subFont2);
	font-weight: 800;
}
.planExplanationBox:nth-of-type(2) h4 {
	border-top: 1px solid #999;
	padding-top: clamp(0.8rem, 0.455rem + 1.72vw, 1.5rem);
}
.planExplanationBox > p {
	margin: .3em 0 0 .8em;
	font-size: 1.1em;
}
.planExplanationBox > .kome {
	margin: .3em 0 0 .8em;
}
#overview details {
	background: var(--fpurple);
	padding: 0 .5em 1px;
	margin: .5em 0 .5em 1em;
}
#overview summary {
	background: var(--fpurple);
	color: #fff;
	padding: 4px 5% 5px .5em;
	cursor: pointer;
	list-style-type: none;
	position: relative;
	text-align: center;
}
#overview summary span {
	margin: 0 1em;
	display: inline-block;
}
#overview summary::marker, #overview summary::-webkit-details-marker {
	display: none;
}
#overview summary::after {
	content: "";
	position: absolute;
	width: .7em;
	height: .7em;
	border-left: solid 2px #fff;
	border-bottom: solid 2px #fff;
	display: inline-block;
	top: 50%;
	right: 1%;
	translate: 0 -70%;
	transform-origin: center;
	transform: rotate(-45deg);
	transition: all .4s;
}
#overview details > div {
	background: #fff;
	padding: 1em;
	margin-bottom: .5em;
}
#overview details dl {
	margin-top: 1em;
}
#overview details dl dt, #overview details dl dd {
	margin-top: .5em;
}
#overview details::details-content {
	interpolate-size: allow-keywords;
	height: 0;
	opacity: 0;
	overflow: clip;
	transition: all .4s allow-discrete;
}
#overview details[open]::details-content {
	opacity: 1;
	height: auto;
}
#overview details[open] summary::after {
	translate: 0 -30%;
	transform: rotate(135deg);
}
@supports not (interpolate-size: allow-keywords) {
	#overview details[open]::details-content {
		height: 350px;
		overflow-y: scroll;
	}
}
/*プラン詳細＆お申込み#entryJR,##entry*/
section#entryJR .inner {
	padding: 4em clamp(0.8rem, 0.702rem + 0.49vw, 1rem) 0;
}
.plandetail {
	display: flex;
	flex-wrap: wrap;
}
.tab-label {
	font-size: 1.3em;
	color: #fff;
	font-weight: 700;
	background: var(--fgold3);
	text-align: center;
	padding: .2em 0 0;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	flex: 1;
}
.tab-label:not(:last-of-type) {
	margin-right: 3%;
}
.tab-content {
	height: 0;
	overflow: hidden;
}
/* アクティブなタブ */
.tab-switch:checked + .tab-label {
	color: #fff;
	background: var(--fgold);
}
.tab-switch:checked + .tab-label + .tab-content, #entry .tab-content {
	background: var(--fgold);
	width: 100%;
	height: auto;
	overflow: auto;
	padding: 0 clamp(0.5rem, 0.254rem + 1.23vw, 1rem) 1em;
	border: solid 8px var(--fgold) #936f3b;
	outline: solid 1px var(--frgold);
	outline-offset: -5px;
}
.plandetail h3 {
	color: #fff;
	font-size: 1.4em;
	text-align: center;
	margin-top: 15px;
	font-weight: 700;
	line-height: 1.1;
}
.plandetail h3.syukuhaku {
	background: var(--fsky);
	padding: .3em .5em .3em;
}
.plandetail h3.higaeri {
	background: var(--forange);
	padding: .3em .5em .3em;
}
.plandetail h3.higaeri img {
	margin-right: .5em;
	display: inline-block;
	width: 5em;
	vertical-align: -.3em;
}
.plandetail .planBox {
	background: #fff;
	padding: 0 clamp(0.188rem, -0.705rem + 4.46vw, 2rem) 1em;
}
.plandetail h4 {
	text-align: center;
	font-size: 1.5em;
	padding: 1em 0 .8em;
	line-height: 1.8;
	font-weight: 700;
}
.planBox h4 + p, .example + p {
	text-align: center;
	margin-top: .5em;
}
.example {
	max-width: fit-content;
	margin: 0 auto;
	display: grid;
	font-size: 1.1em;
	gap: .5em;
}
.example dt {
	align-content: end;
}
.example dd {
	font-family: var(--subFont3);
	color: red;
	line-height: 1;
	text-align: center;
}
.example dd b {
	font-size: 2em;
}
.example strong {
	display: inline-block;
	background: var(--fblue);
	color: #fff;
	padding: .25em .3em;
	line-height: 1;
	font-size: .82em;
	vertical-align: 1px;
	font-weight: 500;
	margin: 0 .25em;
}
.planBox .kome {
	width: fit-content;
	margin: auto;
}
/*ご案内 #attention*/
#attention .innerWrapper {
	font-size: .95em;
	padding: clamp(0.8rem, 0.455rem + 1.72vw, 1.5rem);
	background: #FFF;
	margin-top: 1em;
}
.attention {
	padding: .8em;
	border: 2px #F00 solid;
	background: #FFF;
}
#attention h3 {
	background: var(--fgold);
	font-size: 1.1em;
	font-weight: 500;
	color: #fff;
	padding: .2em .5em .2em .5em;
	margin: 1.5em auto .6em;
	text-align: center;
}
#attention h4 {
	padding-top: 1em;
	font-size: 1.05em;
	font-weight: 700;
	border-bottom: 2px solid #999;
	margin-bottom: 2px;
}
#attention .Btn {
	margin-top: 2em;
}
/*デジタルチケット#digitalticket*/
.slash {
	max-width: max-content;
	margin: -.3em auto .5em;
	font-size: clamp(1rem, 0.631rem + 1.85vw, 1.75rem);
	font-weight: 900;
	font-family: var(--subFont2);
}
/*.slash::before, .slash::after {
	content: '/';
	padding: 0 0 0 .5em;
}
.slash::before {
	display: inline-block;
	transform: scale(-1, 1);
}*/
@media screen and (max-width: 759.9px) {
	.spnone {
		display: none !important;
	}
	/*メインビジュアル*/
	.titlePc {
		display: none;
	}
	article nav, section {
		font-size: 13px;
		line-height: 1.4;
	}
	/*	以下削除不可====================================================*/
	#dirPathBlock, #anchorLinkBlock {
		font-size: 12px;
		margin: 1%;
	}
	main h1 {
		font-size: 12px;
		margin: 0 1%;
	}
	/*.inner {
	width: 98%;
	margin: 0 1%;
	padding: 5% 0;
}*/
	/*news*/
	#newsImportant {
		margin: 5px;
		display: flex;
		font-size: 11px;
	}
	#newsImportant dt {
		width: 72px;
		height: fit-content;
		background: #e62d2d;
		color: #FFF;
		text-align: center;
		border-radius: 3px;
		margin-top: 2px;
		padding: 3px 0;
	}
	#newsImportant dd {
		width: 100%;
		padding: 0 10px;
	}
	#newsImportant li {
		padding: 5px 3px 5px 12px;
		position: relative;
	}
	#newsImportant li:nth-of-type(n+2) {
		border-top: 1px dotted #ccc;
	}
	#newsImportant li:before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-left: 6px solid #555555;
		border-right: 0;
		position: absolute;
		top: 7px;
		left: 0;
	}
	/*pagetop*/
	#pagetop {
		display: none;
		position: fixed;
		right: 10px;
		bottom: 10px;
		z-index: 100;
	}
	#pagetop a {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		width: 3em;
		height: 3em;
		background-color: rgba(255, 255, 255, .5);
		border: solid 1px #152a8c;
		border-radius: 50vh;
	}
	#pagetop a::after {
		content: '';
		width: 7px;
		height: 7px;
		border-style: solid;
		border-width: 0 6px 9px 6px;
		border-color: transparent transparent #152a8c transparent;
	}
}
@media screen and (min-width: 760px), print {
	.pcnone {
		display: none !important;
	}
	.titlePc {
		display: block;
	}
	.titleSp {
		display: none;
	}
	#title figure {
		max-width: 1080px;
		margin: auto;
	}
	.topNav {
		padding: .2em 0;
	}
	.topNav a span {
		padding: 0 .8em 1px;
	}
	section {
		line-height: 1.6;
	}
	#intro h2 {
		text-align: center;
	}
	.plandetail h4 {
		padding: .8em 0 0;
	}
	.example {
		grid-template-columns: 1fr 340px;
		gap: 0 1em;
	}
	.btnWrap {
		grid-template-columns: 1fr 1fr;
	}
	/*以下削除不可==================================================== */
	/*news*/
	#dirPathBlock, #anchorLinkBlock {
		width: 100%;
		max-width: 1080px;
		min-width: 760px;
		margin: auto;
	}
	/*panlist&back*/
	#dirPathBlock, #anchorLinkBlock {
		width: 100%;
		margin: 0 auto;
		display: block;
		font-size: 12px;
	}
	main h1 {
		font-size: 12px;
		width: 100%;
		max-width: 1080px;
		min-width: 760px;
		margin: 0 auto 5px;
	}
	/*.inner {
	width: 100%;
	max-width:1080px;
	min-width:760px;
	margin: auto;
	padding: 25px 0;
}
*/
	/*news*/
	#newsImportant {
		width: 100%;
		max-width: 1080px;
		min-width: 760px;
		margin: 5px auto;
		display: flex;
		font-size: 12px;
	}
	#newsImportant dt {
		width: 72px;
		height: fit-content;
		background: #e62d2d;
		color: #FFF;
		text-align: center;
		border-radius: 3px;
		margin-top: 1px;
		padding: 3px 0;
	}
	#newsImportant dd {
		width: 100%;
		padding: 0 10px;
	}
	#newsImportant li {
		padding: 3px 3px 3px 12px;
		position: relative;
	}
	#newsImportant li:nth-of-type(n+2) {
		border-top: 1px dotted #ccc;
	}
	#newsImportant li:before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-left: 6px solid #555;
		border-right: 0;
		position: absolute;
		top: 7px;
		left: 0;
	} /*pagetop*/
	#pagetop {
		display: none;
		position: fixed;
		right: 50px;
		bottom: 50px;
		cursor: pointer;
		z-index: 100;
	}
	#pagetop a {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		width: 80px;
		height: 80px;
		background-color: rgba(255, 255, 255, .5);
		border: solid 1px #152a8c;
		border-radius: 50vh;
	}
	#pagetop a::after {
		content: '';
		width: 7px;
		height: 7px;
		border-style: solid;
		border-width: 0 6px 9px 6px;
		border-color: transparent transparent #152a8c transparent;
	}
	#pagetop a:hover {
		background-color: #152a8c;
	}
	#pagetop a:hover::after {
		border-width: 0 6px 9px 6px;
		border-color: transparent transparent #fff transparent;
	}
}