/* ----------- */
/* INTERVIEW DETAIL */
/* ----------- */

/* メイン画像 */
/* ----------- */
.interview_main_img_wrap {
    width: 100%;
    position: fixed;
    top: 68px;
    z-index: -1;
}

.interview_main_img {
    width: 100%;
}

main {
    background-color: #fff;
}


/* コンテンツ全体 */
/* ----------- */

/* プロフィール箇所 */
/* ----------- */
.profile {
    margin-bottom: 160px;
}
.profile_title_job {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #1F85FD;
    line-height: 1.6;
    margin-bottom: 16px;
}

.profile_title_name {
    display: block;
    font-size: 36px;
    font-weight: bold;
}

.profile_text {
    margin-top: 40px;
    line-height: 1.6;
}
.profile_text_annotation {
    color: #8A8A8A;
}

/* Q&A */
/* ----------- */
.script {
    margin-bottom: 100px;
}

/* 画像 */
.script_img {
    width: 100%;
}

/* テキスト */
.script_text_answer {
    margin-top: 48px;
    line-height: 1.6;
}
.script_text_answer_link {
    color: #1F85FD;
    text-decoration: underline;
}

.script_text_answer_annotation {
    color: #8A8A8A;
}

.script_text_answer_link:hover {
    transition: all .2s;
    opacity: .6;
}

.script_text_question {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    padding-left: 40px;
    margin-top: 12px;
    position: relative;
}
.script_text_question_number {
    position: absolute;
    top: 0;
    left: 0;
    color: #1F85FD;
}

/* My Private */
/* ----------- */
.private {
    background-color: #F4F4F8;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    justify-content: space-between;
}

.private_title {
    position: absolute;
    top: 40px;
    left: 40px;
}

/* 画像 */
.private_layout_img {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.private_img {
    border-radius: 10px;
    width: 100%;
}

/* テキスト */
.private_layout_description {
    width: 50%;
    padding-top: 56px;
}
.private_description_title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 16px;
}
.private_description_text {
    line-height: 1.6;
}