@charset "UTF-8";

#main {
	position: relative;
	margin: 0 auto;
	padding: 0;
}

#main .sticky-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#main .sticky-wrap .sticky-float-area {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

#main .sticky-wrap .sticky-move-area {
	position: relative;
	width: 100%;
	min-height: 100vh;
	z-index: 3;
	overflow: hidden;
	background-color: var(--white-color);
}

#main .note-text {
	font-size: 1.3rem;
	margin-top: 2.5rem;
}

#main .note-text .text-indent {
	display: inline-block;
	font-size: inherit;
	padding-left: 1em;
	text-indent: -1em;
	line-height: inherit;
}

#main .note-text .text-indent br {
	display: none;
}

@media only screen and (min-width: 1080px) {
	#main .sticky-wrap {
		flex-direction: row;
		align-items: stretch;
	}

	#main .sticky-wrap .sticky-float-area {
		flex: 1;
		min-height: 100vh;
	}

	#main .sticky-float-area-inner {
		position: relative;
		height: 100vh;
		/*max-height: 1400px;
		min-height: 900px;*/
	}

	#main .sticky-wrap .sticky-move-area {
		flex: 1;
	}
}

/*--------------------------*/
/* メインビジュアル */
/*--------------------------*/
.mv {
	position: relative;
	width: 100%;
	height: auto;
}

.mv .mv-title {
	position: relative;
	width: 100%;
	height: auto;
	max-height: 100vh;
	max-height: 100dvh;
	z-index: 2;
	background-image: url('../images/cover_bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.mv h1 {
	width: 100%;
	height: 100%;
}

.mv h1 img {
	width: 100%;
	height: auto;
	max-height: 100vh;
	max-height: 100dvh;
	object-fit: contain;
}

.mv .d-btn {
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
}

.mv .d-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 400;
	border: 2px solid #fff;
	border-radius: 9999px;
	padding: 1rem 2.75rem;
	white-space: nowrap;
	gap: 0.75rem;
}

#poster {
	position: relative;
	height: 100vh;
	height: 100dvh;
	max-height: 760px;
	overflow: hidden;
}

#poster .mv-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#poster .mv-bg-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 107.5%;
	height: 107.5%;
	object-fit: cover;
	object-position: center center;
	opacity: 0;
	animation: fadeInOut 8s infinite;
	transition: opacity 2s ease-in-out;
}

#poster .mv-bg-image img:nth-child(1) {
	position: relative;
	animation-delay: 0s;
}

#poster .mv-bg-image img:nth-child(2) {
	animation-delay: 4s;
}

@keyframes fadeInOut {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

#poster h1 {
	position: absolute;
	top: 35px;
	left: 0 !important;
	width: auto;
	height: 20vh;
	height: 20svh;
	z-index: 2;
}

#poster h1 img {
	width: auto;
	height: 100%;
}

#poster h2 {
	position: absolute;
	top: calc(35px + 20vh + 15px);
	top: calc(35px + 20svh + 15px);
	left: 10px !important;
	width: auto;
	max-width: 47.5vw;
	height: 30vh;
	height: 30svh;
	z-index: 3;
}

#poster .mv-text {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-family: var(--serif-jp);
	font-weight: 500;
	color: var(--black-color);
	line-height: 1;
	padding: 0;
	z-index: 3;
	gap: 1rem;
	letter-spacing: -0.05em;
}

#poster .mv-text3 {
	top: 50%;
	left: 15px;
	font-size: 16vw;
	white-space: nowrap;
	transform: rotate(-7.5deg) translate3d(0, 0, 0);
}

#poster .mv-text3 small {
	display: inline-block;
	background: linear-gradient(to right, #b077b0, var(--primary-color));
	white-space: nowrap;
	line-height: 1;
	padding: 0;
	font-size: 0.45em;
}

#poster .mv-text3 em {
	letter-spacing: -0.15em;
}

