.hiring {
    position: relative;
    overflow: hidden;
    background-image: url(/img/hiring_bg.jpg);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 800px;
    justify-content: right;
    align-items: flex-end;
    padding-right: 120px;
    padding-bottom: 72px;
}

.hiring .content--box {
    /* transform: translateY(50%); */
}

.hiring .filter-triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/img/hiring_bg_filter.png);
    background-size: 100% 100%;
    background-position: left top;
    background-repeat: no-repeat;
}

.hiring .content--box {
    z-index: 1;
    position: relative;
}

.hiring .content--text,
.hiring .content--title {
    text-align: right;
    margin-top: 24px;
}

.hiring .content--title {
    font-size: 8.4rem;
    line-height: 1.3;
    color: var(--white);
}

.hiring .content--text {
    font-size: 2.2rem;
    color: var(--white);
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .hiring {
        padding-right: 40px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .hiring {
        padding-right: 5%;
        padding-bottom: 5%;
        height: 420px;
    }

    .hiring .content--title {
        font-size: 4rem;
    }

    .hiring .content--text {
        font-size: 1.8rem;
    }
}

.jobDescription {
    /* background-color: var(--black); */
    padding: 48px 5%;
}

.jobDescription .content--title {
    text-align: center;
}

.jobDescription .content--textBox {
    margin-top: 16px;
}

.jobDescription .horizontalTable {
    margin-top: 48px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .jobDescription .horizontalTable--header {
        font-size: 1.6rem;
    }
    
    .jobDescription .horizontalTable--text {
        font-size: 1.6rem;
    }
}

.matching {
    /* padding-top: 160px;
    padding-bottom: 150px; */
    padding: 160px 5% 150px;
    position: relative;
    transform: skewY(-10deg);
    transform-origin: top left;
    /* background-image: url(/img/); */
    background-color: var(--background-color-lightgrey);
    background-position: left top;
    z-index: 2;
}

.matching .content--inner-medium {
    transform: skewY(10deg);
}

.matching .content--title {
    font-size: 2.4rem;
    text-align: center;
    z-index: 5;
}

.matching .grid-col4 {
    margin-top: 64px;
    position: relative;
}

.matching .imgBox {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-10%, -100%);
}

.matching .img {
    width: 100%;
}

.matching .card {
    display: grid;
    place-items: center;
    background-color: var(--white);
    padding: 32px 16px;
}

.matching .card--number {
    font-size: 4rem;
}

.matching .card--imgBox {
    margin-top: 8px;
}

.matching .card--img {
    width: 63px;
    height: 57px;
}

