/* ========================================
 * 4. Corporate LP Styles (法人向けLP固有)
 * ======================================== */

/* --- Hero Section --- */
.corp-hero-section {
    color: var(--bg-white);
    text-align: center;
    padding: 100px 24px;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.corp-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* 背景写真（CIW-Constractin / ene-2 / ene-4 / ene-5）はいずれも明度の高い
       ハイキー写真で、一律 .6→.85 のスクリムでは写真のテクスチャが潰れる
       （:1695-1698 の記述と同じ問題が主ヒーローに残っていた）。
       文字が乗らない上下の padding 帯を開けて写真を見せ、本文帯では白文字の
       AA を保てる濃度を維持する。最も明るい ene-2（平均輝度203/255）で実測し、
       H1 5.21:1 / 本文 5.31:1 を確認済み。 */
    /* 開ける幅は % ではなく px で指定する。ヒーローの高さはページごとに違うが
       上下の padding（100px）はほぼ共通で、% だと背の高いページで文字が
       明るい帯にかかってしまうため（/corporate/ のキッカーで実際に発生）。 */
    background: linear-gradient(180deg,
        rgba(45, 74, 67, 0.34) 0px,
        rgba(45, 74, 67, 0.78) 88px,
        rgba(45, 74, 67, 0.80) calc(100% - 88px),
        rgba(45, 74, 67, 0.46) 100%);
    z-index: 1;
}

.corp-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Badge/Kicker */
.corp-hero-badge,
.corp-hero-kicker {
    display: inline-block;
    background: var(--secondary-strong, #8a6d3b);
    color: var(--text-on-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.corp-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    color: white !important;
}

.corp-hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.95) !important;
    line-height: 1.8;
}

/* --- Hero CTA --- */
.hero-cta-wrapper {
    margin-bottom: 24px;
    text-align: center;
}

.cta-button-hero.cta-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    max-width: 420px;
    width: 100%;
    border-radius: 50px;
    /* グラデ（#C0A375→#d4bc94）は白文字で実測 2.40:1、hover 1.57:1 と
       大文字基準 3:1 すら下回っていた。01_base.css:11 が「白文字ボタンの
       背景用（白文字でAA準拠）」と定義する --secondary-strong のベタ1色へ。
       実測 4.85:1。hover は明度を上げず暗くする。 */
    background: var(--secondary-strong);
    color: var(--text-on-secondary);
    border: none;
    box-shadow: 0 2px 8px rgba(45, 74, 67, 0.18);
    transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
    text-decoration: none;
}

.cta-button-hero.cta-main:hover {
    background: #75612f;
    /* a:hover の継承に負けるため文字色を明示する（CLAUDE.md の既知の落とし穴） */
    color: var(--text-on-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 74, 67, 0.22);
}

.cta-main-text {
    font-size: 18px;
    font-weight: 700;
}

.cta-arrow-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.cta-button-hero.cta-main:hover .cta-arrow-icon {
    transform: translateX(5px);
}

.hero-cta-note {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* --- Hero Contact Row --- */
.hero-contact-row {
    margin-bottom: 30px;
}

.hero-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-phone .phone-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.hero-phone .phone-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.hero-phone .phone-number:hover {
    opacity: 0.85;
}

.hero-phone .phone-hours {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* --- Positions Showcase --- */
.hero-positions-showcase {
    margin-top: 40px;
}

.hero-positions-showcase h3 {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-positions-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.hero-positions-list li {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    color: white;
    backdrop-filter: blur(5px);
}

/* ========================================
 * Industry Section (業界別カード)
 * ======================================== */
.corp-industry-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

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

.industry-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    min-height: 480px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.industry-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.industry-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-card-bg img {
    transform: scale(1.08);
}

.industry-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* ene-2 / ene-4 / ene-5 はいずれも明度の高いハイキー写真。従来は 70% 地点で
       α=0.92 に達し、写真がほぼ見えていなかった（残存8%）。文字域（.industry-card-content
       は下端・見出し上端は高さの32〜40%）の手前で一気に落とし、上3割は写真を見せる。
       実測: 見出し 4.56:1 / 説明文 7.48:1（旧 3.78 / 4.57）、テクスチャ +46%。 */
    background: linear-gradient(180deg,
        rgba(45, 74, 67, 0.06) 0%,
        rgba(45, 74, 67, 0.12) 14%,
        rgba(45, 74, 67, 0.90) 38%,
        rgba(45, 74, 67, 0.94) 100%);
    transition: background 0.4s ease;
}

.industry-card:hover .industry-card-overlay {
    background: linear-gradient(180deg,
        rgba(45, 74, 67, 0.02) 0%,
        rgba(45, 74, 67, 0.08) 14%,
        rgba(45, 74, 67, 0.88) 38%,
        rgba(45, 74, 67, 0.94) 100%);
}

.industry-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 32px;
    color: white;
}

.industry-card-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--secondary-dark);
    margin-bottom: 12px;
}

