/* コンサルティング・トレーニングページ専用スタイル */

/* ヒーローセクション */
.consulting-hero {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.consulting-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.consulting-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* サービス概要 */
.service-overview {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* タブインターフェース */
.service-categories {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: #f59e0b;
    color: #f59e0b;
}

.tab-button.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-color: #f59e0b;
    box-shadow: var(--shadow-lg);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* コンサルティング領域 */
.consulting-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.area-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.area-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.area-card h3 {
    color: #d97706;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fef3c7;
}

.area-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.area-services h4 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.area-services ul {
    list-style: none;
    padding: 0;
}

.area-services ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.area-services ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

/* トレーニングカテゴリ */
.training-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.training-category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.training-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.training-category-card h3 {
    color: #d97706;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fef3c7;
}

.training-category-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.course-list {
    list-style: none;
    padding: 0;
}

.course-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.course-item:last-child {
    border-bottom: none;
}

.course-item h4 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.course-meta span {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.course-meta .duration {
    background-color: #dbeafe;
    color: #1e40af;
}

.course-meta .level {
    background-color: #d1fae5;
    color: #065f46;
}

.course-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* トレーニング形式 */
.training-formats {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.format-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.format-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.format-card h3 {
    color: #92400e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.format-card p {
    color: #78350f;
    line-height: 1.7;
}

/* 導入メリット */
.implementation-benefits {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 講師紹介 */
.instructor-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.instructor-profile {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.instructor-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #fef3c7;
}

.instructor-header h3 {
    color: #d97706;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--text-light);
    font-size: 1.125rem;
}

.instructor-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.credentials {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.credentials h4 {
    color: #92400e;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #78350f;
}

.credentials ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.specialties h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.specialties ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.specialties ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.specialties ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

/* カスタマイズトレーニング */
.custom-training {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.custom-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.custom-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.example-card {
    background: white;
    border: 2px solid #fef3c7;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.example-card:hover {
    border-color: #f59e0b;
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.example-card h3 {
    color: #d97706;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.example-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .category-tabs {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
    }

    .consulting-areas,
    .training-categories,
    .formats-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .specialties ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .consulting-hero h1 {
        font-size: 2rem;
    }

    .service-overview,
    .service-categories,
    .training-formats,
    .implementation-benefits,
    .instructor-section,
    .custom-training {
        padding: 3rem 0;
    }

    .area-card,
    .training-category-card,
    .instructor-profile {
        padding: 1.5rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }
}
