@media screen and (max-width: 1050px) {

    /* ヘッダー部分 */

    header {
        height: 10%;
        width: 100%;
        z-index: 10;
        opacity: 0.7;
        background-color: #047622;
        color: aliceblue;
        position: fixed;
        top: 0px;
        display: flex;
    }

    .header-left {
        font-size: larger;
        width: 70%;
        height: 100%;
        display: flex;
        text-align: center;
    }

    .header-left img {
        width: 70px;

        padding: 5px 0 0 0;

    }

    .header-left p {
        font-weight: bolder;
        font-size: 100%;
    }

    .header-right {
        width: 70%;
        text-align: right;
        padding-right: 5%;
    }

    .header-right nav a {
        padding-right: 2%;
        text-decoration: none;
        color: white;
        font-size: 100%;
        font-weight: bold;
        font-family: serif;
        display: none;
    }

    /* ハンバーガーメニュー */
    .hamburger-morph {
        display: block;
    }

    .nav-morph {
        display: block;
    }

    .btn {
        padding: 1% 5%;
        background-color: rgb(49, 159, 159);
        color: white;
        border-radius: 8px;
    }

    .msg {
        padding: 5% 0 4% 0;
    }

    .msg h2 {
        font-size: xx-large;
        font-family: serif;
        font-weight: bolder;
    }

    /* メイン部分 */

    main {
        margin: 0 auto;
        text-align: center;
    }

    .message-group {
        margin: 0 auto;
        text-align: center;
    }

    .container {
        width: 100%;
        text-align: center;
    }


    .main-title {
        padding: 10% 0 0 0;
    }

    .main-title h1 {
        padding-top: 10%;
        font-size:larger;
    }

    .flex-section {
        display: flex;
        flex-direction: column;
        width: 100%;

    }

    .flex-section img {
        width: 90%;
        height: auto;
        text-align: center;
        margin: 0 auto;

    }

    .question-coment {
        padding-left: 5%;
        width: 95%;
        text-align: center;

    }

    .question-coment p {
        height: 20%;
        font-size: 130%;
        font-family: serif;
    }

    /* テキストサイズ */

    .msg {
        padding: 5% 0 4% 0;
    }

    .msg h2 {
        font-size: large;
        font-family: serif;
        font-weight: bolder;
    }

    /* footer部分 */
    footer {
        padding-top: 2%;
        padding-bottom: 2%;
        background-color: #29a83a;
        opacity: 0.7;
        margin: 8% auto 0 0;
        text-align: center;


    }

    .footer-logo {
        height: 255px;
        width: 250px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .company-logo {
        width: 80%;
    }

    .company-name {
        width: 90%;
    }

    .footer-wrapper {
        color: white;
        display: inline-flex;
        flex-direction: column;

    }

    .footer-wrapper p {
        font-size: 20px;
        font-family: serif;
        margin: 5px 0px;
    }

    .footer-tel {
        font-size: 30px;
        color: white;
        text-decoration: none;
        font-family: serif;
        font-weight: bold;
    }

    .footer-contact-button {
        display: inline-block;
        border-radius: 4%;
        padding: 15px 40px;
        background-color: rgb(49, 159, 159);
    }
}