@charset "utf-8";
/* ======================
Article header 
======================*/
.Information {
    color: #366EB3;
    text-align: center;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
}
.section--JobList {
    padding: 48px 5%;
    gap: 5px;
}
.section__top {
    color: #FB7BA2;
    font-family: Montserrat;
    font-size: 4.0rem;
    font-weight: 700;

}
.section__title {
    font-size: 2.0rem;
    font-weight: 700;
}
.joblist__items {
    max-width: 375px;
    padding: 10px 5%;
    flex-direction: column;
    gap: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.job_img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 3%;
    margin-top: 10px;
}

/* job pc */
@media screen and (min-width:769px){
    .joblist__items {
        max-width: 1440px;
        display: flex;
        align-items: flex-start;
        flex-direction: row;
    }

}

/* =====================
    section--Benefits
===================== */
.section--Benefits {
    padding: 48px 5%;
    gap: 5px;
}
.About_txt {
    font-size: 1.2rem;
    font-weight: 400;
    }
    .benefits_items {
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .benefits_img {
        margin-top: 10px;
        border-radius: 5%;
        width: 337px;
        height: auto;
    }

/* benefits pc */
@media screen and (min-width:769px){
    .benefits_items {
        display: flex;
        padding: 20px 0px 10px 0px;
        justify-content: center;
        align-items: flex-start;
        gap: 25px;
        align-self: stretch;
        flex-direction: row;
    }
    .benefits_img {
        border-radius: 5%;
        width: 100%;
        max-width: calc(33.333% - 1rem);
        height: auto;
    }
}


 /* =====================
    section--Faq
    ===================== */
.section--Faq {
    padding: 48px 5%;
    gap: 5px;
}
.faq__list {
    margin: 0;
    padding: 0;
    gap: 25px;
    display: grid;
}
      
.faq__question {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}
      
.faq__answer {
    font-size: 1.6rem;
    font-weight: 400;
}
      
.faq__answer strong {
    font-size: 1.6rem;
    font-weight: 700;
}