@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  vertical-align: baseline;
}

html, body {
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.mz-container {
  max-width: 1440px;
  width: calc(100% - 1.875rem);
  margin-left: auto;
  margin-right: auto;
}

/*mz-motion start*/
.mz-motion {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateY(40px);
}
.mz-motion.mz-motion-1s {
  transition: 0.1s ease;
}
.mz-motion.mz-motion-2s {
  transition: 0.2s ease;
}
.mz-motion.mz-motion-3s {
  transition: 0.3s ease;
}
.mz-motion.mz-motion-4s {
  transition: 0.4s ease;
}
.mz-motion.mz-motion-5s {
  transition: 0.5s ease;
}
.mz-motion.mz-motion-6s {
  transition: 0.6s ease;
}
.mz-motion.mz-motion-7s {
  transition: 0.7s ease;
}
.mz-motion.mz-motion-8s {
  transition: 0.8s ease;
}
.mz-motion.mz-motion-9s {
  transition: 0.9s ease;
}
.mz-motion.mz-motion-10s {
  transition: 1s ease;
}
.mz-motion.mz-motion-1 {
  transition-delay: 0s;
}
.mz-motion.mz-motion-2 {
  transition-delay: 0.2s;
}
.mz-motion.mz-motion-3 {
  transition-delay: 0.4s;
}
.mz-motion.mz-motion-4 {
  transition-delay: 0.6s;
}
.mz-motion.mz-motion-5 {
  transition-delay: 0.8s;
}
.mz-motion.mz-motion-6 {
  transition-delay: 1s;
}
.mz-motion.mz-motion-7 {
  transition-delay: 1.2s;
}
.mz-motion.mz-motion-8 {
  transition-delay: 1.4s;
}
.mz-motion.mz-motion-9 {
  transition-delay: 1.6s;
}
.mz-motion.mz-motion-10 {
  transition-delay: 1.8s;
}
.mz-motion.animated {
  opacity: 1;
  transform: translateY(0px);
}
.mz-motion.mz-motion-down {
  transform: translateY(-40px);
}
.mz-motion.mz-motion-down.animated {
  opacity: 1;
  transform: translateY(0px);
}
.mz-motion.mz-motion-right {
  transform: translateX(-65px);
}
.mz-motion.mz-motion-right.animated {
  opacity: 1;
  transform: translateX(0px);
}
.mz-motion.mz-motion-left {
  transform: translateX(65px);
}
.mz-motion.mz-motion-left.animated {
  opacity: 1;
  transform: translateX(0px);
}
.mz-motion.mz-motion-zoomin {
  transform: scale(0.9);
  transform-origin: center;
}
.mz-motion.mz-motion-zoomin.animated {
  opacity: 1;
  transform: scale(1);
}
.mz-motion.mz-motion-zoomout {
  transform: scale(1.1);
  transform-origin: center;
}
.mz-motion.mz-motion-zoomout.animated {
  opacity: 1;
  transform: scale(1);
}

/*mz-motion end*/
/*mz-hover start*/
.mz-hover-shine {
  position: relative;
  overflow: hidden;
}
.mz-hover-shine::before, .mz-hover-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-150%) skewX(-20deg);
  transition: transform 0.8s ease;
  pointer-events: none;
}
.mz-hover-shine::before {
  width: 30%;
}
.mz-hover-shine::after {
  width: 15%;
}
.mz-hover-shine:hover::before, .mz-hover-shine:hover::after {
  transform: translateX(800%) skewX(-20deg);
}

/*mz-hover end*/
.mz-mobile-menu {
  display: none;
}
.mz-mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mz-mobile-menu__nav {
  position: fixed;
  bottom: calc(4.375rem + env(safe-area-inset-bottom, 0px));
  left: 0.75rem;
  width: 80%;
  max-width: 20rem;
  max-height: calc(100vh - 3.625rem - 2.5rem);
  background-color: #fff;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  transform: translateX(calc(-100% - 1.5rem));
  transition: transform 0.3s ease;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.mz-mobile-menu__logo {
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(1, 0, 54, 0.08);
}
.mz-mobile-menu__logo img {
  height: 2.5rem;
  width: auto;
  display: block;
  object-fit: contain;
}
.mz-mobile-menu__links {
  overflow-y: auto;
  padding: 0 0 0.3125rem;
  -webkit-overflow-scrolling: touch;
}
.mz-mobile-menu__link {
  display: flex;
  align-items: center;
  color: #010036;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
}
.mz-mobile-menu__link:hover, .mz-mobile-menu__link:active {
  color: #0068cb;
}
.mz-mobile-menu__link--contact {
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(1, 0, 54, 0.08);
  color: #f24f16;
  font-weight: 500;
}
.mz-mobile-menu__bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 202;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
  background-color: #fff;
  box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.12);
}
.mz-mobile-menu__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.1875rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background-color: #010036;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  flex-shrink: 0;
}
.mz-mobile-menu__hamburger-line {
  display: block;
  width: 1rem;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.mz-mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 2.25rem;
  padding: 0 1rem;
  background: linear-gradient(87deg, #ff0000 0%, #ff7c00 100%);
  border-radius: 0.375rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.mz-mobile-menu--open .mz-mobile-menu__overlay {
  opacity: 1;
  pointer-events: auto;
}
.mz-mobile-menu--open .mz-mobile-menu__nav {
  transform: translateX(0);
}
.mz-mobile-menu--open .mz-mobile-menu__hamburger-line:nth-child(1) {
  transform: translateY(0.3rem) rotate(45deg);
}
.mz-mobile-menu--open .mz-mobile-menu__hamburger-line:nth-child(2) {
  opacity: 0;
}
.mz-mobile-menu--open .mz-mobile-menu__hamburger-line:nth-child(3) {
  transform: translateY(-0.3rem) rotate(-45deg);
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

.br-sp {
  display: none;
}
.mz-promo-top {
  background-color: #111;
  color: #fff;
  position: relative;
  z-index: 1000003;
  width: 100%;
}
.mz-promo-top__inner {
  max-width: 1440px;
  width: calc(100% - 1.875rem);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.625rem 2.75rem 0.625rem 0;
  min-height: 2.75rem;
}
.mz-promo-top__text {
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}
.mz-promo-top__btn {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 1;
  color: #111;
  background-color: #fff;
  padding: 0.375rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.mz-promo-top__btn:hover {
  opacity: 0.85;
}
.mz-promo-top__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: opacity 0.2s ease;
}
.mz-promo-top__link:hover {
  opacity: 0.8;
}
.mz-promo-top__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 1.25rem;
  opacity: 0.8;
  transition: all 0.2s ease;
}
.mz-promo-top__close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.mz-promo-top--brand {
  background: linear-gradient(135deg, rgb(255, 45, 0) 0%, rgb(255, 132, 0) 100%);
}
.mz-promo-top--light {
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 0.125rem 0.375rem rgba(17, 17, 17, 0.06);
}
.mz-promo-top--light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(255, 45, 0), rgb(255, 132, 0));
}
.mz-promo-top--light .mz-promo-top__text {
  font-weight: 500;
  color: #222;
}
.mz-promo-top--light .mz-promo-top__btn {
  color: #fff;
  background: linear-gradient(135deg, rgb(255, 45, 0) 0%, rgb(255, 132, 0) 100%);
  box-shadow: 0 0.125rem 0.5rem rgba(255, 45, 0, 0.25);
  font-weight: 500;
}
.mz-promo-top--light .mz-promo-top__btn:hover {
  opacity: 1;
  box-shadow: 0 0.25rem 0.75rem rgba(255, 45, 0, 0.35);
  transform: translateY(-1px);
}
.mz-promo-top--light .mz-promo-top__link {
  color: rgb(255, 45, 0);
  font-weight: 500;
}
.mz-promo-top--light .mz-promo-top__close {
  color: #666;
  background: rgba(17, 17, 17, 0.05);
  border-color: rgba(17, 17, 17, 0.1);
}
.mz-promo-top--light .mz-promo-top__close:hover {
  color: #333;
  background: rgba(17, 17, 17, 0.1);
}

.mz-promo-bottom {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 16rem;
  border-radius: 0.75rem;
  background-color: #1a1a1a;
  color: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25), 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.mz-promo-bottom::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, rgb(255, 45, 0), rgb(255, 132, 0));
}
.mz-promo-bottom__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem 0;
}
.mz-promo-bottom__title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
.mz-promo-bottom__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.mz-promo-bottom__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 0.875rem;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.mz-promo-bottom__close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}
.mz-promo-bottom__body {
  padding: 0.5rem 1rem 1rem;
}
.mz-promo-bottom__text {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}
.mz-promo-bottom__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, rgb(255, 45, 0) 0%, rgb(255, 132, 0) 100%);
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0.125rem 0.5rem rgba(255, 45, 0, 0.25);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.mz-promo-bottom__btn:hover {
  box-shadow: 0 0.25rem 0.75rem rgba(255, 45, 0, 0.4);
  transform: translateY(-1px);
}
.mz-promo-bottom--hidden {
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  pointer-events: none;
}
.mz-promo-bottom--brand {
  background: linear-gradient(135deg, rgb(255, 45, 0) 0%, rgb(255, 132, 0) 100%);
}
.mz-promo-bottom--brand::before {
  display: none;
}
.mz-promo-bottom--brand .mz-promo-bottom__btn {
  color: #111;
  background: #fff;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
}
.mz-promo-bottom--brand .mz-promo-bottom__btn:hover {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.25);
}
.mz-promo-bottom--brand .mz-promo-bottom__close {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}
.mz-promo-bottom--dark {
  background-color: #1a1a1a;
}
.mz-promo-bottom--light {
  background-color: #fff;
  color: #333;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12), 0 0.125rem 0.375rem rgba(0, 0, 0, 0.08);
}
.mz-promo-bottom--light::before {
  background: linear-gradient(90deg, rgb(255, 45, 0), rgb(255, 132, 0));
}
.mz-promo-bottom--light .mz-promo-bottom__title {
  color: #222;
}
.mz-promo-bottom--light .mz-promo-bottom__text {
  color: #555;
}
.mz-promo-bottom--light .mz-promo-bottom__close {
  color: #666;
  background: rgba(17, 17, 17, 0.05);
  border-color: rgba(17, 17, 17, 0.1);
}
.mz-promo-bottom--light .mz-promo-bottom__close:hover {
  color: #333;
  background: rgba(17, 17, 17, 0.1);
}

