:root {
  --LP_COLOR_WHITE: #fff;
  --LP_COLOR_GRAY: #ccc;
  --LP_COLOR_PURPLE: #7b768c;
  --LP_COLOR_DARKPURPLE: #3b3a47;
  --LP_COLOR_DARKBLUE: #101115;
  --LP_COLOR_GREEN: #0fc;
  --LP_COLOR_RED: #dc002f;
  --LP_COLOR_DARKRED: #be0029;
  --LP_FONT_WEIGHT_BOLD: bold;
  --LP_FONT_WEIGHT_MEDIUM: 500;
  --LP_FONT_WEIGHT_REGULAR: normal;
  --LP_LINE_HEIGHT_PRIMARY: 1.5;
  --LP_Z_INDEX_DEFAULT: 0;
  --LP_Z_INDEX_LAYER1: 10;
  --LP_Z_INDEX_LAYER2: 20;
  --LP_Z_INDEX_BEHIND: -1;
  --LP_Z_INDEX_DEEP_BEHIND: -2;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn02 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
@keyframes fadeOut {
  from {
    visibility: initial;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
:root {
  font-size: 62.5%;
}

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

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

body {
  min-width: 360px;
  background: var(--LP_COLOR_WHITE);
  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.3;
  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;
}

video {
  display: block;
  max-width: 100%;
}

.lp-layout-container {
  position: relative;
  overflow: hidden;
}
.lp-layout-container > *:last-child {
  margin-bottom: 0;
}
.lp-layout-container.of-backgroundColor-primary {
  background-color: var(--LP_COLOR_DARKBLUE);
  color: var(--LP_COLOR_WHITE);
}
.lp-layout-container.of-width-primary {
  max-width: 134rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .lp-layout-container.of-width-primary {
    max-width: 100%;
  }
}

.lp-layout-footer {
  background-color: var(--LP_COLOR_DARKBLUE);
  color: var(--LP_COLOR_WHITE);
}
.lp-layout-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1920px;
  margin-inline: auto;
  padding: 3.2rem 8rem;
  gap: 1.2rem 2.5rem;
}
.lp-layout-footer-content > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-layout-footer-content {
    max-width: 52rem;
    padding: 2rem;
  }
}
.lp-layout-footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.2rem;
  gap: 1rem 2.5rem;
}
.lp-layout-footer-list > *:last-child {
  margin-bottom: 0;
}
.lp-layout-footer-list li {
  position: relative;
}
.lp-layout-footer-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -1.2rem;
  width: 1px;
  height: 1.7rem;
  transform: translateY(-50%);
  background-color: currentColor;
}
@media screen and (max-width: 1024px) {
  .lp-layout-footer-list li:nth-of-type(2)::before {
    content: none;
  }
}
.lp-layout-footer-list a {
  color: var(--LP_COLOR_WHITE);
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .lp-layout-footer-copyright {
    width: 100%;
    text-align: center;
  }
}
.lp-layout-footer li.lp-layout-footer-copyright::before {
  content: none !important;
}

