@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Jost:ital,wght@0,100..900;1,100..900&family=New+Amsterdam&display=swap&family=Roboto:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,700;1,700&display=swap');

html {
	scroll-behavior: smooth;
}
body {
	background: #000;
}

/* バーガーメニュー */
.qd_menu {
	position: fixed;
	inset: 0;
	z-index: 900;
	background: rgba(160, 23, 224, 0.95);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}
.qd_menu.is_open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
body.is_menu_open {
	overflow: hidden;
	height: 100%;
}
.qd_menu__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	padding: 44px 72px 38px;
}
.qd_menu__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 80px;
	height: 80px;
	border: none;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}
.qd_menu__closeLine {
	position: absolute;
	top: 32px;
	left: 50%;
	width: 34px;
	height: 2px;
	background: #A017E0;
	border-radius: 9999px;
	transform-origin: center;
}
.qd_menu__closeLine01 {
	transform: translateX(-50%) rotate(28deg);
}
.qd_menu__closeLine02 {
	transform: translateX(-50%) rotate(-28deg);
}
.qd_menu__closeText {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	font-family: "Jost", sans-serif;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.04em;
	color: #A017E0;
	white-space: nowrap;
}
.qd_menu__nav {
	width: 100%;
	max-width: 610px;
	margin: 100px 70px 70px auto;
}
.qd_menu__grid {
	display: grid;
	grid-template-columns: max-content max-content;
	grid-template-rows: repeat(4, auto);
	grid-auto-flow: column;
	column-gap: 84px;
	row-gap: 28px;
	justify-content: start;
}
.qd_menu__item {
	position: relative;
	display: block;
	color: #fff;
	text-decoration: none;
	padding-left: 0;
	transition: padding-left 0.15s ease;
}
.qd_menu__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.1em;
	width: 2px;
	opacity: 0;
	height: 78px;
	background: #EBFF00;
	transition: opacity 0.25s ease;
}
.qd_menu__en,
.qd_menu__jp {
	transition: color 0.25s ease, transform 0.25s ease;
}
.qd_menu__item:hover::before {
	opacity: 1;
}
.qd_menu__item:hover .qd_menu__en,
.qd_menu__item:hover .qd_menu__jp {
	color: #EBFF00;
	transform: translateX(12px);
}
.qd_menu__en {
	display: block;
	font-family: "New Amsterdam", sans-serif;
	font-size: 5.6rem;
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: 0;
	white-space: nowrap;
}
.qd_menu__jp {
	display: block;
	margin-top: 6px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.3;
}
.qd_menu__sub {
	display: flex;
	align-items: center;
	gap: 30px;
	width: 100%;
	max-width: 610px;
	margin: 0 70px 0 auto;
	padding: 40px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.qd_menu__subLink {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}
.qd_menu__subLink--external::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 5px;
	background: url("/images/queendom/icon_windowopen.svg") no-repeat center center;
	background-size: contain;
	vertical-align: middle;
}
.qd_menu__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	margin: auto 70px 50px auto;
	padding-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.qd_menu__footerLogo {
	order: 1;
	width: 172px;
	flex-shrink: 0;
}
.qd_menu__footerLogo img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_menu__sns {
	order: 2;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 28px;
	margin-left: auto;
}
.qd_menu__snsLink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	text-decoration: none;
}
.qd_menu__snsLink img {
	display: block;
	width: 30px;
	height: auto;
}
.qd_menu__snsLink--xjp img,
.qd_menu__snsLink--xeng img {
	width: 34px;
}
.qd_menu__snsLink--x {
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-align: center;
}

.qd_menu__snsLabel {
	font-size: 0.8rem;
	font-weight: 600;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.08em;
}
.qd_menu__closeBtn {
	position: absolute;
	top: 28px;
	right: 32px;
	z-index: 10;
	width: 64px;
	height: 64px;
	border: none;
	border-radius: 50%;
	background: #A017E0;
	cursor: pointer;
	overflow: hidden;
}
.qd_menu__closeBg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.qd_menu__closeLine {
	position: absolute;
	left: 50%;
	width: 28px;
	height: 2px;
	background: #A017E0;
	border-radius: 9999px;
	transform-origin: center;
	z-index: 3;
}
.qd_menu__closeLine01 {
	top: 28px;
	transform: translateX(-50%) rotate(32deg);
}
.qd_menu__closeLine02 {
	top: 28px;
	transform: translateX(-50%) rotate(-32deg);
}
.qd_menu__closeText {
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
	color: #A017E0;
	white-space: nowrap;
	z-index: 3;
}
@media screen and (min-width: 769px) {
	.qd_menu__sns a {
		display: inline-block;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.qd_menu__sns a:hover {
		transform: translateY(-3px);
		opacity: 0.85;
	}
}


/* ファーストビュー関連 */
.qd_wrap {
	position: relative;
	z-index: 1;
}
.qd_bgVideo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 100svh;
	z-index: 0;
	overflow: hidden;
}
.qd_bgVideo__video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 100vh;
	height: 100svh;
	display: block;
	object-fit: cover;
	transform: translate(-50%, -50%);
}
.qd_bgVideo__video--sp {
	display: none;
}
.qd_fv {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	color: #fff;
	overflow: hidden;
	z-index: 10;
}
.qd_fv__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.14) 38%, rgba(0, 0, 0, 0.2) 100%);
	z-index: 1;
	pointer-events: none;
}
.qd_fv__dot {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0.55px, transparent 0.75px);
	background-size: 3px 3px;
	background-repeat: repeat;
	z-index: 2;
	pointer-events: none;
}
.qd_fv__inner {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	padding: 28px 32px 0;
}
.qd_fv__header {
	position: relative;
	z-index: 20;
	display: block;
}
.qd_fv__logo {
	margin-top: 20px;
	width: 173px;
	position: relative;
	z-index: 20;
}
.qd_fv__logo img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_fv__headerBtns {
	position: fixed;
	top: 28px;
	right: 32px;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 10px;
}
.qd_fv__ticket {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	width: 177px;
	height: 64px;
	font-weight: 600;
	font-size: 1.4rem;
	padding: 0 18px 0 20px;
	border-radius: 9999px;
	background: #edff00;
	color: #000;
	overflow: hidden;
	transition: width 0.35s ease;
}
.qd_fv__ticket:hover {
	width: 214px;
}
.qd_fv__ticketIcon {
	flex-shrink: 0;
}
.qd_fv__ticketIcon img {
	display: block;
	width: 34px;
	height: auto;
}
.qd_fv__ticketPlus {
	position: absolute;
	top: 50%;
	right: 16px;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translate(0, -50%) rotate(-180deg) scale(0.8);
	transition: opacity 0.3s ease, transform 0.35s ease;
}
.qd_fv__ticketPlus img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_fv__ticket:hover .qd_fv__ticketPlus {
	opacity: 1;
	transform: translate(0, -50%) rotate(0deg) scale(1);
}
.qd_fv__menu {
	position: relative;
	z-index: 1001;
	width: 64px;
	height: 64px;
	border: none;
	border-radius: 50%;
	background: #A017E0;
	cursor: pointer;
	overflow: hidden;
	transition: opacity 0.3s;
}
.qd_fv__menu:hover {
	opacity: 1;
}
.qd_fv__menuBg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease;
	z-index: 1;
}
.qd_fv__menuLine {
	position: absolute;
	left: 50%;
	width: 28px;
	height: 2px;
	background: #fff;
	border-radius: 9999px;
	transform: translateX(-50%);
	transform-origin: center;
	transition: top 0.3s ease, transform 0.3s ease, background 0.3s ease;
	z-index: 3;
}
.qd_fv__menuLine01 {
	top: 27px;
}
.qd_fv__menuLine02 {
	top: 35px;
}
.qd_fv__menuText {
	position: absolute;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	font-family: "Jost", sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
	color: #A017E0;
	opacity: 0;
	transition: opacity 0.25s ease;
	white-space: nowrap;
	z-index: 3;
}
.qd_fv__menu:hover .qd_fv__menuBg {
	width: 58px;
	height: 58px;
}
.qd_fv__menu:hover .qd_fv__menuLine {
	background: #A017E0;
}
.qd_fv__menu:hover .qd_fv__menuLine01 {
	top: 23px;
}
.qd_fv__menu:hover .qd_fv__menuLine02 {
	top: 31px;
}
.qd_fv__menu:hover .qd_fv__menuText--menu {
	opacity: 1;
}
.qd_fv__menu.is_open .qd_fv__menuBg {
	width: 58px;
	height: 58px;
}
.qd_fv__menu.is_open .qd_fv__menuLine {
	background: #A017E0;
}
.qd_fv__menu.is_open .qd_fv__menuLine01 {
	top: 28px;
	transform: translateX(-50%) rotate(32deg);
}
.qd_fv__menu.is_open .qd_fv__menuLine02 {
	top: 28px;
	transform: translateX(-50%) rotate(-32deg);
}
.qd_fv__menu.is_open .qd_fv__menuText--menu {
	opacity: 0;
}
.qd_fv__menu.is_open .qd_fv__menuText--close {
	opacity: 1;
}
.qd_fv__main {
	position: relative;
	z-index: 10;
	min-height: calc(100vh - 92px);
	min-height: calc(100svh - 92px);
}
.qd_fv__kv {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: inherit;
}
.qd_fv__subLogo {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	max-width: calc(100% - 64px);
	margin: 0;
}
.qd_fv__subLogo img {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0;
	transform: scale(0.9);
	filter: blur(6px);
	animation: qd_fvLogoReveal 1.1s ease-out 0.7s forwards;
	will-change: transform, opacity, filter;
}
@keyframes qd_fvLogoReveal {
	to {
		opacity: 1;
		transform: scale(1);
		filter: blur(0);
	}
}
.qd_fv__info {
	position: absolute;
	left: 50%;
	bottom: 30px;
	transform: translateX(-50%) ;
	width: 100%;
	margin: 0;
}
.qd_fv__info picture,
.qd_fv__info img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_fv__info picture {
	opacity: 0;
	transform: translateY(24px);
	filter: blur(6px);
	animation: qd_fvInfoFadeUp 1s ease-out 0.4s forwards;
}
@keyframes qd_fvInfoFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}
.qd_fv__news {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 30;
}
.qd_fv__newsLink {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	height: 54px;
	padding: 0 18px 0 14px;
	background: #A017E0;
	color: #fff;
	text-decoration: none;
}
.qd_fv__newsLink:hover {
	background: #B838F4;
}
.qd_fv__newsLabel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 49px;
	height: 49px;
	flex-shrink: 0;
	transform: rotate(-16deg);
}
.qd_fv__newsLabel img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_fv__newsDate {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.2;
	white-space: nowrap;
}
.qd_fv__newsText {
	position: relative;
	display: inline-block;
	max-width: calc(100% - 170px);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.45;
	transition: transform 0.25s ease;
}
.qd_fv__newsTextIn {
	display: -webkit-box;
	-webkit-box-oriqd_overview__accessIconent: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.qd_fv__newsText::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background: #fff;
	opacity: 0;
	transition: opacity 0.25s ease;
}
.qd_fv__newsText::after {
	content: "";
	position: absolute;
	right: -36px;
	top: 50%;
	width: 28px;
	height: 28px;
	background: url("/images/queendom/news_icon_down.svg") no-repeat center center;
	background-size: 28px 28px;
	opacity: 0;
	transform: translateY(calc(-50% + 6px));
	transition: opacity 0.25s ease, transform 0.25s ease;
}
@media screen and (min-width: 769px) {
	.qd_fv__newsLink:hover .qd_fv__newsText {
		transform: translateY(-3px);
	}
	.qd_fv__newsLink:hover .qd_fv__newsText::before {
		opacity: 1;
	}
	.qd_fv__newsLink:hover .qd_fv__newsText::after {
		opacity: 1;
		transform: translateY(-50%);
	}
}

