/* カスタムカルーセルスタイル */

.custom-carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 9%;
}

.custom-post-swiper {
    width: 100%;
    padding: 1.25rem 0 6rem;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.carousel-card {
    width: 100%;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-card h3.carousel-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 1.5rem 1rem;
    color: rgb(51, 51, 51);
    line-height: 1.4;
}

.carousel-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    background-color: rgb(30, 18, 85);
}

.tag-item {
    color: #fff;
    padding: .31rem .75rem;
    font-size: 1.2rem;
    font-weight: bold;
}

/* アイキャッチ画像 */
.carousel-thumbnail {
    width: 100%;
}

.carousel-thumbnail-img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 0.707;
    display: block;
    object-fit: contain;
    background-color: black;
}

.carousel-performers {
    font-size: 1.7rem;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.performer-item {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 1.4rem;
    color: #333;
}

.carousel-button {
    margin-top: auto;
}

.read-more-btn {
    display: block;
    background: #ff6e49;
    color: #fff;
    padding: .5rem 1.88rem;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
}

.read-more-btn:hover {
  color: #fbdcd4;
  text-decoration: none;
}


/* Swiperのナビゲーションボタン */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
    width: 2.75rem;
    height: 2.75rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

/* ページネーション */
.swiper-pagination {
    bottom: 0important;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .custom-post-swiper {
        padding: 1.25rem 1.88rem 3.75rem;
    }
    
    .carousel-card {
        padding: 1.25rem;
    }
    
    .carousel-title {
        font-size: 1.25rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.25rem;
    }
}