@charset "utf-8";

/*
Theme Name: 3club-medaka
*/

/*===================================
 *  カルーセルswiper
 ====================================*/

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-card {
    padding: 40px 10px 40px 10px;
    margin-bottom: 60px;
}

/* ナビゲーション */

.swiper-button-next::after {
    content: 'next';
    background-color: #f1f1f1;
    border: none;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.swiper-rtl,
.swiper-button-prev::after {
    content: 'prev';
    background-color: #f1f1f1;
    border: none;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
    
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: #604b0e;
}

.swiper-button-next {
    right: 30px;
    left: auto;
}

.swiper-button-prev {
    left: 30px;
    right: auto;
}
    
/* ページネーションドット */

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
    border: 2px solid #604b0e;
}

.swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 50%;
    background: #604b0e;
    opacity: 1;
    border: 2px solid #604b0e;
}





/*===================================
 * 490px用メディアクエリ
 ====================================*/ 
@media screen and (max-width:490px) {
    .swiper-card {
    padding: 30px 6px 30px 6px;
    margin-bottom: 50px;
    }
    
    .swiper-button-next {
    right: 10px;
    left: auto;
    }

    .swiper-button-prev {
    left: 10px;
    right: auto;
    }
    

}/* 画面サイズ490pxここまで*/