.industry-card-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
}

.industry-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.industry-card-positions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin-bottom: 20px;
}

.industry-card-positions li {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.industry-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-dark);
    transition: gap 0.3s ease;
}

.industry-card:hover .industry-card-link {
    gap: 12px;
}

.industry-card-link .arrow {
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-card-link .arrow {
    transform: translateX(4px);
}

/* ========================================
 * Stats Bar Section
 * ======================================== */
.corp-stats-bar-section {
    background: var(--primary-color);
    padding: 50px 0;
}

.corp-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-bar-item {
    text-align: center;
    color: white;
}

.stat-bar-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
}

.stat-bar-unit {
    font-size: 20px;
    font-weight: 600;
}

.stat-bar-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.stat-bar-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* ========================================
 * Target Companies Section
 * ======================================== */
.corp-target-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.target-item {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.target-item:hover {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.target-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d5f56 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.target-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.target-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
 * Positions Detail Section
 * ======================================== */
.corp-positions-detail-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f4 100%);
}

.positions-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.positions-category-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.positions-category-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary-color);
}

.positions-category-card .category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-light);
}

.positions-category-card .category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4bc94 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.positions-category-card .positions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.positions-category-card .positions-list li {
    font-size: 14px;
    color: var(--text-primary);
    padding: 8px 0;
    border-bottom: 1px solid var(--bg-light);
    transition: color 0.3s ease;
}

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

.positions-category-card:hover .positions-list li {
    color: var(--primary-color);
}

/* ========================================
 * Case Studies Section
 * ======================================== */
.corp-case-studies-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.case-study-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 24px;
    transition: var(--transition-base);
}

.case-study-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.case-study-header {
    margin-bottom: 16px;
}

.case-job-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.case-study-salary-box {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe3 100%);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.salary-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.salary-values {
    display: flex;
    align-items: center;
    gap: 10px;
}

.salary-before {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.salary-arrow {
    color: var(--secondary-dark);
    font-weight: 700;
}

.salary-after {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.case-study-summary {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Issues Section --- */
.corp-issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.corp-issue-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.corp-issue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.issue-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.issue-title {
    font-size: 20px;
    margin-bottom: 12px;
}

/* --- Features Section --- */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.feature-list-item {
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
    gap: 44px;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(45, 74, 67, 0.05);
    transition: var(--transition-base);
}

.feature-list-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(45, 74, 67, 0.1);
}

.feature-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-right: 44px;
    border-right: 1px solid var(--border-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--bg-white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.feature-stat {
    line-height: 1;
    color: var(--primary-color);
    font-family: var(--font-accent);
    white-space: nowrap;
    margin: 4px 0 0;
}

.feature-stat .num {
    font-size: 46px;
    font-weight: 700;
}

.feature-stat .unit {
    font-size: 18px;
    font-weight: 700;
    margin-left: 3px;
}

.feature-stat-caption {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.feature-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--secondary-dark);
    font-family: var(--font-accent);
    margin-bottom: 10px;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
}

/* --- Flow Section --- */
.corp-flow-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.corp-flow-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.corp-flow-step {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.flow-step-number {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
}

.flow-step-title {
    font-size: 18px;
    margin-bottom: 12px;
}

/* --- Pricing Section --- */
.corp-pricing-section {
    background-color: var(--bg-primary);
}

.pricing-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.pricing-label {
    flex: 0 0 220px;
    background: var(--primary-color);
    color: var(--text-on-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
}

.pricing-content {
    flex: 1;
    padding: 25px 30px;
}

/* --- Results Section (1000件以上の支援実績) --- */
.corp-results-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
}

.corp-results-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.corp-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.corp-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.corp-stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 8px;
}

.corp-stat-unit {
    font-size: 20px;
    font-weight: 600;
}

.corp-stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.corp-result-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition-base);
}

