.beingMember {
    width: 100%;
    overflow: hidden;
    background: #ededed;
    padding: 40px 0;
}

.sessionWrapper {
    width: 1248px;
    margin: 0 auto;
}

.sessionWrapper h3 {
    font-size: 25px;
    text-align: center;
    color: #d82805;
}

.memberBox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.memberWrapper {
    width: 300px;
    height: 450px;
    border: 3px solid #d82805;
    padding: 8px 30px;
}

.memberWrapper:last-child {
    border: none;
}

.memberBox>.memberWrapper:last-child{
    width: 620px;
}

.memberWrapper a,
.cooperation a,
.newsWrapper a {
    width: 100%;
    height: 100%;
    color: initial;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: baseline;
}

.memberWrapper img {
    width: 122px;
    height: 122px;
    margin-bottom: 7px;
}

.title {
    font-size: 28px;
    text-align: center;
}

.memberWrapper hr {
    border: 1px solid #d82805;
    width: 255px;
    margin: 20px 0;
}

.memberWrapper:last-child hr {
    border: 1px solid #EDEDED;
    width: 255px;
    margin: 20px 0;
}

.content {
    font-weight: lighter;
    font-size: 20px;
    text-align: center;
    width: 100%;
    word-wrap: break-word;
}

.sessionWrapper>a {
    color: #000;
    font-size: 14px;
    text-decoration: underline;
    float: right;
    margin-top: 20px;
}

@media(max-width:768px) {
    .sessionWrapper {
        width: 100%;
    }

    .sessionWrapper h3 {
        font-size: 18px;
    }

    .sessionWrapper>a {
        font-size: 12px;
        margin: 0 25px;
    }

    .memberBox {
        flex-direction: column;
        justify-content: center;
    }

    .memberWrapper {
        width: 90%;
        height: auto;
        margin-bottom: 20px;
    }

    .memberBox>.memberWrapper:last-child{
        width: 90%;
    }

    .memberWrapper img {
        width: 30%;
        height: auto;
    }

    .memberWrapper hr {
        width: 100%;
        margin: 10px 0;
    }

    .title {
        font-size: 18px;
    }

    .content {
        font-size: 16px;
        margin-bottom: 10px;
    }

}