/* 過去公演 */
.swiper1 {
    margin: 200px auto 100px;
    width: 90%;
    z-index: 0;
    position: relative;
}

@media screen and (max-width:767px) {
    .swiper1 {
        width: 90%;
        margin: 150px auto 50px;
    }
}


.swiper1 .swiper-wrapper {
    width: 100%;
    z-index: 0;
}

.swiper1 .swiper-slide {
    height: 320px;
    /* 高さを指定 */
    width: auto !important;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
}

.swiper1 .slidenum {
    display: block;
    position: absolute;
    bottom: 45px;
    right: 0.5rem;
    font-size: 90px;
    color: yellow;
    font-weight: bold;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    z-index: 1;
}

.swiper1 .swiper-slide img {
    filter: grayscale(1);
    width: auto;
    height: 100%;
}

@media screen and (max-width:767px) {
    .swiper1 .swiper-slide {
        height: 200px;
    }

    .swiper1 .slidenum {
        bottom: 15px;
        right: 0.5rem;
        font-size: 70px;
    }
}

/*  boomerang */

.swiper2 {
    width: 80%;
    max-width: 500px;
    /* height: 300px; */
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    cursor: grab;
}
.swiper2:active{
    cursor: grabbing;
}

.swiper2 .swiper-wrapper {
    width: 300px;
    /* height: 300px; */
}

.swiper2 .swiper-slide {
    width: 300px;
    /* height: 320px; */
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
}

.swiper2 .swiper-slide img{
    width: 100%;
}
.swiper2 .swiper-pagination-bullets{
    position: initial;
    height: 30px;

}
.swiper2 .swiper-pagination-bullet-active{

    background-color: yellow;
}