.company {
    margin: 0 0 80px;
    position: relative;
}
.company::before {
    background: url(../images/bg_diagonal.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    height: 1000px;
    position: absolute;
    top: 200px;
    left: 0;
    transform: skewY(-25deg);
    width: 100%;
    z-index: 0;
}
.company-inner {
    position: relative;
    z-index: 1;
}

.map {
    margin: 45px auto;
    width: 92%;
    max-width: 1280px;
}
.map iframe {
    height: 600px;
    width: 100%;
}

.company-images {
    margin: 80px auto 55px;
    width: 92%;
    max-width: 1280px;
}
.company-images ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.company-images ul li {
    width: 31%;
}
@media screen and (max-width: 768px) {
    .map {
        margin: 0 auto 35px;
    }
    .company-images ul li {
        margin: 25px 0 0;
        width: 100%;
    }
    .company-images ul li:first-child {
        margin: 0;
    }
}
.company-list__item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.company-list__item:not(:last-child) {
    margin: 0 0 10px;
}
.company-list__item dt,
.company-list__item dd {
    color: #010000;
    font-size: 16px;
    font-weight: bold;
}
.company-list__item dt {
    width: 150px;
}
.company-list__item dd {
    width: calc(100% - 150px);
}
@media screen and (max-width: 968px) {
    .company-list__item dt {
        width: 100px;
    }
    .company-list__item dd {
        width: calc(100% - 100px);
    }
    .company-list__item dt,
    .company-list__item dd {
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    .company-list__item dt,
    .company-list__item dd {
        color: var(--main-text-color);
    }
}

.flex-block__item {
    position: relative;
    z-index: 1;
}
.flex-block__item:not(:last-child) {
    margin: 0 0 100px;
}
.flex-item__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    position: relative;
    width: 92%;
    max-width: 1280px;
    z-index: 1;
}
.flex-block__text {
    width: 45%;
}
.flex-block__image {
    width: 52%;
}
.flex-block__text h3 {
    margin: 0 0 45px;
}
.flex-block__text h3 span {
    background: #010000;
    color: #fff;
    display: inline-block;
    font-size: 32px;
    font-weight: 500;
    padding: 2px 10px;
}
.flex-block__text h3 span:first-child {
    margin: 0 0 10px;
}
.flex-block__text p {
    color: #010000;
    font-size: 16px;
    font-weight: 500;
    line-height: 2em;
}
@media screen and (max-width: 768px) {
    .flex-block__text {
        margin: 0 0 25px;
        width: 100%;
    }
    .flex-block__text h3 {
        margin: 0 0 25px;
    }
    .flex-block__text h3 span {
        font-size: 26px;
    }
    .flex-block__text p {
        font-size: 14px;
    }
    .flex-block__image {
        width: 100%;
        margin-bottom: 40px;
    }
}