.htts-route {
    padding: clamp(12px, 2vw, 28px) 0 0;
    background: transparent;
}

.htts-route__inner {
    width: min(var(--htts-container-width), calc(100% - 32px));
    margin: 0 auto;
}

.htts-route h2 {
    margin: 0;
    font-family: SVN-GilroyBold, Arial, sans-serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    color: #24395f;
    overflow-wrap: anywhere;
}

.htts-route__image-wrap {
    position: relative;
    overflow: hidden;
    margin-top: clamp(-30px, -2.2vw, -18px);
    margin-bottom: clamp(-118px, -7vw, -76px);
}

.htts-route__image {
    display: block;
    width: min(94vw, 1520px);
    max-width: none;
    height: auto;
    margin-right: 50%;
    margin-left: 50%;
    transform: translateY(clamp(-32px, -2.3vw, -20px));
    translate: -50% 0;
}

.htts-route__image--clone {
    display: none;
}

.htts-route__bus {
    position: absolute;
    left: clamp(132px, 14vw, 238px);
    bottom: clamp(42px, 3.5vw, 68px);
    z-index: 2;
    display: block;
    width: clamp(136px, 11vw, 198px);
    height: auto;
    pointer-events: none;
}

@media (max-width: 767px) {
    .htts-route h2 {
        max-width: 320px;
        margin-right: auto;
        margin-left: auto;
        font-size: 24px;
    }

    .htts-route__image-wrap {
        overflow-x: auto;
        overflow-y: hidden;
        margin-top: -10px;
        margin-bottom: -44px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .htts-route__image-wrap::-webkit-scrollbar {
        display: none;
    }

    .htts-route__track {
        display: flex;
        width: max-content;
        animation: htts-route-image-mobile 12s linear infinite;
    }

    .htts-route__image {
        flex: 0 0 auto;
        width: 820px;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
        transform: translateY(-12px);
        translate: 0 0;
    }

    .htts-route__image--clone {
        display: block;
    }

    .htts-route__bus {
        left: 48px;
        bottom: 52px;
        width: 118px;
    }
}

@keyframes htts-route-image-mobile {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-820px);
    }
}