#poster .mv-text em {
	display: inline-block;
	background: linear-gradient(to right, #b077b0, var(--primary-color));
	white-space: nowrap;
	line-height: 1;
	padding: 0;
}

#poster .mv-text1 {
	bottom: calc(7.5% + 8vh);
	right: 0;
	font-size: 12.5vw;
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	transform: rotate(-7.5deg) translate3d(0, 0, 0);
}

#poster .mv-text1 em {
	margin-right: 10px;
}

#poster .mv-text1 span {
	display: inline-block;
	font-size: 0.4em;
	line-height: 1.2;
	padding: 0 0.5rem;
	background: linear-gradient(to right, #b077b0, var(--primary-color));
}

#poster .mv-text1 small {
	margin-right: 5px;
	display: inline-block;
	font-size: 0.45em;
	line-height: 1.2;
	padding: 0 0.5rem;
	background: linear-gradient(to right, #b077b0, var(--primary-color));
}

#poster .mv-text2 {
	display: inline-block;
	bottom: 7.5%;
	right: 10px;
	font-size: 6.5vw;
	transform: rotate(-5deg) translate3d(0, 0, 0);
}

@media only screen and (min-width: 480px) {
	#poster {
		max-height: 920px;
	}

	#poster .mv-bg-image img {
		width: 100%;
		height: 100%;
	}

	#poster h1 {
		top: 25px;
		height: 22.5vh;
		height: 22.5svh;
	}

	#poster h2 {
		top: calc(25px + 22.5vh + 15px);
		left: 15px !important;
		max-width: 35vw;
		height: 22.5vh;
		height: 22.5svh;
	}

	#poster .mv-text {
		gap: 1.5rem;
	}

	#poster .mv-text3 {
		top: 45%;
		left: 25px;
		font-size: 9rem;
	}

	#poster .mv-text1 {
		bottom: calc(10% + 8rem);
		font-size: 7rem;
		right: 10px;
	}

	#poster .mv-text1 em {
		margin-right: 20px;
	}

	#poster .mv-text1 span {
		font-size: 0.35em;
		padding: 0 0.75rem;
	}

	#poster .mv-text1 small {
		margin-right: 10px;
		font-size: 0.35em;
		padding: 0 0.75rem;
	}

	#poster .mv-text2 {
		bottom: 10%;
		right: 20px;
		font-size: 3.5rem;
	}
}

@media only screen and (min-width: 768px) {
	#poster .mv-text3 {
		top: 50%;
		font-size: 11rem;
	}
}

@media only screen and (min-width: 1080px) {
	#poster {
		padding-left: 45px;
		max-height: 1250px;
	}

	#poster .mv-bg-image {
		top: 0;
		left: auto;
		right: auto;
		width: auto;
		height: 100%;
		min-height: 900px;
	}

	#poster .mv-bg-image img {
		transform: scale(1);
	}

	#poster h1 {
		top: auto;
		bottom: 67.5%;
		left: 50px !important;
		height: 30vh;
		min-height: 240px;
		max-height: 360px;
	}

	#poster h2 {
		top: auto;
		bottom: 52.5%;
		left: 30px !important;
		width: 37.5%;
		max-width: 37.5%;
		height: auto;
	}

	#poster .mv-text3 {
		top: 52.5%;
		bottom: auto;
		left: 35px;
		font-size: 10rem;
	}

	#poster .mv-text1 {
		top: 70%;
		bottom: auto;
		font-size: 6.5rem;
	}

	#poster .mv-text1 span {
		font-size: 0.4em;
	}

	#poster .mv-text1 small {
		font-size: 0.4em;
	}

	#poster .mv-text2 {
		top: auto;
		bottom: 7.5%;
		font-size: 3.6rem;
	}
}

