@charset "utf-8";
* { 
  box-sizing: border-box;
  /* background-color: #bee892; */
}


/* ===========================
swiper
============================ */
.swiper-contents {
    position: relative;
    width: 100%;
}

.swiper {
    width: 90%;
    margin: 300px auto 0 auto;
}

.swiper-slide {
    text-align: center;
    width: 200px;
    height: 200px;
}

.swiper-slide-inner{
    margin-bottom: 25px;
    margin-right: 25px;
    box-shadow: 8px 8px 16px 0px rgb(0 0 0 / 35%);
}

.swiper-slide-inner img{
    width: 100%;
    height: 200px;
    vertical-align: bottom;
    object-fit: cover;
}

.swiper-button-lock{
    display: block !important;
}

.swiper-pagination {
    bottom: -5% !important;
}

.swiper-button-prev{
    left: 0 !important;
}



/* ===========================
swiper レスポンシブ
============================ */

@media screen and (max-width:730px) {
    .swiper-button-prev{
        left: -5px !important;
    }
}

@media screen and (max-width:374px){
    .swiper {
        width: 100%;
    }
}