.logo-role {
  z-index: 1; /* 前面に配置 */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  gap: 30px;
  background-color: white;
}

.logo-role-title {
  color: #525252;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.57px; /* 119.042% */
}

.logo-slider {
  display: flex;
  overflow: hidden;
  width: 100%; /* スライダーの幅を必要に応じて調整 */
  position: relative;
}

.logo-slider-wrapper {
  display: flex;
  animation: slide 25s linear infinite;
  gap: 50px;
  align-items: center;
}

.company-logo {
  flex: 0 0 auto;
  width: 130px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
