.company-info-wrap {
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
}

.company-title {
    font-family: var(--font-Noto);
    font-weight: 700;
    font-size: 40px;
    word-break: keep-all;
    margin-bottom: 80px;
    line-height: 1.6;
}

.company-title span {
    color: var(--point-color);
}

.company-content-wrap {
    display: flex;
    justify-content: space-between;
}

.company-content {
    width: 45%;
}

.company-content p {
    font-family: var(--font-Noto);
    font-weight: 400;
    font-size: 22px;
    word-break: keep-all;
    line-height: 1.6;
    margin-bottom: 45px;
}

.company-pic {
    width: 50%;
    background-image: url(../img/company.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 960px */

@media (max-width:960px) {
    .company-content p {
        font-size: 18px;
    }
}

/* 768px */

@media (max-width:768px) {
    .company-content-wrap {
        flex-direction: column;
    }

    .company-title {
        font-size: 35px;
    }

    .company-content {
        width: 100%;
    }

    .company-content p {
        font-size: 1rem;
    }

    .company-pic {
        width: 100%;
        height: 500px;
    }
}

/* 640px */

@media (max-width:640px) {
    .company-title {
        font-size: 25px;
    }
}