.lp-layout-grid {
  display: grid;
  gap: min(2rem + (1vw - 0.36rem) * (1.2820512821), 4rem);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid {
    gap: 1.6rem;
  }
}
.lp-layout-grid.of-column-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-2 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-3 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-4 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-5 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-6 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-7 {
  grid-template-columns: repeat(7, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-7 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-8 {
  grid-template-columns: repeat(8, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-8 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-9 {
  grid-template-columns: repeat(9, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-9 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-10 {
  grid-template-columns: repeat(10, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-10 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-11 {
  grid-template-columns: repeat(11, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-11 {
    grid-template-columns: auto;
  }
}
.lp-layout-grid.of-column-12 {
  grid-template-columns: repeat(12, 1fr);
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.of-column-12 {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 1024px) {
  .lp-layout-grid.lp-smallScreen-column-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .lp-layout-grid.lp-smallScreen-column-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-layout-grid.lp-smallScreen-column-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-layout-grid.lp-smallScreen-column-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .lp-layout-grid.lp-smallScreen-column-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.lp-layout-grid-column {
  display: grid;
  grid-template-rows: subgrid;
}
.lp-layout-grid-column > *:last-child {
  margin-bottom: 0;
}

.lp-layout-header {
  position: absolute;
  z-index: var(--LP_Z_INDEX_LAYER1);
  inset: 0 0 auto 0;
  background-color: var(--LP_COLOR_DARKBLUE);
  color: var(--LP_COLOR_WHITE);
}
@media screen and (max-width: 1024px) {
  .lp-layout-header {
    background-color: transparent;
  }
}
.lp-layout-header-content {
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  margin-inline: auto;
  padding: 2.4rem 8rem;
  gap: 2.4rem;
}
.lp-layout-header-content > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-layout-header-content {
    justify-content: center;
    padding: 2rem 8rem;
  }
}
.lp-layout-header-logo {
  flex-shrink: 0;
  margin-bottom: 0;
}
.lp-layout-header-logo > a {
  display: block;
  line-height: 1;
}
.lp-layout-header-logo img {
  width: 12rem;
}
@media screen and (max-width: 1024px) {
  .lp-layout-header-logo img {
    width: 9.3rem;
  }
}
.lp-layout-header-utilityGroup > *:last-child {
  margin-bottom: 0;
}
.lp-layout-header-utilityGroup li > *:last-child {
  margin-bottom: 0;
}

.lp-layout-main > *:last-child {
  margin-bottom: 0;
}

.lp-jumbotron {
  position: relative;
  z-index: var(--LP_Z_INDEX_DEFAULT);
}
.lp-jumbotron::after {
  content: "";
  position: absolute;
  z-index: var(--LP_Z_INDEX_DEEP_BEHIND);
  animation: 0.7s 2.9s fadeIn02 forwards;
  opacity: 0;
  background-image: url(../../../../../img/products/tc-3000/201244001/201244001_bg_01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  inset: 0;
}
@media screen and (max-width: 1024px) {
  .lp-jumbotron::after {
    animation: none;
    opacity: 1;
  }
}
.lp-jumbotron-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  max-width: 1920px;
  margin-inline: auto;
  padding: 16rem min(2rem + (1vw - 1.024rem) * (6.6964285714), 8rem) 17.2rem;
  gap: 2.4rem 4rem;
}
.lp-jumbotron-content > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-jumbotron-content {
    flex-direction: column-reverse;
    padding: 6rem max(2rem + (1vw - 0.36rem) * (34.6385542169), 2rem) 5.8rem;
  }
}
.lp-jumbotron-body {
  flex: 1;
}
.lp-jumbotron-body > *:last-child {
  margin-bottom: 0;
}
.lp-jumbotron-imageGroup {
  position: relative;
  width: 100%;
  max-width: min(50.5rem + (1vw - 1.024rem) * (56.3616071429), 101rem);
  aspect-ratio: 505/284;
}
.lp-jumbotron-imageGroup > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-jumbotron-imageGroup {
    min-width: 32rem;
  }
}
.lp-jumbotron-image {
  position: relative;
  z-index: var(--LP_Z_INDEX_BEHIND);
}
@media screen and (max-width: 1024px) {
  .lp-jumbotron-image {
    position: initial;
  }
}
.lp-jumbotron-titleGroup {
  margin-bottom: min(1.6rem + (1vw - 0.36rem) * (1.0256410256), 3.2rem);
  font-weight: var(--LP_FONT_WEIGHT_BOLD);
}
.lp-jumbotron-titleGroup > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-jumbotron-titleGroup {
    margin-bottom: 1.6rem;
  }
}
.lp-jumbotron-title {
  display: block;
  margin-bottom: 0.8rem;
  font-size: min(2.6rem + (1vw - 0.36rem) * (2.6923076923), 6.8rem);
  line-height: 1.3;
}
@media screen and (max-width: 360px) {
  .lp-jumbotron-title {
    font-size: 2.6rem;
  }
}
.lp-jumbotron-series {
  display: block;
  margin-bottom: 0.8rem;
  font-size: min(2rem + (1vw - 0.36rem) * (1.2820512821), 4rem);
}
@media screen and (max-width: 360px) {
  .lp-jumbotron-series {
    font-size: 2rem;
  }
}
.lp-jumbotron-text {
  margin-bottom: min(2.4rem + (1vw - 0.36rem) * (0.5128205128), 3.2rem);
  font-size: min(1.6rem + (1vw - 0.36rem) * (1.0256410256), 3.2rem);
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
  line-height: var(--LP_LINE_HEIGHT_PRIMARY);
}
@media screen and (max-width: 360px) {
  .lp-jumbotron-text {
    margin-bottom: 2.4rem;
    font-size: 1.6rem;
  }
}

.lp-section {
  position: relative;
  min-width: 360px;
  max-width: 1920px;
  margin-inline: auto;
}
.lp-section-content {
  padding: 0 4rem 16rem;
}
.lp-section-content > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-section-content {
    padding: 0 max(2rem + (1vw - 0.36rem) * (34.6385542169), 2rem) 4rem;
  }
}
.lp-section.of-primary {
  border-radius: 2.4rem;
  background: linear-gradient(180deg, var(--LP_COLOR_DARKPURPLE) 0%, var(--LP_COLOR_DARKBLUE) 100%);
}
.lp-section.of-primary .lp-section-content {
  padding: 16rem min(20.6rem + (1vw - 1.024rem) * (30.5803571429), 48rem);
}
@media screen and (max-width: 1024px) {
  .lp-section.of-primary .lp-section-content {
    padding: 4rem max(4.8rem + (1vw - 0.36rem) * (27.4096385542), 4.8rem);
    border-radius: 1.2rem;
  }
}
.lp-section.of-secondary .lp-section-content {
  padding: 11rem min(2rem + (1vw - 1.024rem) * (26.7857142857), 26rem) 4.8rem;
}
@media screen and (max-width: 1024px) {
  .lp-section.of-secondary .lp-section-content {
    padding: 4rem max(2rem + (1vw - 0.36rem) * (34.6385542169), 2rem) 1.2rem;
  }
}

.lp-buttonConversion {
  display: inline-block;
  width: 26rem;
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.4rem;
  background-color: var(--LP_COLOR_RED);
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.1);
  color: var(--LP_COLOR_WHITE);
  font-size: 1.6rem;
  text-decoration: none;
}
.lp-buttonConversion:hover {
  background-color: var(--LP_COLOR_DARKRED);
}
.lp-buttonConversion-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0.8rem 1.2rem 2.4rem;
}
@media screen and (max-width: 1024px) {
  .lp-buttonConversion-body {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }
}
.lp-buttonConversion-text {
  margin-right: 1.4rem;
}
.lp-buttonConversion-image {
  margin: -2.2rem 0;
}
.lp-buttonConversion-image > img {
  min-width: 4.2rem;
  max-width: 6rem;
  border: 1px solid var(--LP_COLOR_GRAY);
}
.lp-buttonConversion.of-download .lp-buttonConversion-text {
  position: relative;
  padding-left: 2.3rem;
}
.lp-buttonConversion.of-download .lp-buttonConversion-text::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -0.8rem;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  background: url("../../../../img/landing_page/common/icon_btn_dl.png") no-repeat center center;
}
.lp-buttonConversion.of-primary {
  background-color: #13778f;
}
.lp-buttonConversion.of-primary:hover {
  background-color: #116b81;
}
.lp-buttonConversion.of-arrow .lp-buttonConversion-text {
  position: relative;
  padding-left: 2.3rem;
}
.lp-buttonConversion.of-arrow .lp-buttonConversion-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  transform: translateY(-50%);
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.lp-cardLink {
  display: block;
  position: relative;
  margin-bottom: 2.4rem;
  transition: background-color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--LP_COLOR_PURPLE);
  border-radius: 0.8rem;
  background-color: #373642;
  box-shadow: 0 0 0 0 transparent inset, 0 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.5);
  color: inherit;
  text-decoration: none;
}
.lp-cardLink > *:last-child {
  margin-bottom: 0;
}
.lp-cardLink:focus-visible {
  outline-offset: -1px;
}
.lp-cardLink.of-backgroundColor-primary {
  background-color: #2c2b33;
}
.lp-cardLink.of-backgroundColor-secondary {
  background-color: #202028;
}
.lp-cardLink::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  width: 1.6rem;
  height: 0.8rem;
  transform: translate(-50%, 50%);
  background-color: currentColor;
  clip-path: polygon(0 8%, 11% 0, 50% 62%, 89% 0, 100% 8%, 50% 100%);
}
@media screen and (max-width: 1024px) {
  .lp-cardLink::after {
    bottom: 1.2rem;
  }
}
.lp-cardLink:hover {
  border: 1px solid var(--LP_COLOR_GREEN);
  background-color: #023b3d;
  box-shadow: 0 0.6rem 0 0 var(--LP_COLOR_GREEN) inset, 0 0 1.6rem 0 rgba(0, 255, 204, 0.5);
}
.lp-cardLink:hover .lp-cardLink-header::after {
  opacity: 0.5;
  background-color: var(--LP_COLOR_GREEN);
}
.lp-cardLink:hover .lp-cardLink-icon {
  filter: grayscale(0%);
}
.lp-cardLink-content {
  display: flex;
  flex-direction: column;
  padding: min(1.2rem + (1vw - 0.36rem) * (0.7692307692), 2.4rem) min(1.6rem + (1vw - 0.36rem) * (1.2820512821), 3.6rem) 4.8rem;
  gap: 1.6rem;
}
.lp-cardLink-content > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-cardLink-content {
    gap: 0.8rem;
    padding: 1.2rem 1.6rem 2.6rem;
  }
}
.lp-cardLink-header {
  position: relative;
  padding-bottom: min(0.8rem + (1vw - 0.36rem) * (0.5128205128), 1.6rem);
}
.lp-cardLink-header > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-cardLink-header {
    padding-bottom: 0.8rem;
  }
}
.lp-cardLink-header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
  background-color: var(--LP_COLOR_PURPLE);
}
.lp-cardLink-label {
  margin-bottom: 0.8rem;
  font-size: min(1.6rem + (1vw - 0.36rem) * (0.5128205128), 2.4rem);
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
  text-align: center;
}
@media screen and (max-width: 360px) {
  .lp-cardLink-label {
    font-size: 1.6rem;
  }
}
.lp-cardLink-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(0.8rem + (1vw - 0.36rem) * (0.5128205128), 1.6rem) 1.2rem;
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
  line-height: var(--LP_LINE_HEIGHT_PRIMARY);
}
.lp-cardLink-body > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-cardLink-body {
    flex-direction: row;
    justify-content: center;
  }
}
.lp-cardLink-group {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: min(0.8rem + (1vw - 0.36rem) * (0.5128205128), 1.6rem);
}
.lp-cardLink-group > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-cardLink-group {
    align-items: initial;
    gap: 0.4rem;
  }
}
.lp-cardLink-group .lp-cardLink-title,
.lp-cardLink-group .lp-cardLink-text {
  margin-bottom: 0;
}
.lp-cardLink-title {
  font-size: min(1.8rem + (1vw - 0.36rem) * (0.641025641), 2.8rem);
}
@media screen and (max-width: 1024px) {
  .lp-cardLink-title {
    font-size: 1.8rem;
  }
}
.lp-cardLink-text {
  font-size: min(1.4rem + (1vw - 0.36rem) * (0.3846153846), 2rem);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .lp-cardLink-text {
    text-align: initial;
  }
}
@media screen and (max-width: 360px) {
  .lp-cardLink-text {
    font-size: 1.4rem;
  }
}
.lp-cardLink-icon {
  order: -1;
  max-width: round(min(6.4rem + (1vw - 0.36rem) * (3.5897435897), 12rem), 1px);
  transition: filter 0.3s ease;
  filter: grayscale(100%);
}
@media screen and (max-width: 1024px) {
  .lp-cardLink-icon {
    max-width: 6.4rem;
  }
}

