.interview_top > .interview_head_right,
.interview_top > .interview_head_left {
    padding: 0 1rem;
}

/* 画像が右下にあるfloat */
.float_lower_right {
    overflow: hidden; /* float解除 */
}
.space {
    float: right; /* 右に配置 */
    height: 12em;  /* 画像上の余白の高さ */
}
.float_lower_right_image {
    float: right; /* 右に配置 */
    clear: right; /* spaceの下に配置する */
    max-width: 245px;
    margin-left: 8px;
}

@media screen and (max-width: 1000px) {
    .interview_top > .interview_head_left {
        padding: 2rem 1rem;
    }

    .float_lower_right {
        display: flex;
        flex-direction: column;
    }
    /* 余白用の要素は不要なので非表示 */
    .space {
        display: none; 
    }
    /* 画像を下に配置 */
    .float_lower_right_image {
        float: none;
        clear: none;
        max-width: 100%;
        margin: 0 auto;
    }
}