
/* ◆アニメーション
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
	opacity: 0;  /* 初期値 : 透過状態 */
	transition: opacity .5s ease;
}

body.fadeout_cover::after {
	opacity: 1;
	transition: opacity .2s ease;
}

.animation1 {
	border-bottom:solid;
	border-width:2px;
}