.logo-date {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 2rem;
	color: var(--white-color);
	font-size: 2.6vw;
	font-size: 2.6svw;
	font-weight: 600;
	font-family: "Helvetica Neue", Arial, "Noto Sans JP", Meiryo, sans-serif;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.logo-date dt {
	font-size: 5.4em;
}

.logo-date dt small {
	display: block;
	font-size: 0.45em;
}

.logo-date dt span {
	display: block;
	font-size: 0.4em;
	line-height: 1.6;
}

.logo-date dd {
	font-size: 2.2em;
}

.logo-lead {
	position: relative;
	margin: 5rem auto 0;
	padding: 1.5rem 0 1rem;
	max-width: 450px;
	text-align: center;
	color: var(--black-color);
	font-size: 5.1vw;
	font-size: 5.1svw;
	font-weight: 700;
	font-family: var(--serif-jp);
	letter-spacing: -0.04em;
	--x-gradient: linear-gradient(90deg, #333 0 100%);
	--y-gradient: linear-gradient(#333 0 15px, transparent 0 calc(100% - 15px), #333 calc(100% - 15px));
	background-image:
		var(--x-gradient),
		var(--y-gradient),
		var(--x-gradient),
		var(--y-gradient);
	background-repeat: no-repeat;
	background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
	background-position: top, right, bottom, left;
}

.logo-lead em {
	display: block;
	font-size: 2.2em;
}

.logo-lead strong {
	font-size: 1.3em;
	font-weight: inherit;
}

.logo-lead span {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	background: linear-gradient(transparent 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 90%, transparent 50%);
}

.logo-note {
	margin-top: 2rem;
	text-align: center;
	color: var(--black-color);
	font-size: 3.5vw;
	font-size: 3.5svw;
	font-weight: 700;
	font-family: var(--serif-jp);
	letter-spacing: -0.04em;
}

.logo-copy {
	position: relative;
	margin: 0 auto;
	margin-top: 3rem;
	margin-bottom: 4.5rem;
	text-align: center;
	color: var(--black-color);
	font-size: 4.5vw;
	font-size: 4.5svw;
	font-weight: 700;
	font-family: var(--sans-jp);
	letter-spacing: -0.04em;
	width: fit-content;
	padding: 12px 16px;
	border: 2px solid #000;
	background: linear-gradient(45deg, #b077b0, var(--primary-color)), #d1d934;
	z-index: 2;
}

.logo-copy::before {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 15px;
	height: 15px;
	box-sizing: border-box;
	rotate: 135deg;
	translate: -50%;
}

.logo-copy::after {
	content: "";
	position: absolute;
	top: calc(100% + 5px);
	left: calc(50% - 4px);
	z-index: -1;
	width: 30px;
	height: 2px;
	transform: rotate(50deg);
	background-color: #000;
}

@media only screen and (min-width: 480px) {
	.logo-date {
		font-size: 1.2rem;
	}

	.logo-lead {
		font-size: 2.6rem;
	}

	.logo-note {
		font-size: 1.6rem;
	}

	.logo-copy {
		font-size: 2.2rem;
		padding: 16px 32px;
	}
}

@media only screen and (min-width: 1080px) {
	.logo-date {
		font-size: 1rem;
	}

	.logo-lead {
		font-size: 2.4rem;
	}

	.logo-note {
		font-size: 1.4rem;
	}

	.logo-copy {
		font-size: 2rem;
	}
}

#sec-head {
	position: relative;
	z-index: 1;
	padding: 0;
	min-height: 100vh;
	min-height: 100svh;
}

#section01 {
	padding: 10px 0;
	background-color: var(--white-color);
}

@media only screen and (min-width: 1080px) {
	#section01 {
		padding: 5rem 0 0 45px;
	}
}

#section02 {
	padding: 0;
}

#section02 .section-area-inner {
	padding: 5rem 1.5rem;
	background: linear-gradient(45deg, #b077b0, var(--primary-color), #d1d934);
}

#section02 .anc-text {
	position: relative;
	display: block;
	margin-top: 2rem;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--white-color);
	text-align: center;
	z-index: 10;
}