body:has(.anywhere-chat--open) .header,
body:has(.anywhere-chat--open) .mz-header-menu,
body:has(.anywhere-chat--open) .mz-promo-top,
body:has(.anywhere-chat--open) .mz-product-header.is-sticky,
body:has(.anywhere-chat--open) .lab-header {
  z-index: 999999 !important;
}

html:has([id^=mastra-ai-chat-widget-].anywhere-chat--open) {
  overflow: hidden;
  touch-action: none;
}

[id^=mastra-ai-chat-widget-].anywhere-chat--open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.3rem);
  -webkit-backdrop-filter: blur(0.3rem);
}
[id^=mastra-ai-chat-widget-] .mastra-z-\[9998\] {
  width: auto;
  max-width: max-content;
  margin: 0 auto;
}
[id^=mastra-ai-chat-widget-] .mastra-bg-black\/70 {
  background-color: rgba(0, 0, 0, 0.4) !important;
}
[id^=mastra-ai-chat-widget-] {
  /*> .mastra-fixed > button {
      max-width: calc(100% - 140px) !important;

      span {
          font-size: 0.75rem !important;
      }
  }*/
}
[id^=mastra-ai-chat-widget-] .mastra-medium-glowstrip-top + div > button:first-child {
  display: none !important;
}
[id^=mastra-ai-chat-widget-] .mastra-items-center.mastra-widget-glow button:last-child {
  display: none !important;
}

body:has([data-widget-state=closed][data-widget-placement=center]) .mz-footer-menu__copyright-footer {
  padding-bottom: 6.5rem;
}

.mz-breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
}
.mz-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.mz-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #010036;
}
.mz-breadcrumb li::after {
  content: "";
  display: block;
  width: 0.25rem;
  height: 0.5625rem;
  background: url("data:image/svg+xml,%3Csvg width='5' height='11' viewBox='0 0 5 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.39 0.31L4.39 5.34L0.39 10.31' stroke='%23010036'/%3E%3C/svg%3E") no-repeat center/contain;
}
.mz-breadcrumb li:last-child::after {
  display: none;
}
.mz-breadcrumb li:last-child span {
  font-weight: bold;
}
.mz-breadcrumb a,
.mz-breadcrumb li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: rgba(1, 0, 54, 0.1);
  border: 0.5px solid rgba(1, 0, 54, 0.1);
  border-radius: 0.25rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.mz-breadcrumb a:hover {
  background: rgba(1, 0, 54, 0.16);
}

.mz-header-menu, .mz-header-menu *, .mz-header-menu *::before, .mz-header-menu *::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  container-type: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  vertical-align: baseline;
}
.mz-header-menu ol, .mz-header-menu ul {
  list-style: none;
}
.mz-header-menu a {
  text-decoration: none;
}
.mz-header-menu button {
  border: none;
  cursor: pointer;
}
.mz-header-menu img {
  display: block;
  max-width: 100%;
}

.mz-site-header:not(:has(.mz-product-header)) {
  position: sticky;
  top: 0;
  z-index: 1000002;
}

.mz-body--no-scroll {
  overflow: hidden;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mz-body--dropdown-overlay::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease 0.201s, visibility 0s ease 0s;
}

