/* =============================================================================
   🟦 DATA ENTRY SERVICE STYLES - データエントリーサービス専用スタイル
   ============================================================================= */

/* 🔧🔧🔧 【データエントリートップセクション】他のセクションと同じ設定 🔧🔧🔧 */
.dataentry-top-section {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

/* データエントリーセクション専用の基本設定 - PC専用 */
@media (min-width: 481px) {
    .service-dataentry .service-detail-content.dataentry-layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 60px !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 60px !important;        /* 他のセクションと同じ60px */
        flex-wrap: nowrap !important;
        box-sizing: border-box !important;
    }
}

/* タイトル（他のセクションと同じ） */
.dataentry-top-section .service-detail-title {
    flex: 0 0 100%;
    order: 1;
}

/* メッセージエリア（他のセクションと同じ42%幅） */
.dataentry-top-section .service-detail-message {
    flex: 0 0 42%;
    order: 2;
    align-self: flex-start;
    margin-top: 0;
}

/* サービスエリア（他のセクションと同じ55%幅） */
.dataentry-top-section .service-detail-right {
    flex: 0 0 55%;
    order: 3;
    align-self: flex-start;
    margin-top: 0;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    opacity: 0;
    transform: translateY(20px);  /* 🚨 X軸→Y軸に統一（子要素と同方向） */
    transition: all 1.2s ease-out;
}

/* 🔧🔧🔧 【カクつき根絶】データエントリーセクションの右側エリア表示アニメーション */
.dataentry-top-section .service-detail-right.visible {
    opacity: 1;
    transform: translateY(0);  /* 🚨 X軸→Y軸に統一（子要素と同方向） */
    /* 🚨 アニメーション削除 - 子要素のfeature-cardのみアニメーション */
}

/* データエントリーセクションの特徴カード（横並び） - PC専用 */
@media (min-width: 481px) {
    .service-dataentry .dataentry-layout .service-features {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: stretch !important;
        gap: 30px !important;    /* 🔧 40px → 30px 横並び時の間隔も縮小 */
        margin: -30px 0 0 0 !important;  /* 🔧 統一された位置調整 */
        width: 100% !important;
    }
}

/* 🔧🔧🔧 【データエントリー専用タイトル】他のセクションと統一 🔧🔧🔧 */
.dataentry-layout .service-detail-title {
    display: block !important;
    width: 100% !important;
    min-width: 100%;
    box-sizing: border-box;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(78, 205, 196, 0.8);
    line-height: 1.3;
    margin: 0;
    text-align: left;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 1s ease-out;
}

.dataentry-layout .service-detail-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 🔧🔧🔧 【データエントリー作業コンテナ】他のセクションと同じ幅・スタイル 🔧🔧🔧 */
.dataentry-work-container {
    position: relative;
    width: 100%;
    max-width: none;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* 🔧🔧 【カクつき対策】transitionを細分化して競合回避 */
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 🔧🔧 【GPU最適化】レンダリング最適化でスムーズ化 */
    will-change: transform;  /* GPU アクセラレーション明示 */
    transform: translateZ(0);  /* GPU レイヤー作成 */
}

.dataentry-work-container:hover {
    transform: scale(1.02) translateZ(0);  /* 🔧 GPUレイヤー維持しながらscale効果 */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 🔧🔧🔧 【カクつき根絶】データエントリー作業コンテナにふわふわアニメーション追加 */
.dataentry-work-container.visible {
    animation: float 6s ease-in-out infinite 3s;  /* 🔧🔧🔧 1.2s → 3s にさらに延長してカクつき完全解消 */
}

/* データエントリー作業の画像スタイル */
.dataentry-work-image {
    width: 100%;
    height: auto;
    max-width: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.dataentry-work-image:hover {
    transform: scale(1.02);
}

/* データエントリーセクション用プレースホルダー - コンテナ内に適応 */
.work-types-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.work-tag {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.work-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.work-tag.data-input {
    border-color: rgba(52, 152, 219, 0.4);
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.work-tag.document {
    border-color: rgba(155, 89, 182, 0.4);
    background: rgba(155, 89, 182, 0.15);
    color: #9b59b6;
}

.work-tag.office {
    border-color: rgba(241, 196, 15, 0.4);
    background: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
}

/* サービス別の色分け（データエントリー） */
.service-dataentry .service-detail-title {
    color: rgb(162, 155, 254);
}

/* 🚨🚨🚨 【重複削除】feature-card:hoverはcomponents.cssで一元管理 */
/* .service-dataentry .feature-card:hover は削除 - components.cssに統一 */ 