/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* アニメーション無効化 - Google広告対策 */
/* カルーセル等の必要なアニメーションは個別に許可 */
*:not(.engineer-carousel-inner):not(.engineer-card):not(.carousel-btn):not(.carousel-dot):not(.career-compact-item):not(.engineer-photo),
*::before,
*::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}

/* Force scroll-fade to be visible */
.scroll-fade {
    opacity: 1 !important;
    transform: none !important;
}

.fade-in {
    opacity: 1;
    transform: none;
    transition: none;
}

.fade-in.active {
    opacity: 1;
    transform: none;
}