/* ========================================
   リセット & 基本設定
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット - 信頼感・誠実さを重視 */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #06b6d4;
    --accent-color: #00b900;
    --line-green: #06C755;
    --text-dark: #1e293b;
    --text-gray: #475569;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    
    /* タイポグラフィ */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;
    
    /* シャドウ */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* トランジション */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* ========================================
   ヘッダー
   ======================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.logo .site-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-menu,
.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu > li,
.nav ul > li {
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-menu a,
.nav ul a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.nav-menu a:hover,
.nav ul a:hover {
    color: var(--primary-color);
}

.nav-menu a::after,
.nav ul a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav ul a:hover::after {
    width: 100%;
}

.btn-line-header {
    background-color: var(--line-green);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-line-header:hover {
    background-color: #05a447;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #06b6d4 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
}

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

.hero-badge {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

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

/* ========================================
   ボタンスタイル
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

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

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

.btn-primary:hover {
    background-color: #05a447;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

/* ========================================
   実績ハイライト
   ======================================== */
.achievements {
    background-color: var(--bg-white);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

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

.achievement-item {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

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

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.achievement-content h3 {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.achievement-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ========================================
   セクション共通
   ======================================== */
section {
    padding: 80px 0;
}

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

.section-subtitle {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   会社紹介セクション
   ======================================== */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-company {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-brand {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.brand-sub {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
}

.about-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-services {
    list-style: none;
}

.about-services li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.about-services i {
    color: var(--success-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.about-services strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.about-services p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-mobile {
    display: none;
}

/* ========================================
   サービス特徴セクション
   ======================================== */
.features {
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   採用の流れセクション
   ======================================== */
.flow {
    background-color: var(--bg-light);
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto 40px;
}

.flow-step {
    background-color: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: var(--transition);
}

.flow-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.flow-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    font-family: var(--font-en);
}

.flow-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.flow-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.flow-arrow {
    text-align: center;
    padding: 15px 0;
}

.flow-arrow i {
    font-size: 32px;
    color: var(--primary-color);
}

.flow-timeline {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.timeline-item {
    text-align: center;
    padding: 20px 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.timeline-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.timeline-duration {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ========================================
   特定技能14分野セクション
   ======================================== */
.specific-skills {
    background-color: var(--bg-white);
}

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

.skill-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.skill-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    font-family: var(--font-en);
}

.skill-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    margin: 0 auto 15px;
}

.skill-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.skill-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ========================================
   技人国・プロフェッショナルセクション
   ======================================== */
.professional {
    background-color: var(--bg-light);
}

.professional-intro {
    margin-bottom: 50px;
}

.professional-text {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.professional-category {
    background-color: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

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

.category-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.category-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--bg-gray);
}

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

.category-list i {
    color: var(--success-color);
    font-size: 16px;
    flex-shrink: 0;
}

.professional-requirements {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.professional-requirements h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.professional-requirements h3 i {
    color: var(--primary-color);
    font-size: 28px;
}

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

.requirement-item {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.requirement-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.requirement-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   高度人材セクション
   ======================================== */
.highly-skilled {
    background-color: var(--bg-white);
}

.highly-skilled-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.intro-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.intro-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.intro-benefits {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px;
    border-radius: 16px;
    color: white;
}

.intro-benefits h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-benefits h4 i {
    color: #fbbf24;
}

.intro-benefits ul {
    list-style: none;
}

.intro-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
}

.intro-benefits i {
    color: #fbbf24;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.highly-skilled-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.type-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.type-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin: 0 auto 20px;
}

.type-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.type-card > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.type-card ul {
    list-style: none;
    text-align: left;
}

.type-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-gray);
    position: relative;
}

.type-card ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ========================================
   事例紹介セクション
   ======================================== */
.cases {
    background-color: var(--bg-light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 35px;
}

.case-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

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

.case-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 25px 30px;
    color: white;
}

.case-industry {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.case-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.case-content {
    padding: 30px;
}

.case-challenge,
.case-solution,
.case-result {
    margin-bottom: 25px;
}

.case-challenge h4,
.case-solution h4,
.case-result h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-challenge h4 i {
    color: #ef4444;
}

.case-solution h4 i {
    color: #f59e0b;
}

.case-result h4 i {
    color: var(--success-color);
}

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

.case-result ul {
    list-style: none;
    margin-left: 0;
}

.case-result li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.case-result li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* ========================================
   お客様の声セクション
   ======================================== */
.voices {
    background-color: var(--bg-white);
}

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

.voice-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

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

.voice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.voice-rating {
    display: flex;
    gap: 5px;
}

.voice-rating i {
    color: #fbbf24;
    font-size: 18px;
}

.voice-company {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.voice-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.voice-author {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    text-align: right;
}

/* ========================================
   対応業種セクション
   ======================================== */
.industries {
    background-color: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.industry-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

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

.industry-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 auto 15px;
}

.industry-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: var(--text-gray);
}

.industries-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
}

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
}

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

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

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--warning-color), #f97316);
    color: white;
    padding: 5px 40px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

.pricing-header {
    padding: 35px 30px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.pricing-card-featured .pricing-header {
    background: linear-gradient(135deg, #1e40af, #7c3aed);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

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

.pricing-features {
    list-style: none;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-gray);
}

.pricing-feature i {
    color: var(--success-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

.pricing-note {
    background-color: rgba(37, 99, 235, 0.05);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

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

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

/* ========================================
   CTAボックス
   ======================================== */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.cta-text {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

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

/* ========================================
   お問い合わせセクション
   ======================================== */
.contact {
    background-color: var(--bg-white);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method {
    background-color: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.contact-method-primary {
    border-color: var(--line-green);
    background: linear-gradient(to bottom, white, rgba(6, 199, 85, 0.05));
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 20px;
}

.contact-method-primary .contact-method-icon {
    background: var(--line-green);
}

.contact-method h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-method p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* ========================================
   お問い合わせフォーム
   ======================================== */
.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 50px 40px;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
    font-size: 13px;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-main);
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 35px;
}

.form-submit .btn {
    min-width: 250px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--success-color);
}

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

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-company h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-brand {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links h5,
.footer-contact h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-line-btn,
.footer-contact-btn {
    display: block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-line-btn {
    background-color: var(--line-green);
    color: white;
}

.footer-line-btn:hover {
    background-color: #05a447;
}

.footer-contact-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   ページトップボタン
   ======================================== */
.page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.page-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* ========================================
   固定LINE CTAボタン（モバイル）
   ======================================== */
.fixed-line-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    display: none;
}

.fixed-line-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--line-green);
    color: white;
    padding: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-line-cta i {
    font-size: 24px;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        display: none;
    }
    
    .about-image-mobile {
        display: block;
        border-radius: 12px;
        overflow: hidden;
        margin: 20px 0;
        box-shadow: var(--shadow-lg);
    }
    
    .about-image-mobile img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .features-grid,
    .industries-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .professional-grid {
        grid-template-columns: 1fr;
    }
    
    .highly-skilled-intro {
        grid-template-columns: 1fr;
    }
    
    .highly-skilled-types {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .voices-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .flow-number {
        margin: 0 auto;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .fixed-line-cta {
        display: block;
    }
    
    .page-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box {
        padding: 35px 25px;
    }
    
    .cta-text {
        font-size: 18px;
    }
}
