.saa-page {
  overflow: hidden;
  color: #18333a;
  background: #fff;
}

.saa-pc-only {
  display: inline;
}

.saa-sp-only {
  display: none;
}

.saa-hero {
  position: relative;
  min-height: 720px;
  padding: 108px 24px 168px;
  background:
    radial-gradient(circle at 88% 10%, rgba(112, 220, 208, .28) 0, rgba(112, 220, 208, 0) 190px),
    radial-gradient(ellipse at 27% 86%, rgba(225, 255, 118, .22) 0, rgba(225, 255, 118, 0) 330px),
    radial-gradient(ellipse at 18% 92%, rgba(221, 245, 255, .78) 0, rgba(221, 245, 255, 0) 420px),
    linear-gradient(180deg, #fff 0%, #f9feff 45%, #f1fbff 74%, #eaf8ff 100%);
}

.saa-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -156px;
  width: 150vw;
  height: 320px;
  min-width: 1280px;
  transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  background: linear-gradient(
    180deg,
    rgba(234, 248, 255, 0) 0%,
    rgba(234, 248, 255, .54) 28%,
    #eaf8ff 64%,
    #eaf8ff 100%
  );
  z-index: 0;
  pointer-events: none;
}

.saa-hero::before {
  content: "";
  display: none;
  opacity: 0;
  pointer-events: none;
  background: none;
}

.saa-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, 520px) minmax(470px, 690px);
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.saa-hero__content {
  padding-top: 12px;
}

.saa-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #00a99d;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.saa-hero__eyebrow::before {
  content: "+";
  color: #35cfc5;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.saa-hero__title {
  margin-top: 24px;
  color: #101f2a;
  font-size: clamp(38px, 3.75vw, 50px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: 0;
}

.saa-hero__title {
  text-wrap: balance;
}

.saa-hero__title::selection,
.saa-hero__lead::selection {
  background: rgba(0, 169, 157, .18);
}

.saa-hero__title-accent {
  color: #008d84;
}

.saa-hero__nowrap {
  white-space: nowrap;
}

.saa-hero__lead {
  margin-top: 26px;
  color: #435963;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
}

.saa-hero__actions {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
  isolation: isolate;
}

.saa-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  min-height: 58px;
  padding: 14px 52px 15px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  opacity: 1 !important;
  overflow: hidden;
  isolation: isolate;
  background-clip: padding-box;
  background-blend-mode: normal;
  filter: none !important;
  mix-blend-mode: normal;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

.saa-button > span {
  position: relative;
  z-index: 2;
}

.saa-button::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.saa-button::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .26);
  transform: translateY(-50%);
}

.saa-button:hover {
  transform: translateY(-2px);
}

.saa-button:hover,
.saa-button:focus,
.saa-button:focus-visible,
.saa-button:active {
  opacity: 1 !important;
}

.saa-button--primary {
  color: #fff !important;
  background: #00a99d !important;
  background-color: #00a99d !important;
  background-image: none !important;
  box-shadow:
    inset 0 0 0 999px #00a99d,
    0 14px 26px rgba(0, 141, 132, .24);
}

.saa-button--secondary {
  color: #008d84 !important;
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
  border: 1px solid rgba(0, 141, 132, .18);
  box-shadow:
    inset 0 0 0 999px #fff,
    0 12px 26px rgba(0, 141, 132, .12);
}

.saa-button--secondary::after {
  background: rgba(0, 169, 157, .09);
}

.saa-button--primary:visited {
  color: #fff !important;
  background: #00a99d !important;
  background-color: #00a99d !important;
  background-image: none !important;
}

.saa-button--secondary:visited {
  color: #008d84 !important;
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
}

.saa-button--primary:hover,
.saa-button--primary:focus,
.saa-button--primary:focus-visible,
.saa-button--primary:active {
  color: #fff !important;
  background: #00a99d !important;
  background-color: #00a99d !important;
  background-image: none !important;
}

