/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* 横スクロールを防ぐ */
}

/* ヘッダーとの競合を避けるための調整は共通ヘッダーCSSで管理 */

/* 変数定義 */
:root {
    /* カラーパレット（Figmaから抽出） */
    --primary-blue: #2C5AA0;
    --orange-accent: #FF6B35;
    --orange-gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --green-accent: #4CAF50;
    --green-gradient: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
    --purple-accent: #9C27B0;
    --purple-gradient: linear-gradient(135deg, #9C27B0 0%, #E1BEE7 100%);
    
    /* グレースケール */
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F0F0F0;
    --gray-200: #E0E0E0;
    --gray-400: #CCCCCC;
    --gray-600: #666666;
    --gray-700: #555555;
    --gray-800: #333333;
    --dark-blue: #1A365D;
    
    /* グラデーション背景 */
    --bg-gradient-light: linear-gradient(135deg, #F8F9FA 0%, #F0F0F0 100%);
    --bg-gradient-blue: linear-gradient(135deg, #2C5AA0 0%, #1A365D 100%);
    
    /* シャドウ */
    --shadow-sm: 0px 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0px 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-orange: 0px 8px 25px rgba(255, 107, 53, 0.4);
    
    /* フォント */
    --font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    
    /* ブレークポイント */
    --mobile: 768px;
    --tablet: 1024px;
    --desktop: 1200px;
}

/* ベーススタイル */
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden; /* 横スクロールを完全に防ぐ */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* セクション共通スタイル */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2C5AA0;
    margin-bottom: 10px;
}

.section-title .subtitle {
    font-size: 40px;
    font-weight: 700;
    color: #2C5AA0;
    margin-bottom: 10px;
}

.section-title .icon {
    width: 21px;
    height: 20px;
    margin: 0 auto 10px;
    background: linear-gradient(180deg, #2C5AA0 0%, #1A365D 100%); /* ブルーのグラデーション */
    border-radius: 50%;
}

/* 既存のセクションタイトルスタイル（後方互換性のため） */
.section-title-old {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    line-height: 1.2;
}

.btn-primary {
    background: rgba(37, 82, 186, 0.9); /* 半透明化 */
    backdrop-filter: blur(10px); /* 背景ぼかし */
    -webkit-backdrop-filter: blur(10px); /* Safari対応 */
    border: 1px solid rgba(255, 255, 255, 0.2); /* 薄い境界線 */
    color: var(--white);
    box-shadow: 0px 8px 25px rgba(37, 82, 186, 0.4); /* シャドウを#2552BAに調整 */
}

.btn-primary:hover {
    background: rgba(37, 82, 186, 0.7); /* ホバー時により透明 */
    transform: translateY(-2px);
    box-shadow: 0px 12px 30px rgba(37, 82, 186, 0.5); /* ホバー時のシャドウも#2552BAに調整 */
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-primary-large {
    background: var(--orange-gradient);
    color: var(--white);
    padding: 24px 50px;

    font-weight: 700;
    box-shadow: 0px 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 24px 50px;
    font-size: 1.96rem;
    font-weight: 700;
}

/* ヒーローセクション */
.hero {
    /* デフォルト：グラデーション背景 */
    background: var(--bg-gradient-blue);
    
    /* 背景画像設定 */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: var(--white);
    text-align: left; /* 左揃えに変更 */
    padding: 140px 0 150px; /* 上部パディングを調整（ヘッダー分を考慮） */
    position: relative;
    overflow: hidden;
    transform: none;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

/* 背景画像パターンB（採用済み） */
.hero {
    background-image: url('https://10-5.jp/wp-content/uploads/2025/07/hero-background.webp') !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    background-blend-mode: overlay !important;
}

.hero-badge {
    background: rgba(37, 82, 186, 0.9); /* #2552BAに変更 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 4rem;
    display: inline-block;
    box-shadow: 0px 5px 20px rgba(37, 82, 186, 0.3); /* シャドウも#2552BAに調整 */
    position: absolute;
    top: 11%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(37, 82, 186, 0.6); /* ホバー時も#2552BAに調整 */
    transform: translateX(-50%) translateY(-2px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px; /* コンテンツ幅を制限 */
    margin-left: 0; /* 左揃え */
    text-align: left; /* 左揃え */
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #3C3C7F; /* 3C3C7Fに設定 */
    text-shadow: 0px 2px 8px rgba(60, 60, 127, 0.2); /* 3C3C7Fのシャドウに調整 */
    text-align: left; /* 左揃え */
}

.hero-subtitle-container {
    margin-bottom: 5rem; /* 下マージンを増やしてボタンとの間隔を空ける */
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 4px;
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
    display: block;
    max-width: 100%;
    text-align: left; /* 左揃え */
    color: #3C3C7F;
    font-weight: 700;
}

/* サブタイトル内の強調表現 */
.hero-subtitle-highlight {
    background: linear-gradient(135deg, #0085CA, #51419A); /* 右上から左下への斜方向グラデーション */
    color: var(--white); /* 白色テキスト */
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 4px 12px; /* パディングを増やしてボックス感を強調 */
    /* border-radius: 8px; */ /* 角丸を少し大きく */
    text-shadow: none; /* 影を削除 */
    box-shadow: 0px 2px 6px rgba(0, 133, 202, 0.3); /* シャドウを#0085CAに調整 */
}

/* 下線アニメーション効果を削除 */
.hero-subtitle-highlight::after {
    display: none;
}

/* 光る効果のアニメーション */
@keyframes highlightGlow {
    0% {
        opacity: 0.6;
        transform: scaleX(0.95);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* 小さいテキスト用のクラス */
.small-txt {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: flex-start; /* 左揃えに変更 */
    flex-wrap: wrap;
    position: absolute;
    bottom: 30px; /* 下からの距離を増やす */
    left: 35%;
}

/* 募集要項セクション（スライダー対応） */
.jobs {
    background: var(--bg-gradient-light);
    padding: 80px 0;
}

/* スライダーコンテナ */
.jobs-slider-container {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden; /* 横スクロールを防ぐ */
    padding: 0 60px; /* 左右に余白を作ってボタン用のスペース確保 */
    max-width: 100%; /* 画面幅を超えないように制限 */
}

.jobs-slider {
    display: flex;
    overflow: hidden; /* 横スクロールを防ぐ */
    transition: transform 0.3s ease;
    width: 300%; /* 3つのスライド分の幅 */
    /* margin-left: -60px; パディング分を相殺 */
}

.job-slide {
    min-width: 33.333%;
    width: 33.333%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.job-card-detailed {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    max-width: 480px;
    width: 100%;
    opacity: 0.7;
    transform: scale(0.95);
}

.job-card-detailed:hover {
    transform: translateY(-3px) scale(0.95);
}

/* アクティブなカードのホバーエフェクト */
.job-card-detailed.active:hover {
    transform: translateY(-5px) scale(1) !important;
}

.job-header {
    text-align: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 20px;
}

.job-icon {
    height: 60px;
    width: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
}

.icon-bg {
    width: 100%;
    height: 100%;
}

.icon-green {
    background: var(--green-gradient);
}

.icon-orange {
    background: var(--orange-gradient);
}

.icon-purple {
    background: var(--purple-gradient);
}

.job-position {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 10px 0;
}

.job-salary-range {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D4 100%);
    color: var(--orange-accent);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
    font-size: 1.33rem;
}

.job-content {
    padding: 0;
}

.job-section {
    margin-bottom: 20px;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gray-200);
}

.job-requirements,
.job-welcome {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements li,
.job-welcome li {
    padding: 4px 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 18px;
    font-size: 1rem;
    line-height: 1.4;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
}

.job-welcome li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--orange-accent);
    font-weight: bold;
}

/* 募集要項ボタン */
.job-action {
    margin-top: 20px;
    text-align: center;
}

.job-detail-btn {
    background: linear-gradient(135deg, var(--orange-accent), #FF8A50);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 19.6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 50, 0.3);
    text-decoration: none; /* リンクの下線を削除 */
    display: inline-block; /* インラインブロックでボタンらしく */
}

.job-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 50, 0.4);
    background: linear-gradient(135deg, #FF8A50, var(--orange-accent));
    color: white; /* ホバー時も白色を維持 */
    text-decoration: none; /* ホバー時も下線なし */
}

.job-detail-btn:active {
    transform: translateY(0);
    color: white; /* アクティブ時も白色を維持 */
}

.job-detail-btn:focus {
    outline: 2px solid var(--orange-accent);
    outline-offset: 2px;
    color: white; /* フォーカス時も白色を維持 */
    text-decoration: none; /* フォーカス時も下線なし */
}

/* スライダーナビゲーション */
.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.slider-btn {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
    position: relative;
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--orange-accent);
}

/* 共通情報 */
.job-common-info {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-top: 30px;
}

.common-title {
    font-size: 1.96rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

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

.common-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--orange-accent);
    display: inline-block;
}

.common-item p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* 未来比較セクション */
.future {
    padding: 100px 0;
}

.comparison {
    /* background: var(--bg-gradient-light); */
    /* border-radius: 25px; */
    padding: 30px 60px 60px;
    /* box-shadow: var(--shadow-lg); */
    display: flex;
    align-items: center;
    gap: 50px;
}

.comparison-before,
.comparison-after {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: var(--shadow-md);
}

.comparison-before {
    border-left: 5px solid #FF5722;
}

.comparison-after {
    border-left: 5px solid var(--green-accent);
}

.comparison-title {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.comparison-before .comparison-title {
    color: #FF5722;
}

.comparison-after .comparison-title {
    color: var(--green-accent);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    /* font-size: 1.2rem; */
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-arrow {
    font-size: 4rem;
    color: var(--orange-accent);
    font-weight: 300;
}

/* あなたの次のキャリア */
.next-career {
    padding: 100px 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #F0F8FF 100%);
}

.career-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.career-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.career-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    width: 2px;
    height: calc(100% + 30px);
    background: linear-gradient(to bottom, var(--orange-accent), transparent);
}

.step-marker {
    flex-shrink: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-orange);
}

.step-content {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--orange-accent);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.4;
}

.step-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    /* font-size: 1.5rem; */
}

.step-highlight {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFBF0 100%);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--orange-accent);
}

.step-highlight h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--orange-accent);
    margin-bottom: 10px;
}