.lp-video {
  margin-bottom: 1.6rem;
  pointer-events: none;
}
.lp-video-outer {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lp-video-outer > *:last-child {
  margin-bottom: 0;
}
.lp-video-outer.is-hidden {
  animation: fadeOut 0.8s cubic-bezier(0.4, 0, 1, 1) forwards;
  inset: 0;
}
.lp-video-outer.of-loop {
  visibility: hidden;
  opacity: 0;
  inset: 0;
}
.lp-video-outer.of-loop.is-shown {
  visibility: initial;
  animation: fadeIn 0.8s forwards;
  opacity: 1;
}
.lp-video-button {
  position: absolute;
  z-index: var(--LP_Z_INDEX_LAYER1);
  right: 0;
  bottom: 0;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--LP_COLOR_DARKPURPLE);
}
.lp-video-button::before, .lp-video-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 1.6rem;
  transform: translate(-150%, -50%);
  background-color: #d9d9d9;
}
.lp-video-button::after {
  left: calc(50% + 0.8rem);
}
.lp-video-button.is-paused::before {
  width: 1.2rem;
  height: 1.2rem;
  transform: translate(-50%, -50%);
  background-color: #d9d9d9;
  clip-path: polygon(10% 0, 100% 50%, 10% 100%);
}
.lp-video-button.is-paused::after {
  content: none;
}
.lp-video-buttonText {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.lp-headingLevel2 {
  position: relative;
  z-index: var(--LP_Z_INDEX_DEFAULT);
  margin-bottom: 2rem;
  padding: min(2.2rem + (1vw - 0.36rem) * (2.4358974359), 6rem) 0;
  font-size: min(1.8rem + (1vw - 0.36rem) * (1.4102564103), 4rem);
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .lp-headingLevel2 {
    margin-bottom: 0.8rem;
    padding: 2.2rem 2rem;
  }
}
@media screen and (max-width: 360px) {
  .lp-headingLevel2 {
    font-size: 1.8rem;
  }
}
.lp-headingLevel2::after {
  content: "";
  display: block;
  position: absolute;
  z-index: var(--LP_Z_INDEX_BEHIND);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 137, 110, 0.3) 0%, rgba(0, 137, 110, 0) 100%);
  inset: 0;
}

