/* スライダーコンテナ (変更なし - 画像配置用) */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.top-track, .bottom-track {
    display: flex;
    width: max-content;
    flex-shrink: 0;
}

.top-track img, .bottom-track img {
    width: auto;
    height: 40vh;
    object-fit: cover;
    margin-right: 5px;
}

.hero-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- タイトルボックス --- */
.hero-title-box {
    position: absolute;
    z-index: 5;
    text-align: center;
    padding: 20px;
    
    /* 背景色をシンプルな黄色/金に */
    background: var(--tawareco-yellow);
    
    /* 太い黒のボーダー */
    border: 5px solid var(--tawareco-black);
    
    /* 複雑な影を削除し、力強い赤のオフセットシャドウに */
    box-shadow: 10px 10px 0px var(--tawareco-red);
    
    /* 浮遊アニメーションを削除 */
    animation: none; 
    
    left: 50%;
    /* 変形もリセット */
    transform: translateX(-50%);
    box-sizing: border-box;
    width: fit-content;
    max-width: calc(100% - 40px);
}


.title-sub {
    /* フォントをタワレコ風の力強いサンセリフ体に統一 */
    font-family: 'Luckiest Guy', 'Arial Black', 'Impact', sans-serif;
    font-size: 1.5em;
    color: var(--tawareco-black);
    margin: 0 0 5px 0;
    transform: none;
    letter-spacing: 2px;
    font-weight: 700; /* 太字を強調 */
}

.title-main {
    font-size: 10em;
    color: var(--tawareco-red);
    /* メインタイトルはさらにインパクトのあるフォントに */
    font-family: 'Luckiest Guy', 'Arial Black', 'Impact', sans-serif;
    /* 左に傾ける */
    transform: skewX(10deg);
    margin: 5px 10px;
    line-height: 1.0;
    text-shadow: 4px 4px 0px var(--tawareco-black);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.title-date {
    font-size: 2em;
    color: var(--tawareco-white);
    background-color: var(--tawareco-black);
    padding: 5px 15px;
    display: inline-block;
    margin-top: 10px;
    width: fit-content;
    /* サブタイトルと同じ力強いフォントに */
    font-family:  'Luckiest Guy', 'Arial Black', 'Impact', sans-serif;
    letter-spacing: 1px;
    border-bottom: 5px solid var(--tawareco-red);
    font-weight: 700;
}

/* アニメーション (スライダー) - 維持 */
@keyframes slide-to-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slide-to-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.top-track {
    animation: slide-to-right 15s linear infinite;
    margin-bottom: 5px;
    will-change: transform;
}

.bottom-track {
    animation: slide-to-left 15s linear infinite;
    will-change: transform;
}

.top-track img, .bottom-track img {
    will-change: transform;
    backface-visibility: hidden;
}

@media (max-width: 600px) {
    .hero-section {
        height: 50vh;
    }

    .hero-title-box {
        padding: 10px 8px;
        border-width: 3px;
        max-width: calc(100% - 5px);
        transform: translateX(-50%);
    }

    .title-main { 
        font-size: 3.0rem; /* より大きく */
        line-height: 1.0;
        margin: 2px 3px;
        transform: none;
    }
    
    .title-sub {
        font-size: 1.0rem;
        margin: 0 0 3px 0;
    }
    
    .title-date { 
        font-size: 1.2rem;
        padding: 4px 10px;
        margin-top: 6px;
    }

    .top-track img, .bottom-track img {
        height: 25vh;
        margin-right: 3px;
    }
}