@charset "utf-8";

/*========= レイアウトのためのCSS ===============*/
/*p{
  text-align: center;
  margin: 20px 0;
  font-size: 1.5rem;
  letter-spacing: .5em;
    word-break : break-all;
}*/

.TextTyping {
text-align: left;
}

/*========= タイピング ===============*/

.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
content: "|";
animation: typinganime .5s ease infinite;
color: #ccc !important;
}

@keyframes typinganime{
  from{opacity:0}
  to{opacity:1}
}

