/* Market Research Report Archive Page Styles */

.report-main {
    padding-top: 80px;
    min-height: 100vh;
}

/* ヘッダーセクション */
.report-page-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    margin-top: 15px;
}

.report-title-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.report-main-title {
    font-family: "BIZ UDGothic", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 52px;
    letter-spacing: 4.32px;
    color: #333;
    margin-bottom: 20px;
    white-space: nowrap;
}

.report-sub-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin: 0;
    white-space: nowrap;
}

/* 装飾線 */
.report-decorative-lines {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    flex-grow: 1;
    height: 2px;
}

.report-decorative-lines .line {
    width: 50%;
    height: 100%;
}

.report-decorative-lines .blue-line {
    background-color: #28A7E1;
}

.report-decorative-lines .red-line {
    background-color: #E60012;
}

/* イメージセクション */
.report-image {
    width: 100%;
    margin: 0 0 60px;
}

.report-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
}

/* コンテンツエリア */
.report-content {
    padding-bottom: 80px;
}

/* レポートカードラッパー（ウェビナーと同じ構造） */
.report-cards-wrapper {
    margin-bottom: 60px;
    padding: 0 80px;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
}

/* レポート一覧グリッド（ウェビナーと統一） */
.report-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* レポートカードは共通スタイルを使用（webinar/style.cssから継承） */

/* カード説明文（レポート特有） */
.card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: auto;
}

/* ページネーション */
.report-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-numbers:hover {
    background-color: #2CA7DC;
    border-color: #2CA7DC;
    color: #fff;
}

.page-numbers.current {
    background-color: #2CA7DC;
    border-color: #2CA7DC;
    color: #fff;
    pointer-events: none;
}

.page-numbers.prev,
.page-numbers.next {
    font-weight: 600;
}

.page-numbers.dots {
    border: none;
    pointer-events: none;
}

/* 投稿がない場合 */
.no-reports {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    font-size: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .report-cards-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .report-main {
        padding-top: 60px;
    }
    
    .report-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 0 20px;
        margin: 20px auto 0;
    }
    
    .report-main-title {
        font-size: 20px;
        letter-spacing: 3.6px;
    }
    
    .report-sub-title {
        font-size: 14px;
    }
    
    .report-decorative-lines .line {
        height: 2px;
    }
    
    .report-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .report-content {
        padding-bottom: 60px;
    }
    
    .report-cards-wrapper {
        padding: 0 15px;
    }
    

    
    .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
} 