.step-highlight p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
    /* font-size: 1.3rem; */
}

/* 強みセクション */
.strengths {
    background: var(--bg-gradient-light);
    padding: 100px 0;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.strength-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

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

.strength-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.strength-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.strength-card-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.strength-card-header {
    margin-bottom: 20px;
}

.strength-card-badge {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFA726 100%);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.strength-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.strength-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
}

.strength-card-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-align: left;
}

.strength-card-footer {
    margin-top: auto;
}

.strength-card-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.strength-card-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.strength-card-arrow {
    width: 24px;
    height: 24px;
    margin-left: auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strength-card {
        min-height: 350px;
    }
    
    .strength-card-content {
        padding: 30px 25px;
        text-align: center;
    }
    
    .strength-card-title {
        font-size: 1.3rem;
        padding-bottom: 12px;
    }
    
    .strength-card-title::after {
        width: 50px;
        height: 1.5px;
    }
    
    .strength-card-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
}

/* 会社概要セクション */
.company {
    padding: 100px 0;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(485px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.company-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.company-image {
    height: 200px;
    background: var(--gray-200);
}

.office-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E0E0E0 0%, #F0F4F8 100%);
    position: relative;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-200);
}

.company-card-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-blue);
    padding: 25px 25px 0;
}

.company-card-text {
    padding: 10px 25px 25px;
    color: var(--gray-600);
    line-height: 1.6;
}

