@charset "utf-8";

/* ============================================================
   WORKWORK★フェス2026 ティザーページ専用スタイル
   ※このページは本編LP(index.html)のstyle.css/parts.cssには依存していません。
     配色・フォントのみ theme.css の変数を再利用しています。
     8/1のリリース後にindex.htmlへ差し替える運用を想定した、独立ページです。
============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
	font-family: var(--base-font);
	color: var(--bg-inverse-color);
	background: var(--bg-color);
}

.teaser-hero {
	position: relative;
	min-height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.teaser-hero video.bgVideo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* 動画の上に薄い白グラデーション(明るい系動画なので、白系で文字を読みやすくする) */
.teaser-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.60) 100%);
	z-index: 1;
}

.teaser-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 6vh 5vw;
	max-width: 720px;
}

.teaser-logo {
	width: min(420px, 80vw);
	height: auto;
	filter: drop-shadow(0 4px 14px rgba(0,0,0,0.20));
	margin-bottom: 1.5rem;
}

.teaser-dates {
	font-family: var(--accent-font), var(--base-font);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--primary-color);
	margin: 0 0 1.2rem;
}

.teaser-venue p {
	margin: 0.2rem 0;
	font-size: 1rem;
	color: var(--bg-inverse-color);
}

.teaser-badge {
	margin-top: 2.2rem;
	padding: 1.1rem 1.6rem;
	background: rgba(255,255,255,0.88);
	border: 1px solid var(--bg-border-color);
	border-radius: 12px;
	display: inline-block;
}

.teaser-badge span {
	display: inline-block;
	font-family: var(--accent-font), var(--base-font);
	letter-spacing: 0.15em;
	background: var(--accent-color);
	color: var(--accent-inverse-color);
	padding: 0.3rem 1rem;
	border-radius: 999px;
	font-size: 0.85rem;
	margin-bottom: 0.6rem;
}

.teaser-badge p {
	margin: 0;
	font-size: 0.95rem;
}

.teaser-footer {
	position: absolute;
	bottom: 0.8rem;
	left: 0;
	right: 0;
	z-index: 2;
	text-align: center;
}

.teaser-organizer {
	margin: 0 0 0.3rem;
	font-size: 0.75rem;
	color: var(--bg-inverse-color);
}

.teaser-credit {
	margin: 0;
	font-size: 0.65rem;
	opacity: 0.7;
}
.teaser-credit a {
	color: inherit;
}

@media (max-width: 500px) {
	.teaser-dates { font-size: 1.25rem; }
	.teaser-badge { padding: 0.9rem 1.2rem; }
}
