* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Pragmatica;
  font-style: normal;
  src: url("./src/fonts/Pragmatica.ttf");
  font-display: swap;
}
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #333;
  scroll-behavior: smooth;
}

.main {
  font-family: "Noto Sans JP", sans-serif;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.title {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.title__eng {
  font-family: "Pragmatica", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .title__eng {
    font-size: 1.4rem;
  }
}
.title__jp {
  font-size: 4rem;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .title__jp {
    font-size: 3.2rem;
  }
}
.title::before {
  content: "";
  width: 30px;
  height: 15px;
  background: url("./src/img/jkc500/icons/caret-down-blue.svg") no-repeat center/contain;
}

.header {
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100px;
  position: fixed;
}
@media screen and (max-width: 767px) {
  .header {
    height: 55px;
    background-color: #fff;
  }
}
.header__content {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__content {
    position: relative;
    padding: 8px 11px 7px;
  }
}
.header__logo {
  width: auto;
  height: 65px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 200px;
    height: 40px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__menu {
    left: 0;
    top: 55px;
    width: 100%;
    height: 100vh;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
  }
}
@media screen and (max-width: 767px) {
  .header__menu.active {
    max-height: 10000px;
  }
}
.header__menu-wrap {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__menu-wrap {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__link {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1em;
  font-size: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .header__link {
    font-size: 1.6rem;
    padding: 24px 40px;
    background-color: #f6f6f6;
  }
}
.header__link::before {
  width: 6px;
  content: "";
  height: 12px;
  background: url("./src/img/jkc500/icons/caret-right.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .header__link:not(:last-child) {
    border-bottom: 1px solid #b8b8b8;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar {
    width: 40px;
  }
}
.header__menubar.active .header__menubar-line--1 {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__menubar.active .header__menubar-line--2 {
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.header__menubar-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__menubar-wrap {
    height: 16px;
    margin-bottom: 3px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-line {
    width: 30px;
    height: 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    background-color: #333;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-line--1 {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-line--2 {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-text {
    display: none;
    text-align: center;
    font: 700 1rem "Pragmatica", sans-serif;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-text--close {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__menubar-text.active {
    display: block;
  }
}

.lp {
  overflow: hidden;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.lp__mv {
  overflow: hidden;
  position: relative;
  margin-top: 106px;
  padding: 0 1.25% 279px;
}
@media screen and (max-width: 1820px) {
  .lp__mv {
    padding-bottom: 240px;
  }
}
@media screen and (max-width: 1500px) {
  .lp__mv {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 1200px) {
  .lp__mv {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv {
    margin-top: 0;
    padding-bottom: 132px;
  }
}
.lp__mv-content {
  width: 100%;
  height: 760px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10%;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1700px) {
  .lp__mv-content {
    padding: 0 8%;
  }
}
@media screen and (max-width: 1500px) {
  .lp__mv-content {
    height: 600px;
    padding: 0 3%;
  }
}
@media screen and (max-width: 1100px) {
  .lp__mv-content {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-content {
    height: 580px;
    padding-top: 24px;
    border-radius: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.lp__mv-bg {
  top: 0;
  left: 0;
  width: 100%;
  z-index: -10;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .lp__mv-bg {
    border-radius: 30px;
  }
}
.lp__mv-bg-blur {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.lp__mv-bg-blur::before, .lp__mv-bg-blur::after {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
@media screen and (max-width: 767px) {
  .lp__mv-bg-blur::before, .lp__mv-bg-blur::after {
    border-radius: 30px;
  }
}
.lp__mv-bg-blur::before {
  z-index: -9;
  position: absolute;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255, 201, 201, 0);
}
.lp__mv-bg-blur::after {
  z-index: -8;
  position: absolute;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(61, 62, 71, 0.21)), to(#6d737a));
  background-image: linear-gradient(rgba(61, 62, 71, 0.21), #6d737a);
}
.lp__mv-title {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp__mv-title {
    text-align: center;
  }
}
.lp__mv-text {
  z-index: 1;
}
.lp__mv-title-text {
  z-index: 1;
  font-size: 3.4rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.8823529412em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1700px) {
  .lp__mv-title-text {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1420px) {
  .lp__mv-title-text {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .lp__mv-title-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-title-text {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.875em;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-title-text--desc {
    font-size: 1.8rem;
  }
}
.lp__mv-title-img {
  height: auto;
  margin: 30px 0;
  width: 466.48px;
}
@media screen and (max-width: 1700px) {
  .lp__mv-title-img {
    width: 400px;
  }
}
@media screen and (max-width: 1420px) {
  .lp__mv-title-img {
    width: 300px;
  }
}
@media screen and (max-width: 1100px) {
  .lp__mv-title-img {
    width: 230px;
    margin: 6px 0 18px;
  }
}
.lp__mv-tag {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1100px) {
  .lp__mv-tag {
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-tag {
    margin-bottom: 10px;
  }
}
.lp__mv-tag-item {
  gap: 6px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: rgba(33, 39, 217, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1420px) {
  .lp__mv-tag-item {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 1100px) {
  .lp__mv-tag-item {
    gap: 1px;
    width: 80px;
    height: 80px;
  }
}
.lp__mv-tag-eng {
  letter-spacing: 0.03em;
  font: 700 1.6rem "Pragmatica", sans-serif;
}
@media screen and (max-width: 1100px) {
  .lp__mv-tag-eng {
    font-size: 1rem;
  }
}
.lp__mv-tag-jp {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1100px) {
  .lp__mv-tag-jp {
    font-size: 1rem;
  }
}
.lp__mv-scroll-img {
  left: 50%;
  top: 182px;
  z-index: 1;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1100px) {
  .lp__mv-scroll-img {
    top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-scroll-img {
    top: unset;
    bottom: -70px;
  }
}
.lp__mv-scroll-img img {
  width: 392px;
  height: auto;
}
@media screen and (max-width: 1820px) {
  .lp__mv-scroll-img img {
    width: 290px;
  }
}
@media screen and (max-width: 1500px) {
  .lp__mv-scroll-img img {
    width: 240px;
  }
}
@media screen and (max-width: 1100px) {
  .lp__mv-scroll-img img {
    width: 150px;
  }
}
.lp__mv-scroll-img-tag {
  top: 70px;
  left: 50%;
  z-index: 1;
  width: 165px;
  height: 165px;
  font-size: 2.8rem;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  -webkit-transform: translateX(150px);
          transform: translateX(150px);
  background-color: #ff2e69;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1820px) {
  .lp__mv-scroll-img-tag {
    width: 145px;
    height: 145px;
    font-size: 2.6rem;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
@media screen and (max-width: 1500px) {
  .lp__mv-scroll-img-tag {
    width: 130px;
    height: 130px;
    font-size: 2.2rem;
    -webkit-transform: translateX(70px);
            transform: translateX(70px);
  }
}
@media screen and (max-width: 1100px) {
  .lp__mv-scroll-img-tag {
    top: 50px;
    width: 100px;
    height: 100px;
    font-size: 2rem;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-scroll-img-tag {
    top: 50%;
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
    -webkit-transform: translate(70px, 35px);
            transform: translate(70px, 35px);
  }
}
.lp__mv-scroll {
  gap: 10px;
  z-index: 1;
  right: 64px;
  bottom: 60px;
  height: 50px;
  padding: 0 24px;
  position: absolute;
  color: #fff;
  border-radius: 34px;
  letter-spacing: 0.03em;
  background-color: #333;
  font: 700 1.4rem "Pragmatica", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1400px) {
  .lp__mv-scroll {
    bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lp__mv-scroll {
    gap: 3px;
    right: 12px;
    width: 62px;
    bottom: 12px;
    height: 62px;
    font-size: 1rem;
    text-align: center;
    border-radius: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp__mv-scroll::after {
  content: "";
  width: 12px;
  height: 6px;
  background: url("./src/img/jkc500/icons/caret-down.svg") no-repeat center/contain;
}
.lp__intro {
  width: 100%;
  height: 907px;
  position: relative;
  scroll-margin-top: 100px;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .lp__intro {
    height: 577px;
    scroll-margin-top: 55px;
  }
}
.lp__intro-content {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 118px;
}
@media screen and (max-width: 767px) {
  .lp__intro-content {
    padding-top: 64px;
  }
}
.lp__intro-title {
  z-index: 1;
  font-size: 4rem;
  position: relative;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp__intro-title {
    font-size: 2.8rem;
    line-height: 1.7142857143em;
  }
}
.lp__intro-img {
  left: 50%;
  top: 70%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp__intro-img {
    top: 65%;
  }
}
.lp__intro-img img {
  width: 290px;
  height: auto;
}
@media screen and (max-width: 1500px) {
  .lp__intro-img img {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .lp__intro-img img {
    width: 150px;
  }
}
.lp__intro-bg {
  bottom: 0;
  right: -40px;
  height: auto;
  width: 897.48px;
  position: absolute;
}
@media screen and (max-width: 1800px) {
  .lp__intro-bg {
    width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .lp__intro-bg {
    right: 0;
    width: 302px;
  }
}
.lp__intro-bg img {
  width: 100%;
  height: 100%;
}
.lp__function {
  position: relative;
  background: url("./src/img/jkc500/lp/intro-bg.jpg") no-repeat center/contain;
  background-size: cover;
  background-attachment: fixed;
  height: calc(100vh - 100px);
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .lp__function {
    height: unset;
    padding-top: 0;
    scroll-margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .lp__function--sp {
    padding-top: 70px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
.lp__function--intro {
  z-index: 1;
}
.lp__function-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .lp__function-wrap {
    height: unset;
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-wrap--sp {
    padding: 0;
  }
}
.lp__function-pin {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .lp__function-pin {
    top: unset;
    left: unset;
    right: unset;
    position: relative;
  }
}
.lp__function-content {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: cover;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__function-content {
    top: unset;
    left: unset;
    height: unset;
    position: relative;
  }
}
.lp__function-content:not(:first-child) {
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lp__function-content:not(:first-child) {
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-content:not(:last-child) {
    margin-bottom: 83px;
  }
}
.lp__function-content.active {
  opacity: 1;
}
.lp__function-content.active .lp__function-list--02 .lp__function-description {
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.lp__function-content.active .lp__function-description {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.lp__function-content.active .lp__function-vid {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .lp__function-content.active .lp__function-vid--left {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.lp__function-content.active .lp__function-pagi {
  opacity: 1;
}
.lp__function-product {
  left: 50%;
  top: 50%;
  display: block;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .lp__function-product {
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
    position: relative;
    text-align: center;
    margin: 48px 0 40px;
  }
}
.lp__function-product img {
  height: auto;
  width: 264px;
}
@media screen and (max-width: 1600px) {
  .lp__function-product img {
    width: 230px;
  }
}
@media screen and (max-width: 1366px) {
  .lp__function-product img {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .lp__function-product img {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-product img {
    width: 151px;
  }
}
.lp__function-list {
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .lp__function-list {
    max-width: 100%;
  }
}
.lp__function-list--02 .lp__function-description {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}
@media screen and (max-width: 767px) {
  .lp__function-list--02 .lp__function-description {
    -webkit-transform: unset;
            transform: unset;
  }
}
.lp__function-list--02 .lp__function-vid {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
@media screen and (max-width: 767px) {
  .lp__function-list--02 .lp__function-vid {
    -webkit-transform: unset;
            transform: unset;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-list--02 .lp__function-item {
    gap: 10px;
  }
}
.lp__function-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .lp__function-item {
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp__function-description {
  opacity: 0;
  max-width: 350px;
  visibility: hidden;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
@media screen and (max-width: 1200px) {
  .lp__function-description {
    max-width: 300px;
  }
}
@media screen and (max-width: 900px) {
  .lp__function-description {
    max-width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-description {
    opacity: 1;
    max-width: 100%;
    -webkit-transform: unset;
            transform: unset;
    visibility: visible;
  }
}
.lp__function-desc-img {
  width: 320px;
  height: 180px;
  margin-top: 40px;
  border-radius: 5px;
}
@media screen and (max-width: 1600px) {
  .lp__function-desc-img {
    width: 290px;
    height: 150px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .lp__function-desc-img {
    width: 290px;
    height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-desc-img {
    width: 315px;
    height: auto;
    margin-top: 5px;
  }
}
.lp__function-desc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lp__function-pagi {
  gap: 34px;
  right: 7%;
  opacity: 0;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .lp__function-pagi {
    gap: 32px;
    opacity: 1;
    right: unset;
    bottom: 18px;
    bottom: unset;
    margin-top: 33px;
    position: relative;
  }
}
.lp__function-pagi span {
  opacity: 0.4;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #333;
  font: 700 2rem "Pragmatica", sans-serif;
}
.lp__function-pagi span.active {
  opacity: 1;
}
.lp__function-num {
  display: block;
  color: #b8b8b8;
  letter-spacing: 0.03em;
  font: 700 3.2rem "Pragmatica", sans-serif;
}
@media screen and (max-width: 767px) {
  .lp__function-num {
    font-size: 2.4rem;
  }
}
.lp__function-title {
  display: block;
  font-size: 4rem;
  margin: 18px 0 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6em;
}
@media screen and (max-width: 1600px) {
  .lp__function-title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .lp__function-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-title {
    font-size: 2.8rem;
    margin: 21px 0 24px;
  }
}
.lp__function-text {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 1.7777777778em;
}
@media screen and (max-width: 1600px) {
  .lp__function-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-text {
    line-height: 2em;
  }
}
.lp__function-vid {
  z-index: 1;
  opacity: 0;
  width: 590px;
  height: 332px;
  /* cursor: pointer; */
  overflow: hidden;
  visibility: hidden;
  position: relative;
  border-radius: 5px;
  margin-right: -170px;
  -webkit-box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 24px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1800px) {
  .lp__function-vid {
    width: 500px;
    margin-right: -100px;
  }
}
@media screen and (max-width: 1500px) {
  .lp__function-vid {
    width: 450px;
    margin-right: -70px;
  }
}
@media screen and (max-width: 1400px) {
  .lp__function-vid {
    width: 350px;
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .lp__function-vid {
    width: 300px;
  }
}
@media screen and (max-width: 900px) {
  .lp__function-vid {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-vid {
    width: 100%;
    opacity: 1;
    height: 177px;
    margin-right: 0;
    -webkit-transform: unset;
            transform: unset;
    visibility: visible;
  }
}
.lp__function-vid--left {
  margin-left: -170px;
}
@media screen and (max-width: 1800px) {
  .lp__function-vid--left {
    margin-left: -100px;
  }
}
@media screen and (max-width: 1500px) {
  .lp__function-vid--left {
    margin-left: -70px;
  }
}
@media screen and (max-width: 1400px) {
  .lp__function-vid--left {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__function-vid--left {
    margin-left: 0;
  }
}
/* .lp__function-vid::before {
  top: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  mix-blend-mode: multiply;
  background-color: #b3b7c1;
} */
.lp__function-vid:hover .lp__function-vid-btn::after {
  background: url("./src/img/jkc500/icons/caret-right-white.svg") no-repeat center/contain;
  background-size: 12px 24px;
  background-position: 55% 50%;
  background-color: #2127d9;
}
/* .lp__function-vid:hover::before {
  background-color: #e0e3e9;
} */
.lp__function-vid-img {
  top: 0;
  left: 0;
  width: 100%;
  z-index: -2;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  position: absolute;
}
.lp__function-vid-btn {
  gap: 19px;
  right: 16px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.03em;
  font: 700 1.6rem "Pragmatica", sans-serif;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .lp__function-vid-btn {
    gap: 16px;
    font-size: 1.4rem;
  }
}
.lp__function-vid-btn::after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: url("./src/img/jkc500/icons/caret-right.svg") no-repeat center/contain;
  background-size: 12px 24px;
  background-position: 55% 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__function-vid-btn::after {
    width: 40px;
    height: 40px;
  }
}
.lp__function-modal {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
  padding: 0 4%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
}
.lp__function-modal video {
  width: 100%;
  height: 484px;
  max-width: 860px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__function-modal video {
    height: auto;
  }
}
.lp__function-modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.lp__self {
  z-index: 1;
  position: relative;
  padding: 120px 1.25%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .lp__self {
    padding: 80px 10px;
  }
}
.lp__self .pin-spacer:has(.lp__self-wrap) {
  z-index: 2 !important;
}
.lp__self-wrap {
  padding-bottom: 80px !important;
  height: 200vh;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .lp__self-wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-wrap {
    padding-bottom: 0 !important;
    height: auto;
  }
}
.lp__self-title {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .lp__self-title {
    margin-bottom: 0;
  }
}
.lp__self-text {
  width: 500px;
  font-size: 2rem;
  margin: 0 auto 48px;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp__self-text {
    width: 100%;
    font-size: 1.6rem;
    margin: 48px 0 40px;
  }
}
.lp__self-sticky {
  z-index: 1;
  width: 413px;
  height: 600px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .lp__self-sticky {
    width: 280px;
    height: 500px;
  }
}
@media screen and (max-width: 900px) {
  .lp__self-sticky {
    width: 240px;
    height: 400px;
  }
}
.lp__self-img {
  top: 0;
  left: 0;
  z-index: -1;
  height: 1500px;
  position: absolute;
}
.lp__self-img img {
  width: 413px;
  height: 600px;
}
@media screen and (max-width: 1200px) {
  .lp__self-img img {
    width: 280px;
    height: auto;
  }
}
@media screen and (max-height: 800px) {
  .lp__self-img img {
    -webkit-transform: scale(0.85) translateY(-100px);
            transform: scale(0.85) translateY(-100px);
  }
}
@media screen and (max-width: 900px) {
  .lp__self-img img {
    width: 240px;
    margin: 0 10px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.lp__self-container {
  width: 100%;
  height: 1000vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__self-container {
    height: unset;
  }
}
.lp__self-content {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  position: absolute;
  border-radius: 100px;
  background: url("./src/img/jkc500/lp/self-bg.svg") no-repeat center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__self-content {
    top: unset;
    left: unset;
    height: 500px;
    position: relative;
    border-radius: 30px;
  }
}
.lp__self-content--blur {
  z-index: 3;
  opacity: 0;
  background: unset;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .lp__self-content--blur {
    opacity: 0;
    height: unset;
    padding: 40px 0;
    background-color: #fff;
  }
}
.lp__self-content--blur::before {
  top: 0;
  left: 0;
  z-index: 5;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .lp__self-content--blur::before {
    content: none;
  }
}
.lp__self-content--2 {
  z-index: 4;
  opacity: 0;
}
.lp__self-items {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .lp__self-items {
    max-width: 100%;
  }
}
@media screen and (max-height: 800px) {
  .lp__self-items {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
}
@media screen and (max-width: 767px) {
  .lp__self-items {
    margin-top: 48px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.lp__self-item-wrap {
  gap: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .lp__self-item-wrap {
    gap: 115px;
    margin: -25px -40px 0 0;
  }
}
.lp__self-item-wrap--anim-opacity {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .lp__self-item-wrap--anim-opacity {
    opacity: 1;
  }
}
.lp__self-item-img {
  opacity: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .lp__self-item-img {
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.lp__self-item-img::before {
  width: 2px;
  content: "";
  position: absolute;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .lp__self-item-img::before {
    width: 1px;
  }
}
.lp__self-item-img::after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  background: url("./src/img/jkc500/icons/dot.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .lp__self-item-img::after {
    width: 17px;
    height: 17px;
  }
}
.lp__self-item-img--01 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__self-item-img--01 {
    z-index: 1;
  }
}
.lp__self-item-img--01::before {
  top: 40px;
  right: -66px;
  height: 150px;
  -webkit-transform: rotate(-70deg);
          transform: rotate(-70deg);
}
@media screen and (max-width: 900px) {
  .lp__self-item-img--01::before {
    top: 13px;
    right: -30px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-item-img--01::before {
    top: unset;
    right: 20px;
    height: 13px;
    bottom: -12px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.lp__self-item-img--01::after {
  bottom: 95px;
  right: -160px;
}
@media screen and (max-width: 1200px) {
  .lp__self-item-img--01::after {
    bottom: 45px;
  }
}
@media screen and (max-width: 900px) {
  .lp__self-item-img--01::after {
    right: -115px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-item-img--01::after {
    right: 3px;
    bottom: -24px;
  }
}
.lp__self-item-img--02 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__self-item-img--02 {
    z-index: 1;
    margin-top: -25px;
    margin-left: -25px;
  }
}
.lp__self-item-img--02::before {
  left: -66px;
  bottom: 41px;
  height: 140px;
  -webkit-transform: rotate(-70deg);
          transform: rotate(-70deg);
}
@media screen and (max-width: 900px) {
  .lp__self-item-img--02::before {
    left: -37px;
    bottom: 49px;
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-item-img--02::before {
    left: 24px;
    height: 90px;
    bottom: -78px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.lp__self-item-img--02::after {
  left: -150px;
  bottom: 115px;
}
@media screen and (max-width: 900px) {
  .lp__self-item-img--02::after {
    left: -105px;
    bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-item-img--02::after {
    bottom: -72px;
    left: -15px;
  }
}
.lp__self-item-img--03 {
  position: relative;
  margin-left: -30px;
}
@media screen and (max-width: 1200px) {
  .lp__self-item-img--03 {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-item-img--03 {
    z-index: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp__self-item-img--03::before {
  top: -150px;
  right: -66px;
  height: 270px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1200px) {
  .lp__self-item-img--03::before {
    top: -105px;
    right: -48px;
    height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-item-img--03::before {
    top: -81px;
    right: 40px;
    height: 95px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.lp__self-item-img--03::after {
  top: -135px;
  right: -185px;
}
@media screen and (max-width: 1200px) {
  .lp__self-item-img--03::after {
    top: -95px;
    right: -128px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-item-img--03::after {
    top: -73px;
    right: 2px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-content--focus {
    opacity: 1;
  }
  .lp__self-content--focus .lp__self-item-img {
    opacity: 1;
  }
}

.lp__self-item-img--mid {
  opacity: 1;
}
.lp__self-item-img--mid::before, .lp__self-item-img--mid::after {
  content: none;
}
.lp__self-item-title-jp {
  position: absolute;
  top: -78px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .lp__self-item-title-jp {
    top: -62px;
    font-size: 2.2rem;
  }
}
.lp__self-image {
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  border: 1px solid #333;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1200px) {
  .lp__self-image {
    width: 250px;
    height: 150px;
  }
}
@media screen and (max-width: 900px) {
  .lp__self-image {
    width: 220px;
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-image {
    width: 135px;
    height: 95px;
  }
}
.lp__self-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lp__self-image-mid {
  opacity: 0;
  width: 382px;
  height: auto;
  margin: 0 44px 0 34px;
}
@media screen and (max-width: 1200px) {
  .lp__self-image-mid {
    width: 280px;
  }
}
@media screen and (max-width: 900px) {
  .lp__self-image-mid {
    width: 240px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-image-mid {
    margin: 0;
    width: 119px;
    opacity: 1;
  }
}
.lp__self-image-mid--mid {
  opacity: 1;
}
.lp__self-label {
  margin-top: 17px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp__self-label {
    margin-top: 0;
  }
}
.lp__self-label-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 1200px) {
  .lp__self-label-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-label-text {
    font-size: 1.2rem;
  }
}
.lp__self-label-text .num {
  opacity: 0.3;
  margin-right: 16px;
  font: 700 3.2rem "Pragmatica", sans-serif;
}
@media screen and (max-width: 1200px) {
  .lp__self-label-text .num {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 900px) {
  .lp__self-label-text .num {
    margin-right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .lp__self-label-text .num {
    display: block;
    margin-right: 0;
    font-size: 1.4rem;
  }
}
.lp__self-info {
  z-index: 10;
  position: relative;
  color: #fff;
  letter-spacing: 0.03em;
  background-color: rgba(187, 187, 187, 0.7);
  padding: 40px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .lp__self-info {
    max-width: 263px;
    color: #333;
    background-color: transparent;
    padding: 0;
  }
}
.lp__self-info-text {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .lp__self-info-text {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 29px;
  }
}
.lp__self-info-title {
  font-size: 4.8rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .lp__self-info-title {
    display: block;
    text-align: left;
    font-size: 2.8rem;
    margin-left: 35px;
  }
}
.lp__install {
  background-color: #f0f0f0;
  padding: 120px 1.25%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp__install {
    height: 100% !important;
    padding: 30px 4%;
  }
}
.lp__install-wrapper {
  position: relative;
  width: 100%;
}
.lp__install-row, .lp__install-rows {
  height: 820px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
  position: relative;
  border-radius: 100px;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .lp__install-row, .lp__install-rows {
    height: unset;
    margin-bottom: 80px;
    background: none !important;
  }
}
.lp__install-row.active, .lp__install-rows.active {
  opacity: 1;
  visibility: visible;
}
.lp__install-row--1, .lp__install-rows--1 {
  z-index: 0;
  height: 500vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp__install-row--1, .lp__install-rows--1 {
    height: auto;
  }
}
.lp__install-row--2, .lp__install-rows--2 {
  background-image: url("./src/img/jkc500/row2-bg.jpg");
}
@media screen and (min-height: 800px) {
  .lp__install-row--2, .lp__install-rows--2 {
    background-position: calc(50% - 60px) calc(50% - 50px);
    background-repeat: no-repeat;
    background-color: #c2c7ca;
  }
}
@media screen and (min-height: 900px) {
  .lp__install-row--2, .lp__install-rows--2 {
    background-position: calc(50% - 120px) calc(50% - 90px);
  }
}
.lp__install-row--3, .lp__install-rows--3 {
  background-image: url("./src/img/jkc500/row3-bg.jpg");
}
@media screen and (min-height: 800px) {
  .lp__install-row--3, .lp__install-rows--3 {
    background-position: calc(50% - 0px) calc(50% - 50px);
    background-repeat: no-repeat;
    background-color: #b4bfc1;
  }
}
.lp__install-row--4, .lp__install-rows--4 {
  background-image: url("./src/img/jkc500/row4-bg.jpg");
}
@media screen and (min-height: 800px) {
  .lp__install-row--4, .lp__install-rows--4 {
    background-position: calc(50% - 0px) calc(50% - 25px);
    background-repeat: no-repeat;
    background-color: #838a91;
  }
}

.lp__install-row--4 .lp__install-title,
.lp__install-row--4 .lp__install-text,
.lp__install-row--4 .lp__install-num, .lp__install-rows--4 .lp__install-title,
.lp__install-rows--4 .lp__install-text,
.lp__install-rows--4 .lp__install-num {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lp__install-row--4 .lp__install-title,
  .lp__install-row--4 .lp__install-text,
  .lp__install-row--4 .lp__install-num, .lp__install-rows--4 .lp__install-title,
  .lp__install-rows--4 .lp__install-text,
  .lp__install-rows--4 .lp__install-num {
    color: unset;
  }
}
.lp__install-row--5, .lp__install-rows--5 {
  background-image: url("./src/img/jkc500/row5-bg.jpg");
}
@media screen and (min-height: 800px) {
  .lp__install-row--5, .lp__install-rows--5 {
    background-position: calc(50% - 0px) calc(50% - 10px);
    background-repeat: no-repeat;
    background-color: #b2b7bd;
  }
}

.lp__install-row--6, .lp__install-rows--6 {
  background-image: url("./src/img/jkc500/row6-bg.jpg");
}
.lp__install-row--6 .lp__install-title,
.lp__install-row--6 .lp__install-text,
.lp__install-row--6 .lp__install-num, .lp__install-rows--6 .lp__install-title,
.lp__install-rows--6 .lp__install-text,
.lp__install-rows--6 .lp__install-num {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lp__install-row--6 .lp__install-title,
  .lp__install-row--6 .lp__install-text,
  .lp__install-row--6 .lp__install-num, .lp__install-rows--6 .lp__install-title,
  .lp__install-rows--6 .lp__install-text,
  .lp__install-rows--6 .lp__install-num {
    color: unset;
  }
}
.lp__install-row--2, .lp__install-row--3, .lp__install-row--4, .lp__install-row--5 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  border-radius: 0;
  position: absolute;
}
.lp__install-row--4 .lp__install-page a {
  color: #fff;
}
.lp__install-row--6 {
  height: 100vh;
}
.lp__install-container {
  padding: 0 clamp(50px, -2.344rem + 9.563vw, 120px) clamp(50px, -2.344rem + 9.563vw, 120px);
}
@media screen and (max-width: 1600px) {
  .lp__install-container {
    padding-left: 2%;
  }
}
@media screen and (max-width: 900px) {
  .lp__install-container {
    padding-bottom: 5vh;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@media screen and (max-width: 767px) {
  .lp__install-container {
    -webkit-transform: unset;
            transform: unset;
    padding: 0;
  }
}
.lp__install-container--01 {
  padding: 0;
  left: 120px;
  bottom: 420vh;
  opacity: 0;
  position: absolute;
}
@media screen and (max-width: 1600px) {
  .lp__install-container--01 {
    left: 2%;
    bottom: 50px;
    bottom: 410vh;
  }
}
.lp__install-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}
.lp__install-page, .lp__install-pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.lp__install-page a, .lp__install-pages a {
  font-size: 1.8rem;
  font-family: "Pragmatica", sans-serif;
  color: #000;
  font-weight: 700;
  opacity: 0.4;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .lp__install-page a, .lp__install-pages a {
    font-size: 16px;
  }
}
.lp__install-page a.active, .lp__install-pages a.active {
  opacity: 1;
  padding: 0 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.lp__install-page::before, .lp__install-pages::before {
  content: "";
  height: 1px;
  width: 50px;
  background-color: #b8b8b8;
  display: inline-block;
}
.lp__install-title {
  font-size: 4rem;
}
@media screen and (max-width: 1200px) {
  .lp__install-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .lp__install-title {
    font-size: 28px;
  }
}
.lp__install-text {
  font-size: clamp(1.2rem, 0.092rem + 1.442vw, 2.4rem);
  font-weight: 700;
  margin: 30px 0 40px;
  letter-spacing: 0.03em;
  line-height: 2em;
}
@media screen and (max-width: 1600px) {
  .lp__install-text {
    margin-block: 10px 15px;
  }
}
@media screen and (max-width: 767px) {
  .lp__install-text {
    font-size: 18px;
    line-height: 2em;
    margin: 10px 0 30px;
  }
}
.lp__install-product, .lp__install-products {
  z-index: 1;
  height: 687px;
  width: 426px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.lp__install-product {
  top: 50%;
  padding-top: 45px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lp__lower-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
  background-color: #f0f0f0;
  z-index: 0;
  padding: 20px 4% 120px;
}
@media screen and (max-width: 767px) {
  .lp__lower-buttons {
    gap: 20px;
    padding: 20px 4% 60px;
    margin-top: -80px;
  }
}
.lp__lower-btn {
  width: 100%;
  max-width: 800px;
  height: 120px;
  border-radius: 65px;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__lower-btn {
    border-radius: 40px;
    font-size: 16px;
    height: 80px;
    padding: 20px;
    max-width: 400px;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.lp__lower-btn:hover::before {
  margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  .lp__lower-btn:hover::before {
    margin-bottom: -5px;
  }
}
.lp__lower-btn:hover::after {
  right: 22px;
}
.lp__lower-btn::before {
  content: "";
  height: 100%;
  width: 100%;
  border-radius: inherit;
  margin-bottom: -20px;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .lp__lower-btn::before {
    margin-bottom: -10px;
    margin-left: -20px;
  }
}
.lp__lower-btn::after {
  content: "";
  position: absolute;
  height: 50px;
  aspect-ratio: 1;
  background: url("./src/img/jkc500/btn-caret.svg") no-repeat center/cover;
  display: block;
  right: 32px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .lp__lower-btn::after {
    height: 30px;
    right: 10px;
  }
}
.lp__lower-btn--blue {
  background-color: #557edf;
}
.lp__lower-btn--blue::before {
  background-color: #3257ac;
}
.lp__lower-btn--gradient {
  background: -webkit-gradient(linear, left top, right top, from(#7cd4cb), to(#2f7894));
  background: linear-gradient(90deg, #7cd4cb 0%, #2f7894 100%);
}
.lp__lower-btn--gradient::before {
  background-color: #17536e;
}
.lp__install-sp {
  display: none;
  background-color: #f0f0f0;
}
@media screen and (max-width: 767px) {
  .lp__install-sp {
    display: block;
    padding: 80px 4%;
  }
}
.lp__install-sp-wrapper {
  width: 100%;
  position: relative;
}
.lp__install-banner {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  height: 100%;
  max-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__install-products {
    width: 145px;
    height: auto;
    bottom: 10px;
  }
}
.lp__install-lady {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 170px;
  right: -25px;
}
.lp__install-lady.lg {
  width: 28.4vw;
  max-width: 517px;
  min-width: 245px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateX(100%) !important;
          transform: translateX(100%) !important;
}
.lp__install-heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .lp__install-heading {
    margin-bottom: 48px;
  }
}
.lp__footer-text {
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: getem(16, 42);
  background-color: #f0f0f0;
}
.lp__install-fbf {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.lp__install-fbf img {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.lp__install-fbf img.active {
  opacity: 1;
}
.lp__install-sticky-img {
  width: 100%;
  height: 100vh;
  margin: 40px 0;
  overflow: hidden;
  position: relative;
  border-radius: 100px;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}