.c-card_worry{
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: center;
    margin: 0 auto;
}

.c-card_worry--item{
    margin: 10px;
    display: block;
    text-align: center;
}

.c-card_worry--item img{
    object-fit: cover;
    width: 180px;
    height: 180px;
}

.c-card_worry--item p{
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width:768px) {
    
    .c-card_worry{
        margin: auto;
    }

    .c-card_worry--item{
        display: flex;
        width: 90%;
        margin: 3px auto 3px auto;
        align-items: center;
    }

    .c-card_worry--item img{
    object-fit: cover;
    width: 100px;
    height: 100px;
    }

    .c-card_worry--item p{
        font-size: 19px;
        text-align: left;
        padding: 0 0 0 30px;
    }



}








.c-card_Advantage{
    display: flex;
    justify-content: space-between;
    background-color: var(--color_pale);
    margin: 0 auto 50px auto;
}
.c-card_Advantage--text{
    white-space: pre-line;
}

.p-advantage_text__left{
    margin: 30px;
}

.p-advantage_title{
    text-decoration: underline;
    margin: 0;
}

.p-advantage_title--numhead{
    font-size: 20px;
    font-style: italic;
}

.p-advantage_title--num{
    font-size: 45px;
    font-style: italic;
}

.p-advantage_title--title{
    font-size: 33px;
    font-weight: bold;
    white-space: pre-line;
}

.p-advantage_img__right{
    object-fit: cover;
    min-width: 220px;
    width: 220px;
    height: 220px;
    margin: 30px 30px 30px 0px;
}


@media screen and (max-width:768px) {
    
    .c-card_Advantage{
        flex-direction: column;
        background-color: #ffffff00;
    }

    .p-advantage_img__right{
        order: 1;
        width: 100%;
        margin: 0;
    }

    .p-advantage_text__left{
        margin: 0;
        order: 2;
    }

    .p-advantage_title--numhead{
        font-size: 12px;
    }

    .p-advantage_title--num{
        font-size: 22px;
        margin: 0 0 0 -5px;
    }


    .p-advantage_title--title{
        margin: 0 0 0 -10px;
        font-size: 20px;
    }



}



.c-card_Interview{
    background-color: var(--color_pale);
    width: 340px;
    margin: 0 20px 20px 20px;
    text-align: justify;
}

.c-card_Interview--img{
    width: 300px;
    height: 300px;
    margin: 20px 20px;
    object-fit: cover;
}
.c-card_Interview--title{
    margin: 20px;
}
.c-card_Interview--name{
    font-weight: bold;
    font-size: 30px;
}
.c-card_Interview--subtitle{
    margin: 20px;
}
.c-card_Interview--text{
    margin: 18px;
}



