#bio {
    position: relative;
}

#bio img {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - 50px);
}

#bio_detail {
    position: absolute;
    top: 50px;
    right: 20px;
    width: 30vw;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.829);
}

#img_pc {
    display: block;
}

#img_sp {
    display: none;
}

@media (max-width: 1000px) {
    #img_sp {
        display: block;
    }
    #img_pc {
        display: none;
    }
    #bio_detail {
        position: absolute;
        top: 50vh;
        right: 0;
        left: 0;
        width: 80%;
        padding: 20px;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.829);
    }
}