@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap');
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
}
a {
	transition: .3s;
}
a:link, a:visited {
	color: #0952a4;
}
a:hover {
	opacity: 0.7;
}
:root {
	--msgreen: #1b9a3f;
	--mbgreen: #b7d960;
	--msky: #6ac2e6;
	--mblue: #004da0;
	--mblue2: #1c73ba;
	--mgreen: #027e48;
	--mgreen2: #006400;
	--morange: #f8b705;
	--morange2: #f2952d;
	--myellow: #ffdd00;
	--mbrown: #a32e0d;
	--mnavy: #152a8c;
	--gyellow: #fcf52e;
	--kyellow: #e7d44a;
	--Jsky: #00a8e7;
	--navy: #1b1464;
	--subFont1: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	--subFont2: "IBM Plex Sans JP", sans-serif;
	--subFont3: Arial, Helvetica, "sans-serif";
	--yellow: #ffff00;
	--yellowRGB: 255 255 0;
	--red: #ff0000;
}
article img {
	width: 100%;
}
article b {
	font-size: 1.2em;
}
article mark {
	background: linear-gradient(transparent 48%, var(--yellow) 48% 90%, transparent 90%);
}
.red {
	color: #FF0000;
}
.noWrap {
	white-space: nowrap;
}
.breakWord {
	word-break: break-word;
}
.textCenter {
	text-align: center;
}
.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);
}
/*背景色設定*/
section:nth-of-type(odd) {
	background-image: linear-gradient(to bottom, var(--mblue) 0%, var(--mnavy) 30%, var(--mnavy) 100%);
}
section:nth-of-type(even) {
	background: linear-gradient(to bottom, var(--msky) 0%, var(--msky) 10%, var(--mbgreen) 45%, var(--gyellow) 80%, var(--gyellow) 100%);
}
/*タイトル共通*/
.maintitle {
	max-width: fit-content;
	font-family: var(--subFont2);
	font-size: clamp(1.25rem, 0.477rem + 3.86vw, 2.313rem);
	line-height: 1;
	color: var(--mblue);
	font-weight: 900;
	margin: 0 auto 1em;
	position: relative;
	padding: 0 1.2em 0 1.2em;
	border-bottom: solid var(--gyellow) 0.1em;
	text-shadow: 1.5px 1.5px 0px var(--gyellow);
}
.maintitle::before, .maintitle::after {
	content: "";
	background: url(../images/star.png) no-repeat center / contain;
	position: absolute;
	width: 1em;
	height: 1em;
	bottom: .05em;
}
.maintitle::before {
	left: 0;
}
.maintitle::after {
	right: 0;
}
.subtitle {
	color: #fff;
	font-family: var(--subFont2);
	font-size: 2em;
	text-align: center;
	font-weight: 900;
	text-shadow: 0 0 2px var(--navy);
}
/*ボタン共通*/
.Btn a {
	display: block;
	background-image: linear-gradient(to bottom, var(--msgreen) 0%, var(--mgreen) 30%, var(--mgreen) 100%);
	color: #fff;
	font-family: var(--subFont1);
	font-weight: 700;
	padding: .4em 1.5em .4em .4em;
	position: relative;
	font-size: 1.3em;
	text-align: center;
	align-content: center;
	border-radius: 5px;
}
.Btn a::after {
	content: "";
	border-top: solid 2px;
	border-right: solid 2px;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: rotate(45deg);
	translate: 0 -50%;
	transition: all .2s;
}
.Btn a:hover::after {
	translate: 80% -50%;
}
.btnWrap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 1.7em;
	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;
}
/*メインビジュアル#title*/
#title {
	background: var(--msky);
}
.titleBottom {
	background-image: linear-gradient(to bottom, var(--msgreen) 0%, var(--mgreen) 30%, var(--mgreen) 100%);
}
.btnWrap2 {
	max-width: 1080px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .8em;
	padding: .8em .8em .2em .8em;
}
.Btn2 a {
	display: block;
	background: var(--mbgreen);
	color: var(--mgreen);
	font-family: var(--subFont2);
	font-weight: 800;
	padding: .8em 1% .5em;
	position: relative;
	font-size: clamp(0.875rem, 0.602rem + 1.36vw, 1.25rem);
	text-align: center;
	align-content: center;
	border-radius: 5px;
}
.Btn2 a::after {
	content: "";
	border-top: solid 2px var(--mgreen);
	border-right: solid 2px var(--mgreen);
	;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	right: 5%;
	transform: rotate(45deg);
	translate: 0 -50%;
	transition: all .2s;
}
.Btn2 a:hover::after {
	translate: 80% -50%;
}
/*pageNavi*/
.pNav {
	max-width: fit-content;
	margin: auto;
	padding: .2em 0;
	text-align: center;
}
.pNav a {
	color: #fff;
}
.pNav a span {
	display: inline-block;
	padding: 0 .5em 1px;
	margin: 2px 0;
	font-size: 1.2em;
}
.pNav a:not(:last-of-type)::after {
	content: '|';
	font-size: 1.2em;
	vertical-align: top;
}
/*公演概要#overview*/
#overview .inner {
	max-width: 1080px;
	padding: 3em clamp(0.8rem, 0.702rem + 0.49vw, 1rem) 4em;
}
h2.intro {
	text-align: center;
}
h2.intro > span {
	font-family: var(--subFont2);
	font-size: clamp(1.688rem, 1.451rem + 1.18vw, 2.25rem);
	line-height: 1.6;
	font-weight: 900;
	color: transparent;
	background-image: linear-gradient(to bottom, var(--morange) 0%, var(--morange) 20%, var(--gyellow) 50%, var(--gyellow) 100%);
	background-clip: text;
	-webkit-background-clip: text;
}
h2.intro + p {
	text-align: center;
	margin-top: .5em;
	font-family: var(--subFont2);
	font-size: clamp(1.5rem, 1.342rem + 0.79vw, 1.875rem);
	line-height: 1.6;
	font-weight: 900;
	color: #fff;
}
.eventPoint {
	padding: 2em;
	margin: 2.5em auto 0;
	position: relative;
	background: var(--mnavy);
	background-image: linear-gradient(to bottom, var(--mblue2) 0%, var(--mblue) 30%, var(--mblue) 100%);
	border-radius: 5px;
	box-shadow: 2px 1px 2px var(--mblue2);
}
.eventPoint::after {
	position: absolute;
	content: '';
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	border: 15px solid transparent;
	border-top: 10px solid var(--mblue);
	width: 0;
	height: 0;
	filter: drop-shadow(2px 0px 0px var(--mblue2));
}
.eventPoint h3 {
	max-width: fit-content;
	font-family: var(--subFont2);
	font-size: 2em;
	color: var(--gyellow);
	font-weight: 900;
	margin: .3em auto .5em;
	position: relative;
	padding: 0 1.2em 0 1.2em;
	line-height: 1.1;
	text-align: center;
	text-shadow: 2px 2px 0px var(--mblue2);
	text-wrap: pretty;
}
.eventPoint h3::before, .eventPoint h3::after {
	content: "";
	position: absolute;
	width: 1em;
	height: 1em;
	bottom: .2em;
}
.eventPoint h3::before {
	background: url(../images/thunder_l.png) no-repeat center / contain;
	left: 0;
	filter: drop-shadow(4px -1px 0px var(--mblue2));
}
.eventPoint h3::after {
	background: url(../images/thunder_r.png) no-repeat center / contain;
	right: 0;
	filter: drop-shadow(3px 2px 0px var(--mblue2));
}
@media screen and (max-width: 440px) {
	.eventPoint h3::before, .eventPoint h3::after {
		width: 15%;
		height: 2em;
	}
	.eventPoint h3::before {
		left: -10px;
	}
	.eventPoint h3::after {
		right: -10px;
	}
}
.eventPoint p {
	width: fit-content;
	line-height: 1.9;
	font-family: var(--subfont);
	font-size: 1.26em;
	color: #fff;
	font-weight: 500;
}
#overview .subtitle {
	padding: 1.5em 0 0;
}
.detailsBox1 {
	margin: 1.5em 0 0;
}
.detailsBox1 figure {
	width: 60%;
	margin: 0 auto 1.25em;
}
.detailsBox1 dl {
	font-size: 1.15em;
	color: #fff;
}
.detailsBox1 dt {
	margin-top: .5em;
	font-weight: 500;
}
.detailsBox1 dt::before {
	content: '■';
	padding-right: .1em;
}
.detailsBox1 dd {
	margin: 0 0 0 1em;
}
.detailsBox1 a {
	color: var(--msky);
}
.spnone2 {
	display: none;
}
@media screen and (min-width: 600px) {
	.spnone2 {
		display: block;
	}
	.detailsBox1 {
		display: grid;
		grid-template-columns: 35% 1fr;
		line-height: 1.5;
		gap: 2em;
	}
	.detailsBox1 figure {
		width: 100%;
	}
	.detailsBox1 dt {
		margin-top: 0;
	}
	.detailsBox1 dl {
		display: grid;
		grid-template-columns: 6.5em 1fr;
	}
}
/*プラン詳細＆お申込み#entry*/
#entry .plandetail {
	background: #ffffff70;
	padding: clamp(0.5rem, 0.254rem + 1.23vw, 1rem) clamp(0.5rem, 0.254rem + 1.23vw, 1rem) 0;
	border-radius: 5px;
}
#entry [role="tablist"] {
	display: flex;
	gap: 3%;
}
#entry [role="tab"] {
	font-family: var(--subfont);
	font-size: 1.3em;
	color: var(--mblue2);
	font-weight: 700;
	background: #ffffff70;
	text-align: center;
	padding: .8em 2%;
	border-radius: 5px;
	flex: 1;
	line-height: 1.2;
	position: relative;
}
#entry [role="tab"]:focus-visible {
	outline: 2px solid #fff;
	outline-offset: -4px;
}
#entry [role="tab"][aria-selected="true"] {
	color: var(--mgreen);
	background: linear-gradient(180deg, var(--myellow) 1%, var(--morange) 1.2%, var(--myellow) 20%, var(--gyellow) 100%);
	box-shadow: 2px 1px 2px var(--mblue2);
}
#entry [role="tab"][aria-selected="true"]::after {
	position: absolute;
	content: '';
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	border: 9px solid transparent;
	border-top: 7px solid var(--gyellow);
	width: 0;
	height: 0;
	filter: drop-shadow(2px 0px 0px var(--mblue2));
}
#entry [role="tabpanel"] {
	display: block;
	width: 100%;
	height: auto;
	overflow: auto;
	padding: 0 clamp(0.5rem, 0.254rem + 1.23vw, 1rem) 0;
	outline: solid 1px var(--kyellow1);
	outline-offset: -4px;
}
#entry [role="tabpanel"][hidden] {
	display: none !important;
}
.plandetail h3.syukuhaku {
	color: #fff;
	font-size: 1.3em;
	text-align: center;
	margin-top: 15px;
	font-weight: 700;
	line-height: 1.1;
	background: var(--Jsky);
	padding: .5em .5em .1em;
}
.plandetail h3.higaeri {
	color: #fff;
	font-size: 1.3em;
	text-align: center;
	margin-top: 15px;
	font-weight: 700;
	line-height: 1.1;
	background: orange;
	padding: .5em .5em .1em;
}
.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 h3.syukuhaku + .planBox {
	border: solid 6px var(--Jsky);
}
.plandetail h3.higaeri + .planBox {
	border: solid 6px orange;
}
.plandetail h4 {
	text-align: center;
	font-size: 1.5em;
	padding: 1em 0 .8em;
	line-height: 1.8;
	font-weight: 700;
}
.syukuhaku + .planBox h4:last-of-type {
	border-top: dotted 6px var(--Jsky);
}
.higaeri + .planBox h4:last-of-type {
	border-top: dotted 6px orange;
}
.example {
	font-size: 1.25em;
	text-align: center;
}
.price {
	font-family: var(--subFont3);
	margin: 1em 0;
	color: red;
}
.price b {
	font-size: 2.1em;
}
.example + p {
	text-align: center;
}
.planBox .kome {
	width: fit-content;
	margin: auto;
}
.note1 {
	padding: 0 clamp(0.5rem, 0.254rem + 1.23vw, 1rem) 1.5em;
	border-radius: 0 0 15px 15px;
	color: var(--mgreen2);
	font-weight: 500;
}
.note1 h3 {
	font-size: 1.2em;
	text-align: center;
	margin-top: .5em;
}
.note1 a {
	text-decoration: underline;
}
.slashNone {
	max-width: max-content;
	margin: -.5em auto 1em;
	font-size: 1.35em;
	font-weight: 800;
	color: red;
}
/*ご案内 #attention*/
#attention .innerWrapper {
	font-size: .95em;
	padding: clamp(0.8rem, 0.455rem + 1.72vw, 1.5rem);
	background: #FFF;
	border-radius: 5px;
	margin-top: 1em;
}
.attention {
	padding: .8em;
	border: 2px #F00 solid;
	background: #FFF;
}
#attention h3 {
	background: #000;
	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;
}
/*デジタルチケット#tabiwaticket*/
section#tabiwaticket {
	color: var(--mgreen2);
	font-weight: 700;
}
.slash {
	max-width: max-content;
	margin: 0 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, .titlePc2 {
		display: none;
	}
	article nav, section {
		font-size: 13px;
		line-height: 1.4;
	}
	article nav, section {
		font-size: 13px;
		line-height: 1.4;
	}
	/*	以下削除不可====================================================*/
	#newsImportant {
		margin: 0 5px 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;
	}
	#dirPathBlock, #anchorLinkBlock {
		font-size: 12px;
		margin: 1%;
	}
	main h1 {
		font-size: 12px;
		margin: 0 1%;
	}
	/*.inner {
	width: 98%;
	margin: 0 1%;
	padding: 5% 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;
	}
	.titlePc2 {
		display: block;
	}
	.titleSp, .titlePc {
		display: none;
	}
	.titleSp {
		display: none;
	}
	.pNav {
		padding: .2em 0;
	}
	.pNav a span {
		padding: 0 .8em 1px;
	}
	section {
		line-height: 1.6;
	}
	#intro p {
		text-align: center;
		font-size: 1.05em;
	}
	#plan {
		margin-top: 6em;
	}
	#plan::before, #plan::after {
		margin: -40px 2px;
	}
	.plandetail h4 {
		padding: 1em 0 0;
	}
	/*以下削除不可==================================================== */
	#newsImportant {
		width: 100%;
		max-width: 1080px;
		min-width: 760px;
		margin: 0 auto 5px;
		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;
	}
	#dirPathBlock, #anchorLinkBlock {
		width: 100%;
		max-width: 1080px;
		min-width: 760px;
		margin: 0 auto;
		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;
}*/ /*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;
	}
}
@media screen and (min-width: 1080px), print {
	/*メインビジュアル*/
	.titlePc {
		display: block;
	}
	.titlePc img {
		min-height: 580px;
		object-fit: cover;
		object-position: center;
	}
	.titleSp, .titlePc2 {
		display: none;
	}
}