/* howtouse */
.howtouseReasonList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin: 50px 0;
}

.howtouseReasonList li {
  width: calc((100% - 100px) / 3);
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  border-radius: 30px;
  padding: 10px 20px 20px 20px;
  text-align: center;
  position: relative;
}

.howtouseReasonList li:nth-child(1):after {
  content: "1";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #CBA144;
  color: #fff;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 700;
  font-family: "Roboto";
  font-style: italic;
  padding: 16px;
}

.howtouseReasonList li:nth-child(2):after {
  content: "2";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #CBA144;
  color: #fff;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 700;
  font-family: "Roboto";
  font-style: italic;
  padding: 16px;
}

.howtouseReasonList li:nth-child(3):after {
  content: "3";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #CBA144;
  color: #fff;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 700;
  font-family: "Roboto";
  font-style: italic;
  padding: 16px;
}

.howtouseReasonListTitle {
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6em;
  color: #CBA144;
  padding-left: 60px;
}

.howtouseReasonListText {
  font-size: 16px;
  line-height: 1.75em;
  text-align: left;
}

.howtouseWorriesList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.howtouseWorriesList li {
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #F4F1E9;
  padding: 0 15px 30px 15px;
  border-radius: 50%;
  text-align: center;
}

.howtouseWorriesListImage {
  text-align: center;
}

.howtouseWorriesListImage img {
  width: 60%;
  height: auto;
}

.howtouseWorriesListText {
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}

.howtouseSceneList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.howtouseSceneList li {
  width: calc((100% - 60px) / 4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 3px solid #F4F1E9;
  padding: 5px;
  border-radius: 15px;
  overflow: hidden;
}

.howtouseSceneListImage {
  width: 30%;
  text-align: center;
}

.howtouseSceneListImage img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  opacity: 0.75;
}

.howtouseSceneListText {
  width: 70%;
  font-weight: 700;
  text-align: center;
  line-height: 1.6em;
}

@media all and (max-width: 1024px) { /* SP */
  .howtouseReasonList li {
    width: 100%;
  }

  .howtouseSceneList {
    gap: 10px;
  }

  .howtouseSceneList li {
    width: calc((100% - 20px) / 2);
  }

  .howtouseSceneListText {
    font-size: 14px;
  }
}

@media all and (min-width: 1025px) { /* PC */
  .howtouseWorriesList {
    gap: 0;
    margin-bottom: 135px;
  }

  .howtouseWorriesList li:nth-child(2n) {
    position: relative;
    top: 110px;
  }
}