@charset "UTF-8";
/* CSS Document */

.interviewee {
    background: #fff;
    margin-bottom: 30px;
    padding: 16px；
}
			
.profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
			
.profile img {
    width: 80px;
    height: auto;
    border-radius: 50%;
}
			
.profile-info {
    font-size: 14px;
    min-width: 100px;
}

.area1{
    background-color: #e6dbf0;
    width:100%;
}
			
.question {
    background-color: #e6dbf0;
    padding: 10px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.question2 {
    background-color: #fff;
    padding: 10px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.answer {
    display: flex;
    margin-top: 10px;
    align-items: flex-start;
}
			
.answer img {
    width: 25px;
    height: auto;
    margin-left: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}
			
.answer-text {
    flex: 1;
    text-indent: -0.3em;
    padding-left: 0.3em;
}
			
.answer-text p {
    margin: 0;
    text-indent: 0.3em;
}
			
.answer-text p:first-child {
    text-indent: 0;
}

.interviewee .messeage{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 50 auto 5;
}

.border_s{
    border: solid #DFDFDF 1px;
    text-align: center;
    width:95%;
    margin:10 auto;
}
			
/* レスポンシブ対応 */
@media (max-width: 600px) {
    .profile {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile img {
        width: 70px;
    }
    .answer {
        flex-direction: row;
    }
    .answer-text {
        text-indent: -0.5em;
        padding-left: 0.5em;
    }
    .interviewee .messeage{
    font-size: 1.0rem;
    }
    .question2 {
        font-size: 0.8rem;
        text-indent: -2.5em;   /* 2行目以降を左に寄せる */
        padding-left: 2.5em;   /* 全体をQ1,の幅分右に寄せる */
        margin-left: 10px;
    }
    .question {
        font-size: 0.8rem;
        text-indent: -2.5em;   /* 2行目以降を左に寄せる */
        padding-left: 2.5em;   /* 全体をQ1,の幅分右に寄せる */
        margin-left: 10px;

    }
}