@charset "utf-8";


/*---------------------------------*/
/*モノづくりエンジニア*/
/*---------------------------------*/

#voice {
    background: url('../img/bg_wave_single_g.svg') no-repeat center bottom;
    padding-bottom: 120px;
    margin-top: 80px;
}

/*表紙*/
.cover {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.cover .photo {
    width: 35vw;
    margin-left: 80px;
}
.cover .photo img {
    border-radius: 20px;
}
.cover .txt {
    flex: 1;
}

.cover .txt h2 {
    /*20-28*/
    font-size: clamp(1.25rem, 1.025rem + 1.13vw, 2.375rem);
}
.cover .txt .status {
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 140%;
    /*16-18*/
    font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
}


/*主な仕事内容*/
#scene {
    background-color: #F0F5F9;
    padding-top: 1px; /*余白対策*/
    margin-top: -1px;
    padding-bottom: 100px;
}
#scene .read {
    text-align: center;
    margin-bottom: 60px;
}



/*写真ギャラリー（３column）*/
.gallery {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}
.gallery li {
    width: calc((100% / 3) - 40px);
    margin: 0 20px 30px;
    /*16-18*/
    font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
    text-align: center;
}
.gallery li img {
    display: block;
    margin-bottom: 20px;
    border-radius: 20px;
}


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


/*戻るボタン*/
.pageback {
    margin-top: 30px;
    text-align: center;
}
.pageback a {
    display: inline-block;
    min-width: 200px;
    background: url('../img/icon_arrow_back_w.png') no-repeat left 10px center;
    background-size: 28px; 
    background-color: #005aba;
    border-radius: 50px;
    padding: 10px 20px 10px 45px;
    color: #fff;
    text-decoration: none;
}
.pageback a:hover {
    background-color: #b1d558;
    transition: all .5s;
}




/****************************/
/*レスポンシブ*/
/****************************/
@media screen and (max-width: 1279px) {
}

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

@media screen and (max-width: 779px) {
    #voice {
        margin-top: 40px;
        padding-bottom: 60px;
    }
    .cover {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding: 0 20px;
        flex-direction: column;
    }
    .cover .txt {
        margin-bottom: 20px;
    }
    .cover .photo {
        width: 100%;
        margin: 0 auto;
    }
    .cover .photo img {
        width: 100%;
    }

    #scene {
        padding-bottom: 60px;
    }
    #scene .read {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .gallery li {
        width: calc((100% / 3) - 20px);
        margin: 0 10px 0px;
    }

}

@media screen and (max-width: 579px) {
    .gallery li {
        width: 100%;
        margin: 0 30px 20px;
    }
}

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

