@charset "utf-8";

/*---------------------------*/
/*キャリアパス*/
/*---------------------------*/
#process {
    background: url('../img/bg_wave_single_g.svg') no-repeat center bottom;
    padding-bottom: 140px;
}

/*新卒入社1年目の流れ*/
#firstyear {
    padding: 30px 20px;
    border-radius: 14px;
    background: url('../img/illust12.png') no-repeat right bottom 15px;
    background-size: 14vw;
    background-color: #f8f8f8;
    border: 1px #92aec3 solid;
}
#firstyear h2 {
    text-align: center;
}
#firstyear .figure {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
#firstyear .figure figcaption {
    text-align: center;
    /*18-28*/
    font-size: clamp(1.125rem, 1rem + 0.63vw, 1.75rem);
    font-weight: bold;
    color: #000;
    margin-top: 30px;
    margin-bottom: 40px;
}


/*---------------------------*/
/*成長ステップ*/
/*---------------------------*/
#step {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto 0;
}

#step .flow {
    margin-top: 40px;
}
#step .flow  dt {
    width: 220px;
    /*16-20*/
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}
#step .flow dt::after {
  top: 14px;
}
#step .flow dd {
    margin-bottom: 10px;
}
#step .flow dd b {
    margin-top: 4px;
    margin-bottom: 15px;
    /*16-20*/
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}


/*---------------------------*/
/*ものづくりエンジニア*/
/*---------------------------*/
#engineer {
    background-color: #F0F5F9;
    padding-top: 1px; /*余白対策*/
    margin-top: -1px;
    padding-bottom: 50px;
}


/*メッセージ一覧*/
.voices {
    display: flex;
    flex-wrap: wrap;
}
.voices .item {
    width: calc((100% / 3) - 60px);
    margin: 0 30px 50px;
}
.voices a {
    text-decoration: none;
    color: #000;
}
.voices .photo {
    margin-bottom: 20px;
}
.voices .photo img {
    display: block;
    margin: 0;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;    
}
.voices .txt {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: -80px;
    position: relative;
    padding: 20px 20px;
    color: #fff;
    background-color:rgba(68, 100, 189, 0.6);
    backdrop-filter: blur(10px);
}
.voices .txt dl {
    margin: 0;
    line-height: 140%;
}
.voices .txt dt {
    /*18-20*/
    font-size: clamp(1.125rem, 1.1rem + 0.13vw, 1.25rem);
    font-weight: bold;
    margin-bottom: 10px;
}
.voices .txt dd {
    margin: 0;
    /*14-16*/
    font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
}
.voices a img {
    transition-duration: 0.3s;
}
.voices a:hover img {
    transform: scale(1.1);
    transition-duration: 0.5s;
    opacity: 0.8;
}


/*注意書き*/
.note {
    margin-top: 40px;
}
.note ul {
    margin-top: 0;
    margin-bottom: 0;
    /*12-14*/
    font-size: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem);
}



/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1279px) {
    .voices .item {
        width: calc((100% / 3) - 40px);
        margin: 0 20px 50px;
    }
}

@media screen and (max-width: 979px) {

    #process {
        padding-bottom: 80px;
    }

    #firstyear {
        background-position: right top 15px;
        border-width: 0;
    }
    #firstyear .figure img {
        margin-top: 20px;
    }

    #step {
        margin: 40px auto 0;
    }
    #step .flow  dt {
        width: 120px;
    }
    #step .flow dt::after {
      top: 14px;
    }

    .voices .item {
        width: calc((100% / 3) - 30px);
        margin: 0 15px 50px;
    }
    .voices .txt {
        padding: 15px;
    }
}

@media screen and (max-width: 779px) {
    #process .read br {
        display: none;
    }

    #engineer .read br {
        display: none;
    }
    .voices .item {
        width: calc((100% / 2) - 40px);
        margin: 0 20px 40px;
    }
}

@media screen and (max-width: 579px) {

    #firstyear .figure figcaption {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #step .flow  dt {
        width: 80px;
    }
    #step .flow dd {
        margin: 0 0 0 30px;
        padding: 10px 0px;
    }
    .voices {
        flex-direction: column;
    }
    .voices .item {
        width: 100%;
        margin: 0 auto 15px;
        padding: 0 10px 15px;
        background: url("../img/backimg02.png") repeat-x center bottom;
    }
    .voices .item a {
        display: flex;
        flex-wrap: wrap;
    }
    .voices .photo {
        width: 120px;
        margin-right: 20px;
        margin-bottom: 0;
    }
    .voices .photo img {
        border-radius: 5px;
    }
    .voices .txt {
        flex: 1;
        max-width: auto;
        border-radius: 0;
        margin-top: 0px;
        position: static;
        padding: 0;
        color: #000;
        background-color: transparent;
        backdrop-filter: blur(10px);
    }
    .voices .txt dl {
        margin-top: 10px;
    }


}

@media screen and (max-width: 379px) {
}

