/* 特定技能 16分野カードスタイル */
.fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.field-card {
    background: linear-gradient(135deg, #ffffff, #f1fbff);
    border: 1px solid #e6f7ff;
    padding: 1rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    color: #00345a;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 68, 120, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.field-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 68, 120, 0.12);
}

/* リードが紹介できる人材を強調する（薄い赤のボーダー） */
.field-card.available {
    border-color: #ffebee; /* 薄い赤 */
    box-shadow: 0 8px 28px rgba(255, 92, 92, 0.06);
}

.field-card.available::after {
    content: '紹介可';
    display: inline-block;
    margin-left: 0.5rem;
    background: #ffebee;
    color: #b71c1c;
    font-weight:700;
    padding: 0.08rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.field-card { padding: 0.75rem; font-size: 0.95rem; }

/* New Service Page Styles */
.target-personnel, .plans, .job-examples, .support-range, .skill-details, .comparison {
    margin-bottom: 3rem;
}

}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, #004080, #0066cc);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tr:hover {
    background: #e3f2fd;
}

.comparison-table {
        font-size: 0.9rem;
    }

.comparison-table th, .comparison-table td {
        padding: 0.5rem;
    }

.cost-note {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ffc107;
}

.cost-note h4 {
    color: #856404;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.cost-note p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Highlights section */
.highlights {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 3.25rem 2rem;
    margin: 2.5rem 0;
}

.highlights-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.highlights h3 {
    text-align: center;
    color: #004080;
    margin-bottom: 1.25rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: linear-gradient(135deg, #f8f9fa, #eaf6ff);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0,64,128,0.04);
}

.highlight-icon {
    font-size: 28px;
    margin-bottom: 0.5rem;
}

.highlight-card h4 {
    margin: 0 0 0.5rem 0;
    color: #00345a;
}

.highlight-card p { color: #405268; margin: 0; }

.highlights-grid { gap: 1rem; }

/* このページ用の汎用カード枠（白地＋薄枠＋柔らかい影） */
.content-card {
    background: #fff;
    border: 1px solid #e6eef7;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(10,95,165,0.06);
    padding: clamp(1.2rem, 2.4vw, 2rem);
}

/* card-body: common inner container for h3 + content blocks */
.card-body {
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, #ffffff, #fbfcff);
    border: 1px solid #e9f4ff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(10,95,165,0.06);
    margin-top: 0.9rem;
    line-height: 1.7;
    color: #2b3b45;
}

.card-body p { margin: 0 0 0.9rem 0; }
.card-body ul { margin: 0 0 1rem 1.2rem; }
.card-body li { margin: 0.35rem 0; }

/* tighten spacing between h3 and card body and standardize h3 look */
.content-card h3 {
    margin-bottom: 0.6rem;
    color: #002d4a;
    font-size: 1.35rem; /* increased for better visibility */
    line-height: 1.25;
    font-weight: 700;
}

@media (max-width: 600px) {
    .card-body { padding: 0.9rem; }
    .content-card { padding: 1rem; }
    .content-card h3 { font-size: 1.15rem; }
}