.lp-label {
  display: flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.4rem 1.6rem;
  border-radius: 0.4rem;
  background-color: var(--LP_COLOR_GREEN);
  box-shadow: 0 0 0.8rem 0 rgba(0, 255, 204, 0.8);
  color: var(--LP_COLOR_DARKBLUE);
  font-size: min(1.4rem + (1vw - 0.36rem) * (0.641025641), 2.4rem);
  line-height: var(--LP_LINE_HEIGHT_PRIMARY);
}
@media screen and (max-width: 1024px) {
  .lp-label {
    margin-inline: auto;
    padding: 0.2rem 0.8rem;
    font-size: 1.4rem;
  }
}

.lp-listButton {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
  gap: 1.6rem;
}
.lp-listButton > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-listButton {
    gap: 1.2rem;
  }
}
.lp-listButton > li > *:last-child {
  margin-bottom: 0;
}

.lp-media {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 2.4rem;
  gap: 4rem;
}
.lp-media > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-media {
    display: initial;
  }
}
.lp-media-body > *:last-child {
  margin-bottom: 0;
}
.lp-media-text {
  margin-bottom: 1.6rem;
  font-size: min(1.6rem + (1vw - 0.36rem) * (0.5128205128), 2.4rem);
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .lp-media-text {
    font-size: 1.6rem;
    line-height: var(--LP_LINE_HEIGHT_PRIMARY);
  }
}
.lp-media-image {
  min-width: 10rem;
  max-width: 14.1rem;
}

