/* --- Footer Section Adventure 2027 Styles --- */

/* 白いアウトラインテキスト */
.stroke-text-white {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

/* フッター上部のゆっくり流れるマーキー */
@keyframes marquee-slow-footer {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee-slow {
    display: flex;
    width: max-content;
    animation: marquee-slow-footer 40s linear infinite;
}

/* SNSアイコンの浮遊感 */
.recruiter-card:hover {
    transform: translateY(-5px);
}

/* 背景巨大文字のカラー微調整 */
#footer-bg-text {
    /* 非常に薄い白 */
    color: rgba(255, 255, 255, 0.03);
}


