@charset "UTF-8";
/* CSS Document */

.h2_basic {
    background-image: url("../img/bg_h2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}

@media screen and (max-width: 780px) {
    .h2_basic {
        background-size: auto 100%;
    }
}

.bg_message {
    background: #0090b6;
    color: #FFF;
    padding: 4em 5%;
    display: flex;
}

.bg_message .image {
    text-align: right;
    width: 255px;
    margin-right: 2.5em;
}
.bg_message .image .nameJ {
    font-size: 145%;
    letter-spacing: 0.02em;
    margin: 0.3em 0;
}
.bg_message .image .nameJ:before {
    content: "教 授";
    margin-right: 1em;
    font-size: 70%;
}
.bg_message .image .nameE {
    font-size: 90%;
}

.bg_message .textArea {
    width: calc(100% - (255px + 2.5em));
}
.bg_message .textArea p {
    margin-bottom: 1.5em;
}

@media screen and (max-width: 780px) {
    .bg_message {
        display: block;
    }
    .bg_message .image {
        width: 100%;
        text-align: center;
        margin: 0 auto 2em;
    }
    .bg_message .textArea {
        width: 100%;
    }
}