/* 転職コンサルティングページ用スタイル */

/* ヒーローセクション */
.consulting-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.consulting-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 60px;
    border-radius: 12px;
}

.consulting-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.consulting-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.consulting-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.consulting-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* セクション共通スタイル */
.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* エージェント比較セクション */
.agent-comparison-section {
    margin-bottom: 80px;
}

.agent-table {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.agent-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: center;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.agent-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-text {
    background: #0066cc;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    min-width: 100px;
}

.agent-info {
    flex: 1;
}

.agent-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.agent-rating {
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 12px;
}

.agent-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.agent-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0f8ff;
    color: #0066cc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.agent-button {
    background: #0066cc;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.agent-button:hover {
    background: #0052a3;
}

/* 選び方のポイントセクション */
.selection-points-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-bottom: 80px;
    border-radius: 12px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.point-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.point-card:hover {
    transform: translateY(-5px);
}

.point-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.point-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.point-description {
    color: #666;
    line-height: 1.6;
}

/* 転職活動の流れセクション */
.process-section {
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* FAQセクション */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
    border-radius: 12px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: #0066cc;
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.faq-answer {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .consulting-title {
        font-size: 1.8rem;
    }
    
    .consulting-subtitle {
        font-size: 1rem;
    }
    
    .agent-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .agent-logo {
        justify-self: center;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .consulting-wrapper {
        padding: 0 15px;
    }
    
    .consulting-hero {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .consulting-title {
        font-size: 1.5rem;
    }
    
    .agent-card {
        padding: 20px;
    }
    
    .point-card {
        padding: 20px;
    }
}
