@charset "utf-8";
/* ----------------------------------------------------------------------------------------------
setup
---------------------------------------------------------------------------------------------- */

*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	margin: 0;
}

a {
	background-color: transparent;
	text-decoration: none;
	color: #002750;
	transition: all 0.3s;
}

a:hover,
a:active {
	opacity: 0.7;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	-webkit-backface-visibility: hidden;
	vertical-align: bottom;
	max-width: 100%;
}

/* ----------------------------------------------------------------------------------------------
common
---------------------------------------------------------------------------------------------- */
html {
	font-size: 16px;
	scroll-padding-top: 40px;
}

html:before,
html:after,
body:before,
body:after {
	content: '';
	background: #ffe700;
	position: fixed;
	display: block;
	z-index: 1;
}

/* 上 */
html:before {
	height: 14px;
	width: 100vw;
	left: 0;
	top: 0;
}

/* 右 */
html:after {
	width: 14px;
	height: 100vh;
	right: 0;
	top: 0;
}

/* 下 */
body:before {
	height: 14px;
	width: 100vw;
	bottom: 0;
	left: 0;
}

/* 左 */
body:after {
	width: 14px;
	height: 100vh;
	top: 0;
	left: 0;
}

body {
	margin: 0;
	font-family:
		'Zen Maru Gothic', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Helvetica Neue',
		'Helvetica', 'Arial', 'Meiryo', sans-serif;
	letter-spacing: 0.05em;
	line-height: 1.8;
	color: #07133b;
	background-color: #fffef4;
	font-feature-settings: 'palt' 1;
	-webkit-font-feature-settings: 'palt';
}

.all_wrap {
	position: relative;
	width: 100%;
	overflow-x: hidden;
	background-color: #fffef4;
}

.sp_only {
	display: none !important;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.container {
	position: relative;
	width: min(1066px, calc(100% - 40px));
	margin-inline: auto;
}

.flex_box {
	display: flex;
}

.flex_column {
	flex-direction: column;
}

.col-left {
	order: 1;
	min-width: 0;
}

.col-right {
	order: 2;
	min-width: 0;
}

.btn {
	display: inline-block;
	text-align: center;
	letter-spacing: 0.2em;
	padding: 0.5em;
	transition: all 0.5s;
}

.btn:hover {
	opacity: 0.7;
}

.section_head h3 {
	font-size: 3.3rem;
	margin-bottom: 0.5rem;
}

.box_rounded {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 90px;
	padding: 50px;
	margin: 1.5em 0 3em;
}

.box_rounded .box_txt {
	padding-right: 30px;
}

/* --------------------------------------------------------------------
MARK:header
---------------------------------------------------------------------------------------------- */
.sp-nav {
	position: relative;
}

/* トグルボタンは常にクリックできるよう最前面へ */
.c-navToggle {
	position: fixed;
	top: 0;
	right: 0;
	width: 70px;
	height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 7px;
	border: 0;
	background: #ffe700;
	border-radius: 0 0 0 20px;
	z-index: 1100;
	cursor: pointer;
}

.is-nav-open .c-navToggle {
	background: none;
}

.u-visuallyHidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.menu-button__line,
.menu-button::before,
.menu-button::after {
	content: '';
	flex-shrink: 0;
	display: block;
	width: 29px;
	height: 3px;
	background: #07133b;
	border-radius: 50em;
	transition:
		transform 0.3s,
		opacity 0.3s;
	will-change: opacity;
}

.is-nav-open .menu-button .menu-button__line {
	opacity: 0;
}

.is-nav-open .menu-button::before {
	transform: translateY(8px) rotate(-45deg);
	width: 33px;
}

.is-nav-open .menu-button::after {
	transform: translateY(-12px) rotate(45deg);
	width: 33px;
}

/* ハンバーガー（オフキャンバス） */
nav.hamburger {
	position: fixed;
	top: 0;
	right: 0;
	width: min(85%, 320px);
	height: 100vh;
	transform: translateX(100%);
	transition: transform 0.28s ease;
	z-index: 1000;
	background: rgba(255, 231, 0, 0.96);
	overflow: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	border-radius: 60px 0 0 60px;
}

/* 開いた */
html.is-nav-open nav.hamburger {
	transform: translateY(0%);
}

html.is-nav-open,
html.is-nav-open body {
	overflow: hidden;
}
.l-header__navInner {
	height: 100%;
}

.l-header__navInner .hamburger_inner {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 40px;
	width: 100%;
	padding-inline: 40px;
	padding-block: 30% 100px;
}

#hamburgerNav .c-navToggle {
	position: absolute;
	top: 60px;
	right: 0;
	transform: translateY(0);
}

