/**
 * Book Proposal LP - Slider Stylesheet
 * スライダー用CSS
 */

/* ========================================
   書籍レビュースライダー専用CSS
   ======================================== */

/* レビュースライダーセクション */
.review-slider-section {
    background-color: var(--color-bg-white);
    padding: 100px 0;
}

.review-slider-section .container-wide {
    max-width: 100%;
    padding: 0;
}

.review-slider-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 8px;
    padding: 0 20px;
}

.review-slider-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
    padding: 0 20px;
}

/* Swiperコンテナ */
.swiper {
    width: 100%;
    padding: 40px 20px 60px;
}

/* レビューカード */
.review-card {
    background-color: #ffffff;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* レビューヘッダー（アバター+名前） */
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.reviewer-avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #8B8B8B;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 13px;
    font-weight: 700;
    color: #0F1111;
}

/* レビュー評価エリア */
.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* 星評価 */
.review-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFA41C;
    font-size: 16px;
    line-height: 1;
}

.star.empty {
    color: #E5E7EB;
}

/* レビュータイトル */
.review-title {
    font-size: 14px;
    font-weight: 700;
    color: #0F1111;
    margin: 0;
    line-height: 1.4;
}

/* レビューメタ情報（日付） */
.review-meta {
    margin-bottom: 4px;
}

.review-date {
    font-size: 12px;
    color: #565959;
}

/* レビュー本文 */
.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #0F1111;
    margin-bottom: 8px;
}

/* 役立った情報 */
.review-helpful {
    margin-top: 8px;
}

.review-helpful span {
    font-size: 12px;
    color: #565959;
}

/* Swiperナビゲーション */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
    background-color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

/* Swiperページネーション */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #D1D5DB;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    width: 30px;
    border-radius: 6px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .review-slider-section {
        padding: 60px 20px;
    }

    .review-slider-title {
        font-size: 24px;
    }

    .review-card {
        padding: 20px;
    }

    .review-title {
        font-size: 16px;
    }

    .review-text {
        font-size: 13px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}
