:root {
  --LP_COLOR_WHITE: #fff;
  --LP_COLOR_WHITE_RGB: 255, 255, 255;
  --LP_COLOR_BLACK: #020202;
  --LP_COLOR_RED: #eb0032;
  --LP_DIVIDER_COLOR: #5c5c68;
  --LP_FONT_WEIGHT_REGULAR: 400;
  --LP_FONT_WEIGHT_SEMIBOLD: 600;
  --LP_FONT_WEIGHT_BOLD: 700;
  --LP_FRAME-THICKNESS: 4px;
  --LP_PRIMARY-ANIMATION_DELAY: 0.4s;
  --LP_PRIMARY-ANIMATION_DURATION: 0.7s;
  --LP_SECONDARY-ANIMATION_DELAY: var(--LP_PRIMARY-ANIMATION_DELAY) + var(--LP_PRIMARY-ANIMATION_DURATION);
  --LP_SECONDARY-ANIMATION_DURATION: 0.6s;
  --LP_TERTIARY-ANIMATION_DELAY: var(--LP_SECONDARY-ANIMATION_DELAY) + var(--LP_SECONDARY-ANIMATION_DURATION) + 0.4s;
  --LP_TERTIARY-ANIMATION_DURATION: 0.8s;
  --LP_QUATERNARY-ANIMATION_DELAY: var(--LP_TERTIARY-ANIMATION_DELAY) + var(--LP_TERTIARY-ANIMATION_DURATION) + 0.3s;
  --LP_QUATERNARY-ANIMATION_DURATION: 0.4s;
  --LP_QUINARY-ANIMATION_DELAY: var(--LP_QUATERNARY-ANIMATION_DELAY) + var(--LP_QUATERNARY-ANIMATION_DURATION) + 0.2s;
  --LP_QUINARY-ANIMATION_DURATION: 1s;
  --LP_ANIMATION_EASE_PRIMARY: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --LP_ANIMATION_EASE_SECONDARY: cubic-bezier(0.6, 0, 0.4, 1);
}