.corp-result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.corp-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.corp-result-occupation {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.corp-result-age {
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 20px;
}

.corp-result-salary {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color, #e5e5e5);
}

.corp-result-salary .salary-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.corp-result-salary .salary-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.corp-result-industry {
    display: flex;
    gap: 6px;
    font-size: 13px;
}

.industry-label {
    color: var(--text-secondary);
}

.industry-value {
    color: var(--text-primary);
    font-weight: 500;
}

.corp-results-cta {
    text-align: center;
}

.corp-results-cta .btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.corp-results-cta .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--text-on-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 74, 67, 0.3);
}

/* --- Final CTA Section --- */
.corp-final-cta-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe3 100%);
    padding: 100px 0;
}

.corp-final-cta-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.corp-final-cta-section .section-title {
    color: var(--primary-color);
    font-size: 32px;
}

.corp-final-cta-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
}

/* CTA Grid */
.corp-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.corp-cta-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: var(--transition-base);
}

.corp-cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}

.corp-cta-primary {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
}

.cta-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d5f56 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.corp-cta-primary .cta-card-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d4bc94 100%);
}

.cta-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cta-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-card-features li {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
}

.cta-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    width: 100%;
    max-width: 280px;
}

.cta-card-button.primary {
    background: var(--secondary-strong);
    color: var(--text-on-secondary);
    box-shadow: 0 2px 8px rgba(45, 74, 67, 0.18);
}

.cta-card-button.primary:hover {
    background: #75612f;
    color: var(--text-on-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 74, 67, 0.22);
}

.cta-card-button.secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-card-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-on-primary);
}

.cta-card-button .arrow {
    transition: transform 0.3s ease;
}

.cta-card-button:hover .arrow {
    transform: translateX(4px);
}

/* Phone CTA Card */
.cta-phone-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.cta-phone-number:hover {
    color: var(--secondary-color);
}

.cta-phone-hours {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Trust Footer */
.corp-cta-trust {
    text-align: center;
}

.corp-cta-trust .trust-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--bg-white);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.corp-cta-trust .trust-text svg {
    color: var(--primary-color);
}

/* ========================================
 * CORPORATE LP RESPONSIVE
 * ======================================== */

/* --- Desktop Large (1200px+) --- */
@media (min-width: 1200px) {
    .industry-cards-grid {
        gap: 36px;
    }
}

/* --- Tablet (768px - 1024px) --- */
@media (max-width: 1024px) {
    .industry-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .industry-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .positions-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corp-stats-bar {
        gap: 30px;
    }

    .stat-bar-divider {
        display: none;
    }

    .corp-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corp-flow-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .corp-flow-timeline::before {
        display: none;
    }

    .corp-cta-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .corp-cta-primary {
        order: -1;
    }
}

