@charset "UTF-8";

/*
 * JV-Works particle background
 * Canvasをセクション背景より前、FVコンテンツより後ろに配置する。
 */
#jvw-particle-background {
	display: block;
	position: fixed;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* #body_wrapと.l-contentのスタッキングコンテキストを解除する。 */
#body_wrap {
	position: relative;
	z-index: auto;
}

.l-content {
	z-index: auto;
}

/* FV背景は通常描画のまま、FV内の内容だけをCanvasより前へ出す。 */
.jvw-hero-layout {
	position: relative;
	z-index: 2;
}

@media print {
	#jvw-particle-background {
		display: none;
	}
}