.mz-header-menu {
  background-color: #fff;
  position: relative;
  z-index: 1000002;
  width: 100%;
}
.mz-header-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0.25rem 0.375rem rgba(17, 17, 17, 0.1), 0 0.125rem 0.25rem rgba(17, 17, 17, 0.05);
  z-index: -1;
  pointer-events: none;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mz-header-menu:has(+ .mz-product-header)::before {
  box-shadow: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.mz-header-menu:not(:has(+ .mz-product-header)):has(.mz-dropdown--active)::before {
  box-shadow: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.mz-header-menu--search-open::before {
  box-shadow: none;
}
.mz-header-menu__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 120rem;
  margin: 0 auto;
  height: 4.5rem;
  box-sizing: border-box;
}
.mz-header-menu__left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.mz-header-menu__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.mz-header-menu__logo img {
  height: 2.3125rem;
  width: 10rem;
  object-fit: contain;
}
.mz-header-menu__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mz-header-menu__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 2.5rem;
  padding: 0.75rem 0.5rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #111111;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.mz-header-menu .mz-header-menu__nav-btn:visited {
  color: #111111 !important;
  text-decoration: none !important;
}
.mz-header-menu .mz-header-menu__nav-btn:hover, .mz-header-menu .mz-header-menu__nav-btn:focus, .mz-header-menu .mz-header-menu__nav-btn:active {
  color: #111111 !important;
  background-color: rgba(1, 0, 54, 0.04) !important;
  text-decoration: none !important;
}
.mz-header-menu__nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.125rem;
  transition: transform 0.2s ease;
}
.mz-header-menu__nav-arrow::after {
  content: "";
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-bottom: 1.5px solid rgba(17, 17, 17, 0.6);
  border-right: 1.5px solid rgba(17, 17, 17, 0.6);
  transform: rotate(45deg);
  margin-top: -0.125rem;
}
.is-active .mz-header-menu__nav-arrow {
  transform: rotate(180deg);
}
.mz-header-menu__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mz-header-menu__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mz-header-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(1, 0, 54, 0.8);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.75rem 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.mz-header-menu .mz-header-menu__link:visited {
  color: rgba(1, 0, 54, 0.8) !important;
  text-decoration: none !important;
}
.mz-header-menu .mz-header-menu__link:hover, .mz-header-menu .mz-header-menu__link:focus, .mz-header-menu .mz-header-menu__link:active {
  color: #111111 !important;
  background-color: rgba(1, 0, 54, 0.04) !important;
  text-decoration: none !important;
}
.mz-header-menu__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.mz-header-menu .mz-header-menu__btn:visited {
  color: inherit !important;
  text-decoration: none !important;
}
.mz-header-menu .mz-header-menu__btn:hover, .mz-header-menu .mz-header-menu__btn:focus, .mz-header-menu .mz-header-menu__btn:active {
  color: inherit !important;
  text-decoration: none !important;
}
.mz-header-menu__btn--download, .mz-header-menu__btn--trial {
  width: 11.25rem;
  border: 1px solid #111111;
  color: #111111;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(17, 17, 17, 0.1), 0 1px 2px rgba(17, 17, 17, 0.05);
}
.mz-header-menu .mz-header-menu__btn--download:hover, .mz-header-menu .mz-header-menu__btn--download:focus, .mz-header-menu .mz-header-menu__btn--download:active, .mz-header-menu .mz-header-menu__btn--trial:hover, .mz-header-menu .mz-header-menu__btn--trial:focus, .mz-header-menu .mz-header-menu__btn--trial:active {
  color: #111111 !important;
  background-color: #F2F2F5 !important;
  text-decoration: none !important;
}
.mz-header-menu .mz-header-menu__btn--download:visited, .mz-header-menu .mz-header-menu__btn--trial:visited {
  color: #111111 !important;
  text-decoration: none !important;
}
.mz-header-menu__btn--download .mz-header-menu__btn-icon {
  width: 1.0625rem;
  height: 1.1875rem;
  background-position: -94px 0px;
}
.mz-header-menu__btn--trial .mz-header-menu__btn-icon {
  width: 1.5rem;
  height: 1rem;
  background-position: -62px -2px;
}
.mz-header-menu__btn--cta {
  width: 15rem;
  padding: 0.75rem 0.5rem 0.75rem 2.5rem;
  background: linear-gradient(135deg, rgb(255, 45, 0) 0%, rgb(255, 132, 0) 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0.125rem 0.5rem rgba(255, 45, 0, 0.25);
  justify-content: space-between;
}
.mz-header-menu .mz-header-menu__btn--cta:visited {
  color: #fff !important;
}
.mz-header-menu .mz-header-menu__btn--cta:hover, .mz-header-menu .mz-header-menu__btn--cta:focus, .mz-header-menu .mz-header-menu__btn--cta:active {
  color: #fff !important;
  background: linear-gradient(135deg, rgb(220, 38, 0) 0%, rgb(230, 115, 0) 100%) !important;
  box-shadow: 0 0.25rem 0.75rem rgba(255, 45, 0, 0.4);
  transform: translateY(-1px);
}
.mz-header-menu__btn-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  background: url("../../images/common/common-sprite.png") no-repeat;
  background-size: 400px 400px;
  transition: transform 0.3s ease;
}
.mz-header-menu__btn:hover .mz-header-menu__btn-icon {
  animation: icon-wiggle 0.5s ease;
}
.mz-header-menu__btn-text {
  display: inline-block;
}
.mz-header-menu__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  color: rgba(1, 0, 54, 0.8);
  transition: transform 0.3s ease;
}
.mz-header-menu__btn--cta:hover .mz-header-menu__btn-arrow {
  animation: arrow-bounce-right 0.6s ease;
}
.mz-header-menu__btn-arrow::after {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1px solid rgba(1, 0, 54, 0.8);
  border-bottom: 1px solid rgba(1, 0, 54, 0.8);
  transform: rotate(-45deg);
  margin-left: -0.0625rem;
}
.mz-header-menu__search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: rgba(17, 17, 17, 0.4);
  transition: color 0.2s ease;
}
.mz-header-menu__search:hover {
  color: rgba(17, 17, 17, 0.7);
}
.mz-header-menu__search .mz-header-menu__search-icon {
  display: block;
  width: 30px;
  height: 30px;
  background: url("../../images/common/common-sprite.png") no-repeat;
  background-size: 512px 512px;
  background-position: -37px 2px;
}
.mz-header-menu__search .mz-header-menu__search-close-icon {
  display: none;
  width: 0.875rem;
  height: 0.875rem;
  color: #f24f16;
}
.mz-header-menu--search-open .mz-header-menu__search .mz-header-menu__search-icon {
  display: none;
}
.mz-header-menu--search-open .mz-header-menu__search .mz-header-menu__search-close-icon {
  display: block;
}
.mz-header-menu__mobile-trial {
  display: none;
}
.mz-header-menu__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  position: relative;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.mz-header-menu__hamburger-line {
  display: block;
  width: 1.25rem;
  height: 2px;
  background-color: #111111;
  border-radius: 1px;
  transform-origin: center center;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease;
}
.mz-header-menu__hamburger-line--vertical {
  position: absolute;
  width: 2px;
  height: 1.25rem;
  opacity: 0;
  transform: scaleY(0);
  transition: transform 0.3s 0s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease;
}
.mz-header-menu--menu-open .mz-header-menu__hamburger-line:nth-child(1) {
  transform: translateX(0.625rem);
  opacity: 0;
}
.mz-header-menu--menu-open .mz-header-menu__hamburger-line:nth-child(2) {
  transform: rotate(45deg);
  transition: transform 0.3s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mz-header-menu--menu-open .mz-header-menu__hamburger-line:nth-child(3) {
  transform: translateX(-0.625rem);
  opacity: 0;
}
.mz-header-menu--menu-open .mz-header-menu__hamburger-line--vertical {
  opacity: 1;
  transform: scaleY(1) rotate(45deg);
  transition: transform 0.3s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s 0.15s ease;
}
.mz-header-menu__overlay {
  display: none;
}
.mz-header-menu__overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 36rem;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.mz-header-menu__overlay-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #111111;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(1, 0, 54, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.375rem rgba(1, 0, 54, 0.06);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.mz-header-menu__overlay-link:hover {
  background-color: rgba(1, 0, 54, 0.02);
  box-shadow: 0 0.25rem 0.5rem rgba(1, 0, 54, 0.1);
}
.mz-header-menu__overlay-link:not(:last-child)::after {
  display: none;
}
.mz-header-menu__overlay-arrow {
  display: none;
}
.mz-header-menu__overlay-link--accordion {
  cursor: pointer;
}
.mz-header-menu__overlay-divider {
  display: none;
}
.mz-header-menu__overlay-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.mz-header-menu__overlay-actions .mz-header-menu__link {
  width: 100%;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(1, 0, 54, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.375rem rgba(1, 0, 54, 0.06);
  font-size: 1rem;
  font-weight: 400;
  color: #111111;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.mz-header-menu__overlay-actions .mz-header-menu__link:hover {
  background-color: rgba(1, 0, 54, 0.02);
  box-shadow: 0 0.25rem 0.5rem rgba(1, 0, 54, 0.1);
}
.mz-header-menu__overlay-actions .mz-header-menu__btn {
  width: 100%;
  height: 3.25rem;
  font-size: 1rem;
}
.mz-header-menu__overlay-actions .mz-header-menu__btn--download, .mz-header-menu__overlay-actions .mz-header-menu__btn--trial {
  width: 100%;
  border: 1px solid rgba(1, 0, 54, 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 0.125rem 0.375rem rgba(1, 0, 54, 0.06);
}
.mz-header-menu__overlay-actions .mz-header-menu__btn--download:hover, .mz-header-menu__overlay-actions .mz-header-menu__btn--trial:hover {
  background-color: #F2F2F5;
}
.mz-header-menu__overlay-btn-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}
.mz-header-menu__overlay > .mz-header-menu__btn--cta {
  width: 100%;
  max-width: 100%;
  height: 3.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 0.75rem 1rem 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 1rem rgba(255, 45, 0, 0.25);
}
.mz-header-menu__overlay-search {
  display: none;
}
.mz-header-menu__overlay-search svg {
  width: 1.125rem;
  height: 1.125rem;
}
.mz-header-menu__overlay-search-label {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(1, 0, 54, 0.4);
  line-height: 1;
}
.mz-header-menu__search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000001;
  background-color: #fff;
  border-top: 1px solid rgba(1, 0, 54, 0.06);
  box-shadow: 0 0.25rem 0.375rem rgba(17, 17, 17, 0.08);
  padding: 0.75rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transform-origin: top center;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
}
.mz-header-menu__search-bar--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mz-header-menu__search-bar-inner {
  display: flex;
  align-items: center;
  max-width: 56.25rem;
  margin: 0 auto;
  height: 3rem;
  border: 1px solid rgba(1, 0, 54, 0.12);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.mz-header-menu__search-bar-inner:focus-within {
  border-color: rgba(1, 0, 54, 0.3);
}
.mz-header-menu__search-input {
  flex: 1;
  height: 100%;
  padding: 0 1rem !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none;
  background: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #111111 !important;
}
.mz-header-menu__search-input::placeholder {
  color: rgba(1, 0, 54, 0.35);
}
.mz-header-menu__search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  padding: 0;
  background: rgba(1, 0, 54, 0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: rgba(1, 0, 54, 0.4);
  flex-shrink: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.mz-header-menu__search-clear:hover {
  color: rgba(1, 0, 54, 0.7);
  background-color: rgba(1, 0, 54, 0.12);
}
.mz-header-menu__search-clear--visible {
  display: flex;
}
.mz-header-menu__search-clear svg {
  display: block;
  width: 0.625rem;
  height: 0.625rem;
}
.mz-header-menu__search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 100%;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(1, 0, 54, 0.08);
  cursor: pointer;
  color: rgba(1, 0, 54, 0.4);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.mz-header-menu__search-submit:hover {
  color: rgba(1, 0, 54, 0.7);
  background-color: rgba(1, 0, 54, 0.03);
}
.mz-header-menu__search-submit-icon {
  display: block;
  width: 25px;
  height: 25px;
  background: url("../../images/common/common-sprite.png") no-repeat;
  background-size: 512px 512px;
  background-position: -37px 0px;
}

@keyframes arrow-bounce-right {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(0.375rem);
  }
  70% {
    transform: translateX(-0.125rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes icon-wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-12deg);
  }
  75% {
    transform: rotate(12deg);
  }
}
.mz-dropdown {
  position: absolute;
  top: 100%;
  z-index: 1000001;
  background-color: #fff;
  box-shadow: 0 0.25rem 0.375rem -0.0625rem rgba(17, 17, 17, 0.1), 0 0.125rem 0.25rem -0.0625rem rgba(17, 17, 17, 0.05);
  visibility: hidden;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.mz-dropdown--active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.mz-dropdown--fullwidth {
  left: 0;
  right: 0;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
  transform-origin: top center;
}
.mz-dropdown--fullwidth::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  right: 0;
  height: 1.25rem;
}
.mz-dropdown--fullwidth .mz-dropdown__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.mz-dropdown--positioned {
  width: auto;
  min-width: auto;
  border-radius: 0 0 0.75rem 0.75rem;
  transform-origin: top left;
  overflow: visible;
}
.mz-dropdown--positioned::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 0;
  right: 0;
  height: 1.25rem;
}
.mz-dropdown--positioned .mz-dropdown__wrap {
  padding: 1rem 1.5rem;
  gap: 0;
}

.mz-dropdown__product-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--arrow-color, #111111);
  transition: transform 0.3s ease;
}
.mz-dropdown__product:hover .mz-dropdown__product-arrow, .mz-dropdown__connect-card:hover .mz-dropdown__product-arrow {
  animation: arrow-bounce-right 0.6s ease;
}
.mz-dropdown__product-arrow::after {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  margin-left: -0.125rem;
}
.mz-dropdown__arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--arrow-color, #111111);
  transition: transform 0.3s ease;
}
a:hover > .mz-dropdown__arrow-icon, .mz-dropdown__branding-link:hover .mz-dropdown__arrow-icon, .mz-dropdown__pack-link:hover .mz-dropdown__arrow-icon {
  animation: arrow-bounce-right 0.6s ease;
}
.mz-dropdown__arrow-icon::after {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  margin-left: -0.125rem;
}

