/* Loading Animation Keyframes */
@keyframes widthGrow {
  0% {
    width: 0;
  }

  100% {
    width: 2.5rem;
  }
}

.animate-width-grow {
  animation: widthGrow 1.5s ease-out forwards;
}

/* 斜め線の装飾 (Strength Section) */
.diagonal-line {
  transform: skewX(-12deg);
}
