@charset "UTF-8";

/* sass ではないベタcss */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* text blink */
.text-pulse {
  display: inline-block; /* transform を効かせる */
  animation: pulse 2.5s ease-in-out infinite;
  transform-origin: center;
  &:hover {
    animation-play-state: paused;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  50% {
    transform: scale(1.16);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
  }
}

/* LIVE INFORMATION */
.sectionLiveInformation {
  padding: 4rem 1.6rem;
  @media screen and (min-width: 768px) {
    padding: 8rem 1.6rem 2rem 1.6rem;
  }
}