.saa-button--secondary:hover,
.saa-button--secondary:focus,
.saa-button--secondary:focus-visible,
.saa-button--secondary:active {
  color: #008d84 !important;
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
}

.saa-hero__visual {
  position: relative;
  min-width: 0;
  padding-top: 0;
  transform: translateX(-28px);
}

.saa-hero__visual::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 20px;
  width: 82%;
  aspect-ratio: 1 / .72;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 235, 226, .32), rgba(158, 235, 226, 0) 68%);
  filter: blur(2px);
  z-index: -1;
}

.saa-hero__visual img {
  display: block;
  width: min(108%, 720px);
  max-width: none;
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 107, 121, .11));
}

.saa-concerns {
  position: relative;
  z-index: 1;
  margin-top: -132px;
  padding: 172px 24px 104px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .6) 0, rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #eaf8ff 0%, #dff2ff 58%, #e8f7ff 100%);
}

.saa-concerns::before,
.saa-concerns::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 156vw;
  min-width: 1200px;
  height: 236px;
  transform: translateX(-50%);
  background: #fff;
  pointer-events: none;
  z-index: 0;
}

.saa-concerns::before {
  top: -118px;
  border-radius: 0 0 50% 50%;
  background:
    radial-gradient(circle at 58% 58%, rgba(226, 255, 116, .2) 0, rgba(226, 255, 116, 0) 230px),
    linear-gradient(180deg, rgba(234, 248, 255, 0) 0%, rgba(247, 253, 255, .74) 46%, #fbfeff 100%);
}

.saa-concerns::after {
  bottom: -58px;
  height: 132px;
  border-radius: 50%;
  background: #e8f7ff;
}

.saa-concerns__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.saa-concerns__inner::before {
  content: "";
  position: absolute;
  left: -118px;
  bottom: 36px;
  width: 240px;
  height: 116px;
  background-image: radial-gradient(rgba(0, 165, 154, .18) 1.1px, transparent 1.1px);
  background-size: 13px 13px;
  opacity: .5;
  pointer-events: none;
}

.saa-section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: auto;
  padding: 0;
  color: #008d84;
  background: transparent;
  box-shadow: none;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.saa-section-label::before,
.saa-section-label::after {
  content: "+";
  color: #2dc8bf;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.saa-concerns__title {
  margin-top: 28px;
  color: #101f2a;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.saa-concerns__title span {
  color: #008d84;
}

.saa-concerns__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 45px;
}

.saa-concern-card {
  display: grid;
  grid-template-rows: 242px auto;
  min-height: 372px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 38px rgba(61, 132, 171, .1);
}

.saa-concern-card__image {
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  padding: 16px 14px 0;
  background: #fff;
}

.saa-concern-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.saa-concern-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 17px 16px 30px;
  color: #101f2a;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.72;
  letter-spacing: 0;
}

.saa-concern-card__text span {
  color: #008d84;
  font-size: 1.08em;
}

.saa-concerns__arrow {
  position: absolute;
  left: 50%;
  bottom: -88px;
  z-index: 2;
  width: 62px;
  height: 42px;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(169, 214, 242, .62));
}

.saa-agent-intro {
  position: relative;
  padding: 98px 24px 108px;
  background:
    radial-gradient(circle at 8% 82%, rgba(106, 226, 218, .22) 0, rgba(106, 226, 218, 0) 180px),
    linear-gradient(180deg, #f9feff 0%, #fff 38%, #fff 100%);
}

.saa-agent-intro::before {
  content: "";
  position: absolute;
  right: -62px;
  top: 390px;
  width: 270px;
  height: 132px;
  background-image: radial-gradient(rgba(0, 165, 154, .16) 1.1px, transparent 1.1px);
  background-size: 13px 13px;
  opacity: .52;
  pointer-events: none;
}

.saa-agent-intro__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.saa-agent-intro__heading {
  text-align: center;
}

.saa-agent-intro__sparkle {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin: 0 auto;
}

.saa-agent-intro__title {
  margin-top: 20px;
  color: #101f2a;
  font-size: clamp(30px, 3.25vw, 42px);
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0;
}

.saa-agent-intro__title span,
.saa-agent-intro__title em {
  color: #008d84;
  font-style: normal;
}

.saa-analysis-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
  align-items: center;
  gap: 64px;
  margin-top: 76px;
}

