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

:root {
    /* カラーパレット - ネイビーベースに変更 */
    --primary-navy: #1e3a8a;
    --primary-navy-dark: #1e40af;
    --primary-navy-light: #3b82f6;
    --accent-blue: #2563eb;
    --text-dark: #111827;
    --text-gray: #374151;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-gray-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-gray: #e5e7eb;
    --accent-red: #ef4444;
    --accent-yellow: #f59e0b;
    --accent-purple: #8b5cf6;
    
    /* タイポグラフィ */
    --font-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.8;
    
    /* スペーシング */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* ========================================
   コンテナ
======================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

/* ========================================
   ファーストビュー - より魅力的なデザイン
======================================== */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(30, 58, 138, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(30, 58, 138, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-2%, 2%) rotate(1deg); }
    50% { transform: translate(2%, -1%) rotate(-1deg); }
    75% { transform: translate(-1%, -2%) rotate(0.5deg); }
}

/* Decorative floating elements */
.hero-floating-element {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.floating-1 {
    top: 20%;
    left: 8%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    top: 70%;
    right: 12%;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy-light));
    opacity: 0.15;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(30, 58, 138, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(30, 58, 138, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(30, 58, 138, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(30, 58, 138, 0.03) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.title-line {
    display: inline-block;
    transform: translateY(30px);
    opacity: 0;
    animation: titleSlideUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes titleSlideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 2px;
    transform: scaleX(0);
    animation: titleLine 1s ease-out 0.5s forwards;
}

@keyframes titleLine {
    to { transform: scaleX(1); }
}

.hero-title .highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white;
    padding: 0 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-navy);
    position: relative;
    overflow: hidden;
}

.hero-note {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white;
    padding: 20px 30px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpFade 1s ease-out 1s forwards;
}

/* Hero badge styling */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
    transform: translateY(-20px);
    opacity: 0;
    animation: slideDownFade 0.8s ease-out 0.3s forwards;
}

@keyframes slideDownFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.badge-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Hero statistics */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpFade 1s ease-out 1.5s forwards;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--border-gray), transparent);
}

/* 装飾的な浮遊要素 */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy-light));
    border-radius: 50%;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes slideUpFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-note::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shineNote 3s infinite;
}

.accent-text {
    color: var(--primary-navy);
    font-weight: 700;
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    border-radius: 1px;
}

@keyframes shineNote {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ========================================
   セクション共通
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.4;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 500;
}

/* ========================================
   よくある採用の悩み - ネイビーベース
======================================== */
.problems {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

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

.problem-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-yellow));
}

.problem-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-red);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.problem-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

.problem-item p {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.7;
}

.problem-conclusion {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-navy-dark), var(--primary-navy));
    color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
}

.problem-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.conclusion-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.conclusion-text {
    font-size: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.conclusion-highlight {
    font-weight: 900;
    font-size: 1.625rem;
    background: linear-gradient(135deg, #93c5fd, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   採用のズレ - ネイビーテーマ
======================================== */
.gap {
    background-color: var(--bg-white);
}

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

.gap-conclusion {
    text-align: center;
    background: linear-gradient(135deg, var(--text-dark), #374151);
    color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
}

.section-content h3 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
}

.section-content h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    margin: 20px auto 0;
    border-radius: 2px;
}

.content-box {
    background: var(--bg-gray-light);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-navy);
}

.content-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-box strong {
    color: var(--primary-navy);
    font-weight: 700;
}

.marketing-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--text-dark);
}

.point-number {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.875rem;
}

.marketing-conclusion {
    text-align: center;
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--primary-navy) !important;
    margin-top: 25px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-item .step-number {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.approach-conclusion {
    text-align: center;
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--primary-navy) !important;
    margin-top: 25px;
}

.jobseeker-thoughts {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.jobseeker-thoughts li {
    background: var(--bg-white);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-yellow);
    font-size: 1.125rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 40px;
}

.jobseeker-thoughts li::before {
    content: "🤔";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
}

.example-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.example-bad, .example-good {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
}

.example-bad {
    border: 3px solid var(--accent-red);
}

.example-good {
    border: 3px solid var(--primary-navy);
}

.example-bad h4 {
    color: var(--accent-red);
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.example-good h4 {
    color: var(--primary-navy);
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.example-bad p, .example-good p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.example-arrow {
    font-size: 2rem;
    color: var(--primary-navy);
    font-weight: 900;
}

.example-conclusion {
    text-align: center;
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--text-dark) !important;
    margin-top: 20px;
    font-style: italic;
}

.honesty-consequences {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.consequence-item {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-yellow));
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.consequence-item.negative {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

.honesty-conclusion {
    background: linear-gradient(135deg, var(--text-dark), #374151);
    color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
}

.honesty-conclusion p {
    margin-bottom: 15px;
    font-size: 1.125rem !important;
    line-height: 1.7 !important;
}

.honesty-conclusion p:last-child {
    margin-bottom: 0;
}

.honesty-conclusion strong {
    color: #93c5fd !important;
    font-size: 1.25rem !important;
}

.white-text {
    color: white !important;
}

/* ========================================
   サービス内容 - ネイビーテーマ
======================================== */
.services {
    background: var(--bg-white);
}

.service-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.service-step {
    background: var(--bg-gray);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.service-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-navy);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-step .step-number {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.375rem;
    margin: 0 auto 20px;
}

.service-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-step p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--primary-navy);
    font-weight: 900;
}

.service-note {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-gray-light), var(--bg-gray));
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-navy);
}

