.svg_container_line {width:1000px; height:auto; margin:0 auto;
position: absolute;
    left: 345px;
    top: 96px;}


.svg_container_line svg {
  display: block;
  width: 52%;
  max-width: 100%;
}


.letter {
  fill: none;
  stroke: #ccc;
  stroke-width:6px; /*�u�q�e��*/
  -webkit-animation: draw 6s infinite ease-in-out;
          animation: draw 6s infinite ease-in-out;
}
@-webkit-keyframes draw {
  20%, 90% {
    opacity: 1;
    stroke-dashoffset: 0;
    stroke: #5d5d5d;
  }
  100% {
    opacity: 0;
  }
}
@keyframes draw {
  20%, 90% {
    opacity: 1;
    stroke-dashoffset: 0;
    stroke: #fee3b7;
  }
  100% {
    opacity: 0;
  }
}

.svg_container_line .letter {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}


.svg_container_line .letter_001 {
  stroke-dasharray: 100;/*�u�q����*/
  stroke-dashoffset: 100;
}


