.flex {
	display: flex;
}

.top-head {}

.slide-wrap {
	position: relative;
	height: 743px;
}

.hero_slide {
	animation: loop_slide 30s infinite linear 1s both;
	height: 100%;
	padding-left: 16px;
	padding-right: 16px;
}

@keyframes loop_slide {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-100%);
	}
}

.hero_slide--list {
	display: grid;
	grid-template-columns: 391px 222px 222px 391px 391px 351px;
	grid-template-rows: repeat(2, 1fr);
	grid-gap: 32px;
	gap: 32px;
}

.hero_slide--list li:nth-child(even) {
	grid-row: 2/3;
}

.hero_slide--list li:nth-child(odd):not(:nth-child(11)) {
	grid-row: 1/2;
}

.hero_slide--list li:nth-child(11) {
	grid-row: 1/3;
}

.img-trim {
	display: flex;
	justify-content: center;
	align-items: center;

}

.img-cover {
	-o-object-fit: cover;
	object-fit: cover;
}

.img-var {
	width: 391px;
	max-width: 391px;
	height: 300px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 20px;
}

.img-hor {
	width: 222px;
	height: 300px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 20px;
}

.img-large {
	width: 351px;
	height: 629px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 20px;
}

.hero-img-wrap {
	position: absolute;
	top: 43%;
	left: 0;
	width: 1000px;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.hero-img {
	width: 100%;
}


.hero--catch {
	position: absolute;
	top: -23%;
	left: -20%;
	width: 100vh;
	height: 100vh;
	background-color: #FFF;
	padding: 0px 0 0 500px;
	border-radius: 50%;
}

.flex-j-ctr {
	justify-content: center;
}

.flex-column {
	flex-direction: column;
}

.hero--ttl {
	line-height: 1;
	margin-bottom: 45px;
	letter-spacing: 0.3em;
	font-size: max(2rem, min(2.2435897436vw, 2.5rem));
	font-weight: 900;
	color: #DE0080;
}

.hero--ttl-3 {
	position: relative;
	display: inline-block;
	letter-spacing: 1.5rem;
}

.hero-h3 {
	position: inherit;
	z-index: 1;
	color: #FFF572;
	letter-spacing: 1.7rem;
}

.hero-bg {
	content: '';
	position: absolute;
	top: -8px;
	left: -5px;
	display: inline-block;
	width: 50px;
	height: 50px;
	background-color: #DE0080;
	border-radius: 10%;
	z-index: 0;
}

_::-webkit-full-page-media,
_:future,
:root .safari-bg {
	top: -10px;
	left: -9px;
	width: 56px;
	height: 56px;
}

.hero--txt {
	line-height: 1.6em;
	color: #DE0080;
	font-size: 1em;
	font-weight: 600;
}

/*　ハンバーガーボタン　*/

/*　ハンバーガーボタン　*/
.close_label {
	display: none;
	visibility: hidden;
}

.close_label.active {
	visibility: visible;
	display: block;
	position: fixed;
	z-index: 5;
	right: 100px;
	top: 3.5%;
	font-size: 1.2em;
	color: #FFF;
}

.hamburger {
	display: block;
	position: fixed;
	z-index: 5;
	right: 20px;
	top: 3%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	text-align: center;
	background: #DD0180;
	border-radius: 25px;
}

.hamburger span {
	display: block;
	position: absolute;
	width: 30px;
	height: 4px;
	left: 10px;
	background: #FFF572;
	border-radius: 2px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
	top: 15px;
}

.hamburger span:nth-child(2) {
	top: 23px;
}

.hamburger span:nth-child(3) {
	top: 31px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
	background: #FFF;
}

.hamburger.active span:nth-child(1) {
	background: #333;
	top: 23px;
	left: 10px;
	-webkit-transform: rotate(-32deg);
	-moz-transform: rotate(-32deg);
	transform: rotate(-32deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	background: #333;
	top: 23px;
	-webkit-transform: rotate(32deg);
	-moz-transform: rotate(32deg);
	transform: rotate(32deg);
}

nav.globalMenuSp {
	position: fixed;
	z-index: 4;
	top: -120%;
	left: 0;
	transition: all 0.6s;
	width: 100%;
	height: 30vh;
	visibility: hidden;
	transition: all .8s ease;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	visibility: visible;
	top: 0;
}

.globalMenu-bg {
	position: fixed;
	z-index: 4;
	top: -120%;
	left: 0;
	width: 100%;
	height: 70vh;
	background-color: rgba(0, 0, 0, .8);
	transition: all .8s ease;
}

.globalMenu-bg.active {
	top: 0;
}

.global-menu-list-wrap {
	display: flex;
	position: absolute;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-evenly;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	transform: translate(-50%, 0);
	z-index: 4;
	opacity: 0;
	transition: opacity .5s ease .3s;
}

.global-menu-list-wrap.active {
	opacity: 1;
}

.global-menu-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 60px;
}

.global-menu-list li a {
	display: inline-block;
	transition: all .1s;
}

.menu-staff-img a {
	width: 100%;
}

.global-menu-list li a:hover {
	opacity: .7;
}

.menu-list-inner-a {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 15px 0;
	margin-top: 15px;
}

.menu-list-inner-b {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 15px 0;

}

.menu-list-inner-a-sp {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 15px 0;
	margin-top: 15px;
}

.menu-list-inner-b-sp {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 15px 0;
	margin-top: 15px;
}

.menu-list-inner-c-sp {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px 0;
}

.menu-list-inner-d-sp {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
}

.menu-list-inner-a-sp .list-inner-s,
.menu-list-inner-b-sp .list-inner-s,
.menu-list-inner-d-sp .list-inner-s {
	margin-left: 20px;
}

.list-inner-l {
	color: #FFF;
	font-size: 1.1em;
	font-weight: 900;
}

.list-inner-s {
	color: #FFF;
	font-size: 1.1em;
	font-weight: 300;
}

.menu-staff-img {
	width: 50%;
}

.menu-staff-img img {
	width: 100%;
}

.menu-twitter-img {
	width: 20%;
}

.menu-twitter-img img {
	width: 100%;
}

@media screen and (max-width: 1024px) {

	/*****Header*****/
	.hero-img-wrap {
		position: absolute;
		top: 70%;
		width: 300px;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
	}

	.hamburger.active {
		background: #DD0180;
	}

	.hamburger.active span:nth-child(1) {
		background: #FFF;
		top: 23px;
		left: 10px;
		-webkit-transform: rotate(-32deg);
		-moz-transform: rotate(-32deg);
		transform: rotate(-32deg);
	}

	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
		background: #FFF;
		top: 23px;
		-webkit-transform: rotate(32deg);
		-moz-transform: rotate(32deg);
		transform: rotate(32deg);
	}

	.close_label.active {
		color: #DD0180;
		right: 80px;
		top: 4.5%;
		font-size: 1em;
		font-weight: 700;
	}

	.globalMenu-bg {
		top: 100px;
		height: 0vh;
		background-color: #1A1A1A;
	}

	.globalMenu-bg.active {
		height: 100vh;
		top: 100px;
	}

	.global-menu-list-wrap {
		top: 100px;
	}

	.global-menu-list {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		width: 100%;
		margin-bottom: 0px;
		align-items: flex-start;
		align-content: center;
	}

	.global-menu-list>li {
		width: 100%;
		padding: 10px 50px;
	}

	.global-menu-list>li:nth-child(even) {
		background-color: #333;
	}

	.global-menu-list>li:nth-child(odd) {
		background-color: #1a1a1a;
	}

	.menu-list-inner-c-sp {
		justify-content: flex-start;
	}

	.menu-staff-img-sp {
		width: 20%;
		margin: 0;
		margin-left: 10px;
	}

	.hero--catch {
		position: absolute;
		top: -13%;
		left: -40%;
		width: 100vh;
		height: 100vh;
		background-color: #FFF;
		padding: 0px 0 0 460px;
		border-radius: 50%;
	}

	.hero-bg {
		top: -10px;
		left: -8px;
	}

	.top-news-flex {
		position: absolute;
		z-index: 3;
		padding: 20px 20px 20px 30px;
	}

	/** 追加 **/
	.menu-list-inner-d-sp {
		flex-direction: row;
		width: 100%;
		justify-content: start;
		gap: 4%;
	}

	.menu-list-inner-d-sp li {
		width: 48%;
		max-width: 250px;
	}

	.menu-list-inner-d-sp img {
		width: 100%;
	}

	.menu-staff-img-sp {
		width: 100%;
		margin: 0;
	}

	.menu-staff-img-sp img {
		max-height: 120px;
	}

	.menu-list-inner-d-sp a.list-inner-l {
		margin-top: 24px;
	}
}