.nav-anchor {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 12px;
	grid-row-gap: 13px;
}

.nav-list {
	width: 100%;
}

.nav-list::after {
	content: '';
	display: block;
	height: 4px;
	width: 100%;
	background-image: url(../images/border02.png);
	background-repeat: repeat-x;
	background-size: contain;
	border-radius: 50em;
	overflow: hidden;
}

.nav-list__item {
	position: relative;
	font-weight: 700;
}

.nav-list__item::before {
	content: '';
	display: block;
	height: 4px;
	width: 100%;
	background-image: url(../images/border02.png);
	background-repeat: repeat-x;
	background-size: contain;
	border-radius: 50em;
	overflow: hidden;
}

.nav-list__item a {
	display: block;
	padding: 10px 4px 10px 10px;
}

/* --------------------------------------------------------------------
MARK:footer
---------------------------------------------------------------------------------------------- */

.footer {
	position: relative;
	background-color: #07133b;
	margin-top: 125px;
}

.footer::before {
	background-color: #fefef4;
	background-image: url(../images/pattern06.png);
	background-repeat: repeat-x;
	background-size: contain;
	position: relative;
	content: '';
	display: block;
	height: 14px;
	width: 100%;
	margin-inline: auto;
}

.footer-inner {
	padding-block: 90px 40px;
	color: #fff;
}

.footer .flex_box {
	justify-content: space-between;
}
.footer-inner .col-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	padding-right: 49px;
}

.footer-inner .col-right {
	width: 50%;
}

.footer .contact {
	display: flex;
	background: #ffe700;
	color: #07133b;
	padding: 12px 2.5em;
	border-radius: 50em;
	font-weight: 700;
	gap: 25px;
}

.contact .ttl {
	font-size: 20px;
	display: flex;
	align-items: center;
}

.contact .line {
	width: 3px;
	border-radius: 50em;
	background: #07133b;
}

.contact .name {
	font-size: 20px;
	line-height: 1.4;
}

.footer .info-box {
	margin-top: 28px;
	font-weight: 400;
}

.footer .info-box h5 {
	font-size: 14px;
	margin-left: -0.5em;
	font-weight: 400;
}

.footer .info-box li {
	font-size: 14px;
	text-indent: -0.55em;
	padding-left: 1em;
}
.footer .info-box li::before {
	content: '●';
	display: inline-block;
}

.footer .info-box .flex_box {
	justify-content: start;
	gap: 1em;
}

.footer-bnr {
	padding-block: 20px;
}

.footer-bnr a {
	display: block;
	margin-inline: auto;
	max-width: 210px;
}

.footer .notice {
	font-weight: 400;
	font-size: 14px;
}

.footer-copyright {
	font-size: 14px;
	text-align: center;
}

/* --------------------------------------------------------------------
MARK:top
---------------------------------------------------------------------------------------------- */

.all-wrap {
	overflow-x: hidden;
}

main {
	height: 100%;
}

.top-contents {
	width: 100%;
	position: relative;
}

/* ----------------------------
mv
------------------------------- */

.to_econom {
	position: absolute;
	top: 48px;
	left: 50px;
	width: 210px;
	z-index: 1;
}

.to_econom a {
	display: inline-block;
	width: 100%;
}
.to_econom a img {
	max-width: 100%;
}

.mv_wrap {
	position: relative;
}

.top-mv {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 70px;
}

.logo img {
	display: block;
	width: 45%;
	margin-inline: auto;
}

.period {
	margin-top: 2.2%;
}

.period img {
	display: block;
	width: 37.9%;
	margin-inline: auto;
}

.badge {
	position: absolute;
	right: 15%;
	bottom: 5%;
	width: 15.6%;
}

/* ----------------------------
MARK:content
------------------------------- */
.page-content {
	position: relative;
}

.bg-dot {
	position: absolute;
	z-index: -1;
}

.bg-dot.--dot01 {
	top: 2.5%;
	right: -4%;
}
.bg-dot.--dot02 {
	top: 10%;
	left: -9%;
}
.bg-dot.--dot03 {
	top: 20.5%;
	right: -6%;
}
.bg-dot.--dot04 {
	top: 26%;
	left: -4%;
}
.bg-dot.--dot05 {
	top: 46%;
	right: -8%;
}
.bg-dot.--dot06 {
	top: 54.5%;
	left: -4%;
}
.bg-dot.--dot07 {
	top: 62.4%;
	right: -3%;
}
.bg-dot.--dot08 {
	top: 72%;
	left: -3%;
}

