/* プロフィール画像のサイズ調整 */
#wrap #profile .content .prof .pict {
    width: 200px;
    min-width: 200px;
    flex-shrink: 0;
}

#wrap #profile .content .prof .pict img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

/* モバイル対応 */
@media (max-width: 599px) {
    #wrap #profile .content .prof .pict {
        width: 100%;
        min-width: 100%;
        margin-bottom: 20px;
    }
    
    #wrap #profile .content .prof .pict img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