@media screen and (max-width: 850px) {
	.hero--catch {
		position: absolute;
		top: -10%;
		left: -50%;
		width: 60vh;
		height: 60vh;
		background-color: #FFF;
		padding: 0px 0 0 430px;
		border-radius: 50%;
	}

	.top-news-flex {
		width: 70%;
		top: 88%;
	}

	/* .slide-wrap:after {
		content: "";
		height: 90px;
		width: 95%;
		right: 0;
		border-top-left-radius: 50px;
		border-bottom-left-radius: 50px;
		background-color: #DD0180;
		display: block;
		bottom: -5%;
		position: absolute;
	} */

	.top-news-list a {
		overflow: hidden;
		text-overflow: ellipsis;
		width: 100%;
	}

	#top-event {
		margin-top: 70px;
	}

	.top-schedule-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.top-schedule-wrap a {
		width: 100%;
	}

	.top-schedule-box {
		height: auto;
		width: 100%;
		flex-direction: column;
	}

	.pc-1024 {
		display: none;
	}

	.sp-500 {
		display: block;
	}

	.info-img {
		margin: 10px;
		width: 90%;
	}

	.info-img img {
		width: 100%;
		height: auto;
	}

	.top-schedule-box .date {
		font-size: 160%;
		letter-spacing: 0px;
		width: auto;
	}

	.top-schedule-box .dow {
		font-size: .6em;
		margin-left: 10px;
		margin-right: 10px;
	}

	.top-schedule-box .dow::before {
		translate: -52% -54%;
        width: 28px;
        height: 28px;
	}

	.info-field {
		display: flex;
		height: 100%;
		margin: 0 auto 0 0;
		margin-bottom: 10px;
		margin-left: 15px;
		align-items: baseline;
		justify-content: flex-start;
		flex-wrap: wrap;
		flex-direction: row;
	}

	.info-field p {
		font-size: 100%;
	}

	.place-up {
		margin-bottom: 0px;
	}

	.sp-place {
		font-size: 150%;
		font-weight: 900;
		line-height: 28px;
		text-align: center;
		margin: 0 10px 10px;
	}
}