.saa-analysis-feature__visual {
  position: relative;
  min-width: 0;
}

.saa-analysis-feature__visual::before {
  content: "";
  position: absolute;
  left: -38px;
  top: -36px;
  width: 178px;
  height: 116px;
  background-image: radial-gradient(rgba(0, 165, 154, .18) 1.1px, transparent 1.1px);
  background-size: 12px 12px;
  opacity: .56;
  z-index: -1;
}

.saa-analysis-feature__visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(47, 134, 158, .1));
}

.saa-analysis-feature__content {
  min-width: 0;
}

.saa-analysis-feature__content .saa-feature-kicker {
  margin: 0;
}

.saa-analysis-feature__title {
  margin-top: 28px;
  color: #101f2a;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.58;
  letter-spacing: 0;
  white-space: nowrap;
}

.saa-analysis-feature__title span {
  color: #008d84;
}

.saa-analysis-feature__title::after {
  content: none;
}

.saa-analysis-feature__lead,
.saa-analysis-feature__text {
  color: #344a54;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
}

.saa-analysis-feature__lead {
  margin-top: 28px;
}

.saa-analysis-feature__text {
  margin-top: 20px;
}

.saa-strategy {
  position: relative;
  overflow: hidden;
  padding: 112px 24px 130px;
  background:
    linear-gradient(180deg, #f8fcff 0%, #f4fbff 58%, #eaf8ff 100%);
}

.saa-strategy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -122px;
  width: 154vw;
  min-width: 1180px;
  height: 190px;
  transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, rgba(234, 248, 255, .72) 0%, rgba(244, 251, 255, .42) 100%);
  pointer-events: none;
}

.saa-strategy__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.saa-strategy__content {
  min-width: 0;
}

.saa-feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #008d84;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.saa-feature-kicker::before {
  content: "+";
  color: #2dc8bf;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.saa-strategy__title {
  margin-top: 28px;
  color: #101f2a;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
}

.saa-strategy__title span {
  color: #008d84;
}

.saa-strategy__text {
  margin-top: 32px;
  color: #344a54;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0;
}

.saa-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 0;
  margin-top: 36px;
  padding: 9px 16px 10px;
  border: 1px solid rgba(0, 169, 157, .28);
  border-radius: 8px;
  color: #00a99d;
  background: rgba(255, 255, 255, .52);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .04em;
  cursor: default;
}

.saa-coming-soon::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #00a99d;
  opacity: .42;
}

.saa-strategy__visual {
  position: relative;
  min-width: 0;
}

.saa-strategy__visual::before {
  content: "";
  position: absolute;
  right: 18px;
  top: -52px;
  width: 170px;
  height: 112px;
  background-image: radial-gradient(rgba(0, 165, 154, .18) 1.1px, transparent 1.1px);
  background-size: 12px 12px;
  opacity: .55;
  z-index: -1;
}

.saa-strategy__visual::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -48px;
  width: 210px;
  height: 112px;
  background-image: radial-gradient(rgba(0, 165, 154, .12) 1.1px, transparent 1.1px);
  background-size: 13px 13px;
  opacity: .46;
  z-index: -1;
}

.saa-strategy__visual img {
  display: block;
  width: min(100%, 700px);
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 22px 34px rgba(47, 134, 158, .1));
}

.saa-ab-create {
  position: relative;
  overflow: hidden;
  padding: 108px 24px 126px;
  background:
    radial-gradient(circle at 5% 70%, rgba(112, 220, 208, .22) 0, rgba(112, 220, 208, 0) 210px),
    radial-gradient(circle at 95% 20%, rgba(196, 248, 91, .3) 0, rgba(196, 248, 91, 0) 220px),
    #fff;
}

