.message_box_title {
    color: #006b93;
    font-size: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.message_text {
    display: flex;
    justify-content: space-between;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.message_text_l {
    /* margin-top: 70px; */
    width: 40%;
    padding: 70px 20px 20px;
    margin-left: 30px;
}

.message_text_l_item {
    padding: 25px 0;
}

.message_text_l_item .line {
    height: 45px;
    width: 1px;
    background: #006b93;
}

.message_text_l_item .title {
    text-align: left;
    padding: 20px 0 15px;
    font-weight: 400;
}

.message_text_l_item .content {
    font-size: 18px;
    line-height: 1.33;
    letter-spacing: .2px;
    color: #4a4a4a;
}

.message_text_map {
    /* position: absolute;
    top: 0;
    right: 0;
    max-width: 100%; */
    width: calc(60% - 20px);
    height: max-content;
}

@media screen and (max-width:768px) {
    .message_text {
        display: block;
    }
    .message_text_map {
        display: block;
        width: 100%;
    }
    .message_text_l {
        width: 100%;
        margin: 0;
        padding: 0px 20px 20px;
        box-sizing: border-box;
    }
}