@charset "utf-8";


.anim-underline01 {
  position: relative;
}

.anim-underline01::before {
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 40%, #191970; 60%);
  animation: underlineAnim 2s ease-in infinite;
  z-index: -1;
}

@keyframes underlineAnim {
  0% {
    right: 100%;
  }
  100% {
    right: 0;
  }
}



.bordering01 {
  text-stroke: 1px #000;
  -webkit-text-stroke: 1px #000;
  font-size: 40px !important;
  color: #fff;
}
 
.bordering02 {
  color: #fff;
  font-size: 40px !important;
  text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, -1px -1px 0 #000;
}