.main-lead {
	text-align: center;
}

.anchor-list {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 36px;
	grid-row-gap: 20px;
	max-width: 668px;
	margin-inline: auto;
}

.event-section {
	position: relative;
	margin-top: 145px;
}

.event-section .section-inner {
	position: relative;
	border-radius: 120px 20px 120px 20px;
	background: #ddd;
	padding: 60px 45px 65px 45px;
}

.event-section .section-inner::before,
.event-section .section-inner::after {
	position: absolute;
	content: '';
	display: block;
	height: 14px;
	width: 77%;
	margin-inline: auto;
}
.event-section .section-inner::before {
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.event-section .section-inner::after {
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	transform: rotate(180deg);
}

.event-section .section-ttl {
	position: absolute;
	top: -4.7em;
	left: 45px;
}

.event-section .section-ttl img {
	width: 100%;
	max-width: 365px;
}

#section01 {
	margin-top: 115px;
}

#section01 .section-inner {
	background: #fffcd2;
	background: linear-gradient(355deg, rgba(255, 252, 210, 1) 0%, rgba(5, 168, 197, 0.38) 60%);
}

#section01 .section-inner::before,
#section01 .section-inner::after {
	background-image: url(../images/pattern01.png);
	background-repeat: round;
	background-size: contain;
}

.event-heading {
	margin-bottom: 10px;
	font-weight: 700;
}

.event-heading h4 {
	font-size: 22px;
	margin-top: 8px;
	line-height: 1.4;
}

#section01 .event-heading h4 {
	color: #05a8c5;
}
#section02 .event-heading h4 {
	color: #e73867;
}
#section03 .event-heading h4 {
	color: #01ab84;
}
.section-sub .event-heading h4 {
	color: #a39400;
}
#section04 .event-heading h4 {
	color: #ef741c;
}

.ttl_label img {
	max-width: 133px;
}

.event-top .box_img img {
	width: 100%;
}

#section01 .event-info .event-top .box_img img {
	display: block;
	margin-inline: auto;
	max-width: 597px;
	transform: translateX(-20px);
}

.event-top {
	position: relative;
	margin-bottom: 25px;
}

.event-top .main-txt {
	position: absolute;
	width: 29%;
	bottom: 0;
	right: 0;
}

.main-txt p {
	font-size: 18px;
	font-weight: 700;
}

.event-bottom {
	position: relative;
	padding-top: 30px;
	padding-bottom: 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 46px;
	grid-row-gap: 0px;
}

.event-bottom::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	height: 4px;
	width: 100%;
	background-image: url(../images/border01.png);
	background-repeat: round;
	background-size: contain;
	border-radius: 50em;
	overflow: hidden;
}

.event-img {
	margin-bottom: 18px;
}

.event-item p {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

#section02 .section-inner {
	background: #fffcd2;
	background: linear-gradient(355deg, rgba(255, 252, 210, 1) 0%, rgba(231, 56, 103, 0.38) 60%);
}

#section02 .section-inner::before,
#section02 .section-inner::after {
	background-image: url(../images/pattern02.png);
	background-repeat: round;
	background-size: contain;
}

#section02 .event-info .event-top .box_img img {
	display: block;
	margin-inline: auto;
	max-width: 715px;
	transform: translateX(40px);
}

#section03 .section-inner {
	background: #fffcd2;
	background: linear-gradient(355deg, rgba(255, 252, 210, 1) 0%, rgba(1, 171, 132, 0.38) 60%);
}

#section03 .section-inner::before,
#section03 .section-inner::after {
	background-image: url(../images/pattern03.png);
	background-repeat: round;
	background-size: contain;
}

#section03 .event-info .event-top .box_img img {
	display: block;
	margin-inline: auto;
	max-width: 396px;
	transform: translateX(-15px);
}

#section03 .event-top .main-txt {
	width: 29%;
	bottom: 10%;
}

.section-sub .section-inner {
	background: #fffcd2;
	background: linear-gradient(355deg, rgba(255, 252, 210, 1) 0%, rgba(235, 224, 113, 1) 100%);
}

.section-sub .section-inner::before,
.section-sub .section-inner::after {
	background-image: url(../images/pattern07.png);
	background-repeat: round;
	background-size: contain;
}

