@charset "utf-8";
.greetingMessage {
    padding: 60px 0;
    position: relative;
    margin: 100px 0;
}
.greetingMessage:after {
    content: "";
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: #DEF2FF;
}
.greetingMessage .flexBox {
    width: 800px;
    margin: 0 auto;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}
.greetingLeft {
    width: 47%;
}
.greetingRight {
    width: 47%;
}
.greetingRight h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.greetingRight h3 span {
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 6px;
}
.greetingText2 {
    font-size: 1.5rem;
    line-height: 1.8;
}
.greetingImg {
    margin-bottom: 20px;
}
.greetingText {
    font-size: 1.5rem;
    line-height: 1.8;
}

@media screen and (max-width: 835px) {
    .greetingMessage {
        padding: 15px 0;
        position: relative;
        margin: 40px 0;
    }
    .greetingMessage .flexBox {
        width: auto;
        flex-direction: column-reverse;
        margin: 0 1em;
    }
    .greetingRight {
        width: auto;
        margin-bottom: 30px;
    }
    .greetingLeft {
        width: auto;
    }
}