/* --- Mobile (max-width: 767px) --- */
@media (max-width: 767px) {
    .corp-hero-section {
        padding: 80px 24px;
        min-height: auto;
    }

    .corp-hero-title {
        font-size: 26px;
    }

    .corp-hero-subtitle {
        font-size: 15px;
    }

    /* 390px 以下では 26px×12文字が container の内寸（約302px）をわずかに超え、
       見出しが「パートナ／ー」のように語中で割れていた。 */
    @media (max-width: 420px) {
        .corp-hero-section {
            padding-left: 18px;
            padding-right: 18px;
        }

        .corp-hero-title {
            font-size: 24px;
        }
    }

    .corp-hero-badge,
    .corp-hero-kicker {
        font-size: 11px;
        padding: 8px 18px;
    }

    .cta-button-hero.cta-main {
        padding: 16px 30px;
        width: 100%;
    }

    .cta-main-text {
        font-size: 16px;
    }

    /* Industry Cards - Mobile */
    .corp-industry-section {
        padding: 60px 0;
    }

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

    .industry-card {
        min-height: 380px;
    }

    .industry-card:last-child {
        max-width: 100%;
    }

    .industry-card-content {
        padding: 24px;
    }

    .industry-card-title {
        font-size: 22px;
    }

    /* Stats Bar - Mobile */
    .corp-stats-bar-section {
        padding: 40px 0;
    }

    .corp-stats-bar {
        flex-direction: column;
        gap: 24px;
    }

    .stat-bar-number {
        font-size: 36px;
    }

    /* Target Section - Mobile */
    .target-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .target-item {
        padding: 24px 20px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
    }

    .target-icon {
        margin: 0;
        flex-shrink: 0;
        width: 56px;
        height: 56px;
    }

    .target-item h3 {
        margin-bottom: 4px;
    }

    /* Positions Detail - Mobile */
    .positions-detail-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .positions-category-card {
        padding: 24px 20px;
    }

    /* Case Studies - Mobile */
    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-study-card {
        padding: 24px 20px;
    }

    .corp-issues-grid {
        grid-template-columns: 1fr;
    }

    .corp-issue-card {
        padding: 30px 24px;
    }

    .feature-list-item {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 24px;
    }

    .feature-aside {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 18px;
        padding: 0 0 22px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .feature-icon {
        flex-shrink: 0;
    }

    .feature-stat .num {
        font-size: 38px;
    }

    .feature-title {
        font-size: 20px;
    }

    .pricing-row {
        flex-direction: column;
    }

    .pricing-label {
        border-right: none;
        width: 100%;
        text-align: center;
        flex: 0 0 auto;
    }

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

    .corp-flow-timeline::before {
        display: none;
    }

    /* Results Section - Mobile */
    .corp-results-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .corp-stat-item {
        padding: 24px 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .corp-stat-number {
        font-size: 32px;
        margin-bottom: 0;
        order: 2;
    }

    .corp-stat-label {
        order: 1;
        font-size: 15px;
    }

    .corp-results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .corp-result-card {
        padding: 24px 20px;
    }

    .corp-result-occupation {
        font-size: 14px;
    }

    .corp-result-salary .salary-value {
        font-size: 18px;
    }

    .corp-results-cta .btn-outline-primary {
        width: 100%;
        justify-content: center;
    }

    /* Hero Contact - Mobile */
    .hero-phone .phone-number {
        font-size: 24px;
    }

    /* Final CTA Section - Mobile */
    .corp-final-cta-section {
        padding: 60px 0;
    }

    .corp-final-cta-section .section-title {
        font-size: 26px;
    }

    .corp-cta-grid {
        gap: 16px;
    }

    .corp-cta-card {
        padding: 28px 20px;
    }

    .cta-card-icon {
        width: 56px;
        height: 56px;
    }

    .cta-card-title {
        font-size: 18px;
    }

    .cta-card-features {
        gap: 10px;
    }

    .cta-card-features li {
        font-size: 12px;
        padding: 5px 12px;
    }

    .cta-phone-number {
        font-size: 26px;
    }

    .corp-cta-trust .trust-text {
        font-size: 12px;
        padding: 10px 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   Award Badge (Corporate Hero Section)
   ======================================== */
.corp-hero-award-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 32px;
}

.corp-hero-award {
    width: 240px;
    opacity: 0.96;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.92);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.corp-hero-award img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.06));
}

.corp-hero-award:hover {
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* タブレット */
@media (max-width: 991px) {
    .corp-hero-award-wrapper {
        margin: 32px 0 28px;
    }

    .corp-hero-award {
        width: 200px;
        padding: 14px;
    }
}

/* モバイル */
@media (max-width: 768px) {
    .corp-hero-award-wrapper {
        margin: 28px 0 24px;
    }

    .corp-hero-award {
        width: 180px;
        padding: 12px;
    }
}

/* 非常に小さい画面 */
@media (max-width: 480px) {
    .corp-hero-award-wrapper {
        margin: 24px 0 20px;
    }

    .corp-hero-award {
        width: 160px;
        padding: 10px;
    }
}

/* ========================================
   Corporate Mobile Fixed CTA Button (モバイル専用固定CTAボタン)
   ======================================== */
.corporate-mobile-fixed-cta {
    display: none; /* PCでは非表示 */
}

@media (max-width: 768px) {
    .corporate-mobile-fixed-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #fff;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e0e0e0;
    }

    .corporate-mobile-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 18px 16px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        background: var(--secondary-strong, #8a6d3b);
        color: #fff;
        border: none;
        transition: all 0.3s ease;
        width: 100%;
    }

    .corporate-mobile-cta-btn svg {
        flex-shrink: 0;
    }

    .corporate-mobile-cta-btn:active {
        background: #75612f;
    }

    /* ページ下部に固定CTAがあるため、コンテンツに余白を追加。
       旧来 .corp-page-main を対象にしていたが、この名前の要素はテーマ全域に
       存在せず余白が効いていなかった（実体は <main class="site-main ...">）。 */
    body:has(.corporate-mobile-fixed-cta) main.site-main {
        padding-bottom: 84px;
    }
}