.section-sub .section-ttl {
	position: relative;
	top: 0;
	left: 0;
	font-size: 31px;
	color: #a39400;
}

.section-sub .event-bottom.border-none::before {
	content: none;
}

.event-heading h4 .small {
	display: block;
	font-size: 16px;
}

#section04 .section-inner {
	background: #fffcd2;
	background: linear-gradient(355deg, rgba(255, 252, 210, 1) 0%, rgba(239, 116, 28, 0.38) 60%);
}

#section04 .section-inner::before,
#section04 .section-inner::after {
	background-image: url(../images/pattern04.png);
	background-repeat: round;
	background-size: contain;
}

#section04 .event-info .event-top .box_img img {
	display: block;
	margin-inline: auto;
	max-width: 657px;
	transform: translateX(-20px);
}

/* ----------------------------
MARK: schedule
------------------------------- */
#schedule {
	margin-top: 85px;
}

#schedule .ttl {
	color: #b24d92;
	font-size: 40px;
	margin-bottom: 15px;
}

#schedule .ttl .sub {
	display: inline-block;
	border-radius: 50em;
	background: #fff;
	border: 6px solid #dac8e2;
	font-weight: 700;
	font-size: 31px;
	padding-inline: 2em;
}

#schedule .inner {
	max-width: 950px;
	margin-inline: auto;
}

.sub-content {
	margin-top: 68px;
	gap: 36px;
}

.sub-content .card {
	border-radius: 45px;
	padding: 40px 20px;
	background: #fdead8;
	background: linear-gradient(355deg, rgba(253, 234, 216, 1) 0%, rgba(255, 252, 210, 1) 100%);
	flex: 1;
}

.sub-content .card h3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #b24d92;
	font-size: 26px;
	padding-inline: 10%;
}

.sub-content .card h3 .txt-rounded {
	border-radius: 50em;
	background: #ffe700;
	color: #b24d92;
	font-size: 20px;
	margin: 0;
	padding: 5px 1em;
	width: fit-content;
}

.sub-content .card p {
	font-weight: 700;
	font-size: 18px;
	margin-block: 10px;
}

/* ----------------------------
stage
------------------------------- */
#stage {
	margin-top: 88px;
}

#stage .wrapper {
	border: 20px solid #dac8e2;
	border-radius: 120px;
	background: #fff;
	padding-inline: 55px;
	padding-bottom: 55px;
}

#stage .wrapper::before {
	background-image: url(../images/pattern05.png);
	background-repeat: round;
	background-size: contain;
	position: relative;
	content: '';
	display: block;
	height: 14px;
	width: 77%;
	margin-inline: auto;
}

#stage .ttl {
	margin-top: 35px;
}

#stage .ttl h2 {
	font-weight: 800;
	color: #b24d92;
	font-size: 40px;
}

#stage .ttl p {
	font-size: 18px;
	font-weight: 700;
}

#stage .content {
	margin-top: 40px;
}

#stage .content h3 {
	border-radius: 50em;
	background: #f5eafa;
	background: linear-gradient(90deg, rgba(245, 234, 250, 1) 0%, rgba(253, 234, 216, 1) 100%);
	color: #b24d92;
	font-size: 26px;
	margin-bottom: 23px;
}

#stage .content .flex_box {
	gap: 56px;
}

#stage .notice {
	font-size: 12px;
	margin-top: 20px;
}

.flex_box.sub-show {
	border-radius: 50px;
	background: #fdead8;
	background: linear-gradient(0deg, rgba(253, 234, 216, 1) 0%, rgba(255, 252, 210, 1) 100%);
	padding: 32px 35px;
	column-gap: 30px;
	margin-top: 28px;
}

.flex_box.sub-show > div {
	display: flex;
	align-items: start;
	gap: 10px;
	order: initial;
	flex-grow: 1;
}

.flex_box.sub-show .border {
	display: block;
	width: 4px;
	background-color: #b24d92;
	flex-grow: 0;
	border-radius: 50em;
}

.flex_box.sub-show h5 {
	font-size: 27px;
	font-weight: 700;
	color: #b24d92;
	line-height: 1;
	margin-bottom: 10px;
}
.flex_box.sub-show p {
	font-weight: 700;
	line-height: 1.6;
}
.flex_box.sub-show .box_img {
	flex-shrink: 0;
}

/* ----------------------------
MARK: access
------------------------------- */
#access {
	margin-top: 85px;
}

