@charset "utf-8";

/* =========================================================
   EIR AOI LIVE TOUR 2026-2027 UNBOUND
   ページ固有カラー（PDFカンプからの近似値・CSS変数で一括調整可）
   ========================================================= */
:root
{
	--unb-blue-2026: #00008a; /* 2026 国内公演バー：濃紺ブルー */
	--unb-blue-2027: #0073ff; /* 2027 海外公演バー：ブルー */
	--unb-red: #e71f19;       /* FC先行受付 ボックス／日付 */
}

/* =========================================================
   Page-wide canvas — ベースは黒
   ========================================================= */
body.unbound
{
	background-color: #000000;
}

body.unbound .l-content__body
{
	background-color: #000000;
	margin-bottom: 0;
}

.content-main
{
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
	font-feature-settings: "palt";
	letter-spacing: 0.03em;
	color: #ffffff;
}

/* =========================================================
   KV — kv_bg / ttl_tour_sub / ttl_tour / eir の4レイヤー合成
   ========================================================= */
.sec-kv
{
	position: relative;
	overflow: hidden;
	text-align: center;
	margin-left: calc(var(--ark-padding--container) * -1);
	margin-right: calc(var(--ark-padding--container) * -1);
	padding: 7vw 0 0;
	background-color: #000000;
}

.sec-kv .-titles
{
	position: relative;
	z-index: 1;
	padding: 0 6vw;
}

.sec-kv .-sub
{
	margin: 0;
}

.sec-kv .-sub img
{
	width: 100%;
	max-width: 680px;
	height: auto;
	margin: 0 auto;
	display: block;
}

.sec-kv .-ttl
{
	margin: 10px 0 0;
}

.sec-kv .-ttl img
{
	width: 100%;
	max-width: 720px;
	height: auto;
	margin: 0 auto;
	display: block;
}

.sec-kv .-eir
{
	position: relative;
	z-index: 3;          /* 本人は最前面（粒子の前） */
	margin: 2vw 0 0;
}

/* 光の粒子レイヤー — タイトル(z1)の前・本人(z3)の背後 */
.sec-kv .kv-particles
{
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	overflow: hidden;
	opacity: 0;                    /* タイトル・本人の表示完了＋2秒後にフェードイン */
	transition: opacity 0.9s ease;
}

.sec-kv.particles-on .kv-particles
{
	opacity: 1;
}

/* 各粒はKVの高さ分の縦カラム。下端のドット(::before)ごと上昇させ、
   横揺れはドット側に別周期で重ねて非反復な自然軌道にする */
.sec-kv .kv-particles span
{
	position: absolute;
	bottom: 0;
	left: var(--x);
	width: var(--size);
	height: 100%;
	opacity: 0;
}

.sec-kv .kv-particles span::before
{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: var(--size);
	height: var(--size);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(235, 246, 255, 1) 0%, rgba(150, 205, 255, 0.55) 45%, rgba(150, 205, 255, 0) 75%);
	box-shadow: 0 0 8px 2px rgba(170, 215, 255, 0.6);
}

.sec-kv .-eir img
{
	display: block;
	width: auto;
	max-width: min(92%, 420px);
	height: auto;
	margin: 0 auto;
}

/* =========================================================
   KV アニメーション — ロード時オープニング演出
   背景ズーム → サブタイトル → UNBOUND（ワイプ＋スラム）→ 本人
   背景画像はアニメ用に ::before レイヤーへ分離
   ========================================================= */
.sec-kv::before
{
	content: "";
	position: absolute;
	inset: 0;
	background: url("../img/unbound/kv_bg.webp") no-repeat center top / cover;
	z-index: 0;
	transform-origin: center;
}

.sec-kv > *
{
	position: relative;
	z-index: 1;
}

/* アニメはローダーが明けてから（JSで .is-revealed 付与）開始する。
   サイト共通の不透明ローディング画面（.container-loading）が KV を覆っている
   間に再生し切ってしまうのを防ぐため、表示まで保留する。 */
.sec-kv.is-revealed::before
{
	animation: unb-kv-bg 8s ease-out both;
}

