/*--------------------------------------------------------------
Business Consulting ページ専用 CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. ヒーローセクション
--------------------------------------------------------------*/
.business-hero {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    background-image: url('/wp-content/themes/Freelance_Theme/assets/images/business/bg-business-hero.svg');
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid #333;
}

.business-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.business-hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.business-hero img {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.business-btn {
    display: inline-block;
    background-color: #e67e22;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 8px 0 #b35400;
    transition: all 0.3s ease;
}

.business-btn:hover {
    background-color: #d35400;
    transform: translateY(2px);
    box-shadow: 0 4px 0 #8e440d;
}

/*--------------------------------------------------------------
2. セクション共通
--------------------------------------------------------------*/
.business-section,
.business-section-alt {
    padding: 80px 20px;
}

.business-section {
    background: #ffffff;
}

.business-section-alt {
    background: #f4f6f7;
}

.business-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

/*--------------------------------------------------------------
3. グリッドレイアウト
--------------------------------------------------------------*/
.features-grid,
.case-studies,
.price-plans {
    display: grid;
    gap: 20px;
}

.features-grid {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.case-studies {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .case-studies {
        grid-template-columns: repeat(2, 1fr);
    }
}

.price-plans {
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .price-plans {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*--------------------------------------------------------------
4. ボックス共通
--------------------------------------------------------------*/
.feature-block,
.case-item,
.plan {
    border: 8px solid #333;
    border-radius: 16px;
    padding: 30px 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-block:hover,
.case-item:hover,
.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 0 rgba(0, 0, 0, 0.3);
}

.feature-block img,
.case-item img,
.plan img {
    max-width: 300px;
    width: 100%;
    margin-bottom: 20px;
}

.feature-block h3,
.case-item h3,
.plan h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-block p,
.case-item p,
.plan p {
    font-size: 1.1rem;
    color: #555;
}

/*--------------------------------------------------------------
5. FAQ アコーディオン
--------------------------------------------------------------*/
.faq-section {
    padding: 80px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.faq-item {
    border: 8px solid #333;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-weight: bold;
    font-size: 1.3rem;
    padding: 20px;
    background-color: #ffcc00;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #ffb300;
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: #f9f9f9;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/*--------------------------------------------------------------
6. 最終CTAセクション
--------------------------------------------------------------*/
.final-cta {
    padding: 100px 20px;
    text-align: center;
    background-color: #34495e;
    color: #fff;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    margin-bottom: 50px;
    font-size: 1.3rem;
}

.final-cta .cta-button {
    background-color: #e67e22;
    color: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 8px 0 #b35400;
    transition: all 0.3s ease;
}

.final-cta .cta-button:hover {
    background-color: #d35400;
    transform: translateY(2px);
    box-shadow: 0 4px 0 #8e440d;
}

/*--------------------------------------------------------------
7. お客様の声
--------------------------------------------------------------*/
.testimonials {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.voice-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.voice-card {
    width: 300px;
    border: 8px solid #333;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 0 rgba(0, 0, 0, 0.3);
}

.voice-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
8. フッター
--------------------------------------------------------------*/
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    line-height: 2.5;
    border-top: 8px solid #ffcc00;
}

/*--------------------------------------------------------------
9. レスポンシブデザイン
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .business-hero h1 {
        font-size: 2rem;
    }

    .business-hero p {
        font-size: 1rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .features-grid,
    .case-studies,
    .price-plans {
        grid-template-columns: 1fr;
    }
}