.lp-mediaAsset {
  position: relative;
  z-index: var(--LP_Z_INDEX_DEFAULT);
  margin-bottom: 2.4rem;
}
.lp-mediaAsset::after {
  content: "";
  display: block;
  position: absolute;
  z-index: var(--LP_Z_INDEX_BEHIND);
  background-image: url(../../../../../img/products/tc-3000/201244001/201244001_bg_05.png);
  background-repeat: repeat;
  background-position: center;
  inset: 0 calc(-1 * (100vw - 100%) / 2);
}
@media screen and (max-width: 1024px) {
  .lp-mediaAsset::after {
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto max(28rem + (1vw - 0.36rem) * (42.1686746988), 28rem);
  }
}
.lp-mediaAsset-content {
  display: grid;
  grid-template-areas: "image header" "image body";
  grid-template-columns: max-content minmax(0, max-content);
  justify-content: center;
  padding: 5.2rem 0 6.8rem;
  gap: 2.7rem min(2.7rem + (1vw - 1.024rem) * (3.0133928571), 5.4rem);
}
@media screen and (max-width: 1024px) {
  .lp-mediaAsset-content {
    grid-template-areas: "header" "image" "body";
    grid-template-columns: initial;
    gap: 2.4rem;
    padding: 2.4rem 0 0;
  }
}
.lp-mediaAsset-title {
  font-size: min(2.4rem + (1vw - 0.36rem) * (1.2820512821), 4.4rem);
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
  line-height: 1.4;
  text-shadow: 0 0 1.6rem #000;
}
@media screen and (max-width: 360px) {
  .lp-mediaAsset-title {
    font-size: 2.4rem;
  }
}
.lp-mediaAsset-header {
  grid-area: header;
  text-align: center;
}
.lp-mediaAsset-body {
  grid-area: body;
  padding: 3.2rem;
  border-radius: 0.8rem;
  background-color: rgba(58, 57, 70, 0.8);
}
.lp-mediaAsset-body > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-mediaAsset-body {
    padding: 2rem;
  }
}
.lp-mediaAsset-image {
  position: relative;
  grid-row: 1/-1;
  width: min(15rem + (1vw - 0.36rem) * (14.1025641026), 37rem);
  justify-self: flex-end;
}
@media screen and (max-width: 1024px) {
  .lp-mediaAsset-image {
    grid-row: initial;
    min-width: 15rem;
    margin-inline: auto;
  }
}
.lp-mediaAsset-image > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .lp-mediaAsset-image > img {
    position: initial;
    top: initial;
    transform: initial;
  }
}

