.pageHeader__read {
  position: absolute;
  top: 90px;
  right: calc(50% - 550px);
  width: 275px;
  @media screen and (max-width: 750px){
    top: 15.5vw;
    right: 4.8vw;
    width: 30.2vw;
  }
}
.pageHeader__text {
  max-width: 1048px;
  margin: -20px auto 0;
  padding-left: 190px;
  padding-right: 350px;
  @media screen and (max-width: 750px){
    margin: 70px 0 0;
    padding-left: 20px;
    padding-right: 127px;
    font-size: 12px;
  }
}
.strengthList {
  max-width: 1080px;
  margin: 60px auto 0;
  @media screen and (max-width: 750px){
    margin-top: 10px;
    padding: 0 20px;
  }
}
.strengthList__block {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column-reverse;
  }
  &.-reverse {
    flex-direction: row;
    @media screen and (max-width: 750px) {
      flex-direction: column-reverse;
    }
  }
  + & {
    margin-top: 110px;
    @media screen and (max-width: 750px){
      margin-top: 20px;
    }
  }
}
.strengthList__left {
  width: 550px;
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.strengthList__deco {
  position: absolute;
  right: 0px;
  bottom: 0px;
  color: #e3e3e3;
  font-size: 85px;
  font-weight: bold;
  line-height: 1;
  font-family: var(--font-en);
  @media screen and (max-width: 750px){
    font-size: 52px;
  }
}
.strengthList__right {
  width: 480px;
  margin-top: 86px;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 60px;
  }
}
.strengthList__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  .en {
    font-size: 40px;
    font-family: var(--font-en);
    color: var(--color-blue);
    line-height: 1.3;
    @media screen and (max-width: 750px){
      font-size: 26px;
    }
  }
  .ja {
    font-size: 45px;
    font-weight: 900;
    color: var(--color-text-black);
    @media screen and (max-width: 750px){
      font-size: 29px;
    }
  }
  &:before {
    content: "";
    width: 190px;
    height: 190px;
    border: 1px solid var(--color-blue);
    border-radius: 50%;
    position: absolute;
    top: -75px;
    left: 198px;
    z-index: -1;
    @media screen and (max-width: 750px){
      width: 124px;
      height: 124px;
      top: -50px;
      left: 128px;
    }
  }
}
.strengthList__subtitle {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-blue);
  margin-top: 0.5em;
  line-height: 1.3;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.strengthList__text {
  margin-top: 1em;
}