/* =================================
	共通セクション見出し
================================= */
.qd_inner {
	position: relative;
	z-index: 2;
	width: 100%;
	margin: 0 auto;
}
.qd_inner_960 { max-width: 960px; }
.qd_inner_1120 { max-width: 1120px; }
.qd_inner_1200 { max-width: 1200px; }
.qd_inner_1280 { max-width: 1280px; }
.qd_inner_1400 { max-width: 1400px; }
.qd_sectionHead {
	text-align: center;
}
.qd_sectionHead__en {
	font-family: "New Amsterdam", sans-serif;
	font-size: 10rem;
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: 0;
	color: #fff;
	margin-bottom: 15px;
}
.qd_sectionHead__jp {
	margin-top: 12px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 2px;
	color: #fff;
}

/* =================================
	OVERVIEW
================================= */
.qd_overview {
	position: relative;
	padding: 140px 0 154px;
	color: #fff;
	overflow: hidden;
	background: #000;
}
.qd_overview__bg {
	position: absolute;
	inset: 0;
	background: url("/images/queendom/overview_bg.jpg") no-repeat center top;
	background-size: cover;
	opacity: 1;
	z-index: 0;
	pointer-events: none;
}
.qd_overview::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.32) 50%, rgba(0, 0, 0, 0.58) 100%);
	z-index: 1;
	pointer-events: none;
}
.qd_overview .qd_sectionHead {
	margin-bottom: 92px;
}
.qd_overview__body {
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.qd_overview__row {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 34px 78px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.qd_overview__label {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 105px;
	min-height: 131px;
	padding: 20px 12px;
	background: #e9e9e9;
	border-radius: 3px;
	text-align: center;
}
.qd_overview__label span {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 2px;
	color: #b12bff;
}
.qd_overview__content {
	flex: 1;
	min-width: 0;
}
.qd_overview__date {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0 6px;
}
.qd_overview__dateNum {
	font-family: "Jost", sans-serif;
	font-size: 5rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
}
.qd_overview__dateUnit {
	font-size: 3.3rem;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
}
.qd_overview__timeList {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 16px;
	margin-top: 18px;
}
.qd_overview__timeItem {
	display: flex;
	align-items: center;
	gap: 14px;
}
.qd_overview__timeTag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	white-space: nowrap;
}
.qd_overview__timeValue {
	font-size: 2.2rem;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	font-family: "Jost", sans-serif;
}
.qd_overview__slash {
	font-size: 4rem;
	font-weight: 300;
	line-height: 1;
	color: rgba(255, 255, 255, 0.85);
}
.qd_overview__timeItem--main .qd_overview__timeTag {
	color: #efff00;
	border-color: rgba(239, 255, 0, 0.5);
}
.qd_overview__timeItem--main .qd_overview__timeValue {
	font-size: 3rem;
	color: #efff00;
}
.qd_overview__content--venue {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.qd_overview__venueMain {
	min-width: 0;
}
.qd_overview__venueName {
	margin-bottom: 10px;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1.15;
	color: #fff;
}
.qd_overview__venueAddress {
	margin: 0 0 0;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #fff;
}
.qd_overview__venueAction {
	flex-shrink: 0;
}
.qd_overview__accessBtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 52px;
	padding: 0 32px;
	border-radius: 9999px;
	background: linear-gradient(90deg, #ba2dff 0%, #8e19f0 100%);
	text-decoration: none;
	transition: opacity 0.25s ease;
}
.qd_overview__accessBtn:hover {
	opacity: 0.88;
}
.qd_overview__accessText {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
}
.qd_overview__accessBtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 52px;
	padding: 0 32px;
	border-radius: 9999px;
	background: linear-gradient(90deg, #ba2dff 0%, #8e19f0 100%);
	text-decoration: none;
	transition: opacity 0.25s ease;
}
.qd_overview__accessText {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	transition: transform 0.25s ease;
}
.qd_overview__accessIcon {
	position: absolute;
	top: 50%;
	right: 8px;
	width: 28px;
	height: 28px;
	opacity: 0;
	transform: translateY(calc(-50% + 2px)) scale(0.8);
	transition: opacity 0.25s ease, transform 0.25s ease;
}
.qd_overview__accessIcon::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url("/images/queendom/news_icon_down.svg") no-repeat center center;
	background-size: 28px 28px;
}
.qd_overview__accessBtn:hover .qd_overview__accessText {
	transform: translateX(-3px);
}
.qd_overview__accessBtn:hover .qd_overview__accessIcon {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}


/* =================================
	OVERVIEW VISUAL
================================= */
.qd_overviewVisual {
	position: relative;
	overflow: hidden;
	background: #000;
}
.qd_overviewVisual__bg {
	position: absolute;
	inset: 0;
	background: url("/images/queendom/overview_bg2.jpg") no-repeat center center;
	background-size: cover;
	opacity: 0.5;
}
.qd_overviewVisual::before,
.qd_overviewVisual::after {
	content: "";
	z-index: 2;
	position: absolute;
	left: 0;
	width: 100%;
	height: 250px;
	pointer-events: none;
	z-index: 2;
}
.qd_overviewVisual::before {
	top: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.qd_overviewVisual::after {
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.qd_overviewVisual__inner {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1366px;
	min-height: 1024px;
	margin: 0 auto;
}
.qd_overviewVisual__title {
	position: absolute;
	z-index: 2;
	top: 18.36%;
	left: 50%;
	width: 11.71%;
	transform: translateX(-50%);
	filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.35));
}
.qd_overviewVisual__title img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_overviewVisual__item {
	z-index: 1;
	position: absolute;
	box-shadow: 18px 22px 30px rgba(0, 0, 0, 0.45);
}
.qd_overviewVisual__item--1 {
	top: 31.05%;
	left: 7.17%;
	width: 29.28%;
	aspect-ratio: 1 / 1;
}
.qd_overviewVisual__item--2 {
	top: 68.26%;
	left: 27.38%;
	width: 15.52%;
	aspect-ratio: 1 / 1;
}
.qd_overviewVisual__item--3 {
	top: 12.01%;
	right: 31.55%;
	width: 11.35%;
	aspect-ratio: 1 / 1;
}
.qd_overviewVisual__item--4 {
	top: 21.97%;
	right: 11.64%;
	width: 25.04%;
	aspect-ratio: 1 / 1;
}
.qd_overviewVisual__item--5 {
	top: 63.87%;
	right: 26.72%;
	width: 11.27%;
	aspect-ratio: 1 / 1;
}
.qd_overviewVisual__item--6 {
	top: 14.01%;
	left: 26.38%;
	width: 13.27%;
	aspect-ratio: 1 / 1;
}
.qd_overviewVisual__item {
	overflow: hidden;
}

.qd_overviewVisual__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
}
/* 各画像を独立して動かす */
.qd_overviewVisual__item--1 {
	animation: qd_float_01 7.2s ease-in-out infinite;
}
.qd_overviewVisual__item--2 {
	animation: qd_float_02 8.4s ease-in-out 0.6s infinite;
}
.qd_overviewVisual__item--3 {
	animation: qd_float_03 6.8s ease-in-out 0.3s infinite;
}
.qd_overviewVisual__item--4 {
	animation: qd_float_04 9s ease-in-out 0.9s infinite;
}
.qd_overviewVisual__item--5 {
	animation: qd_float_05 7.8s ease-in-out 0.45s infinite;
}
.qd_overviewVisual__item--6 {
	animation: qd_float_05 7.8s ease-in-out 0.45s infinite;
}
@keyframes qd_float_01 {
	0%, 100% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
	25% {
		transform: translate3d(-4px, -10px, 0) rotate(-0.4deg) scale(1.01);
	}
	50% {
		transform: translate3d(3px, -16px, 0) rotate(0.2deg) scale(1.015);
	}
	75% {
		transform: translate3d(6px, -8px, 0) rotate(0.45deg) scale(1.005);
	}
}

@keyframes qd_float_02 {
	0%, 100% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
	20% {
		transform: translate3d(5px, -6px, 0) rotate(0.35deg) scale(1.008);
	}
	50% {
		transform: translate3d(8px, -14px, 0) rotate(0.55deg) scale(1.012);
	}
	80% {
		transform: translate3d(2px, -7px, 0) rotate(0deg) scale(1.004);
	}
}

@keyframes qd_float_03 {
	0%, 100% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
	30% {
		transform: translate3d(-6px, -8px, 0) rotate(-0.5deg) scale(1.01);
	}
	55% {
		transform: translate3d(-2px, -15px, 0) rotate(-0.2deg) scale(1.014);
	}
	85% {
		transform: translate3d(4px, -6px, 0) rotate(0.3deg) scale(1.006);
	}
}

@keyframes qd_float_04 {
	0%, 100% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
	25% {
		transform: translate3d(3px, -7px, 0) rotate(0.25deg) scale(1.006);
	}
	50% {
		transform: translate3d(-5px, -13px, 0) rotate(-0.45deg) scale(1.012);
	}
	75% {
		transform: translate3d(-2px, -5px, 0) rotate(-0.15deg) scale(1.004);
	}
}

@keyframes qd_float_05 {
	0%, 100% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
	20% {
		transform: translate3d(-3px, -9px, 0) rotate(-0.25deg) scale(1.008);
	}
	50% {
		transform: translate3d(6px, -15px, 0) rotate(0.4deg) scale(1.013);
	}
	80% {
		transform: translate3d(1px, -7px, 0) rotate(0.1deg) scale(1.005);
	}
}

/* =================================
	EVENT PREVIEW
================================= */
.qd_eventPreview {
	position: relative;
	padding: 124px 0 150px;
	background: #000;
	color: #fff;
}
.qd_eventPreview .qd_sectionHead {
	margin-bottom: 90px;
}
.qd_eventPreview__list {
	display: flex;
	flex-direction: column;
	gap: 70px;
}
.qd_eventPreview__item {
	display: grid;
	grid-template-columns: 49.166% 1fr;
	align-items: center;
	column-gap: 50px;
}
.qd_eventPreview__item--reverse {
	grid-template-columns: 1fr 49.166%;
}
.qd_eventPreview__item--reverse .qd_eventPreview__media {
	order: 2;
}
.qd_eventPreview__item--reverse .qd_eventPreview__content {
	order: 1;
}
.qd_eventPreview__media {
	overflow: hidden;
	background: #111;
}
.qd_eventPreview__media img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_eventPreview__content {
	min-width: 0;
	padding: 0 40px;
}
.qd_eventPreview__head {
	position: relative;
	display: flex;
	align-items: flex-end;
	gap: 12px;
	margin-bottom: 18px;
	padding: 60px 0 0 0;
	background: url("/images/queendom/eventPreview_title_bg.png") no-repeat center top;
	background-size: cover;
}
.qd_eventPreview__head::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.15);
}
.qd_eventPreview__labelWrap,
.qd_eventPreview__num {
	position: relative;
	z-index: 1;
}
.qd_eventPreview__labelWrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-bottom: 8px;
}
.qd_eventPreview__label {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	margin: 0;
}
.qd_eventPreview__labelEn {
	margin-top: 6px;
	font-family: "New Amsterdam", sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	letter-spacing: 0.02em;
}
.qd_eventPreview__num {
	font-family: "Jost", sans-serif;
	font-size: 7.7rem;
	font-weight: 500;
	line-height: 0.85;
	color: #fff;
}
.qd_eventPreview__titleWrap {
	margin-bottom: 28px;
}
.qd_eventPreview__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	white-space: nowrap;
	font-size: clamp(1.8rem, 2vw, 3rem);
	font-weight: 700;
	line-height: 1.18;
	color: #111;
}
.qd_eventPreview__title span {
	display: inline-block;
	padding: 8px 10px 4px;
	background: #fff;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.qd_eventPreview__text {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2;
	color: #fff;
}
.qd_eventPreview__action {
	margin-top: 28px;
}
.qd_eventPreview__btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 44px;
	padding: 0 24px;
	border-radius: 9999px;
	background: linear-gradient(90deg, #ba2dff 0%, #8e19f0 100%);
	color: #fff;
	text-decoration: none;
}
.qd_eventPreview__btnText {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
}
.qd_eventPreview__btnIcon {
	display: none;
}


