/* ========================================
   NJES 採用情報ページ専用CSS
   assets/css/recruit.css
======================================== */

/* ========================================
   共通
======================================== */

.recruit-hero,
.recruit-information,
.recruit-application {
    position: relative;
}

.recruit-hero__inner,
.recruit-information__inner,
.recruit-application__inner {
    width: min(1100px, calc(100% - 48px));
    margin-inline: auto;
}


/* ========================================
   採用情報 ヒーロー
======================================== */

.recruit-hero {
    overflow: hidden;
    padding: 92px 0 96px;
    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #eef6ff 55%,
            #effcff 100%
        );
}

.recruit-hero__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.recruit-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(
            rgb(3 81 248 / 5%) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgb(3 81 248 / 5%) 1px,
            transparent 1px
        );
    background-size: 56px 56px;
    mask-image:
        linear-gradient(
            90deg,
            #000 0%,
            #000 48%,
            transparent 100%
        );
}

.recruit-hero__orb {
    position: absolute;
    border-radius: 50%;
}

.recruit-hero__orb--blue {
    top: -240px;
    right: -100px;
    width: 600px;
    height: 600px;
    background:
        radial-gradient(
            circle,
            rgb(3 81 248 / 16%) 0%,
            rgb(3 81 248 / 3%) 58%,
            transparent 72%
        );
}

.recruit-hero__orb--cyan {
    right: 25%;
    bottom: -270px;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(
            circle,
            rgb(55 183 233 / 17%) 0%,
            transparent 70%
        );
}

.recruit-hero__inner {
    z-index: 1;
}

.recruit-hero__label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 18px;
    color: var(--color-primary, #0351f8);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.recruit-hero__label span {
    width: 42px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--color-primary, #0351f8),
            var(--color-cyan, #37b7e9)
        );
    border-radius: 999px;
}

