@media screen and (max-width: 1200px) {}

/* 1024px以下に適用されるCSS（タブレット用） */
@media screen and (max-width: 896px) {}



@media screen and (max-width: 1032px) {
    .about-representative-container {
        width: 90%;
    }
    .company-profile-bottom-img-box {
        height: 120px;
    }
}

@media screen and (max-width: 768px) {
    .company-profile-bottom-img-box {
        height: 100px;
    }
}

@media screen and (max-width: 440px) {

    .company-profile-container{
        width: 90%;
    }

    .company-profile-list-container {
        width: 90%;

        table {
            th {
                font-size: 16px;
            }

            td {
                font-size: 12px;
            }
        }
    }

    .company-profile-bottom-img-box {
        margin-top: 20px;
        height: 75px;
    }

    .business-h2{
        font-size: 5vw;
    }
}
