/* ------------------------------------------------------------
  Reset
------------------------------------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	color: #fff;
	background-color: #FFF;
	line-height: 1.6;
	overflow-x: hidden;
}
/* ------------------------------------------------------------
  Fade-in Animation スニペット
------------------------------------------------------------ */
.fadein {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}
.fadein.visible {
	opacity: 1;
	transform: translateY(0);
}
/* ------------------------------------------------------------
  Vibrant Gradient Background　スニペット
------------------------------------------------------------ */
.vivid-gradient {
	background: linear-gradient(120deg, #00ff9d, #fff200, #ff9800);
	background-size: 300% 300%;
	animation: vividMove 8s ease infinite;
	color: #fff;
}
@keyframes vividMove {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
/* ------------------------------------------------------------
  流れるテキスト　スニペット
------------------------------------------------------------ */
/* ===== 修正版：途切れないスクロール ===== */
.ticker {
	position: relative;
	overflow: hidden;
	display: flex; /* ← 追加：横並びで改行しない */
	flex-wrap: nowrap; /* ← 追加：折り返し禁止 */
	background: #FFF;
	border-top: 1px solid #00a56633;
	border-bottom: 1px solid #00a56633;
	color: #1ef327;
	--speed: 60s;
}
.ticker__inner {
	flex: 0 0 auto; /* ← 追加：縮ませず等倍で並べる */
	display: flex; /* ← inline-flex → flex に変更 */
	gap: 32px;
	align-items: center;
	white-space: nowrap;
	padding: 10px 0;
	animation: ticker-scroll var(--speed) linear infinite;
	min-width: 100%;
}
@keyframes ticker-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	} /* ← -50% に変更：2本分を1サイクルに */
}
/* ホバーで停止
.ticker:hover .ticker__inner {
  animation-play-state: paused;
} */
/* 両端のフェードマスク */
.ticker::before, .ticker::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 64px;
	z-index: 2;
	pointer-events: none;
}
.ticker::before {
	left: 0;
	background: linear-gradient(to right, #eafff3 40%, rgba(234, 255, 243, 0));
}
.ticker::after {
	right: 0;
	background: linear-gradient(to left, #eafff3 40%, rgba(234, 255, 243, 0));
}
/* 文字 */
.ticker__item {
	font-weight: 800;
	letter-spacing: .02em;
	font-size: clamp(14px, 2vw, 18px);
	font-family: "kozuka-mincho-pr6n", "Noto Serif JP", serif;
}
.ticker__sep {
	opacity: .6;
}
/* reduced motion 対応 */
@media (prefers-reduced-motion: reduce) {
	.ticker__inner {
		animation: none;
	}
	.ticker {
		overflow-x: auto;
	}
}
/* ------------------------------------------------------------
  Header (light theme)
------------------------------------------------------------ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
/* ------------------------------------------------------------
  Responsive: compact padding for SP
------------------------------------------------------------ */
@media (max-width: 768px) {
	.site-header {
		padding: 0.5rem 1rem !important;
	}
}
/* ------------------------------------------------------------
  Header inner
------------------------------------------------------------ */
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
/* ------------------------------------------------------------
  Logo (PC / SP)
------------------------------------------------------------ */
/* PC・タブレット */
.header__logo img {
	content: url("../images/common/logo_pc.png");
	filter: none;
	height: auto;
	position: relative;
	top: 2px;
}
/* スマホ（768px以下） */
@media (max-width: 768px) {
	.header__logo img {
		content: url("../images/common/logo_sp.png");
		height: 36px;
		width: auto;
	}
}
/* ------------------------------------------------------------
  Navigation
------------------------------------------------------------ */
.header__nav ul {
	display: flex;
	gap: 2rem;
	list-style: none;
}
.header__nav a {
	color: #222;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}
.header__nav a:hover {
	color: #00cc66; /* WCSグリーンのアクセント */
}
/* スクロール時の変化 */
.site-header.scrolled {
	background: rgba(250, 250, 250, 0.98);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
/* ------------------------------------------------------------
  External link icon
------------------------------------------------------------ */
.header__nav a.external {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	position: relative;
}
.icon-external {
	width: 14px;
	height: 14px;
	opacity: 0.8;
	vertical-align: middle;
	transition: opacity 0.3s ease, transform 0.3s ease;
	filter: invert(0); /* 白背景用 */
}
/* ダーク背景時（オプション） */
.site-header.dark .icon-external {
	filter: invert(1);
}
/* ホバー演出 */
.header__nav a.external:hover .icon-external {
	opacity: 1;
	transform: scale(1.1) translateY(-1px);
}
/* ===== PCでは非表示 ===== */
@media screen and (min-width: 768px) {
	.icon-external {
		display: none;
	}
}
/* ------------------------------------------------------------
  Hamburger menu
------------------------------------------------------------ */
.header__toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: none;
	border: none;
	cursor: pointer;
}
.header__toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #222;
	transition: all 0.3s ease;
}
/* ------------------------------------------------------------
  Responsive navigation
------------------------------------------------------------ */
@media (max-width: 768px) {
	.header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.97);
		backdrop-filter: blur(8px);
		display: flex;
		align-items: center;
		justify-content: center;
		transition: right 0.4s ease;
	}
	.header__nav ul {
		flex-direction: column;
		gap: 2rem;
	}
	.header__nav a {
		font-size: 1.5rem;
		color: #222;
	}
	.header__toggle {
		display: flex;
	}
	.header__nav.active {
		right: 0;
	}
	.header__toggle.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.header__toggle.active span:nth-child(2) {
		opacity: 0;
	}
	.header__toggle.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}
}
/* ------------------------------------------------------------
  Header scroll effect
------------------------------------------------------------ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(6px);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	transition:
		background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, height 0.3s ease;
}
/* --- スクロール時 --- */
.site-header.scrolled {
	background: #fff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	padding: 0.5rem 2rem; /* ← 高さをスッと縮める */
}
/* --- スクロール時のロゴサイズを少し小さく --- */
.site-header.scrolled .header__logo img {
	transform: scale(0.92);
	transform-origin: left center; /* ← 左寄せの場合は基点を左に */
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
/* ------------------------------------------------------------
  Footer
------------------------------------------------------------ */
.footer {
	background: linear-gradient(179deg, #fffc23 0%, #61ee78 50%, #0a8d00 100%);
	color: #fff;
	padding: 4rem 1.5rem 2rem;
	font-size: 0.9rem;
}
.footer__inner {
	max-width: 1200px;
	margin: 0 auto 3rem;
}
.footer__section {
	margin-bottom: 2rem;
	padding: 1rem;
	background: #FFF;
	border-radius: 5px;
	color: #000;
}
.footer__title {
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}
/* --- 主催・協賛ロゴ --- */
.footer__logos {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: flex-start;
}
.footer__logos img {
	height: 40px;
	object-fit: contain;
	background: #fff;
	border-radius: 4px;
	padding: 4px 8px;
}
/* --- オーガナイザー国ロゴ --- */
.footer__logos.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 0;
	justify-items: center;
	align-items: center;
	text-align: center;
	background: #fff;
	padding: 1rem;
	border-radius: 8px;
}
.footer__logos.grid .country {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.footer__logos.grid .country img {
	width: 100px;
	height: auto;
	margin-bottom: 0.4rem;
	transition: transform 0.3s ease;
}
.footer__logos.grid .country img:hover {
	transform: scale(1.06);
}
.footer__logos.grid .country span {
	font-size: 0.8rem;
	color: #111;
}
/* --- 下部エリア --- */
.footer__bottom {
	text-align: center;
	padding-top: 2rem;
}
.footer__brand {
	height: 40px;
	margin-bottom: 1rem;
}
.footer__links a {
	color: #fff;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s;
}
.footer__links a:hover {
	opacity: 1;
}
.footer__copy {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8rem;
	margin-top: 1rem;
	line-height: 1.6;
}
/* ------------------------------------------------------------
  Responsive
------------------------------------------------------------ */
@media (max-width: 768px) {
	.footer {
		padding: 3rem 1rem 1.5rem;
	}
	.footer__logos {
		justify-content: center;
	}
	.footer__logos img {
		height: 30px;
	}
	.footer__logos.grid {
		grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
		gap: 0;
		padding: 0;
	}
	.footer__logos.grid .country img {
		width: 70px;
	}
	.footer__logos.grid .country span {
		font-size: 0.7rem;
	}
	.footer__title {
		font-size: 0.9rem;
		text-align: center;
	}
	.footer__copy {
		font-size: 0.75rem;
	}
}
/* ------------------------------------------------------------
  THEME Section
------------------------------------------------------------ */
.section-theme {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 51vh;
	/* background: #fff; */
	overflow: hidden;
	text-align: center;
	padding: 3rem 1rem;
}
.section-theme {
	position: relative; /* 念のため */
}
.theme-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	/* 中央基準にしてから skew する */
	transform: translate(-50%, -50%) skewX(319deg);
	transform-origin: center;
	/* 斜めでも欠けないように余裕を持たせる */
	width: 60vw; /* 帯の太さ（調整用） */
	height: 160vh; /* 画面より大きめ */
	background: linear-gradient(177deg, #fffc23 0%, #61ee78 50%, #1dd581 100%);
	opacity: .85;
	z-index: 0;
	pointer-events: none; /* クリック貫通(任意) */
}
.theme-inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	color: #111;
}
/* 英文タイトル */
.theme-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(1rem, 5vw, 3.2rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04em;
	margin-bottom: 2rem;
}
/* 日本語本文 */
.section-theme p {
	font-family: "kozuka-mincho-pr6n", "Noto Serif JP", serif;
	font-size: 1.8rem;
	line-height: 2;
	letter-spacing: 0.03em;
	font-weight: 400;
}
@media (max-width: 768px) {
	.theme-bg {
		width: 50vw;
		height: 120vh;
	}
	.section-theme p {
		font-size: 18px;
	}
}
@keyframes themeGlow {
	0% {
		filter: brightness(1);
	}
	50% {
		filter: brightness(1.15);
	}
	100% {
		filter: brightness(1);
	}
}
.theme-bg {
	animation: themeGlow 6s ease-in-out infinite;
}
/* 背景YouTube動画 */
.theme-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1; /* 背景として一番後ろに */
}
.theme-video iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	pointer-events: none; /* 背景クリックを貫通 */
}
/* 背景色と混ざらないように半透明フィルターを追加（任意） */
.theme-video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 30%); /* 明るめ補正。暗くしたい場合は rgba(0,0,0,0.3) */
	backdrop-filter: blur(2px);
}
/* 既存背景を少し浮かせる */
.theme-bg {
	z-index: 0;
	opacity: 1;
}
.theme-inner {
	z-index: 2;
	position: relative;
}
/* ------------------------------------------------------------
  Hero Section
------------------------------------------------------------ */
.hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}
/* === 背景YouTube === */
.hero__video-wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
	z-index: -2;
	isolation: isolate; /* ← YouTubeを独立レイヤーにする */
}
.hero__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	pointer-events: none;
	transform: scale(1.05); /* 軽く拡大して端の黒帯を隠す */
}
/* === グラデーションオーバーレイ === */
.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1; /* ← iframeより上に強制配置 */
	pointer-events: none; /* ← マウス操作を透過させる */
	mix-blend-mode: lighten; /* ← 背景と自然に馴染ませる */
	background: linear-gradient(120deg, rgba(0, 255, 153, 0.25), rgba(255, 255, 0, 0.25));
	background-size: 200% 200%;
	animation: gradientMove 8s ease infinite;
}
/* === コンテンツ中央配置 === */
.hero__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10;
}
.hero__logo {
	width: 90%;
	max-width: 480px;
	animation: fadeIn 2.5s ease-out 0.3s forwards;
	opacity: 0;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
/* ===============================
   Fade Up Animation
=============================== */
.fadeup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  will-change: opacity, transform;
}

