/* キービジュアル */
.block-d4-banner.recruit-keyvisual {
    background-image: url(/assets/images/company/recruit_keyvisualv2.jpg);
}

/* リード文 */
.c-text.recruit-lead {
    word-break: break-all;
}

/* 採用職種見出し */
.c-heading-a2.recruit-job-heading {
    margin-top: 40px;
}
.recruit-job-heading-sub {
    font-size: 15px;
    white-space: wrap;
}

/* 応募締切 */
.recruit-deadline {
    color: #e60012;
    font-weight: bold;
}

/* 選考フロー図（矢印形状のシェブロン・幅統一・2段レイアウト） */
.flow-diagram { margin: 24px auto; max-width: 680px; }
.flow-diagram .flow-row { display: flex; justify-content: center; align-items: stretch; margin-bottom: 24px; }
.flow-diagram .flow-item {
    position: relative;
    display: flex;
    margin-left: -8px;
}
.flow-diagram .flow-row .flow-item:first-child {
    margin-left: 0;
}
.flow-diagram .flow-step {
    background: #FEE38D;
    color: #333333;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 78px;
    box-sizing: border-box;
    padding: 8px 20px 8px 26px;
    clip-path: polygon(0 0, 87% 0, 100% 50%, 87% 100%, 0 100%, 12% 50%);
}
@media screen and (max-width: 768px) {
    .flow-diagram .flow-step {
        width: clamp(125px, calc(125px + 75 * (100vw - 375px) / (768 - 375)), 200px);
        font-size: clamp(10px, calc(10px + 3 * (100vw - 375px) / (768 - 375)), 13px);
    }
}
.flow-diagram .flow-row .flow-item:first-child .flow-step {
    padding-left: 14px;
    clip-path: polygon(0 0, 87% 0, 100% 50%, 87% 100%, 0 100%);
}
.flow-diagram .flow-num {
    position: absolute;
    top: 4px;
    left: 13px;
    background: #fff;
    color: #333333;
    border-radius: 50%;
    width: 16px; height: 16px;
    line-height: 16px;
    font-weight: bold;
    font-size: 9px;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
    z-index: 3;
}
.flow-diagram .flow-arrow-down { text-align: center; color: #C99700; font-size: 22px; line-height: 1; margin: 0 0 10px; }
