:root {
  --color-white: #fff;
  --color-txt: #1e2855;
  --color-accent: #1e78eb;
  --color-accent02: #5e9cf8;
  --color-accent03: #2b7ade;
  --color-gray: #aaa;
  --color-gray02: #c8c8c8;
  --color-gray03: #f6f6f6;
  --color-consulting: #5e9cf8;
  --color-bg: #f4f3ef;
  --color-yellow: #e2f174;
  --color-navy: #47505f;
  --color-dark-navy: #1e2855;
  --color-beige: #f4f3ef;
  --color-red: #e15555;
}

/* =======================================================
bread
======================================================= */
.p-bread {
  width: 85rem;
  padding: 7.8125rem 0 4.25rem;
  margin: 0 auto;
}

/* =======================================================
thanks
======================================================= */
.p-thanks {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-thanks {
    padding: 10rem 0 7.5rem;
  }
}
.p-thanks__ttl {
  margin-bottom: 1.375rem;
  font-size: 2rem;
  line-height: calc(60/32);
  color: var(--color-accent);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-thanks__ttl {
    margin-bottom: 0.625rem;
    font-size: 1.375rem;
    line-height: calc(38/22);
  }
}
.p-thanks__txt {
  margin-bottom: 4.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-thanks__txt {
    margin-bottom: 2.6875rem;
    font-size: 0.75rem;
    line-height: calc(24/12);
  }
}
.p-thanks__btn {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.625rem;
  align-items: center;
  font-size: 1rem;
  line-height: calc(26/16);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-thanks__btn {
    font-size: 0.875rem;
    line-height: calc(26/14);
    letter-spacing: 0.05em;
  }
}
.p-thanks__btn::before {
  justify-self: end;
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  background: url("../images/common/arrow-circle.svg") top center/contain no-repeat;
  transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .p-thanks__btn::before {
    width: 2.25rem;
    height: 2.25rem;
  }
}