@charset "UTF-8";
/*-------------------------------- ここから書いてく ------------------------------*/
@media (min-width: 1001px) {
    .overview {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    .overview_txt {
        width: 550px;

    }

    .overview_txt h3 {
        font-size: 2rem;
        margin: 0 0 15px 0;
        font-family: "Shin Go Regular", "sans-serif";
        color: #00a99d;
    }

    img {
        width: 450px;
    }

    .overview_txt p.about_us {
        color: #333;
    }

    iframe {
        margin-bottom: 50px;
    }

}

@media (max-width: 1000px) {
    .overview {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 50px;
    }

    .overview_txt {
        width: auto;
        margin: 0 auto;

    }

    .overview_txt h3 {

        font-size: 1.6rem;
        margin: 0 auto 15px;
        font-family: "Shin Go Regular", "sans-serif";
        color: #00a99d;
        text-align: center;
    }

    .overview img {
        width: 450px;
    }

    p.about_us {
        font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
        /*------- 文字のサイズ14pt>16pt ---------*/
    }

}

/*-------------------------------- ここまで書いた ------------------------------*/