.lp-navigation {
  display: flex;
  margin-bottom: 2.4rem;
  padding: 1.2rem 1.6rem;
  transition: opacity 0.3s ease;
  border-radius: 0.8rem;
  background-color: #0f0f12;
  box-shadow: 0 0.6rem 0.6rem rgba(0, 0, 0, 0.25);
  gap: 1rem;
}
.lp-navigation-outer {
  width: fit-content;
  max-width: min(98rem + (1vw - 1.024rem) * (40.1785714286), 134rem);
  margin: 0 auto 4.8rem;
  padding: 1.6rem 0 0;
  inset: 0 0 auto;
}
.lp-navigation-outer > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-navigation-outer {
    padding: 0;
  }
}
.lp-navigation > *:last-child {
  margin-bottom: 0;
}
.lp-navigation > li {
  display: flex;
}
.lp-navigation > li > *:last-child {
  margin-bottom: 0;
}
.lp-navigation > li:has(.lp-listButton) {
  position: relative;
  margin-left: 1.6rem;
}
.lp-navigation > li:has(.lp-listButton)::before {
  content: "";
  display: block;
  position: absolute;
  left: -1.6rem;
  width: 1px;
  height: 100%;
  opacity: 0.3;
  background-color: var(--LP_COLOR_WHITE);
}
.lp-navigation > li .lp-listButton > li {
  display: flex;
}
.lp-navigation > li .lp-listButton .lp-buttonConversion {
  display: flex;
  justify-content: center;
}
.lp-navigation-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min(12rem + (1vw - 1.024rem) * (13.3928571429), 24rem);
  padding: 1.2rem 2rem;
  transition: background-color 0.2s, color 0.2s;
  color: var(--LP_COLOR_GRAY);
  font-size: 1.6rem;
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
  text-decoration: none;
}
.lp-navigation-text:hover, .lp-navigation-text.is-active {
  border-radius: 0.4rem;
  opacity: 0.9;
  background-color: var(--LP_COLOR_DARKPURPLE);
  color: var(--LP_COLOR_GREEN);
}

[data-script-enabled=true] .lp-navigation-outer {
  visibility: hidden;
  position: fixed;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
}
[data-script-enabled=true] .lp-navigation-outer:has(.lp-navigation.is-shown) {
  visibility: visible;
  z-index: var(--LP_Z_INDEX_LAYER2);
  opacity: 1;
}