#section02 .anc-text span {
	position: relative;
	display: block;
	width: 2px;
	height: 70px;
	margin: 1rem auto 0;
	border-radius: 9999px;
	background-color: var(--white-color)
}

#section02 .anc-text span::before,
#section02 .anc-text span::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: calc(50% - 1px);
	width: 2px;
	height: 50px;
	border-radius: 9999px;
	background-color: var(--white-color);
	transform-origin: 50% calc(100% - 1px);
}

#section02 .anc-text span::before {
	transform: rotate(45deg);
}

#section02 .anc-text span::after {
	transform: rotate(-45deg);
}

@media only screen and (min-width: 1080px) {
	#section02 {
		padding: 5rem 0 5rem 45px;
	}

	#section02 .section-area-inner {
		padding: 7.5rem 2.5rem;
	}

	#section02 .anc-text {
		font-size: 2.2rem;
	}

	#section02 .anc-text span {
		height: 90px;
	}

	#section02 .anc-text span::before,
	#section02 .anc-text span::after {
		height: 60px;
	}
}

#section03 {
	padding: 10px 0;
	background-color: var(--white-color);
}

@media only screen and (min-width: 1080px) {
	#section03 {
		padding: 0 0 7.5rem 45px;
	}
}


#section05 {
	padding: 0;
	background-color: var(--white-color);
}

#section05 .section-area-inner {
	padding: 0 1.5rem;
}

#section05 .accordion-area {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

#section05 .accordion-area .shop-list-title {
	background-color: var(--white-color);
}

#section05 .note-text {
	padding-bottom: 3.5rem;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 1080px) {
	#section05 {
		padding: 0 0 5rem 45px;
	}

	#section05 .section-area-inner {
		background-color: inherit;
	}
}

#section06 {
	padding: 0;
}

#section06 .section-area-inner {
	padding: 5rem 1.5rem;
	background: linear-gradient(45deg, #b077b0, var(--primary-color), #d1d934);
}

#section06 .section-area-inner h2 {
	font-size: 10vw;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	font-feature-settings: "palt";
	font-family: var(--serif-jp);
	margin-bottom: 2.5rem;
	letter-spacing: -0.05rem;
}

#section06 .section-area-inner h2 span {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	font-weight: 600;
}

#section06 .section-area-inner h2 span small {
	font-size: 5vw;
}

#section06 .section-area-inner h2 span em {
	font-size: 1.25em;
	font-family: var(--sans-serif-en);
	font-weight: 700;
}

#section06 .section-area-inner .ticket-flex {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

#section06 .section-area-inner .note {
	font-size: 6vw;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	font-feature-settings: "palt";
	font-family: var(--serif-jp);
	margin-top: 2rem;
	letter-spacing: -0.05rem;
}

#section06 .note-text {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;

}

@media only screen and (min-width: 480px) {
	#section06 .section-area-inner h2 {
		font-size: 3.6rem;
	}

	#section06 .section-area-inner h2 span small {
		font-size: 0.6em;
	}

	#section06 .section-area-inner h2 span em {
		font-size: 1.35em;
	}

	#section06 .section-area-inner .note {
		font-size: 3.0rem;
	}
}

#section06 .accordion-area {
	margin-top: 5rem;
	border: 1px solid var(--white-color);
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

#section06 .accordion-area .shop-list-title {
	color: var(--white-color);
	background-color: transparent;
	padding-top: 1.5rem;
	transform: translateY(0);
	letter-spacing: 3px;
	line-height: 1.5;
}

#section06 .accordion-area .accordion-title {
	color: var(--black-color);
}

#section06 .accordion-area .accordion-title::before,
#section06 .accordion-area .accordion-title::after,
#section06 .accordion-area .accordion-title.open::before {
	background-color: var(--black-color);
}