.mz-dropdown__products {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
  width: 100%;
  position: relative;
}
.mz-dropdown__branding {
  position: absolute;
  left: 0;
  top: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6875rem;
  background-color: #fff;
  padding: 1rem 0;
}
.mz-dropdown__branding-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #111111;
}
.mz-dropdown__branding-img {
  height: auto;
  width: 23.75rem;
  object-fit: contain;
}
.mz-dropdown__branding-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 2rem;
  margin-top: 0.25rem;
  padding: 0 1rem;
  border: 1px solid #ff4700;
  border-radius: 2.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ff4700;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.mz-dropdown__branding-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 124, 0, 0.35) 75%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 124, 0, 0.35) 55%, transparent 100%);
  animation: shimmer 1.5s ease-in-out infinite;
}
.mz-dropdown__branding-link:hover {
  background: linear-gradient(87deg, #ff0000 0%, #ff7c00 100%);
  border-color: transparent;
  color: #fff;
}
.mz-dropdown__branding-link:hover .mz-dropdown__arrow-icon {
  background-color: #fff;
}
.mz-dropdown__branding-link:hover .mz-dropdown__arrow-icon::after {
  border-top-color: #ff4700;
  border-right-color: #ff4700;
}
.mz-dropdown__panel {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: flex-end;
  border: 2px solid rgba(1, 0, 54, 0.1);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  width: 68.125rem;
  box-sizing: border-box;
}
.mz-dropdown__panel-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 25rem;
}
.mz-dropdown__panel-col:first-child {
  width: 25rem;
}
.mz-dropdown__panel-col:last-child {
  width: 26.25rem;
}
.mz-dropdown__product {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 4.25rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.5rem var(--shadow-color, rgba(0, 152, 183, 0.2));
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.mz-dropdown__product:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.375rem 0.75rem var(--shadow-color, rgba(0, 152, 183, 0.3));
}
.mz-dropdown__product-logo {
  flex-shrink: 0;
  width: 5.5rem;
}
.mz-dropdown__product-logo img {
  display: block;
  height: 2rem;
  width: 5.375rem;
  object-fit: contain;
}
.mz-dropdown__product-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
  min-width: 0;
}
.mz-dropdown__product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
  padding: 0.125rem 0.25rem;
  border: 0.5px solid;
  border-radius: 0.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1.5;
  background-color: #fff;
  width: fit-content;
}
.mz-dropdown__product-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
}
.mz-dropdown__product-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.6);
  margin: 0;
}
.mz-dropdown__connect {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: 4.25rem;
}
.mz-dropdown__connect-header {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}
.mz-dropdown__connect-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
  padding: 0.125rem 0.25rem;
  border: 0.5px solid rgba(1, 0, 54, 0.2);
  border-radius: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(1, 0, 54, 0.8);
  background-color: #fff;
}
.mz-dropdown__connect-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(1, 0, 54, 0.8);
}
.mz-dropdown__connect-cards {
  display: flex;
  gap: 0.625rem;
  width: 100%;
}
.mz-dropdown__connect-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(1, 0, 54, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.mz-dropdown__connect-card:hover {
  transform: translateY(-1px);
}
.mz-dropdown__connect-card img {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
  flex: 1;
  min-width: 0;
}
.mz-dropdown__connect-card--disabled {
  pointer-events: none;
  cursor: default;
}
.mz-dropdown__connect-card--disabled .mz-dropdown__product-arrow {
  display: none;
}
.mz-dropdown__products--standard {
  justify-content: center;
  max-width: 61.5625rem;
  margin: 0 auto;
}
.mz-dropdown__products--standard .mz-dropdown__branding {
  display: none;
}
.mz-dropdown__products--standard .mz-dropdown__panel {
  border: none;
  padding: 0;
  width: 100%;
}
.mz-dropdown__products--standard .mz-dropdown__panel-col {
  flex: 1;
  width: auto;
}
.mz-dropdown__products--standard .mz-dropdown__panel-col:first-child, .mz-dropdown__products--standard .mz-dropdown__panel-col:last-child {
  width: auto;
}
.mz-dropdown__packs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
.mz-dropdown__packs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.mz-dropdown__packs-line {
  flex: 1;
  height: 1px;
  background-color: rgba(1, 0, 54, 0.1);
}
.mz-dropdown__packs-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(1, 0, 54, 0.4);
  border-radius: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
.mz-dropdown__packs-row {
  display: flex;
  gap: 0.625rem;
  width: 100%;
}
.mz-dropdown__pack {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem 1.5rem;
  background-color: #fff;
  border: 1px solid rgba(1, 0, 54, 0.1);
  border-radius: 1rem;
  box-shadow: 0 0.375rem 0.5rem rgba(1, 0, 54, 0.2);
  position: relative;
}
.mz-dropdown__pack--disabled .mz-dropdown__pack-link {
  display: none;
}
.mz-dropdown__pack-badge {
  position: absolute;
  top: -0.5625rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
  padding: 0.125rem 0;
  background-color: #fff;
  border-radius: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  white-space: nowrap;
}
.mz-dropdown__pack-badge::before, .mz-dropdown__pack-badge::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 1rem;
  margin: 0 0.375rem;
  flex-shrink: 0;
}
.mz-dropdown__pack-badge::before {
  border-left: 1px solid rgba(1, 0, 54, 0.2);
  border-top: 1px solid rgba(1, 0, 54, 0.2);
  border-bottom: 1px solid rgba(1, 0, 54, 0.2);
}
.mz-dropdown__pack-badge::after {
  border-right: 1px solid rgba(1, 0, 54, 0.2);
  border-top: 1px solid rgba(1, 0, 54, 0.2);
  border-bottom: 1px solid rgba(1, 0, 54, 0.2);
}
.mz-dropdown__pack-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  background: linear-gradient(86deg, #ff0000, #ff7c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mz-dropdown__pack-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2;
  color: #111111;
  text-align: center;
  margin: 0;
}
.mz-dropdown__pack-logos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2rem;
}
.mz-dropdown__pack-logos img {
  height: 2rem;
  width: auto;
  object-fit: contain;
}
.mz-dropdown__pack-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  height: 1.5rem;
  padding: 0 1rem;
  border: 1px solid rgba(1, 0, 54, 0.2);
  border-radius: 2.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mz-dropdown__pack-link:hover {
  background-color: #F2F2F5;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.mz-dropdown__link-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 30rem;
}
.mz-dropdown__link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid rgba(1, 0, 54, 0.08);
  transition: color 0.2s ease;
}
.mz-dropdown__link-item:last-child {
  border-bottom: none;
}
.mz-dropdown__link-item:hover {
  color: #f24f16;
}
.mz-dropdown__link-group {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(1, 0, 54, 0.08);
}
.mz-dropdown__link-item--has-sub {
  width: 100%;
  cursor: pointer;
  background: none;
}
.mz-dropdown__link-item--has-sub .mz-dropdown__link-text::before {
  position: absolute;
  left: -0.9375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: rgba(1, 0, 54, 0.25);
}
.mz-dropdown__link-item--has-sub .mz-dropdown__link-text {
  position: relative;
}
.mz-dropdown__link-sublist {
  position: absolute;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  min-width: 12rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(17, 17, 17, 0.12);
  padding: 0.5rem 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.mz-dropdown__link-group:hover .mz-dropdown__link-sublist {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mz-dropdown__link-subitem {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.mz-dropdown__link-subitem:hover {
  color: #f24f16;
}

.mz-dropdown--positioned .mz-dropdown__product-arrow {
  background-color: transparent;
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(1, 0, 54, 0.3);
  transition: color 0.2s ease;
}
.mz-dropdown--positioned .mz-dropdown__product-arrow::after {
  width: 0.4375rem;
  height: 0.4375rem;
  border-top-color: currentColor;
  border-right-color: currentColor;
  margin-left: 0;
}
.mz-dropdown--positioned .mz-dropdown__link-item:hover .mz-dropdown__product-arrow {
  color: #f24f16;
}
.mz-dropdown--positioned .mz-dropdown__link-item--has-sub .mz-dropdown__product-arrow {
  transition: color 0.2s ease, transform 0.2s ease;
}
.mz-dropdown--positioned .mz-dropdown__link-group:hover .mz-dropdown__product-arrow {
  transform: rotate(180deg);
  color: #f24f16;
}

.mz-product-header {
  background: #fff;
  position: relative;
  z-index: 100;
  margin-top: 1px;
}
.mz-product-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding: 0 2rem;
  max-width: 1440px;
  margin: 0 auto;
}
.mz-product-header__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.mz-product-header__logo {
  display: flex;
  align-items: center;
  align-self: stretch;
  min-width: 7.8125rem;
  min-height: 2.875rem;
}
.mz-product-header__logo img {
  height: 2.875rem;
  width: auto;
  object-fit: contain;
}
.mz-product-header__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  width: 22.0625rem;
}
.mz-product-header__tags {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.mz-product-header__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.125rem;
  padding: 0.25rem 0.5rem;
  background: #006acc;
  border-radius: 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}
.mz-product-header__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #0b0276;
  margin: 0;
  width: 100%;
}
.mz-product-header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mz-product-header__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #111111;
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  height: 2.5rem;
  padding: 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: background-color 0.2s ease;
}
.mz-product-header__link:hover, .mz-product-header__link.is-active {
  background-color: rgba(11, 2, 118, 0.04);
}
.mz-product-header__link--bold {
  font-weight: 700;
}
.mz-product-header__link--signin {
  color: #111111;
}
.mz-product-header__nav-arrow {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1px solid #0b0276;
  border-bottom: 1px solid #0b0276;
  transform: rotate(45deg);
  margin-top: -0.125rem;
  transition: transform 0.2s ease;
}
.mz-product-header__signin-icon {
  width: 1.125rem;
  height: 1.125rem;
}
.mz-product-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  z-index: 1000001;
  box-shadow: 0 0.25rem 0.375rem rgba(17, 17, 17, 0.1), 0 0.125rem 0.25rem rgba(17, 17, 17, 0.05);
}

.mz-pt-dropdown {
  position: absolute;
  top: calc(100% - 0.5rem);
  z-index: 99;
  background: transparent;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.mz-pt-dropdown.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.mz-pt-dropdown__wrap {
  padding: 0.5rem 0.75rem;
  background: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 1rem rgba(17, 17, 17, 0.12), 0 0 0.25rem rgba(17, 17, 17, 0.08);
}

.mz-pt-dropdown__link-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mz-pt-dropdown__link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.5rem;
  text-decoration: none;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid rgba(1, 0, 54, 0.08);
  transition: color 0.2s ease;
}
.mz-pt-dropdown__link-item:last-child {
  border-bottom: none;
}
.mz-pt-dropdown__link-item:hover {
  color: rgb(230, 115, 0);
}

.mz-pt-dropdown__link-group {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(1, 0, 54, 0.08);
}

.mz-pt-dropdown__link-item--has-sub {
  width: 100%;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
}

