/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 18 2024 | 06:15:47 */
.loop03 {

    overflow: hidden;
}
.loop03__box {
    display: flex;
    width: 100vw;
    padding-top: 10px;
    padding-bottom: 10px;
}

#loop-text .loop03__item {
    flex: 0 0 auto;
    font-size:120px;
    white-space: nowrap;
    padding-right: 25px;
    padding-left: 25px;
 font-weight:600;
    color: #004AAD;
 font-family:"Roboto Condensed";
}


.loop03__item:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
}
.loop03__item:nth-child(even) {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}


/*10/10*/
.loopSlide {
    position: relative;
    display: flex;
    width: 100vw;
    overflow: hidden;

    ul {
        padding: 0;
        width: 100vw;
        display: flex;
        flex-shrink: 0;

        &:first-child {
            animation: slide1 60s -30s linear infinite;
			}
        &:last-child {
            animation: slide2 60s linear infinite;
        }

        li {
            display: inline-block;
            width: 100%;
            min-width: 150px;
            margin-right: 20px;
            list-style: none;
            text-align: center;

            img {
                display: block;
                width: 100%;
                height: auto;
            }
        }
    }
    
   
}

@keyframes slide1 {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

@media (max-width: 767px){
	.loopSlide {
    position: relative;
    display: flex;
    width: 100vw;
    overflow: hidden;

    ul {
        padding: 0;
        display: flex;
        flex-shrink: 0;
        /* ループ全体の幅はリストアイテムの合計幅に応じて設定 */
        width: calc(100% * 2); /* リストが2セット並ぶ想定 */

        .loopSlide ul:first-child {
            animation: slide1 60s -30s linear infinite;
         }
        .loopSlide ul:last-child {
            animation: slide2 60s linear infinite;
         }


        li {
            display: inline-block;
            width: 60vw; /* ビューポート幅に応じて各アイテムの幅を調整 */
            flex-shrink: 0;
            list-style: none;
            text-align: center;

            img {
                display: block;
                width: 100%;
                height: auto;
            }
        }
    }

    
}

@keyframes slide1 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}
