/* ===== Theme Banner (帯パーツ) ===== */
.theme-banner {
  overflow: hidden;
  padding: 32px 0;
  /* background: #fff; */
}

.theme-banner__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: theme-banner-scroll 30s linear infinite;
  will-change: transform;
}

.theme-banner__unit {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 24px;
  padding-right: 24px;
}

.theme-banner__word {
  font-family: var(--font-en);
  font-size: clamp(32px, 4vw, 64px);
  /* font-style: italic; */
  font-weight: 400;
  color: #1a1a1a;
  /* letter-spacing: 0.02em; */
  flex-shrink: 0;
}

.theme-banner__word--red {
  color: var(--color-primary, #e60012);
}

.theme-banner__photo {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  background: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 11px;
  overflow: hidden;
}

.theme-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes theme-banner-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .theme-banner {
    padding: 20px 0;
  }
  .theme-banner__word {
    font-size: 24px;
  }
  .theme-banner__photo {
    width: 80px;
    height: 54px;
    border-radius: 6px;
  }
  .theme-banner__unit {
    gap: 16px;
    padding-right: 16px;
  }
}