.recruit-hero__title {
    margin: 0;
    color: var(--color-navy, #102b4e);
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.recruit-hero__lead {
    margin: 28px 0 0;
    color: var(--color-navy, #102b4e);
    font-size: clamp(21px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.65;
}

.recruit-hero__description {
    max-width: 720px;
    margin: 17px 0 0;
    color: #5f7489;
    font-size: 15px;
    line-height: 2;
}


/* ========================================
   募集要項
======================================== */

.recruit-information {
    padding: 105px 0 115px;
    background: #ffffff;
}

.recruit-information__inner {
    width: min(1000px, calc(100% - 48px));
}

.recruit-section-heading {
    margin-bottom: 42px;
}

.recruit-section-heading__label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 14px;
    color: var(--color-primary, #0351f8);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.recruit-section-heading__label span {
    width: 42px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--color-primary, #0351f8),
            var(--color-cyan, #37b7e9)
        );
    border-radius: 999px;
}

.recruit-section-heading__title {
    margin: 0;
    color: var(--color-navy, #102b4e);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.recruit-section-heading__description {
    margin: 14px 0 0;
    color: #687d92;
    font-size: 14px;
    line-height: 1.9;
}

.recruit-requirements {
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d9e6f2;
    border-radius: 20px;
    box-shadow:
        0 18px 50px rgb(26 72 119 / 8%);
}

.recruit-requirements__row {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    border-bottom: 1px solid #dce7f2;
}

.recruit-requirements__row:last-child {
    border-bottom: 0;
}

.recruit-requirements dt,
.recruit-requirements dd {
    margin: 0;
}

.recruit-requirements dt {
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 20px 28px;
    color: var(--color-navy, #102b4e);
    background:
        linear-gradient(
            135deg,
            #f0f6ff 0%,
            #f7fbff 100%
        );
    border-right: 1px solid #dce7f2;
    font-size: 14px;
    font-weight: 800;
}

.recruit-requirements dd {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 76px;
    padding: 20px 32px;
    color: #50677f;
    font-size: 14px;
    line-height: 1.9;
}

.recruit-requirements dd strong {
    color: var(--color-primary, #0351f8);
    font-size: 18px;
    font-weight: 850;
}


/* ========================================
   応募・資料請求先
======================================== */

.recruit-application {
    overflow: hidden;
    padding: 105px 0;
    background:
        linear-gradient(
            135deg,
            #082f5d 0%,
            #0a4277 58%,
            #08738f 100%
        );
}

.recruit-application::before {
    position: absolute;
    top: -260px;
    right: -160px;
    width: 620px;
    height: 620px;
    content: "";
    background:
        radial-gradient(
            circle,
            rgb(90 217 235 / 20%) 0%,
            transparent 70%
        );
    border-radius: 50%;
    pointer-events: none;
}

.recruit-application__inner {
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(430px, 1.18fr);
    align-items: center;
    gap: 70px;
}

.recruit-application__label {
    margin: 0 0 15px;
    color: #83dce7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.recruit-application__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 850;
    line-height: 1.45;
    letter-spacing: 0.04em;
}

.recruit-application__text {
    margin: 22px 0 0;
    color: rgb(255 255 255 / 84%);
    font-size: 15px;
    line-height: 2;
}

.recruit-application__note {
    margin: 13px 0 0;
    color: rgb(255 255 255 / 62%);
    font-size: 13px;
    line-height: 1.85;
}

.recruit-contact {
    padding: 34px;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 18%);
    border-radius: 20px;
    box-shadow:
        0 24px 55px rgb(0 20 48 / 20%);
    backdrop-filter: blur(12px);
}

.recruit-contact__heading {
    margin: 0 0 22px;
    padding-bottom: 15px;
    color: #ffffff;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
    font-size: 16px;
    font-weight: 800;
}

.recruit-contact__address {
    color: rgb(255 255 255 / 78%);
    font-size: 13px;
    font-style: normal;
    line-height: 1.9;
}

.recruit-contact__address p {
    margin: 0;
}

.recruit-contact__company {
    margin-bottom: 10px !important;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.recruit-contact__list {
    display: grid;
    gap: 8px;
    margin: 21px 0 0;
}

.recruit-contact__list > div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
}

.recruit-contact__list dt,
.recruit-contact__list dd {
    margin: 0;
}

.recruit-contact__list dt {
    color: #82dce7;
    font-weight: 800;
}

.recruit-contact__list a {
    color: #ffffff;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.recruit-contact__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.recruit-contact__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 52px;
    padding: 0 17px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.recruit-contact__button:hover {
    transform: translateY(-2px);
}

.recruit-contact__button--mail {
    color: #07537f;
    background: #ffffff;
    border: 1px solid #ffffff;
}

.recruit-contact__button--mail:hover {
    color: var(--color-primary, #0351f8);
    box-shadow:
        0 12px 28px rgb(0 19 50 / 20%);
}

.recruit-contact__button--telephone {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgb(255 255 255 / 48%);
}

.recruit-contact__button--telephone:hover {
    color: #07537f;
    background: #ffffff;
    border-color: #ffffff;
}


/* ========================================
   タブレット
======================================== */

@media (max-width: 900px) {
    .recruit-application__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .recruit-application__content {
        max-width: 700px;
    }
}


/* ========================================
   スマートフォン
======================================== */

@media (max-width: 700px) {
    .recruit-hero__inner,
    .recruit-information__inner,
    .recruit-application__inner {
        width: calc(100% - 28px);
    }

    .recruit-hero {
        padding: 72px 0 75px;
    }

    .recruit-hero__title {
        font-size: 40px;
    }

    .recruit-hero__lead {
        margin-top: 22px;
        font-size: 20px;
    }

    .recruit-hero__description {
        font-size: 13px;
        line-height: 1.9;
    }

    .recruit-information {
        padding: 78px 0 88px;
    }

    .recruit-requirements {
        border-radius: 16px;
    }

    .recruit-requirements__row {
        grid-template-columns: 1fr;
    }

    .recruit-requirements dt {
        min-height: 0;
        padding: 14px 18px;
        border-right: 0;
        border-bottom: 1px solid #dce7f2;
    }

    .recruit-requirements dd {
        min-height: 0;
        padding: 17px 18px 20px;
    }

    .recruit-application {
        padding: 78px 0;
    }

    .recruit-contact {
        padding: 26px 21px;
        border-radius: 16px;
    }

    .recruit-contact__actions {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   小さいスマートフォン
======================================== */

@media (max-width: 420px) {
    .recruit-contact__list > div {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 10px;
    }
}