.person_wrapper {
    padding-top: 10vh;
}
.person_container {
    padding-left: 10%;
}
.person_top {
    display: flex;
    align-items: center;
}
.next_person {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}
.next_lineArrow {
    width: 110%;
    height: 10px;
    margin: -5px -10px 0px 0;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(45deg);
}
.person_top img {
    width: 10%;
    aspect-ratio: 3 / 4;
    border-radius: 5px;
    box-shadow: 0px 3px 6px #00000029;
    object-fit: cover;
}
.person_name {
    margin-left: 30px;
}
.policy_word {
    position: relative;
    margin-left: 40px;
    font-size: 40px;
    line-height: 65px;
    padding: 20px;
    border-radius: 5px;
    border: solid 1px #707070;
    background-color: #EAF4FF;
}
.policy_word::before {
    content: "";
    width: 2px;
    height: 30%;
    background: #FFF;
    display: inline-block;
    position: absolute;
    left: -2px;
    top: 15%;
    transform: translateX(-10%);
}
.policy_border {
    position: absolute;
    top: 23%;
    left: -3%;
    width: 1px;
    height: 50px;
    background-color: #707070;
    transform:rotate(125deg);   
}
.p_name {
    font-weight: bold;
    font-size: 20px;
}
.sp_policy {
    display: none;
}
.person_content h3{
    font-size: 18px;
    border-left: 3px solid #27336E;
    padding-left: 10px;
}
.person_content p {
    line-height: 28px;
}
.person_container table {
    border-left: 40px solid #7C9ED3;
}
.person_container th {
    text-align: left;
    font-weight: normal;
    padding: 10px;
}
.person_container td {
    padding-left: 40px;
}

@media screen and (max-width: 920px) {
    .person_top h2 {
        margin-left: 80px;
        font-size: 30px;
        line-height: 50px;
    }
}
@media screen and (max-width: 740px) {
    .person_top h2 {
        margin-left: 20px;
        font-size: 20px;
        line-height: 30px;
    }
}
@media screen and (max-width: 540px) {
    .person_container {
        padding-left: 5%;
    }
    .person_top {
        align-items: flex-end;
    }
    .person_top h2 {
        margin-left: 20px;
        font-size: 24px;
    }
    .policy_word {
        display: none;
    }
    .sp_policy {
        position: relative;
        display: block;
        margin-top: 40px;
        padding: 20px 0 20px 20px;
        border-radius: 5px;
        border: solid 1px #707070;
        background-color: #EAF4FF;
    }
    .sp_policy::before {
        content: "";
        width: 15%;
        height: 2px;
        background: #FFF;
        display: inline-block;
        position: absolute;
        left: 10%;
        top: -2px;
        transform: translateX(-10%);
    }
    .sp_policy_border {
        position: absolute;
        top: -35px;
        left: 18%;
        width: 1px;
        height: 50px;
        background-color: #707070;
        transform:rotate(125deg);   
    }
    .person_top img {
        width: 50%;
    }
    .person_content h3 {
        padding-right: 5%;
    }
    .person_content p {
        font-size: 14px;
        line-height: 28px;
        padding-right: 5%;
    }
    .person_container table {
        padding-right: 5%;
        border-left: 20px solid #7C9ED3;
    }
    .person_container th {
        font-size: 14px;
    }
    .person_container td {
        font-size: 14px;
        padding-left: 20px;
    }
}