@media (max-width: 480px) {
    .corporate-mobile-cta-btn {
        padding: 16px 12px;
        font-size: 14px;
        gap: 6px;
    }

    .corporate-mobile-cta-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* --- Inline Inquiry Form (Final CTA) --- */
.corp-cta-inline-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(45, 74, 67, 0.12);
    padding: 40px;
    margin: 0 auto 48px;
    max-width: 880px;
    border-top: 4px solid var(--secondary-color);
}

.cta-inline-form-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.cta-inline-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color, #2D4A43);
    margin: 0 0 12px;
    line-height: 1.4;
}

.cta-inline-form-desc {
    font-size: 15px;
    color: #555;
    margin: 0 0 20px;
}

.cta-inline-form-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
}

.cta-inline-form-features li {
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
}

.cta-inline-form-features li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 6px;
    font-weight: 700;
}

.corp-cta-alt-heading {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    /* 和文に text-transform: uppercase は視覚的に何も起こさないため持たせない。
       色も #6e6e6e では地色 #f0ebe3 上で 4.30:1 と AA 不足だった。 */
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin: 24px 0 16px;
}

.corp-cta-grid-alt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .corp-cta-inline-form {
        padding: 24px 18px;
        border-radius: 10px;
    }

    .cta-inline-form-title {
        font-size: 20px;
    }

    .corp-cta-grid-alt {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   職種・資格特化LP（corporate-role.php）専用ヒーロー

   背景写真（ene-2 / ene-4 / ene-5）はいずれも明度の高いハイキー写真である。
   既存の corp-hero-section は濃緑 0.6→0.85 のスクリムで覆うため写真が潰れ、
   全体が重くなる。ここでは白のヴェールを左に寄せてかけ、写真の明るさを保ったまま
   左側だけ可読性を確保する。文字は濃緑、アクセントはゴールドの罫のみ。
   影・角丸・グラデーションボタンは使わない。
   ========================================================================= */

.corp-role-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 460px;
    padding: 76px 0;
    background-size: cover;
    /* 写真左下に焼き込まれた透かしロゴを視野外へ送るため、見せる窓を右へ寄せる */
    background-position: 62% center;
    background-color: #eef1ef;
    border-bottom: 1px solid #e2e7e4;
}

/* 白ヴェール。左は文字を読ませ、右は写真をそのまま見せる */
.corp-role-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 34%,
        rgba(255, 255, 255, 0.62) 62%,
        rgba(255, 255, 255, 0.22) 100%);
}

.corp-role-hero .container {
    position: relative;
    z-index: 1;
}

.corp-role-hero-inner {
    max-width: 740px;
}

/* カテゴリラベル。装飾（金の縦罫・太字・広い字送り）はH1の言い直しを飾るだけになるため
   持たせず、位置を示すだけの控えめな一行にする */
.corp-role-hero-eyebrow {
    margin: 0 0 18px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.5;
    color: #6d7a76;
}

.corp-role-hero-eyebrow-sep {
    margin: 0 8px;
    color: #c3cbc7;
}

/* 見出し自身に色を明示する（01_base.css の h1 指定は継承では上書きできない） */
.corp-role-hero-title {
    margin: 0 0 20px;
    font-size: clamp(27px, 2.9vw, 38px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.corp-role-hero-lead {
    max-width: 34em;
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.95;
    color: #41504b;
}

.corp-role-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 26px;
}

/* 明るい写真の上では、濃緑の面が最も強いアンカーになる */
.corp-role-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    border-radius: 2px;
    background: var(--primary-color);
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.corp-role-hero-cta-arrow {
    font-size: 17px;
    transition: transform 0.25s ease;
}

.corp-role-hero-cta:hover,
.corp-role-hero-cta:focus {
    background: #1d332d;
}

.corp-role-hero-cta:hover .corp-role-hero-cta-arrow,
.corp-role-hero-cta:focus .corp-role-hero-cta-arrow {
    transform: translateX(4px);
}

.corp-role-hero-tel {
    padding-left: 24px;
    border-left: 1px solid #cfd8d4;
    line-height: 1.45;
}

.corp-role-hero-tel-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #6d7a76;
}