.qd_eventPreview__media {
	position: relative;
	overflow: hidden;
}
.qd_eventPreview__media::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	transform: translateY(0);
	transform-origin: bottom center;
	transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 2;
	pointer-events: none;
}
.qd_eventPreview__media img {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0;
	transform: scale(1.16) translateY(32px);
	transform-origin: center center;
	transition:
		opacity 0.8s ease,
		transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform, opacity;
}
.qd_eventPreview__media.is-animated::before {
	transform: translateY(101%);
}
.qd_eventPreview__media.is-animated img {
	opacity: 1;
	transform: scale(1) translateY(0);
}

/* =================================
	MATCH
================================= */
.qd_match {
	position: relative;
	padding: 122px 0 120px;
	background: #9615d3;
	overflow: hidden;
}
.qd_match__inner {
	max-width: 1280px;
	padding-left: 40px;
	padding-right: 40px;
}
.qd_match__bg {
	position: absolute;
	inset: 0;
	background: url("/images/queendom/match_bg2.jpg") no-repeat center top;
	background-size: 100% auto;
}
.qd_match::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(183, 38, 243, 0.1) 0%, rgba(183, 38, 243, 0.42) 72%, rgba(183, 38, 243, 0.78) 100%);
	pointer-events: none;
}
.qd_match .qd_sectionHead {
	position: relative;
	z-index: 2;
	margin-bottom: 78px;
}
.qd_match__slider {
	position: relative;
	z-index: 2;
}
.qd_match__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px 24px;
}
.qd_matchCard,
.qd_matchComing {
	min-width: 0;
	border-radius: 22px;
	overflow: hidden;
}
.qd_matchCard {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
}
.qd_matchCard__image img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_matchCard__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 0 32px;
}
.qd_matchCard__title {
	padding: 17px 18px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	margin-bottom: 15px;
}
.qd_matchCard__vs {
	display: grid;
	grid-template-columns: 1fr 44px 1fr;
	align-items: start;
	gap: 0;
	padding: 5px 18px 28px;
}
.qd_matchCard__corner {
	min-width: 0;
	text-align: center;
}
.qd_matchCard__label {
	margin: 0 0 5px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}
.qd_matchCard__name {
	margin: 0 0 5px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
}
.qd_matchCard__unit {
	font-size: 1.2rem;
	line-height: 1.4;
	color: #fff;
}
.qd_matchCard__center {
	position: relative;
	align-self: start;
	margin-top: 33px;
	font-family: "Jost", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.qd_matchCard__center::before,
.qd_matchCard__center::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 1px;
	height: 23px;
	background: rgba(255, 255, 255, 0.35);
	transform: translateX(-50%);
}
.qd_matchCard__center::before {
	bottom: calc(100% + 10px);
}
.qd_matchCard__center::after {
	top: calc(100% + 10px);
}
.qd_matchCard__action {
	margin-top: auto;
	padding: 0 18px;
}
.qd_matchCard__btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 242px;
	height: 54px;
	margin: 0 auto;
	padding: 0 42px 0 32px;
	border-radius: 9999px;
	background: #fff;
	color: #111;
	text-decoration: none;
}
.qd_matchCard__btn.disabled {
	pointer-events: none;
	background: #707070;
	color: #777;
}
.qd_matchCard__btnText {
	font-size: 1.4rem;
	font-weight: 500;
	color: #000;
}
.qd_matchCard__btnIcon {
	position: absolute;
	top: 50%;
	right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 2px solid #000;
	border-radius: 50%;
	transform: translateY(-50%);
}
.qd_matchComing {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 196px;
	background: rgba(0, 0, 0, 0.25);
}
.qd_matchComing span {
	font-family: "Jost", sans-serif;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1;
	color: #FFB1F9;
}
.qd_match__pagination {
	display: none;
}
.qd_matchCard__btnIcon img {
	width: 8px;
	height: auto;
	display: block;
	transform-origin: center;
	transition: transform 0.25s ease;
}
.qd_matchCard__btn:hover .qd_matchCard__btnIcon img {
	transform: rotate(120deg);
}
@media screen and (min-width: 769px) {
	/* 円（ベース） */
	.qd_matchCard__btnIcon {
		position: absolute;
		top: 50%;
		right: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		border: 2px solid #000;
		border-radius: 50%;
		transform: translateY(-50%);
		transition: transform 0.25s ease;
	}
	/* SVG（三角） */
	.qd_matchCard__btnIcon img {
		width: 8px;
		height: auto;
		display: block;
		transform-origin: center;
		transition: transform 0.25s ease;
	}
	/* hover：円だけ5%拡大 */
	.qd_matchCard__btn:hover .qd_matchCard__btnIcon {
		transform: translateY(-50%) scale(1.05);
	}
	/* hover：三角は回転のみ（サイズ変えない） */
	.qd_matchCard__btn:hover .qd_matchCard__btnIcon img {
		transform: translateX(-1px) rotate(120deg);
	}
	.qd_matchCard__btnText {
		transition: transform 0.25s ease;
	}
	.qd_matchCard__btn:hover .qd_matchCard__btnText {
		transform: translateX(-3px);
	}
	.qd_match {
		position: relative;
	}

	.qd_match::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 30%;
		pointer-events: none;
		z-index: 2;

		background: linear-gradient(
			to top,
			#A017E0 0%,
			rgba(160, 23, 224, 0.8) 40%,
			rgba(160, 23, 224, 0) 100%
		);
	}

	/* コンテンツを前面に */
	.qd_match__inner,
	.qd_match__slider {
		position: relative;
		z-index: 1;
	}
}


.qd_matchCard,
.qd_matchComing {
	opacity: 0;
	transform: translateY(36px);
	filter: blur(6px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease,
		filter 0.7s ease;
	transition-delay: var(--qd-match-delay, 0s);
	will-change: transform, opacity, filter;
}

.qd_matchCard.is_show,
.qd_matchComing.is_show {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}

/* =================================
	NEWS
================================= */
.qd_news {
	position: relative;
	padding: 124px 0 140px;
	background: #000;
	color: #fff;
	overflow: hidden;
	z-index: 0;
}
.qd_news__bg {
	position: absolute;
	inset: 0;
	background: url("/images/queendom/overview_bg.jpg") no-repeat center top;
	background-size: cover;
	opacity: 1;
	z-index: 0;
	pointer-events: none;
}
.qd_news::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.82) 100%);
	z-index: 1;
	pointer-events: none;
}
.qd_news__inner {
	position: relative;
	z-index: 2;
}
.qd_news__head {
	margin-bottom: 88px;
}
.qd_news__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0 44px;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: content-box;
}
.qd_newsCard {
	min-width: 0;
}
.qd_newsCard__link {
	display: block;
	color: #fff;
	text-decoration: none;
}
.qd_newsCard__thumb {
	overflow: hidden;
	border-radius: 4px;
	background: #222;
	aspect-ratio: 315 / 210;
}
.qd_newsCard__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease, opacity 0.35s ease;
}
.qd_newsCard__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 20px;
	margin-top: 18px;
}
.qd_newsCard__date {
	position: relative;
	font-family: "Jost", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.2;
	color: #8E8E8E;
}
.qd_newsCard__cat {
	position: relative;
	font-family: "Jost", sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	padding-left: 14px;
}
.qd_newsCard__cat::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	transform: translateY(-50%);
}
.qd_newsCard__title {
	margin-top: 12px;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.6;
	color: #fff;
	word-break: break-word;
}
.qd_news__action {
	margin-top: 68px;
	display: flex;
	justify-content: center;
}
.qd_news__more {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 315px;
	height: 70px;
	padding: 0 68px;
	border: 1px solid #fff;
	border-radius: 9999px;
	color: #fff;
	text-decoration: none;
}
.qd_news__moreText {
	font-family: "Jost", sans-serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.02em;
}
.qd_news__moreIcon {
	position: absolute;
	top: 50%;
	right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: transparent;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: background 0.3s ease;
}
.qd_news__moreIcon img {
	width: 11px;
	height: 11px;
	object-fit: contain;
	transition: filter 0.3s ease;
}
@media screen and (min-width: 769px) {
	.qd_newsCard__link:hover .qd_newsCard__thumb img {
		transform: scale(1.06);
		opacity: 0.9;
	}
	.qd_newsCard__link:hover .qd_newsCard__title {
		text-decoration: underline;
		text-underline-offset: 0.18em;
	}
	.qd_news__more {
		background: transparent;
		border: 1px solid #fff;
		transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	}
	.qd_news__more:hover {
		border-color: transparent;
		background: #B838F4;
		color: #fff;
	}
	.qd_news__more:hover .qd_news__moreIcon {
		background: #000;
	}
	.qd_news__more:hover .qd_news__moreIcon img {
		filter: brightness(0) invert(1);
	}
	.qd_news__moreText {
		transition: transform 0.3s ease;
	}

	.qd_news__more:hover .qd_news__moreText {
		transform: translateX(-3px);
	}
}

/* =================================
	MOVIE
================================= */
.qd_movie {
	position: relative;
	padding: 126px 0 230px;
	background: transparent;
	color: #fff;
	z-index: 0;
}
.qd_movie::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1;
	pointer-events: none;
}
.qd_movie__inner {
	position: relative;
	z-index: 2;
}
.qd_movie__head {
	margin-bottom: 86px;
}
.qd_movie__video {
	max-width: 960px;
	margin: 0 auto;
}
.qd_movie__videoFrame {
	position: relative;
	width: 100%;
	aspect-ratio: 960 / 540;
	overflow: hidden;
	border-radius: 6px;
}
.qd_movie__videoFrame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* =================================
	TICKET
