body {
  width: 100%;
  max-width: 128rem;  
  font-size: 1.6rem;
  color: #655657;
  overflow-x: hidden;
}

/*---------------
Mainvisual
----------------*/
.mainvisual {
  max-width: 128rem;
  height: 40rem;
  margin-bottom: 4.6rem;
}

.mainvisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mainvisual .pc {
  display: block;
}

.mainvisual .sp {
  display: none;
}

/*---------------
Background
----------------*/
/* background */
.background {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  background-color: #F0E0E2;
}

.bg_animal {
  width: 24rem;
  height: 21rem;
  position: absolute;
  bottom: 38rem;
  left: 18.3rem;
}

.bg_half_circle {
  width: 100%;
  position: absolute;
  bottom: 0;
}


/*---------------
Process
----------------*/
.process {
  margin-left: 8rem;
}

.title {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;

}

.title_en {
  font-weight: bold;
  font-size: 3rem;
  color: #000000;
}

.title_ja {
  font-weight: bold;
  font-size: 1.5rem;
  color: #000000;
}

.title_en,
.title_ja {
  line-height: 1;
}

.content {
  position: relative;

}

.sub_title {
  width: 34.3rem;
  height: 5.9rem;
  font-size: 2rem;
  color: #FFFFFF;
  background-color: #af7379;
  border-radius: 0 4rem 4rem 0;
  padding-left: 2rem;
  padding-top: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
}

.process_text {
  width: 115.5rem;

  font-size: 1.6rem;
  font-weight: 500;
  background-color: #FFEDEE;
  border-radius: 8rem;
  box-shadow: 0rem 0.3rem 0.6rem #00000029;
  padding-top: 7.9rem;
  padding-left: 5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.process_text_2 {
  width: 115.5rem;

  font-size: 1.6rem;
  font-weight: 500;
  background-color: #FFEDEE;
  border-radius: 8rem;
  box-shadow: 0rem 0.3rem 0.6rem #00000029;
  padding-top: 7.9rem;
  padding-left: 5rem;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
}

.process_text_3 {
  width: 115.5rem;

  font-size: 1.6rem;
  font-weight: 500;
  background-color: #FFFBE7;
  border-radius: 8rem;
  box-shadow: 0rem 0.3rem 0.6rem #00000029;
  padding-top: 7.9rem;
  padding-left: 5rem;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
}


/*---------------
SP
----------------*/
/* 画面幅が699.98px以下の時の変更 */
@media screen and (max-width: 699.98px) {

  body {
    margin: 0;
    padding: 0;
    max-width: 37.5rem;
    /* 最大幅 */
    width: 100%;
    /* ビューポート幅に合わせる */
    box-sizing: border-box;
  }

  /*---------------
  Mainvisual_SP
  ----------------*/
  .mainvisual {
    width: 37.5rem;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    margin-bottom: 2.5rem;
  }

  .mainvisual .pc {
    display: none;
  }

  .mainvisual .sp {
    display: block;
  }

  /*---------------
  Bckground_SP
  ----------------*/
  .bg_animal {
    width: 18rem;
    height: 15.8rem;
    top: 14.4rem;
    left: 0.7rem;
  }

  .bg_half_circle {
    width: 100%;
    height: 18rem;
    top: 26.5rem;
  }

  .white_rectangle {
    background-color: #fff;
    width: 100%;
    height: 40rem;
    position: relative;
  }

  /*---------------
  Process_SP
  ----------------*/
  .process {
    margin-left: 2rem;
  }

  .title_en {
    font-weight: bold;
    font-size: 2.5rem;
    color: #000000;
  }

  .sub_title {
    width: 26rem;
    height: 4rem;
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    position: static;
  }

  .process_text {
    width: 33.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    background-color: #FFEDEE;
    border-radius: 0 4rem 4rem 4rem;
    box-shadow: 0rem 0.3rem 0.6rem #00000029;
    padding: 2.5rem 1.5rem 3.5rem 1.5rem;
    margin-bottom: 2rem;
  }

  .process_text_2 {
    width: 33.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    background-color: #FFEDEE;
    border-radius: 0 4rem 4rem 4rem;
    box-shadow: 0rem 0.3rem 0.6rem #00000029;
    padding: 2.5rem 1.5rem 3.5rem 1.5rem;
    margin-bottom: 2rem;
  }

  .process_text_3 {
    width: 33.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    background-color: #FFFBE7;
    border-radius: 0 4rem 4rem 4rem;
    box-shadow: 0rem 0.3rem 0.6rem #00000029;
    padding: 2.5rem 1.5rem 3.5rem 1.5rem;
    margin-bottom: 5rem;
  }


}