/* home.css */
/* Hero */
.hero {
    height: 88vh;
    min-height: 720px;
    background: #060056;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 110px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.74) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* Reality Ticker (流れる文字) */
.reality-ticker-container {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 50px;
}

.ticker-row {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 20px;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 90s linear infinite;
    gap: 20px;
}

@keyframes scrollTicker {
    to {
        transform: translateX(-50%);
    }
}

/* Instagram Reels */
.insta-reels-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.insta-reels-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scrollReels 20s linear infinite;
}

@keyframes scrollReels {
    0% {
        transform: translateX(0);
    }

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

/* 特有のパーツ */
.highlight {
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(transparent 60%, rgba(225, 200, 49, 0.46) 60%);
    padding: 0 4px;
}