@charset "utf-8";

@import url("/group/sfe/assets/css/components/recruit-content.css");
@import url("/group/sfe/assets/css/components/link-card.css");

/*==================================================
sp
================================================== */

/* ========================================================================
[sp]jobs-section
========================================================================= */
.jobs-section {
    margin: 0 auto calc(32 * var(--vw-unit));
    width: calc(343 * var(--vw-unit));
}

/* ========================================================================
[sp]job-list
========================================================================= */

.job-list {
    margin: 0 auto calc(100 * var(--vw-unit));
    width: calc(343 * var(--vw-unit));
    list-style: none;
}

.job-list li+li {
    margin-top: calc(24 * var(--vw-unit));
}

.job-list li a {
    background: var(--color-white);
    display: block;
    text-decoration: none;
    border-radius: calc(32 * var(--vw-unit));
    overflow: hidden;
    padding-bottom: calc(16 * var(--vw-unit));

    border: calc(1 * var(--vw-unit)) #ccc solid;
}


.job-list__title {
    margin: 0 0 calc(8 * var(--vw-unit));
    padding: calc(16 * var(--vw-unit)) calc(20 * var(--vw-unit)) 0;
    color: var(--color-black);
    font-family: var(--font-sans-serif);
    font-size: calc(20 * var(--vw-unit));
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
}

.job-list__text {
    margin: 0 0 calc(16 * var(--vw-unit));
    padding: 0 calc(20 * var(--vw-unit)) 0;
    color: var(--color-black);
    font-family: var(--font-sans-serif);
    font-size: calc(14 * var(--vw-unit));
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
}

.job-list__link {
    margin: 0 calc(20 * var(--vw-unit));
    color: var(--color-black);
    font-family: var(--font-sans-serif);
    font-size: calc(14 * var(--vw-unit));
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    color: var(--color-black);
    display: flex;
    height: calc(42 * var(--vw-unit));
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding-right: calc(70 * var(--vw-unit));
}

.job-list__link::before {
    content: "";
    width: calc(60 * var(--vw-unit));
    height: calc(42 * var(--vw-unit));
    border: calc(3 * var(--vw-unit)) solid transparent;
    border-radius: calc(50 * var(--vw-unit));
    box-sizing: border-box;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #0E76C0 0%, #189AB8 100%) border-box;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
}

.job-list__link::after {
    content: "";
    width: calc(18.4 * var(--vw-unit));
    height: calc(16 * var(--vw-unit));
    background-color: #0F78C0;
    -webkit-mask: var(--icon-link-arrow);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask: var(--icon-link-arrow);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;
    position: absolute;
    top: calc(50% - calc(8 * var(--vw-unit)));
    right: calc(20 * var(--vw-unit));
    pointer-events: none;
}


/* ========================================================================
[sp]banner-interview
========================================================================= */
.banner-interview {
    margin: 0 auto calc(100 * var(--vw-unit));
    width: calc(343 * var(--vw-unit));
}

/* ========================================================================
[sp]video-list
========================================================================= */
.video-list {
    margin: 0 auto calc(32 * var(--vw-unit));
    width: calc(343 * var(--vw-unit));
    list-style: none;
}

.video-list li {
    width: calc(343 * var(--vw-unit));
}

.video-list li+li {
    margin-top: calc(32 * var(--vw-unit));
}


/* ========================================================================
[sp]extra-list
========================================================================= */

.extra-list {
    margin: 0 auto calc(32 * var(--vw-unit));
    width: calc(343 * var(--vw-unit));
    list-style: none;
}

/*==================================================
pc
================================================== */
@media print,
screen and (min-width:768px) {


    /* ========================================================================
    [pc]jobs-section
    ========================================================================= */
    .jobs-section {
        margin: 0 auto 120px;
        width: var(--pc-container);
    }

    /* ========================================================================
    [pc]job-list
    ========================================================================= */

    .job-list {
        margin: 0 auto;
        width: var(--pc-container);
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 32px 0;
    }

    .job-list li {
        width: 100%;
        max-width: 1164px;
        display: flex;
    }

    .job-list li+li {
        margin-top: 0;
    }

    .job-list li a {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 250px;
        border-radius: 32px;
        padding: 45px 0 16px 360px;
        border: 1px #ccc solid;
        position: relative;
    }

    .job-list li figure {
        overflow: hidden;
        width: 326px;
        height: 250px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .job-list li figure img {
        transition: all 0.3s ease;
    }

    .job-list li a:hover figure img {
        transform: scale(1.1);
        transform-origin: center center;
    }

    .job-list__title {
        margin: 0 0 32px;
        padding: 0 0 0;
        color: var(--color-black);
        font-family: var(--font-sans-serif);
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 170%;
    }

    .job-list__text {
        margin: 0 0 16px;
        padding: 0 0 0;
        color: var(--color-black);
        font-family: var(--font-sans-serif);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
    }

    .job-list__link {
        margin: 0 20px;
        margin-top: auto;
        color: var(--color-black);
        font-family: var(--font-sans-serif);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 180%;
        color: var(--color-black);
        display: flex;
        height: 42px;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        padding-right: 70px;
        transition: color 0.3s ease;
        overflow: hidden;
    }

    a:hover .job-list__link {
        color: rgba(0, 0, 0, 0.4);
    }


    .job-list__link::before {
        content: "";
        display: block;
        background: #fff;
        width: 60px;
        height: 42px;
        border: 3px solid #0E76C0;
        border-radius: 50px;
        transition: all 0.3s ease;

        -webkit-mask: none;
        mask: none;
    }

    a:hover .job-list__link::before {
        background: linear-gradient(90deg, #0e76c0 0%, #189ab8 100%);
        border: none;
    }

    .job-list__link::after {
        content: "";
        width: 18.4px;
        height: 16px;
        background-color: #0F78C0;
        -webkit-mask: var(--icon-link-arrow);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: 100% 100%;
        mask: var(--icon-link-arrow);
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: 100% 100%;
        position: absolute;
        top: calc(50% - 8px);
        right: 20px;
        pointer-events: none;
        transition: none;
    }

    a:hover .job-list__link::after {
        animation: arrow-loop-white 0.5s ease forwards;
    }



    /* ========================================================================
    [pc]banner-interview
    ========================================================================= */
    .banner-interview {
        margin: 0 auto 100px;
        width: var(--pc-container);
    }

    /* ========================================================================
    [pc]video-list
    ========================================================================= */
    .video-list {
        margin: 0 auto 64px;
        width: var(--pc-container);
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .video-list li {
        width: 31.52920962%;
    }

    .video-list li+li {
        margin-top: 0;
    }


    /* ========================================================================
    [pc]extra-list
    ========================================================================= */

    .extra-list {
        margin: 0 auto 120px;
        width: 566px;
        list-style: none;
        display: block;
    }

    .extra-list li {
        width: 566px;
        display: flex;
    }

    .extra-list li picture {
        overflow: hidden;
        width: 566px;
        height: 312px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .extra-list li picture img {
        transition: all 0.3s ease;
    }

    .extra-list li a:hover picture img {
        transform: scale(1.1);
        transform-origin: center center;
    }

}