.company-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stat-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.stat-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    background: var(--gray-100);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--orange-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.mission-card {
    background: var(--white);
    border-left: 5px solid var(--green-accent);
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: var(--shadow-sm);
}

.mission-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mission-text {
    line-height: 1.8;
    color: var(--gray-700);
}

.clients-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.client-card {
    background: var(--white);
    border-radius: 15px;
    padding: 19px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    color: var(--gray-800);
}

/* 年収セクション */
.salary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 100px 0;
}

.salary .section-title,
.salary .section-subtitle {
    color: var(--white);
}

.salary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.salary-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.salary-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}

.salary-info {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 5px;
}

.salary-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.salary-image {
    width: auto;
    height: 80%;
    /* border-radius: 50%; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--gray-100); */
    flex-shrink: 0;
    position: absolute;
    right: 5%;
    bottom: 0;
}

.career-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salary-note {
    padding: 20px;
    text-align: center;
    margin-top: 1rem;
}

.salary-note p {
    line-height: 1.8;
    color: var(--white);
}

/* Q&Aセクション */
.qa {
    background: var(--gray-50);
    padding: 100px 0;
}

.qa-list {
    max-width: 1000px;
    margin: 0 auto;
}

.qa-item {
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

/* PC版: 横並び配置（候補者・採用担当者が横に並ぶ） */
@media (min-width: 769px) {
    .qa-question,
    .qa-answer {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 2rem;
    }
    
    .qa-answer {
        margin-bottom: 0;
    }
    
    .qa-person {
        min-width: 120px;
        flex-shrink: 0;
    }
}

/* タブレット・スマホ版: 縦並び配置 */
@media (max-width: 768px) {
    .qa-question,
    .qa-answer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 2rem;
    }
    
    .qa-answer {
        margin-bottom: 0;
    }
}

.qa-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

