section {
    margin-top: calc(60px + 30px);
    margin-bottom: 50px;
}
h1 {
    font-size: 20px;
    font-weight: 400;
    color: rgb(233 76 59);
    line-height: 1.2;
}
h2 {
    margin: 20px 0 10px 0;
    line-height: 1.4;
}
h3 {
    font-weight: 400;
    line-height: 1.4;
    font-size: 20px;
    margin-bottom: 50px;
}
div.info-area {
    margin-bottom: 50px;
}
div.info-area p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 14px;
    & span {
        font-weight: 500;
    }
}
div.info-area p:first-child {
    margin-top: 20px;
}

section div.mv-area {
    display: flex;
    gap: 30px;
    /*& div.texts {*/
    /*    width: 40%;*/
    /*}*/
    /*& div.images {*/
    /*    width: 60%;*/
    /*    display: grid;*/
    /*}*/
}
section div.mv-area.mission {
    & div.texts {
        width: 60%;
    }
    & div.images {
        width: 40%;
        display: grid;
    }
    & div.texts p {
        font-size: 16px;
        line-height: 1.5;
        color: #212121;
    }
}
section div.mv-area.vision {
    margin-top: -70px;
    & div.texts {
        width: 50%;
    }
    & div.images {
        width: 50%;
        display: grid;
    }
    & div.texts p {
        font-size: 16px;
        line-height: 1.5;
        color: #212121;
    }
}
section div.mv-area div.images img {
    width: 100%;
    border: 2px solid #fff;
    object-fit: contain;
    border-radius: 17px;
    box-shadow: 0 0 5px 3px #d3d3d3;
}
section div.mv-area.vision div.images img {
    width: 80%;
    box-shadow: none;

}
@media only screen and (max-width: 1200px) {
    section div.mv-area.mission {
        & p {
            margin-right: 100px;
        }
    }
    section div.mv-area.vision {
        margin-top: -50px;
        & div.texts {
            margin-top: 50px;
        }
        & img {
            width: 50%;
        }
    }
}

@media only screen and (max-width: 1040px) {
    section div.mv-area.mission {
        & p {
            margin-right: 100px;
        }
    }
    section div.mv-area div.images {
        display: none !important;
    }
    section div.mv-area.vision {
        margin-top: -30px !important;
    }
    section div.mv-area div.texts {
        width: 100% !important;
        & p {
            margin-right: 0;
        }
    }
}