.sec-kv.is-revealed .-sub
{
	animation: unb-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.sec-kv.is-revealed .-ttl
{
	animation: unb-slam 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.sec-kv.is-revealed .-eir
{
	animation: unb-rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

/* 光の粒子 — タイトル・本人の表示完了＋2秒後（particles-on）に上昇＋横揺れ開始。
   負のdelayで開始と同時に一定密度（連続感）になる */
.sec-kv.is-revealed.particles-on .kv-particles span
{
	animation: unb-prise var(--dur) linear var(--delay) infinite;
}

.sec-kv.is-revealed.particles-on .kv-particles span::before
{
	animation: unb-psway var(--sdur) ease-in-out var(--delay) infinite alternate;
}

@keyframes unb-kv-bg
{
	0%   { transform: scale(1.12); opacity: 0; }
	18%  { opacity: 1; }
	100% { transform: scale(1.0); opacity: 1; }
}

@keyframes unb-fade-up
{
	0%   { opacity: 0; transform: translateY(12px); }
	100% { opacity: 1; transform: translateY(0); }
}

@keyframes unb-slam
{
	0%   { opacity: 0; transform: scale(1.12); clip-path: inset(0 100% 0 0); }
	60%  { opacity: 1; }
	100% { opacity: 1; transform: scale(1.0); clip-path: inset(0 0 0 0); }
}

@keyframes unb-rise
{
	0%   { opacity: 0; transform: translateY(40px) scale(1.04); }
	100% { opacity: 1; transform: translateY(0) scale(1.0); }
}

/* 粒子：カラムごと下→上へ上昇＋フェードイン/アウト。
   ピーク不透明度は粒ごと（--op）でバラし、明るさをまばらにする */
@keyframes unb-prise
{
	0%   { transform: translateY(0);     opacity: 0; }
	12%  { opacity: var(--op, 1); }
	85%  { opacity: var(--op, 1); }
	100% { transform: translateY(-100%); opacity: 0; }
}

/* 粒子：横揺れ（上昇とは別周期＝非反復）。振れ幅を不均等にして自然に */
@keyframes unb-psway
{
	0%   { transform: translateX(calc(var(--amp) * -1)); }
	30%  { transform: translateX(calc(var(--amp) * 0.55)); }
	55%  { transform: translateX(calc(var(--amp) * -0.35)); }
	80%  { transform: translateX(var(--amp)); }
	100% { transform: translateX(calc(var(--amp) * -0.7)); }
}

/* アクセシビリティ：モーション抑制設定では即時表示 */
@media (prefers-reduced-motion: reduce)
{
	.sec-kv.is-revealed::before,
	.sec-kv.is-revealed .-sub,
	.sec-kv.is-revealed .-ttl,
	.sec-kv.is-revealed .-eir,
	.sec-kv.is-revealed .kv-particles span,
	.sec-kv.is-revealed .kv-particles span::before
	{
		animation: none !important;
	}
}

/* =========================================================
   スマホ時の KV 全画面表示
   ========================================================= */
@media only screen and (max-width: 767px)
{
	.sec-kv
	{
		display: flex;
		flex-direction: column;
		align-items: center;
		min-height: 100vh;  /* フォールバック */
		min-height: 100svh; /* アドレスバー増減に追従 */
		padding-top: 8vh;
	}
	/* min-width:0 で flex item の最小幅を解除し、本人画像がライン幅を
	   押し広げて見出しが横にはみ出すのを防ぐ */
	.sec-kv .-titles
	{
		width: 100%;
		min-width: 0;
	}
	.sec-kv .-eir
	{
		width: 100%;
		min-width: 0;
		margin-top: auto; /* 本人画像を下端へ */
	}
	.sec-kv .-eir img
	{
		max-height: 70svh;
		width: auto;
		max-width: 100%;
	}
}

/* =========================================================
   TOUR — 日程（青ヘッダーバー＋白本文カード）
   ========================================================= */
.sec-tour
{
	margin-left: calc(var(--ark-padding--container) * -1);
	margin-right: calc(var(--ark-padding--container) * -1);
	padding: 56px var(--ark-padding--container) 64px;
	background-color: #000000;
	color: #ffffff;
}

/* CTA ボタン（FC先行受付期間中のみ表示） */
.sec-tour .-cta
{
	margin: 0 0 32px;
}

.sec-tour .-cta_btn
{
	display: block;
	width: 100%;
	padding: 16px 20px;
	border-radius: 6px;
	background: #ffffff;
	color: var(--unb-blue-2026);
	font-weight: 700;
	font-size: 0.98rem;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-align: center;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
	transition: 0.15s;
	position: relative;
}

.sec-tour .-cta_btn::after
{
	content: "";
	position: absolute;
	top: 50%;
	right: 1.6rem;
	width: 8px;
	height: 8px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
}

.sec-tour .-cta_btn:hover
{
	transform: translateY(2px);
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

/* 年見出し */
body.unbound .sec-tour .-yearttl
{
	font-style: italic;
	font-weight: 800;
	font-size: 36px;
	line-height: 1;
	letter-spacing: 0.02em;
	margin: 0 0 18px;
	color: #ffffff;
}

.sec-tour .-year + .-year
{
	margin-top: 50px;
}

/* 日程カード */
.sec-tour .-row
{
	background-color: #ffffff;
	margin-bottom: 20px;
}

.sec-tour .-city
{
	margin: 0;
	padding: 9px 0;
	background-color: var(--unb-blue-2026);
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
}

.sec-tour .-row.-soon .-city
{
	background-color: var(--unb-blue-2027);
}

.sec-tour .-body
{
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 16px 14px;
	color: #111111;
}

.sec-tour .-date
{
	flex-shrink: 0;
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
}

.sec-tour .-date .-dow
{
	font-size: 0.5em;
	margin-left: 0.15em;
	color: #555555;
}

.sec-tour .-venue
{
	flex: 1;
	min-width: 0;
}

.sec-tour .-place
{
	margin: 0 0 4px;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.4;
}

.sec-tour .-time
{
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.4;
	color: #555555;
}

/* and more... */
.sec-tour .-more
{
	margin: 26px 0 0;
	text-align: right;
	font-style: italic;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: 0.02em;
	color: #ffffff;
}

/* FC先行受付 */
.sec-tour .-fc
{
	margin-top: 36px;
	padding: 26px 18px 30px;
	background-color: var(--unb-red);
	text-align: center;
}

/* 白帯に赤文字のラベル */
.sec-tour .-fc_label
{
	display: block;
	margin: 0 0 20px;
	padding: 10px 12px;
	background-color: #ffffff;
	color: var(--unb-red);
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.04em;
}

/* 赤地に白文字の受付期間 */
.sec-tour .-fc_period
{
	margin: 0;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

/* =========================================================
   日程セクション — スクロールで軽くフェードアップ
   （JSの IntersectionObserver が画面内で .is-shown を付与）
   ========================================================= */
.sec-tour .-cta,
.sec-tour .-yearttl,
.sec-tour .-row,
.sec-tour .-more,
.sec-tour .-fc
{
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.sec-tour .-cta.is-shown,
.sec-tour .-yearttl.is-shown,
.sec-tour .-row.is-shown,
.sec-tour .-more.is-shown,
.sec-tour .-fc.is-shown
{
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce)
{
	.sec-tour .-cta,
	.sec-tour .-yearttl,
	.sec-tour .-row,
	.sec-tour .-more,
	.sec-tour .-fc
	{
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* =========================================================
   PC コンテナ幅調整（縦長LPのため単一カラム・中央寄せ）
   ========================================================= */
@media only screen and (min-width: 768px)
{
	body.unbound .l-content
	{
		max-width: 100%;
	}
	body.unbound .l-content__body
	{
		max-width: 720px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}

	/* PC：KV は高さ720px固定。タイトル・本人画像をその中に収める */
	.sec-kv
	{
		display: flex;
		flex-direction: column;
		align-items: center;
		height: 720px;
		padding: 40px 0 0;
	}
	.sec-kv .-titles
	{
		width: 100%;
		padding: 0 40px;
	}
	.sec-kv .-eir
	{
		flex: 1 1 auto;
		min-height: 0;
		width: 100%;
		margin: 16px 0 0;
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}
	.sec-kv .-eir img
	{
		max-height: 100%;
		width: auto;
		max-width: 100%;
		margin: 0 auto;
	}

	body.unbound .sec-tour .-yearttl
	{
		font-size: 42px;
	}
}

/* =========================================================
   フッター調整
   ========================================================= */
.w-footer.-widget2
{
	display: none;
}
