<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
/*
	common
-----------------------------------------------------------------------------------------------*/
/* 起点 */
.jsAnm{
	opacity: 0;
}

/* ふわっと */
.anmFadeIn.jsAnmStart{
	animation: anmFadeIn 1s ease 0.5s forwards;
}

@keyframes anmFadeIn{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}

/* 下からふわっと */
.anmFadeUp01.jsAnmStart,
.anmFadeUp02.jsAnmStart,
.anmFadeUp03.jsAnmStart,
.anmFadeUp04.jsAnmStart{
	animation: anmFadeUp 1s ease 0.5s forwards;
}
.anmFadeUp02.jsAnmStart{
	animation-delay: 0.8s;
}
.anmFadeUp03.jsAnmStart{
	animation-delay: 1.0s;
}
.anmFadeUp04.jsAnmStart{
	animation-delay: 1.2s;
}
@keyframes anmFadeUp{
	from{
		opacity: 0;
		transform: translateY(40px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}

/* ページ全体 */
#wrapperArea{
	opacity: 0;
	animation: anmFadeIn 0.8s ease 0.2s forwards;
}

</pre></body></html>