.container-lp-2026-route-step-image-map {
    position: relative;
    width: 100%;
    padding: 64px 0;
    overflow: hidden;
    background-color: #fbfbfb;
    scroll-margin-top: 100px;
}

@media (min-width: 768px) {
    .container-lp-2026-route-step-image-map {
        scroll-margin-top: 117px;
    }
}

.container-lp-2026-route-step-image-map .wrapper-route-step-image-map {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1216px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0px;
}

.container-lp-2026-route-step-image-map .mobile-only {
    display: none !important;
}

.container-lp-2026-route-step-image-map .desktop-only {
    display: flex !important;
}

.container-lp-2026-route-step-image-map .map-image-wrapper {
    position: relative;
    width: 100%;
    height: 236px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #d9d9d9;
}

.container-lp-2026-route-step-image-map .map-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-lp-2026-route-step-image-map .zoom-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    padding: 8px;
    background-color: #ffffff;
    border: 1px solid #234f8b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
    transition: transform 0.2s ease;
}

.container-lp-2026-route-step-image-map .zoom-icon,
.container-lp-2026-route-step-image-map .zoom-icon.zoom-pos-desktop-top-right {
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
}

.container-lp-2026-route-step-image-map .zoom-icon.zoom-pos-desktop-top-left {
    top: 16px;
    left: 16px;
    bottom: auto;
    right: auto;
}

.container-lp-2026-route-step-image-map .zoom-icon.zoom-pos-desktop-bottom-right {
    bottom: 16px;
    right: 16px;
    top: auto;
    left: auto;
}

.container-lp-2026-route-step-image-map .zoom-icon.zoom-pos-desktop-bottom-left {
    bottom: 16px;
    left: 16px;
    top: auto;
    right: auto;
}

.container-lp-2026-route-step-image-map .zoom-icon svg.desktop-only {
    display: block !important;
    width: 24px;
    height: 26px;
}

.container-lp-2026-route-step-image-map .zoom-icon svg.mobile-only {
    display: none !important;
}

.container-lp-2026-route-step-image-map .map-image-wrapper:hover .zoom-icon {
    transform: scale(1.05);
}

.container-lp-2026-route-step-image-map .content-section {
    display: flex;
    flex-direction: row;
    gap: 48px;
    width: 100%;
    margin-top: 40px;
    align-items: flex-start;
}

.container-lp-2026-route-step-image-map .header-info {
    width: 258px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.container-lp-2026-route-step-image-map .title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.container-lp-2026-route-step-image-map .section-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #234f8b;
    margin: 0;
}

.container-lp-2026-route-step-image-map .divider-line {
    background-color: #8dbcaa;
    height: 2px;
    width: 40px;
}

.container-lp-2026-route-step-image-map .section-quote {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #234f8b;
}

.container-lp-2026-route-step-image-map .content-box {
    flex: 1;
    background-color: #eef5f2;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.container-lp-2026-route-step-image-map .box-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.container-lp-2026-route-step-image-map .column-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #234f8b;
}

.container-lp-2026-route-step-image-map .author-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #234f8b;
}

.container-lp-2026-route-step-image-map .map-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.container-lp-2026-route-step-image-map .map-popup-modal.is-active {
    display: flex;
}

.container-lp-2026-route-step-image-map .map-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.8;
}

.container-lp-2026-route-step-image-map .map-popup-close {
    position: absolute;
    top: 80px;
    right: 48px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.container-lp-2026-route-step-image-map .map-popup-close svg {
    display: block;
    width: 24px;
    height: 24px;
}

.container-lp-2026-route-step-image-map .map-popup-content {
    position: relative;
    z-index: 1;
    width: 920px;
    height: 920px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.container-lp-2026-route-step-image-map .map-popup-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 767px) {
    .container-lp-2026-route-step-image-map {
        padding: 24px 0;
    }

    .container-lp-2026-route-step-image-map .wrapper-route-step-image-map {
        padding: 0 16px;
    }

    .container-lp-2026-route-step-image-map .desktop-only {
        display: none !important;
    }

    .container-lp-2026-route-step-image-map .mobile-only {
        display: flex !important;
    }

    .container-lp-2026-route-step-image-map .map-image-wrapper {
        height: 560px;
        width: 100%;
    }

    .container-lp-2026-route-step-image-map .zoom-icon {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .container-lp-2026-route-step-image-map .zoom-icon,
    .container-lp-2026-route-step-image-map .zoom-icon.zoom-pos-mobile-top-right {
        top: 16px;
        right: 16px;
        bottom: auto;
        left: auto;
    }

    .container-lp-2026-route-step-image-map .zoom-icon.zoom-pos-mobile-top-left {
        top: 16px;
        left: 16px;
        bottom: auto;
        right: auto;
    }

    .container-lp-2026-route-step-image-map .zoom-icon.zoom-pos-mobile-bottom-right {
        bottom: 16px;
        right: 16px;
        top: auto;
        left: auto;
    }

    .container-lp-2026-route-step-image-map .zoom-icon.zoom-pos-mobile-bottom-left {
        bottom: 16px;
        left: 16px;
        top: auto;
        right: auto;
    }

    .container-lp-2026-route-step-image-map .zoom-icon svg.desktop-only {
        display: none !important;
    }

    .container-lp-2026-route-step-image-map .zoom-icon svg.mobile-only {
        display: block !important;
        width: 17px;
        height: 18px;
    }

    .container-lp-2026-route-step-image-map .content-section {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .container-lp-2026-route-step-image-map .header-info {
        width: 100%;
    }

    .container-lp-2026-route-step-image-map .content-box {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .container-lp-2026-route-step-image-map .map-popup-close {
        position: fixed;
        top: 24px;
        right: 24px;
        z-index: 1000000;
    }

    .container-lp-2026-route-step-image-map .map-popup-content {
        width: calc((100vw - 16px) * (920 / 775));
        height: calc((100vw - 16px) * (920 / 775));
        max-width: none;
        max-height: none;
        aspect-ratio: 1 / 1;
    }
}