:root {
  --ht-common-blue: #07689f;
  --ht-common-heading: #252525;
  --ht-common-muted: #6d7378;
}

.ht-global-cta {
  width: 100%;
  margin: 0;
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(247, 245, 241, 0.42), rgba(255, 255, 255, 0.8) 34%, rgba(255, 255, 255, 0.82) 66%, rgba(247, 245, 241, 0.42)),
    var(--ht-cta-image),
    linear-gradient(90deg, #f2f0eb, #fff, #f2f0eb);
  background-position: center;
  background-size: cover;
  color: var(--ht-common-heading);
  text-align: center;
}

.ht-global-cta__inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
}

.ht-global-cta h2 {
  margin: 0;
  color: var(--ht-common-heading);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.8;
}

.ht-global-cta p {
  margin: 0 0 6px;
  color: var(--ht-common-muted);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.9;
}

.ht-global-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 270px;
  padding: 13px 28px;
  border: 1px solid var(--ht-common-blue);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ht-common-blue);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.ht-global-cta__button::after {
  color: var(--ht-common-blue);
  content: "\2192";
  font-family: Arial, sans-serif;
}

.ht-global-cta__button:hover,
.ht-global-cta__button:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ht-common-blue);
}

@media screen and (max-width: 640px) {
  .ht-global-cta {
    padding: 56px 0;
    background-position: left center;
  }

  .ht-global-cta__inner {
    width: calc(100% - 32px);
  }

  .ht-global-cta__button {
    width: 100%;
    min-width: 0;
  }
}
