.hero { text-align: center; }
.hero-image { width: 100%; margin: 0 auto; }

.hero-split {
    display: flex;
    width: 100%;
    overflow: hidden;
    gap: 0;
    font-size: 0;
    line-height: 0;
}
.hero-split img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: top;
}
.hero-split img:first-child {
    margin-right: -1px;
}

/* スワイプヒント（SP版のみ） */
.hero-swipe-hint {
    display: none;
}

@media (max-width: 768px) {
    .hero-split {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .hero-split img {
        width: 100%;
        min-width: 100%;
        scroll-snap-align: center;
    }
    /* スクロールバー非表示 */
    .hero-split::-webkit-scrollbar {
        display: none;
    }
    .hero-split {
        scrollbar-width: none;
    }

    .hero-swipe-hint {
        display: block;
        text-align: center;
        padding: 10px 0;
        font-size: 13px;
        color: var(--color-text-sub);
    }
}