.matching .card--text {
    margin-top: 16px;
    text-align: justify;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .grid-col4 {
        column-gap: 16px;
    }

    .matching .imgBox {
        width: 145px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .matching {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .matching .grid-col4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .matching .card--number {
        font-size: 3.2rem
    }

    .matching .imgBox {
        width: 130px;
    }
}

.messageSection {
    background-color: var(--primary-bland-color-light);
    padding: 60px 5% 230px;
    z-index: 2;
    position: relative;
}

.messageSection .bg-triangle {
    position: absolute;
    background-color: var(--primary-bland-color);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skewY(9deg);
    transform-origin: top left;
    z-index: -1;
}

.messageSection .flex-col2 {
    align-items: flex-start;
    column-gap: 32px;
    position: relative;
}

.messageSection .content--titleBox {
    width: 25%;
    position: relative;
}

.messageSection .content--title {
    vertical-align: baseline;
    font-size: 5rem;
}

.messageSection .content--imgBox {
    position: absolute;
    left: 0;
    top: 64px;
}

.messageSection .content--img {
    width: 100%;
}

.messageSection .content--catchcopy {
    font-size: 3.2rem;
    font-weight: bold;
}

.messageSection .content--textBox {
    flex: 1 0;
    margin-top: 0;
}

.messageSection .content--text {
    width: 80%;
    margin-top: 2.4rem;
    font-size: 1.8rem;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .messageSection {
        padding-bottom: 136px;
    }

    .messageSection .content--title {
        font-size: 4rem;
    }

    .messageSection .content--imgBox {
        width: 160px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .messageSection {
        padding-bottom: 196px;
    }

    .messageSection .content--titleBox {
        width: 100%;
    }

    .messageSection .flex-col2 {
        flex-direction: column;
    }

    .messageSection .content--imgBox {
        top: auto;
        bottom: 0;
        transform: translateY(105%);
    }

    .messageSection .content--textBox {
        margin-top: 24px;
    }

    .messageSection .content--catchcopy {
        font-size: 2.1rem;
    }

    .messageSection .content--text {
        width: 100%;
    }
}

.introduction {
    padding: 40px 5%;
    background-color: var(--white);
}

.introduction .mediaBox {
    width: 100%;
}

.introduction .mediaBox--inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.introduction .media {
    background-color: var(--background-color-lightgrey);
    margin-bottom: 120px;
    margin-left: 7.1428571428571vw;
    position: relative;
    justify-content: space-between;
    align-items: flex-start;
}

.introduction .media-rowReverse {
    margin-left: 0;
    margin-right: 7.1428571428571vw;
}

.introduction .media::after {
    background-color: var(--background-color-lightgrey);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100vw;
    height: 100%;
    content: "";
}

.introduction .media-rowReverse::after {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

.introduction .media--index {
    display: block;
    position: absolute;
    top: 20px;
    right: calc(5vw);
    font-size: 11rem;
    line-height: 1;
    z-index: 1;
    font-style: italic;
    color: var(--secondary-bland-color);
}

.introduction .media-rowReverse .media--index {
    left: 4.2857142857143vw;
}

.introduction .media--body {
    flex-basis: 50%;
    padding: 50px 5vw 60px 5vw;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.introduction .media--bodyTop {
}

.introduction .media--bodyBottom {
    margin-top: 240px;
}

.introduction .media--titleBox {
}

.introduction .media--title {
    color: var(--font-color-darkgrey);
    font-size: 2.2rem;
}

.introduction .media--textBox {
    margin-top: 32px;
}

.introduction .media--text {
    color: var(--font-color-darkgrey);
    font-size: 1.5rem;
    margin-top: 2em;
}

.introduction .media--imgBox {
    flex-basis: 50%;
    transform: translateY(60px);
    line-height: 0;
}

.introduction .media--imgTitle {
    position: absolute;
    top: -40px;
    right: calc( 5vw + 2.8571428571429vw);
    font-size: 13.68rem;
    font-style: italic;
    line-height: 1;
}

.introduction .media-rowReverse .media--imgTitle {
    left: 4.2857142857143vw;
}

.introduction .media--img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .introduction {
        padding-top: 64px;
        padding-bottom: 24px;
    }

    .introduction .media {
        margin-bottom: 64px;
    }

    .introduction .media::after {
        width: 4%;
    }

    .introduction .media--bodyBottom {
        margin-top: 104px;
    }

    .introduction .media--index {
        font-size: 7rem;
    }

    .introduction .media-rowReverse .media--index {
        left: 2vw;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .introduction {
        margin: 0;
        padding-bottom: 64px;
    }

    /* common.css上書き */
    .introduction .widthFullsizeIgnoreParentElement-spOnly {
        margin-top: 40px;
    }

    .introduction .widthFullsizeIgnoreParentElement-spOnly:first-of-type {
        margin-top: 0;
    }

    .introduction .media {
        width: 100%;
        margin-bottom: 0;
        margin-left: 0;
        padding: 24px;
        position: relative;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .introduction .media-rowReverse {
        margin-right: 0;
    }

    .introduction .media::after,
    .introduction .media-rowReverse::after {
        width: 0;
        height: 0;
    }

    .introduction .media--index,
    .introduction .media-rowReverse .media--index {
        position: static;
        font-size: 5rem;
        z-index: 1;
    }

    .introduction .media--body {
        flex: initial;
        width: 100%;
        padding: 24px 0;
    }

    .introduction .media--textBox {
        margin-top: 1em;
    }

    .introduction .media--text {
        margin-top: 1em;
    }

    .introduction .media--bodyBottom {
        margin-top: 16px;
    }

    .introduction .media--imgBox {
        flex: initial;
        width: 100%;
        transform: translateY(0);
    }

    .introduction .media--imgTitle,
    .introduction .media-rowReverse .media--imgTitle {
        position: static;
        font-size: 7rem;
        z-index: 1;
    }
}