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

:root {
    /* カラーパレット */
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #66BB6A;
    --secondary-color: #2196F3;
    --accent-color: #FF9800;
    --danger-color: #f44336;
    
    /* グレースケール */
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --border-color: #E0E0E0;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    
    /* グラデーション */
    --gradient-primary: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    --gradient-hero: linear-gradient(135deg, rgba(76, 175, 80, 0.95) 0%, rgba(102, 187, 106, 0.95) 100%);
    
    /* シャドウ */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.18);
    
    /* スペーシング */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* フォント */
    --font-main: 'Noto Sans JP', sans-serif;
    
    /* トランジション */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo-image {
    height: 50px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 999;
    transform: translateY(-100%);
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.mobile-nav-link {
    padding: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ==========================
   ボタン
   ========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: white;
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
}

.btn-line {
    background: #06C755;
    color: white;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-line:hover {
    background: #05B04B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 199, 85, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-line i {
    font-size: 1.3rem;
}

.btn-large {
    padding: 1.2rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 900;
}

.btn-header {
    padding: 0.6rem 1.5rem;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

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

/* ==========================
   ヒーローセクション
   ========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.hero-title-question {
    display: block;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-highlight-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.hero-highlight-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-highlight-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-highlight-subtitle strong {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.hero-cta .btn {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(5px);
}

.hero-cta .btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-images {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 20px;
    opacity: 0.15;
}

.hero-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 420px;
}

.hero-image-2 {
    grid-column: 2;
    grid-row: 1;
}

.hero-image-3 {
    grid-column: 2;
    grid-row: 2;
}

/* ==========================
   セクション共通
   ========================== */
.section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header-with-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: var(--spacing-xl);
    padding: 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.section-header-content {
    flex: 1;
}

.section-logo {
    flex-shrink: 0;
}

.section-logo-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================
   課題・解決策セクション
   ========================== */
.section-problem {
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.problem-negative {
    border-left: 4px solid var(--danger-color);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--danger-color);
}

.problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.solution-section {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.solution-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    position: relative;
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

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

.solution-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
}

.solution-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.solution-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ==========================
   給与モデルセクション
   ========================== */
.section-salary {
    background: white;
}

.salary-case {
    background: var(--bg-light);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.salary-case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.salary-case-label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.salary-case-number {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.2rem;
}

.salary-case-type {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.salary-case-hours {
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.salary-case-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.salary-case-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.salary-case-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.salary-case-image {
    width: 100%;
    height: auto;
    display: block;
}

.salary-case-staff {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.staff-voice {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.staff-info {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.staff-info strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.salary-case-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.salary-highlight {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--primary-color);
}

.salary-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.salary-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.salary-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.salary-unit {
    font-size: 2rem;
}

.salary-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.salary-stat {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.salary-stat-main {
    grid-column: 1 / -1;
    background: var(--gradient-primary);
}

.salary-stat-main .stat-label,
.salary-stat-main .stat-value {
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.stat-value-large {
    font-size: 2rem;
}

.salary-breakdown {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.breakdown-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.breakdown-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.breakdown-item {
    color: var(--text-medium);
}

.breakdown-value {
    font-weight: 700;
    color: var(--primary-color);
}

.breakdown-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.salary-explanation {
    background: #FFF3E0;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.salary-explanation h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.salary-explanation p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ==========================
   比較セクション
   ========================== */
.section-comparison {
    background: var(--bg-light);
}

.comparison-table-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
    margin-bottom: 3rem;
}

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

.comparison-table thead {
    background: var(--gradient-primary);
    color: white;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.comparison-table td small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.comparison-label {
    font-weight: 700;
    color: var(--text-dark);
}

.highlight-column {
    background: rgba(76, 175, 80, 0.05);
    font-weight: 700;
}

.comparison-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-badge-negative {
    display: inline-block;
    background: #FFEBEE;
    color: var(--danger-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.calculation-formula {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.formula-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.formula-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
}

.formula-equation {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.formula-highlight {
    color: var(--primary-color);
    background: rgba(76, 175, 80, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}

.formula-note {
    font-size: 1.1rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.formula-note i {
    color: var(--primary-color);
}

/* ==========================
   募集要項セクション
   ========================== */
.section-recruitment {
    background: white;
}

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

.recruitment-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.recruitment-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.recruitment-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.recruitment-list li {
    color: var(--text-medium);
    line-height: 1.8;
    padding: 0.5rem 0;
}

.recruitment-list strong {
    color: var(--primary-color);
    font-weight: 700;
}

.recruitment-list ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.recruitment-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.recruitment-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.recruitment-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ==========================
   CTAセクション
   ========================== */
.section-cta {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-subtext {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 280px;
}

/* ==========================
   フォームセクション
   ========================== */
.section-form {
    background: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.form-line-option {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 100%);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid #C8E6C9;
}

.line-option-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.line-option-text i {
    font-size: 2rem;
    color: #06C755;
    animation: pulse 2s infinite;
}

.form-divider {
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

.form-divider span {
    background: white;
    padding: 0 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.required {
    color: var(--danger-color);
    font-size: 0.85rem;
    background: #FFEBEE;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-help {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.form-privacy {
    background: #FFF3E0;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #FFB74D;
    margin-top: 2rem;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 0.75rem;
}

.privacy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.privacy-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}

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

.privacy-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 28px;
}

.privacy-note i {
    color: #FF9800;
}

.form-privacy {
    background: #FFF9E6;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #FFD54F;
    margin-top: 2rem;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 1rem;
}

.privacy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition);
}

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

.privacy-note {
    margin-top: 0.75rem;
    margin-left: 28px;
    font-size: 0.85rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-note i {
    color: var(--accent-color);
}

.form-submit {
    margin-top: 1rem;
}

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

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==========================
   レスポンシブデザイン
   ========================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header-with-logo {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .section-logo-image {
        width: 150px;
    }
    
    .problem-grid,
    .solution-grid,
    .recruitment-grid {
        grid-template-columns: 1fr;
    }
    
    .salary-case-content {
        grid-template-columns: 1fr;
    }
    
    .recruitment-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-images {
        display: none;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header-with-logo {
        padding: 1.5rem;
    }
    
    .section-logo-image {
        width: 120px;
    }
    
    .salary-case {
        padding: 2rem 1.5rem;
    }
    
    .salary-case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .salary-value {
        font-size: 2.5rem;
    }
    
    .comparison-table-wrapper {
        padding: 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .recruitment-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .section-header-with-logo {
        padding: 1rem;
    }
    
    .section-logo-image {
        width: 100px;
    }
    
    .salary-case-type {
        font-size: 1.1rem;
    }
    
    .salary-value {
        font-size: 2rem;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ==========================
   ユーティリティ
   ========================== */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
