@charset "UTF-8";

/********************************* 

top.css
2025年11月追加

更新内容：
1. TOPのスライドswipeからfadeに変更
2. pagination右側へ移動
3. start/pause ボタン無しへ

*********************************/

.custom-top-slide__slide{
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.custom-top-slide__slide::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    z-index: 1;
    pointer-events: none;
}
.custom-top-slide__slide--01{
    background-color: #D5EAEB;
    background: url("/dcms_media/image/top01-01.jpg") no-repeat 40% center / cover;
}
.custom-top-slide__slide--02{
    background-color: #E6D9D7;
    background:  url("/dcms_media/image/top01-02.jpg") no-repeat 20% center / cover;
}
.custom-top-slide__slide--03{
    background-color: #C4EAF5;
    background:  url("/dcms_media/image/top01-03.jpg") no-repeat 30% center / cover;
}
.custom-top-slide__txtarea{
    position: relative;
    z-index: 1;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
}
.lib-fv__control{justify-content: flex-end;}

/* pagination */
.swiper-pagination-bullet{
    border: 1px solid var(--MAIN);
}

@media print, screen and (min-width: 992px) {
    .custom-top-slide__slide--01{
        background: url("/dcms_media/image/top01-01.jpg") no-repeat center top / cover;
    }
    .custom-top-slide__slide--02{
        background:  url("/dcms_media/image/top01-02.jpg") no-repeat center top / cover;
    }
    .custom-top-slide__slide--03{
        background:  url("/dcms_media/image/top01-03.jpg") no-repeat center top / cover;
    }
}