@media not screen and (max-width: 1023px) {
  .lp-media-image.of-animation-primary {
    animation: laser var(--LP_PRIMARY-ANIMATION_DURATION) var(--LP_PRIMARY-ANIMATION_DELAY) ease-in forwards;
    opacity: 0;
  }
  .lp-figureAnimation-image.of-animation-primary {
    animation: circle var(--LP_SECONDARY-ANIMATION_DURATION) calc(var(--LP_SECONDARY-ANIMATION_DELAY)) var(--LP_ANIMATION_EASE_PRIMARY) forwards;
    opacity: 0;
  }
  .lp-figureAnimation-focusFrame.of-animation-secondary::before {
    animation: draw-rect var(--LP_TERTIARY-ANIMATION_DURATION) calc(var(--LP_TERTIARY-ANIMATION_DELAY)) ease-in forwards;
    background-size: 0 var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 0, 0 var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 0;
  }
  .lp-figureAnimation-image.of-animation-tertiary {
    animation: fade-in var(--LP_QUATERNARY-ANIMATION_DURATION) calc(var(--LP_QUATERNARY-ANIMATION_DELAY)) ease-out forwards, fade-out var(--LP_QUINARY-ANIMATION_DURATION) calc(var(--LP_QUINARY-ANIMATION_DELAY)) var(--LP_ANIMATION_EASE_SECONDARY) forwards, scale-up var(--LP_QUINARY-ANIMATION_DURATION) calc(var(--LP_QUINARY-ANIMATION_DELAY)) var(--LP_ANIMATION_EASE_SECONDARY) both;
  }
  .lp-figureAnimation-image.of-animation-quaternary {
    animation: fade-in var(--LP_QUINARY-ANIMATION_DURATION) calc(var(--LP_QUINARY-ANIMATION_DELAY)) var(--LP_ANIMATION_EASE_SECONDARY) forwards, scale-up var(--LP_QUINARY-ANIMATION_DURATION) calc(var(--LP_QUINARY-ANIMATION_DELAY)) var(--LP_ANIMATION_EASE_SECONDARY) both;
  }
  .lp-figureAnimation-focusImage.of-animation-quinary {
    animation: move-down var(--LP_QUINARY-ANIMATION_DURATION) calc(var(--LP_QUINARY-ANIMATION_DELAY)) var(--LP_ANIMATION_EASE_SECONDARY) both;
  }
}
@keyframes laser {
  0% {
    clip-path: inset(0 0 55% 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes draw-rect {
  0% {
    background-size: 0 var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 0, 0 var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 0;
  }
  25% {
    background-size: 100% var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 0, 0 var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 0;
  }
  50% {
    background-size: 100% var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 100%, 0 var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 0;
  }
  75% {
    background-size: 100% var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 100%, 100% var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 0;
  }
  100% {
    background-size: 100% var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 100%, 100% var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 100%;
  }
}
@keyframes circle {
  0% {
    clip-path: circle(0 at 50% 20%);
    opacity: 1;
  }
  100% {
    clip-path: circle(100% at 50% 20%);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes move-down {
  0% {
    translate: -50% 0%;
  }
  100% {
    translate: -50% 148%;
  }
}
@keyframes scale-up {
  0% {
    scale: 0.635;
  }
  100% {
    scale: 1;
  }
}
.lp-layout-container.of-outermost {
  display: grid;
  position: relative;
  grid-template-rows: auto 1fr auto;
  height: 100vh;
  color: var(--LP_COLOR_WHITE);
}
@media only screen and (max-width: 1023px) {
  .lp-layout-container.of-outermost {
    height: auto;
    overflow: hidden;
  }
}
.lp-layout-container.of-outermost::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  grid-row: 1/3;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #3d3d3d 0%, #020202 100%);
}
@media only screen and (max-width: 1023px) {
  .lp-layout-container.of-outermost::before {
    background: linear-gradient(180deg, #3d3d3d 0%, #020202 99.51%);
  }
}

.lp-layout-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin-inline: auto;
  padding: 24px 80px;
  gap: 40px;
}
@media only screen and (max-width: 1919px) {
  .lp-layout-header-content {
    padding-right: calc(3.2rem + (1vw - 1.023rem) * (5.3511705686));
    padding-left: calc(3.2rem + (1vw - 1.023rem) * (5.3511705686));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-content {
    justify-content: center;
    padding: 20px;
  }
}
.lp-layout-header-logo {
  width: 100%;
  max-width: 149px;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (max-width: 1919px) {
  .lp-layout-header-logo {
    max-width: calc(12rem + (1vw - 1.023rem) * (3.2329988852));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-logo {
    max-width: 114px;
  }
}
.lp-layout-header-logo > a {
  display: block;
}
.lp-layout-header-logo > a img {
  width: 100%;
}
.lp-layout-header-utilityList {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.lp-layout-header-utilityList > li > *:last-child {
  margin-bottom: 0 !important;
}

.lp-layout-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-layout-footer {
  background-color: var(--LP_COLOR_BLACK);
}
.lp-layout-footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  margin-inline: auto;
  padding: 16px 80px;
  font-size: 1.2rem;
  gap: 16px;
}
@media only screen and (max-width: 1919px) {
  .lp-layout-footer-content {
    padding-right: calc(3.2rem + (1vw - 1.023rem) * (5.3511705686));
    padding-left: calc(3.2rem + (1vw - 1.023rem) * (5.3511705686));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-content {
    flex-direction: column;
    padding: 16px 20px;
  }
}
.lp-layout-footer-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
  gap: 12px 25px;
}
.lp-layout-footer-list > li > *:last-child {
  margin-bottom: 0 !important;
}
.lp-layout-footer-list > li > a {
  color: currentColor;
  text-decoration: none;
}
.lp-layout-footer-list > li > a:hover {
  text-decoration: underline;
}
.lp-layout-footer-list > li + li {
  position: relative;
}
.lp-layout-footer-list > li + li::before {
  content: "";
  position: absolute;
  left: -13px;
  width: 1px;
  height: 1lh;
  background-color: var(--LP_DIVIDER_COLOR);
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-list > li + li:last-child:before {
    content: none;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-copyright {
    width: 100%;
  }
}

.lp-jumbotron-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin-inline: auto;
  padding: 0 0 8px 80px;
  gap: 40px 72px;
}
.lp-jumbotron-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1919px) {
  .lp-jumbotron-content {
    padding-left: calc(0.8rem + (1vw - 1.023rem) * (8.0267558528));
    column-gap: max(0.8rem + (1vw - 1.023rem) * (7.1348940914), 8px);
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-content {
    flex-direction: column;
    padding: 8px max(2rem + (1vw - 0.36rem) * (33.1825037707), 20px) 40px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 929px) {
  .lp-jumbotron-content {
    padding-left: clamp(8px, 0.8rem + (1vh - 0.59rem) * (21.1764705882), 0.8rem + (1vw - 1.023rem) * (8.0267558528));
    column-gap: clamp(8px, 0.8rem + (1vh - 0.59rem) * (18.8235294118), 0.8rem + (1vw - 1.023rem) * (7.1348940914));
  }
}
.lp-jumbotron-content.of-paddingBottom-primary {
  padding-bottom: 16px;
}
.lp-jumbotron-body {
  flex: 1;
  max-width: 40%;
}
.lp-jumbotron-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-body {
    max-width: 100%;
  }
}
.lp-jumbotron-titleGroup {
  margin-bottom: 32px;
  font-weight: var(--LP_FONT_WEIGHT_SEMIBOLD);
  line-height: 1.2;
}
.lp-jumbotron-titleGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1919px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: calc(2.4rem + (1vw - 1.023rem) * (0.8918617614));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 929px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: clamp(16px, 1.6rem + (1vh - 0.59rem) * (4.7058823529), 1.6rem + (1vw - 1.023rem) * (1.7837235229));
  }
}
.lp-jumbotron-title {
  display: block;
  margin-bottom: 24px;
  font-size: 5.2rem;
}
@media only screen and (max-width: 1919px) {
  .lp-jumbotron-title {
    margin-bottom: calc(1.2rem + (1vw - 1.023rem) * (1.3377926421));
    font-size: calc(2.4rem + (1vw - 1.023rem) * (3.121516165));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-title {
    margin-bottom: max(0.8rem + (1vw - 0.36rem) * (1.2066365008));
    font-size: max(2.8rem + (1vw - 0.36rem) * (1.8099547511), 2.8rem);
  }
}
@media only screen and (min-width: 1024px) and (max-height: 929px) {
  .lp-jumbotron-title {
    margin-bottom: clamp(12px, 1.2rem + (1vh - 0.59rem) * (3.5294117647), 1.2rem + (1vw - 1.023rem) * (1.3377926421));
    font-size: clamp(2.4rem, 2.4rem + (1vh - 0.59rem) * (8.2352941176), 2.4rem + (1vw - 1.023rem) * (3.121516165));
  }
}
.lp-jumbotron-seriesGroup {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 2rem;
  gap: 4px;
}
.lp-jumbotron-seriesGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1919px) {
  .lp-jumbotron-seriesGroup {
    font-size: calc(1.4rem + (1vw - 1.023rem) * (0.6688963211));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-seriesGroup {
    font-size: max(1.8rem + (1vw - 0.36rem) * (0.3016591252), 1.8rem);
  }
}
@media only screen and (min-width: 1024px) and (max-height: 929px) {
  .lp-jumbotron-seriesGroup {
    font-size: clamp(1.4rem, 1.4rem + (1vh - 0.59rem) * (1.7647058824), 1.4rem + (1vw - 1.023rem) * (0.6688963211));
  }
}
.lp-jumbotron-series {
  display: flex;
  gap: 4px 16px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-series {
    column-gap: 4px;
  }
}
.lp-jumbotron-seriesName {
  display: block;
  font-weight: var(--LP_FONT_WEIGHT_REGULAR);
}
.lp-jumbotron-imageGroup {
  position: relative;
  width: 100%;
  max-width: 1152px;
  min-height: 760px;
}
@media only screen and (max-width: 1919px) {
  .lp-jumbotron-imageGroup {
    max-width: calc(61.4rem + (1vw - 1.023rem) * (59.977703456));
    min-height: max(40rem + (1vw - 1.023rem) * (40.1337792642));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-imageGroup {
    max-width: 100%;
    min-height: auto;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 929px) {
  .lp-jumbotron-imageGroup {
    max-width: clamp(614px, 61.4rem + (1vh - 0.59rem) * (158.2352941176), 61.4rem + (1vw - 1.023rem) * (59.977703456));
    min-height: clamp(400px, 40rem + (1vh - 0.59rem) * (105.8823529412), 40rem + (1vw - 1.023rem) * (40.1337792642));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-image {
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(0rem + (1vw - 0.36rem) * (36.1990950226));
  }
}

.lp-section.of-backgroundColor-primary {
  background-color: var(--LP_COLOR_BLACK);
}
.lp-section-content {
  max-width: 1920px;
  margin-inline: auto;
  padding: 80px;
}
.lp-section-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1919px) {
  .lp-section-content {
    padding-right: calc(3.2rem + (1vw - 1.023rem) * (5.3511705686));
    padding-left: calc(3.2rem + (1vw - 1.023rem) * (5.3511705686));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-section-content {
    padding: 24px max(2rem + (1vw - 0.36rem) * (33.1825037707), 20px);
  }
}

.lp-media {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-bottom: 40px;
  gap: 8px;
}
.lp-media-body > *:last-child {
  margin-bottom: 0 !important;
}
.lp-media-imageGroup {
  position: relative;
}
.lp-media-image {
  max-width: 340px;
}
@media only screen and (max-width: 1919px) {
  .lp-media-image {
    max-width: calc(17rem + (1vw - 1.023rem) * (18.9520624303));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-media-image {
    max-width: max(15.6rem + (1vw - 0.36rem) * (12.6696832579), 156px);
  }
}
@media only screen and (min-width: 1024px) and (max-height: 929px) {
  .lp-media-image {
    max-width: clamp(170px, 17rem + (1vh - 0.59rem) * (50), 17rem + (1vw - 1.023rem) * (18.9520624303));
  }
}
.lp-media-image.of-primary {
  display: block;
  position: absolute;
  top: 0;
}

.lp-figureAnimation {
  margin-bottom: 40px;
}
.lp-figureAnimation > *:last-child {
  margin-bottom: 0 !important;
}
.lp-figureAnimation-focusFrame {
  position: absolute;
  top: 4.2%;
  left: 50%;
  width: 413px;
  height: 258px;
  translate: -50% 0;
}
@media only screen and (max-width: 1919px) {
  .lp-figureAnimation-focusFrame {
    width: calc(22rem + (1vw - 1.023rem) * (21.5161649944));
    height: calc(13.7rem + (1vw - 1.023rem) * (13.4894091416));
  }
}
@media only screen and (min-width: 1024px) and (max-height: 929px) {
  .lp-figureAnimation-focusFrame {
    width: clamp(220px, 22rem + (1vh - 0.59rem) * (56.7647058824), 22rem + (1vw - 1.023rem) * (21.5161649944));
    height: clamp(137px, 13.7rem + (1vh - 0.59rem) * (35.5882352941), 13.7rem + (1vw - 1.023rem) * (13.4894091416));
  }
}
.lp-figureAnimation-focusFrame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--LP_COLOR_WHITE), var(--LP_COLOR_WHITE)) 0 0/0 var(--LP_FRAME-THICKNESS) no-repeat, linear-gradient(var(--LP_COLOR_WHITE), var(--LP_COLOR_WHITE)) 100% 0/var(--LP_FRAME-THICKNESS) 0 no-repeat, linear-gradient(var(--LP_COLOR_WHITE), var(--LP_COLOR_WHITE)) 100% 100%/0 var(--LP_FRAME-THICKNESS) no-repeat, linear-gradient(var(--LP_COLOR_WHITE), var(--LP_COLOR_WHITE)) 0 100%/var(--LP_FRAME-THICKNESS) 0 no-repeat;
  background-size: 100% var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 100%, 100% var(--LP_FRAME-THICKNESS), var(--LP_FRAME-THICKNESS) 100%;
}
.lp-figureAnimation-focusImage {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 656px;
  translate: -50% 0;
  height: 100%;
}
@media only screen and (max-width: 1919px) {
  .lp-figureAnimation-focusImage {
    width: calc(35.8rem + (1vw - 1.023rem) * (33.2218506132));
  }
}
@media only screen and (min-width: 1024px) and (max-height: 929px) {
  .lp-figureAnimation-focusImage {
    width: clamp(358px, 35.8rem + (1vh - 0.59rem) * (87.6470588235), 35.8rem + (1vw - 1.023rem) * (33.2218506132));
  }
}
.lp-figureAnimation-image.of-primary {
  position: absolute;
  padding: 8px;
  border: solid 1px var(--LP_COLOR_WHITE);
  background-color: rgba(var(--LP_COLOR_WHITE_RGB), 0.8);
  box-shadow: 0 var(--LP_FRAME-THICKNESS) 20px 0 var(--LP_COLOR_BLACK);
  translate: 0 70%;
}
.lp-figureAnimation-image.of-animation-tertiary, .lp-figureAnimation-image.of-animation-quaternary {
  top: 50%;
  transform-origin: center center;
  opacity: 0;
  translate: 0 -50%;
  scale: 0.635;
}

.lp-textPhoneLink {
  margin-bottom: 24px;
}
.lp-textPhoneLink > *:last-child {
  margin-bottom: 0 !important;
}
.lp-textPhoneLink-numberGroup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 2.4rem;
  font-weight: var(--LP_FONT_WEIGHT_SEMIBOLD);
  line-height: 1.5;
}
.lp-textPhoneLink-numberGroup > a,
.lp-textPhoneLink-numberGroup .AutoPhoneCall {
  color: currentColor;
  cursor: default;
}
.lp-textPhoneLink-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.lp-listButton {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 24px 16px;
}
@media only screen and (max-width: 1023px) {
  .lp-listButton {
    flex-direction: column;
    max-width: fit-content;
    margin-inline: auto;
    gap: 16px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 929px) {
  .lp-listButton {
    row-gap: clamp(16px, 1.6rem + (1vh - 0.59rem) * (2.3529411765), 1.6rem + (1vw - 1.023rem) * (0.8918617614));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-listButton.of-rowGap-primary {
    row-gap: max(1.6rem + (1vw - 1.023rem) * (2.3391812865), 16px);
  }
}
@media only screen and (max-width: 1023px) {
  .lp-listButton.lp-smallScreen-width-full {
    max-width: 100%;
  }
}
.lp-listButton > li > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .lp-listButton > li .lp-buttonConversion {
    width: 100%;
  }
}

.lp-buttonConversion {
  display: inline-block;
  max-width: 100%;
  background: #dc002f;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.2s;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 640px) {
  .lp-buttonConversion {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .lp-buttonConversion:hover {
    background-color: #c6002a;
  }
}
.lp-buttonConversion-body {
  display: flex;
  align-items: center;
  padding: 12px 8px 12px 24px;
}
@media only screen and (max-width: 640px) {
  .lp-buttonConversion-body {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.lp-buttonConversion-text {
  margin-right: 16px;
}
.lp-buttonConversion-image {
  margin: -22px 0;
  border: 1px solid #ccc;
}
.lp-buttonConversion-image > img {
  min-width: 42px;
  max-width: 60px;
}
.lp-buttonConversion.of-download .lp-buttonConversion-body, .lp-buttonConversion.of-anchor .lp-buttonConversion-body, .lp-buttonConversion.of-arrow .lp-buttonConversion-body, .lp-buttonConversion.of-inquiry .lp-buttonConversion-body {
  position: relative;
  padding-left: 53px;
}
.lp-buttonConversion.of-download .lp-buttonConversion-body::before, .lp-buttonConversion.of-anchor .lp-buttonConversion-body::before, .lp-buttonConversion.of-arrow .lp-buttonConversion-body::before, .lp-buttonConversion.of-inquiry .lp-buttonConversion-body::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 24px;
  width: 19px;
  height: 18px;
  transform: translateY(-50%);
  content: "";
}
.lp-buttonConversion.of-download .lp-buttonConversion-body::before {
  background: url("../../img/landing_page/common/icon_btn_dl.png") no-repeat center center;
}
.lp-buttonConversion.of-anchor .lp-buttonConversion-body::before {
  background: url("../../img/landing_page/common/icon_btn_anc_03.png") no-repeat center center;
}
.lp-buttonConversion.of-arrow .lp-buttonConversion-body::before {
  left: 26px;
  height: 12px;
  border-width: 7px 0 7px 13px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}
.lp-buttonConversion.of-inquiry .lp-buttonConversion-body::before {
  background: url("../../img/landing_page/common/icon_btn_inquiry_01.png") no-repeat center center;
}
.lp-buttonConversion.of-priceIcon .lp-buttonConversion-body, .lp-buttonConversion.of-priceIcon-jpy .lp-buttonConversion-body, .lp-buttonConversion.of-priceIcon-gbp .lp-buttonConversion-body, .lp-buttonConversion.of-priceIcon-krw .lp-buttonConversion-body, .lp-buttonConversion.of-priceIcon-eur .lp-buttonConversion-body {
  position: relative;
  padding-left: 53px;
}
.lp-buttonConversion.of-priceIcon .lp-buttonConversion-body::before, .lp-buttonConversion.of-priceIcon-jpy .lp-buttonConversion-body::before, .lp-buttonConversion.of-priceIcon-gbp .lp-buttonConversion-body::before, .lp-buttonConversion.of-priceIcon-krw .lp-buttonConversion-body::before, .lp-buttonConversion.of-priceIcon-eur .lp-buttonConversion-body::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 24px;
  width: 19px;
  height: 18px;
  transform: translateY(-50%);
  content: "";
}
.lp-buttonConversion.of-priceIcon .lp-buttonConversion-body::before {
  background: url("../../img/landing_page/common/icon_btn_price_usd.png") no-repeat center center;
}
.lp-buttonConversion.of-priceIcon-jpy .lp-buttonConversion-body::before {
  background: url("../../img/landing_page/common/icon_btn_price_jpy.png") no-repeat center center;
}
.lp-buttonConversion.of-priceIcon-gbp .lp-buttonConversion-body::before {
  background: url("../../img/landing_page/common/icon_btn_price_gbp.png") no-repeat center center;
}
.lp-buttonConversion.of-priceIcon-krw .lp-buttonConversion-body::before {
  background: url("../../img/landing_page/common/icon_btn_price_krw.png") no-repeat center center;
}
.lp-buttonConversion.of-priceIcon-eur .lp-buttonConversion-body::before {
  background: url("../../img/landing_page/common/icon_btn_price_eur.png") no-repeat center center;
}
.lp-buttonConversion.of-primary {
  background: #13778f;
}
@media (hover: hover) {
  .lp-buttonConversion.of-primary:hover {
    background-color: #116b81;
  }
}
.lp-buttonConversion.of-secondary {
  background: #0065bb;
}

.lp-navigationSeries {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1240px;
  margin: 20px auto;
  padding: 4px 10px;
  border: 2px solid #e5e5e5;
  color: #999;
}
div#MainContent .lp-navigationSeries {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media only screen and (max-width: 1279px) {
  .lp-navigationSeries {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 969px) {
  .lp-navigationSeries {
    flex-direction: column;
    align-items: center;
  }
}
.lp-navigationSeries-title {
  max-width: 600px;
  font-weight: normal;
  font-size: 1.1rem;
  line-height: 1.3;
}
@media only screen and (max-width: 969px) {
  .lp-navigationSeries-title {
    width: 100%;
    max-width: none;
    margin-bottom: 3px;
    text-align: center;
  }
}
.lp-navigationSeries-title + .lp-navigationSeries-linkList {
  margin-left: 10px;
}
@media only screen and (max-width: 969px) {
  .lp-navigationSeries-title + .lp-navigationSeries-linkList {
    margin-left: -10px;
  }
}
div#MainContent .lp-navigationSeries-title {
  margin-bottom: 0;
  color: #999;
  font-size: 11px;
  line-height: 1.3;
  text-transform: none;
}
div#MainContent .lp-navigationSeries-title + .lp-navigationSeries-linkList {
  margin-left: 10px;
}
@media only screen and (max-width: 969px) {
  .lp-navigationSeries-seriesNameText, .lp-navigationSeries-seriesText {
    display: block;
  }
}
.lp-navigationSeries-linkList {
  display: flex;
  flex-wrap: wrap;
  margin: -3px 0 0 -10px;
  color: #999;
}
div#MainContent .lp-navigationSeries-linkList {
  margin: -3px 0 0 -10px;
}
@media only screen and (max-width: 969px) {
  .lp-navigationSeries-linkList {
    justify-content: center;
    width: 100%;
  }
}
.lp-navigationSeries-linkList > li {
  display: flex;
  position: relative;
  margin-top: 3px;
  margin-left: 10px;
  background: none;
  font-size: 1.1rem;
  line-height: 1.3;
}
div#MainContent .lp-navigationSeries-linkList > li {
  margin: 3px 0 0 10px;
  padding: 0;
  background: none;
  font-size: 11px;
}
.lp-navigationSeries-linkList > li > a {
  display: block;
  position: relative;
  width: 100%;
  padding-left: 9px;
  color: #999;
  line-height: 1.3;
  text-decoration: none;
}
.lp-navigationSeries-linkList > li > a::before {
  display: block;
  position: absolute;
  top: 4px;
  left: -2px;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  content: "";
}
div#MainContent .lp-navigationSeries-linkList > li > a:link {
  color: #999;
}
div#MainContent .lp-navigationSeries-linkList > li > a::before {
  top: 0.3em;
}
.lp-navigationSeries-linkList > li > a:hover, .lp-navigationSeries-linkList > li > a:focus {
  text-decoration: underline;
}

.lp-buttonConversion.of-download .lp-buttonConversion-body::before {
  background: url("../../../../img/landing_page/common/icon_btn_dl.png") no-repeat center center !important;
}

.lp-buttonConversion.of-anchor .lp-buttonConversion-body::before {
  background: url("../../../../img/landing_page/common/icon_btn_anc_03.png") no-repeat center center !important;
}

.lp-buttonConversion.of-download.of-hover-primary {
  transition-duration: 0.6s;
}
.lp-buttonConversion.of-download.of-hover-primary:hover {
  outline: 1px solid #dc002f;
  outline-offset: -1px;
  background-color: #41000e;
}
.lp-buttonConversion.of-primary.of-hover-primary {
  transition-duration: 0.6s;
}
.lp-buttonConversion.of-primary.of-hover-primary:hover {
  outline: 1px solid #13778f;
  outline-offset: -1px;
  background-color: #0f282f;
}

.lp-navigationSeries {
  max-width: initial;
  margin: initial;
  padding: initial;
  border: initial;
}
.lp-navigationSeries-linkList {
  justify-content: center;
  margin: initial;
  gap: 12px 25px;
}
.lp-navigationSeries-linkList > li {
  margin: initial;
  font-size: 1.2rem;
}
.lp-navigationSeries-linkList > li:first-child > a:before {
  content: none;
}
.lp-navigationSeries-linkList > li > a {
  padding-left: initial;
  color: var(--LP_COLOR_WHITE);
  line-height: 1.2;
}
.lp-navigationSeries-linkList > li + li > a::before {
  top: initial;
  left: -13px;
  width: 1px;
  height: 1lh;
  transform: initial;
  border: none;
  background-color: var(--LP_DIVIDER_COLOR);
}

@media not screen and (max-width: 1023px) {
  .lp-largeScreen-hide {
    display: none;
  }
  .lp-largeScreen-fontSize-primary {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-smallScreen-hide {
    display: none;
  }
  .lp-smallScreen-textAlign-center {
    text-align: center;
  }
  .lp-smallScreen-justifyContent-center {
    justify-content: center;
  }
}
.lp-utility-line-break {
  display: block;
}
.lp-utility-justifyContent-center {
  justify-content: center;
}
.lp-utility-alignItems-center {
  align-items: center;
}
.lp-utility-textAlign-center {
  text-align: center;
}
.lp-utility-color-emphasis {
  color: var(--LP_COLOR_RED);
}
.lp-utility-marginBottom-0 {
  margin-bottom: 0;
}