.fadeup.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 1行ずつ浮かび上がるアニメーション */
.fadeup-lines {
  display: inline-block;
  overflow: hidden;
}

.fadeup-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

/* 表示トリガー */
.fadeup-line.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 各行のディレイ（段階的に出す） */
.fadeup-line:nth-child(1) { transition-delay: 0.1s; }
.fadeup-line:nth-child(2) { transition-delay: 0.3s; }
.fadeup-line:nth-child(3) { transition-delay: 0.5s; }
.fadeup-line:nth-child(4) { transition-delay: 0.7s; }
.fadeup-line:nth-child(5) { transition-delay: 0.9s; }

/* ------------------------------------------------------------
  Intro Section
------------------------------------------------------------ */
.intro {
	padding: 8rem 2rem;
	background: #fff;
	color: #222;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.intro__inner {
	max-width: 900px;
	margin: 0 auto;
}
.intro__catch {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	color: #00cc66;
	margin-bottom: 2.5rem;
	line-height: 1.3;
	letter-spacing: 0.05em;
}
.intro__lead {
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.9;
	color: #333;
	margin-bottom: 4rem;
}
.intro__subtitle {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	font-weight: 700;
	color: #00cc66;
	margin-bottom: 1.5rem;
}
.intro__about p {
	font-size: clamp(0.75rem, 1.6vw, 1.05rem); /* ← スマホで約12pxに収束 */
	line-height: 1.9;
	color: #444;
	margin-bottom: 1.5rem;
}
/* ------------------------------------------------------------
  Responsive
------------------------------------------------------------ */
@media (max-width: 768px) {
	.intro {
		padding: 3rem 1.5rem;
		text-align: left;
	}
	.intro__lead {
		margin-bottom: 3rem;
	}
	.intro__about p {
		line-height: 1.8;
		margin-bottom: 0.6rem;
	}
	.intro__subtitle {
		margin-bottom: 1rem;
	}
}
/* ------------------------------------------------------------
  Fonts
------------------------------------------------------------ */
/* 明朝フォント指定 */
.intro__catch, .intro__subtitle {
	font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
	font-weight: 700;
	letter-spacing: 0.03em;
}
/* 本文はゴシック体のまま */
.intro__lead, .intro__about p {
	font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}
