@charset "utf-8";

/*============================
社員インタビュー
============================*/

.people_box {
    position: relative;
    margin-bottom: 40px;
}

.people_box .text {
    width: 380px;
    position: absolute;
    left: 0;
    bottom: 60px;
    margin: auto;
}

.people_box p.name {
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 30px;
    border-bottom: 1px solid #fccf00;
}

.people_box p.name .mini {
    font-size: 14px;
    display: block;
}

.people_box p.eng {
    color: rgba(28, 54, 92, 0.6);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.4;
}

.people_box .photo {
    width: 700px;
    margin-left: auto;
}

.photo img {
    height: 100%;
    object-position: center;
    object-fit: cover;
}

#interview section:not(:last-child) {
    margin-bottom: 100px;
}

#interview section .flex {
    align-items: stretch;
    gap: 40px;
}

#interview section .flex dl {
    width: 500px;
    background: #fff;
    border-radius: 10px;
    position: relative;
}

#interview section .flex dl dt {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding: 35px 30px 30px 80px;
    border-bottom: 1px solid #222;
}

#interview section .flex dl dt::before {
    content: "Q";
    font-size: 16px;
    color: #fff;
    background: #222;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: block;
    text-align: center;
    position: absolute;
    top: 30px;
    left: 30px;
}

#interview section .flex dl.two-lines dt {
    padding-top: 17px;
    padding-bottom: 17px;
}

#interview section .flex dl dd {
    padding: 30px 30px 30px 80px;
    position: relative;
    font-weight: 700;
}

#interview section .flex dl dd::before {
    content: "A";
    font-size: 16px;
    color: #fff;
    background: #1c365c;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: block;
    text-align: center;
    position: absolute;
    top: 30px;
    left: 30px;
}

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

    .people_box {
        margin-bottom: 20px;
    }

    .people_box .text {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }

    .people_box p.name {
        font-size: 20px;
        padding-bottom: 0;
        border-bottom: none;
        text-align: center;
    }

    .people_box p.eng {
        font-size: 30px;
        line-height: 1;
        text-align: center;
        margin-top: 5px;
    }

    .people_box .photo {
        width: 100%;
        margin-left: 0;
    }

    #interview section:not(:last-child) {
        margin-bottom: 50px;
    }

    #interview section .flex {
        align-items: flex-start;
        gap: 20px;
    }

    #interview section .flex dl {
        width: 100%;
    }

    #interview section .flex dl dt {
        font-size: 18px;
        padding: 25px 20px 20px 60px;
    }

    #interview section .flex dl dt::before {
        width: 30px;
        height: 30px;
        line-height: 30px;
        top: 25px;
        left: 20px;
    }

    #interview section .flex dl.two-lines dt {
        padding-top: 25px;
        padding-bottom: 20px;
    }

    #interview section .flex dl dd {
        padding: 20px 20px 20px 60px;
    }

    #interview section .flex dl dd::before {
        width: 30px;
        height: 30px;
        line-height: 30px;
        top: 20px;
        left: 20px;
    }
}