================================= */
.qd_ticket {
	position: relative;
	padding: 100px 0 15px;
	background: transparent;
	color: #000;
	z-index: 0;
}
.qd_ticket::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1;
	pointer-events: none;
}
.qd_ticket__box {
	position: relative;
	margin: 0 20px;
	padding: 64px 45px 60px 74px;
	background: #EBFF00;
	border-radius: 15px;
}
.qd_ticket__grid {
	display: grid;
	grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
	column-gap: 72px;
	align-items: start;
}
.qd_ticket__head {
	text-align: center;
}
.qd_ticket__head .qd_sectionHead__en {
	margin-bottom: 10px;
	font-size: 14rem;
	line-height: 0.88;
	color: #000;
}
.qd_ticket__head .qd_sectionHead__jp {
	margin-top: 0;
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: 2px;
	color: #000;
}
.qd_ticket__left {
	padding-top: 46px;
	padding-bottom: 60px;
	position: sticky;
	top: 0;
}
.qd_ticketBuy {
	margin-top: 72px;
	padding-top: 36px;
	border-top: 1px solid rgba(0, 0, 0, 0.18);
}
.qd_ticketBuy__head {
	display: flex;
	align-items: center;
	gap: 15px;
}
.qd_ticketBuy__icon {
	flex-shrink: 0;
	width: 48px;
}
.qd_ticketBuy__icon img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_ticketBuy__title {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.2;
	margin: 0 0 5px;
}
.qd_ticketBuy__status {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.3;
}
.qd_ticketBuy__btns {
	margin-top: 36px;
}
.qd_ticketBuy__btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 80px;
	margin-top: 11px;
	padding: 18px 28px;
	border-radius: 9999px;
	background: #000;
	color: #fff;
	text-decoration: none;
}
.qd_ticketBuy__btn.disabled {
	pointer-events: none;
	background: #bbb;
	color: #eee;
}
.qd_ticketBuy__btn:first-child {
	margin-top: 0;
}
.qd_ticketBuy__btnText {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
}
.qd_ticketBuy__btnText strong {
	font-size: 2.2rem;
	font-weight: 700;
}
.qd_ticketBuy__btnIcon {
	position: absolute;
	top: 50%;
	right: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	transform: translateY(-50%);
}
.qd_ticketBuy__btnIcon img {
	display: block;
	width: 12px;
	height: 12px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.qd_ticket__right {
	padding-top: 22px;
}
.qd_ticket__left,
.qd_ticket__right {
	min-width: 0;
}
.qd_ticketTable__head {
	padding-top: 30px;
	border-top: 2px solid rgba(0, 0, 0, 0.45);
}
.qd_ticketTable__title {
	position: relative;
	padding-left: 22px;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.2;
}
.qd_ticketTable__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 38px;
	border-radius: 999px;
	background: #000;
	transform: translateY(-50%);
}
.qd_ticketTable {
	margin-top: 30px;
	margin-bottom: 70px;
}
.qd_ticketTable__scroll {
	max-height: 552px;
	overflow-y: auto;
	scrollbar-width: auto;
	scrollbar-color: rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.08);
}
.qd_ticketTable__scroll::-webkit-scrollbar {
	width: 10px;
}
.qd_ticketTable__scroll::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.12);
	border-radius: 999px;
}
.qd_ticketTable__scroll::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.7);
	border-radius: 999px;
}
.qd_ticketTable__scroll {
	overflow: hidden;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 8px;
}
.qd_ticketTable__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}
.qd_ticketTable__table p {
	margin: 0;
}
.qd_ticketTable__table thead,
.qd_ticketTable__table tbody {
	display: block;
	width: 100%;
}
.qd_ticketTable__table thead tr,
.qd_ticketTable__table tbody tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
.qd_ticketTable__table tbody {
	max-height: 440px;
	overflow-y: auto;
	scrollbar-width: auto;
	scrollbar-color: rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.08);
}
.qd_ticketTable__table tbody::-webkit-scrollbar {
	width: 10px;
}
.qd_ticketTable__table tbody::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.12);
	border-radius: 999px;
}
.qd_ticketTable__table tbody::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.7);
	border-radius: 999px;
}
.qd_ticketTable__table thead th {
	padding: 20px 24px;
	background: rgb(0,0,0,.6);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #fff;
}
.qd_ticketTable__table thead th:nth-child(1),
.qd_ticketTable__table tbody td:nth-child(1) {
	width: 27%;
}
.qd_ticketTable__table thead th:nth-child(2),
.qd_ticketTable__table tbody td:nth-child(2) {
	width: 16%;
}
.qd_ticketTable__table thead th:nth-child(3),
.qd_ticketTable__table tbody td:nth-child(3) {
	width: 14%;
}
.qd_ticketTable__table thead th:nth-child(4),
.qd_ticketTable__table tbody td:nth-child(4) {
	width: 43%;
}
.qd_ticketTable__table tbody td {
	padding: 20px 24px 22px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	vertical-align: middle;
	background: transparent;
}
.qd_ticketTable__seat {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
}
.qd_ticketTable__sub {
	margin: 4px 0 0;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.45;
	color: rgba(0, 0, 0, 0.78);
}
.qd_ticketTable__price {
	font-family: "Jost", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.2;
	text-align: right;
	white-space: nowrap;
}
.qd_ticketStatus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 80px;
	padding: 7px 4px;
	border-radius: 4px;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}
.qd_ticketStatus--soldout {
	color: #BA0000;
}
.qd_ticketStatus--few {
	color: #FF7F00;
	border: 1px solid #FF7F00;
	background: rgba(255, 255, 255, 0.7);
}
.qd_ticketStatus--sale {
	color: #009059;
	border: 1px solid #009059;
	background: rgba(255, 255, 255, 0.7);
}
.qd_ticketStore {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 5px;
}
.qd_ticketStore a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 30px;
	padding: 0 14px;
	border-radius: 9999px;
	background: #000;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}
.qd_ticketStore a img {
	display: block;
	width: 10px;
	height: 10px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
.qd_ticketTable__note {
	margin-top: 14px;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.82);
}
.qd_ticket__noteLink {
	position: absolute;
	left: 74px;
	bottom: 40px;
	font-size: 1.5rem;
}
.qd_ticket__noteLink a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #000;
	text-decoration: underline;
}
.qd_ticket__noteIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;

}
.qd_ticket__noteIcon img {
	width: 31px;
	height: 31px;
}
.qd_ticketSchedule {
	margin-top: 74px;
}
.qd_ticketSchedule__head {
	padding-top: 18px;
	border-top: 2px solid rgba(0, 0, 0, 0.45);
}
.qd_ticketSchedule__title {
	position: relative;
	padding-left: 22px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #000;
}
.qd_ticketSchedule__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 38px;
	border-radius: 999px;
	background: #000;
	transform: translateY(-50%);
}
.qd_ticketSchedule__lead {
	margin-top: 42px;
	margin-bottom: 15px;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
}
.qd_ticketSchedule__tableWrap {
	margin-top: 10px;
}
.qd_ticketSchedule__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}
.qd_ticketSchedule__table p {
	margin: 0;
}
.qd_ticketSchedule__table thead th {
	padding: 19px 20px 18px;
	background: #6E7510;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #fff;
}
.qd_ticketSchedule__table thead th:first-child {
	border-top-left-radius: 16px;
	border-bottom-left-radius: 16px;
}
.qd_ticketSchedule__table thead th:last-child {
	border-top-right-radius: 16px;
	border-bottom-right-radius: 16px;
}
.qd_ticketSchedule__table thead th:nth-child(1) {
	width: 30%;
}
.qd_ticketSchedule__table thead th:nth-child(2) {
	width: 16%;
}
.qd_ticketSchedule__table thead th:nth-child(3) {
	width: 16%;
}
.qd_ticketSchedule__table thead th:nth-child(4) {
	width: 38%;
}
.qd_ticketSchedule__table tbody td {
	padding: 30px 10px 30px;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	vertical-align: middle;
}
.qd_ticketSchedule__type {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.45;
	color: #000;
}
.qd_ticketSchedule__sub {
	margin-top: 5px;
	font-size: 1.2rem;
	line-height: 1.45;
}
.qd_ticketSchedule__date,
.qd_ticketSchedule__time {
	font-family: "Jost", sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.45;
	text-align: center;
}
.qd_ticketSchedule__time {
	margin-top: 2px;
}
.qd_ticketSchedule__table .is-muted td {
	opacity: .3;
}


@media screen and (min-width: 769px) {
	.qd_ticketSchedule__store a {
		transition: opacity 0.25s ease, transform 0.25s ease;
	}
	.qd_ticketSchedule__store a:hover {
		opacity: 0.88;
		transform: translateY(-2px);
	}
	.qd_ticketBuy__btn {
		border: 2px solid transparent;
		transition: background 0.3s ease, border-color 0.3s ease;
	}

	.qd_ticketBuy__btnText {
		transition: color 0.3s ease;
	}

	/* アイコンは位置そのまま */
	.qd_ticketBuy__btnIcon {
		position: absolute;
		top: 50%;
		right: 28px;
		transform: translateY(-50%);
		z-index: 2;
	}

	/* 黒丸を後ろに出す */
	.qd_ticketBuy__btnIcon::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background: #000;
		transform: translate(-50%, -50%) scale(0);
		transition: transform 0.3s ease;
		z-index: -1;
	}

	.qd_ticketBuy__btnIcon img {
		transition: filter 0.3s ease;
	}

	/* hover */
	.qd_ticketBuy__btn:hover {
		background: #fff;
		border-color: #000;
	}

	.qd_ticketBuy__btn:hover .qd_ticketBuy__btnText {
		color: #000;
	}

	/* 黒丸だけ出現（位置は変わらない） */
	.qd_ticketBuy__btn:hover .qd_ticketBuy__btnIcon::before {
		transform: translate(-50%, -50%) scale(1);
	}

	.qd_ticketBuy__btn:hover .qd_ticketBuy__btnIcon img {
		filter: brightness(0) invert(1);
	}
		.qd_ticketBuy__btnText {
		transition: transform 0.3s ease;
	}

	.qd_ticketBuy__btn:hover .qd_ticketBuy__btnText {
		transform: translateX(-5px);
	}
	.qd_ticketTable__scroll {
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 10px;
	}

	.qd_ticketTable__table {
		width: 789px;
		min-width: 789px;
	}

	.qd_ticketTable__scroll::-webkit-scrollbar {
		height: 8px;
	}

	.qd_ticketTable__scroll::-webkit-scrollbar-track {
		background: rgba(0,0,0,0.1);
		border-radius: 9999px;
	}

	.qd_ticketTable__scroll::-webkit-scrollbar-thumb {
		background: #8e19f0;
		border-radius: 9999px;
	}
}


/* =================================
	PPV
================================= */
.qd_ppv {
	z-index: 0;
	position: relative;
	padding: 15px 0 120px;
	background: transparent;
}
.qd_ppv::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1;
	pointer-events: none;
}
.qd_ppv__box {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	margin: 0 20px;
	background: url("/images/queendom/ppv_bg.jpg") no-repeat center center;
	background-size: cover;
}
.qd_ppv__box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 185, 255, 0.28);
	pointer-events: none;
}
.qd_ppv__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 36.5% 1fr;
	align-items: center;
	min-height: 460px;
}
.qd_ppv__left {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: 20px 40px;
}
.qd_ppv__right {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	padding: 20px 40px;
	text-align: center;
}
.qd_ppv__right::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 0;
	width: 5px;
	height: 380px;
	background-image: radial-gradient(circle, #000 1.7px, transparent 1px);
	background-size: 5px 18px;
	background-repeat: repeat-y;
	background-position: center top;
}
.qd_ppv__head {
	text-align: center;
	color: #000;
}
.qd_ppv__en {
	font-family: "New Amsterdam", sans-serif;
	font-size: 14rem;
	font-weight: 400;
	line-height: 0.9;
	color: #000;
}
.qd_ppv__jp {
	margin-top: 16px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: #000;
}
.qd_ppv__lead {
	margin: 0 0 20px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1b1625;
	transform: rotate(-4deg);
	transform-origin: center;
}
.qd_ppv__title {
	margin: 0;
	font-size: 9rem;
	font-weight: 700;
	line-height: 1.1;
	color: #000;
	transform: scale(0.7) rotate(-4deg);
	transform-origin: center;
	opacity: 0;
}
.qd_ppv__title.scroll_animation {
	animation: qd_ppvTitleScale 1s ease-out 0.5s forwards;
}
@keyframes qd_ppvTitleScale {
	from {
		transform: scale(0.8) rotate(-4deg);
		opacity: 0;

	}
	to {
		transform: scale(1) rotate(-4deg);
		opacity: 1;

	}
}
.qd_ppv__action {
	margin-top: 30px;
	width: 100%;
	max-width: 380px;
}
.qd_ppv__btn {
	min-height: 80px;
	padding: 0 32px;
}
.qd_ppv__btn .qd_ticketBuy__btnText {
	width: 100%;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}
.qd_ppv__btn .qd_ticketBuy__btnIcon {
	right: 28px;
}


/* =================================
	GOODS
================================= */
.qd_goods {
	position: relative;
	padding: 120px 0 200px;
	background: transparent;
	z-index: 0;
}
.qd_goods::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1;
	pointer-events: none;
}
.qd_goods .qd_inner {
	max-width: 950px;
	padding-left: 20px;
	padding-right: 20px;
}
.qd_goods__card {
	position: relative;
	display: block;
	overflow: hidden;
	border: 6px solid #fff;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
	color: #fff;
	text-decoration: none;
}
.qd_goods__card.disabled  {
	pointer-events: none;
	opacity: .8;
}
.qd_goods__bg {
	position: absolute;
	inset: 0;
	background: url("/images/queendom/goods_bg.jpg") no-repeat center center;
	background-size: cover;
	transform: scale(1);
	transform-origin: center;
	transition: transform 0.35s ease;
}
.qd_goods__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 370px;
	padding: 48px 56px 46px;
}
.qd_goods__head {
	position: absolute;
	top: 52px;
	left: 56px;
}
.qd_goods__en {
	font-family: "New Amsterdam", sans-serif;
	font-size: 6.1rem;
	font-weight: 400;
	line-height: 0.9;
	color: #fff;
	margin: 0;
}
.qd_goods__jp {
	margin-top: 10px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 2px;
	color: #fff;
	text-align: center;
}
.qd_goods__body {
	width: 100%;
	text-align: center;
}
.qd_goods__logo {
	width: 47%;
	max-width: 530px;
	margin: 0 auto;
}
.qd_goods__logo img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_goods__title {
	margin-top: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	text-transform: uppercase;
	margin: 0;
}
.qd_goods__text {
	margin-top: 10px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
}
.qd_goods__icon {
	position: absolute;
	right: 24px;
	bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #fff;
}