.corp-role-hero-tel-number {
    display: block;
    margin: 1px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.corp-role-hero-tel-hours {
    display: block;
    font-size: 11px;
    color: #6d7a76;
}

.corp-role-hero-note {
    margin: 20px 0 0;
    font-size: 12.5px;
    letter-spacing: 0.02em;
    color: #6d7a76;
}

/* --- 対応資格の帯（ヒーロー直下） --- */
.corp-role-targets-band {
    padding: 26px 0;
    background: var(--primary-color);
}

.corp-role-targets-band .container {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px 32px;
}

.corp-role-targets-heading {
    flex-shrink: 0;
    margin: 0;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--secondary-color);
}

.corp-role-targets-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.corp-role-targets-list li {
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.94);
}

/* 中黒ではなく細い区切りを自前で引く */
.corp-role-targets-list li + li::before {
    content: '';
    position: absolute;
    left: -13px;
    top: 0.45em;
    height: 0.9em;
    border-left: 1px solid rgba(255, 255, 255, 0.32);
}

@media (max-width: 767px) {
    .corp-role-hero {
        min-height: 0;
        padding: 52px 0 48px;
    }

    /* モバイルは横位置の概念が薄いため、白ヴェールを均一にかける */
    .corp-role-hero::before {
        background: rgba(255, 255, 255, 0.93);
    }

    .corp-role-hero-title {
        line-height: 1.44;
    }

    .corp-role-hero-title br {
        display: none;
    }

    .corp-role-hero-lead {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 26px;
    }

    .corp-role-hero-actions {
        display: block;
    }

    .corp-role-hero-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 22px;
    }

    .corp-role-hero-tel {
        margin-top: 18px;
        padding-left: 0;
        padding-top: 16px;
        border-left: none;
        border-top: 1px solid #cfd8d4;
    }

    .corp-role-targets-band .container {
        display: block;
    }

    .corp-role-targets-heading {
        margin-bottom: 12px;
    }
}

/* =========================================================================
   職種・資格特化LP（corporate-role.php）固有セクション
   ヒーロー・課題・実績・フロー・CTAは既存の corp-* クラスを流用し、
   ここでは本テンプレート固有の3セクションのみ定義する。
   「白カード＋左ボーダー＋影」のAI定型は使わず、サイトの緑×ゴールドで
   編集記事調（罫線・タイポグラフィ主体）に組む。
   ========================================================================= */

/* 採用市場ブリーフ（Answer-First）
   罫線は側注＝ゴールド／本文＝淡グレーで1本に見えるよう連結し、
   カードや影を使わずに視線の起点を作る */
.corp-role-brief-section {
    background: #fff;
    border-bottom: 1px solid #edf1ef;
}

.corp-role-brief {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px 72px;
    max-width: 1000px;
    margin: 0 auto;
}

.corp-role-brief-side {
    border-top: 3px solid var(--secondary-color);
    padding-top: 22px;
}

.corp-role-brief-heading {
    font-size: 24px;
    line-height: 1.55;
    margin: 0;
}

.corp-role-brief-body {
    border-top: 3px solid #edf1ef;
    padding-top: 22px;
}

.corp-role-brief-lede {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.9;
    color: var(--primary-color);
    margin: 0 0 14px;
}

.corp-role-brief-text {
    font-size: 15.5px;
    line-height: 2.05;
    color: #4a4a4a;
    margin: 0;
}

/* 採用環境データ: カードではなく罫線区切りの数表として組む */
.corp-role-facts-section {
    background: #f7f9f8;
}

.corp-role-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.corp-role-fact {
    display: flex;
    flex-direction: column;
    padding: 6px 36px;
    border-left: 1px solid #d9e1dd;
}

