[data-page-type=lp] .mz-product-header__logo {
  min-width: auto;
  min-height: auto;
}
[data-page-type=lp] .mz-product-header__tag {
  background: #fff;
  border: 0.8px solid rgba(1, 0, 54, 0.2);
  color: #111111;
}
[data-page-type=lp] .mz-product-header__info {
  gap: 0.1rem;
}
[data-page-type=lp] .mz-product-header__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #111111;
  margin: 0;
}
[data-page-type=lp] .mz-product-header__link {
  font-size: 1rem;
}
[data-page-type=lp] .mz-product-header__link--cta {
  display: none;
}
[data-page-type=lp] .mz-product-header__desc {
  font-weight: 400;
  font-size: 0.6875rem;
  color: #111111;
}

.mz-footer-menu__product-card-cta {
  background: linear-gradient(to right, #0068cb, #00b3ec);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 104, 203, 0.25);
}
.mz-footer-menu__product-card-cta:hover {
  background: linear-gradient(to right, #005bb5, #0094c4);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 179, 236, 0.4);
}

.mz-faq {
  background-color: rgba(0, 179, 236, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6.25rem 0;
}
.mz-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 65rem;
}
.mz-faq__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(to right, #0068cb, #00b3ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 0;
}
.mz-faq__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mz-faq__card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 221, 0.06);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mz-faq__card--active .mz-faq__answer {
  opacity: 1;
  margin-top: 1.5rem;
}
.mz-faq__card--active .mz-faq__toggle {
  transform: rotate(180deg);
}
.mz-faq__badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
}
.mz-faq__badge--q {
  background-color: rgba(1, 0, 54, 0.6);
}
.mz-faq__badge--a {
  background-color: rgba(0, 179, 236, 0.6);
}
.mz-faq__question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}
.mz-faq__question-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #010036;
  margin: 0;
  flex: 1;
}
.mz-faq__toggle {
  position: relative;
  width: 2rem;
  height: 1rem;
  flex-shrink: 0;
  margin-left: auto;
  align-self: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mz-faq__toggle::before, .mz-faq__toggle::after {
  content: "";
  position: absolute;
  top: 65%;
  width: 0.75rem;
  height: 1px;
  background-color: #010036;
  border-radius: 1px;
}
.mz-faq__toggle::before {
  right: 50%;
  transform-origin: 100% 50%;
  transform: rotate(40deg);
}
.mz-faq__toggle::after {
  left: 50%;
  transform-origin: 0% 50%;
  transform: rotate(-40deg);
}
.mz-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}
.mz-faq__answer-text {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #010036;
  margin: 0;
}
.mz-faq__answer-text p {
  margin: 0;
}
.mz-faq__answer-text strong {
  font-weight: 700;
}
.mz-faq__disclaimer {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #010036;
  text-align: center;
  width: 65rem;
  margin: 0;
}

.mz-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 5rem 6.25rem 6rem;
}
.mz-cta__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 77.5rem;
  text-align: center;
}
.mz-cta__kicker {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 -0.75rem;
  background: linear-gradient(to right, #0068cb, #00b3ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.mz-cta__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(to right, #0068cb, #00b3ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}
.mz-cta__description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(1, 0, 54, 0.8);
  margin: 0;
}
.mz-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
.mz-cta__button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.mz-cta__button-label {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
  color: #010036;
  margin: 0;
}
.mz-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25rem;
  height: 5rem;
  padding: 1rem;
  border-radius: 4.375rem;
  background: linear-gradient(to right, #0068cb, #00b3ec);
  border: 2px solid #fff;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background 0.3s ease;
}
.mz-cta__button:hover {
  background: linear-gradient(to right, #005bb5, #0094c4);
}

@media only screen and (max-width: 1380px) {
  .mz-faq__title {
    font-size: 2.25rem;
  }
  .mz-cta__title {
    font-size: 2.25rem;
  }
}

@media only screen and (max-width: 1279px) {
  .mz-faq {
    padding: 5rem 0;
  }
  .mz-faq__inner {
    max-width: 100%;
    padding: 0 3rem;
    box-sizing: border-box;
    gap: 3rem;
  }
  .mz-faq__title {
    font-size: 2rem;
  }
  .mz-faq__card {
    padding: 1.5rem;
  }
  .mz-faq__badge {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
  .mz-faq__disclaimer {
    width: 100%;
  }
  .mz-cta {
    padding: 4rem 3rem 5rem;
  }
  .mz-cta__title {
    font-size: 2rem;
  }
  .mz-cta__buttons {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .mz-cta__button-group {
    flex: 0 0 calc(50% - 0.75rem);
  }
  .mz-cta__button {
    width: 100%;
    height: 4.5rem;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1023px) {
  .mz-faq {
    padding: 4rem 0;
  }
  .mz-faq__inner {
    padding: 0 2rem;
  }
  .mz-faq__title {
    font-size: 1.75rem;
  }
  .mz-cta {
    padding: 3rem 2rem 4rem;
  }
  .mz-cta__kicker {
    font-size: 1.125rem;
    margin: 0 0 -0.5rem;
  }
  .mz-cta__title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  .mz-cta__description {
    font-size: 0.9375rem;
  }
}

@media only screen and (max-width: 767px) {
  [data-page-type=lp] .mz-product-header {
    display: flex;
  }
  [data-page-type=lp] .mz-product-header__logo img {
    height: 2.25rem;
  }
  [data-page-type=lp] .mz-product-header__link--cta {
    display: flex;
  }
  .mz-faq {
    padding: 3rem 0;
  }
  .mz-faq__inner {
    padding: 0 1rem;
    gap: 2rem;
  }
  .mz-faq__title {
    font-size: 1.375rem;
  }
  .mz-faq__card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }
  .mz-faq__card--active .mz-faq__answer {
    margin-top: 1rem;
  }
  .mz-faq__question-text {
    font-size: 0.875rem;
    word-break: auto-phrase;
  }
  .mz-faq__answer-text {
    font-size: 0.875rem;
  }
  .mz-cta {
    padding: 2.5rem 2rem 3rem;
  }
  .mz-cta__header {
    gap: 1.5rem;
  }
  .mz-cta__kicker {
    font-size: 1rem;
    margin: 0 0 -0.25rem;
  }
  .mz-cta__title {
    font-size: 1.375rem;
  }
  .mz-cta__description {
    font-size: 0.875rem;
  }
  .mz-cta__buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    gap: 1.25rem;
  }
  .mz-cta__button-group {
    flex: none;
    width: 100%;
    max-width: 25rem;
  }
  .mz-cta__button {
    height: 4rem;
    font-size: 0.875rem;
  }
}

@media only screen and (max-width: 480px) {
  .mz-cta__button {
    white-space: normal;
    text-align: center;
    height: 3.5rem;
  }
}
