/*
Theme Name: Optix Sight Inc.
Author: Tsunoda
Description: A custom WordPress theme for Optix Sight Inc. - An international optical technology company providing advanced sighting and visualization solutions.
Version: 1.0.0
Text Domain: optix-sight
*/

/* topFvスライドショー設定 */
.topFv {
    position: relative;
    overflow: hidden;
}

.topFv__thum__outer {
    width: 100%;
    height: 100vh;
    position: relative;
}

.topFv__thum__outer .swiper-wrapper {
    height: 100%;
}

.topFv__thum__outer .swiper-slide {
    height: 100%;
}

.topFv__thum {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.topFv__thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: zoomIn 8s ease-out forwards;
}

/* 各スライドのズームアニメーション */
.swiper-slide-active .topFv__thum img {
    animation: zoomIn 8s ease-out forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}
