/* Market Research Report Section for Front Page */

#report-section {
    padding: 0px 0px 84px 0px;
    background-color: #ffffff;
    position: relative;
    margin-bottom: -84px;
}

/* 既存のexamplesクラスを再利用（ウェビナーと同じスタイル） */
#report-section .examples {
    width: 100%;
    margin: 0 auto;
}

#report-section .examples-container {
    width: 100%;
    padding-top: 90px;
}

#report-section .examples-content {
    display: flex;
    align-items: center;
    padding: 0 100px 0 90px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

#report-section .examples-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

#report-section .examples-grid-line {
    margin: 0 28px;
    flex-shrink: 0;
    width: 4px;
    height: 100px;
}

#report-section .examples-text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#report-section .examples-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

#report-section .examples-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* カードグリッド */
#report-section .examples-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 90px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

/* レポートカードのスタイル調整（TOPページ専用） */
#report-section .report-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px;
    gap: 10px;
    position: relative;
}

#report-section .report-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#report-section .report-card:active {
    transform: translateY(0);
    box-shadow: none;
}

#report-section .report-card-link {
    text-decoration: none;
    color: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#report-section .report-card-thumbnail {
    width: 100%;
    aspect-ratio: 1200 / 630;
    overflow: hidden;
    position: relative;
}

#report-section .report-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#report-section .card-divider {
    display: flex;
    padding-bottom: 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-bottom: 2px solid #333;
}

#report-section .report-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 一覧を見るボタン */
#report-section .view-all-button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 80px;
}

#report-section .view-all-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 51px;
    background: #333;
    text-decoration: none;
    height: 50px;
    min-width: 295px;
    padding: 0 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#report-section .view-all-button:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#report-section .view-all-button:active {
    transform: translateX(0);
    box-shadow: none;
}

#report-section .view-all-button span {
    color: #fff;
    text-align: center;
    font-family: "BIZ UDGothic";
    font-size: 16px;
    font-weight: 700;
    line-height: 28.9px;
    letter-spacing: 3.2px;
}

#report-section .view-all-button .arrow-icon {
    width: 20px;
    height: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    #report-section .examples-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    #report-section {
        padding: 60px 0;
    }
    
    #report-section .examples-container {
        margin-bottom: 40px;
    }
    
    #report-section .examples-title {
        font-size: 24px;
    }
    
    #report-section .examples-subtitle {
        font-size: 16px;
    }
    
    #report-section .examples-description {
        font-size: 14px;
    }
    
    #report-section .examples-cards-grid {
        grid-template-columns: 1fr;
        padding: 30px 35px;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    #report-section .report-card {
        padding: 27px;
    }
    
    #report-section .card-divider {
        padding-bottom: 15px;
    }
    
    #report-section .view-all-button {
        justify-content: flex-start;
        gap: 11px;
        background: #333;
        text-decoration: none;
        height: 42px;
        min-width: 237px;
        padding: 0 20px;
        padding-left: 60px;
    }
    
    #report-section .view-all-button span {
        font-size: 12px;
        line-height: 21.675px;
        letter-spacing: 2.4px;
    }
} 