/* 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(3, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

/* Archive report cards: match the front page report cards. */
.report-cards-grid .report-example-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 14px 0 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(12, 39, 78, 0.1);
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-cards-grid .report-example-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(12, 39, 78, 0.13);
}

.report-cards-grid .example-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-indent: -9999px;
    overflow: hidden;
}

.report-cards-grid .report-card-thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 0;
    background: #fff;
}

.report-cards-grid .report-card-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.report-cards-grid .report-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0;
    padding: 18px 22px 12px;
}

.report-cards-grid .report-card-title {
    color: #081b3a;
    font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 1.3px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-cards-grid .report-description {
    display: none;
}

.report-cards-grid .report-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: #ff1f2d;
    font-family: "BIZ UDGothic", "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.8px;
    padding: 0 22px 22px;
}

.report-cards-grid .report-card-document-icon {
    position: relative;
    width: 15px;
    height: 19px;
    border: 2px solid currentColor;
    border-radius: 2px;
    flex: 0 0 auto;
    box-sizing: border-box;
}

.report-cards-grid .report-card-document-icon::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 7px;
    height: 7px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    background: #fff;
}

.report-cards-grid .report-card-document-icon::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    top: 8px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 5px 0 currentColor;
}

.report-cards-grid .report-card-cta-text {
    margin-left: auto;
}

.report-cards-grid .report-card-cta-arrow {
    font-size: 18px;
    line-height: 1;
}

.report-cards-grid .report-example-card:nth-child(even) .report-card-footer {
    color: #006aff;
}

/* レポートカードは共通スタイルを使用（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 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        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-cards-grid .report-example-card {
        min-height: 260px;
    }
    
    .report-content {
        padding-bottom: 60px;
    }
    
    .report-cards-wrapper {
        padding: 0 15px;
    }
    

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