main {
  background: #EEEEEE;
}

section {
  padding: 100px 60px 120px;
  position: relative;
  text-align: center;
  overflow-x: hidden;
  background: #fff;
  border-radius: 70px;
  margin: 100px 0;
}
@media all and (max-width: 750px) {
  section {
    border-radius: 35px;
    margin: 40px 0;
    padding: 40px 20px 40px;
  }
}
section .section_title_inner {
  background: #444444;
  color: #fff;
  padding: 0px 20px;
  font-size: clamp(15px, 2.08vw, 30px);
  z-index: 1;
  position: relative;
}
@media all and (max-width: 750px) {
  section .section_title_inner {
    padding: 2px 5px;
  }
}
section::before {
  content: "COMPANY";
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #EEEEEE;
  top: 30px;
  left: 0;
  width: 100%;
  font-size: clamp(46px, 6.39vw, 92px);
  z-index: 0;
  white-space: nowrap;
}
@media all and (max-width: 750px) {
  section::before {
    top: 20px;
    line-height: 0.8;
  }
}
section.support::before {
  content: "MATERNITY SUPPORT";
}
@media all and (max-width: 750px) {
  section.support::before {
    content: "MATERNITY\aSUPPORT";
    white-space: pre-wrap;
  }
}
section.diversity::before {
  content: "DIVERSITY&INCLUSION";
}
@media all and (max-width: 750px) {
  section.diversity::before {
    content: "DIVERSITY&\aINCLUSION";
    white-space: pre-wrap;
  }
}
@media all and (max-width: 750px) {
  section.diversity {
    margin-bottom: 80px;
  }
}

.section_header_image {
  margin-top: 50px;
}

.section_item {
  background: #EFB9E0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px;
  border-radius: 60px;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media all and (max-width: 750px) {
  .section_item {
    margin-top: 20px;
    border-radius: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
}

@media all and (min-width: 751px) {
  .section_item_title {
    width: 28%;
  }
}

.section_item_title_num {
  font-size: clamp(32px, 3.47vw, 50px);
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}
.section_item_title_num span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: clamp(27px, 2.85vw, 41px);
  font-weight: 300;
}

.section_item_title_sub {
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  padding: 0 10px;
  font-size: clamp(19px, 2.08vw, 30px);
}

.section_item_text {
  text-align: left;
  font-size: clamp(12px, 1.39vw, 20px);
  line-height: 2;
}
@media all and (min-width: 751px) {
  .section_item_text {
    width: 75%;
  }
}