/* ------------------------------------------------------------
  Intro Section
------------------------------------------------------------ */
.intro {
	position: relative;
	padding: 8rem 1rem 6rem;
	text-align: center;
	color: #222;
	overflow: hidden;
}
.intro__title {
	font-family: "Cinzel Decorative", serif;
	font-size: 2rem;
	line-height: 1.5;
	margin-bottom: 2rem;
}
.intro__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1.1rem;
	line-height: 2.2;
	color: #333;
}
/* ------------------------------------------------------------
  About Section
------------------------------------------------------------ */
.about {
	position: relative;
	padding: 8rem 1rem;
	background: #fff;
	text-align: center;
	overflow: hidden;
}
.about__inner {
	max-width: 850px;
	margin: 0 auto;
}
.about__title {
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	font-size: 1.8rem;
	color: #00b36b;
	margin-bottom: 2.5rem;
}
.about__text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.05rem;
	line-height: 2.2;
	color: #333;
	text-align: left;
	white-space: pre-line;
}
/* 背景グラデーション（下から上に流れる） */
.about::before {
	content: "";
	position: absolute;
	bottom: -50%;
	left: 0;
	width: 100%;
	height: 150%;
	background: linear-gradient(0deg, rgba(0, 255, 153, 0.25), rgba(255, 255, 0, 0.25));
	z-index: -1;
	opacity: 0;
	transform: translateY(30%);
	transition: transform 2.5s ease, opacity 2.5s ease;
}
.about.active::before {
	transform: translateY(0);
	opacity: 1;
}
/* ------------------------------------------------------------
  Responsive
------------------------------------------------------------ */
@media (max-width: 768px) {
	.intro__title {
		font-size: 1.6rem;
	}
	.intro__text {
		font-size: 1rem;
	}
	.about {
		padding: 6rem 1.2rem;
	}
	.about__text {
		font-size: 0.95rem;
	}
}
/* ------------------------------------------------------------
  Overview Section
------------------------------------------------------------ */
.overview {
	background: linear-gradient(180deg, #44f386, #fff200, #ff9800);
	color: #222;
	padding: 4rem 1.5rem;
}
.overview__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 4rem;
	text-align: center;
	background: #FFF;
	/* border-radius: 10px; */
}
.overview__title {
	font-family: "Playfair Display", serif;
	font-size: 2.8rem;
	letter-spacing: 0.08em;
	font-weight: 700;
	margin-bottom: 0.25rem;
}
.overview__subtitle {
	font-family: "Playfair Display", serif;
	color: #555;
	margin-bottom: 1rem;
}
/* --- 項目リスト --- */
.overview__list {
	text-align: left;
}
.overview__item {
	display: flex;
	align-items: flex-start;
	border-top: 1px solid #ccc;
	padding: 1.2rem 0;
	flex-wrap: wrap;
}
/* 最初の項目だけ上のラインを消す */
.overview__item:first-child {
	border-top: none;
}
.overview__item:last-child {
	border-bottom: 1px solid #ccc;
}
.overview__item:last-child {
	border-bottom: 1px solid #ccc;
}
.overview__item dt {
	width: 25%;
	font-weight: 700;
	color: #111;
}
.overview__item dd {
	width: 75%;
	color: #333;
	line-height: 1.7;
}
/* ------------------------------------------------------------
  Responsive
------------------------------------------------------------ */
@media (max-width: 768px) {
	.overview {
		padding: 3rem 1rem;
	}
	.overview__inner {
		padding: 1rem;
	}
	.overview__title {
		font-size: 2rem;
	}
	.overview__item {
		flex-direction: column;
		padding: 0.5rem 0;
		font-size: 12px;
	}
	.overview__item dt, .overview__item dd {
		width: 100%;
	}
	.overview__item dt {
		margin-bottom: 0.3rem;
		/* color: #00cc66; */
	}
	.overview__subtitle {
		font-family: "Playfair Display", serif;
		color: #555;
		margin-bottom: 1rem;
	}
}
/* ------------------------------------------------------------
  Tickets Section
------------------------------------------------------------ */
.tickets {
	background: #fff;
	color: #222;
	padding: 8rem 1.5rem;
	text-align: center;
}
.tickets__inner {
	max-width: 800px;
	margin: 0 auto;
}
.tickets__title {
	font-family: "Playfair Display", serif;
	font-size: 2.8rem;
	letter-spacing: 0.08em;
	font-weight: 700;
	margin-bottom: 0.25rem;
}
.tickets__subtitle {
	font-family: "Playfair Display", serif;
	font-size: 1rem;
	color: #555;
	margin-bottom: 3rem;
}
.tickets__text {
	font-family: "Playfair Display", serif;
	font-size: 3rem;
	color: #111;
	font-weight: 500;
	letter-spacing: 0.05em;
}
/* ------------------------------------------------------------
  Responsive
------------------------------------------------------------ */
@media (max-width: 768px) {
	.tickets {
		padding: 2rem 1rem;
	}
	.tickets__title {
		font-size: 2rem;
	}
	.tickets__text {
		font-size: 1.6rem;
	}
}
/* ------------------------------------------------------------
  Number Visitors Section
------------------------------------------------------------ */
.numbers {
	background: #fff;
	color: #111;
	text-align: center;
	padding: 8rem 1.5rem;
}
.numbers__inner {
	max-width: 900px;
	margin: 0 auto;
}
.numbers__title {
	font-family: "Playfair Display", serif;
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}
.numbers__year {
	font-size: 1rem;
	color: #777;
	margin-bottom: 2rem;
}
.numbers__block {
	margin-bottom: 3rem;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s ease, transform 1s ease;
}
.numbers__block.visible {
	opacity: 1;
	transform: translateY(0);
}
.numbers__label {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	color: #333;
}
.numbers__value {
	font-size: 1.6rem;
	font-weight: 600;
	font-family: "Playfair Display", serif;
}
.numbers__value span {
	display: inline-block;
	font-size: 4rem;
	font-weight: 700;
	margin-right: 0.25em;
}
/* --- Circle blocks --- */
.numbers__circle-wrap {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 4rem;
	flex-wrap: wrap;
}
.circle {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	text-align: center;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}
.circle.visible {
	opacity: 1;
	transform: translateY(0);
}
.circle__label {
	font-size: 0.8rem;
	line-height: 1.4;
	margin-bottom: 0.4rem;
}
.circle__value {
	font-size: 2rem;
	line-height: 1.2;
}
.circle__value small {
	display: block;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}
