html, body {
  font-family: 'Noto Sans JP', sans-serif;
}

.businessTitleBox {
  width: 100%;
  margin-top: 140px;
  margin-bottom: 50px;
  text-align: center;
}

.businessTitle {
  font-size: 26px;
  font-weight: bold;
}


/************** セクション１ **************/
.section1 {
  width: 100%;
  height: 206vh;
}

.serviceContentFlex {
  display: block;
}

.serviceContent {
  width: 100%;
  height: 52vh;
}

.serviceContentTitle1, .serviceContentTitle2, .serviceContentTitle3, .serviceContentTitle4 {
  height: 30%;
  line-height: 155px;
  padding-left: 40px;
  font-size: 19px;
}

.serviceContentTitle1, .serviceContentTitle4 {
  color: white;
  background-color: #3b3b3b;
}

.serviceContentTitle2, .serviceContentTitle3 {
  color: black;
  background-color: #e4e4e4;
}

.serviceContentText {
  height: 70%;
  padding: 15px;
}

.serviceContentTextNo {
  width: 100%;
}

.serviceContentTextTitle {
  width: 100%;
  font-size: 26px;
  font-weight: bold;
}

.serviceContentTextBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.serviceContentTextImg1 {
  width: 146px;
  height: 106px;
  background-image: url(/images/service_INDEPENDENCE.png);
  background-size: cover;
}

.serviceContentTextImg2 {
  width: 146px;
  height: 106px;
  background-image: url(/images/service_BPO.png);
  background-size: cover;
}

.serviceContentTextImg3 {
  width: 146px;
  height: 106px;
  background-image: url(/images/service_WEB.png);
  background-size: cover;
}

.serviceContentTextImg4 {
  width: 146px;
  height: 106px;
  background-image: url(/images/service_CONSULTING.png);
  background-size: cover;
}

.serviceContentTextArea {
  width: 200px;
  height: 128px;
  overflow-wrap: break-word; /* 範囲内で改行 */
  font-size: 14px;
}

/* PCサイズ時のスタイル */
@media (min-width: 768px) {
  .section1 {
    height: 155vh;
  }

  .serviceContentFlex {
  display: flex;
  }

  .serviceContent {
    height: 67vh;
  }

  .serviceContentTitle1, .serviceContentTitle2, .serviceContentTitle3, .serviceContentTitle4 {
  line-height: 225px;
  }

  .serviceContentTitleText {
    font-size: 15px;
  }

  .serviceContentText {
    padding: 60px;
  }

  .serviceContentTextBox {
    justify-content: unset;
  }

  .serviceContentTextImg1, .serviceContentTextImg2, .serviceContentTextImg3 {
    width: 210px;
    height: 150px;
    margin-right: 50px;
  }

  .serviceContentTextImg4 {
    width: 185px;
    height: 150px;
    margin-right: 70px;
  }


  .serviceContentTextArea {
    width: 250px;
    font-size: 16px;
  }
}


/************** セクション２ **************/
.section2 {
  width: 100%;
  height: 72vh;
  padding-top: 80px;
  margin-bottom: 100px;
  background-color: black;
}

.serviceMessageArea {
  color: white;
  margin-left: 40px;
  white-space: pre-line; /* 改行を維持 */
}

.serviceMessageBold {
  font-weight: bold;
  font-size: 19px;
}

.serviceMessageEmp {
  font-weight: bold;
  color: #00ffa9;
}

/* PCサイズ時のスタイル */
@media (min-width: 768px) {
  .section2 {
    height: 94vh;
    padding-top: 150px;
  }
  
  .serviceMessageArea {
    font-size: 17px;
  }

  .serviceMessageBold {
    font-size: 28px;
  }

  .serviceMessageEmp {
    font-size: 20px;
  }
}