.qd_goods__icon img {
	width: 14px;
	height: 14px;
	object-fit: contain;
}

.qd_goods__coming {
	font-family: "Jost", sans-serif;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.06em;
	color: #fff;
	text-align: center;
}

/* 少し立体感（おすすめ） */
.qd_goods__coming {
	text-shadow:
		0 2px 6px rgba(0, 0, 0, 0.4),
		0 0 20px rgba(255, 255, 255, 0.15);
}

@media screen and (min-width: 769px) {
	.qd_goods__icon {
		transition: transform 0.3s ease;
	}
	.qd_goods__card:hover .qd_goods__bg {
		transform: scale(1.06);
	}
	.qd_goods__card:hover .qd_goods__icon {
		transform: scale(1.08);
	}
}

/* =================================
	ACCESS
================================= */
.qd_access {
	position: relative;
	background: #000;
	color: #fff;
	z-index: 0;
}
.qd_access p {
	margin: 0;
}
.qd_access__photo img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_access .qd_inner.qd_inner_1400 {
	padding: 0;
}
.qd_access__body {
	padding: 140px 0 120px;
	background: #000;
}
.qd_access__head {
	margin-bottom: 82px;
}
.qd_access__grid {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 78px;
	padding: 0 40px;
}
.qd_access__mapCol {
	width: 100%;
	max-width: 600px;
	flex: 1 1 0;
}
.qd_access__infoCol {
	width: 100%;
	max-width: 600px;
	flex: 1 1 0;
}
.qd_access__map {
	width: 100%;
	max-width: 600px;
	background: #111;
}
.qd_access__map iframe {
	display: block;
	width: 100%;
	height: 385px;
}
.qd_access__venue {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 35px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.qd_access__venueMain {
	flex: 1 1 auto;
	min-width: 0;
}
.qd_access__venueBtn {
	flex-shrink: 0;
}
.qd_access__venueName {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
}
.qd_access__address {
	margin-top: 11px;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.6;
	color: #fff;
}
.qd_accessMapBtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 144px;
	height: 42px;
	padding: 0 50px 0 28px;
	border-radius: 9999px;
	background: linear-gradient(90deg, #d64dff 0%, #8e1cff 100%);
	color: #fff;
	text-decoration: none;
}
.qd_accessMapBtn__text {
	font-family: "Jost", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
}
.qd_accessMapBtn__icon {
	position: absolute;
	top: 50%;
	right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #000;
	transform: translateY(-50%);
}
.qd_accessMapBtn__icon img {
	display: block;
	width: 12px;
	height: 12px;
	filter: brightness(0) invert(1);
}
.qd_access__station {
	padding-top: 30px;
}
.qd_access__stationTitle {
	position: relative;
	padding-left: 16px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
}
.qd_access__stationTitle::before {
	content: "";
	position: absolute;
	top: 0.15em;
	left: 0;
	width: 5px;
	height: 1.35em;
	border-radius: 9999px;
	background: #fff;
}
.qd_access__list {
	margin-top: 34px;
	padding-left: 1.25em;
	list-style: disc;
}
.qd_access__list li {
	margin-top: 15px;
	font-size: 1.5rem;
	line-height: 1.9;
	color: #fff;
}
.qd_access__list li:first-child {
	margin-top: 0;
}
.qd_access__note {
	margin-top: 28px;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.8;
	color: #ebff00;
}

@media screen and (min-width: 769px) {
	.qd_accessMapBtn {
		transition: opacity 0.3s ease, transform 0.3s ease;
	}
	.qd_accessMapBtn__icon {
		transition: transform 0.3s ease;
	}
	.qd_accessMapBtn:hover {
		opacity: 0.92;
	}
	.qd_accessMapBtn:hover .qd_accessMapBtn__icon {
		transform: translateY(-50%) scale(1.08);
	}
}

/* =================================
	FAQ
================================= */
.qd_faq {
	position: relative;
	padding: 140px 0 120px;
	background: transparent;
	color: #fff;
	z-index: 0;
}
.qd_faq::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1;
	pointer-events: none;
}
.qd_faq .qd_inner {
	max-width: 840px;
	padding-left: 20px;
	padding-right: 20px;
}
.qd_faq__head {
	margin-bottom: 80px;
}
.qd_faq__list {
	max-width: 800px;
	margin: 0 auto;
}
.qd_faqItem {
	margin-top: 28px;
	border-radius: 12px;
	overflow: hidden;
}
.qd_faqItem:first-child {
	margin-top: 0;
}
.qd_faqItem summary::-webkit-details-marker {
	display: none;
}
.qd_faqItem__question {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 84px;
	padding: 24px 88px 24px 30px;
	background: #434554;
	border-radius: 12px;
	cursor: pointer;
	list-style: none;
	transition: background-color 0.3s ease;
}
.qd_faqItem__q {
	flex-shrink: 0;
	font-family: "Jost", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}
.qd_faqItem__questionText {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
}
.qd_faqItem__icon {
	position: absolute;
	top: 50%;
	right: 28px;
	width: 32px;
	height: 32px;
	border: 2px solid #fff;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}
.qd_faqItem__icon::before,
.qd_faqItem__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
}
.qd_faqItem__icon::before {
	width: 14px;
	height: 2px;
}
.qd_faqItem__icon::after {
	width: 2px;
	height: 14px;
	transition: opacity 0.25s ease;
}

#faq a {
		color: #e60033!important;
    text-decoration: underline!important;	
}


/* 通常hover */
@media screen and (min-width: 769px) {
	.qd_faqItem:not([open]) .qd_faqItem__question:hover {
		background: #B838F4;
	}
	.qd_faqItem__question:hover .qd_faqItem__icon {
		transform: translateY(-50%) scale(1.08);
	}
}

/* 開いた時 */
.qd_faqItem[open] .qd_faqItem__question {
	background: #A017E0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.qd_faqItem[open] .qd_faqItem__icon::after {
	opacity: 0;
}

.qd_faqItem__answer {
	height: 0;
	overflow: hidden;
	background: #f2f2f2;
	transition: height 0.4s ease;
}
.qd_faqItem__answerInner {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 28px 30px 30px;
}
.qd_faqItem__a {
	flex-shrink: 0;
	margin: 0;
	font-family: "Jost", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	color: #c10000;
}
.qd_faqItem__answerBody {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 2px;
}
.qd_faqItem__answerBody p {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 2;
	color: #4a4a4a;
}
.qd_link_external {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.qd_link_external::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url("/images/queendom/icon_window_red.svg") no-repeat center center;
	background-size: contain;
	flex-shrink: 0;
}

/* =================================
	ATTENTION
================================= */
.qd_attention {
	position: relative;
	padding: 138px 0 140px;
	background: #000;
	color: #fff;
	z-index: 0;
}
.qd_attention__inner {
	max-width: 1000px;
}
.qd_attention__head {
	margin-bottom: 78px;
}
.qd_attention__lead {
	max-width: 960px;
	margin: 0 auto 58px;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.8;
	color: #fff;
}
.qd_attention__list {
	max-width: 960px;
	margin: 0 auto;
}
.qd_attentionItem {
	margin-top: 52px;
}
.qd_attentionItem:first-child {
	margin-top: 0;
}
.qd_attentionItem__title {
	position: relative;
	padding-left: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	color: #fff;
}
.qd_attentionItem__title::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0;
	width: 7px;
	height: 1.55em;
	border-radius: 9999px;
	background: #7177af;
}
.qd_attentionItem__body {
	margin-top: 18px;
	padding-left: 20px;
}
.qd_attentionItem__body p {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 2;
	color: #fff;
}
.qd_attentionItem__body .attention_link {
  color: #EBFF00;
  text-decoration: underline;
  position: relative;
}

.qd_attentionItem__body .attention_link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-color: #EBFF00;
  -webkit-mask: url("/images/queendom/icon_windowopen.svg") no-repeat center;
  mask: url("/images/queendom/icon_windowopen.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle;
}

/* =================================
	FOOTER
================================= */
.qd_footer {
	position: relative;
	background: #ececec;
	color: #000;
}
.qd_footer__inner {
	position: relative;
	min-height: 380px;
	padding: 58px 40px;
}
.qd_footer__sns {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 0 30px;
}
.qd_footer__snsLink {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #000;
}
.qd_footer__snsIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
}
.qd_footer__snsIcon img {
	display: block;
	width: auto;
	max-width: none;
	height: 40px;
}
.qd_footer__snsLink--x .qd_footer__snsIcon img {
	height: 34px;
}
.qd_footer__snsSub {
	margin-top: 4px;
	font-family: "Jost", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	color: #000;
}
.qd_footer__center {
	position: absolute;
	top: 158px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 520px;
	text-align: center;
}
.qd_footer__logo {
	width: 237px;
	margin: 0 auto;
}
.qd_footer__logo img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_footer__copy {
	margin-top: 40px;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.02em;
	color: #000;
}
.qd_footer__pagetop {
	position: absolute;
	right: 29px;
	bottom: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #000;
	text-decoration: none;
}
.qd_footer__pagetopIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 8px;
}
.qd_footer__pagetopIcon img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_footer__snsIcon img {
	filter: brightness(0);
}

.qd_footer__snsLink img[src*="youtube"] { height: 28px; }
.qd_footer__snsLink img[src*="tiktok"] { height: 28px; }

	.qd_footer__snsSub {
		font-size: 0.9rem;
	}
		.qd_footer__sns {
		gap: 0 17px;
	}
	@media screen and (min-width: 769px) {
	.qd_footer__snsLink,
	.qd_footer__pagetop {
		transition: opacity 0.3s ease, transform 0.3s ease;
	}
	.qd_footer__snsLink:hover,
	.qd_footer__pagetop:hover {
		opacity: 0.75;
	}
	.qd_footer__pagetop:hover {
		transform: translateY(-4px);
	}
		.qd_footer__pagetop {
		transition: opacity 0.3s ease, transform 0.3s ease;
	}
	.qd_footer__pagetop:hover {
		opacity: 0.75;
		transform: translateY(-4px);
	}

}

/* =================================
	TICKET MODAL
================================= */
.qd_ticketModal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.qd_ticketModal.is_open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.qd_ticketModal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}
.qd_ticketModal__dialog {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 580px;
	transform: translate(-50%, -50%);
}
.qd_ticketModal__inner {
	position: relative;
	padding: 55px 80px;
	background: #EBFF00;
	border-radius: 20px;
	text-align: center;
}
.qd_ticketModal__close {
	position: absolute;
	top: -20px;   /* 上に出す */
	right: -20px; /* 右に少しはみ出す */
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #F2F2F2;
	cursor: pointer;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		transition: 
		box-shadow 0.3s ease,
		transform 0.2s ease,
		background 0.2s ease;
}
.qd_ticketModal__closeLine {
	position: absolute;
	top: 19px;
	left: 50%;
	width: 18px;
	height: 2px;
	background: #111;
	border-radius: 999px;
	transform-origin: center;
}
.qd_ticketModal__closeLine01 {
	transform: translateX(-50%) rotate(45deg);
}
.qd_ticketModal__closeLine02 {
	transform: translateX(-50%) rotate(-45deg);
}
.qd_ticketModal__icon {
	width: 78px;
	margin: 0 auto 26px;
}
.qd_ticketModal__icon img {
	display: block;
	width: 100%;
	height: auto;
}
.qd_ticketModal__title {
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.2;
	color: #000;
}
.qd_ticketModal__status {
	margin-top: 24px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.4;
	color: #000;
}
.qd_ticketModal__btns {
	width: 100%;
	max-width: 570px;
	margin: 34px auto 0;
}
.qd_ticketModal__btns .qd_ticketBuy__btn {
	min-height: 88px;
	margin-top: 14px;
}
.qd_ticketModal__btns .qd_ticketBuy__btn:first-child {
	margin-top: 0;
}
.qd_ticketModal__bottom {
	margin-top: 48px;
}
.qd_ticketModal__link {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #000;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4;
}
.qd_ticketModal__linkIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #000;
	flex-shrink: 0;
}
.qd_ticketModal__linkIcon img {
	width: 14px;
	height: 14px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}
