/* .con1 */
.con1 {
    position: relative;
    margin: 0 0 100px 0;
}
.con1_left {
    transform: translateY(-30%);
    width: 60%;
    margin: 0 auto;
    text-align: center;
}
.con1_img {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 6px 24px 10px rgba(1 58 148 / 6%);
}
.con1_img img{
    width: 100%; height: 100%;
    object-fit: cover;
}
.name_text {
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
}
.con1_left>div>span {
    font-weight: bold;
}

.con1_right {}
.con1_right>div{
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
}
.con1_right>div>span {
    font-weight: bold;
}
.con1_right>p {
    line-height: 1.6;
}
p {
    word-break: keep-all;
}


/* 모바일 사진 반응형 */
@media (min-width: 420px) {
    .con1_img {
        width: 227px;
        margin: 0 auto;
    }
    .con1_img img {
        width: 227px;
    }
}