/* Roasync features — adapted from TalentPalette "この機能で解決できること" */
.ra-features {
  --ra-blue: #2563EB;
  --ra-blue-deep: #1D4ED8;
  --ra-panel: #EFF6FF;
  --ra-text: #1B2B4B;
  padding: 72px 0 96px;
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", Meiryo, sans-serif;
}
.ra-features a { text-decoration: none; }
.ra-features em { font-style: normal; }

.ra-features__explain {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.ra-features__heading {
  margin: 0;
  color: var(--ra-text);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.ra-features__sub {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
.ra-features__list {
  border: 1px solid #DDD;
  border-radius: 8px;
  padding: 25px 28px;
  width: min(750px, 100%);
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  box-sizing: border-box;
}
.ra-features__lists {
  position: relative;
  color: var(--ra-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 40px;
  text-align: left;
}
.ra-features__lists + .ra-features__lists {
  margin-top: 16px;
}
.ra-features__lists::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--ra-blue);
  transform: translateY(-50%);
}
.ra-features__lists::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
}

.ra-features__points {
  display: block;
}

.ra-features__point {
  position: relative;
}
.ra-features__point + .ra-features__point {
  margin-top: 70px;
}
.ra-features__point::before {
  content: "";
  background-color: var(--ra-panel);
  height: 100%;
  width: 70%;
  position: absolute;
  top: 0;
  z-index: 0;
}
.ra-features__point:nth-child(odd)::before {
  border-radius: 0 20px 20px 0;
  left: 0;
}
.ra-features__point:nth-child(even)::before {
  border-radius: 20px 0 0 20px;
  right: 0;
}
.ra-features__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  padding: 30px 24px 40px;
  gap: 0 80px;
  display: grid;
  grid-template-columns: 450px 1fr;
  grid-template-areas: "text img";
  align-items: center;
  box-sizing: border-box;
}
.ra-features__point:nth-child(even) .ra-features__inner {
  grid-template-columns: 1fr 450px;
  grid-template-areas: "img text";
}
.ra-features__textarea {
  grid-area: text;
  width: 450px;
  max-width: 100%;
}
.ra-features__no {
  color: var(--ra-blue);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.ra-features__title {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.02em;
  background: var(--ra-blue);
  display: table;
  padding: 2px 10px;
  margin: 4px 0;
}
.ra-features__text {
  color: #454545;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin: 24px 0 27px;
  word-wrap: break-word;
}
.ra-features__text + .ra-features__text {
  margin-top: -12px;
}
.ra-features__text em {
  font-weight: 700;
  background-color: #fff;
  padding: 0 2px;
  margin: 0 2px;
  box-shadow: 0 0 0 2px #fff;
}
.ra-features__img {
  grid-area: img;
  max-width: 600px;
  width: 100%;
  display: grid;
  place-content: center;
}
.ra-features__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(30, 64, 120, 0.12);
}

.ra-features__btn {
  border-radius: 4px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  padding: 17px 48px 17px 16px;
  position: relative;
  display: block;
  width: 340px;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.10);
  background: linear-gradient(90deg, #F59E0B 0%, #F26A2E 100%);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ra-features__btn:hover {
  box-shadow: none;
  transform: translateY(4px);
}
.ra-features__btn::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background-color: #fff;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
.ra-features__btn::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  right: 24px;
  margin-top: -4px;
  border-top: solid 2px #E85A1C;
  border-right: solid 2px #E85A1C;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .ra-features {
    padding: 48px 0 64px;
  }
  .ra-features__heading {
    font-size: 22px;
  }
  .ra-features__list {
    width: 90%;
    padding: 20px;
  }
  .ra-features__lists {
    font-size: 14px;
    line-height: 1.7;
  }
  .ra-features__point + .ra-features__point {
    margin-top: 48px;
  }
  .ra-features__point::before {
    width: 95%;
    height: 70%;
  }
  .ra-features__inner {
    width: 88%;
    max-width: 100%;
    display: block;
    padding: 24px 0 0;
    margin: 0 auto;
  }
  .ra-features__point:nth-child(even) .ra-features__inner {
    display: block;
  }
  .ra-features__textarea {
    width: 100%;
    margin: 0 auto;
  }
  .ra-features__title {
    font-size: 20px;
    line-height: 1.5;
  }
  .ra-features__text {
    margin: 15px 0 22px;
    font-size: 14px;
  }
  .ra-features__img {
    display: block;
    max-width: 100%;
    margin-top: 8px;
  }
  .ra-features__btn {
    width: 100%;
    margin-top: 24px;
  }
}