.mz-pt-dropdown__link-sublist {
  position: absolute;
  left: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  min-width: 10rem;
  background-color: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 1rem rgba(17, 17, 17, 0.12), 0 0 0.25rem rgba(17, 17, 17, 0.08);
  padding: 0.5rem 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.mz-pt-dropdown__link-group:hover .mz-pt-dropdown__link-sublist {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mz-pt-dropdown__link-sublist--flip-left {
  left: auto;
  right: 100%;
  transform: translateX(0.5rem);
}
.mz-pt-dropdown__link-group:hover .mz-pt-dropdown__link-sublist--flip-left {
  transform: translateX(0);
}
.mz-pt-dropdown__link-sublist--nowrap .mz-pt-dropdown__link-subitem {
  white-space: nowrap;
}

.mz-pt-dropdown__link-subitem {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  text-decoration: none;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
.mz-pt-dropdown__link-subitem {
  transition: color 0.2s ease;
}
.mz-pt-dropdown__link-subitem:hover {
  color: rgb(230, 115, 0);
}

.mz-pt-dropdown__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  background-color: transparent;
  border-radius: 50%;
  color: rgba(1, 0, 54, 0.3);
  transition: color 0.2s ease;
}
.mz-pt-dropdown__arrow::after {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.mz-pt-dropdown__link-item:hover .mz-pt-dropdown__arrow {
  color: rgb(230, 115, 0);
}

.mz-pt-dropdown__link-item--has-sub .mz-pt-dropdown__arrow {
  transition: color 0.2s ease, transform 0.2s ease;
}

.mz-pt-dropdown__link-group:hover .mz-pt-dropdown__arrow {
  transform: rotate(180deg);
  color: rgb(230, 115, 0);
}
.mz-pt-megamenu {
  position: absolute;
  top: calc(100% - 0.5rem);
  z-index: 99;
  background: transparent;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.mz-pt-megamenu.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.mz-pt-megamenu__wrap {
  background: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 1rem rgba(17, 17, 17, 0.12), 0 0 0.25rem rgba(17, 17, 17, 0.08);
  padding: 1.5rem 2rem;
  max-width: calc(100vw - 4rem);
}

.mz-pt-megamenu__grid {
  display: grid;
  grid-template-columns: 12.5rem 1fr 1fr;
  gap: 0;
}

.mz-pt-megamenu__col {
  padding: 0 1.5rem;
  border-right: 1px solid rgba(1, 0, 54, 0.08);
}
.mz-pt-megamenu__col:first-child {
  padding-left: 0;
}
.mz-pt-megamenu__col:last-child {
  padding-right: 0;
  border-right: none;
}

.mz-pt-megamenu__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
}
.mz-pt-megamenu__heading--sub {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(1, 0, 54, 0.08);
}

.mz-pt-megamenu__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.mz-pt-megamenu__icon svg {
  width: 100%;
  height: 100%;
}

.mz-pt-megamenu__links {
  display: flex;
  flex-direction: column;
}

.mz-pt-megamenu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  text-decoration: none;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid rgba(1, 0, 54, 0.06);
  transition: color 0.2s ease;
}
.mz-pt-megamenu__link:last-child {
  border-bottom: none;
}
.mz-pt-megamenu__link:hover {
  color: #f24f16;
}
.mz-pt-megamenu__link:hover .mz-pt-megamenu__arrow {
  color: #f24f16;
}

.mz-pt-megamenu__link-text {
  flex: 1;
  min-width: 0;
}

.mz-pt-megamenu__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  color: rgba(1, 0, 54, 0.2);
  transition: color 0.2s ease;
}
.mz-pt-megamenu__arrow::after {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.mz-pt-megamenu__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  padding: 0.375rem 0;
  text-decoration: none;
  color: #2563eb;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}
.mz-pt-megamenu__cta:hover {
  opacity: 0.7;
}

.mz-pt-megamenu__subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(1, 0, 54, 0.08);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
}

.mz-mobile-menu__group {
  width: 100%;
}

.mz-mobile-menu__link--accordion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #010036;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mz-mobile-menu__group.is-expanded .mz-mobile-menu__link--accordion {
  color: #0068cb;
}

.mz-mobile-menu__accordion-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border: none;
}
.mz-mobile-menu__accordion-arrow::before {
  content: "";
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 1.5px solid rgba(1, 0, 54, 0.35);
  border-bottom: 1.5px solid rgba(1, 0, 54, 0.35);
  transform: rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mz-mobile-menu__group.is-expanded .mz-mobile-menu__accordion-arrow::before {
  transform: rotate(-135deg);
  border-color: #0068cb;
}

.mz-mobile-menu__sub {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.32, 0.72, 0, 1), padding 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mz-mobile-menu__group.is-expanded .mz-mobile-menu__sub {
  max-height: 62.5rem;
  padding: 0.25rem 1.5rem 0.625rem 1.5rem;
  opacity: 1;
}

.mz-mobile-menu__sub-link {
  display: flex;
  align-items: center;
  color: rgba(1, 0, 54, 0.55);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}
.mz-mobile-menu__sub-link:hover, .mz-mobile-menu__sub-link:active {
  color: #0068cb;
}
.mz-mobile-menu__sub-link--cta {
  color: #2563eb;
  font-weight: 600;
}

.mz-mobile-menu__signin-icon {
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.375rem;
  flex-shrink: 0;
}

.mz-mobile-menu__sub-group {
  margin-top: 0;
}

.mz-mobile-menu__sub-heading {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(1, 0, 54, 0.4);
  letter-spacing: 0.04em;
  padding: 0.75rem 0 0.25rem;
  line-height: 1.5;
}

.mz-mobile-menu__sub-group .mz-mobile-menu__sub-link {
  padding-left: 0.875rem;
}

.mz-footer-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mz-footer-menu__inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
  box-sizing: border-box;
}
.mz-footer-menu__product-footer {
  background-color: #f6f6f9;
  width: 100%;
  overflow: hidden;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.mz-footer-menu__product-footer > .mz-footer-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.mz-footer-menu__product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a26;
  text-align: center;
  white-space: nowrap;
}
.mz-footer-menu__content-row {
  display: flex;
  gap: 3.5rem;
  width: 100%;
  overflow: visible;
}
.mz-footer-menu__product-card {
  position: relative;
  width: 18.75rem;
  flex-shrink: 0;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(191, 204, 229, 0.4);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 13, 38, 0.1);
}
.mz-footer-menu__product-card-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  pointer-events: none;
}
.mz-footer-menu__product-card-inset {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 1.25rem rgba(178, 204, 255, 0.2);
  pointer-events: none;
}
.mz-footer-menu__product-card-logo {
  position: relative;
  width: 8.75rem;
  height: 3.25rem;
}
.mz-footer-menu__product-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mz-footer-menu__product-card-tags {
  position: relative;
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.mz-footer-menu__tag {
  display: flex;
  align-items: flex-start;
  padding: 0.25rem 0.625rem;
  border-radius: 1.25rem;
  background: rgba(235, 235, 240, 0.3);
  border: 1px solid rgba(191, 204, 229, 0.25);
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1a26;
  white-space: nowrap;
  overflow: hidden;
}
.mz-footer-menu__product-card-desc {
  position: relative;
  font-size: 0.875rem;
  font-weight: 400;
  color: #8c8c99;
  line-height: 1.25rem;
  width: 14.5625rem;
}
.mz-footer-menu__product-card-cta {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgb(255, 45, 0) 0%, rgb(255, 132, 0) 100%);
  box-shadow: 0 0.125rem 0.5rem rgba(255, 45, 0, 0.25);
  white-space: nowrap;
  text-decoration: none;
  align-self: flex-start;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.mz-footer-menu__product-card-cta:hover {
  box-shadow: 0 0.25rem 0.75rem rgba(255, 45, 0, 0.4);
  transform: translateY(-1px);
}
.mz-footer-menu__links-area {
  display: flex;
  flex: 1;
  justify-content: space-between;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  align-self: stretch;
}
.mz-footer-menu__links-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  flex-shrink: 0;
  overflow: hidden;
}
.mz-footer-menu__links-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.mz-footer-menu__links-heading {
  display: flex;
  align-items: flex-start;
  padding: 0.375rem 0.75rem;
  background: #f0ebe0;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgb(230, 115, 0);
  white-space: nowrap;
  overflow: hidden;
}
.mz-footer-menu__links-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
}
.mz-footer-menu__link {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #4d4d61;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}
.mz-footer-menu__link::before {
  content: "–";
  opacity: 0;
  margin-right: 0;
  transition: opacity 0.2s, margin-right 0.2s;
}
.mz-footer-menu__link:hover {
  color: rgb(230, 115, 0);
}
.mz-footer-menu__link:hover::before {
  opacity: 1;
  margin-right: 0.25rem;
}
.mz-footer-menu__link[target=_blank]::after {
  content: " ↗";
}
.mz-footer-menu__sub-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
}
.mz-footer-menu__sub-links.is-open .mz-footer-menu__link-arrow {
  transform: rotate(180deg);
}
.mz-footer-menu__sub-links--static .mz-footer-menu__sub-link {
  display: flex;
}
.mz-footer-menu__sub-links--static .mz-footer-menu__link-arrow {
  display: none;
}
.mz-footer-menu__link-dropdown {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  overflow: hidden;
  color: #4d4d61;
  white-space: nowrap;
  cursor: pointer;
}
.mz-footer-menu__link-arrow {
  font-size: 0.625rem;
  transition: transform 0.2s;
}
.mz-footer-menu__sub-link {
  display: flex;
  gap: 0.375rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #8c8c99;
  text-decoration: none;
  transition: color 0.2s;
}
.mz-footer-menu__sub-link:hover {
  color: rgb(230, 115, 0);
}
.mz-footer-menu__sub-link-arrow {
  font-size: 0.6875rem;
}
.mz-footer-menu__divider {
  width: 100%;
  height: 1px;
  background: #d9d9e0;
  flex-shrink: 0;
}
.mz-footer-menu__general-footer {
  background: #f6f6f9;
  width: 100%;
  overflow: hidden;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.mz-footer-menu__general-footer > .mz-footer-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mz-footer-menu__top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
}
.mz-footer-menu__logo-social {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mz-footer-menu__mazrica-logo {
  width: 12.6875rem;
  height: 2.875rem;
  object-fit: cover;
}
.mz-footer-menu__nav {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  overflow: hidden;
  flex-wrap: wrap;
}
.mz-footer-menu__nav-link {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 1rem;
  border: 1px solid #d9d9e0;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #4d4d61;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.2s;
}
.mz-footer-menu__nav-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.mz-footer-menu__nav-link[target=_blank]::after {
  content: " ↗";
}
.mz-footer-menu__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
}
.mz-footer-menu__ext-language {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  overflow: hidden;
}
.mz-footer-menu__ext-links {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  overflow: hidden;
  flex-wrap: wrap;
}
.mz-footer-menu__ext-link {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 1rem;
  border: 1px solid #d9d9e0;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #4d4d61;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.2s;
}
.mz-footer-menu__ext-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.mz-footer-menu__ext-link[target=_blank]::after {
  content: " ↗";
}
.mz-footer-menu__language-social {
  display: flex;
  gap: 1rem;
  align-items: center;
  overflow: hidden;
}
.mz-footer-menu__language {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  overflow: hidden;
}
.mz-footer-menu__lang-btn {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 1rem;
  border: 1px solid #d9d9e0;
  border-radius: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #4d4d61;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.2s;
}
.mz-footer-menu__lang-btn--active {
  background: #f0ebe0;
  border-color: #1a1a26;
  color: #1a1a26;
}
.mz-footer-menu__social-icons {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  overflow: hidden;
}
.mz-footer-menu__social-icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  overflow: hidden;
  transition: opacity 0.2s;
}
.mz-footer-menu__social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mz-footer-menu__social-icon:hover {
  opacity: 0.7;
}
.mz-footer-menu__social-icon--x {
  width: 1.5rem;
  height: 1.5rem;
}
.mz-footer-menu__certs {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  overflow: hidden;
}
.mz-footer-menu__cert {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.375rem;
  padding: 0.375rem;
  border: 1px solid #d9d9e0;
  border-radius: 0.125rem;
  background: #f6f6f9;
  overflow: hidden;
}
.mz-footer-menu__cert img {
  max-height: 3.625rem;
  width: auto;
  object-fit: contain;
}
.mz-footer-menu__copyright-footer {
  background: #fff;
  width: 100%;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.mz-footer-menu__copyright-footer > .mz-footer-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.mz-footer-menu__legal {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}
.mz-footer-menu__legal-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #8c8c99;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.mz-footer-menu__legal-link:hover {
  opacity: 0.7;
}
.mz-footer-menu__legal-sep {
  color: #404052;
  font-size: 0.875rem;
}
.mz-footer-menu__powered {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  overflow: hidden;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #8c8c99;
  white-space: nowrap;
}
.mz-footer-menu__powered-logo {
  width: 4.6875rem;
  height: 1.0625rem;
  object-fit: cover;
}

