/*
 * Root-layout chrome that lives in FOOTER_HTML (sticky CTAs + 大型 CTA).
 * Those rules used to ship only in _inline.css / _inline-home.css via FaithfulPage,
 * so CMS / consulting / form pages rendered the footer as a full-width static bar.
 * Keep url() relative to /assets/ (same folder as _inline.css).
 */
.bl_stickyBtns {
  bottom: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  position: fixed;
  right: 30px;
  z-index: 3;
}
.bl_stickyBtns > li {
  min-width: 270px;
}
.bl_stickyBtns_btn {
  align-items: center;
  background-color: #4db9c0;
  border: 2px solid #fff;
  border-radius: 100px;
  color: #fff;
  display: flex;
  font-family: Zen Kaku Gothic New, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  justify-content: space-between;
  padding: 7px 32px;
  text-decoration: none;
  width: 100%;
}
.bl_stickyBtns_btn:focus {
  filter: brightness(1.2);
}
@media screen and (max-width: 768px) {
  .bl_stickyBtns {
    border-top: 1px solid #fff;
    bottom: 0;
    gap: 0;
    left: 0;
    right: auto;
    width: 100%;
  }
  .bl_stickyBtns > li {
    flex: 1;
    min-width: auto;
  }
  .bl_stickyBtns > li + li {
    border-left: 1px solid #fff;
  }
  .bl_stickyBtns_btn {
    border: none;
    border-radius: 0;
    font-size: 0.8125rem;
    min-height: 47px;
    padding-inline: 20px;
  }
}
@media (hover) {
  .bl_stickyBtns_btn:hover {
    filter: brightness(1.2);
  }
}

.bl_ctaSection {
  background-color: #c62825;
  min-height: 431px;
  overflow: hidden;
  padding-bottom: 70px;
  position: relative;
}
.bl_ctaSection_bgImg {
  opacity: 0.3;
  position: absolute;
  top: 50px;
}
.bl_ctaSection_bgImg:after,
.bl_ctaSection_bgImg:before {
  content: " ";
  left: 24px;
  line-height: 1;
  position: absolute;
  top: 0;
}
.bl_ctaSection_bgImg:before {
  animation: keyframe_marquee 60s linear infinite;
}
.bl_ctaSection_bgImg:after {
  animation: keyframe_marquee_invert 60s linear infinite;
  left: 48px;
}
@keyframes keyframe_marquee {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes keyframe_marquee_invert {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.bl_ctaSection_inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.bl_ctaSection_decorationText {
  display: flex;
  font-family: Poppins, sans-serif;
  font-size: clamp(4.5625rem, 9.5052083333vw, 10.0625rem);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: max(-1.4vw, -23px);
  text-transform: uppercase;
}
.bl_ctaSection_catchcopy {
  font-family: Zen Kaku Gothic New, sans-serif;
  font-size: clamp(1.75rem, 3.6458333333vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-top: 40px;
  text-align: center;
}
.bl_ctaSection_btns {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  margin-top: 57px;
  padding: 0;
}
.bl_ctaSection_btns > li {
  width: 385px;
}
@media screen and (max-width: 768px) {
  .bl_ctaSection {
    min-height: 485px;
    padding-bottom: 30px;
  }
  .bl_ctaSection_bgImg {
    top: 18px;
  }
  .bl_ctaSection_bgImg:after,
  .bl_ctaSection_bgImg:before {
    background-size: contain;
  }
  .bl_ctaSection_inner {
    max-width: 100%;
  }
  .bl_ctaSection_decorationText {
    font-weight: 600;
    justify-content: flex-start;
    margin-left: -24px;
    margin-right: 0;
    margin-top: -12px;
  }
  .bl_ctaSection_catchcopy {
    line-height: 1.5;
    margin-top: 20px;
    padding-left: 5px;
    text-align: left;
  }
  .bl_ctaSection_btns {
    flex-direction: column;
    gap: 15px;
  }
  .bl_ctaSection_btns > li {
    width: 100%;
  }
}
.bl_ctaSection_bgImg::before,
.bl_ctaSection_bgImg::after {
  background-image: image-set(
    url(e9258c94e652f0d4.avif) type("image/avif"),
    url(e9258c94e652f0d4.webp) type("image/webp")
  );
  width: 1600px;
  height: 180px;
}
@media screen and (max-width: 768px) {
  .bl_ctaSection_bgImg::before,
  .bl_ctaSection_bgImg::after {
    background-image: image-set(
      url(e9258c94e652f0d4-m.webp) type("image/webp"),
      url(e9258c94e652f0d4.webp) type("image/webp")
    );
    width: 900px;
    height: 101px;
  }
}
