/* ここからプロフィール */
.profile_section {
    margin-top: 105px;
}

.name_title {
    color: #6B7C8F;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.name_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 158px;
    border-bottom: 2px dashed #B9D7EE;
}

.name_main {
    display: flex;
    align-items: baseline;
    gap: 30px;
    
}

.name_role {
    font-size: 16px;
    line-height: 1.8;
    
}

.name_subtitle {
    font-size: 24px;
    color: #B9D7EE;
}

.profile_inner {
    position: relative;
    margin-top: 30px;
}

.profileimage {
    position: absolute;
    top: -7.9%;
    left: 0;
}

.profile_wavyshape01 {
    position: absolute;
    top: 39.2%;
    left: -10.4%;
    transform: rotate(20deg);
}

.profile_wavyshape02 {
    position: absolute;
    top: 30.7%;
    left: 6.1%;
    transform: rotate(20deg);
}

.profile_wavyshape03 {
    position: absolute;
    bottom: 7.4%;
    right: -7.4%;
}

.profile_body {
    background-color: #F5FAFD;
    border-radius: 0px 50px 50px 0;
    padding:30px 30px 100px 470px;
}

.profile_text span {
    background-image: linear-gradient(transparent 70%, #FAE2E2 70%);
    background-repeat: no-repeat;
}

.profile_text::after {
    display: block;
    max-width: 440px;
    border-bottom: 2px dashed #B9D7EE;
    content: "";
}

.profile_text p,
.profile_introduction p{
    margin-bottom: 1.5em;
}

.profile_introduction {
    padding-top: 1.5em;
}

.profile_affiliation {
    margin-bottom: 0;
}

.profile_introduction a {
    color: #66b2ec;
    border-bottom: 1px solid #66b2ec;
    transition: all .3s;
}

.profile_introduction a:hover {
    color: #6B7C8F;
    border-bottom-color:#6B7C8F;
}

@media(max-width:1200px) {
    .profile_wavyshape01 {
        width: 20%;
        left: -2%;
    }
    .profile_wavyshape02 {
        width: 10%;
        top: 33%;
    }
    .profile_wavyshape03 {
        width: 15%;
        bottom: 12%;
        right: -5%;
    }
}

@media(max-width:1080px) {
    .name_content {
        padding-right: 100px;
    }
    .profileimage {
        width: 45%;
    }
    .profile_body {
        padding-left: 440px;
        align-items: flex-end;
    }
}

@media(max-width:920px) {
    .name_content {
        padding-right: 60px;
    }
    .profile_body {
        padding-left: 390px;
    }
}

@media(max-width:840px) {
    .name_content {
        padding-right: 60px;
    }

    .profile_body {
        padding-left: 340px;
        padding-right: 20px;
    }
}

@media(max-width:768px) {
    .profile_section {
        margin-top: 50px;
    }
    .profile_inner {
        display: flex;
        flex-direction: column;
    }
    .profileimage {
        position: static;
        width: 100%;
    }
    .profile_wavyshape01,
    .profile_wavyshape02 {
        display: none;
    }
    .profile_wavyshape03 {
        width: 25%;
        bottom: 6%;
    }
    .profile_body {
        font-size: 16px;
        width: 100%;
        padding: 20px 20px;
        align-items: center;
        margin-top: 30px;
    }
}

@media(max-width:570px) {
    .name_title {
        font-size: 24px;
    }
    .name_main {
        gap: 20px;
    }
    .name_role {
        font-size: 14px;
    }
    .name_subtitle {
        font-size: 20px;
    }
    .profile_inner {
        margin-top: 20px;
    }
    .profile_body {
        font-size: 14px;
        margin-top: 20px;
    }
}
/* ここまでプロフィール */