@charset "UTF-8";
/*----------------------------------------------------
Three commitments
----------------------------------------------------*/
#commitments .lead {
  line-height: 2.07;
  margin-bottom: 60px;
}
@media all and (min-width: 751px) {
  #commitments .lead {
    text-align: center;
    line-height: 2.14;
    margin-bottom: 75px;
  }
}
@media all and (min-width: 751px) {
  #commitments .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#commitments .list > li {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 30px 20px 20px;
}
@media all and (min-width: 751px) {
  #commitments .list > li {
    border-radius: 15px;
  }
}
@media all and (min-width: 751px) {
  #commitments .list > li {
    width: 31%;
    padding: 3%;
  }
}
@media all and (max-width: 750px) {
  #commitments .list > li:not(:last-child) {
    margin-bottom: 60px;
  }
}
#commitments .list > li .number {
  position: absolute;
  z-index: -1;
  display: -ms-grid;
  display: grid;
  place-items: center;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: inherit;
  background-position: top;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color);
  aspect-ratio: 100/95;
  width: 2.5em;
  border-radius: 50%;
  font-size: 26px;
}
@media all and (min-width: 751px) {
  #commitments .list > li .number {
    font-size: 24px;
  }
}
#commitments .list > li .head {
  color: var(--color);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 16px;
}
@media all and (min-width: 751px) {
  #commitments .list > li .head {
    font-weight: bold;
    font-size: 18px;
  }
}
@media all and (min-width: 751px) and (max-width: 1330px) {
  #commitments .list > li .head {
    font-size: 1.3vw;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  #commitments .list > li .head {
    font-size: 1.6vw;
  }
}
#commitments .list > li .tx {
  line-height: 2.07;
  margin-top: 4px;
}
#commitments .list > li:nth-child(1) {
  --color: #6ab24b;
  background-image: url(../images/common/watercolor/large_green.jpg);
}
#commitments .list > li:nth-child(2) {
  --color: #ed7971;
  background-image: url(../images/common/watercolor/large_pink.jpg);
}
#commitments .list > li:nth-child(3) {
  --color: #00a3df;
  background-image: url(../images/common/watercolor/large_blue.jpg);
}

/*----------------------------------------------------
Workflow
----------------------------------------------------*/
#workflow .lead {
  line-height: 2.07;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  #workflow .lead {
    text-align: center;
    line-height: 2.14;
    margin-bottom: 75px;
  }
}
#workflow .list {
  counter-reset: number 0;
}
#workflow .list > li {
  counter-increment: number 1;
  position: relative;
  background-image: url(../images/common/watercolor/large_pink.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 65px 20px 20px;
}
@media all and (min-width: 751px) {
  #workflow .list > li {
    border-radius: 15px;
  }
}
@media all and (min-width: 751px) {
  #workflow .list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3.4%;
    padding: 70px 30px 30px;
  }
}
#workflow .list > li::before {
  position: absolute;
  content: "STEP " counter(number, decimal-leading-zero);
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 0 0 5px 0;
  color: #ed7971;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  padding: 0.2em 1em 0.35em 0.6em;
}
@media all and (min-width: 751px) {
  #workflow .list > li::before {
    border-radius: 0 0 10px 0;
    font-size: 24px;
  }
}
#workflow .list > li:not(:last-child) {
  margin-bottom: 64px;
}
@media all and (min-width: 751px) {
  #workflow .list > li:not(:last-child) {
    margin-bottom: 88px;
  }
}
#workflow .list > li:not(:last-child)::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #ed7971;
  aspect-ratio: 33/14;
  width: 17.7%;
}
@media all and (min-width: 751px) {
  #workflow .list > li:not(:last-child)::after {
    bottom: -30px;
    width: min(66px, 8%);
  }
}
#workflow .list > li:not(:last-child).fadeUp::after {
  opacity: 0;
  -webkit-animation: fadeInAnime 0.8s forwards 0.6s;
          animation: fadeInAnime 0.8s forwards 0.6s;
}
@media all and (min-width: 751px) {
  #workflow .list > li .image {
    width: 36%;
  }
}
@media all and (max-width: 750px) {
  #workflow .list > li .texts {
    margin-top: 20px;
  }
}
@media all and (min-width: 751px) {
  #workflow .list > li .texts {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
#workflow .list > li .texts .head {
  color: #ed7971;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 6px;
}
@media all and (min-width: 751px) {
  #workflow .list > li .texts .head {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 16px;
  }
}
#workflow .list > li .texts .tx {
  line-height: 2.07;
}

/*----------------------------------------------------
Trajectory
----------------------------------------------------*/
#trajectory .lead {
  line-height: 2.07;
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  #trajectory .lead {
    text-align: center;
    line-height: 2.14;
    margin-bottom: 75px;
  }
}
#trajectory .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 751px) {
  #trajectory .list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#trajectory .list > li {
  border-left: 2px solid #00a3df;
}
@media all and (min-width: 751px) {
  #trajectory .list > li {
    width: 22.4%;
    position: relative;
  }
  #trajectory .list > li:nth-child(1) {
    top: 60px;
  }
  #trajectory .list > li:nth-child(2) {
    top: 40px;
  }
  #trajectory .list > li:nth-child(3) {
    top: 20px;
  }
}
#trajectory .list > li .head {
  display: inline-block;
  color: #fff;
  background-color: #00a3df;
  -webkit-clip-path: polygon(100% 0%, 83% 50%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0%, 83% 50%, 100% 100%, 0 100%, 0 0);
  font-weight: 500;
  font-size: 16px;
  padding: 0.4em 2em 0.4em 1em;
}
@media all and (min-width: 751px) {
  #trajectory .list > li .head {
    font-weight: 500;
    font-size: 18px;
  }
}
#trajectory .list > li .tx {
  line-height: 2.07;
  margin-top: 12px;
  padding-left: 5%;
  padding-bottom: 16px;
}
@media all and (min-width: 751px) {
  #trajectory .list > li .tx {
    margin-top: 16px;
    padding-left: 8%;
  }
}
#trajectory .recommend {
  border-radius: 8px;
  border: 2px solid #00a3df;
  margin-top: 30px;
  padding: 30px 18px;
}
@media all and (min-width: 751px) {
  #trajectory .recommend {
    border-radius: 15px;
  }
}
@media all and (min-width: 751px) {
  #trajectory .recommend {
    margin-top: 110px;
    padding: 30px;
  }
}
#trajectory .recommend .title {
  text-align: center;
  color: #00a3df;
  font-weight: bold;
  font-size: 16px;
}
@media all and (min-width: 751px) {
  #trajectory .recommend .title {
    font-weight: 500;
    font-size: 20px;
  }
}
#trajectory .recommend ul {
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  #trajectory .recommend ul {
    margin-top: 30px;
  }
}
#trajectory .recommend ul > li {
  line-height: 2.07;
  text-indent: -1em;
  padding-left: 1em;
}
#trajectory .recommend ul > li::before {
  content: "・";
}