:root {
  --LP-COLOR-BLACK: #222;
  --LP-COLOR-WHITE: #fff;
  --LP-COLOR-DARKGRAY: #2b2b2b;
  --LP-COLOR-GRAY: #4b4c5e;
  --LP-COLOR-CHARCOAL: #707070;
  --LP-COLOR-LIGHTGRAY-PRIMARY: #f7f7f7;
  --LP-COLOR-LIGHTGRAY-SECONDARY: #ececec;
  --LP-COLOR-LIGHTGRAY-TERTIARY: #b8b8b8;
  --LP-COLOR-LIGHTGRAY-QUATERNARY: #d9d9d9;
  --LP-COLOR-DARKRED: #a50026;
  --LP-COLOR-RED: #dc002f;
  --LP-COLOR-LIGHTGREEN: #287d68;
  --LP-COLOR-BLUEGREEN: #227b82;
  --LP-COLOR-GREEN: #00606b;
  --LP-COLOR-MOSSGREEN: #38514b;
  --LP-COLOR-DARKGREEN: #17343a;
  --LP-FONT-FAMILY-DEFAULT: source-han-sans-japanese, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  --LP-FONT-FAMILY-SERIF: source-han-serif-japanese, serif;
  --LP-FONT-WEIGHT-REGULAR: 400;
  --LP-FONT-WEIGHT-MEDIUM: 500;
  --LP-FONT-WEIGHT-BOLD: 700;
  --LP-MARGIN-BOTTOM-SMALL: 8px;
  --LP-MARGIN-BOTTOM-HALF-DEFAULT: 12px;
  --LP-MARGIN-BOTTOM-DEFAULT: 24px;
  --LP-MARGIN-BOTTOM-LARGE: 40px;
  --LP-HEADER-FONT: var(--LP-COLOR-DARKGRAY);
  --LP-MAIN-FONT: var(--LP-COLOR-GRAY);
  --LP-FOOTER-FONT: var(--LP-COLOR-GRAY);
  --LP-PAGINATION-BULLET-DEFAULT: var(--LP-COLOR-CHARCOAL);
  --LP-PAGINATION-BULLET-CURRENT: linear-gradient(#babbff, #4765a6);
}

:root {
  font-size: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

.theme-KJ {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
.theme-KJ body {
  min-width: 320px;
  background: #fff;
  color: #333;
  font-family: source-han-sans-japanese, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}

main {
  display: block;
}

p {
  margin-bottom: 16px;
}

ul,
ol {
  list-style: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration: underline;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

em {
  font-style: normal;
  font-weight: bold;
}

dfn,
cite {
  font-style: normal;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 100%;
}

i {
  font-style: italic;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: bottom;
}

table {
  width: 100%;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  border-radius: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  border: 0;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: none;
}

legend {
  display: table;
  max-width: 100%;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.lp-layout-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  overflow: hidden;
  color: var(--LP-COLOR-GRAY);
}
@media only screen and (max-width: 1365px) {
  .lp-layout-container {
    height: auto;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-layout-container {
    height: auto;
  }
}
.lp-layout-container.is-header-dark {
  --LP-HEADER-FONT: var(--LP-COLOR-WHITE);
}
.lp-layout-container.is-main-dark {
  --LP-MAIN-FONT: var(--LP-COLOR-WHITE);
}
.lp-layout-container.is-footer-dark {
  --LP-FOOTER-FONT: var(--LP-COLOR-WHITE);
}
.lp-layout-container.is-pagination-dark {
  --LP-PAGINATION-BULLET-DEFAULT: var(--LP-COLOR-WHITE);
  --LP-PAGINATION-BULLET-CURRENT: var(--LP-COLOR-WHITE);
}

.lp-layout-header {
  z-index: 10;
  grid-column: 1/-1;
  grid-row: 1/2;
  color: var(--LP-HEADER-FONT);
}
.lp-layout-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 80px 25px;
  gap: 24px;
}
.lp-layout-header-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1920px) {
  .lp-layout-header-content {
    max-width: 1920px;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 1365px) {
  .lp-layout-header-content {
    padding: 24px max(40px, 4rem + (1vw - 1.024rem) * (11.7302052786));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-content {
    justify-content: center;
    padding: 20px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-layout-header-content {
    padding: 13px 80px 25px;
  }
}
.lp-layout-header-logo {
  flex-shrink: 0;
  margin-bottom: 0;
  line-height: 1;
}
.lp-layout-header-logo > a {
  display: inline-block;
}
.lp-layout-header-logo > a > img {
  width: 114px;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-header-logo > a > img {
    width: 94px;
  }
}

.lp-layout-main {
  position: relative;
  z-index: 1;
  grid-column: 1/-1;
  grid-row: 1/-1;
  padding: 80px 0px 49px;
  color: var(--LP-MAIN-FONT);
}
@media only screen and (max-width: 1920px) {
  .lp-layout-main {
    padding: 80px 0px calc(3.8rem + (1vw - 1.366rem) * (1.981981982));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-layout-main {
    grid-row: 2/3;
    padding: 0px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-layout-main {
    padding: 80px 0px 40px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-layout-main {
    padding: 80px 0px 0px;
  }
}

.lp-layout-footer {
  z-index: 10;
  grid-column: 1/-1;
  grid-row: -1/-2;
  background: var(--LP-COLOR-WHITE);
  color: var(--LP-FOOTER-FONT);
}
.lp-layout-footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-inline: auto;
  padding: 16px 80px;
  gap: 12px 25px;
}
.lp-layout-footer-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-layout-footer-content {
    padding: 24px max(40px, 4rem + (1vw - 1.024rem) * (11.7302052786));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-content {
    flex-direction: column;
    max-width: none;
    padding: 24px 20px;
  }
}
.lp-layout-footer-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  gap: 12px 25px;
}
.lp-layout-footer-list > li {
  position: relative;
}
.lp-layout-footer-list > li > *:last-child {
  margin-bottom: 0 !important;
}
.lp-layout-footer-list > li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -13px;
  width: 1px;
  height: 100%;
  transform: translateY(-50%);
  background-color: var(--LP-COLOR-LIGHTGRAY-QUATERNARY);
}
.lp-layout-footer-list > li > a {
  color: currentColor;
  text-decoration: none;
}
.lp-layout-footer-list > li > a:hover, .lp-layout-footer-list > li > a:active, .lp-layout-footer-list > li > a:focus {
  color: currentColor;
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-footer-list > li:last-child::after {
    display: none;
  }
}
.lp-layout-footer-copyright {
  font-size: 1.2rem;
}
@media only screen and (max-width: 1365px) {
  .lp-layout-footer-copyright {
    text-align: center;
  }
}

.lp-layout-header,
.lp-layout-footer {
  position: relative;
}

.lp-layout-grid {
  gap: 16px;
  display: grid;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1023px) {
  .lp-layout-grid {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-layout-grid {
    margin-bottom: max(16px, 1.6rem + (1vh - 0.625rem) * (8.4210526316));
    gap: 16px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-layout-grid {
    margin-bottom: 40px;
  }
}
.lp-layout-grid-column {
  display: flex;
  position: relative;
}
.lp-layout-grid-column > *:last-child {
  margin-bottom: 0 !important;
}
.lp-layout-grid-column.of-arrow {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><defs><linearGradient id='g0' x1='24' y1='16' x2='0' y2='16'><stop stop-color='%23C45F8E'/><stop offset='1' stop-color='%238D114A'/></linearGradient><linearGradient id='g1' x1='24' y1='8' x2='0' y2='8'><stop stop-color='%23C45F8E'/><stop offset='1' stop-color='%238D114A'/></linearGradient></defs><path opacity='0.6' d='M12 24L24 8L0 8Z' fill='url(%23g0)'/><path d='M12 16L24 0L0 0Z' fill='url(%23g1)'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1920px) {
  .lp-layout-grid-column.of-arrow {
    width: calc(3.2rem + (1vw - 1.024rem) * (1.7837235229));
    height: calc(3.2rem + (1vw - 1.024rem) * (1.7837235229));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-grid-column.of-arrow {
    top: 0;
    width: 48px;
    height: 48px;
    transform: rotate(0deg);
  }
}
.lp-layout-grid.of-column-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 1023px) {
  .lp-layout-grid.of-column-2.of-primary {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1023px) {
  .lp-layout-grid.of-column-3 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-3.of-primary {
  grid-template-columns: 1fr 48px 1fr;
  align-items: stretch;
  place-content: center;
}
@media only screen and (max-width: 1920px) {
  .lp-layout-grid.of-column-3.of-primary {
    grid-template-columns: 1fr calc(3.2rem + (1vw - 1.024rem) * (1.7837235229)) 1fr;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-layout-grid.of-column-3.of-primary {
    grid-template-columns: auto;
    place-items: center;
  }
}

[data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation {
  transition: opacity 0.6s ease;
  opacity: 0;
}
@media only screen and (max-width: 1365px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation {
    transition: initial;
    opacity: 1;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation {
    transition: initial;
    opacity: 1;
  }
}
[data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation.is-visible {
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
}
[data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="1"] {
  transition-delay: calc((1 - 1) * 0.4s);
}
@media only screen and (max-width: 1365px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="1"] {
    transition-delay: initial;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="1"] {
    transition-delay: initial;
  }
}
[data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="2"] {
  transition-delay: calc((2 - 1) * 0.4s);
}
@media only screen and (max-width: 1365px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="2"] {
    transition-delay: initial;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="2"] {
    transition-delay: initial;
  }
}
[data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="3"] {
  transition-delay: calc((3 - 1) * 0.4s);
}
@media only screen and (max-width: 1365px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="3"] {
    transition-delay: initial;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="3"] {
    transition-delay: initial;
  }
}
[data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="4"] {
  transition-delay: calc((4 - 1) * 0.4s);
}
@media only screen and (max-width: 1365px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="4"] {
    transition-delay: initial;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  [data-script-enabled=true] .lp-layout-grid-column.of-fadeInAnimation[data-animation-delay="4"] {
    transition-delay: initial;
  }
}

body:has(#slide-1[aria-hidden=false]) footer {
  background: rgba(255, 255, 255, 0.9);
}

.lp-jumbotron {
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron {
    z-index: 1;
    background: radial-gradient(216.25% 141.42% at 0% 0%, #fff 0%, #f8f8f8 39.42%, #ededed 100%);
  }
}
.lp-jumbotron-content {
  max-width: 1920px;
  height: 100%;
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding: 0 40px 0 200px;
}
.lp-jumbotron-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1920px) {
  .lp-jumbotron-content {
    margin-inline-end: 0;
    padding: 0 calc(8.3rem + (1vw - 1.366rem) * (-7.761732852)) 0 max(83px, 8.3rem + (1vw - 1.366rem) * (21.119133574));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-content {
    padding: 84px max(40px, 4rem + (1vw - 1.024rem) * (12.6099706745)) 172px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-content {
    padding: 0 max(20px, 2rem + (1vw - 0.36rem) * (27.149321267)) 6.4rem;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-content {
    padding: 0 max(0, 20rem + (1vw - 0.625rem) * (-41.0526315789)) 0 max(200px, 20rem + (1vw - 0.625rem) * (-41.0526315789));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-jumbotron-content {
    padding: 84px max(40px, 4rem + (1vw - 1.024rem) * (12.6099706745)) 285px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-jumbotron-content {
    padding: 0 40px 112px;
  }
}
.lp-jumbotron-inner {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  gap: 64px;
}
.lp-jumbotron-inner > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-inner {
    flex-direction: column-reverse;
    gap: 16px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-jumbotron-inner {
    justify-content: center;
  }
}
.lp-jumbotron-body {
  max-width: 594px;
}
.lp-jumbotron-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1920px) {
  .lp-jumbotron-body {
    max-width: calc(46.3rem + (1vw - 1.366rem) * (23.6462093863));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-body {
    max-width: 463px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-body {
    margin-inline-end: auto;
  }
}
.lp-jumbotron-titleGroup {
  margin-bottom: 40px;
  font-family: var(--LP-FONT-FAMILY-SERIF);
}
.lp-jumbotron-titleGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: max(16px, 1.6rem + (1vw - 1.024rem) * (7.0381231672));
  }
}
.lp-jumbotron-title {
  display: block;
  margin-bottom: 16px;
  font-size: 5.8rem;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 1920px) {
  .lp-jumbotron-title {
    font-size: calc(4.4rem + (1vw - 1.366rem) * (2.5270758123));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-title {
    margin-bottom: max(8px, 0.8rem + (1vw - 1.024rem) * (2.3460410557));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-title {
    font-size: calc(3.2rem + (1vw - 0.36rem) * (1.8099547511));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-title {
    --font-from-height: calc(4.4rem + (1vh - 0.625rem) * (4.9122807018));
    --font-from-width: calc(4.4rem + (1vw - 1.366rem) * (2.5225225225));
    font-size: max(4.4rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-subtitle {
  display: block;
  margin-bottom: 40px;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.35;
}
@media only screen and (max-width: 1920px) {
  .lp-jumbotron-subtitle {
    font-size: max(2.4rem, 2.4rem + (1vw - 1.366rem) * (2.1660649819));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-subtitle {
    margin-bottom: max(24px, 2.4rem + (1vw - 1.024rem) * (4.6920821114));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-subtitle {
    font-size: max(2rem, 2rem + (1vw - 0.36rem) * (0.6033182504));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-subtitle {
    --font-from-height: calc(2.4rem + (1vh - 0.625rem) * (4.2105263158));
    --font-from-width: calc(2.4rem + (1vw - 1.024rem) * (1.3377926421));
    font-size: max(2.4rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-text {
  display: block;
  margin-bottom: 16px;
  font-size: 3.2rem;
}
@media only screen and (max-width: 1920px) {
  .lp-jumbotron-text {
    font-size: calc(2.4rem + (1vw - 1.366rem) * (1.4440433213));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-text {
    margin-bottom: max(8px, 0.8rem + (1vw - 1.024rem) * (2.3460410557));
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-text {
    font-size: max(2rem, 2rem + (1vw - 0.36rem) * (0.6033182504));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-text {
    --font-from-height: calc(2.4rem + (1vh - 0.625rem) * (2.8070175439));
    --font-from-width: calc(2.4rem + (1vw - 1.024rem) * (0.8918617614));
    font-size: max(2.4rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-seriesGroup {
  display: block;
  margin-bottom: 8px;
  font-size: 2.6rem;
  font-weight: var(--LP-FONT-WEIGHT-BOLD);
  line-height: 1.4;
}
.lp-jumbotron-seriesGroup > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1920px) {
  .lp-jumbotron-seriesGroup {
    font-size: calc(2rem + (1vw - 1.366rem) * (1.083032491));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-seriesGroup {
    font-size: calc(1.8rem + (1vw - 1.024rem) * (0.5865102639));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-seriesGroup {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.8rem;
    font-size: max(1.4rem, 1.6rem + (1vw - 0.36rem) * (0.3016591252));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-seriesGroup {
    --font-from-height: calc(2rem + (1vh - 0.625rem) * (2.1052631579));
    --font-from-width: calc(2rem + (1vw - 1.024rem) * (0.6688963211));
    font-size: max(2rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-jumbotron-series {
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-seriesName {
    margin-bottom: 8px;
  }
}
.lp-jumbotron-image {
  position: absolute;
  z-index: 20;
  right: 0;
  bottom: -50px;
  flex: 1;
  width: auto;
  max-width: 100%;
}
@media only screen and (max-width: 1920px) {
  .lp-jumbotron-image {
    bottom: calc(20rem + (1vw - 1.366rem) * (-45.1263537906));
    max-width: calc(78rem + (1vw - 1.52rem) * (70));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-jumbotron-image {
    bottom: calc(-9.6rem + (1vw - 1.024rem) * (-11.9883040936));
    max-width: calc(44rem + (1vw - 1.024rem) * (68.1286549708));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-jumbotron-image {
    position: static;
    max-width: 640px;
    margin-top: calc(-8.7rem + (1vw - 0.36rem) * (-13.1024096386));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-jumbotron-image {
    --maxWidth-from-height: calc(70rem + (1vh - 0.625rem) * (91.2280701754));
    --maxWidth-from-width: calc(67.3rem + (1vw - 1.366rem) * (69.4805194805));
    bottom: -50px;
    max-width: max(673px, min(var(--maxWidth-from-height), var(--maxWidth-from-width)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-jumbotron-image {
    bottom: -250px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-jumbotron-image {
    position: static;
    max-width: 1008px;
  }
}

.lp-section {
  height: 100%;
}
.lp-section-outer {
  position: relative;
  height: 100%;
  --container-max: 1920px;
  --content-padding: 200px;
  --gap: 64px;
}
.lp-section-content {
  display: flex;
  max-width: 1920px;
  height: 100%;
  margin-inline: auto;
  padding: 0 200px;
}
.lp-section-content > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1920px) {
  .lp-section-content {
    padding: 0 max(83px, 8.3rem + (1vw - 1.366rem) * (21.119133574));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-section-content {
    display: block;
    padding: 80px 83px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-section-content {
    padding: 32px max(20px, 2rem + (1vw - 0.36rem) * (27.149321267));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-section-content {
    padding: 80px 58px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-section-content {
    padding: 80px 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-section-content.of-primary {
    padding: 64px max(20px, 2rem + (1vw - 0.36rem) * (27.1084337349)) 32px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-section-content.of-primary {
    padding: 112px 40px 192px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-section-content.of-primary {
    padding: 112px 40px 192px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-section-content.of-secondary {
    padding: 32px max(20px, 2rem + (1vw - 0.36rem) * (27.1084337349)) 64px;
  }
}
@media only screen and (max-width: 1920px) {
  .lp-section-content.of-tertiary {
    padding: 0 max(20px, 8.3rem + (1vw - 1.366rem) * (21.0810810811));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-section-content.of-tertiary {
    position: relative;
    padding: 20px 83px 0;
  }
  .lp-section-content.of-tertiary::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(100% 300% at 0.55% 0%, #8c9bcc 0%, #292832 41.83%, #000 100%);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    color: var(--LP-COLOR-WHITE);
  }
}
@media only screen and (max-width: 1023px) {
  .lp-section-content.of-tertiary {
    padding: max(40px, 4rem + (1vw - 0.36rem) * (6.0240963855)) max(20px, 2rem + (1vw - 0.36rem) * (27.1084337349));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-section-content.of-tertiary {
    position: relative;
  }
  .lp-section-content.of-tertiary::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: radial-gradient(100% 300% at 0.55% 0%, #8c9bcc 0%, #292832 41.83%, #000 100%);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    color: var(--LP-COLOR-WHITE);
  }
}
.lp-section-inner > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1023px) {
  .lp-section-inner {
    margin-bottom: 36px;
  }
}

.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 {
  display: flex;
  justify-content: center;
  min-width: 179px;
  margin-bottom: var(--LP-MARGIN-BOTTOM-DEFAULT);
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: var(--LP-FONT-WEIGHT-MEDIUM);
  text-align: center;
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .lp-buttonConversion {
    min-width: max(320px, 32rem + (1vw - 0.36rem) * (48.2654600302));
  }
}
.lp-buttonConversion.of-download .lp-buttonConversion-body {
  justify-content: center;
}
.lp-buttonConversion.of-download .lp-buttonConversion-text {
  margin-right: 8px;
}
.lp-buttonConversion.of-price .lp-buttonConversion-body, .lp-buttonConversion.of-secondary .lp-buttonConversion-body {
  justify-content: center;
  padding-left: 53px;
}
.lp-buttonConversion.of-price .lp-buttonConversion-text::before, .lp-buttonConversion.of-secondary .lp-buttonConversion-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -24px;
  width: 12px;
  height: 14px;
  transform: translateY(-50%);
  background-color: var(--LP-COLOR-WHITE);
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
}
.lp-buttonConversion.of-secondary {
  position: relative;
  z-index: 1;
  min-width: 320px;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(90deg, #0acffe 0%, #495aff 100%);
}
@media only screen and (max-width: 1365px) {
  .lp-buttonConversion.of-secondary {
    width: 100%;
    min-width: auto;
  }
}
.lp-buttonConversion.of-secondary::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  opacity: 0;
  background: linear-gradient(90deg, #0db4db 0%, #1928b8 100%);
}
.lp-buttonConversion.of-secondary:hover::before {
  opacity: 1;
}
.lp-buttonConversion.of-secondary > .lp-buttonConversion-body {
  display: flex;
  gap: 11px;
  flex-direction: row-reverse;
  align-items: center;
  padding: 12px 8px;
}
.lp-buttonConversion.of-secondary > .lp-buttonConversion-body > *:last-child {
  margin-bottom: 0 !important;
}
.lp-buttonConversion.of-secondary .lp-buttonConversion-text {
  margin-right: 0;
}
@media only screen and (max-width: 1365px) {
  .lp-buttonConversion.of-secondary .lp-buttonConversion-text {
    font-size: 1.8rem;
  }
}
.lp-buttonConversion.of-secondary .lp-buttonConversion-text::before {
  content: "";
  display: none;
}
.lp-buttonConversion-text {
  position: relative;
  font-size: 1.6rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
}
@media only screen and (max-width: 1365px) {
  .lp-buttonConversion-text {
    font-size: 1.5rem;
  }
}

.lp-headingLevel2 {
  display: block;
  margin-bottom: 40px;
  font-family: var(--LP-FONT-FAMILY-SERIF);
  font-size: 4.4rem;
  font-weight: var(--LP-FONT-WEIGHT-REGULAR);
  line-height: 1.35;
}
@media only screen and (max-width: 1920px) {
  .lp-headingLevel2 {
    font-size: calc(3.2rem + (1vw - 1.366rem) * (2.1660649819));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-headingLevel2 {
    margin-bottom: max(2.4rem, 2.4rem + (1vw - 1.024rem) * (4.6920821114));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel2 {
    font-size: max(2.4rem, 2.4rem + (1vw - 0.36rem) * (2.4132730015));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-headingLevel2 {
    --font-from-height: calc(3.2rem + (1vh - 0.625rem) * (4.2105263158));
    --font-from-width: calc(2.4rem + (1vw - 1.024rem) * (1.6129032258));
    margin-bottom: max(2.4rem, 2.4rem + (1vh - 0.625rem) * (5.6140350877));
    font-size: max(3.2rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-headingLevel2-outer {
  margin-bottom: 40px;
}
.lp-headingLevel2-outer > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-headingLevel2-outer {
    margin-bottom: max(2.4rem, 2.4rem + (1vw - 1.024rem) * (4.6920821114));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-headingLevel2-outer {
    margin-bottom: max(2.4rem, 2.4rem + (1vh - 0.625rem) * (5.6140350877));
  }
}

.lp-headingLevel3 {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
  font-weight: var(--LP-FONT-WEIGHT-REGULAR);
  line-height: 1.3;
}
@media only screen and (max-width: 1365px) {
  .lp-headingLevel3 {
    font-size: max(2rem, 2rem + (1vw - 1.024rem) * (1.1730205279));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel3 {
    text-align: center;
  }
}
.lp-headingLevel3-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lp-headingLevel3-label {
  position: relative;
  font-family: var(--LP-FONT-FAMILY-SERIF);
  font-size: 3.2rem;
}
@media only screen and (max-width: 1365px) {
  .lp-headingLevel3-label {
    font-size: calc(2.4rem + (1vw - 1.366rem) * (1.4440433213));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-headingLevel3-label {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-headingLevel3-label {
    --font-from-height: calc(2.4rem + (1vh - 0.625rem) * (2.8070175439));
    --font-from-width: calc(2.4rem + (1vw - 1.024rem) * (1.6129032258));
    font-size: max(2.4rem, min(var(--font-from-height), var(--font-from-width)));
  }
}
.lp-headingLevel3-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><defs><linearGradient id='g0' x1='24' y1='16' x2='0' y2='16'><stop stop-color='%23C45F8E'/><stop offset='1' stop-color='%238D114A'/></linearGradient><linearGradient id='g1' x1='24' y1='8' x2='0' y2='8'><stop stop-color='%23C45F8E'/><stop offset='1' stop-color='%238D114A'/></linearGradient></defs><path opacity='0.6' d='M12 24L24 8L0 8Z' fill='url(%23g0)'/><path d='M12 16L24 0L0 0Z' fill='url(%23g1)'/></svg>");
}

.lp-label {
  display: flex;
  align-items: center;
  width: fit-content;
  min-width: 10rem;
  max-width: 20rem;
  margin-bottom: var(--LP-MARGIN-BOTTOM-SMALL);
  padding: 2px 26px 1px;
  border: 1px solid var(--LP-COLOR-RED);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--LP-COLOR-RED);
  font-family: var(--LP-FONT-FAMILY-DEFAULT);
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 1365px) {
  .lp-label {
    min-width: 9.6rem;
    padding: 2px 24px 1px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-label {
    font-size: max(1.6rem, 1.6rem + (1vh - 0.36rem) * (0.3012048193));
  }
}
.lp-label-outer {
  display: block;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.lp-label-outer > *:last-child {
  margin-bottom: 0 !important;
}

.lp-listButton {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 32px;
  gap: 16px;
}
@media only screen and (max-width: 1365px) {
  .lp-listButton {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-listButton {
    justify-content: center;
  }
}
.lp-listButton > li > *:last-child {
  margin-bottom: 0 !important;
}

.lp-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin-bottom: var(--LP-MARGIN-BOTTOM-DEFAULT);
  gap: 0 64px;
}
@media only screen and (max-width: 1519px) {
  .lp-media {
    gap: 0 calc(2rem + (1vw - 1.366rem) * (28.5714285714));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-media {
    gap: 0 calc(2.5rem + (1vw - 1.024rem) * (4.3859649123));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-media {
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 0 16px;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-media {
    gap: 0 8px;
  }
}
.lp-media.of-primary {
  flex-direction: column;
}
@media only screen and (max-width: 1023px) {
  .lp-media.of-primary {
    flex: 1;
  }
}
.lp-media-body {
  flex: 1;
  width: 100%;
  padding-bottom: 16px;
}
.lp-media-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 1024px) {
  .lp-media-body.of-primary {
    padding-left: 16px;
    border-left: 2px solid #ddd;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-media-image {
    --maxWidth-from-height: calc(60rem + (1vh - 0.625rem) * (57.5438596491));
    --maxWidth-from-width: calc(61.5rem + (1vw - 1.366rem) * (59.0909090909));
    max-width: max(600px, min(var(--maxWidth-from-height), var(--maxWidth-from-width)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-media-image {
    max-width: none;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-media-image {
    flex: 1;
  }
}
.lp-media-text {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media only screen and (max-width: 1365px) {
  .lp-media-text {
    font-size: calc(1.5rem + (1vw - 1.024rem) * (0.2923976608));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-media-text {
    font-size: 1.5rem;
  }
}

.lp-mediaAsset {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
  gap: 16px 64px;
}
.lp-mediaAsset > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1519px) {
  .lp-mediaAsset {
    gap: 16px calc(2rem + (1vw - 1.366rem) * (81.8181818182));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-mediaAsset {
    gap: 16px calc(2.5rem + (1vw - 1.024rem) * (4.3859649123));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaAsset {
    grid-template-columns: auto;
    gap: 40px;
    flex-direction: column;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-mediaAsset {
    justify-content: center;
  }
}
.lp-mediaAsset-body {
  max-width: 59.6rem;
  color: var(--LP-COLOR-WHITE);
}
.lp-mediaAsset-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1920px) {
  .lp-mediaAsset-body {
    max-width: calc(46.3rem + (1vw - 1.366rem) * (23.963963964));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-mediaAsset-body {
    max-width: 46.3rem;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaAsset-body {
    flex-direction: column;
    max-width: 64rem;
    margin-block: 0;
    text-align: center;
  }
}
.lp-mediaAsset-image {
  position: absolute;
  z-index: 20;
  bottom: -50px;
  left: calc(50% - var(--container-max) / 2 + var(--content-padding));
  transform: translateX(-64px);
}
.lp-mediaAsset-image > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1920px) {
  .lp-mediaAsset-image {
    bottom: calc(-3rem + (1vw - 1.366rem) * (-3.6101083032));
    left: max(83px, calc(8.3rem + (1vw - 1.366rem) * (21.119133574)));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-mediaAsset-image {
    position: static;
    bottom: auto;
    left: auto;
    order: 2;
    max-width: 100%;
    transform: translateY(calc(3rem + (1vw - 1.024rem) * (5.8651026393)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-mediaAsset-image {
    --bottom-from-height: calc(-3rem + (1vh - 0.625rem) * (-7.0175438596));
    --bottom-from-width: calc(-3rem + (1vw - 1.366rem) * (-3.6036036036));
    bottom: max(-30px, min(var(--bottom-from-height), var(--bottom-from-width)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-mediaAsset-image {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    order: 2;
    max-width: 100%;
    transform: translateY(0);
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-mediaAsset-image {
    position: static;
    bottom: auto;
    left: auto;
    order: 2;
    max-width: 100%;
    transform: translateY(140px);
  }
}
@media only screen and (max-width: 1920px) {
  .lp-mediaAsset-image img {
    width: calc(67.3rem + (1vw - 1.366rem) * (69.7297297297));
  }
}
@media only screen and (max-width: 1920px) {
  .lp-mediaAsset-image img {
    width: calc(53.2rem + (1vw - 1.024rem) * (35.3801169591));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 999px) {
  .lp-mediaAsset-image img {
    --Width-from-height: calc(76rem + (1vh - 0.91rem) * (333.3333333333));
    --Width-from-width: calc(86rem + (1vw - 1.366rem) * (63.0630630631));
    width: max(790px, min(var(--Width-from-height), var(--Width-from-width)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-mediaAsset-image img {
    --Width-from-height: calc(67.3rem + (1vh - 0.625rem) * (30.5263157895));
    --Width-from-width: calc(67.3rem + (1vw - 1.366rem) * (33.6936936937));
    width: max(673px, min(var(--Width-from-height), var(--Width-from-width)));
  }
}
.lp-mediaAsset-title {
  margin-bottom: 40px;
  color: var(--LP-COLOR-WHITE);
  font-family: var(--LP-FONT-FAMILY-SERIF);
  font-size: 2.6rem;
  font-weight: var(--LP-FONT-WEIGHT-BOLD);
}
@media only screen and (max-width: 1920px) {
  .lp-mediaAsset-title {
    font-size: max(2rem, 2rem + (1vw - 1.366rem) * (1.0810810811));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-mediaAsset-title {
    margin-bottom: max(24px, 2.4rem + (1vw - 1.024rem) * (4.6783625731));
  }
}
.lp-mediaAsset-text {
  margin-bottom: 40px;
  font-family: var(--LP-FONT-FAMILY-SERIF);
  font-size: 3.4rem;
}
@media only screen and (max-width: 1023px) {
  .lp-mediaAsset-text {
    font-size: calc(2rem + (1vw - 0.36rem) * (2.1084337349));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-mediaAsset-text {
    margin-bottom: max(24px, 2.4rem + (1vw - 1.024rem) * (4.6783625731));
  }
}

.lp-mediaProduct {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  gap: 16px 64px;
}
.lp-mediaProduct > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-mediaProduct {
    gap: 16px max(24px, 2.4rem + (1vw - 1.024rem) * (11.6959064327));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaProduct {
    flex-direction: column;
    align-items: flex-start;
    max-width: 64rem;
    margin-bottom: 16px;
    gap: 24px;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-mediaProduct {
    justify-content: center;
  }
}
.lp-mediaProduct-body {
  flex: 1;
  max-width: 59.6rem;
}
.lp-mediaProduct-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-mediaProduct-body {
    max-width: 46.3rem;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaProduct-body {
    max-width: none;
  }
}
.lp-mediaProduct-image {
  max-width: clamp(673px, 67.3rem + (1vw - 1.366rem) * (33.6936936937), 860px);
}
.lp-mediaProduct-image > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-mediaProduct-image {
    flex: 1;
    max-width: 67.3rem;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-mediaProduct-image {
    order: 2;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-mediaProduct-image {
    --maxWidth-from-height: calc(50.1rem + (1vh - 0.625rem) * (48.7719298246));
    --maxWidth-from-width: calc(67.3rem + (1vw - 1.366rem) * (121.4285714286));
    max-width: max(673px, min(var(--maxWidth-from-height), var(--maxWidth-from-width)));
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-mediaProduct-image {
    max-width: min(60.4rem + (1vw - 1.366rem) * (64.9350649351), 70.4rem + (1vw - 1.52rem) * (28.927680798), 820px);
  }
}

.lp-pagination {
  display: flex;
  position: fixed;
  z-index: 10;
  top: 50%;
  right: 0;
  flex-direction: column;
  transform: translateY(-50%);
}
.lp-pagination-button {
  position: relative;
  width: 42px;
  height: 50px;
  transition-property: color, font-size;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--LP-PAGINATION-BULLET-CURRENT);
  font-family: var(--LP-FONT-FAMILY-SERIF);
  font-size: 1.8rem;
}
.lp-pagination-button > *:last-child {
  margin-bottom: 0 !important;
}
.lp-pagination-button::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  background: linear-gradient(180deg, #c45f8e 0%, #8d114a 100%);
}
.lp-pagination-buttonText {
  display: block;
  transform: translateX(0);
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-pagination-button.is-current {
  color: var(--LP-PAGINATION-BULLET-CURRENT);
  font-size: 2.8rem;
}
.lp-pagination-button.is-current .lp-pagination-buttonText {
  transform: translateX(-15%);
}
.lp-pagination-button.is-current::after {
  opacity: 1;
}
.lp-pagination-button:hover {
  color: var(--LP-PAGINATION-BULLET-CURRENT);
  font-size: 2.8rem;
}
.lp-pagination-button:hover .lp-pagination-buttonText {
  transform: translateX(-15%);
}
.lp-pagination-button:hover::after {
  opacity: 1;
}

[data-script-enabled=true] .lp-slider {
  visibility: hidden;
  grid-area: 1/-1;
  height: 100%;
  transform: matrix(1, 0, 0, 1, 0, 0);
  opacity: 0;
}
@media only screen and (max-width: 1365px) {
  [data-script-enabled=true] .lp-slider {
    visibility: visible;
    height: auto;
    transform: none;
    opacity: 1;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  [data-script-enabled=true] .lp-slider {
    visibility: visible;
    height: auto;
    transform: none;
    opacity: 1;
  }
}
:root:not([data-script-enabled=true]) [data-script-enabled=true] .lp-slider.of-primary {
  position: relative;
}
[data-script-enabled=true] .lp-slider.of-secondary :root:not([data-script-enabled=true]) .lp-slider.of-secondary {
  position: relative;
}
.lp-slider-outer {
  height: 100%;
}
[data-script-enabled=true] .lp-slider-outer {
  display: grid;
}
@media only screen and (max-width: 1365px) {
  [data-script-enabled=true] .lp-slider-outer {
    display: block;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  [data-script-enabled=true] .lp-slider-outer {
    display: block;
  }
}

.lp-text {
  margin-bottom: 40px;
  color: var(--LP-COLOR-GRAY);
  font-size: 1.7rem;
  line-height: 1.8;
}
@media only screen and (max-width: 1920px) {
  .lp-text {
    font-size: calc(1.6rem + (1vw - 1.366rem) * (0.1801801802));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-text {
    font-size: max(1.5rem, 1.5rem + (1vw - 0.36rem) * (0.0994035785));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.lp-text.of-fontSize-primary {
  font-size: 1.5rem;
  line-height: 1.35;
}
@media only screen and (max-width: 1365px) {
  .lp-text.of-fontSize-primary {
    font-size: calc(1.4rem + (1vw - 1.024rem) * (0.2923976608));
  }
}
@media only screen and (max-width: 1023px) {
  .lp-text.of-fontSize-primary {
    font-size: 1.4rem;
  }
}

.lp-textLead {
  margin-bottom: 40px;
  font-family: var(--LP-FONT-FAMILY-SERIF);
  font-size: 4rem;
}
@media only screen and (max-width: 1519px) {
  .lp-textLead {
    font-size: calc(2.4rem + (1vw - 1.024rem) * (3.2258064516));
  }
}
@media only screen and (max-width: 1365px) {
  .lp-textLead {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-textLead {
    font-size: max(1.7rem, 1.7rem + (1vw - 0.36rem) * (1.0542168675));
  }
}

.lp-textAnnotation {
  margin-bottom: 24px;
  color: var(--LP-COLOR-GRAY);
  font-size: 1.2rem;
  line-height: 2;
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-textAnnotation {
    margin-bottom: max(16px, 1.6rem + (1vh - 0.625rem) * (2.8070175439));
  }
}

.lp-textPhone {
  display: block;
  margin-bottom: var(--LP-MARGIN-BOTTOM-DEFAULT);
}
a.lp-textPhone-body,
a:hover.lp-textPhone-body {
  color: currentColor;
  text-decoration: none;
  cursor: default;
}
a.lp-textPhone-body.of-textColor-primary,
a:hover.lp-textPhone-body.of-textColor-primary {
  color: var(--LP-COLOR-WHITE);
}

.lp-textPhone-body > *:last-child {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1365px) {
  .lp-textPhone-body {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-textPhone-body {
    flex-direction: column;
  }
}
.lp-textPhone-numberGroup {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-textPhone-number {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.45;
}
@media only screen and (max-width: 1365px) {
  .lp-textPhone-number {
    font-size: 2.4rem;
  }
}
.lp-textPhone-note {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}
@media only screen and (max-width: 1365px) {
  .lp-textPhone-note {
    font-size: 1.2rem;
  }
}
.lp-textPhone-icon {
  width: 36px;
  min-width: 36px;
  height: 20px;
  min-height: 20px;
}
.lp-textPhone-icon .of-iconColor-primary {
  fill: #00a23f;
}
.lp-textPhone-icon .of-iconColor-secondary {
  fill: #fe8800;
}
.lp-textPhone-icon .of-iconColor-tertiary {
  fill: #0086b1;
}
.lp-textPhone-icon .of-iconColor-quaternary {
  fill: #838079;
}
.lp-textPhone-icon .of-iconColor-quinary {
  fill: #1e1c1c;
}

.lp-utility-line-break {
  display: block;
}
.lp-utility-textAlign-center {
  text-align: center;
}
.lp-utility-fontColor-primary {
  background: linear-gradient(180deg, #ee0034 0%, #cd373a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-utility-fontSize-small {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1365px) {
  .lp-utility-fontSize-small {
    font-size: 1.2rem;
  }
}
.lp-utility-justifyContent-start {
  justify-content: start;
}
.lp-utility-background-primary::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -20;
  top: -80px;
  right: 0;
  bottom: -49px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../../../../../img/products/am-1000/205577001/205577001_bg_01.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: var(--LP-COLOR-WHITE);
}
@media only screen and (max-width: 1365px) {
  .lp-utility-background-primary::after {
    height: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-utility-background-primary::after {
    top: 0px;
    max-height: max(51.8rem, 53.5rem + (1vw - 0.36rem) * (56.4759036145));
    background-position: 56% 50%;
  }
}
@media only screen and (max-width: 1365px) {
  .lp-utility-background-secondary {
    display: none;
  }
}
.lp-utility-background-secondary::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -10;
  top: -80px;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(100% 300% at 0.55% 0%, #8c9bcc 0%, #292832 41.83%, #000 100%);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  color: var(--LP-COLOR-WHITE);
}
@media only screen and (max-width: 1365px) {
  .lp-utility-background-secondary::after {
    display: none;
  }
}
@media only screen and (min-width: 1366px) and (max-height: 624px) {
  .lp-utility-background-secondary::after {
    display: none;
  }
}
@media only screen and (min-width: 1366px) {
  :root:not([data-script-enabled=true]) .lp-utility-background-secondary::after {
    top: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .lp-extraLargeScreen-marginBottom-0 {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1920px) {
  .lp-extraLargeScreen-hide {
    display: none;
  }
}

@media only screen and (min-width: 1366px) {
  .lp-largeScreen-show {
    display: none;
  }
  .lp-largeScreen-line-break {
    display: block;
  }
}
@media only screen and (max-width: 1365px) {
  .lp-largeScreen-hide {
    display: none;
  }
  .lp-largeScreen-marginBottom-0 {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .lp-smallScreen-show {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .lp-smallScreen-hide {
    display: none;
  }
  .lp-smallScreen-line-break {
    display: block;
  }
  .lp-smallScreen-marginBottom-0 {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1023px) {
  .lp-extraSmallScreen-textAlign-center {
    text-align: center;
  }
  .lp-extraSmallScreen-line-break {
    display: block;
  }
  .lp-extraSmallScreen-inline {
    display: inline-block;
  }
  .lp-extraSmallScreen-hide {
    display: none;
  }
}

.lp-smallHeightScreen-inline {
  display: block;
}
@media only screen and (min-width: 1366px) and (max-height: 909px) {
  .lp-smallHeightScreen-inline {
    display: inline-block;
  }
}