.corp-role-fact:first-child {
    border-left: none;
    padding-left: 0;
}

.corp-role-fact-value {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--primary-color);
}

.corp-role-fact-label {
    font-size: 13.5px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-top: 12px;
}

.corp-role-fact-source {
    font-size: 11.5px;
    line-height: 1.6;
    color: #85908a;
    margin-top: 10px;
}

.corp-role-fact-source a {
    color: #85908a;
    text-decoration: underline;
}

.corp-role-fact-source a:hover,
.corp-role-fact-source a:focus {
    color: var(--primary-color);
}

/* 関連ページ導線: 素のリストでは埋没するため、フラットな罫線タイルの2列グリッドで組む
   （角丸・影は使わず、数表と同じ罫線の語法で統一する） */
.corp-role-links-section {
    background: #f7f9f8;
}

.corp-role-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.corp-role-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    border: 1px solid #d9e1dd;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.corp-role-link-label {
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--primary-color);
}

.corp-role-link-arrow {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--secondary-dark, #8a6d3f);
    transition: transform 0.25s ease;
}

.corp-role-link:hover,
.corp-role-link:focus {
    border-color: var(--secondary-color);
    background-color: #faf8f4;
}

.corp-role-link:hover .corp-role-link-arrow,
.corp-role-link:focus .corp-role-link-arrow {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .corp-role-brief {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* モバイルは側注の罫線だけを残して縦積みにする */
    .corp-role-brief-body {
        border-top: none;
        padding-top: 0;
    }

    .corp-role-brief-heading {
        font-size: 20px;
    }

    .corp-role-brief-heading br {
        display: none;
    }

    .corp-role-brief-lede {
        font-size: 17px;
    }

    .corp-role-facts {
        grid-template-columns: 1fr;
    }

    .corp-role-links {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .corp-role-link {
        padding: 18px 20px;
    }

    .corp-role-fact {
        border-left: none;
        border-top: 1px solid #d9e1dd;
        padding: 22px 0;
    }

    .corp-role-fact:first-child {
        border-top: none;
        padding-top: 0;
    }

    .corp-role-fact-value {
        font-size: 32px;
    }
}

/* =========================================================================
   職種・資格特化LPへの一覧（templates/parts/corporate-role-index.php）
   リンクタイルは .corp-role-links / .corp-role-link を流用し、
   種別（職種／資格）の見出しだけを足す。
   ========================================================================= */

.corp-role-index-section {
    background: #f7f9f8;
}

.corp-role-index-group + .corp-role-index-group {
    margin-top: 40px;
}

.corp-role-index-group-label {
    max-width: 860px;
    margin: 0 auto 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d9e1dd;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--secondary-dark);
}

/* ========================================
 * キーボード操作と動作配慮（法人LP7面 共通）
 * どちらも定義が無く、ホバーだけが手厚い状態だった。
 * ======================================== */

/* 02_layout.css:823-828 の既存流儀に合わせる。
   なお outline: none による除去は元から行っていないため、既定リングは残っている。 */
.cta-button-hero:focus-visible,
.cta-card-button:focus-visible,
.btn-outline-primary:focus-visible,
.industry-card:focus-visible,
.corp-role-link:focus-visible,
.phone-number:focus-visible,
.corporate-mobile-cta-btn:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* 濃色のヒーロー上ではゴールドのリングが沈むため、白のリングへ切り替える */
.corp-hero-section .cta-button-hero:focus-visible,
.corp-hero-section .phone-number:focus-visible,
.industry-card:focus-visible {
    outline-color: var(--bg-white);
}

/* 前庭障害への配慮。transform を伴うホバーを無効化する。 */
@media (prefers-reduced-motion: reduce) {
    .cta-button-hero.cta-main,
    .cta-arrow-icon,
    .cta-card-button,
    .corp-issue-card,
    .corp-cta-card,
    .industry-card,
    .industry-card-bg img,
    .corp-result-card,
    .corporate-mobile-cta-btn {
        transition: none;
        transform: none;
    }
}

/* 実績セクションの統計は2項目構成（累計決定実績は上部の信頼バンドで既出のため外した） */
.corp-results-stats.corp-results-stats-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .corp-results-stats.corp-results-stats-2col {
        grid-template-columns: 1fr;
    }
}
