/* =========================
  mv
========================= */
.page {
  overflow: hidden;
}
.page-mv {
  position: relative;
  min-height: 28rem;
}
.page-mv__inner {
  width: 62.5rem;
  height: 100%;
  min-height: 28rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.page-mv__title {
  color: #fff;
  font-size: clamp(2rem, 3.125rem, 2.5rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .page-mv {
    min-height: 18rem;
    height: 18rem;
  }
  .page-mv__inner {
    padding-top: 2rem;
    width: 100%;
    min-height: 18rem;
    height: 18rem;
    justify-content: center;
  }
}

/* anchor */
.page-anchor {
  padding: 2rem 0;
  background: linear-gradient(135deg, #fff 30%, #f2fdff 80%, #e1efff 100%);
}
.p-anchor__inner {
  display: flex;
  gap: 0.625rem;
  width: min(100% - 2rem, 73.75rem);
  margin-inline: auto;
  justify-content: space-between;
}
.page-anchor a {
  width: 100%;
  font-size: 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  place-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 4.25rem;
  padding: 0.75rem;
  border: 1px solid var(--color-blue);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.page-anchor a::after {
  content: "";
  aspect-ratio: 1/1;
  width: 1.3125rem;
  height: auto;
  background-color: var(--color-blue);
  mask-image: url(../img/btn_arrow_anchor.webp);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url(../img/btn_arrow_anchor.webp);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
.page-anchor a:hover {
  background: var(--color-blue);
  color: #fff;
  opacity: 1;
}
.page-anchor a:hover::after {
  background-color: #fff;
}
@media (max-width: 767px) {
  .page-anchor a {
    font-size: 1rem;
    min-height: 4rem;
    padding: 0.5rem;
  }
  .page-anchor a::after {
    width: 1rem;
  }
  .p-anchor__inner {
    flex-direction: column;
  }
}