body.is_ticket_modal_open {
	overflow: hidden;
}
.qd_ticketModal__noteLink {
	position: static;
	margin-top: 0;
	text-align: center;
}
@media screen and (min-width: 769px) {
	.qd_ticketModal__close:hover {
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
		transform: translateY(-2px) scale(1.05);
		background: #fff;
	}
}



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

	/* バーガーメニュー */
	.qd_menu__inner {
		padding: 14px 40px 36px;
	}
	.qd_menu__close {
		top: 14px;
		right: 14px;
		width: 56px;
		height: 56px;
	}
	.qd_menu__closeLine {
		top: 23px;
		width: 24px;
	}
	.qd_menu__closeText {
		display: none;
	}
	.qd_menu__nav {
		max-width: none;
		margin: 70px 0 40px;
	}
	.qd_menu__grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 32px;
		row-gap: 24px;
	}
	.qd_menu__item:nth-child(1) {
		grid-column: 1 / -1;
		grid-row: 1;
	}
	.qd_menu__item:nth-child(2) {
		grid-column: 1 / -1;
		grid-row: 2;
	}
	.qd_menu__item:nth-child(3) {
		grid-column: 1;
		grid-row: 3;
	}
	.qd_menu__item:nth-child(4) {
		grid-column: 1;
		grid-row: 4;
	}
	.qd_menu__item:nth-child(5) {
		grid-column: 1;
		grid-row: 5;
	}
	.qd_menu__item:nth-child(6) {
		grid-column: 2;
		grid-row: 3;
	}
	.qd_menu__item:nth-child(7) {
		grid-column: 2;
		grid-row: 4;
	}
	.qd_menu__item:nth-child(8) {
		grid-column: 2;
		grid-row: 5;
	}
	.qd_menu__en {
		font-size: 4rem;
		line-height: 0.96;
	}
	.qd_menu__jp {
		margin-top: 4px;
		font-size: 1.3rem;
	}
	.qd_menu__sub {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 12px;
		max-width: none;
		margin: 0;
		padding-top: 22px;
	}
	.qd_menu__subLink {
		font-size: 1.5rem;
		white-space: nowrap;
	}
	.qd_menu__footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 28px;
	}
	.qd_menu__sns {
		order: 1;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		gap: 18px;
		width: 100%;
		margin-left: 0;
	}
	.qd_menu__snsLink--xjp img,
	.qd_menu__snsLink--xeng img {
		width: 30px;
	}
	.qd_menu__footerLogo {
		order: 2;
		width: 172px;
		margin: 38px auto 0;
	}
	.qd_menu__closeBtn {
		top: 16px;
		right: 14px;
		width: 54px;
		height: 54px;
	}
	.qd_menu__closeBg {
		width: 48px;
		height: 48px;
	}
	.qd_menu__closeLine {
		width: 22px;
		height: 2px;
	}
	.qd_menu__closeLine01 {
		top: 26px;
		transform: translateX(-50%) rotate(32deg);
	}
	.qd_menu__closeLine02 {
		top: 26px;
		transform: translateX(-50%) rotate(-32deg);
	}
	.qd_menu__closeText {
		bottom: 10px;
		font-size: 0.8rem;
	}
	.qd_menu__item::before {
		display: none;
	}

	.qd_menu__item:hover .qd_menu__en,
	.qd_menu__item:hover .qd_menu__jp {
		color: #fff;
		transform: none;
	}
	/* ファーストビュー関連 */
	.qd_fv__inner {
		padding: 16px 0 0;
		min-height: 100vh;
		min-height: 100svh;
	}
	.qd_fv__header {
		padding: 0 14px;
	}
	.qd_fv__logo {
		margin-top: 17px;
		width: 136px;
	}
	.qd_fv__headerBtns {
		top: 16px;
		right: 14px;
		gap: 8px;
	}
	.qd_fv__ticket {
		width: 120px;
		height: 54px;
		padding: 0 10px;
		gap: 8px;
		justify-content: center;
		transition: none;
	}
	.qd_fv__ticket:hover {
		width: 120px;
	}
	.qd_fv__ticketIcon {
		width: 30px;
		flex-shrink: 0;
	}
	.qd_fv__ticketIcon img {
		display: block;
		width: 30px;
		height: auto;
	}
	.qd_fv__ticketText {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		line-height: 1.15;
		font-size: 0;
	}
	.qd_fv__ticketText::before {
		content: "チケット\A購入";
		white-space: pre;
		display: block;
		font-size: 1.1rem;
		font-weight: 700;
		line-height: 1.15;
		text-align: center;
	}
	.qd_fv__ticketPlus {
		display: none;
	}
	.qd_fv__menu {
		width: 54px;
		height: 54px;
	}
	.qd_fv__menuBg {
		width: 0;
		height: 0;
	}
	.qd_fv__menuLine {
		width: 22px;
		height: 2px;
	}
	.qd_fv__menuLine01 {
		top: 23px;
	}
	.qd_fv__menuLine02 {
		top: 29px;
	}
	.qd_fv__menuText {
		bottom: 10px;
		font-size: 0.8rem;
	}
	.qd_fv__menu:hover .qd_fv__menuBg {
		width: 0;
		height: 0;
	}
	.qd_fv__menu:hover .qd_fv__menuLine {
		background: #fff;
	}
	.qd_fv__menu:hover .qd_fv__menuText--menu {
		opacity: 0;
	}
	.qd_fv__menu.is_open .qd_fv__menuBg {
		width: 48px;
		height: 48px;
	}
	.qd_fv__menu.is_open .qd_fv__menuLine {
		background: #A017E0;
	}
	.qd_fv__menu.is_open .qd_fv__menuLine01 {
		top: 24px;
		transform: translateX(-50%) rotate(32deg);
	}
	.qd_fv__menu.is_open .qd_fv__menuLine02 {
		top: 24px;
		transform: translateX(-50%) rotate(-32deg);
	}
	.qd_fv__menu.is_open .qd_fv__menuText--close {
		opacity: 1;
	}
	.qd_fv__main {
		position: relative;
		display: block;
		min-height: calc(100vh - 70px);
		min-height: calc(100svh - 70px);
		padding: 84px 0 0;
	}
	.qd_fv__kv {
		position: relative;
		height: 100%;
		min-height: calc(100vh - 154px);
		min-height: calc(100svh - 154px);
		text-align: left;
	}
	.qd_fv__subLogo {
		position: absolute;
		top: 33%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		max-width: none;
	}
	.qd_fv__info {
		position: absolute;
		left: 50%;
		bottom: 80px;
		transform: translateX(-50%);
		width: 100%;
		padding: 0;
	}
	.qd_fv__newsLink {
		position: relative;
		display: block;
		height: auto;
		padding: 18px 54px 18px 14px;
	}
	.qd_fv__newsLabel {
		position: absolute;
		top: 30px;
		left: 14px;
		width: 49px;
		height: 49px;
		transform: translateY(-50%) rotate(-16deg);
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.qd_fv__newsDate {
		display: block;
		padding-left: 60px;
		font-size: 1.4rem;
		font-weight: 400;
		line-height: 1.2;
		white-space: nowrap;
	}
	.qd_fv__newsText {
		position: relative;
		display: inline-block;
		max-width: none;
		margin-top: 10px;
		margin-left: 60px;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.45;
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: 2px;
		transform: none;
	}
	.qd_fv__newsTextIn {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
	.qd_fv__newsText::before {
		content: none;
	}
	.qd_fv__newsLink::after {
		content: "";
		position: absolute;
		right: 20px;
		bottom: 20px;
		width: 28px;
		height: 28px;
		background: url("/images/queendom/news_icon_down.svg") no-repeat center center;
		background-size: 28px 28px;
	}
	.qd_fv__newsText::after {
		display: none;
	}


	
	.qd_inner {
		padding: 0 25px;
	}
	.qd_sectionHead__en {
		font-size: 6rem;
		line-height: 0.92;
	}
	.qd_sectionHead__jp {
		margin-top: 12px;
		font-size: 1.8rem;
	}
	.qd_overview {
		padding: 72px 0 84px;
	}
	.qd_overview__bg {
		background-position: center top;
		background-size: cover;
	}
	.qd_overview .qd_sectionHead {
		margin-bottom: 62px;
	}
	.qd_overview__row {
		align-items: flex-start;
		gap: 26px;
		padding: 30px 0 34px;
	}
	.qd_overview__label {
		width: 60px;
		padding: 20px 10px;
	}
	.qd_overview__label span {
		font-size: 1.4rem;
	}
	.qd_overview__date {
		font-size: 3.2rem;
		line-height: 1.15;
		gap: 0;
	}
	.qd_overview__timeList {
		display: inline-block;
		margin-top: 10px;
	}
	.qd_overview__timeItem {
		display: grid;
		grid-template-columns: 1fr 1em 5.2em;
		align-items: center;
		column-gap: 10px;
		margin-bottom: 10px;
		padding-right: 10px;
	}
	.qd_overview__timeItem::before {
		content: ":";
		grid-column: 2;
		grid-row: 1;
		font-weight: 700;
		line-height: 1;
		color: #fff;
		text-align: center;
	}

	.qd_overview__timeTag {
		grid-column: 1;
		display: block;
		min-height: 0;
		padding: 0;
		border: 0;
		font-size: 1.3rem;
		font-weight: 700;
		line-height: 1.4;
		background: none;
		text-align: left;
	}
	.qd_overview__timeValue {
		grid-column: 3;
		display: block;
		width: 100%;
		font-family: "Jost", sans-serif;
		font-size: 2rem;
		font-weight: 600;
		line-height: 1;
		text-align: right;
		width: 45px;
	}
	.qd_overview__timeValue::before {
		content: none;
	}
	.qd_overview__slash {
		display: none;
	}
	.qd_overview__timeItem--main .qd_overview__timeTag {
		color: #efff00;
		border: 0;
	}
	.qd_overview__timeItem--main .qd_overview__timeValue {
		font-size: 2rem;
		color: #efff00;
	}
	.qd_overview__content--venue {
		display: block;
	}
	.qd_overview__venueName {
		font-size: 2.1rem;
		line-height: 1.2;
	}
	.qd_overview__venueAddress {
		margin-top: 14px;
		font-size: 1.2rem;
		line-height: 1.6;
	}
	.qd_overview__venueAction {
		margin-top: 26px;
	}
	.qd_overview__accessBtn {
		justify-content: center;
		width: 100%;
		max-width: 180px;
		height: 44px;
		padding: 0 18px 0 28px;
	}
	.qd_overview__accessText {
		font-size: 1.4rem;
	}
	.qd_overview__accessIcon {
		opacity: 1;
		transform: translateY(-50%) scale(1);
	}

	/* テキストも常に左に寄せる */
	.qd_overview__accessText {
		transform: translateX(-3px);
	}

	/* 右側にアイコン分の余白を確保（重要） */
	.qd_overview__accessBtn {
		padding: 0 52px 0 32px;
	}
	.qd_overview__dateNum {
		font-size: 3rem;
	}
	.qd_overview__dateUnit {
		font-size: 2rem;
	}

	.qd_overviewVisual__inner {
		min-height: 1246px;
	}
	.qd_overviewVisual__title {
		top: 31px;
		left: 50%;
		width: 86px;
		transform: translateX(-50%);
	}
	.qd_overviewVisual__item {
		box-shadow: 14px 18px 24px rgba(0, 0, 0, 0.42);
	}
	.qd_overviewVisual__item--1 {
		top: 702px;
        left: -54px;
        width: 235px;
	}
	.qd_overviewVisual__item--2 {
		top: 926px;
        left: 123px;
        width: 127px;
	}
	.qd_overviewVisual__item--3 {
		top: 493px;
        left: 66px;
        width: 160px;
        right: auto;
	}
	.qd_overviewVisual__item--4 {
		top: 468px;
        right: -45px;
        width: 239px;
	}
	.qd_overviewVisual__item--5 {
		top: 828px;
        right: 20px;
        width: 113px;
	}
	.qd_overviewVisual__item--6 {
		top: 748px;
        left: 186px;
        width: 113px;
	}

	.qd_eventPreview {
		padding: 72px 0 84px;
	}
	.qd_eventPreview .qd_sectionHead {
		margin-bottom: 52px;
	}
	.qd_eventPreview__list {
		gap: 48px;
	}
	.qd_eventPreview__item,
	.qd_eventPreview__item--reverse {
		display: block;
	}
	.qd_eventPreview__item--reverse .qd_eventPreview__media,
	.qd_eventPreview__item--reverse .qd_eventPreview__content {
		order: initial;
	}
	.qd_eventPreview__media {
		margin: 0 -25px;
	}
	.qd_eventPreview__content {
		padding: 0;
	}
	.qd_eventPreview__head {
		margin-top: 0;
		margin-bottom: 10px;
		padding: 40px 0 0;
		background-position: center center;
	}
	.qd_eventPreview__labelWrap {
		padding-bottom: 5px;
	}
	.qd_eventPreview__label {
		font-size: 1.8rem;
	}
	.qd_eventPreview__labelEn {
		margin-top: 4px;
		font-size: 1.2rem;
	}
	.qd_eventPreview__num {
		font-size: 5.6rem;
		line-height: 0.88;
	}
	.qd_eventPreview__titleWrap {
		margin-bottom: 16px;
	}
	.qd_eventPreview__title {
		gap: 6px;
		font-size: clamp(1.6rem, 4.2vw, 2.8rem);
		line-height: 1.22;
	}
	.qd_eventPreview__title span {
		padding: 2px 8px 3px;
		white-space: nowrap;
	}
	.qd_eventPreview__text {
		font-size: 1.4rem;
		line-height: 2;
	}
	.qd_eventPreview__action {
		margin-top: 24px;
	}
	.qd_eventPreview__btn {
		width: 100%;
		max-width: 180px;
		height: 44px;
		padding: 0 18px 0 18px;
	}
	.qd_eventPreview__btnText {
		font-size: 1.4rem;
	}
	.qd_eventPreview__btnIcon {
		position: absolute;
		top: 50%;
		right: 5px;
		display: block;
		width: 28px;
		height: 28px;
		border-radius: 50%;
		background: #000;
		transform: translateY(-50%);
	}
	.qd_eventPreview__btnIcon::before {
		content: "";
		position: absolute;
		top: 9px;
		left: 50%;
		width: 2px;
		height: 9px;
		background: #efff00;
		transform: translateX(-50%);
	}
	.qd_eventPreview__btnIcon::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 9px;
		width: 7px;
		height: 7px;
		border-right: 2px solid #efff00;
		border-bottom: 2px solid #efff00;
		transform: translateX(-50%) rotate(45deg);
	}
	
	.qd_match {
		padding: 72px 0 78px;
	}
	.qd_match .qd_sectionHead {
		margin-bottom: 42px;
	}
	.qd_match__slider {
		overflow: visible;
	}
	.qd_match__list {
		display: flex;
		gap: 0;
		align-items: stretch;
	}
	.qd_matchCard,
	.qd_matchComing {
		display: flex;
		flex-direction: column;
		width: 380px;
		max-width: calc(100vw - 39px);
		border-radius: 20px;
		min-height: 500px;
		transform: translateY(12px);
		transition-duration: 0.5s;
	}
	.qd_matchCard {
		height: 100%;
	}
	.qd_matchCard__body {
		display: flex;
		flex-direction: column;
		flex: 1;
		padding: 0 0 28px;
	}
	.qd_matchCard__title {
		font-size: 1.4rem;
	}
	.qd_matchCard__label {
		font-size: 1.4rem;
	}
	.qd_matchCard__name {
		font-size: 1.6rem;
	}
	.qd_matchCard__unit {
		font-size: 1rem;
	}

	.qd_matchCard__action {
		margin-top: auto;
		padding: 0 16px;
	}
	.qd_matchCard__btn {
		max-width: 245px;
	}
	.qd_matchCard__btnText {
		font-size: 1.4rem;
	}
	.qd_matchCard__btnIcon {
		right: 12px;
		width: 40px;
		height: 40px;
	}
	.qd_matchCard__btnIcon::before {
		width: 9px;
		height: 9px;
	}
	.qd_matchComing {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.qd_matchComing span {
		font-size: 1.4rem;
	}
	.qd_match__pagination {
		display: flex;
		justify-content: flex-start;
		gap: 10px;
		margin-top: 22px;
		padding-left: 8px;
	}
	.qd_match__pagination .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		margin: 0 !important;
		background: rgba(255, 255, 255, 0.45);
		opacity: 1;
	}
	.qd_match__pagination .swiper-pagination-bullet-active {
		background: #fff;
	}

	.qd_news {
		padding: 76px 0 80px;
	}
	.qd_news__bg {
		background-position: center top;
		background-size: cover;
	}
	.qd_news__head {
		margin-bottom: 46px;
	}
	.qd_news__list {
		grid-template-columns: 1fr;
		gap: 25px;
		padding: 0;
	}
	.qd_newsCard__thumb {
		aspect-ratio: 327 / 218;
		border-radius: 4px;
	}
	.qd_newsCard__meta {
		gap: 0 18px;
		margin-top: 12px;
	}
	.qd_newsCard__date,
	.qd_newsCard__cat {
		font-size: 1.4rem;
	}
	.qd_newsCard__title {
		margin-top: 10px;
		font-size: 1.5rem;
		line-height: 1.75;
	}
	.qd_news__action {
		margin-top: 48px;
		padding: 0 24px;
	}
	.qd_news__more {
		width: 100%;
		max-width: 315px;
		height: 62px;
		padding: 0 56px;
	}
	.qd_news__moreText {
		font-size: 2rem;
	}
	.qd_news__moreIcon {
		right: 24px;
		width: 16px;
	}

	.qd_movie {
		padding: 74px 0 100px;
	}
	.qd_movie__head {
		margin-bottom: 52px;
	}
	.qd_movie__video {
		max-width: none;
	}
	.qd_movie__videoFrame {
		aspect-ratio: 375 / 211;
		border-radius: 0;
	}
	.qd_movie__inner{
		padding: 0;
	}


	.qd_ticket {
		padding: 46px 0 15px;
	}
	.qd_ticket .qd_inner.qd_inner_1400 {
		padding: 0;
	}
	.qd_ticket__box {
		padding: 34px 20px 34px;
		border-radius: 14px;
		margin: 0;
	}
	.qd_ticket__grid {
		grid-template-columns: 1fr;
		row-gap: 42px;
	}
	.qd_ticket__left,
	.qd_ticket__right {
		padding-top: 0;
	}
	.qd_ticket__head .qd_sectionHead__en {
		margin-bottom: 14px;
		font-size: 10rem;
		line-height: 0.9;
	}
	.qd_ticket__head .qd_sectionHead__jp {
		font-size: 2rem;
	}
	.qd_ticketBuy {
		margin-top: 58px;
		padding-top: 32px;
	}
	.qd_ticketBuy__head {
		gap: 16px;
	}
	.qd_ticketBuy__icon {
		width: 46px;
	}
	.qd_ticketBuy__title {
		font-size: 1.8rem;
	}
	.qd_ticketBuy__status {
		margin-top: 5px;
		font-size: 1.4rem;
	}
	.qd_ticketBuy__btns {
		margin-top: 28px;
	}
	.qd_ticketBuy__btn {
		min-height: 70px;
		margin-top: 12px;
	}
	.qd_ticketBuy__btnText {
		font-size: 1.7rem;
	}
	.qd_ticketBuy__btnText strong {
		font-size: 2rem;
	}
	.qd_ticketBuy__btnIcon {
		right: 24px;
		width: 16px;
	}
	.qd_ticketBuy__btnIcon img {
		width: 10px;
		height: 10px;
	}
	.qd_ticketTable__head {
		padding-top: 28px;
		border-top-width: 2px;
	}
	.qd_ticketTable__title {
		padding-left: 16px;
		font-size: 1.8rem;
	}
	.qd_ticketTable__title::before {
		width: 4px;
		height: 34px;
	}
	.qd_ticketTable {
		margin-top: 24px;
	}



	.qd_ticketTable__scroll {
		overflow: hidden;
		border-radius: 8px;
	}
	.qd_ticketTable__table {
		width: 100%;
		border-collapse: separate;
		border-spacing: 0;
		table-layout: fixed;
	}
	.qd_ticketTable__table thead {
		display: none;
	}
	.qd_ticketTable__table tbody {
		display: block;
		width: 100%;
	}
	.qd_ticketTable__table thead tr,
	.qd_ticketTable__table tbody tr {
		display: table;
		width: 100%;
		table-layout: fixed;
	}
	.qd_ticketTable__table tbody {
		max-height: 552px;
		overflow-y: auto;
		scrollbar-width: auto;
		scrollbar-color: rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.08);
	}
	.qd_ticketTable__table tbody::-webkit-scrollbar {
		width: 10px;
	}
	.qd_ticketTable__table tbody::-webkit-scrollbar-track {
		background: rgba(0, 0, 0, 0.12);
		border-radius: 999px;
	}
	.qd_ticketTable__table tbody::-webkit-scrollbar-thumb {
		background: rgba(0, 0, 0, 0.7);
		border-radius: 999px;
	}
	.qd_ticketTable__table tbody td:nth-child(1) {
		width: 70%;
	}
	.qd_ticketTable__table tbody td:nth-child(2) {
		width: 18%;
	}

	.qd_ticketTable__table tbody td:nth-child(3) {
		width: 17%;
	}
	.qd_ticketTable__table tbody td:nth-child(4) {
		display: block;
		width: 100%;
	}
	.qd_ticketTable__seat {
		padding-right: 94px;
		font-size: 1.6rem;
		line-height: 1.35;
	}
	.qd_ticketTable__sub {
		font-size: 1.2rem;
		line-height: 1.42;
	}
	.qd_ticketTable__price {
		font-size: 1.6rem;
		text-align: left;
	}
	.qd_ticketStatus {
		min-width: 86px;
		min-height: 34px;
		padding: 5px 12px;
		font-size: 1.1rem;
	}
	.qd_ticketStore {
		gap: 8px;
	}
	.qd_ticketStore a {
		min-width: 0;
		height: 32px;
		padding: 0 12px;
		font-size: 1.3rem;
	}
	.qd_ticketStore a img {
		width: 9px;
		height: 9px;
	}
	.qd_ticketTable__note {
		margin-top: 12px;
		font-size: 1.2rem;
	}




	
	.qd_ticket__left {
		position: static;
	}
	.qd_ticketSchedule {
		margin-top: 52px;
	}
	.qd_ticketSchedule__head {
		padding-top: 24px;
	}
	.qd_ticketSchedule__title {
		padding-left: 16px;
		font-size: 1.8rem;
	}
	.qd_ticketSchedule__title::before {
		width: 4px;
		height: 34px;
	}
	.qd_ticketSchedule__lead {
		margin-top: 34px;
		font-size: 1.6rem;
		line-height: 1.7;
	}
	.qd_ticketSchedule__tableWrap {
		margin-top: 14px;
	}
	.qd_ticketSchedule__table thead {
		display: none;
	}
	.qd_ticketSchedule__table,
	.qd_ticketSchedule__table tbody,
	.qd_ticketSchedule__table tr,
	.qd_ticketSchedule__table td {
		display: block;
		width: 100%;
	}
	.qd_ticketSchedule__table tbody tr {
		padding: 15px 22px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
	.qd_ticketSchedule__table tbody td {
		padding: 0;
		border: 0;
	}
	.qd_ticketSchedule__table tbody td:nth-child(2),
	.qd_ticketSchedule__table tbody td:nth-child(3) {
		margin-top: 8px;
	}
	.qd_ticketSchedule__table tbody td:nth-child(4) {
		margin-top: 12px;
	}
	.qd_ticketSchedule__type {
		font-size: 1.8rem;
		line-height: 1.45;
	}
	.qd_ticketSchedule__sub {
		font-size: 1.2rem;
		line-height: 1.45;
	}
	.qd_ticketSchedule__dateWrap {
		display: flex;
		align-items: center;
	}
	.qd_ticketSchedule__date,
	.qd_ticketSchedule__time {
		display: inline;
		font-size: 1.5rem;
		line-height: 1.5;
		text-align: left;
	}
	.qd_ticketSchedule__time {
		margin-top: 0;
		margin-left: 6px;
	}
	.qd_ticketSchedule__table tbody td:nth-child(2)::before,
	.qd_ticketSchedule__table tbody td:nth-child(3)::before {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: 32px;
		padding: 0 10px;
		margin-right: 10px;
		border-radius: 4px;
		background: rgba(0, 0, 0, 0.6);
		font-size: 1.2rem;
		font-weight: 700;
		line-height: 1;
		color: #fff;
		vertical-align: middle;
	}
	.qd_ticketSchedule__table tbody td:nth-child(2)::before {
		content: "発売開始日時";
	}
	.qd_ticketSchedule__table tbody td:nth-child(3)::before {
		content: "発売終了日時";
	}
	.qd_ticketSchedule__store {
		justify-content: flex-start;
		gap: 10px;
	}
	.qd_ticketSchedule__store a {
		min-width: 0;
		height: 42px;
		padding: 0 16px;
		font-size: 1.3rem;
	}
	.qd_ticketSchedule__store a img {
		width: 10px;
		height: 10px;
	}

/* 1. テーブル構造を解除してカード型にする */
    .qd_ticketTable__table tbody tr {
        position: relative; /* 右上のステータス配置の基準 */
        display: block;
        width: 100%;
        padding: 15px 20px; /* カード内の余白 */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    /* 2. 各セルを縦積みにし、既存の幅指定(29%等)を無効化 */
    .qd_ticketTable__table tbody td,
    .qd_ticketTable__table tbody td:nth-child(1),
    .qd_ticketTable__table tbody td:nth-child(2),
    .qd_ticketTable__table tbody td:nth-child(3),
    .qd_ticketTable__table tbody td:nth-child(4) {
        display: block;
        width: 100% !important;
        padding: 0 !important;
		border: none;
    }
 .qd_ticketTable__table tbody td:nth-child(4) {
       margin-top: 15px;
    }
    /* 3. 各要素の配置調整 */
    .qd_ticketTable__seat {
        padding-right: 90px; /* 右上のラベルとの衝突防止 */
        margin-bottom: 5px;
    }

    .qd_ticketTable__price {
        text-align: left; /* 価格を左寄せに */
        margin-top: 10px;
        margin-bottom: 15px;
    }

    /* 4. 【重要】「残りわずか」等を右上に絶対配置 */
    .qd_ticketStatus {
        position: absolute;
        top: 25px;
        right: 20px;
        margin: 0;

    }

    /* 5. 販売店ボタンの並び（横並び・折り返し） */
    .qd_ticketStore {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 0;
    }

    .qd_ticketStore a {
        flex: 0 1 auto; /* 内容幅に合わせる */
        display: inline-flex;
        padding: 8px 18px;
        border-radius: 999px;
    }
	.qd_ticket__noteLink {
		margin: 30px 0;
		position: static;
	}


	.qd_ticketModal__dialog {
		width: calc(100% - 30px); /* 左右15px */
		max-width: none;
	}
	.qd_ticketModal__inner {
		padding: 40px 28px;
		border-radius: 16px;
	}
	.qd_ticketModal__close {
		top: -20px;
		right: 15px;
		width: 40px;
		height: 40px;
	}
	.qd_ticketModal__closeLine {
		top: 19px;
		width: 18px;
	}
	.qd_ticketModal__icon {
		width: 62px;
		margin-bottom: 22px;
	}
	.qd_ticketModal__title {
		padding-bottom: 22px;
		font-size: 2rem;
	}
	.qd_ticketModal__status {
		margin-top: 20px;
		font-size: 1.4rem;
	}
	.qd_ticketModal__btns {
		margin-top: 28px;
	}
	.qd_ticketModal__btns .qd_ticketBuy__btn {
		min-height: 74px;
		margin-top: 14px;
	}
	.qd_ticketModal__bottom {
		margin-top: 34px;
	}
	.qd_ticketModal__link {
		font-size: 1.5rem;
	}
	.qd_ticketModal__linkIcon {
		width: 40px;
		height: 40px;
	}

	.qd_ppv {
		padding: 15px 0 80px;
	}
	.qd_ppv .qd_inner.qd_inner_1400 {
		padding: 0;
	}
	.qd_ppv__box {
		padding: 46px 0;
		border-radius: 14px;
		background-position: center center;
		margin: 0;
	}
	.qd_ppv__box::before {
		background: rgba(255, 185, 255, 0.34);
	}
	.qd_ppv__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.qd_ppv__left {
		padding: 0 20px 34px;
	}
	.qd_ppv__right {
		padding: 40px 20px 0;
	}
	.qd_ppv__right::before {
		top: 0;
		left: 50%;
		width: calc(100% - 40px);
		height: 5px;
		transform: translateX(-50%);
		background-image: radial-gradient(circle, #000 1.6px, transparent 1.7px);
		background-size: 18px 5px;
		background-repeat: repeat-x;
		background-position: left center;
	}
	.qd_ppv__en {
		font-size: 10rem;
		line-height: 0.9;
	}
	.qd_ppv__jp {
		margin-top: 14px;
		font-size: 1.8rem;
	}
	.qd_ppv__lead {
		font-size: 2rem;
		line-height: 1.35;
		margin: 0 0 10px;
	}
	.qd_ppv__title {
		margin-top: 0;
		font-size: 5rem;
		line-height: 1.08;
	}
	.qd_ppv__action {
		margin-top: 30px;
		width: 100%;
		max-width: none;
		padding: 0 20px;
	}
	.qd_ppv__btn {
		min-height: 74px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.qd_ppv__btn .qd_ticketBuy__btnText {
		font-size: 2rem;
	}
	.qd_ppv__btn .qd_ticketBuy__btnIcon {
		right: 24px;
	}


	.qd_goods {
		padding: 60px 0 100px;
	}
	.qd_goods__card {
		border-width: 6px;
		border-radius: 22px;
	}
	.qd_goods__inner {
		display: block;
		min-height: 330px;
		padding: 22px 22px ;
	}
	.qd_goods__head {
		position: static;
	}
	.qd_goods__en {
		font-size: 4rem;
		line-height: 0.9;
	}
	.qd_goods__jp {
		margin-top: 10px;
		font-size: 1.2rem;
		text-align: left;
	}
	.qd_goods__body {
		margin-top: 54px;
	}
	.qd_goods__logo {
		width: 82%;
		max-width: none;
	}
	.qd_goods__title {
		font-size: 1.5rem;
		line-height: 1.25;
	}
	.qd_goods__text {
		margin-top: 10px;
		font-size: 1.5rem;
		line-height: 1.45;
	}
	.qd_goods__icon {
		right: 20px;
		bottom: 22px;
	width: 45px;
	height: 45px;
	}
	.qd_goods__icon img {
	width: 14px;
	height: 14px;
	}

	.qd_goods__coming {
		font-size: 2.4rem;
		line-height: 1.2;
	}


	.qd_access__photo img {
		height: 210px;
		object-fit: cover;
		object-position: center center;
	}
	.qd_access__body {
		padding: 90px 0;
	}
	.qd_access__head {
		margin-bottom: 54px;
	}
	.qd_access .qd_sectionHead__en {
		font-size: 7rem;
		margin-bottom: 10px;
	}
	.qd_access .qd_sectionHead__jp {
		margin-top: 6px;
		font-size: 1.8rem;
		letter-spacing: 0.08em;
	}
	.qd_access__grid {
		display: block;
		padding: 0;
	}
	.qd_access__mapCol,
	.qd_access__infoCol {
		max-width: none;
	}
	.qd_access__map iframe {
		height: 250px;
	}
	.qd_access__infoCol {
		padding: 0 20px;
	}
	.qd_access__venue {
		display: block;
		margin-top: 36px;
		padding: 30px 0 28px;
		text-align: center;
	}
	.qd_access__venueName {
		font-size: 2.6rem;
		line-height: 1.35;
		margin: 0 0 5px;
	}
	.qd_access__address {
		margin-top: 8px;
		font-size: 1.3rem;
		line-height: 1.7;
	}
	.qd_access__venueBtn {
		margin-top: 24px;
	}
	.qd_accessMapBtn {
		min-width: 174px;
		height: 48px;
		padding: 0 56px 0 30px;
	}
	.qd_accessMapBtn__text {
		font-size: 1.6rem;
	}
	.qd_accessMapBtn__icon {
		right: 7px;
		width: 34px;
		height: 34px;
	}
	.qd_accessMapBtn__icon img {
		width: 13px;
		height: 13px;
	}
	.qd_access__station {
		padding-top: 28px;
	}
	.qd_access__stationTitle {
		padding-left: 14px;
		font-size: 1.8rem;
	}
	.qd_access__stationTitle::before {
		width: 4px;
	}
	.qd_access__list {
		margin-top: 26px;
		padding-left: 1.15em;
	}
	.qd_access__list li {
		margin-top: 18px;
		font-size: 1.5rem;
		line-height: 1.8;
	}
	.qd_access__note {
		margin-top: 24px;
		font-size: 1.4rem;
		line-height: 1.75;
	}

	.qd_faq {
		padding: 96px 0 84px;
	}
	.qd_faq .qd_inner {
		padding-left: 27px;
		padding-right: 27px;
	}
	.qd_faq__head {
		margin-bottom: 56px;
	}
	.qd_faqItem {
		margin-top: 18px;
		border-radius: 14px;
	}
	.qd_faqItem__question {
		align-items: flex-start;
		min-height: 0;
		padding: 23px 55px 23px 22px;
		border-radius: 14px;
	}
	.qd_faqItem__q {
		font-size: 2.4rem;
		line-height: 1.1;
	}
	.qd_faqItem__questionText {
		font-size: 1.6rem;
		line-height: 1.7;
	}
	.qd_faqItem__icon {
		right: 18px;
		width: 28px;
		height: 28px;
		border-width: 2px;
	}
	.qd_faqItem__icon::before {
		width: 12px;
	}
	.qd_faqItem__icon::after {
		height: 12px;
	}
	.qd_faqItem__answerInner {
		gap: 14px;
		padding: 24px 22px 26px;
	}
	.qd_faqItem__a {
		font-size: 2.4rem;
		line-height: 1.1;
	}
	.qd_faqItem__answerBody p {
		font-size: 1.4rem;
		line-height: 2;
	}

	.qd_footer__inner {
		min-height: 380px;
		padding: 41px 28px;
	}
	.qd_footer__sns {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}
		.qd_footer__snsLink {
		flex: 1 1 0;
		text-align: center;
	}
	.qd_footer__snsIcon {
		height: 30px;
	}
	.qd_footer__snsIcon img {
		height: 30px;
	}
	.qd_footer__snsSub {
		margin-top: 2px;
		font-size: 0.9rem;
	}
	.qd_footer__center {
		position: static;
		top: auto;
		left: auto;
		transform: none;
		max-width: none;
		margin-top: 70px;
	}
	.qd_footer__logo {
		width: 171px;
	}
	.qd_footer__copy {
		margin-top: 34px;
		font-size: 1.2rem;
		line-height: 1.8;
	}




	.qd_footer__pagetop {
		right: 28px;
		bottom: 29px;
		width: 50px;
		height: 50px;
	}


	.qd_bgVideo__video--pc {
		display: none;
	}
	.qd_bgVideo__video--sp {
		display: block;
	}







}