#access .ttl {
	position: relative;
	font-size: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 0.5em;
	margin-bottom: 40px;
}
#access .ttl::after {
	content: '';
	display: block;
	width: 100%;
	height: 15px;
	background: #b24d92;
	background: linear-gradient(90deg, rgba(178, 77, 146, 1) 0%, rgba(253, 234, 216, 1) 100%);
	border-radius: 50em;
	position: absolute;
	bottom: 0;
	left: 0;
}

#access .flex_box {
	gap: 36px;
}

#access .flex_box > div {
	flex: 1;
}

#access .head_txt {
	display: flex;
	align-items: center;
	gap: 16px;
}

.venue-ttl {
	font-size: 26px;
	border-radius: 10px;
	background-color: #db8ac1;
	color: #fff;
	padding: 0.7em 0.5em;
}

.venue-summary h4 {
	font-size: 22px;
}

.venue-summary p {
	font-size: 18px;
}

.g-map {
	margin-top: 35px;
}
.g-map iframe {
	width: 100%;
}

/* ----------------------------
MARK: bus
------------------------------- */

#bus {
	margin-top: 60px;
}

/* ----------------------------
MARK: map
------------------------------- */
#map {
	margin-top: 85px;
}

#map .ttl {
	position: relative;
	font-size: 40px;
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 0.5em;
	margin-bottom: 40px;
}
#map .ttl::after {
	content: '';
	display: block;
	width: 100%;
	height: 15px;
	background: #b24d92;
	background: linear-gradient(90deg, rgba(178, 77, 146, 1) 0%, rgba(253, 234, 216, 1) 100%);
	border-radius: 50em;
	position: absolute;
	bottom: 0;
	left: 0;
}

#map .flex_box {
	align-items: end;
	justify-content: space-between;
}

.col-map {
	max-width: 624px;
}
.col-notice {
	flex: 1;
	max-width: 367px;
	background: #fdead8;
	background: linear-gradient(0deg, rgba(253, 234, 216, 1) 0%, rgba(255, 252, 210, 1) 100%);
	padding: 32px 35px;
	border-radius: 68px;
}

#map .col-notice .ttl {
	flex-direction: column;
	gap: 5px;
	font-size: 22px;
	color: #b24d92;
	line-height: 1.5;
	padding-bottom: 1em;
	margin-bottom: 26px;
}

#map .col-notice .ttl::after {
	height: 5px;
	background: #b24d92;
}

.col-notice .inner-txt {
	font-size: 18px;
	font-weight: 700;
}

/* ----------------------------
toTop
------------------------------- */
.btn_toTop {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	padding: 0;
}

.button-020 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border: none;
	border-radius: 50%;
	background-color: #ffe700;
	cursor: pointer;
}

