: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 {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.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);
}
@media screen and (max-width: 1024px) {
  .lp-layout-container {
    display: block;
    place-items: initial;
    min-height: 100%;
  }
}

.lp-layout-footer {
  position: absolute;
  justify-content: center;
  background-color: transparent;
  color: var(--LP_COLOR_WHITE);
  inset: auto 0 0 0;
}
@media screen and (max-width: 1024px) {
  .lp-layout-footer {
    inset: auto 0 0 0;
    position: initial;
  }
}
.lp-layout-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1920px;
  margin-inline: auto;
  gap: 1.2rem 2.5rem;
  padding: 2.4rem 8rem;
}
.lp-layout-footer-content > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .lp-layout-footer-content {
    max-width: 52rem;
    padding: 0 2rem 2.4rem;
  }
}
.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-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 {
  width: 100%;
}
.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/201244002/201244002_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: min(7.2rem + (1vw - 1.024rem) * (6.4732142857), 13rem) min(2rem + (1vw - 1.024rem) * (6.6964285714), 8rem);
  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) 2.4rem;
  }
}
.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-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-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-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-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;
  }
}