.service-note p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.service-note p:last-child {
    margin-bottom: 0;
}

/* ========================================
   向いていない方 - ネイビーテーマ
======================================== */
.not-suitable {
    background: linear-gradient(135deg, var(--bg-gray-light), var(--bg-white));
}

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

.unsuitable-item {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.unsuitable-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--text-gray), var(--text-light));
}

.unsuitable-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--text-gray);
}

.unsuitable-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.unsuitable-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

.unsuitable-item p {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.7;
}

.unsuitable-conclusion {
    text-align: center;
    background: linear-gradient(135deg, var(--text-gray), #4b5563);
    color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ========================================
   お問い合わせフォーム - ネイビーテーマ
======================================== */
.contact {
    background: linear-gradient(135deg, var(--bg-gray-light), var(--bg-white));
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-urgency {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgency-text {
    display: block;
    font-size: 1.375rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.urgency-sub {
    font-size: 1rem;
    opacity: 0.9;
}

.consultation-features {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    border-top: 5px solid var(--primary-navy);
}

.consultation-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.features-list {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-gray-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: #e0e7ff;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.consultation-note {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-gray-light), var(--bg-gray));
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-navy);
}

.consultation-note p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.consultation-note p:last-child {
    margin-bottom: 0;
}

.contact-form {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border-top: 5px solid var(--primary-navy);
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1rem;
}

.required {
    color: var(--accent-red);
    font-weight: 700;
    margin-left: 8px;
}

.optional {
    color: var(--text-light);
    font-weight: 500;
    margin-left: 8px;
}

/* ========================================
   チェックボックスカスタムスタイル
======================================== */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
    margin-bottom: 20px;
    font-weight: 500;
    padding: 15px;
    background: var(--bg-gray-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    background: #e0e7ff;
    transform: translateY(-2px);
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border-gray);
    border-radius: 6px;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--bg-white);
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.checkbox-container input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.checkbox-text a {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: var(--primary-navy-dark);
    text-decoration: underline;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 3px solid var(--border-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-base);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: var(--bg-white);
    font-size: 1.375rem;
    font-weight: 900;
    padding: 24px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.5);
    background: linear-gradient(135deg, var(--primary-navy-dark), var(--primary-navy));
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
}

.submit-button:disabled:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
}

.button-text {
    display: block;
    font-size: 1.375rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.button-subtext {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.form-message.success {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border: 3px solid var(--primary-navy);
    color: var(--primary-navy-dark);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 30px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.success-text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.7;
}

/* ========================================
   会社概要テーブル
======================================== */
.company-info {
    margin-top: 50px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-navy);
}

.company-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.company-table th {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-navy-dark));
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    width: 30%;
}

.company-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-gray);
    font-size: 1rem;
    color: var(--text-dark);
}

.company-table tr:last-child td {
    border-bottom: none;
}

.company-table tr:nth-child(even) {
    background: var(--bg-gray-light);
}

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

.footer p {
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.footer a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-badge {
        padding: 10px 20px;
        margin-bottom: 20px;
    }

    .badge-text {
        font-size: 0.875rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        padding: 20px;
        margin-bottom: 30px;
    }

    .hero-note {
        font-size: 1rem;
        padding: 16px 24px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .stat-divider {
        height: 40px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .problem-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-item {
        padding: 30px 20px;
    }

    .gap-problems {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-flow {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .submit-button {
        font-size: 1.125rem;
        padding: 20px;
    }

    .company-table th,
    .company-table td {
        padding: 15px;
        font-size: 0.875rem;
    }

    .company-table th {
        width: 35%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .submit-button {
        padding: 18px;
        font-size: 1rem;
    }

    .contact-form,
    .consultation-features,
    .company-info {
        padding: 30px 20px;
    }

    .content-box {
        padding: 30px 20px;
    }

    .marketing-points {
        gap: 15px;
    }

    .point-item {
        padding: 12px 16px;
        font-size: 0.875rem;
    }

    .example-comparison {
        flex-direction: column;
        gap: 15px;
    }

    .example-bad, .example-good {
        min-width: auto;
        width: 100%;
    }

    .honesty-consequences {
        gap: 10px;
    }

    .consequence-item {
        font-size: 0.875rem;
        padding: 10px 15px;
    }
}

/* モバイル用改行 */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}