@charset "utf-8";

/*========= レイアウトのためのCSS ===============*/
.TextTyping {
	text-align: center;
	margin: 20px 0 0px 0px;
	font-size: 2rem;
	letter-spacing: .5em;
    word-break : break-all;
	width: 1070px;
	color: #34f844c3;
}

.TextTyping {
	text-align: center;
}

/*========= タイピング ===============*/

.TextTyping span {
	display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
 	content: "|";
	animation: typinganime .8s ease infinite;
}

@keyframes typinganime{
	from{opacity:0}
	to{opacity:1}
}
