.intro {
  width: 100%;
  padding-bottom: min(4.69vw, 50px);
  background: #fff;
}
.intro__ttl {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
.intro__ttl span {
  font: inherit;
  color: #004991;
}
.intro__list {
  display: grid;
  align-items: start;
  justify-content: center;
  row-gap: 10px;
  width: 560px;
  padding-block: 24px;
  margin-inline: auto;
  border: 4px solid rgba(191, 202, 216, 0.4);
  border-radius: 20px;
}
.intro__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 16px;
  color: #555555;
  font-weight: 700;
  line-height: 1.5;
}
.intro__item-icon {
  flex: 0 0 18px;
  margin-top: 3px;
  color: #BFCAD8;
}
.intro__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 4px;
  margin-block: 15px;
}
.intro__arrow {
  display: block;
  width: 22px;
  color: #BFCAD8;
}
.intro .appeal {
  position: relative;
  width: 100%;
  padding-block: 55px;
  border-radius: 40px;
  background: url("../images/consultant/appeal_bg_pc.jpg") no-repeat top center/cover;
  overflow: hidden;
  text-align: center;
}
.intro .appeal > * {
  position: relative;
  z-index: 10;
}
.intro .appeal__lead {
  display: inline-block;
  padding: 10px 33px;
  margin-bottom: 16px;
  border-radius: 30px;
  background: #fff;
  font-size: 20px;
  color: #F48597;
  font-weight: 700;
}
.intro .appeal__ttl {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
.intro .appeal__ttl span {
  font: inherit;
  color: #F48597;
}
.intro .appeal__txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.intro .appeal__txt span {
  font: inherit;
  color: #F48597;
  font-weight: 700;
}
.intro .appeal__imgs {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
}
.intro .appeal__img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .intro {
    padding-bottom: min(8vw, 40px);
  }
  .intro__ttl {
    margin-bottom: 32px;
    font-size: 22px;
  }
  .intro__list {
    display: grid;
    row-gap: 8px;
    width: 100%;
    padding: 24px;
  }
  .intro__arrows {
    margin-block: 8px;
  }
  .intro .appeal {
    padding: 32px 32px 0;
    background: url("../images/consultant/appeal_bg_sp.jpg") no-repeat top center/cover;
  }
  .intro .appeal__lead {
    padding: 8px 34px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .intro .appeal__ttl {
    margin-bottom: 24px;
    font-size: 22px;
  }
  .intro .appeal__txt {
    font-size: 14px;
  }
  .intro .appeal__imgs {
    position: static;
    display: flex;
    justify-content: center;
  }
  .intro .appeal__img {
    width: 100%;
    height: auto;
  }
}
.contact {
  width: 100%;
  padding-block: min(4.69vw, 50px) min(9.38vw, 100px);
  background: #fff;
}
.contact__lead {
  margin-bottom: 40px;
  font-size: 18px;
  color: #555555;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.contact__steps {
  display: grid;
  align-items: start;
  justify-content: start;
  row-gap: 20px;
  margin-bottom: 54px;
  counter-reset: step;
}
.contact__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  counter-increment: step;
}
.contact__step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  transform: translateX(-50%);
  z-index: 0;
  width: 2px;
  height: calc(100% + 20px);
  background: #FFA515;
}
.contact__step-num {
  position: relative;
  z-index: 10;
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 4px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #FFA515;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}
.contact__step-num::after {
  content: counter(step, decimal-leading-zero);
  display: block;
  font: inherit;
  font-size: 30px;
}
.contact__step-content {
  flex: 1;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #BFCAD8;
}
.contact__step-ttl {
  margin-bottom: 14px;
  font-size: 18px;
  color: #FFA515;
  font-weight: 700;
  line-height: 1.5;
}
.contact__step-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .contact {
    padding-block: min(8vw, 40px) min(12.8vw, 64px);
  }
  .contact .c-section-head__ttl {
    font-size: 24px;
  }
  .contact__lead {
    margin-bottom: 32px;
    font-size: 16px;
    text-align: start;
  }
  .contact__steps {
    display: grid;
    row-gap: 10px;
    margin-bottom: 32px;
  }
  .contact__step {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .contact__step:not(:last-child)::before {
    position: absolute;
    left: 25px;
    height: calc(100% + 10px);
  }
  .contact__step-num {
    flex: 0 0 50px;
    display: flex;
    row-gap: 0;
    font-size: 10px;
  }
  .contact__step-num::after {
    font-size: 22px;
  }
  .contact__step-content {
    flex: 1;
    padding: 20px;
  }
  .contact__step-ttl {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .contact__step-desc {
    font-size: 12px;
  }
}
/*# sourceMappingURL=consultant.css.map */
