.rc-fv {
  padding: 0;
  height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
@media screen and (max-width: 787px) {
  .rc-fv {
    padding: 24px 0 40px;
    height: auto;
  }
}
.rc-fv-inner {
  padding-left: 48px;
  margin-bottom: 80px;
}
@media screen and (max-width: 787px) {
  .rc-fv-inner {
    padding-left: 16px;
    margin-bottom: 24px;
  }
}
.rc-fv-description {
  font-size: 28px;
  font-weight: 600;
  color: #fc7400;
  margin-bottom: 16px;
}
@media screen and (max-width: 787px) {
  .rc-fv-description {
    font-size: 20px;
  }
}
.rc-fv-title-logo {
  width: 724px;
}
@media screen and (max-width: 787px) {
  .rc-fv-title-logo {
    width: 334px;
  }
}

/* カルーセル */
.rc-fv-carousel {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  height: 232px;
}
@media screen and (max-width: 787px) {
  .rc-fv-carousel {
    height: 160px;
  }
}

.rc-fv-carousel-track {
  display: flex;
  width: max-content;
  animation: scrollCarousel 160s linear infinite;
}

.rc-fv-carousel-img {
  overflow: hidden;
  flex-shrink: 0;
  width: auto;
  height: 200px;
  margin-right: 32px;
  border: 4px solid #fc7400;
  border-radius: 20px;
}
@media screen and (max-width: 787px) {
  .rc-fv-carousel-img {
    height: 122px;
    margin-right: 20px;
  }
}

/* アニメーションキー */
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* アニメーションクラス */
/* 拡大 */
.anim-zoom {
  animation: zoomAnim 0.6s ease;
}
@keyframes zoomAnim {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* ジャンプ（上に少し跳ねる） */
.anim-jump {
  animation: jumpAnim 0.6s ease;
}
@keyframes jumpAnim {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* 左右に傾く（揺れ） */
.anim-tilt {
  animation: tiltAnim 0.6s ease;
}
@keyframes tiltAnim {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* 小刻みに震える */
.anim-shake {
  animation: shakeAnim 0.4s ease;
}
@keyframes shakeAnim {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
  75% {
    transform: translateX(-1px);
  }
}