.saa-ab-create__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(500px, .96fr);
  align-items: center;
  gap: 54px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.saa-ab-create__visual {
  position: relative;
  min-width: 0;
}

.saa-ab-create__visual::before {
  content: "";
  position: absolute;
  left: 210px;
  bottom: -42px;
  width: 180px;
  height: 112px;
  background-image: radial-gradient(rgba(0, 165, 154, .18) 1.1px, transparent 1.1px);
  background-size: 12px 12px;
  opacity: .58;
  z-index: -1;
}

.saa-ab-create__visual::after {
  content: "";
  position: absolute;
  left: -120px;
  top: 42px;
  width: 220px;
  height: 118px;
  background-image: radial-gradient(rgba(0, 165, 154, .12) 1.1px, transparent 1.1px);
  background-size: 13px 13px;
  opacity: .44;
  z-index: -1;
}

.saa-ab-create__visual img {
  display: block;
  width: min(100%, 720px);
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(47, 134, 158, .1));
}

.saa-ab-create__content {
  min-width: 0;
}

.saa-ab-create__title {
  margin-top: 28px;
  color: #101f2a;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
  white-space: nowrap;
}

.saa-ab-create__title span {
  color: #008d84;
}

.saa-ab-create__text {
  margin-top: 28px;
  color: #344a54;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0;
}

.saa-ab-create__text + .saa-ab-create__text {
  margin-top: 12px;
}

.saa-ab-learn {
  position: relative;
  overflow: hidden;
  padding: 116px 24px 128px;
  background:
    radial-gradient(circle at 5% 70%, rgba(116, 170, 255, .14) 0, rgba(116, 170, 255, 0) 210px),
    linear-gradient(180deg, #eaf8ff 0%, #f4fbff 100%);
}

.saa-ab-learn__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: 68px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.saa-ab-learn__content {
  min-width: 0;
}

.saa-ab-learn__title {
  margin-top: 28px;
  color: #101f2a;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
  white-space: nowrap;
}

.saa-ab-learn__title span {
  color: #008d84;
}

.saa-ab-learn__text {
  margin-top: 28px;
  color: #344a54;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0;
}

.saa-ab-learn__text + .saa-ab-learn__text {
  margin-top: 12px;
}

.saa-ab-learn__visual {
  position: relative;
  min-width: 0;
}

.saa-ab-learn__visual::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -44px;
  width: 190px;
  height: 120px;
  background-image: radial-gradient(rgba(0, 165, 154, .18) 1.1px, transparent 1.1px);
  background-size: 12px 12px;
  opacity: .54;
  z-index: -1;
}

.saa-ab-learn__visual::after {
  content: "";
  position: absolute;
  left: -116px;
  bottom: -46px;
  width: 220px;
  height: 120px;
  background-image: radial-gradient(rgba(0, 165, 154, .12) 1.1px, transparent 1.1px);
  background-size: 13px 13px;
  opacity: .46;
  z-index: -1;
}

.saa-ab-learn__visual img {
  display: block;
  width: min(100%, 700px);
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 22px 34px rgba(47, 134, 158, .1));
}

.saa-faq {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 130px;
  background:
    radial-gradient(circle at 95% 18%, rgba(208, 255, 120, .3) 0, rgba(208, 255, 120, 0) 190px),
    radial-gradient(circle at 0% 100%, rgba(208, 255, 120, .22) 0, rgba(208, 255, 120, 0) 180px),
    linear-gradient(180deg, #fbfeff 0%, #f3fbff 52%, #eff9ff 100%);
}

.saa-faq::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 88px;
  width: 210px;
  height: 150px;
  background-image: radial-gradient(rgba(0, 165, 154, .18) 1.05px, transparent 1.05px);
  background-size: 11px 11px;
  opacity: .62;
}

