/* マーキーセクションのスタイル */
.marquee {
    background-color: #EFFF2A;
    overflow: hidden;
    padding: 6rem 0;
    position: relative;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    transform: scale(1.2);
}

.marquee-track {
    width: fit-content;
    display: flex;
    will-change: transform;
    animation: marquee 60s linear infinite;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    padding-right: 1rem; /* コンテンツ間の余白 */
}

.marquee-content span {
    font-size: 5rem;
    font-weight: bold;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%); /* 3分の1の距離だけ移動 */
    }
}

