@charset "utf-8";

/* ==================================================================

    recruit.css

=================================================================== */

/* --------------------------------
■共通
-------------------------------- */


.fullImageWrapper {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
}

.fullImage {
    width: 100%;
    height: auto;
}

.top_imagesWrapper {
    position: absolute;
    top: 153px;
    right: 0;
    width: 55.3%;
    z-index: -1;
}

.top_images {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
    .top_imagesWrapper {
        position: static;
        width: unset;
        margin-right: calc(50% - 50vw);
    }
}

/* --------------------------------
■ ページタイトル
-------------------------------- */
.pageHead {
    position: relative;
    padding: 19.8% 0 7.4%;
}

.pageHead__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pageHead__en {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.222;
    letter-spacing: 0.04em;
    color: #c5e7ee;
}

.pageHead__ja {
    margin-top: 4px;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.452;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
    .pageHead {
        padding: 33.5% 0 44px;
    }

    .pageHead__en {
        font-size: 1.2rem;
        line-height: 1.25;
    }

    .pageHead__ja {
        margin-top: 9px;
        font-size: 3.2rem;
        line-height: 1.4375;
    }
}

/* --------------------------------
■ パンくず
-------------------------------- */
ol#breadcrumbs {
    gap: 0 36px;
    padding: 0;
}
ol#breadcrumbs li {
    font-size: 1.3rem;
    color: var(--text-color);
}

ol#breadcrumbs li a {
    position: relative;
    display: inline-block;
    color: #8e98ac;
}
ol#breadcrumbs li a:before {
    position: absolute;
    top: 6px;
    right: -18px;
    content: "";
    width: 1px;
    height: 11px;
    border: none;
    background-color: #8e98ac;
    transform: rotate(32deg);
}

@media screen and (max-width: 767px) {
    ol#breadcrumbs {
        display: none;
    }
}

/* --------------------------------
■ topMessage
-------------------------------- */
.topMessage {
    margin-top: 168px;
}

.topMessage__title {
    font-size: 3.6rem;
    line-height: 1.833;
    letter-spacing: 0.1em;
}

.topMessage__text {
    margin-top: 47px;
    margin-bottom: 106px;
    text-align: left;
    font-size: 1.6rem;
    line-height: 2.375;
    letter-spacing: 0.04em;
}

.topMessage__imgWrapper {
    margin-top: 63px;
    margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
    .topMessage {
        margin-top: 60.5px;
    }

    .topMessage__title {
        font-size: 2rem;
        line-height: 1.9;
        letter-spacing: 0.04em;
    }

    .topMessage__text {
        margin-top: 16px;
        margin-bottom: 40px;
        font-size: 1.4rem;
        line-height: 2;
    }
}

/* --------------------------------
■ 求める人物像
-------------------------------- */
.desiredTalent {
    margin-top: 100px;
}

.talentList {
    display: flex;
    flex-wrap: wrap;
    gap: 31px 32px;
    margin: 65px 0 0;
}

.talentItem {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 64px) / 3);
    padding: 23px 16px 26px;
    border-radius: 12px;
    background-color: #eff6f8;
}

.talentItem__number {
    position: absolute;
    top: 15px;
    left: 15px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.227;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.talentItem__number::after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    margin: 3px auto 0;
    background-color: var(--text-color);
}

.talentItem__image {
    width: 130px;
    height: auto;
    margin-bottom: 7px;
}

.talentItem__text {
    margin: auto;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.634;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 1080px) {
    .talentList {
        gap: 31px 24px;
    }

    .talentItem {
        width: calc((100% - 48px) / 3);
    }

    .talentItem__text {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 767px) {
    .desiredTalent {
        margin-top: 100px;
    }

    .talentList {
        flex-direction: column;
        gap: 16px;
        margin: 32px 0 48px;
    }

    .talentItem {
        width: 100%;
    }

    .talentItem__text {
        font-size: 1.6rem;
    }
}

/* --------------------------------
■ 募集職種
-------------------------------- */
.recruiting {
    margin-top: 100px;
    margin-bottom: 100px;
}

.recruitTabList {
    display: flex;
    align-items: flex-end;
    column-gap: 20px;
    width: 100%;
}

.recruitTabList__item {
    width: 21.58%;
}

.recruitTabList__tab {
    display: block;
    width: 100%;
    padding: 18px 16px 17px;
    border: none;
    border-radius: 0 16px 0 0;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.471;
    letter-spacing: 0.1em;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#tab1 {
    background-color: #54b0cf;
}
#tab2 {
    background-color: #8e98ac;
}
#tab3 {
    background-color: #046fa5;
}
#tab4 {
    background-color: #192c55;
}
.recruitTabList__tab[aria-selected="true"] {
    background-color: #eff6f8 !important;
    color: var(--text-color);
    pointer-events: none;
}

.tabContentWrapper {
    background-color: #f4f4f4;
    padding: 80px 16px 86px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.tabContent {
    max-width: 1018px;
    margin: 0 auto;
}

.tabContent p {
    margin-bottom: 0;
}

.tabContent__table {
    width: 100%;
    border-top: 1px solid #dcdcdc;
}

.tabContent__table tr {
    border-bottom: 1px solid #dcdcdc;
}

.tabContent__table th,
.tabContent__table td {
    padding: 19.5px 0;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.04em;
    vertical-align: baseline;
}

.tabContent__table th {
    box-sizing: border-box;
    width: 283px;
    padding-right: 32px;
}

.tabContent .th_small {
    display: block;
    font-size: 1.4rem;
}

.tabContent__table .list-dots li {
    position: relative;
    padding-left: 1.0625em;
    line-height: 1.75;
}

.tabContent__table .list-dots li::before {
    content: "";
    position: absolute;
    top: 0.6875em;
    left: 0;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0.32;
}

.tabContent__table .-small {
    margin-top: 11px;
    margin-bottom: 6px;
    font-size: 1.3rem;
    line-height: 1.692;
    letter-spacing: 0;
}

.recruiting .buttonStyle {
    margin-bottom: 100px;
    text-align: center!important;
}

@media screen and (max-width: 767px) {
    .recruiting {
        margin: 60px 0;
    }

    .recruitTabList {
        column-gap: 5px;
    }

    .recruitTabList__item {
        width: calc((100% - 15px) / 4);
    }

    .recruitTabList__tab {
        padding: 17px 4px 16px;
        font-size: 1.3rem;
        line-height: 1.462;
    }

    .tabContentWrapper {
        margin: 0 calc(50% - 50vw) 40px;
        padding: 40px 15px;
    }

    .tabContent__table th,
    .tabContent__table td {
        display: block;
        font-size: 1.4rem;
    }

    .tabContent__table th {
        width: 100%;
        padding-right: 0;
        padding-bottom: 12px;
        line-height: 1.75;
    }

    .tabContent__table td {
        padding-top: 0;
    }

    .tabContent__table .-small {
        margin-top: 6px;
    }

    .tabContent p {
        font-size: 1.4rem;
    }

    .entryButton {
        max-width: 302px;
        height: 59px;
        margin: 64px auto 120px;
        font-size: 1.5rem;
    }

    .entryButton::after {
        width: 26px;
        height: 26px;
        right: 12px;
        background-size: 8.8px auto;
        background-position: right 8.8px center;
    }
}
