/* ================================================
	 WFAIA 2026 LP	—	Teaser version
	 Palette : #050208 / gradient(#a24bff → #ff3fa8 → #7cf0ff)
	 ================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
	background: #050208;
	color: #ffffff;
	font-family: 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.55;
	scroll-behavior: smooth;
}
.page { max-width: 1200px; margin: 0 auto; background: #050208; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- NAV ---------- */
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 60px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(5,2,8,0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.brand {
	font-weight: 800;
	letter-spacing: 3px;
	font-size: 20px;
	background: linear-gradient(90deg,#c56bff 0%,#ff5cbf 60%,#7cf0ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.nav ul {
	display: flex; gap: 28px; list-style: none;
	font-size: 12px; letter-spacing: 2px; color: #cfc9d6;
}
.nav ul a:hover { color: #ff5cbf; }
.nav .cta-mini {
	padding: 10px 20px;
	border-radius: 999px;
	background: linear-gradient(90deg,#a24bff,#ff3fa8);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	transition: transform .2s;
}
.nav .cta-mini:hover { transform: translateY(-2px); }

/* ---------- HERO ---------- */
.hero {
	position: relative;
	padding: 90px 60px 110px;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 20% 30%, rgba(150,60,255,0.35), transparent 60%),
		radial-gradient(ellipse at 85% 60%, rgba(255,60,170,0.28), transparent 55%),
		radial-gradient(ellipse at 50% 100%, rgba(70,180,255,0.15), transparent 60%),
		#05010c;
}
.hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 40px),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 40px);
	pointer-events: none;
}
.hero-tag {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: 3px;
	color: #f2e6ff;
	margin-bottom: 28px;
	backdrop-filter: blur(6px);
	background: rgba(255,255,255,0.04);
}
.hero-tag .dot {
	display: inline-block;
	width: 8px; height: 8px; border-radius: 50%;
	background: #ff3fa8;
	box-shadow: 0 0 10px #ff3fa8;
	margin-right: 8px; vertical-align: middle;
	animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; box-shadow: 0 0 10px #ff3fa8; }
	50% { opacity: .55; box-shadow: 0 0 20px #ff3fa8; }
}
.hero h1 {
	font-size: 84px;
	line-height: 0.95;
	font-weight: 900;
	letter-spacing: -1px;
	margin-bottom: 14px;
}
.hero h1 .grad {
	background: linear-gradient(90deg,#d281ff 0%,#ff5cbf 45%,#7cf0ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero h2 {
	font-size: 34px;
	font-weight: 700;
	margin: 8px 0 30px;
	letter-spacing: 1px;
}
.hero-lead {
	max-width: 720px;
	color: #d8d0e6;
	font-size: 15px;
	margin-bottom: 40px;
}
.hero-meta {
	display: flex;
	gap: 40px;
	margin-bottom: 44px;
	flex-wrap: wrap;
}
.meta-item { border-left: 2px solid #b558ff; padding: 4px 0 4px 16px; }
.meta-item .label {
	font-size: 10px; letter-spacing: 3px;
	color: #b0a3c9; margin-bottom: 6px;
}
.meta-item .value { font-size: 22px; font-weight: 700; color: #fff; }
.meta-item .value small {
	font-size: 12px; color: #cfc4e0; font-weight: 400; margin-left: 6px;
}
.hero-cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn-primary {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 18px 34px;
	background: linear-gradient(90deg,#a24bff 0%,#ff3fa8 100%);
	border-radius: 999px;
	font-weight: 800;
	letter-spacing: 2px;
	font-size: 15px;
	box-shadow: 0 12px 40px rgba(180,60,255,0.45);
	transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 50px rgba(180,60,255,0.6);
}
.btn-primary .arrow { font-size: 18px; }
.btn-ghost {
	padding: 16px 28px;
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 999px;
	font-size: 13px;
	letter-spacing: 2px;
	color: #eee;
	transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: #ff5cbf; color: #ff5cbf; }
.hero-note {
	margin-top: 20px;
	font-size: 12px;
	color: #a99ec2;
	letter-spacing: 1px;
}

/* ---------- SECTION COMMON ---------- */
section { padding: 90px 60px; position: relative; }
.sec-num {
	font-size: 12px; letter-spacing: 6px;
	color: #b558ff; margin-bottom: 12px; font-weight: 700;
}
.sec-title {
	font-size: 44px; font-weight: 800;
	letter-spacing: -0.5px; margin-bottom: 12px;
}
.sec-sub { color: #bfb3d6; font-size: 14px; margin-bottom: 46px; }

/* ---------- ABOUT ---------- */
.about { background: #08040f; }
.about-body {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 56px;
	align-items: center;
}
.about p {
	color: #d5ccea;
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 18px;
}
.about .highlight { color: #ffb1e1; font-weight: 700; }
.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 30px;
}
.stat {
	padding: 22px;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(180,80,255,0.14), rgba(255,60,170,0.06));
	border: 1px solid rgba(180,80,255,0.25);
}
.stat .n {
	font-size: 32px; font-weight: 900;
	background: linear-gradient(90deg,#d281ff,#ff5cbf);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.stat .l { font-size: 11px; letter-spacing: 2px; color: #cfc4e0; margin-top: 6px; }
.about-visual {
	height: 380px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.08);
}


/* ---------- TICKET ---------- */
.ticket {
	background:
		radial-gradient(ellipse at 30% 20%, rgba(255,60,170,0.25), transparent 55%),
		radial-gradient(ellipse at 80% 80%, rgba(120,80,255,0.25), transparent 55%),
		#0a041a;
	border-top: 1px solid rgba(255,255,255,0.06);
	border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticket-card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	padding: 40px;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
	border: 1px solid rgba(200,120,255,0.35);
	align-items: center;
}
.ticket h3 { font-size: 34px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.ticket h3 .grad {
	background: linear-gradient(90deg,#d281ff,#ff5cbf);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.ticket p { color: #d0c6e5; font-size: 14px; margin-bottom: 20px; }
.ticket-list { list-style: none; margin-bottom: 24px; }
.ticket-list li { padding: 6px 0; font-size: 13px; color: #ddd3f0; }
.ticket-list li::before { content: "▸"; color: #ff5cbf; margin-right: 8px; }
.ticket-cta {
	display: flex; flex-direction: column; align-items: center;
	gap: 14px;
	padding: 30px;
	border-radius: 18px;
	background: rgba(0,0,0,0.35);
	border: 1px dashed rgba(255,255,255,0.2);
}
.ticket-cta .label { font-size: 11px; letter-spacing: 3px; color: #b0a3c9; }
.ticket-cta .peatix-btn {
	padding: 18px 40px;
	border-radius: 999px;
	background: linear-gradient(90deg,#ff3fa8,#a24bff);
	font-weight: 800; letter-spacing: 2px; font-size: 15px;
	box-shadow: 0 10px 30px rgba(255,60,170,0.4);
	transition: transform .2s;
}
.ticket-cta .peatix-btn:hover { transform: translateY(-3px); }
.ticket-cta small { color: #a99ec2; font-size: 11px; }

/* ---------- SCHEDULE ---------- */
.schedule { background: #060210; }
.timeline {
	position: relative;
	padding-left: 30px;
	border-left: 2px solid rgba(180,80,255,0.4);
}
.tl-item { margin-bottom: 32px; position: relative; }
.tl-item::before {
	content: "";
	position: absolute;
	left: -39px; top: 6px;
	width: 14px; height: 14px; border-radius: 50%;
	background: linear-gradient(135deg,#d281ff,#ff5cbf);
	box-shadow: 0 0 12px rgba(255,80,180,0.7);
}
.tl-item.done::before { background: #4a3a5c; box-shadow: none; }
.tl-date { font-size: 12px; letter-spacing: 2px; color: #b0a3c9; margin-bottom: 4px; }
.tl-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.tl-title .badge {
	display: inline-block;
	font-size: 10px; letter-spacing: 2px;
	padding: 3px 8px; border-radius: 4px;
	background: rgba(255,60,170,0.2); color: #ff9dd6;
	margin-left: 10px; vertical-align: middle;
	border: 1px solid rgba(255,60,170,0.4);
}
.tl-title .badge.closed {
	background: rgba(255,255,255,0.05);
	color: #7d708e; border-color: #3a2f4a;
}
.tl-title .badge.hot {
	background: linear-gradient(90deg,#ff3fa8,#a24bff);
	color: white; border: none;
}
.tl-desc { color: #b8adcf; font-size: 13px; }

/* ---------- PROGRAM ---------- */
.program { background: #08040f; }
.prog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.prog-card {
	padding: 30px;
	border-radius: 16px;
	background: linear-gradient(160deg, rgba(180,80,255,0.10), rgba(255,60,170,0.03));
	border: 1px solid rgba(180,80,255,0.2);
	transition: transform .2s, border-color .2s;
}
.prog-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255,60,170,0.5);
}
.prog-time {
	font-size: 12px; letter-spacing: 2px;
	color: #ff9dd6; margin-bottom: 10px; font-weight: 700;
}
.prog-card h4 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.prog-card p { color: #c4b8dc; font-size: 13px; line-height: 1.7; }
.prog-card .tag {
	display: inline-block; font-size: 10px; letter-spacing: 2px;
	padding: 3px 10px; border-radius: 4px;
	background: rgba(255,255,255,0.06); color: #cfc4e0;
	margin-right: 6px; margin-top: 12px;
}


	/* ---------- DETAILED PROGRAM SCHEDULE ---------- */
	.timetable-ttl { margin: 40px 0 -30px !important; }
	.program .program-schedule {
	margin: 46px 0;
	border-top: 1px solid rgba(180, 80, 255, 0.35);
	border-bottom: 1px solid rgba(180, 80, 255, 0.35);
	background: rgba(255, 255, 255, 0.025);
	border-radius: 14px;
	overflow: hidden;
	}

	.program .program-schedule-head,
	.program .program-row {
	display: grid;
	grid-template-columns: 110px minmax(220px, 1fr) minmax(240px, 1.4fr);
	gap: 20px;
	align-items: center;
	}

	.program .program-schedule-head {
	padding: 14px 22px;
	color: #b558ff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	background: rgba(180, 80, 255, 0.08);
	}

	.program .program-row {
	padding: 18px 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.ps-time {
	color: #ff9dd6;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: 1px;
	}

	.ps-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	}

	.ps-detail {
	color: #c4b8dc;
	font-size: 13px;
	line-height: 1.6;
	}

	.program .program-row-highlight {
		background: linear-gradient(
			90deg,
			rgba(255, 63, 168, 0.13),
			rgba(162, 75, 255, 0.08)
		);
	}

	.program .program-row-highlight .ps-title {
	color: #ffb1e1;
	}

	.program .program-row-afterparty {
	background: rgba(124, 240, 255, 0.06);
	}

	@media (max-width: 768px) {
		.program .program-schedule-head {
			display: none;
		}

		.program .program-row {
			grid-template-columns: 72px 1fr;
			gap: 6px 16px;
			padding: 16px 18px;
		}

		.ps-time {
			grid-row: span 2;
			font-size: 17px;
		}

		.ps-title {
			font-size: 15px;
		}

		.ps-detail {
			font-size: 12px;
		}
	}

/* ---------- JUDGES ---------- */
.judges { background: #060210; }
.judges-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
.judge {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 28px;
	padding: 24px;
	border-radius: 16px;
	background: linear-gradient(160deg, rgba(180,80,255,0.08), rgba(255,60,170,0.02));
	border: 1px solid rgba(180,80,255,0.2);
	align-items: start;
	transition: border-color .2s, transform .2s;
}
.judge:hover {
	border-color: rgba(255,60,170,0.5);
	transform: translateY(-2px);
}
.judge-photo {
	width: 200px;
	aspect-ratio: 1/1.15;
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(180,80,255,0.4), rgba(255,60,170,0.3)),
		#1a0f2a;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.08);
}
.judge-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.judge-info { padding-top: 4px; }
.judge-name {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 6px;
	background: linear-gradient(90deg,#d281ff,#ff5cbf);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.judge-role {
	font-size: 12px;
	color: #ff9dd6;
	letter-spacing: 1px;
	line-height: 1.4;
	margin-bottom: 14px;
	font-weight: 700;
}
.judge-bio {
	font-size: 13px;
	color: #c4b8dc;
	line-height: 1.8;
}

/* ---------- CATEGORIES (ARCHIVE) ---------- */
.categories { background: #050110; padding-top: 80px; }
.cat-note {
	padding: 14px 20px;
	background: rgba(255,180,60,0.08);
	border: 1px solid rgba(255,180,60,0.3);
	border-radius: 10px;
	color: #ffcf8a;
	font-size: 12px;
	margin-bottom: 30px;
	letter-spacing: 1px;
}
.cat-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}
.cat {
	padding: 22px 18px;
	background: rgba(255,255,255,0.02);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	opacity: 0.75;
}
.cat .num { font-size: 11px; color: #b558ff; letter-spacing: 2px; margin-bottom: 8px; }
.cat h5 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cat p { font-size: 11px; color: #a99ec2; line-height: 1.5; }

/* ---------- SPECIAL AWARD (ElevenLabs) ---------- */
.special-award {
	margin-top: 28px;
	padding: 32px 36px;
	border-radius: 18px;
	background:
		radial-gradient(ellipse at 0% 0%, rgba(255,60,170,0.18), transparent 60%),
		radial-gradient(ellipse at 100% 100%, rgba(120,240,255,0.12), transparent 60%),
		linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.15);
	position: relative;
	overflow: hidden;
}
.special-award::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 18px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(210,129,255,0.6), rgba(255,92,191,0.4), rgba(124,240,255,0.5));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	        mask-composite: exclude;
	pointer-events: none;
}
.sa-head {
	display: flex; align-items: center; gap: 12px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}
.sa-badge {
	display: inline-block;
	font-size: 10px; letter-spacing: 3px; font-weight: 800;
	padding: 5px 12px; border-radius: 999px;
	background: linear-gradient(90deg,#ff3fa8,#a24bff);
	color: #fff;
}
.sa-scope {
	font-size: 11px; letter-spacing: 2px;
	color: #cfc4e0;
	padding: 4px 10px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 999px;
}
.sa-title {
	display: flex; align-items: center; gap: 14px;
	font-size: 26px; font-weight: 800;
	margin-bottom: 12px;
	color: #fff;
	flex-wrap: wrap;
}
.sa-title .sa-logo {
	height: 22px; width: auto;
	filter: brightness(0) invert(1);
}
.sa-desc {
	color: #d5ccea;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 18px;
}
.sa-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.sa-list li {
	padding: 14px 16px;
	border-radius: 10px;
	background: rgba(0,0,0,0.25);
	border: 1px solid rgba(255,255,255,0.08);
	font-size: 13px;
	color: #e3d9f4;
	line-height: 1.6;
}
.sa-list .sa-label {
	display: block;
	font-size: 10px; letter-spacing: 2px;
	color: #ff9dd6;
	font-weight: 700;
	margin-bottom: 6px;
}

/* ---------- SPONSORS ---------- */
.sponsors { background: #08040f; }

/* Tier グルーピング */
.sp-tier { margin-top: 48px; }
.sp-tier:first-of-type { margin-top: 40px; }

.sp-tier.sp-tier-organizer {
	margin-bottom: 100px;
}

.sp-tier-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 18px;
}
.sp-tier-label {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 4px;
	padding: 6px 14px;
	border-radius: 999px;
	white-space: nowrap;
}
.sp-tier-line {
	flex: 1;
	height: 1px;
}

.sp-tier-diamond .sp-tier-label {
	color: #fff;
}
.sp-tier-diamond .sp-tier-line {
	background: linear-gradient(90deg, rgba(124,240,255,0.7), rgba(124,240,255,0));
}

.sp-tier-diamond .note, .sp-tier-support .note { font-size: 12px; margin: 10px 0; text-align: center; }

.sp-tier-support .support-flex { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }

.sp-tier-support .support-flex .sp-grid { flex-wrap: initial; align-items: center; }

@media (max-width: 800px) {
	.sp-tier-support .support-flex .sp-grid { flex-direction: column; }
}

.sp-tier-support .sp-tier-label {
	color: #fff;
	font-size: 20px;
}
.sp-tier-support .sp-tier-line {
	background: linear-gradient(90deg, rgba(246,211,101,0.6), rgba(246,211,101,0));
}
.sp-tier-silver .sp-tier-label {
	color: #0f1418;
	background: linear-gradient(135deg,#f4f7fa,#c9d1d9 50%,#8a97a3);
	box-shadow: 0 0 14px rgba(201,209,217,0.35);
}
.sp-tier-silver .sp-tier-line {
	background: linear-gradient(90deg, rgba(201,209,217,0.5), rgba(201,209,217,0));
}
.sp-tier-organizer .sp-tier-label {
	color: #fff;
}
.sp-tier-organizer .sp-tier-line {
	background: linear-gradient(90deg, rgba(255,63,168,0.55), rgba(255,63,168,0));
}

/* グリッド：ティアごとにサイズを差別化 */
.sp-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.sp-grid-diamond { width: calc( 100% - 20px ); justify-content: center; }
@media (max-width: 800px) {
	.sp-grid-diamond .sp { width: 100%; max-width: 600px; }
}

.sp-grid-support .sp { width: calc(100% / 3 - 10px); max-width: 400px; }
.sp-grid-silver .sp { width: calc(33.333% - 14px); max-width: 340px; min-width: 240px; }
.sp-grid-organizer .sp { width: 100%; max-width: 560px; }

.sp-grid-support .sp-support.aihub img{
	max-width: 34%;
	height: auto;
}

.sp {
	border-radius: 14px;
	background: #ffffff;
	border: 1px solid rgba(255,255,255,0.08);
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
	font-weight: 800;
	letter-spacing: 1px;
	color: #0a0a0a;
	font-size: 18px;
	position: relative;
	overflow: hidden;
}

/* ランク別サイズ */
.sp-diamond { width: 100%; height: 120px; font-size: 24px; border-radius: 18px; }
.sp-support	{ height: 100px; font-size: 20px; }
.sp-support.omni { height: 100px; }
.sp-support.omni img { height: 100px; }
.sp-silver	{ height: 100px; font-size: 16px; }
.sp-organizer { height: 80px; font-size: 28px; border: 1px solid rgba(162,75,255,0.35); box-shadow: 0 0 24px rgba(255,63,168,0.08) inset; }

/* DIAMOND：華やかな装飾（回転グラデ + シマー） */
.sp-diamond::before {
	content: "";
	position: absolute; inset: -2px;
	border-radius: inherit;
	padding: 2px;
	pointer-events: none;
}
.sp-diamond::after {
	content: "";
	position: absolute; inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(124,240,255,0.18), transparent 55%),
				radial-gradient(circle at 80% 80%, rgba(210,129,255,0.18), transparent 55%);
	pointer-events: none;
}
@keyframes sp-diamond-shine {
	0%	 { background-position: 0% 50%; }
	100% { background-position: 300% 50%; }
}

.diamond-flex {
	display: flex; align-items: center; justify-content: center;
	gap: 20px;
}

@media (max-width: 800px) {
	.diamond-flex { flex-direction: column; gap: 12px; }
}

.sp-diamond.axon img{
	max-width: 80%;
	height: auto;
}

/* GOLD：ゴールドグラデ枠 */
.sp-support {
	border-color: rgba(246,211,101,0.35);
	box-shadow: 0 0 24px rgba(246,211,101,0.08) inset;
}
.sp-support::before {
	content: "";
	position: absolute; inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(246,211,101,0.10), transparent 45%);
	pointer-events: none;
}

/* SILVER：控えめなシルバー枠 */
.sp-silver {
	border-color: rgba(201,209,217,0.22);
}

.sp .new {
	position: absolute; top: 10px; left: 10px;
	font-size: 9px; letter-spacing: 2px;
	padding: 2px 6px; border-radius: 4px;
	background: linear-gradient(90deg,#ff3fa8,#a24bff);
	color: white;
	z-index: 2;
}
.sp .tier {
	position: absolute; top: 10px; right: 10px;
	font-size: 9px; letter-spacing: 2px; font-weight: 800;
	padding: 3px 8px; border-radius: 4px;
	z-index: 2;
}
.sp .tier-diamond {
	background: linear-gradient(135deg,#e0f7ff,#b8e6ff 45%,#7cf0ff);
	color: #0a1a2a;
	box-shadow: 0 0 12px rgba(124,240,255,0.55);
}
.sp .tier-gold {
	background: linear-gradient(135deg,#fff2c2,#f6d365 45%,#c9a24a);
	color: #1a1204;
	box-shadow: 0 0 10px rgba(246,211,101,0.45);
}
.sp .tier-silver {
	background: linear-gradient(135deg,#f4f7fa,#c9d1d9 50%,#8a97a3);
	color: #0f1418;
	box-shadow: 0 0 8px rgba(201,209,217,0.35);
}
.sp .prize {
	position: absolute; bottom: 10px; left: 0; right: 0;
	text-align: center;
	font-size: 10px; letter-spacing: 1px; color: #ff9dd6;
	font-weight: 400;
}

/* DIAMOND ロゴサイズ拡大 */
.sp-diamond img { height: 40px; width: auto; position: relative; z-index: 1; }
.sp img { max-width: 60%; }

/* ---------- FAQ ---------- */
.faq { background: #060210; }
.faq-item {
	padding: 22px 26px;
	border-radius: 12px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	margin-bottom: 12px;
}
.faq-q { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.faq-q .qmark { color: #ff5cbf; margin-right: 10px; }
.faq-a { font-size: 13px; color: #b8adcf; padding-left: 22px; }
.faq-a a { text-decoration: underline; }
.faq-a .fix {
	display: inline-block;
	font-size: 9px; letter-spacing: 2px;
	padding: 2px 6px; border-radius: 4px;
	background: rgba(255,60,170,0.2); color: #ff9dd6;
	margin-left: 8px;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
	background:
		radial-gradient(circle at 50% 50%, rgba(255,60,170,0.35), transparent 60%),
		#0a041a;
	text-align: center;
	padding: 100px 60px;
}
.final-cta h2 { font-size: 60px; font-weight: 900; line-height: 1; margin-bottom: 20px; }
.final-cta h2 .grad {
	background: linear-gradient(90deg,#d281ff,#ff5cbf,#7cf0ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.final-cta .date-block {
	display: inline-flex; gap: 30px;
	padding: 20px 40px;
	border-radius: 16px;
	background: rgba(0,0,0,0.4);
	border: 1px solid rgba(255,255,255,0.15);
	margin: 20px 0 34px;
	flex-wrap: wrap;
	justify-content: center;
}
.final-cta .date-block div .l { font-size: 10px; letter-spacing: 3px; color: #b0a3c9; }
.final-cta .date-block div .v { font-size: 22px; font-weight: 800; margin-top: 4px; }

/* ---------- FOOTER ---------- */
.footer {
	background: #030106;
	padding: 40px 60px;
	color: #7d708e;
	font-size: 11px;
	letter-spacing: 1px;
	display: flex; justify-content: space-between;
	border-top: 1px solid rgba(255,255,255,0.05);
	flex-wrap: wrap;
	gap: 12px;
}
.footer .brand { font-size: 14px; letter-spacing: 2px; }

/* ---------- RESPONSIVE (mobile) ---------- */
@media (max-width: 768px) {
	.nav { padding: 16px 20px; }
	.nav ul { display: none; }
	.nav .cta-mini { padding: 8px 16px; font-size: 11px; }

	.hero { padding: 60px 24px 80px; }
	.hero h1 { font-size: 44px; }
	.hero h2 { font-size: 22px; }
	.hero-lead { font-size: 14px; }
	.hero-meta { gap: 20px; }
	.meta-item .value { font-size: 18px; }
	.btn-primary { padding: 14px 24px; font-size: 13px; }
	.btn-ghost	 { padding: 12px 20px; font-size: 12px; }

	section { padding: 60px 24px; }
	.sec-title { font-size: 30px; }

	.about-body		{ grid-template-columns: 1fr; gap: 30px; }
	.about-visual	{ height: 240px; }
	.about-visual::after { font-size: 30px; letter-spacing: 3px; }

	.ticket-card { grid-template-columns: 1fr; padding: 26px; }
	.ticket h3	 { font-size: 24px; }

	.prog-grid { grid-template-columns: 1fr; }

	/* スマホ表示：審査員カードを縦積みに */
	.judges-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.judge {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 20px;
	}
	.judge-photo {
		width: 140px;
		margin: 0 auto;
	}
	.judge-info { text-align: center; }
	.judge-bio { text-align: left; }

	.cat-grid { grid-template-columns: repeat(2, 1fr); }
	.sp-grid	{ gap: 14px; }
	.sp-grid-diamond .sp { width: 100%; }
	.sp-grid-support .sp { width: 100%; max-width: 420px; }
	.sp-grid-silver	 .sp { width: calc(50% - 7px); max-width: none; min-width: 0; }
	.sp-diamond { height: 160px; font-size: 20px; }
	@media (max-width: 480px) {
		.sp-diamond { height: 70px; }
	}
	.sp-diamond img { height: 30px; }
	.sp-support	{ height: 120px; font-size: 18px; }
	@media (max-width: 480px) {
		.sp-support { height: 50px; }
	}
	.sp-tier	{ margin-top: 36px; }
	.sp-tier-label { font-size: 10px; letter-spacing: 3px; padding: 5px 10px; }

	.special-award { padding: 22px 20px; }
	.sa-title { font-size: 20px; }
	.sa-list { grid-template-columns: 1fr; gap: 10px; }

	.final-cta h2 { font-size: 38px; }
	.final-cta .date-block { gap: 16px; padding: 16px 20px; }
	.final-cta .date-block div .v { font-size: 16px; }

	.footer { padding: 24px 20px; flex-direction: column; }
}
