/* ===================================
   リセット & ベーススタイル
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット */
    --primary-color: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #3385D6;
    --secondary-color: #00A3E0;
    --accent-color: #FF6B35;
    
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-light: #707070;
    
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #E9ECEF;
    
    --border-color: #DEE2E6;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* タイポグラフィ */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* スペーシング */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   ヘッダー
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
}

.footer-brand-name {
    font-size: 28px;
    font-weight: var(--font-weight-extrabold);
    color: var(--bg-white);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-recruiter {
    color: var(--secondary-color);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.15) 100%);
    padding: 8px 16px;
    border-radius: 6px;
    margin-top: 8px;
}

.nav-link-recruiter::after {
    display: none;
}

.nav-link-recruiter:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.25) 100%);
}

.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-link {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    text-decoration: none;
    padding: 8px 16px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* ===================================
   ボタン
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    margin-top: 80px;
    padding: 100px 0 60px;
    background: #F8F9FA;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    background-color: rgba(0, 102, 204, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 38px;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight-secondary {
    color: var(--secondary-color);
    font-weight: var(--font-weight-extrabold);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .stat-number {
    font-size: 48px;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-item .stat-number span {
    font-size: 36px;
}

.hero-stat-item .stat-label {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* ===================================
   信頼ロゴセクション
   =================================== */
/* 実績セクション */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: var(--font-weight-extrabold);
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-plus,
.stat-percent {
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    color: var(--bg-white);
}

.stat-label {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: rgba(255, 255, 255, 0.9);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: var(--text-light);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ===================================
   セクション共通スタイル
   =================================== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   課題セクション
   =================================== */
.issues-section {
    background-color: var(--bg-light);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.issue-card {
    background-color: var(--bg-white);
    padding: 36px 28px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.issue-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    transform: translateY(-3px);
}

.issue-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: var(--font-weight-extrabold);
    color: rgba(0, 102, 204, 0.08);
    line-height: 1;
}

.issue-title {
    font-size: 19px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-right: 40px;
}

.issue-description {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.issues-summary {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 163, 224, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 32px 40px;
    border-radius: 12px;
}

.summary-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.summary-text i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================================
   解決価値セクション
   =================================== */
.value-section {
    background-color: var(--bg-light);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 36px 32px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
    transform: translateY(-3px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.value-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

.value-card-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.value-card-description {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ===================================
   ケーススタディセクション
   =================================== */
.cases-section {
    background-color: var(--bg-white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.case-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
    transform: translateY(-5px);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.case-industry {
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
}

.case-result {
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    background-color: rgba(0, 102, 204, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.result-number {
    font-size: 20px;
    font-weight: var(--font-weight-extrabold);
}

.case-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.case-challenge,
.case-solution,
.case-outcome {
    margin-bottom: 20px;
}

.case-challenge h4,
.case-solution h4,
.case-outcome h4 {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 8px;
}

.case-challenge p,
.case-solution p,
.case-outcome p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ===================================
   サービス内容セクション
   =================================== */
.service-section {
    background-color: var(--bg-light);
}

/* サービスカードグリッド */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.service-card-optional {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.service-card-highlight {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 163, 224, 0.05) 100%);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.service-card-header .step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.step-role-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    color: var(--bg-white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.2);
}

.service-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.service-card-title .optional-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    color: var(--bg-white);
    background-color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle;
}

.service-card-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    flex: 1;
}

.service-card-body .optional-note {
    display: block;
    font-size: 12px;
    color: var(--accent-color);
    font-weight: var(--font-weight-medium);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--accent-color);
}

/* ===================================
   解決策セクション
   =================================== */
.solution-section {
    background-color: var(--bg-white);
}

.solution-flow {
    max-width: 900px;
    margin: 0 auto 80px;
}

.solution-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.solution-step-highlight {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 163, 224, 0.05) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.step-content {
    padding-top: 8px;
}

.step-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-role {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    margin-left: 8px;
}

.optional-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    color: var(--bg-white);
    background-color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 12px;
    margin-left: 12px;
    vertical-align: middle;
}

.optional-note {
    display: block;
    font-size: 13px;
    color: var(--accent-color);
    font-weight: var(--font-weight-medium);
    margin-top: 8px;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.description-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.solution-arrow {
    text-align: center;
    padding: 15px 0;
    color: var(--primary-color);
}

.solution-arrow i {
    font-size: 24px;
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

.solution-result {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.result-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: var(--bg-white);
    margin-bottom: 40px;
}

.result-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: var(--font-weight-extrabold);
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-number span {
    font-size: 48px;
}

.stat-label {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--bg-white);
}

.stat-divider {
    width: 2px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   特徴セクション
   =================================== */
.features-section {
    background-color: var(--bg-light);
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.feature-main {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.feature-main-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    font-size: 36px;
    font-weight: var(--font-weight-extrabold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.feature-main-title {
    font-size: 26px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.feature-main-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 18px;
}

.features-comparison {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.comparison-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table thead {
    background-color: var(--bg-light);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.comparison-table th {
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table .highlight-col {
    background-color: rgba(0, 102, 204, 0.05);
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

.comparison-table i.fa-circle {
    color: var(--primary-color);
    font-size: 12px;
}

.comparison-table i.fa-times {
    color: var(--border-color);
    font-size: 16px;
}

.comparison-table i.fa-adjust {
    color: var(--text-light);
    font-size: 16px;
}

/* ===================================
   プロセスセクション
   =================================== */
.process-section {
    background-color: var(--bg-white);
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.marker-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--border-color) 100%);
    margin-top: 10px;
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.timeline-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.timeline-duration {
    display: inline-block;
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    background-color: rgba(0, 102, 204, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

/* ===================================
   実績セクション
   =================================== */
.results-section {
    background-color: var(--bg-light);
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.result-stat-card {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.result-stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
}

.result-stat-icon i {
    font-size: 36px;
    color: var(--bg-white);
}

.result-stat-number {
    font-size: 64px;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.result-stat-number span {
    font-size: 48px;
}

.result-stat-label {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.result-stat-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.results-benefits {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.benefits-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.benefit-header i {
    font-size: 28px;
    color: var(--primary-color);
}

.benefit-header h4 {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-list li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.benefit-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

/* ===================================
   プロフェッショナル紹介セクション
   =================================== */
.professionals-section {
    background-color: var(--bg-white);
}

.professionals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.professional-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.professional-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.professional-photo {
    width: 100%;
    height: 340px;
    overflow: hidden;
    background-color: var(--bg-gray);
    position: relative;
}

.professional-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.professional-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    padding: 8px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.professional-info {
    padding: 32px;
}

.professional-name {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.name-role {
    font-size: 14px;
    font-weight: var(--font-weight-normal);
    color: var(--text-light);
}

.professional-role {
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.professional-career {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.professional-career p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.professional-career strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.professional-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.professional-achievement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.professional-achievement i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.professional-achievement p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.professionals-value {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.professionals-value .value-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.professionals-value .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.professionals-value .value-item {
    text-align: center;
}

.professionals-value .value-item i {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.professionals-value .value-item h4 {
    font-size: 19px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.professionals-value .value-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ===================================
   他社との違いセクション
   =================================== */
.comparison-section {
    background-color: var(--bg-light);
}

.comparison-note {
    background-color: rgba(0, 102, 204, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 32px 40px;
    border-radius: 12px;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
}

.note-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.note-icon i {
    color: var(--bg-white);
    font-size: 28px;
}

.note-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.note-title {
    font-size: 17px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.note-description {
    font-size: 15px;
    font-weight: var(--font-weight-normal);
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Legacy support for old structure */
.comparison-note p {
    font-size: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-note i {
    color: var(--primary-color);
    font-size: 20px;
}

.comparison-table-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.comparison-table-two-col th:first-child {
    width: 25%;
}

.comparison-table-two-col th:nth-child(2) {
    width: 35%;
}

.comparison-table-two-col th:nth-child(3) {
    width: 40%;
}

.service-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: var(--font-weight-semibold);
}

.service-link:hover {
    color: var(--primary-dark);
}

.faq-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: var(--font-weight-semibold);
}

.faq-link:hover {
    color: var(--primary-dark);
}

/* ===================================
   料金セクション
   =================================== */
.pricing-section {
    background-color: var(--bg-white);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card-recommended {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    padding: 6px 40px;
    transform: rotate(45deg);
    text-align: center;
}

.pricing-header {
    background-color: var(--bg-light);
    padding: 40px 30px;
    text-align: center;
}

.pricing-card-recommended .pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
}

.pricing-plan-name {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
}

.pricing-plan-description {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-card-recommended .pricing-plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-body {
    padding: 40px 30px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-features i {
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-features .fa-check {
    color: var(--primary-color);
}

.pricing-features .fa-times {
    color: var(--border-color);
}

.pricing-features .feature-disabled {
    opacity: 0.5;
}

.pricing-footer {
    padding: 0 30px 40px;
}

.pricing-footer .btn {
    width: 100%;
}

.pricing-note {
    background-color: var(--bg-light);
    padding: 24px 32px;
    border-radius: 12px;
    text-align: center;
}

.pricing-note p {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-note i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ===================================
   FAQセクション
   =================================== */
.faq-section {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background-color: var(--bg-white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ===================================
   CTAセクション
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    color: var(--bg-white);
    line-height: 1.4;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-light);
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.cta-section .btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

/* ===================================
   プロリクルーター募集CTA
   =================================== */
.recruiter-cta-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.recruiter-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.recruiter-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.recruiter-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(255, 107, 53, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.recruiter-cta-icon i {
    font-size: 40px;
    color: var(--bg-white);
}

.recruiter-cta-title {
    font-size: 36px;
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.recruiter-cta-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.recruiter-cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.recruiter-cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.recruiter-cta-feature i {
    color: var(--secondary-color);
    font-size: 20px;
}

.recruiter-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: 2px solid var(--secondary-color);
}

.recruiter-cta-btn:hover {
    background-color: rgba(255, 107, 53, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

/* ===================================
   フッター
   =================================== */
.footer {
    background-color: var(--text-primary);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-group h4 {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 20px;
}

.footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   レスポンシブデザイン
   =================================== */

/* タブレット */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .professionals-grid {
        grid-template-columns: 1fr;
    }
    
    .professionals-value .value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .comparison-table-two-col th:first-child {
        width: auto;
    }
    
    .comparison-table-two-col th:nth-child(2),
    .comparison-table-two-col th:nth-child(3) {
        width: auto;
    }
}

/* モバイル */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .header-content {
        padding: 15px 0;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        margin-top: 70px;
        padding: 60px 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 48px;
    }

    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .recruiter-cta-section {
        padding: 60px 0;
    }
    
    .recruiter-cta-title {
        font-size: 28px;
    }
    
    .recruiter-cta-description {
        font-size: 16px;
    }
    
    .recruiter-cta-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-card-header .step-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .step-role-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .service-card-title {
        font-size: 18px;
    }
    
    .solution-step {
        grid-template-columns: 70px 1fr;
        gap: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .result-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-divider {
        width: 100px;
        height: 2px;
    }
    
    .feature-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-main-number {
        margin: 0 auto;
    }
    
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .comparison-note {
        grid-template-columns: 50px 1fr;
        gap: 16px;
        padding: 24px;
    }
    
    .note-icon {
        width: 50px;
        height: 50px;
    }
    
    .note-icon i {
        font-size: 24px;
    }
    
    .note-title {
        font-size: 15px;
    }
    
    .note-description {
        font-size: 14px;
    }
    
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }
    
    .marker-circle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .issue-card,
    .feature-main,
    .benefit-card,
    .timeline-content {
        padding: 30px 20px;
    }
    
    .results-benefits,
    .features-comparison {
        padding: 40px 20px;
    }
}