/* ----------------------------
MARK:responsive
------------------------------- */
@media (max-width: 650px) {
	.pc_only {
		display: none !important;
	}

	.sp_only {
		display: block !important;
	}

	.container {
		width: min(1066px, calc(100% - 60px));
	}

	.col-left {
		order: inherit;
		min-width: 0;
		width: 100%;
	}
	.col-right {
		order: inherit;
		min-width: 0;
		width: 100%;
	}

	/* --------------------------------------------------------------------
	header
	---------------------------------------------------------------------------------------------- */
	.to_econom {
		top: 30px;
		left: 30px;
	}

	.c-navToggle {
		width: 50px;
		height: 50px;
		row-gap: 5px;
	}

	.menu-button__line,
	.menu-button::before,
	.menu-button::after {
		width: 17px;
	}

	.is-nav-open .menu-button::before {
		width: 25px;
	}
	.is-nav-open .menu-button::after {
		transform: translateY(-8px) rotate(45deg);
		width: 25px;
	}

	/* ----------------------------
	MV
	------------------------------- */

	.top-mv {
		padding-top: 195px;
	}

	.logo img {
		width: 95%;
	}

	p.period {
		margin-top: 50px;
	}
	.period img {
		width: 70%;
	}

	.badge {
		position: relative;
		right: 0;
		bottom: 0;
		width: 80%;
		margin: 25px auto 0;
	}

	.bg-dot.--dot01 {
		top: 1.7%;
		right: -17%;
	}

	.bg-dot.--dot02 {
		top: 2%;
		left: -12%;
	}

	.anchor-list {
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 17px;
		grid-row-gap: 10px;
		width: 80%;
	}

	.event-section {
		margin-top: 105px;
	}

	.event-section .section-inner {
		border-radius: 40px 10px 40px 10px;
		padding: 60px 25px 25px 25px;
	}

	.event-section .section-ttl {
		top: -4em;
		left: 0;
		right: 0;
		text-align: center;
	}
	.event-section .section-ttl img {
		max-width: 300px;
	}

	#section01 {
		margin-top: 205px;
	}

	#section01 .event-info .event-top .box_img img {
		transform: none;
	}

	.event-top .main-txt {
		position: relative;
		width: 100%;
		margin-top: 13px;
	}

	.event-bottom {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 0;
	}

	.event-item {
		padding-block: 25px 30px;
		position: relative;
	}
	.event-item:first-child {
		padding-top: 0;
	}
	.event-item::after {
		position: absolute;
		bottom: 0;
		left: 0;
		content: '';
		display: block;
		height: 4px;
		width: 100%;
		background-image: url(../images/border01.png);
		background-repeat: round;
		background-size: contain;
		border-radius: 50em;
		overflow: hidden;
	}

	#section01 .event-bottom .event-item:nth-child(3)::after,
	#section02 .event-bottom .event-item:nth-child(3)::after,
	#section03 .event-bottom .event-item:nth-child(2)::after,
	.section-sub .event-bottom .event-item:nth-child(3)::after,
	.section-sub .event-bottom:last-of-type .event-item:nth-child(2)::after,
	#section04 .event-bottom .event-item:nth-child(3)::after {
		content: none;
	}

	#section02 .event-info .event-top .box_img img {
		transform: none;
	}

	#section03 .event-info .event-top .box_img img {
		transform: none;
	}

	#section03 .event-top .main-txt {
		width: 100%;
		bottom: 0;
	}

	.section-sub .section-ttl {
		position: relative;
		top: 0;
		left: 0;
		font-size: 26px;
	}

	.event-bottom.border-none {
		padding-bottom: 0;
	}

	#section04 .event-info .event-top .box_img img {
		transform: none;
	}

	#section04 .event-bottom:last-of-type {
		margin-top: -20px;
	}

	#schedule .ttl .sub {
		font-size: 24px;
		padding-inline: 2em;
	}

	#schedule .ttl {
		font-size: 30px;
	}

	.sub-content {
		margin-top: 40px;
		gap: 30px;
		flex-direction: column;
	}

	.sub-content .card h3 {
		padding-inline: 6%;
	}

	.sub-content .card h3 .txt-rounded {
		font-size: 16px;
	}

	#stage .wrapper {
		border-radius: 45px;
		padding-inline: 15px;
		border: 14px solid #dac8e2;
		padding-bottom: 15px;
	}

	#stage .ttl h2 {
		font-size: 32px;
	}

	#stage .content h3 {
		font-size: 22px;
		margin-bottom: 23px;
	}

	#stage .content .flex_box {
		flex-direction: column;
		gap: 36px;
	}

	.flex_box.sub-show {
		flex-direction: column;
		gap: 20px;
		padding: 30px 25px;
		border-radius: 20px;
	}

	.flex_box.sub-show > div {
		flex-direction: column;
		align-items: center;
	}

	.flex_box.sub-show .border {
		width: 100%;
		height: 4px;
	}

	.box_txt h5 {
		text-align: center;
	}

	#access .ttl {
		font-size: 32px;
	}

	#access .ttl::after {
		height: 10px;
	}

	#access .flex_box {
		flex-direction: column;
	}

	#access .head_txt {
		flex-direction: column;
		align-items: start;
	}

	.venue-ttl {
		width: 100%;
		font-size: 20px;
		text-align: center;
		padding: 0.2em 0.5em;
	}

	#map .ttl {
		font-size: 28px;
	}

	#map .flex_box {
		flex-direction: column;
		gap: 20px;
	}

	.col-notice {
		padding: 25px 20px;
		border-radius: 30px;
		width: 100%;
	}

	.footer .flex_box {
		flex-direction: column;
		gap: 30px;
	}

	.footer .contact {
		flex-direction: column;
		align-items: center;
		padding: 12px 1em;
		gap: 7px;
	}

	.contact .line {
		width: 100%;
		height: 2px;
		border-radius: 50em;
		background: #07133b;
	}

	.contact .name {
		text-align: center;
	}

	.footer-inner .col-right {
		width: 100%;
	}

	.footer-inner .col-left {
		gap: 20px;
		padding-right: 0;
	}
}