#section06 .accordion-area ul>li .area-title.accordion-title {
	color: var(--white-color);
	background-color: var(--black-color);
}

#section06 .accordion-area ul>li .area-title.accordion-title::before,
#section06 .accordion-area ul>li .area-title.accordion-title::after {
	background-color: var(--white-color);
}

#section06 .accordion-area ul>li .accordion-content>li:not(:last-child) {
	border-bottom: 1px solid var(--black-color);
}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 1080px) {
	#section06 {
		padding: 0 0 5rem 45px;
	}

	#section06 .section-area-inner {
		padding: 7.5rem 2.5rem;
	}
}

#banners {
	padding: 5rem 1.5rem 0;
	background-color: var(--white-color);
}

#banners h1 {
	text-align: center;
	font-size: 5vw;
	letter-spacing: 0.5rem;
	text-indent: 0.5rem;
	font-family: var(--sans-jp);
	font-weight: 700;
	margin: 0 auto 3.5rem;
	color: var(--primary-color);
}

#banners h1 span {
	position: relative;
	display: inline-block;
	padding: 0 2em;
}

#banners h1 span::before,
#banners h1 span::after {
	position: absolute;
	display: inline-block;
	content: '';
	bottom: 1em;
	width: 44px;
	height: 1px;
	background-color: var(--primary-color);
	transform: rotate(-60deg);
}

#banners h1 span::before {
	left: 0;
}

#banners h1 span::after {
	right: 0;
}

#banners .sub-banner-flex {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (min-width: 480px) {
	#banners {
		padding: 3.5rem 2.5rem 0;
	}
}

@media only screen and (min-width: 768px) {
	#banners h1 {
		font-size: 2.8rem;
		letter-spacing: 1.5rem;
		text-indent: 1.5rem;
	}
}

@media only screen and (min-width: 1080px) {
	#banners {
		padding: 0 0 0 45px;
		background-color: inherit;
	}

	#banners h1 {
		font-size: 2.4rem;
	}
}


.swiper {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0;
}

.swiper .swiper-slide {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.swiper .swiper-slide .swiper-slide-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper .swiper-slide .swiper-slide-content dl {
	position: absolute;
	left: 0;
	bottom: 40px;
	z-index: 1;
	transform: rotate(-10deg) translateX(-10px);
	font-weight: 500;
	color: var(--black-color);
}

.swiper .swiper-slide .swiper-slide-content dl dt {
	font-size: 2rem !important;
	font-weight: 500;
}

.swiper .swiper-slide .swiper-slide-content dl dd {
	margin-top: 4px;
	font-size: 1.5rem !important;
	font-weight: 400 !important;
}

.swiper .swiper-slide .swiper-slide-content dl span {
	background-color: var(--white-color);
	padding: 2px 15px 2px 25px;
}

.swiper .swiper-slide .swiper-slide-content div {
	position: absolute;
	display: block;
	right: 20px;
	top: 20px;
	z-index: 2;
	width: 95px;
	height: auto;
}

.swiper .swiper-slide .swiper-slide-content div img {
	width: 100%;
	height: auto;
}

.swiper-pagination-bullet {
	width: 5px !important;
	height: 5px !important;
	background: var(--primary-color) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	color: var(--primary-color);
	font-size: 2.4rem !important;
	line-height: 1;
}











.backPageBtn {
	margin-top: 3.5rem;
	width: 100%;
	max-width: 420px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.backPageBtn a {
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 24px;
	padding: 1.5rem 1.5rem;
	text-decoration: none;
	color: #fff;
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	opacity: 1;
}

@media only screen and (min-width: 480px) {
	.backPageBtn {
		margin-top: 4.5rem;
	}

	.backPageBtn a {
		font-size: 1.8rem;
		line-height: 32px;
	}
}

@media only screen and (min-width: 1025px) {
	.backPageBtn {
		margin-top: 5rem;
	}

	.backPageBtn a {
		line-height: 36px;
	}
}