@media only screen and (max-width: 1380px){
  .mz-header-menu__inner {
    padding: 1rem 1.5rem;
  }
  .mz-header-menu__btn--download, .mz-header-menu__btn--trial {
    width: 10.5rem;
  }
  .mz-header-menu__btn--cta {
    width: 14rem;
  }
  .mz-dropdown--fullwidth .mz-dropdown__wrap {
    padding: 2rem 3rem;
    gap: 2rem;
  }
  .mz-dropdown__products {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .mz-dropdown__branding {
    position: static;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0.5rem 0;
    align-items: center;
  }
  .mz-dropdown__branding-desc {
    display: none;
  }
  .mz-dropdown__branding-img {
    height: 2.5rem;
    width: auto;
  }
  .mz-dropdown__panel {
    width: 100%;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }
  .mz-dropdown__panel-col {
    width: auto;
    flex: 1;
  }
  .mz-dropdown__panel-col:first-child, .mz-dropdown__panel-col:last-child {
    width: auto;
  }
}

@media only screen and (max-width: 1279px){
  html {
    scroll-padding-top: 4rem;
  }
  .mz-header-menu__inner {
    padding: 0.75rem 1.25rem;
    height: 4rem;
  }
  .mz-header-menu__left {
    gap: 1.5rem;
  }
  .mz-header-menu__logo img {
    height: 2rem;
    width: 8.5rem;
  }
  .mz-header-menu__nav {
    gap: 0.5rem;
  }
  .mz-header-menu__nav-btn {
    font-size: 0.8125rem;
    padding: 0.5rem 0.375rem;
    height: 2.25rem;
  }
  .mz-header-menu__actions {
    gap: 0.75rem;
  }
  .mz-header-menu__link {
    height: 2.25rem;
    font-size: 0.8125rem;
    padding: 0.5rem 0.375rem;
  }
  .mz-header-menu__btn--download, .mz-header-menu__btn--trial {
    width: 9.5rem;
    font-size: 0.8125rem;
  }
  .mz-header-menu__btn--cta {
    width: 13rem;
    font-size: 0.8125rem;
    padding-left: 2rem;
  }
  .mz-header-menu__search-bar {
    padding: 0.75rem 1.25rem;
  }
  .mz-dropdown--fullwidth .mz-dropdown__wrap {
    padding: 1.5rem 2rem;
    gap: 1.5rem;
  }
  .mz-dropdown__products {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .mz-dropdown__branding {
    position: static;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0.5rem 0;
    align-items: center;
  }
  .mz-dropdown__branding-desc {
    display: none;
  }
  .mz-dropdown__branding-img {
    height: 2.5rem;
    width: auto;
  }
  .mz-dropdown__panel {
    width: 100%;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
  .mz-dropdown__panel-col {
    width: auto;
    flex: 1;
    gap: 0.75rem;
  }
  .mz-dropdown__panel-col:first-child, .mz-dropdown__panel-col:last-child {
    width: auto;
  }
  .mz-dropdown__packs-row {
    gap: 0.5rem;
  }
  .mz-dropdown__pack {
    gap: 1rem;
    padding: 1.5rem 1rem 1rem;
  }
  .mz-dropdown__pack-title {
    font-size: 1rem;
  }
  .mz-product-header__inner {
    height: auto;
    min-height: 3.5rem;
    padding: 0.75rem 2rem;
  }
  .mz-product-header__logo img {
    height: 2.25rem;
  }
  .mz-product-header__info {
    display: none;
  }
  .mz-product-header__right {
    gap: 0.75rem;
  }
  .mz-pt-megamenu__wrap {
    padding: 1.25rem 1.5rem;
    max-width: calc(100vw - 3rem);
  }
  .mz-pt-megamenu__col {
    padding: 0 1rem;
  }
  .mz-footer-menu__inner {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media only screen and (max-width: 1150px){
  .mz-header-menu__left {
    gap: 1rem;
  }
  .mz-header-menu__link {
    display: none;
  }
  .mz-header-menu__btn--download, .mz-header-menu__btn--trial {
    width: auto;
    padding: 0.5rem 1rem;
    height: 2.25rem;
    font-size: 0.8125rem;
  }
  .mz-header-menu__btn--cta {
    width: auto;
    padding: 0.5rem 1rem;
    height: 2.25rem;
    font-size: 0.8125rem;
    justify-content: center;
  }
  .mz-header-menu__btn-icon {
    display: none;
  }
  .mz-header-menu__btn-arrow {
    display: none;
  }
  .mz-header-menu__search {
    display: none;
  }
}

@media only screen and (max-width: 1149px){
  .mz-footer-menu__content-row {
    flex-direction: column;
    gap: 2rem;
  }
  .mz-footer-menu__product-card {
    width: 100%;
    max-width: 18.75rem;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1023px){
  html {
    scroll-padding-top: 3.5rem;
  }
  .mz-promo-bottom {
    display: none;
  }
  body:has([data-widget-state=closed][data-widget-placement=center]) .mz-footer-menu__copyright-footer {
    padding-bottom: 5.5rem;
  }
  .mz-breadcrumb {
    padding: 0.5rem 1.25rem;
  }
  .mz-header-menu__inner {
    height: 3.5rem;
    padding: 0.5rem 1rem;
  }
  .mz-header-menu__logo img {
    height: 1.75rem;
    width: 7.5rem;
  }
  .mz-header-menu__nav {
    gap: 0.25rem;
  }
  .mz-header-menu__nav-btn {
    padding: 0.375rem 0.25rem;
    height: 2rem;
  }
  .mz-header-menu__right {
    gap: 0.5rem;
  }
  .mz-header-menu__actions {
    gap: 0.5rem;
  }
  .mz-header-menu__btn--download, .mz-header-menu__btn--trial {
    padding: 0.5rem 0.75rem;
    height: 2rem;
    font-size: 0.6875rem;
  }
  .mz-header-menu__btn--cta {
    padding: 0.5rem 0.75rem;
    height: 2rem;
    font-size: 0.75rem;
  }
  .mz-header-menu__search-bar {
    padding: 0.625rem 1rem;
  }
  .mz-dropdown--fullwidth .mz-dropdown__wrap {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .mz-dropdown__products {
    flex-direction: column;
    align-items: stretch;
  }
  .mz-dropdown__branding {
    position: static;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.25rem 0;
    align-items: center;
  }
  .mz-dropdown__branding-img {
    height: 2rem;
  }
  .mz-dropdown__panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 0.75rem;
    gap: 0.75rem;
  }
  .mz-dropdown__panel-col {
    width: auto;
    gap: 0.5rem;
  }
  .mz-dropdown__panel-col:first-child, .mz-dropdown__panel-col:last-child {
    width: auto;
  }
  .mz-dropdown__product {
    height: auto;
    padding: 0.75rem;
  }
  .mz-dropdown__product-logo {
    width: 5.5rem;
  }
  .mz-dropdown__product-logo img {
    width: 4.5rem;
    height: 1.75rem;
  }
  .mz-dropdown__connect {
    height: auto;
    gap: 0.375rem;
  }
  .mz-dropdown__connect-cards {
    gap: 0.375rem;
  }
  .mz-dropdown__connect-card {
    height: auto;
    min-height: 2.25rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
  }
  .mz-dropdown__packs {
    gap: 1.5rem;
  }
  .mz-dropdown__packs-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.5rem;
    row-gap: 1.5rem;
  }
  .mz-dropdown__pack {
    flex: 0 0 calc(50% - 0.25rem);
    gap: 1rem;
    padding: 1.5rem 1rem 1rem;
    box-shadow: none;
  }
  .mz-product-header__inner {
    padding: 0.75rem 1.25rem;
  }
  .mz-product-header__right {
    gap: 0.5rem;
  }
  .mz-product-header__link {
    padding: 0.5rem 0.375rem;
    font-size: 0.8125rem;
  }
  .mz-pt-dropdown__link-item {
    font-size: 0.8125rem;
  }
  .mz-pt-dropdown__link-item--has-sub {
    font-size: 0.8125rem;
  }
  .mz-pt-dropdown__link-subitem {
    font-size: 0.8125rem;
  }
  .mz-pt-megamenu__wrap {
    padding: 1rem 1.25rem;
    max-width: calc(100vw - 2.5rem);
  }
  .mz-pt-megamenu__col {
    padding: 0 0.75rem;
  }
  .mz-pt-megamenu__heading {
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
  }
  .mz-pt-megamenu__heading--sub {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
  }
  .mz-pt-megamenu__link {
    padding: 0.375rem 0;
    font-size: 0.8125rem;
  }
  .mz-pt-megamenu__cta {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
  }
  .mz-pt-megamenu__subtitle {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    font-size: 0.8125rem;
  }
  .mz-footer-menu__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .mz-footer-menu__product-footer {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .mz-footer-menu__product-title {
    font-size: 1.25rem;
  }
  .mz-footer-menu__product-card-desc {
    width: auto;
  }
  .mz-footer-menu__links-area {
    flex-wrap: wrap;
    gap: 0;
  }
  .mz-footer-menu__general-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .mz-footer-menu__top-bar {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .mz-footer-menu__bottom-bar {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .mz-footer-menu__certs {
    align-self: flex-end;
  }
}

@media only screen and (max-width: 991px){
  .mz-motion {
    opacity: 1;
    transform: none;
  }
  .mz-motion.mz-motion-down {
    transform: none;
  }
  .mz-motion.mz-motion-right {
    transform: none;
  }
  .mz-motion.mz-motion-left {
    transform: none;
  }
  .mz-motion.mz-motion-zoomin {
    transform: none;
  }
  .mz-motion.mz-motion-zoomout {
    transform: none;
  }
  .mz-header-menu__actions {
    gap: 0.375rem;
  }
  .mz-header-menu__btn--download, .mz-header-menu__btn--trial {
    padding: 0.5rem 0.5rem;
  }
  .mz-header-menu__btn--cta {
    padding: 0.5rem 0.5rem;
  }
  .mz-dropdown__panel {
    grid-template-columns: 1fr;
    padding: 0;
    border: none;
  }
  .mz-dropdown__product {
    box-shadow: none;
    border: 1px solid rgba(1, 0, 54, 0.1);
  }
}

@media only screen and (max-width: 767px){
  .mz-mobile-menu {
    display: block;
  }
  html {
    background-color: #fff;
  }
  body:has(.mz-mobile-menu__bar) {
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }
  html {
    scroll-padding-top: 0;
  }
  body {
    line-break: strict;
    overflow-wrap: anywhere;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline;
  }
  p,
  ul,
  ol,
  li,
  span {
    line-height: 1.8 !important;
  }
  .mz-promo-top {
    display: none;
  }
  .mz-promo-top__inner {
    flex-wrap: wrap;
    padding-right: 2.25rem;
    gap: 0.5rem;
  }
  .mz-promo-top__text {
    font-size: 0.875rem;
  }
  .mz-promo-top__btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }
  .mz-promo-top__close {
    right: 0.9rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .mz-promo-bottom__header {
    padding: 0.625rem 0.75rem 0;
  }
  .mz-promo-bottom__body {
    padding: 0.375rem 0.75rem 0.75rem;
  }
  .mz-promo-bottom__text {
    margin-bottom: 0.5rem;
  }
  .mz-promo-bottom__btn {
    padding: 0.5rem 0.75rem;
  }
  body:has([data-widget-state=closed][data-widget-placement=center]) .mz-footer-menu__copyright-footer {
    padding-bottom: 5rem;
  }
  .mz-breadcrumb {
    padding: 0.5rem 1rem;
  }
  .mz-header-menu--menu-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .mz-header-menu--menu-open::before {
    content: none;
  }
  .mz-header-menu__inner {
    height: 3.5rem;
    padding: 0.5rem 1rem;
  }
  .mz-header-menu--menu-open .mz-header-menu__inner {
    flex-shrink: 0;
    order: 1;
    width: 100%;
  }
  .mz-header-menu__logo img {
    height: 2rem;
    width: 7.5rem;
  }
  .mz-header-menu__nav {
    display: none;
  }
  .mz-header-menu__right {
    display: none;
  }
  .mz-header-menu__btn-arrow {
    display: flex;
  }
  .mz-header-menu__search {
    display: flex;
  }
  .mz-header-menu__mobile-trial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    padding: 0 0.75rem;
    margin-left: auto;
    margin-right: 0.5rem;
    background: linear-gradient(87deg, #ff0000 0%, #ff7c00 100%);
    border: 1px solid transparent;
    border-radius: 1.25rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
  }
  .mz-header-menu__hamburger {
    display: flex;
  }
  .mz-header-menu--menu-open .mz-header-menu__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    order: 2;
    background-color: #f8f8fa;
    border-top: 1px solid rgba(1, 0, 54, 0.08);
  }
  .mz-header-menu__overlay-nav {
    max-width: 100%;
    gap: 0.375rem;
  }
  .mz-header-menu__overlay-link {
    height: 3rem;
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 0.625rem;
    justify-content: space-between;
    padding: 0 1rem;
  }
  .mz-header-menu__overlay-link:hover {
    box-shadow: none;
  }
  .mz-header-menu__overlay-link:not(.mz-header-menu__overlay-link--accordion)::after {
    content: "";
    display: flex;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: #111111 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath d='M1 1l4 4-4 4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/0.25rem no-repeat;
  }
  .mz-header-menu__overlay-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #111111;
    transition: transform 0.3s ease;
  }
  .mz-header-menu__overlay-arrow::after {
    content: "";
    display: block;
    width: 0.3125rem;
    height: 0.3125rem;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(135deg);
    margin-top: -0.125rem;
  }
  .is-expanded .mz-header-menu__overlay-arrow {
    transform: rotate(180deg);
  }
  .mz-header-menu__overlay-link--accordion {
    justify-content: space-between;
    padding: 0 1rem;
  }
  .mz-header-menu__overlay-actions {
    gap: 0.375rem;
  }
  .mz-header-menu__overlay-actions .mz-header-menu__link {
    height: 3rem;
    font-size: 0.875rem;
    border-radius: 0.625rem;
    justify-content: space-between;
    padding: 0 1rem;
  }
  .mz-header-menu__overlay-actions .mz-header-menu__link:hover {
    box-shadow: none;
  }
  .mz-header-menu__overlay-actions .mz-header-menu__link::after {
    content: "";
    display: flex;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: #111111 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath d='M1 1l4 4-4 4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/0.25rem no-repeat;
  }
  .mz-header-menu__overlay-actions .mz-header-menu__btn--download,
  .mz-header-menu__overlay-actions .mz-header-menu__btn--trial {
    height: 3rem;
    font-size: 0.875rem;
    border-radius: 0.625rem;
    justify-content: space-between;
    padding: 0 1rem;
  }
  .mz-header-menu__overlay-actions .mz-header-menu__btn--download:hover,
  .mz-header-menu__overlay-actions .mz-header-menu__btn--trial:hover {
    box-shadow: none;
  }
  .mz-header-menu__overlay-actions .mz-header-menu__btn--download::after,
  .mz-header-menu__overlay-actions .mz-header-menu__btn--trial::after {
    content: "";
    display: flex;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: #111111 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath d='M1 1l4 4-4 4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/0.25rem no-repeat;
  }
  .mz-header-menu__overlay-btn-row {
    gap: 0.375rem;
  }
  .mz-header-menu__overlay > .mz-header-menu__btn--cta {
    height: 3.25rem;
    font-size: 0.875rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.1875rem 0.75rem rgba(255, 45, 0, 0.2);
    justify-content: space-between;
    padding: 0 1rem;
  }
  .mz-header-menu__overlay > .mz-header-menu__btn--cta .mz-header-menu__btn-arrow {
    width: 1rem;
    height: 1rem;
  }
  .mz-header-menu__overlay > .mz-header-menu__btn--cta .mz-header-menu__btn-arrow svg {
    width: 0.4rem;
    height: 0.4rem;
  }
  .mz-header-menu--menu-open .mz-header-menu__overlay-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    height: 3rem;
    background-color: #fff;
    border: 1px solid rgba(1, 0, 54, 0.08);
    border-radius: 0.625rem;
    box-shadow: 0 0.125rem 0.375rem rgba(1, 0, 54, 0.06);
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }
  .mz-header-menu--menu-open .mz-header-menu__overlay-search:hover {
    background-color: rgba(1, 0, 54, 0.02);
    box-shadow: none;
  }
  .mz-header-menu__overlay-search-label {
    font-size: 0.875rem;
  }
  .mz-header-menu__search-bar {
    padding: 0.5rem 1rem;
  }
  .mz-header-menu__search-bar-inner {
    height: 2.75rem;
  }
  .mz-header-menu__search-input {
    font-size: 0.8125rem;
    padding: 0 0.75rem;
  }
  .mz-dropdown {
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
    background-color: #f8f8fa;
  }
  .mz-header-menu--menu-open .mz-dropdown {
    display: none;
    position: static;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border-top: 0;
    width: 100%;
  }
  .mz-header-menu--menu-open .mz-dropdown.is-expanded {
    display: block;
  }
  .mz-dropdown--fullwidth .mz-dropdown__wrap {
    gap: 1.25rem;
  }
  .mz-dropdown--positioned {
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    border-radius: 0;
  }
  .mz-header-menu--menu-open .mz-dropdown--positioned {
    width: 100%;
  }
  .mz-dropdown--positioned .mz-dropdown__wrap {
    padding: 0;
    width: 100%;
  }
  .mz-dropdown__product:hover .mz-dropdown__product-arrow, .mz-dropdown__connect-card:hover .mz-dropdown__product-arrow {
    animation: none;
  }
  a:hover > .mz-dropdown__arrow-icon, .mz-dropdown__branding-link:hover .mz-dropdown__arrow-icon, .mz-dropdown__pack-link:hover .mz-dropdown__arrow-icon {
    animation: none;
  }
  .mz-dropdown__branding {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    background-color: #f8f8fa;
  }
  .mz-dropdown__branding-img {
    height: 1.75rem;
  }
  .mz-dropdown__branding-link {
    font-size: 0.75rem;
    height: 2.25rem;
    padding: 0 0.75rem;
  }
  .mz-dropdown__panel {
    padding: 0.625rem;
    gap: 0.5rem;
  }
  .mz-dropdown__panel-col {
    width: 100%;
    gap: 0.5rem;
  }
  .mz-dropdown__panel-col:first-child, .mz-dropdown__panel-col:last-child {
    width: 100%;
  }
  .mz-dropdown__product {
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    gap: 0.375rem;
    border-radius: 0.75rem;
  }
  .mz-dropdown__product-logo {
    width: auto;
  }
  .mz-dropdown__product-logo img {
    width: auto;
    height: 2rem;
  }
  .mz-dropdown__product-info {
    align-items: center;
    text-align: center;
    gap: 0.25rem;
  }
  .mz-dropdown__product-tag {
    font-size: 0.625rem;
    height: auto;
    padding: 0.125rem 0.375rem;
  }
  .mz-dropdown__product-title {
    font-size: 0.75rem;
    white-space: normal;
  }
  .mz-dropdown__product-desc {
    font-size: 0.6875rem;
  }
  .mz-dropdown__connect {
    gap: 0.5rem;
  }
  .mz-dropdown__connect-header {
    flex-direction: column;
  }
  .mz-dropdown__connect-label {
    font-size: 0.6875rem;
    border-radius: 0.3125rem;
    height: auto;
    padding: 0.1875rem 0.375rem;
  }
  .mz-dropdown__connect-desc {
    font-size: 0.75rem;
  }
  .mz-dropdown__connect-cards {
    flex-direction: column;
    gap: 0.5rem;
  }
  .mz-dropdown__connect-card {
    padding: 0.625rem;
    min-height: 2.5rem;
    border-radius: 1rem;
    box-shadow: none;
    border: 1px solid rgba(1, 0, 54, 0.08);
  }
  .mz-dropdown__connect-card img {
    height: 2rem;
  }
  .mz-dropdown__products--standard .mz-dropdown__panel {
    padding: 0;
  }
  .mz-dropdown__products--standard .mz-dropdown__panel-col {
    width: 100%;
  }
  .mz-dropdown__products--standard .mz-dropdown__panel-col:first-child, .mz-dropdown__products--standard .mz-dropdown__panel-col:last-child {
    width: 100%;
  }
  .mz-dropdown__packs {
    gap: 2rem;
  }
  .mz-dropdown__packs-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .mz-dropdown__pack {
    flex: 1 1 100%;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem 0.75rem;
  }
  .mz-dropdown__pack-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    font-size: 0.875rem;
    height: auto;
    padding: 0.25rem 0.125rem;
  }
  .mz-dropdown__pack-title {
    font-size: 0.9375rem;
  }
  .mz-dropdown__pack-desc {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .mz-dropdown__pack-logos {
    height: 2rem;
  }
  .mz-dropdown__pack-logos img {
    height: 2rem;
  }
  .mz-dropdown__pack-link {
    font-size: 0.75rem;
    height: 2rem;
    padding: 0 0.75rem;
  }
  .mz-dropdown__link-list {
    max-width: 100%;
  }
  .mz-dropdown__link-item {
    padding: 0.625rem 0.375rem;
  }
  .mz-dropdown__link-sublist {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0.625rem 0;
    display: none;
    background-color: #f8f8fa;
    border-bottom: none;
  }
  .mz-dropdown__link-group:hover .mz-dropdown__link-sublist {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .is-expanded + .mz-dropdown__link-sublist {
    display: flex;
  }
  .mz-dropdown--positioned .mz-dropdown__link-group:hover .mz-dropdown__product-arrow,
  .mz-dropdown--positioned .mz-dropdown__link-item--has-sub .mz-dropdown__product-arrow {
    transform: rotate(90deg);
    color: rgba(1, 0, 54, 0.3);
  }
  .mz-dropdown--positioned .mz-dropdown__link-item--has-sub.is-expanded .mz-dropdown__product-arrow {
    transform: rotate(-90deg);
    color: #f24f16;
  }
  .mz-product-header {
    display: none;
  }
  .mz-product-header__inner {
    padding: 0.5rem 1rem;
  }
  .mz-product-header__logo img {
    height: 2rem;
  }
  .mz-product-header__right {
    display: none;
  }
  .mz-pt-dropdown {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
    background: transparent;
  }
  .mz-pt-dropdown.is-active {
    display: block;
  }
  .mz-pt-dropdown__wrap {
    padding: 0.25rem 0 0.25rem 1rem;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    width: 100%;
  }
  .mz-pt-dropdown__link-item {
    padding: 0.625rem 0.375rem;
  }
  .mz-pt-dropdown__link-sublist {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0.25rem 0.75rem;
    display: none;
    background-color: transparent;
  }
  .mz-pt-dropdown__link-group:hover .mz-pt-dropdown__link-sublist {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .mz-pt-dropdown__link-item--has-sub.is-expanded + .mz-pt-dropdown__link-sublist {
    display: flex;
  }
  .mz-pt-dropdown__link-group:hover .mz-pt-dropdown__arrow,
  .mz-pt-dropdown__link-item--has-sub .mz-pt-dropdown__arrow {
    transform: rotate(90deg);
    color: rgba(1, 0, 54, 0.3);
  }
  .mz-pt-dropdown__link-item--has-sub.is-expanded .mz-pt-dropdown__arrow {
    transform: rotate(-90deg);
    color: rgb(230, 115, 0);
  }
  .mz-pt-megamenu {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
    background: transparent;
  }
  .mz-pt-megamenu.is-active {
    display: block;
  }
  .mz-pt-megamenu__wrap {
    border-radius: 0;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    max-width: none;
    background: transparent;
  }
  .mz-pt-megamenu__grid {
    grid-template-columns: 1fr;
  }
  .mz-pt-megamenu__col {
    padding: 0.75rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(1, 0, 54, 0.08);
  }
  .mz-pt-megamenu__col:first-child {
    padding-left: 0;
  }
  .mz-pt-megamenu__col:last-child {
    padding-right: 0;
    border-bottom: none;
  }
  .mz-footer-menu__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .mz-footer-menu__product-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .mz-footer-menu__product-footer > .mz-footer-menu__inner {
    gap: 1.5rem;
  }
  .mz-footer-menu__product-title {
    font-size: 1.125rem;
    white-space: normal;
    line-height: 1.8;
  }
  .mz-footer-menu__content-row {
    gap: 0.5rem;
  }
  .mz-footer-menu__product-card {
    max-width: 100%;
    box-shadow: none;
  }
  .mz-footer-menu__links-area {
    flex-direction: column;
    gap: 0.5rem;
  }
  .mz-footer-menu__links-column {
    width: 100%;
    gap: 0.5rem;
  }
  .mz-footer-menu__links-group {
    width: 100%;
    gap: 0;
  }
  .mz-footer-menu__links-heading {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    background: #fff;
    border: 1px solid rgba(1, 0, 54, 0.08);
    border-radius: 0.625rem;
    box-shadow: 0 0.125rem 0.375rem rgba(1, 0, 54, 0.06);
    font-size: 0.875rem;
    font-weight: 400;
    color: #111111;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-sizing: border-box;
  }
  .mz-footer-menu__links-heading::after {
    content: "";
    display: flex;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #111111;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: center;
    background-size: 0.5rem;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
  }
  .mz-footer-menu__links-heading.is-open::after {
    transform: rotate(180deg);
  }
  .mz-footer-menu__links-list {
    padding: 0.75rem 1rem 1rem;
  }
  .mz-footer-menu__sub-link {
    padding-left: 0.625rem;
  }
  .mz-footer-menu__divider--first {
    display: none;
  }
  .mz-footer-menu__general-footer {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
  .mz-footer-menu__general-footer > .mz-footer-menu__inner {
    gap: 0.75rem;
  }
  .mz-footer-menu__mazrica-logo {
    width: 10rem;
    height: auto;
  }
  .mz-footer-menu__ext-language {
    width: 100%;
  }
  .mz-footer-menu__language-social {
    width: 100%;
    justify-content: space-between;
  }
  .mz-footer-menu__certs {
    align-self: flex-start;
  }
  .mz-footer-menu__copyright-footer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .mz-footer-menu__legal {
    line-height: 1.8;
  }
  .mz-footer-menu__powered {
    white-space: normal;
    flex-wrap: wrap;
    gap: 0.3125rem;
    justify-content: center;
  }
  .mz-footer-menu__powered-sep {
    flex-basis: 100%;
    height: 0;
    overflow: hidden;
  }
}

@media only screen and (max-width: 640px){
  body:has([data-widget-state=closed][data-widget-placement=center]) .mastra-justify-center {
    bottom: calc(4rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media only screen and (max-width: 480px){
  .mz-header-menu--menu-open .mz-header-menu__overlay {
    padding: 1.25rem 0.75rem;
    gap: 0.375rem;
  }
  .mz-header-menu__overlay-actions {
    gap: 0.375rem;
  }
  .mz-header-menu__overlay > .mz-header-menu__btn--cta {
    height: 3rem;
  }
  .mz-dropdown--fullwidth .mz-dropdown__wrap {
    padding: 0.75rem 0.5rem;
    gap: 1rem;
  }
}

@media only screen and (max-width: 400px){
  br {
    display: none !important;
  }
}
