@charset "UTF-8";

#face {
    background: #ccd6e0;
    height: 100vh;
    background-image: url(../testimonial/img/top_img.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.face_content {
    margin-left: 25vw;
    padding: 20px;
    width: calc(100% - 25vw);
    position: relative;
}

.face_content .under_h1 {
    color: white;
}

.face_content .under_h1 span {
    color: #B4A082;
}

.face_content .face_txt {
    position: absolute;
    left: 30px;
    bottom: 30px;
    line-height: 2;
    color: #fff;
}

@media all and (max-width: 1200px) {
    #face {
        min-height: auto;
        height: calc(100vh - 80px);
    }
    
    .face_content {
        margin-left: 0vw;
        padding: 20px;
        width: 100%;
    }
    
}

@media all and (max-width: 767px) {
    #face {
        height: calc(100vh - 50px);
        max-height: 400px;
    }

    .face_content .face_txt {
        left: 0px;
        bottom: 0px;
        line-height: 2;
        font-size: 13px;
        text-align: justify;
        margin: 0 20px 20px;
    }
}

/*------------------------
main
------------------------*/
.h2_common span {
    font-size: 40px;
}

@media all and (max-width: 767px) {
    .h2_common span {
        font-size: 24px;
    }
}

.voice_box {
    border: 1px solid #ccc;
    padding: 30px;
    margin: 0 auto;
    max-width: 1100px;
}

.corp {
    display: flex;
    justify-content: space-between;
}

.corp ul {
    display: flex;
}

.corp ul li {
    background: #f9f9f9;
    padding: 5px 10px;
    font-size: 14px;
}

.corp ul li:not(:last-child) {
    margin-right: 20px;
}

.voice_box:not(:last-child) {
    margin-bottom: 50px;
}

.voice_box .ttl {
    margin: 30px 0;
    text-align: center;
    font-size: 30px;
    color: #000;
    font-weight: bold;
}

.con_box {
    display: flex;
    justify-content: space-between;
}

.con_box figure {
    width: 300px;
}

.con_box figure img {
    width: 100%;
}

.con_box p {
    width: calc(100% - 320px);
    text-align: justify;
    line-height: 2;
    color: #333;
}

@media all and (max-width: 767px) {
    .voice_box {
        border: 1px solid #b4a082;
        padding: 30px;
        width: 100%;
    }

    .corp {
        flex-wrap: wrap;
    }
    
    .corp .name {
        width: 100%;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .corp ul {
        justify-content: center;
        width: 100%;
    }

    .corp ul li {
        padding: 5px;
        font-size: 13px;
    }

    .voice_box:not(:last-child) {
        margin-bottom: 40px;
    }

    .voice_box .ttl {
        margin: 20px 0;
        font-size: 18px;
    }

    .con_box {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .con_box p {
        width: 100%;;
        margin-top: 15px;
        font-size: 14px;
    }
}