@media screen and (max-width: 768px) {
	.hero--catch {
		position: absolute;
		left: 0%;
		top: auto;
		width: 40vh;
		height: 40vh;
		background-color: #FFF;
		padding: 0;
		bottom: 5vw;
		padding: 0px 0px 0px 35px;
		border-radius: 0;
		border-top-right-radius: 100%;
	}

}

@media screen and (max-width: 414px) {
	#top-event {
		margin-top: 110px;
	}

	.close_label.active {
		color: #DD0180;
		right: 20%;
		top: 2.5%;
		font-size: 1em;
		font-weight: 700;
	}

	.site-header {
		height: 64px;
	}

	.header-wrap {
		padding: 10px 0 10px 10px;
	}

	.site-branding {
		position: initial;
		top: 0;
		left: 0;
	}

	.hamburger {
		top: 0;
		margin: 6px 0;
	}

	.globalMenu-bg {
		top: 64px;
	}

	.globalMenu-bg.active {
		top: 64px;
	}

	.global-menu-list-wrap {
		top: 64px;
	}

	.flex-j-ctr {
		justify-content: flex-start;
	}

	.hero--catch {
		position: absolute;
		left: 0%;
		top: auto;
		width: 40vh;
		height: 40vh;
		background-color: #FFF;
		padding: 0;
		bottom: 25vw;
		padding: 0px 0px 0px 35px;
		border-radius: 0;
		border-top-right-radius: 100%;
	}

	.hero--ttl {
		font-size: 9vw;
		line-height: 1;
		margin-bottom: 25px;
		letter-spacing: 0.3em;
		font-weight: 900;
		color: #DE0080;
	}

	.hero--ttl-3:after {
		content: '';
		position: absolute;
		top: -8px;
		left: -6px;
		display: inline-block;
		width: 50px;
		height: 50px;
		background-color: #DE0080;
		border-radius: 10%;
		z-index: -1;
	}

	.hero--txt {
		font-size: 3.5vw;
	}

	.hero--txtarea {
		margin-top: 80px;
	}

	/* .slide-wrap:after {
		content: "";
		height: 90px;
		width: 95%;
		right: 0;
		border-top-left-radius: 50px;
		border-bottom-left-radius: 50px;
		background-color: #DD0180;
		display: block;
		bottom: -5%;
		position: absolute;
	} */

	.top-news-list a {
		text-overflow: ellipsis;
	}

	.global-menu-list>li {
		width: 100%;
		padding: 10px;
	}

	.menu-list-inner-c-sp {
		justify-content: space-between;
	}

	.ticket-rule-wrap p {
		margin: 0px 20px;
	}
}

@media screen and (max-width: 393px) {
	.list-inner-l {
		font-size: 1em;
		font-weight: 700;
	}

	.list-inner-s {
		font-size: .9em;
		font-weight: 300;
	}

	.global-menu-list>li {
		padding: 8px 10px;
	}

	.menu-list-inner-a-sp,
	.menu-list-inner-b-sp {
		gap: 10px 0;
		margin-top: 10px;
	}
}