/* --------------------
 Job
-------------------- */
.com-page-head-container:before {
    background-image: url(../../assets/images/pages/job/job-page-head.webp);
}

.job {
    padding: 0 0 80px;
}

@media (min-width: 768px) {
    .job {
        padding: 0 0 200px;
    }
}

.job__overview {
    margin: 0 0 100px;
}

@media (min-width: 768px) {
    .job__overview {
        margin: 0 0 150px;
    }
}

.job__overview-container {
    margin: 0 auto;
    max-width: 1542px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .job__overview-container {
        padding: 0 30px;
    }
}

.job__overview .com-title {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .job__overview .com-title img {
        height: 80px;
        width: auto;
    }
}

.job__overview__title {
    font-size: var(--fs20);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 20px;
    text-align: center;
}

.job__overview__action {
    margin: 0 0 60px;
}

.job__overview__action a {
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 30px;
    color: inherit;
    display: block;
    font-size: var(--fs16);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto;
    padding: 10px 50px 10px 30px;
    position: relative;
    text-decoration: none;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .job__overview__action a {
        font-size: var(--fs20);
        padding: 10px 50px;
    }
}

.job__overview__action a:after {
    background-image: url(../../assets/images/icons/icon-black-arrow-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: 14px;
    margin: auto 0;
    position: absolute;
    right: 15px;
    top: 0;
    transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 18px;
}

.job__overview__action a:focus {
    background-color: #FF9801;
}

.job__overview__action a:focus:after {
    transform: translateX(5px);
}

@media (hover: hover) and (pointer: fine) {
    .job__overview__action a:hover {
        background-color: #FF9801;
    }

    .job__overview__action a:hover:after {
        transform: translateX(5px);
    }
}

.job__overview__table-wrapper {
    margin: 0 -5px;
}

@media (min-width: 768px) {
    .job__overview__table-wrapper {
        margin: 0 -10px;
    }
}

.job__overview__table {
    border: none;
    border-collapse: separate;
    border-spacing: 10px;
    margin: 0 auto;
    max-width: 1090px;
    width: 100%;
}

@media (min-width: 768px) {
    .job__overview__table {
        border-spacing: 15px 20px;
    }
}

.job__overview__table > tbody > tr > th, .job__overview__table > tbody > tr > td {
    vertical-align: top;
}

.job__overview__table > tbody > tr > th {
    background-color: #FFCD81;
    border-radius: 5px;
    font-size: var(--fs12);
    font-weight: 700;
    line-height: 1.6;
    padding: 15px;
    text-align: left;
    width: 120px;
}

@media (min-width: 768px) {
    .job__overview__table > tbody > tr > th {
        border-radius: 10px;
        font-size: var(--fs18);
        padding: 20px 25px;
        width: 180px;
    }
}

@media (min-width: 992px) {
    .job__overview__table > tbody > tr > th {
        width: 220px;
    }
}

@media (min-width: 992px) {
    .job__overview__table > tbody > tr > th {
        width: 260px;
    }
}

.job__overview__table > tbody > tr > td {
    background-color: #fff;
    border-radius: 5px;
    font-size: var(--fs12);
    line-height: 1.6;
    padding: 15px;
    text-align: left;
    width: auto;
}

@media (min-width: 768px) {
    .job__overview__table > tbody > tr > td {
        border-radius: 10px;
        font-size: var(--fs18);
        padding: 20px 50px;
    }
}

.job__overview__table > tbody > tr > td p {
    margin: 0 0 1em;
}

.job__overview__table > tbody > tr > td p:last-child {
    margin-bottom: 0;
}

.job__overview__table > tbody > tr > td a {
    color: inherit;
    text-decoration: underline;
}

.job__overview__table > tbody > tr > td a:focus {
    text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
    .job__overview__table > tbody > tr > td a:hover {
        text-decoration: none;
    }
}

.job__flow {
    background-color: #fff;
    border-radius: 80px 80px 0 0;
    padding: 100px 0 60px;
}

@media (min-width: 768px) {
    .job__flow {
        border-radius: 150px 150px 0 0;
    }
}

@media (min-width: 992px) {
    .job__flow {
        border-radius: 300px 300px 0 0;
    }
}

.job__flow-container {
    margin: 0 auto;
    max-width: 1542px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .job__flow-container {
        padding: 0 30px;
    }
}

.job__flow__item-wrapper {
    margin: 0 auto 100px;
    max-width: 700px;
    width: 100%;
}

.job__flow__item {
    align-items: flex-start;
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    padding: 0 0 40px;
    position: relative;
}

@media (min-width: 768px) {
    .job__flow__item {
        align-items: center;
        gap: 50px;
    }
}

.job__flow__item:before {
    background-color: #000;
    bottom: 0;
    content: "";
    display: block;
    left: 35px;
    margin: 0;
    position: absolute;
    right: auto;
    top: 0;
    width: 2px;
    z-index: 0;
}

@media (min-width: 768px) {
    .job__flow__item:before {
        left: 85px;
    }
}

@media (min-width: 768px) {
    .job__flow__item:first-child:before {
        top: 50%;
    }
}

.job__flow__item:last-child {
    padding-bottom: 0;
}

.job__flow__item:last-child:before {
    display: none;
}

.job__flow__item__fig {
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
    width: 70px;
    z-index: 1;
}

@media (min-width: 768px) {
    .job__flow__item__fig {
        width: 170px;
    }
}

.job__flow__item__main {
    flex-grow: 1;
    flex-shrink: 1;
    width: auto;
}

.job__flow__item__main__title {
    font-size: var(--fs22);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px;
}

@media (min-width: 768px) {
    .job__flow__item__main__title {
        font-size: var(--fs30);
    }
}

.job__flow__item__main__title img {
    margin: 0 8px 0 0;
}

@media (max-width: 767px) {
    .job__flow__item__main__title img {
        height: 20px;
        transform: translateY(2px);
        width: auto;
    }
}

@media (min-width: 768px) {
    .job__flow__item__main__title img {
        margin: 0 15px 0 0;
    }
}

.job__flow__item__main__title span {
    vertical-align: middle;
}

.job__flow__item__main__content p {
    font-size: var(--fs14);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .job__flow__item__main__content p {
        font-size: var(--fs18);
    }
}

.job__flow__item__main__links {
    margin: 20px 0 0;
}

.job__flow__item__main__links a {
    color: #02569B;
    display: block;
    font-size: var(--fs14);
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 5px;
    padding: 0 30px 0 0;
    position: relative;
    text-decoration: none;
    width: -webkit-fit-content;
    width: fit-content;
}

@media (min-width: 768px) {
    .job__flow__item__main__links a {
        font-size: var(--fs18);
    }
}

.job__flow__item__main__links a:before {
    background-color: #fff;
    border: 2px solid #02569B;
    border-radius: 50%;
    bottom: 0;
    content: "";
    display: block;
    height: 22px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 22px;
}

.job__flow__item__main__links a:after {
    background-color: #02569B;
    bottom: 0;
    content: "";
    display: block;
    height: 7px;
    margin: auto 0;
    -webkit-mask-image: url(../../assets/images/icons/icon-black-bold-arrow-right.svg);
    mask-image: url(../../assets/images/icons/icon-black-bold-arrow-right.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 5.5px;
    top: 0;
    width: 9px;
}

.job__flow__item__main__links a:focus:before {
    transform: scale(1.2);
}

@media (hover: hover) and (pointer: fine) {
    .job__flow__item__main__links a:hover:before {
        transform: scale(1.2);
    }
}

.job__flow__item__main__links a:last-child {
    margin-bottom: 0;
}

.job__flow__action {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 30px 40px;
    margin: 0 auto;
    max-width: 792px;
}

.job__flow__action__item {
    width: 100%;
}

@media (min-width: 768px) {
    .job__flow__action__item {
        width: calc(50% - 20px);
    }
}

.job__flow__action__item a {
    align-items: center;
    background-color: #FBCE21;
    border: 2px solid #000;
    border-radius: 13px;
    color: inherit;
    display: flex;
    flex-flow: row nowrap;
    font-size: var(--fs16);
    font-weight: 700;
    height: 80px;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

.job__flow__action__item a:after {
    background-color: #000;
    bottom: 0;
    content: "";
    display: block;
    height: 13px;
    margin: auto 0;
    -webkit-mask-image: url(../../assets/images/icons/icon-black-arrow-right.svg);
    mask-image: url(../../assets/images/icons/icon-black-arrow-right.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 30px;
    top: 0;
    transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 17px;
}

@media (min-width: 768px) {
    .job__flow__action__item a {
        border-radius: 26px;
        font-size: var(--fs20);
        height: 100px;
    }
}

.job__flow__action__item a:focus {
    background-color: #FF9801;
}

.job__flow__action__item a:focus:after {
    transform: translateX(5px);
}

@media (hover: hover) and (pointer: fine) {
    .job__flow__action__item a:hover {
        background-color: #FF9801;
    }

    .job__flow__action__item a:hover:after {
        transform: translateX(5px);
    }
}