.lp-scroll {
  position: absolute;
  inset: auto 0 6rem 0;
}
.lp-scroll-text {
  display: block;
  width: fit-content;
  margin: 0 auto 1.3rem;
  color: currentColor;
  font-size: 1.6rem;
  line-height: 1;
}
.lp-scroll-mark {
  display: block;
  position: relative;
  width: 1.6rem;
  height: 0.8rem;
  margin: 0 auto 0.6rem;
  background: currentColor;
  clip-path: polygon(0 8%, 11% 0, 50% 62%, 89% 0, 100% 8%, 50% 100%);
}
.lp-scroll-mark.of-fadeAnimation {
  animation: fadeIn 0.8s ease-in-out 5 alternate 0.2s forwards;
  opacity: 0;
}
.lp-scroll-mark.of-fadeAnimation:nth-of-type(3) {
  animation: fadeIn 0.8s ease-in-out 5 alternate 0.4s forwards;
}
.lp-scroll-mark.of-fadeAnimation:nth-of-type(4) {
  animation: fadeIn 0.8s ease-in-out 5 alternate 0.6s forwards;
}

.lp-step {
  position: relative;
  margin-bottom: 2.4rem;
  padding-inline: min(2.4rem + (1vw - 1.024rem) * (2.6785714286), 4.8rem);
}
.lp-step > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-step {
    padding-inline: 0;
  }
}
.lp-step-column {
  position: relative;
  z-index: var(--LP_Z_INDEX_DEFAULT);
  padding-top: 1.6rem;
  padding-bottom: 14.4rem;
}
.lp-step-column > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-step-column {
    padding-bottom: 8rem;
  }
}
.lp-step-column:last-of-type {
  padding-bottom: 0;
}
.lp-step-column::after {
  content: "";
  display: block;
  position: absolute;
  z-index: var(--LP_Z_INDEX_BEHIND);
  top: 1.6rem;
  right: max(-1 * (100vw - 100%) / 2, -1 * (1920px - 100%) / 2);
  width: 100%;
  max-width: min(52.1rem + (1vw - 1.365rem) * (25.7657657658), 66.4rem);
  background-image: url(../../../../../img/products/tc-3000/201244001/201244001_bg_02.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  aspect-ratio: 8/9;
}
@media screen and (max-width: 1365px) {
  .lp-step-column::after {
    display: none;
  }
}
.lp-step-column.of-background-primary::after {
  left: max(-1 * (100vw - 100%) / 2, -1 * (1920px - 100%) / 2);
  background-image: url(../../../../../img/products/tc-3000/201244001/201244001_bg_03.png);
  background-position: left;
}
@media screen and (max-width: 1365px) {
  .lp-step-column.of-background-primary::after {
    display: none;
  }
}
.lp-step-column.of-background-secondary::after {
  background-image: url(../../../../../img/products/tc-3000/201244001/201244001_bg_04.png);
}
@media screen and (max-width: 1365px) {
  .lp-step-column.of-background-secondary::after {
    display: none;
  }
}
.lp-step-titleGroup {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.4rem;
}
.lp-step-titleGroup > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-step-titleGroup {
    flex-direction: column;
    gap: 0.4rem;
    align-items: initial;
  }
}
.lp-step-label {
  display: flex;
  position: relative;
  align-items: center;
  align-self: stretch;
  min-width: 12rem;
  max-width: 26rem;
  padding-right: 2rem;
  font-size: min(1.6rem + (1vw - 0.36rem) * (0.5128205128), 2.4rem);
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
}
@media screen and (max-width: 1024px) {
  .lp-step-label {
    padding-right: 0;
  }
}
@media screen and (max-width: 360px) {
  .lp-step-label {
    font-size: 1.6rem;
  }
}
.lp-step-label::before {
  content: "";
  position: absolute;
  top: 2em;
  left: max(-2.4rem + (1vw - 1.024rem) * (-2.6785714286), -4.8rem);
  width: 1.6rem;
  height: 1.6rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--LP_COLOR_GREEN);
  filter: drop-shadow(0 0 0.8rem rgba(0, 255, 204, 0.5));
}
@media screen and (max-width: 1024px) {
  .lp-step-label::before {
    top: 1rem;
    left: -2rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}
.lp-step-label::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  opacity: 0.3;
  background-color: #d9d9d9;
}
@media screen and (max-width: 1024px) {
  .lp-step-label::after {
    content: none;
  }
}
.lp-step-title {
  margin-bottom: 0.8rem;
  font-size: min(1.8rem + (1vw - 0.36rem) * (0.8974358974), 3.2rem);
  font-weight: var(--LP_FONT_WEIGHT_MEDIUM);
  line-height: var(--LP_LINE_HEIGHT_PRIMARY);
}
@media screen and (max-width: 360px) {
  .lp-step-title {
    font-size: 1.8rem;
  }
}
.lp-step-video {
  width: 100%;
  height: 100%;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .lp-step-video {
    margin-bottom: 1.6rem;
  }
}
.lp-step-border {
  position: absolute;
  inset: 1.6rem auto 0 0;
}
.lp-step-border::before, .lp-step-border::after {
  content: "";
  position: absolute;
  inset: 4.4rem auto 0 0;
  width: 0.3rem;
  height: 98%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(232, 232, 232, 0.2) 96.15%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 1024px) {
  .lp-step-border::before, .lp-step-border::after {
    top: 1em;
    left: -2rem;
  }
}
.lp-step-border::after {
  height: min(var(--height), 98%);
  background-image: linear-gradient(180deg, var(--LP_COLOR_GREEN) 0%, var(--LP_COLOR_GREEN) 89.42%, rgba(0, 255, 204, 0) 100%);
  box-shadow: 0 0 0.8rem 0 rgba(0, 255, 204, 0.5);
}

