@charset "utf-8";
main {
    background-color: rgba(166, 166, 214, 0.089);
    padding-top: 130px;
    padding-bottom: 130px;
}

main h1 {
    border-left: 5px solid #0739ff;
    font-size: 40px;
    font-weight: bold;
    margin-left: 13vw;
    padding-left: 20px;
}

/* Executive Member*/
.Executive {
    display: flex;
    flex-direction: column;
    margin: 50px auto;
}

.Executive .executive_member {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}
.Executive .executive_member .title {
    display: flex;
    flex-direction: column;
    margin: 0 7vw;
}

.Executive .profile {
    width: 35vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Executive .vertical_line {
    display: none;
}

.Executive .executive_member h3 {
    margin-top: 20px;
    font-size: 30px;
    text-align: center;
}

.Executive .executive_member img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    margin: 40px auto;
}

.Executive h4 {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    margin: 0 auto 20px;
}

.Executive h5 {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}
.Executive .profile h6 {
    font-size: 18px;
    margin-top: 30px;
    text-align: center;
    text-decoration: underline;
}

.Executive .profile p {
    width: 25vw;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.Executive .executive_member h5 a {
    color: #004e8e;
}

.Executive .executive_member #Austin_logo {
    display: flex;
    justify-content: center;

    margin: 30px auto 0;
    width: 190px;
    height: auto;
    box-shadow: none;
}

.Executive .executive_member #Cal_logo {
    display: flex;
    justify-content: center;

    margin: 30px auto 0;
    width: 210px;
    height: auto;
    box-shadow: none;
}

/* メンター紹介 */
main .mentor {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 100px 10vw 100px;
}

main .mentor .mentor_profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px auto 30px;

    width: 300px;
    height: auto;
}

main .mentor .mentor_profile img {
    width: 250px;
    height: 220px;
    object-fit: cover;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
}

main .mentor .mentor_profile h4 {
    font-size: 20px;
    font-weight: 550;
    margin-bottom: 10px;
}

main .mentor .mentor_profile .mentor_school {
    width: auto;
    height: 35px;
    object-fit: cover;
    box-shadow: none;
}

/* 実務メンバー紹介 */
main h2 {
    border-left: 5px solid #a4b4f4;
    font-size: 30px;
    font-weight: bold;
    padding-left: 20px;
    margin: 30px 0 30px 13vw;
}

main .practical_member{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 30px 10vw 0;
    padding-left: 20px;
}

main .practical_member .practical_member_profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px 0 20px 20px;
    width: 250px;
    height: auto;
}

main .practical_member .practical_member_profile img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
}

main .practical_member .practical_member_profile h4 {
    font-size: 20px;
    font-weight: 550;
    margin-bottom: 10px;
}

main .practical_member .practical_member_profile .practical_member_school {
    width: auto;
    height: 28px;
    object-fit: cover;
    box-shadow: none;
}

@media screen and (max-width: 840px) {

    /* Executive Member*/
    .Executive {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .Executive .executive_member {
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
        width: 100%;
    }

    .Executive .section_line {
        border-bottom: 0.5px solid rgba(0, 0, 0, 0.4);
        width: 80vw;
        margin: 10px auto;
    }

    .Executive .profile {
        width: 100%;
    }

    .Executive .vertical_line {
        width: 80vw;
        height: 0;
        margin: 50px auto;
        border-top: 0.5px solid rgba(0, 0, 0, 0.4);
    }

    .Executive .executive_member h3 {
        margin-top: 23px;
        font-size: 35px;
    }

    .Executive .executive_member img {
        width: 270px;
        height: 380px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    }

    .Executive h4 {
        font-size: 20px;
    }
    
    .Executive .profile p {
        width: 75%;
    }


}