.saa-faq__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.saa-faq__inner::before,
.saa-faq__inner::after {
  content: "";
  position: absolute;
  width: 156px;
  height: 112px;
  background-image: radial-gradient(rgba(0, 165, 154, .15) 1.05px, transparent 1.05px);
  background-size: 11px 11px;
  pointer-events: none;
}

.saa-faq__inner::before {
  right: -160px;
  top: -34px;
}

.saa-faq__inner::after {
  right: -120px;
  bottom: 58px;
  opacity: .7;
}

.saa-faq__heading {
  text-align: center;
}

.saa-faq__sparkle {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.saa-faq__sparkle::before,
.saa-faq__sparkle::after {
  content: none;
}

.saa-faq__sparkle::after {
  width: auto;
  height: auto;
}

.saa-faq__eyebrow {
  margin: 0;
  color: #008f88;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.saa-faq__title {
  margin-top: 16px;
  color: #101f2a;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.saa-faq__title span {
  color: #008f88;
}

.saa-faq__lead {
  margin-top: 18px;
  color: #243944;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0;
}

.saa-faq__list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.saa-faq-item {
  overflow: hidden;
  border: 1px solid rgba(177, 226, 232, .74);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 28px rgba(42, 144, 169, .1);
}

.saa-faq-item__summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 16px 30px 16px 24px;
  cursor: pointer;
  list-style: none;
}

.saa-faq-item__summary::-webkit-details-marker {
  display: none;
}

.saa-faq-item__summary::marker {
  content: "";
}

.saa-faq-item__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #b7e5ea;
  border-radius: 50%;
  color: #00958d;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  background: #fff;
}

.saa-faq-item__mark::before {
  content: "Q.";
  display: block;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(4px);
}

.saa-faq-item__question {
  color: #008f88;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
}

.saa-faq-item__toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #b7e5ea;
  border-radius: 50%;
  background: #fff;
}

.saa-faq-item__toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #00958d;
  border-bottom: 2px solid #00958d;
  transform: translateY(-2px) rotate(45deg);
}

.saa-faq-item[open] .saa-faq-item__toggle::before {
  transform: translateY(2px) rotate(225deg);
}

.saa-faq-item__body {
  padding: 0 28px 22px 72px;
}

.saa-faq-item__body p {
  margin: 0;
  padding: 24px 32px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(231, 249, 252, .92), rgba(240, 251, 253, .88));
  color: #1a2b35;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
}