.lp-text {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  line-height: var(--LP_LINE_HEIGHT_PRIMARY);
}
@media screen and (max-width: 1024px) {
  .lp-text {
    font-size: 1.4rem;
  }
}

.lp-textPhone {
  margin-bottom: 2.4rem;
}
.lp-textPhone > *:last-child {
  margin-bottom: 0;
}
.lp-textPhone-body {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.4rem 1.6rem;
}
.lp-textPhone-body > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-textPhone-body {
    flex-direction: column;
  }
}
.lp-textPhone-number {
  max-width: 32rem;
  font-size: 2rem;
  font-weight: var(--LP_FONT_WEIGHT_BOLD);
  line-height: 1;
}
.lp-textPhone-numberGroup {
  display: flex;
  flex-shrink: 0;
  gap: 0.8rem;
}
.lp-textPhone-numberGroup > *:last-child {
  margin-bottom: 0;
}
.lp-textPhone-note {
  display: block;
  font-size: 1.2rem;
  line-height: var(--LP_LINE_HEIGHT_PRIMARY);
}
.lp-textPhone-icon {
  width: 3.5rem;
  height: 2rem;
}
.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-textPhone.of-center {
  text-align: center;
}
.lp-textPhone.of-center .lp-textPhone-numberGroup {
  justify-content: center;
}

a.lp-textPhone-body,
a:hover.lp-textPhone-body {
  color: currentColor;
  text-decoration: none;
  cursor: default;
}

.lp-utility-line-break {
  display: block;
}
.lp-utility-display-inlineBlock {
  display: inline-block;
}
.lp-utility-textAlign-center {
  text-align: center;
}
.lp-utility-justifyContent-center {
  justify-content: center;
}
.lp-utility-color-emphasis {
  color: var(--LP_COLOR_GREEN);
}

@media not screen and (max-width: 1365px) {
  .lp-extraLargeScreen-hide {
    display: none;
  }
  .lp-extraLargeScreen-lastChild {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1365px) {
  .lp-largeScreen-textAlign-center {
    text-align: center;
  }
  .lp-largeScreen-hide {
    display: none;
  }
  .lp-largeScreen-justifyContent-center {
    justify-content: center;
  }
}
@media not screen and (max-width: 1024px) {
  .lp-smallScreen-show {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .lp-smallScreen-textAlign-center {
    text-align: center;
  }
  .lp-smallScreen-hide {
    display: none;
  }
  .lp-smallScreen-show {
    display: block;
  }
  .lp-smallScreen-justifyContent-center {
    justify-content: center;
  }
  .lp-smallScreen-line-break {
    display: block;
  }
}
