/*--------------------------------------------------------------
StrengthsFinderページ専用CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. ヒーローセクション
--------------------------------------------------------------*/
.hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

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

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

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

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

/*--------------------------------------------------------------
2. StrengthsFinderとは？（特徴セクション）
--------------------------------------------------------------*/
.strengths-features {
    padding: 80px 20px;
    background: #f9f9f9;
}

.strengths-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

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

.strength-item {
    background: #fff;
    border: 8px solid #333;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.strength-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 0 rgba(0, 0, 0, 0.3);
}

.strength-item img {
    max-width: 150px;
    margin-bottom: 20px;
}

.strength-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.strength-item p {
    font-size: 1.1rem;
    color: #555;
}

/*--------------------------------------------------------------
3. 導入実績と効果
--------------------------------------------------------------*/
.case-studies {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 80px 20px;
}

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

.case-item {
    background: #fff;
    border: 8px solid #333;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.case-item img {
    max-width: 300px;
    margin-bottom: 20px;
}

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

/*--------------------------------------------------------------
4. 料金プラン
--------------------------------------------------------------*/
.price-plans {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.price-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.price-plans .plan {
    background-color: #fff;
    border: 8px solid #333;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.price-plans .plan img {
    max-width: 200px;
    margin-bottom: 20px;
}

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

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

.faq-item {
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    font-weight: bold;
    padding: 20px;
    background-color: #eee;
    cursor: pointer;
    line-height: 2;
    font-size: 1.2rem;
}

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

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

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

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

.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;
    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 #8c3d00;
}

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

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

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

.voice-card {
    width: 300px;
    background: #fff;
    border: 8px solid #333;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

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

/*--------------------------------------------------------------
8. フッター
--------------------------------------------------------------*/
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    line-height: 2.5;
    font-size: 0.9rem;
}

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

    .hero p {
        font-size: 1.1rem;
    }

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

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

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