@media screen and (max-width: 980px) {
  .saa-hero {
    min-height: auto;
    padding: 74px 24px 126px;
  }

  .saa-hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 720px;
  }

  .saa-hero__content {
    text-align: center;
  }

  .saa-hero__title {
    font-size: clamp(35px, 7.2vw, 48px);
  }

  .saa-strategy__title,
  .saa-ab-create__title,
  .saa-ab-learn__title {
    white-space: normal;
  }

  .saa-hero__actions {
    justify-content: center;
  }

  .saa-hero__visual {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    transform: none;
  }

  .saa-hero__visual img {
    margin: 0 auto;
  }

  .saa-concerns {
    margin-top: -82px;
    padding: 126px 24px 154px;
  }

  .saa-concerns::before,
  .saa-concerns::after {
    min-width: 880px;
    height: 196px;
  }

  .saa-concerns::before {
    top: -126px;
  }

  .saa-concerns::after {
    bottom: -94px;
  }

  .saa-concerns__inner::before {
    left: -70px;
    bottom: 52px;
  }

  .saa-concerns__list {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }

  .saa-concern-card {
    grid-template-rows: 250px auto;
    min-height: auto;
  }

  .saa-agent-intro {
    padding: 116px 24px 88px;
  }

  .saa-analysis-feature {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 720px;
    margin: 58px auto 0;
  }

  .saa-analysis-feature__content {
    text-align: center;
  }

  .saa-analysis-feature__title {
    white-space: normal;
  }

  .saa-strategy {
    padding: 92px 24px 112px;
  }

  .saa-strategy__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 720px;
  }

  .saa-strategy__content {
    text-align: center;
  }

  .saa-strategy__visual {
    order: -1;
  }

  .saa-strategy__visual img {
    margin: 0 auto;
  }

  .saa-ab-create {
    padding: 88px 24px 108px;
  }

  .saa-ab-create__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 720px;
  }

  .saa-ab-create__visual img {
    margin: 0 auto;
  }

  .saa-ab-create__content {
    text-align: center;
  }

  .saa-ab-learn {
    padding: 92px 24px 108px;
  }

  .saa-ab-learn__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 720px;
  }

  .saa-ab-learn__content {
    text-align: center;
  }

  .saa-ab-learn__visual {
    order: -1;
  }

  .saa-ab-learn__visual img {
    margin: 0 auto;
  }

  .saa-faq {
    padding: 92px 24px 112px;
  }

  .saa-faq__inner {
    max-width: 760px;
  }

  .saa-faq__inner::before {
    right: -118px;
  }

  .saa-faq__inner::after {
    right: -96px;
  }

  .saa-faq-item__summary {
    padding-right: 22px;
  }

  .saa-faq-item__question {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .saa-pc-only {
    display: none;
  }

  .saa-sp-only {
    display: inline;
  }

  .saa-hero {
    padding: 56px 18px 96px;
  }

  .saa-hero::after {
    bottom: -128px;
    min-width: 780px;
    height: 210px;
  }

  .saa-hero__eyebrow {
    font-size: 13px;
  }

  .saa-hero__title {
    margin-top: 18px;
    font-size: 32px;
    line-height: 1.48;
  }

  .saa-hero__nowrap {
    white-space: normal;
  }

  .saa-hero__lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
  }

  .saa-hero__actions {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .saa-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding-right: 50px;
    font-size: 15px;
  }

  .saa-hero__visual {
    padding-top: 0;
    width: calc(100% + 20px);
    margin-right: -10px;
    margin-left: -10px;
  }

  .saa-hero__visual img {
    width: 108%;
    margin-left: 50%;
    transform: translateX(-53%);
  }

  .saa-concerns {
    margin-top: -68px;
    padding: 112px 18px 76px;
  }

  .saa-concerns::before,
  .saa-concerns::after {
    min-width: 680px;
    height: 132px;
  }

  .saa-concerns::before {
    top: -98px;
  }

  .saa-concerns::after {
    bottom: -58px;
  }

  .saa-concerns__inner::before {
    left: -92px;
    bottom: 44px;
    width: 190px;
    height: 90px;
  }

  .saa-section-label {
    font-size: 12px;
  }

  .saa-section-label::before,
  .saa-section-label::after {
    font-size: 12px;
  }

  .saa-concerns__title {
    margin-top: 18px;
    font-size: 25px;
    line-height: 1.55;
  }

  .saa-concerns__list {
    margin-top: 30px;
  }

  .saa-concern-card {
    grid-template-rows: 228px auto;
    border-radius: 18px;
  }

  .saa-concern-card__text {
    min-height: 98px;
    padding: 18px 16px 22px;
    font-size: 15px;
  }

  .saa-concerns__arrow {
    bottom: -76px;
    width: 68px;
    height: 38px;
  }

  .saa-agent-intro {
    padding: 92px 18px 70px;
  }

  .saa-agent-intro::before {
    right: -126px;
    top: 360px;
  }

  .saa-agent-intro__sparkle {
    width: 36px;
    height: 36px;
  }

  .saa-agent-intro__title {
    margin-top: 14px;
    font-size: 25px;
    line-height: 1.65;
  }

  .saa-analysis-feature {
    gap: 30px;
    margin-top: 42px;
  }

  .saa-analysis-feature__visual::before {
    left: -72px;
    top: -20px;
  }

  .saa-analysis-feature__title {
    margin-top: 24px;
    font-size: 26px;
    line-height: 1.62;
  }

  .saa-analysis-feature__lead,
  .saa-analysis-feature__text {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .saa-analysis-feature__lead {
    margin-top: 22px;
  }

  .saa-analysis-feature__text {
    margin-top: 14px;
  }

  .saa-strategy {
    padding: 74px 18px 96px;
  }

  .saa-strategy::after {
    bottom: -104px;
    min-width: 700px;
    height: 174px;
  }

  .saa-feature-kicker {
    font-size: 13px;
  }

  .saa-feature-kicker::before {
    font-size: 13px;
  }

  .saa-strategy__inner {
    gap: 30px;
  }

  .saa-strategy__title {
    margin-top: 20px;
    font-size: 30px;
    line-height: 1.48;
  }

  .saa-strategy__text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .saa-coming-soon {
    min-width: 0;
    min-height: 0;
    margin-top: 26px;
    padding: 8px 13px 9px;
    font-size: 14px;
  }

  .saa-strategy__visual::before {
    right: -96px;
    top: -30px;
  }

  .saa-strategy__visual::after {
    left: -112px;
    bottom: -32px;
  }

  .saa-ab-create {
    padding: 72px 18px 92px;
  }

  .saa-ab-create__inner {
    gap: 30px;
  }

  .saa-ab-create__visual::before {
    left: 52%;
    bottom: -28px;
  }

  .saa-ab-create__visual::after {
    left: -120px;
    top: 16px;
  }

  .saa-ab-create__title {
    margin-top: 20px;
    font-size: 28px;
    line-height: 1.5;
  }

  .saa-ab-create__text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .saa-ab-create__text + .saa-ab-create__text {
    margin-top: 10px;
  }

  .saa-ab-learn {
    padding: 76px 18px 92px;
  }

  .saa-ab-learn__inner {
    gap: 30px;
  }

  .saa-ab-learn__title {
    margin-top: 20px;
    font-size: 28px;
    line-height: 1.5;
  }

  .saa-ab-learn__text {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .saa-ab-learn__text + .saa-ab-learn__text {
    margin-top: 10px;
  }

  .saa-ab-learn__visual::before {
    right: -106px;
    top: -26px;
  }

  .saa-ab-learn__visual::after {
    left: -110px;
    bottom: -28px;
  }

  .saa-faq {
    padding: 76px 18px 96px;
  }

  .saa-faq::before {
    left: -122px;
    top: 132px;
  }

  .saa-faq__inner::before,
  .saa-faq__inner::after {
    display: none;
  }

  .saa-faq__sparkle {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }

  .saa-faq__eyebrow {
    font-size: 15px;
  }

  .saa-faq__title {
    margin-top: 12px;
    font-size: 30px;
    line-height: 1.38;
  }

  .saa-faq__lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .saa-faq__list {
    gap: 12px;
    margin-top: 28px;
  }

  .saa-faq-item {
    border-radius: 8px;
  }

  .saa-faq-item__summary {
    grid-template-columns: 36px minmax(0, 1fr) 30px;
    gap: 10px;
    min-height: 62px;
    padding: 13px 13px 13px 14px;
  }

  .saa-faq-item__mark {
    width: 34px;
    height: 34px;
    font-size: 0;
  }

  .saa-faq-item__mark::before {
    font-size: 14px;
  }

  .saa-faq-item__question {
    font-size: 15px;
    line-height: 1.55;
  }

  .saa-faq-item__toggle {
    width: 30px;
    height: 30px;
  }

  .saa-faq-item__body {
    padding: 0 14px 14px;
  }

  .saa-faq-item__body p {
    padding: 18px;
    font-size: 14px;
    line-height: 1.85;
  }
}


.breadcrumb {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto 30px;
  color: #00a99d;
  a{
    color: #00a99d;
    &:hover{
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 767px){
    display: none;
  }
}
.breadcrumb_home {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
#offer_box .right_box section#sub-register .contents > form .subregist_input-text,
#offer_box .right_box section#sub-register .contents > form .subregist_form-input{
  font-weight: 400;
}
#offer_box .right_box section#sub-register .contents > form .subregist_form-required{
  left: 0;
}