/* PC版でのqa-personスタイル調整 */
@media (min-width: 769px) {
    .qa-person {
        align-items: flex-start;
        text-align: left;
    }
    
    .qa-name {
        text-align: left;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

.qa-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 8px;
    overflow: hidden;
}

.qa-avatar img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qa-name {
    font-size: 0.9rem;
    text-align: center;
    color: var(--gray-600);
    font-weight: 500;
}

.qa-bubble {
    max-width: 600px;
    width: 100%;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    box-shadow: none;
}

/* PC版でのバブルスタイル調整 */
@media (min-width: 769px) {
    .qa-bubble {
        max-width: none;
        flex: 1;
        margin-left: 0;
    }
}

.candidate-bubble {
    background: #FFF8F0;
    border: 1px solid #FFE8D4;
}

.recruiter-bubble {
    background: #F0F4F8;
    border: 1px solid #E1E8ED;
}

.qa-bubble p {
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* キャリアステップセクション */
.career-steps {
    padding: 100px 0;
    background: var(--white);
}

.career-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.career-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border-top: 4px solid transparent;
}

.career-card.entry-level {
    border-top-color: var(--green-accent);
}

.career-card.mid-level {
    border-top-color: var(--orange-accent);
}

.career-card.senior-level {
    border-top-color: var(--purple-accent);
}

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

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

.career-title {
    font-size: 1.68rem;
    font-weight: 500;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: 1rem;
}

.career-role {
    font-size: 1.96rem;
    font-weight: 300;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 0.5rem;
}

.career-salary {
    background: var(--orange-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    text-align: center;
    margin: 0 auto 1.5rem;
    width: fit-content;
    font-weight: 500;
}

.career-description {
    margin-bottom: 2rem;
}

.career-description p {
    color: var(--gray-600);
    line-height: 1.7;
}

.career-growth h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.career-growth ul {
    list-style: none;
}

.career-growth li {
    padding: 6px 0;
    color: var(--gray-600);
    font-size: 1.3rem;
}

.career-note {
    background: linear-gradient(135deg, #F0F4F8 0%, #E8F4F8 100%);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    margin-top: 3rem;
}

.career-note h3 {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.career-note p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* プロジェクト事例セクション */
.projects {
    background: var(--bg-gradient-light);
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    position: relative;
    border-left: 4px solid transparent;
}

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

.project-card.left-accent {
    border-left-color: var(--green-accent);
}

.project-card.right-accent {
    border-left-color: var(--primary-blue);
}

.project-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.project-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* 働きやすさセクション */
.work-environment {
    padding: 100px 0;
    background: var(--bg-gradient-light);
}

.work-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.benefit-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* 採用フローセクション */
.recruitment-flow {
    background: var(--white);
    padding: 100px 0;
}

.flow-philosophy {
    margin-bottom: 4rem;
}

.philosophy-card {
    background: linear-gradient(135deg, #F0F4F8 0%, #E8F4F8 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.philosophy-card h3 {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.philosophy-card p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.5rem;
}

.flow-timeline {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    width: 2px;
    height: 60px;
    background: var(--gray-200);
}

.timeline-marker {
    flex-shrink: 0;
}

.marker-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 500;
    box-shadow: var(--shadow-orange);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--orange-accent);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.timeline-details {
    display: grid;
    gap: 8px;
}

.detail-item {
    display: flex;
    gap: 10px;
}

.detail-label {
    font-weight: 500;
    color: var(--gray-700);
    min-width: 50px;
}

.detail-value {
    color: var(--gray-600);
}

.flow-note {
    max-width: 600px;
    margin: 0 auto;
}

.note-card {
    background: rgba(44, 90, 160, 0.05);
    border: 1px solid rgba(44, 90, 160, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.note-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.note-card ul {
    list-style: none;
}

.note-card li {
    padding: 6px 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 20px;
}

.note-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
}



/* CTAセクション */
.cta {
    background: var(--bg-gradient-blue);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.cta-title {
    font-size: 2rem;
    /* font-weight: 300; */
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-subtitle {
    /* font-size: 2.1rem; */
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}



/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        padding: 60px 0 100px; /* ヘッダー分を考慮して上部パディングを調整 */
        text-align: left; /* 左揃えを維持 */
    }
    
    .hero-content {
        max-width: 100%; /* モバイルでは幅を最大に */
        margin-left: 0; /* 左揃えを維持 */
        text-align: left; /* 左揃えを維持 */
    }
    
    .hero-title {
        font-size: 3.5rem;
        text-align: left; /* 左揃えを維持 */
        line-height: 1.3; /* モバイルでは行間を少し広く */
    }
    
    .hero-subtitle {
        font-size: 1.82rem;
        text-align: left; /* 左揃えを維持 */
        padding: 0; /* パディングを削除 */
        max-width: 100%; /* モバイルでは幅を最大に */
    }
    
    .hero-buttons {
        justify-content: flex-start; /* 左揃えを維持 */
    }
    
    /* モバイルでバッジとボタンをより小さく */
    .hero-badge {
        padding: 10px 25px;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        top: 20px; /* モバイルでは上部をより狭く */
    }
    
    .hero-content {
        margin-top: 80px; /* モバイルでは間隔を狭く */
    }
    
    .hero-subtitle-highlight {
        font-size: 1.3rem; /* サブタイトルと同じサイズ */
        padding: 3px 10px; /* モバイルでパディングを調整 */
    }
    
    .small-txt {
        font-size: 0.8rem; /* タブレットでさらに小さく */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start; /* 左揃えを維持 */
    }
    
    .jobs-slider-container {
        padding: 0 10px;
        overflow: hidden; /* 横スクロールを防ぐ */
    }
    
    .jobs-slider {
        margin-left: 0; /* マージンを削除して横スクロールを防ぐ */
        overflow: hidden; /* 横スクロールを防ぐ */
    }
    
    .job-slide {
        padding: 0 10px;
    }
    
    .job-card-detailed {
        max-width: 100%;
        padding: 20px;
    }
    
    .job-content {
        padding: 0;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .comparison {
        flex-direction: column;
        gap: 30px;
        padding: 60px 30px 40px;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        font-size: 3rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strength-card {
        padding: 30px;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .salary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .salary-card {
        padding: 30px 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .salary-content {
        align-items: left;
    }
    
    .salary-image {
        width: 100px;
        height: 100px;
    }
    
    .salary-amount {
        font-size: 2rem;
    }
    
    .salary-info {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0 80px; /* さらに小さな画面では上部パディングを調整 */
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.4; /* 小さな画面では行間をさらに広く */
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0; /* パディングを削除 */
        max-width: 100%; /* 小さな画面では幅をほぼ最大に */
    }
    
    .hero-subtitle-highlight {
        font-size: 1.2rem; /* サブタイトルと同じサイズ */
        padding: 2px 8px; /* 小さな画面でパディングを調整 */
    }
    
    /* アニメーション効果を小さな画面では控えめに */
    .hero-subtitle-highlight::after {
        height: 1px; /* 下線を細く */
        animation: none; /* アニメーションを無効化 */
        opacity: 1; /* 固定の透明度 */
    }
    
    .small-txt {
        font-size: 0.75rem; /* モバイルでさらに小さく */
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
        top: 7%; /* さらに小さな画面では上部をより狭く */
    }
    
    .hero-content {
        margin-top: 60px; /* 小さな画面では間隔をさらに狭く */
    }
    
    .comparison {
        padding: 40px 20px 30px;
    }
    
    .strength-card {
        padding: 25px;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
    
    /* Q&A レスポンシブ */
    .qa-item {
        padding: 25px;
    }
    
    .qa-bubble {
        max-width: 100%;
        padding: 20px;
    }
    
    /* キャリアステップ レスポンシブ */
    .career-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .career-note {
        padding: 25px;
    }
    
    /* プロジェクト事例 レスポンシブ */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        padding: 25px;
    }
    
    /* あなたの次のキャリア レスポンシブ */
    .career-step {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .career-step::after {
        display: none;
    }
    
    .step-content {
        padding: 25px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-highlight {
        padding: 15px;
    }

    /* 働きやすさ レスポンシブ */
    .work-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    
    /* 採用フロー レスポンシブ */
    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .philosophy-card {
        padding: 25px;
    }
    
    /* 最終募集要項 レスポンシブ */
    .common-grid {
        grid-template-columns: 1fr;
    }
    
    .job-common-info {
        padding: 25px;
    }
}

/* タブレット対応 */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        text-align: left; /* 左揃えを維持 */
    }
    
    .hero-content {
        max-width: 500px; /* タブレットでは少し狭く */
        margin-left: 0; /* 左揃えを維持 */
        text-align: left; /* 左揃えを維持 */
    }
    
    .hero-title {
        font-size: 4.2rem;
        text-align: left; /* 左揃えを維持 */
    }
    
    .hero-subtitle {
        font-size: 2rem;
        text-align: left; /* 左揃えを維持 */
    }
    
    .hero-buttons {
        justify-content: flex-start; /* 左揃えを維持 */
    }
    
    .hero-badge {
        font-size: 1.2rem;
        padding: 10px 25px;
    }
} 
a.step-link.small-txt {
    color: blue;
    text-decoration: underline;
}

