/* =============================================================================
   🏷️ SERVICE ELEMENTS - サービス要素専用コンポーネント
   ============================================================================= */

/* 🔧🔧🔧 【サービスロゴ】3つの専門職ロゴの合体表現 🔧🔧🔧 */
.service-logo {
    font-size: 2rem; /* 3つのロゴの基本サイズ */
    margin-bottom: -50px; /* service-nameに近づける */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -5px; /* ロゴ同士を重ねて合体感を演出 */
    position: relative;
}

/* 🔧🔧🔧 【3つの専門職ロゴ】個別配置とアニメーション 🔧🔧🔧 */

/* エンジニアロゴ */
.logo-engineer {
    position: relative;
    z-index: 3;
    transform: rotate(-10deg) scale(1.1);
    animation: logoFloat1 3s ease-in-out infinite;
}

/* 秘書ロゴ */
.logo-secretary {
    position: relative;
    z-index: 2;
    margin-left: -8px; /* 重ねて配置 */
    margin-right: -8px;
    transform: rotate(5deg) scale(1.0);
    animation: logoFloat2 3s ease-in-out infinite 0.5s;
}

/* 会計ロゴ */
.logo-accounting {
    position: relative;
    z-index: 1;
    transform: rotate(8deg) scale(1.05);
    animation: logoFloat3 3s ease-in-out infinite 1s;
}

/* 🔧🔧🔧 【サービス名】大きなサービス名表示 🔧🔧🔧 */
.service-name {
    font-size: 2.2rem; /* 3.2rem → 2.2rem に縮小 */
    font-weight: 700;
    margin-bottom: 0; /* 50px → 0 (gapで制御) */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* シャドウを軽減 */
    letter-spacing: 0.5px; /* 文字間隔を調整 */
}

/* 🔧🔧🔧 【サービスタグライン】サービス名の下の説明 🔧🔧🔧 */
.service-tagline {
    font-size: 1.1rem; /* 1.3rem → 1.1rem に縮小 */
    line-height: 1.4;
    opacity: 0.9;
    margin-top: 0; /* -80px → 0 (gapで制御) */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 🔧🔧🔧 【サービスサークル】共通スタイルのみ定義 🔧🔧🔧 */
/* 詳細な設定（サイズ、色、位置）は sections.css で管理されます */
.service-circle {
    /* 基本構造のみ定義 */
    text-decoration: none;
    color: inherit;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    cursor: pointer;
    /* sections.cssの設定を優先するため、詳細設定は削除 */
}

/* ホバーエフェクトも sections.css で管理されるため削除 */
/* .service-circle:hover は sections.css を参照 */

/* 🔧🔧🔧 【サービスサークルテキスト】基本設定のみ 🔧🔧🔧 */
/* 詳細なテキストスタイル（色、サイズ）は sections.css で管理されます */
.service-circle-text {
    text-align: center;
    font-weight: 600;
    /* font-size, line-height, color は sections.css で設定 */
}

/* 🔧🔧🔧 【サービスサークル配置】位置設定は sections.css で管理 🔧🔧🔧 */
/* 位置（top/left/right/bottom）の設定は sections.css に移動しました */
/* ここでは共通のスタイルのみ定義します */

/* 🔧🔧🔧 【光沢効果】サークルの光沢エフェクト 🔧🔧🔧 */
.service-circle:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 15px;
    top: 15px;
    left: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.service-circle:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 8px;
    bottom: 20px;
    right: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* 🔧🔧🔧 【その他サービス要素】 🔧🔧🔧 */
.service-visual-container {
    height: 600px;
    max-width: 95%;
    margin: 30px auto;
    padding: 40px 20px;
    position: relative;
}

.service-center-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #333;
}

.service-puchi-text {
    animation: puchiShakeMobile 1500ms ease-in-out infinite;    /* 🔧 3000ms → 1500ms (2倍速) */
} 