@import "./import.css";
/*---------------------------
slider
----------------------------*/
.swiper-container {
    width: 100%;
    height: 440px;
    padding: 1.5em 0 1.8em;
    /* background: url(../img/index/mv_bg01.png) repeat-x top; */
    background-color: var(--kyushu-base);
    &.gunma {
        background-color: var(--gunma-base);
    }
    &.tochigi {
        background-color: var(--tochigi-base);
    }
}

@media screen and (max-width: 768px) {
    .swiper-container {
        /*sp*/
        height: auto;
        padding: 0;
    }
}

.swiper-container .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    background-size: auto 375px !important;
}

@media screen and (max-width: 1440px) {
    .swiper-container .swiper-slide {
        /*sp*/
        background-size: 100% !important;
    }
}

@media screen and (max-width: 1023px) {
    .swiper-container .swiper-slide {
        /*sp*/
        background-size: auto 375px !important;
    }
}

@media screen and (max-width: 768px) {
    .swiper-container .swiper-slide {
        /*sp*/
        background-size: contain !important;
        height: 0;
        padding-top: calc(100% / 142 * 75);
        /* background-position: center !important; */
    }
}

.swiper-container .swiper-slide .bar {
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}

.swiper-container .swiper-slide .bar h2 {
    width: 45%;
    background: url(../img/index/mv_title_bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0.9em 1em 0.9em 2em;
    font-size: 1em;
    color: #fff;
    text-align: left;
}

@media screen and (max-width: 640px) {
    .swiper-container .swiper-slide .bar h2 {
        /*sp*/
        font-size: 0.8rem;
        width: 60%;
        padding: 0.5rem;
    }
}

.swiper-container .swiper-slide .bar .red {
    width: 28%;
    background: url(../img/index/mv_nav_bg_red.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: auto;
    text-align: right;
    padding: 0.9em 2em 0.9em 1em;
    font-size: 1em;
    color: #fff;
    text-decoration: none;
}

.swiper-container .swiper-slide .bar .blue {
    width: 28%;
    background: url(../img/index/mv_nav_bg_blue.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: auto;
    text-align: right;
    padding: 0.9em 2em 0.9em 1em;
    font-size: 1em;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 640px) {
    .swiper-container .swiper-slide .bar .btn {
        /*sp*/
        font-size: 0.8rem;
        width: 40%;
        padding: 0.5rem;
    }
}

.swiper-container .swiper-slide a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
/*# sourceMappingURL=slider.css.map */

/* ページネーションのカラー上書き */
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--kyushu-main) !important;
}
/* 群馬 */
.swiper-pagination.gunma .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--gunma-main) !important;
}
/* 栃木 */
.swiper-pagination.tochigi .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--tochigi-main) !important;
}