/* ------------------------------------------------------------
  Responsive
------------------------------------------------------------ */
@media (max-width: 768px) {
	.numbers {
		padding: 4rem 1rem;
	}
	.numbers__title {
		font-size: 2rem;
	}
	.numbers__value span {
		font-size: 2.8rem;
	}
	.circle {
		width: 120px;
		height: 120px;
		font-family: "Playfair Display", serif;
	}
	.circle__value {
		font-size: 1.4rem;
	}
}
/* ------------------------------------------------------------
  Sponsor Section
------------------------------------------------------------ */
.sponsor {
	background: #fff;
	color: #111;
	text-align: center;
	padding: 0rem 1.5rem 8rem 1.5rem;
}
.sponsor__inner {
	max-width: 800px;
	margin: 0 auto;
}
.sponsor__title {
	font-family: "Playfair Display", serif;
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	margin-bottom: 3rem;
}
.sponsor__box {
	background: #000;
	color: #fff;
	border-radius: 16px;
	padding: 4rem 2rem;
	display: inline-block;
	width: 100%;
	max-width: 800px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sponsor__box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
.sponsor__text {
	font-family: "Playfair Display", serif;
	font-size: 3.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	letter-spacing: 0.05em;
}
.sponsor__link {
	color: #fff;
	font-size: 1.95rem;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 0.3s;
}
.sponsor__link:hover {
	opacity: 1;
}
/* ------------------------------------------------------------
  Responsive
------------------------------------------------------------ */
@media (max-width: 768px) {
	.sponsor {
		padding: 5rem 1rem;
	}
	.sponsor__title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	.sponsor__box {
		padding: 3rem 1.5rem;
	}
	.sponsor__text {
		font-size: 1.4rem;
	}
	.sponsor__link {
		font-size: 0.9rem;
	}
}
/* ------------------------------------------------------------
  SNS Section
------------------------------------------------------------ */
.sns {
	background: linear-gradient(120deg, #00ff99, #ccff00);
	color: #111;
	text-align: center;
	padding: 4rem 1.5rem;
}
.sns__inner {
	max-width: 900px;
	margin: 0 auto;
}
.sns__title {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	letter-spacing: 0.08em;
	font-weight: 700;
	margin-bottom: 2rem;
}
.sns__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	padding: 0;
}
.sns__list li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	/* background: #fff; */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sns__list li a:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.sns__list img {
	width: 80px;
	height: 80px;
}
/* ------------------------------------------------------------
  Responsive
------------------------------------------------------------ */
@media (max-width: 768px) {
	.sns {
		padding: 3rem 1rem;
	}
	.sns__title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}
	.sns__list {
		gap: 1rem;
	}
}
/* ------------------------------------------------------------
  Trailer Section
------------------------------------------------------------ */
.trailer {
  background: #fff;
  color: #222;
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}

.trailer__inner {
  max-width: 960px;
  margin: 0 auto;
}

.trailer__title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trailer__subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.trailer__video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.trailer__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.trailer__video-wrapper iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ------------------------------------------------------------
  Responsive
------------------------------------------------------------ */
@media (max-width: 768px) {
  .trailer {
    padding: 4rem 1rem;
  }

  .trailer__title {
    font-size: 2rem;
  }

  .trailer__subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
  }
}
