.work {
    background: url(../img/bk-2.jpg) no-repeat;
    background-size: cover;
    max-width: 100%;
    color: #fff;
}

.work-inner {
    margin-top: 80px;
}

.work-block {
    display: flex;
    align-items: center;
    border-radius: 16px;
    min-width: 250px;
    margin-bottom: 40px;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.work-block.deco::before {
    content: "";
    width: 76vw;
    height: 21vw;
    background: #000;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: -1;
}

.work-block.deco::after {
    content: "";
    width: 42vw;
    height: 16vw;
    background: #3f2722;
    position: absolute;
    bottom: -80px;
    right: 0;
    z-index: -2;
    color: #000;
}

.work-block._reverse {
    flex-direction: row-reverse;
}

.work-block .number {
    font-size: clamp(54px, 6.6vw, 96px);
}

.work-block._normal .number {
    color: #A8191d;
    text-align: right;
}

.work-img {
    width: 55vw;
    object-fit: cover;
    flex-shrink: 0;
}

.work-text {
    max-width: 500px;
}

.work-text h3 {
    display: inline-block;
    background: #d9d9d9;
    padding: 12px 24px;
    font-size: 24px;
    font-weight: normal;
    color: #000;
    line-height: 1;
}

.work-text h3 span {
    color: #A8191d;
}

.work .btn-center {
    margin-top: 60px;
    padding: 0 16px;
}

.btn-work {
    background: #a4a4a4;
    font-size: 24px;
    color: #fff;
}

.profile {
    max-width: 100%;
    position: relative;
    background: url(../img/bk-3.jpg) no-repeat;
    background-size: cover;
}

.profile::before {
    content: "";
    width: 82px;
    height: 100%;
    background: #A8191d;
    position: absolute;
    left: 10%;
    top: 0;
}

.profile-inner {
    max-width: 800px;
    margin: 80px auto;
    position: relative;
    z-index: 1;
}

.profile-list {
    display: flex;
    flex-wrap: wrap;
}

.profile-list dt {
    width: 150px;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    padding: 40px 0 12px;
    border-bottom: solid 1px #000;
    box-sizing: border-box;
    color: #000;
}

.profile-list dd {
    font-size: 18px;
    width: calc(100% - 250px);
    border-bottom: 1px solid #000;
    margin-left: 0;
    padding: 40px 0 12px 100px;
    color: #000;
}

@media (max-width: 1200px) {
    .work-block {
        flex-direction: column;
        gap: 24px;
    }

    .work-block.deco::before {
        height: 500px;
    }

    .work-block.deco::after {
        height: 400px;
        bottom: -200px
    }

    .work-block._reverse {
        flex-direction: column;
    }

    .work-img {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .work-text {
        padding-left: 16px;
        padding-right: 16px;
    }
    .profile::before {
    background: none;
}
    .profile-list dt {
        width: 140px;
        font-size: 16px;
    }

    .profile-list dd {
        width: calc(100% - 140px);
        padding-left: 0;
        font-size: 16px;
    }
}