/* Variable.scss */
/* Sub-Style.css */
.sub-front {
  width: calc(100% - 6vw);
  max-width: 1920px;
  height: 480px;
  margin: 80px auto 0;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.sub-front__shade {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

@media (max-width: 1400px) {
  .sub-front {
    width: calc(100% - 10vw);
    border-radius: 1.75rem;
  }
}

@media (max-width: 1020px) {
  .sub-front {
    border-radius: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sub-front {
    margin: 70px auto 0;
    height: 75vh;
  }
}

.sub-front .M-inner {
  position: relative;
  height: 100%;
}

.sub-front__txt {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  -webkit-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
}

.sub-front__txt.product {
  top: 40%;
}

@media (max-width: 768px) {
  .sub-front__txt.product {
    top: 50%;
  }
}

.sub-front__txt.product h3, .sub-front__txt.product h4 {
  text-align: left !important;
}

@media (max-width: 768px) {
  .sub-front__txt {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sub-front__txt br {
  display: none;
}

@media (max-width: 768px) {
  .sub-front__txt br {
    display: block;
  }
}

.sub-front span,
.sub-front h1 {
  color: #fff;
  word-break: keep-all;
}

.sub-front span {
  display: block;
  font-size: 1.125rem;
  font-weight: 300;
  font-family: "Orbitron", sans-serif;
  line-height: 1.6;
  letter-spacing: 1.4px;
  margin-bottom: 0.5rem;
}

@media (max-width: 1020px) {
  .sub-front span {
    font-size: 1.125rem;
    font-family: 'Poppins', sans-serif;
  }
}

@media (max-width: 768px) {
  .sub-front span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .sub-front span {
    font-size: 0.9375rem;
  }
}

.sub-front h1 {
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1;
}

@media (max-width: 1400px) {
  .sub-front h1 {
    font-size: 2rem;
  }
}

@media (max-width: 1020px) {
  .sub-front h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .sub-front h1 {
    font-size: 1.5rem;
  }
}

.sub-front strong {
  display: block;
  font-weight: 600;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-top: 0.5rem;
  color: #95c1ff;
}

.sub-front strong.ent {
  color: #3dfff8;
}

.sub-front strong.per {
  color: #ffaa49;
}

.sub-front strong.special1 {
  color: #aedd3f;
}

@media (max-width: 1400px) {
  .sub-front strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 1020px) {
  .sub-front strong {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .sub-front strong {
    font-size: 1rem;
  }
}

.content-idx__header {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  z-index: 500;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-box-shadow: 0 3px 8px rgba(17, 26, 88, 0.1);
          box-shadow: 0 3px 8px rgba(17, 26, 88, 0.1);
}

@media (max-width: 768px) {
  .content-idx__header {
    top: 70px;
  }
}

.content-idx__listwrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 48px;
  padding: 16px 0;
  cursor: -webkit-grab;
  cursor: grab;
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: #bbb transparent;
}

.content-idx__listwrap:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.content-idx__listwrap::-webkit-scrollbar {
  height: 1px;
}

.content-idx__listwrap::-webkit-scrollbar-track {
  background: transparent;
}

.content-idx__listwrap::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 5px;
}

@media (max-width: 1020px) {
  .content-idx__listwrap {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .content-idx__listwrap {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .content-idx__listwrap {
    gap: 24px;
  }
}

.content-idx__list {
  font-size: 0.825rem;
  font-weight: 300;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.content-idx__list.on {
  font-weight: 600;
  text-decoration: underline;
}

.content-idx__list:hover {
  text-decoration: underline;
}

.content {
  margin-top: 12rem;
}

.content__idx {
  width: 100%;
}

.content__idx ~ .content__idx {
  margin-top: 12rem;
  border-radius: 4px;
}

@media (max-width: 1400px) {
  .content__idx ~ .content__idx {
    margin-top: 11rem;
  }
}

@media (max-width: 1020px) {
  .content__idx ~ .content__idx {
    margin-top: 10rem;
  }
}

@media (max-width: 768px) {
  .content__idx ~ .content__idx {
    margin-top: 9rem;
  }
}

@media (max-width: 480px) {
  .content__idx ~ .content__idx {
    margin-top: 8rem;
  }
}

.content__tit {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 1.8rem;
  color: #cacaca;
  color: #9ea8aa;
  position: relative;
  text-shadow: 1px 1px #303030;
}

@media (max-width: 1400px) {
  .content__tit {
    font-size: 1.75rem;
  }
}

@media (max-width: 1020px) {
  .content__tit {
    font-size: 1.725rem;
  }
}

@media (max-width: 480px) {
  .content__tit {
    font-size: 1.625rem;
  }
}

.content__tit.payment {
  text-align: center;
}

.content__tit br {
  display: none;
}

@media (max-width: 768px) {
  .content__tit br {
    display: block;
  }
}

.content__notice {
  font-size: 0.9375rem;
  line-height: 2.2;
}

.content__notice > a {
  display: inline;
  font-weight: 600;
  text-decoration: underline;
}

.content__notice > a:hover {
  color: #00d5ff;
}

.content__box.clause:hover dt {
  color: #00d5ff;
}

.content__box ~ .content__box {
  margin-top: 8rem;
}

.content__box ~ .content__box.qna {
  margin-top: 1.6rem;
}

.content__box ~ .content__box.video {
  margin-top: 0.4rem;
}

.content__box ~ .content__box.clause {
  margin-top: 4.5rem;
}

.content__box.brochure li a {
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.content__box.brochure li a:hover {
  color: #00d5ff;
}

.content__sub-tit {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #5c5c5c;
  line-height: 3;
  position: relative;
}

.content__sub-tit:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #cacaca;
}

.content__sub-tit.feature {
  margin-bottom: 40px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
}

.content__sub-tit.feature:after {
  display: none;
}

.content__flip {
  width: 100%;
  display: none;
}

.content__flip.open {
  display: block;
}

.content__flip iframe {
  width: 100%;
  height: calc(100vmin * 0.7);
}

.content h6 {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.content h6:hover {
  color: #00d5ff;
}

.content h6:before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url("../image/icons/icon_slidedown.svg") no-repeat center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.content h6:hover:before {
  background: url("../image/icons/icon_slidedown-hover.svg") no-repeat center;
}

.content h6.open:before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url("../image/icons/icon_slideup.svg") no-repeat center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.content h6.open:hover:before {
  background: url("../image/icons/icon_slideup-hover.svg") no-repeat center;
}

.content h6.clause {
  cursor: default;
}

.content h6.clause:before {
  display: none;
}

.content__details {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2.2;
}

.content__procedure {
  margin-top: 0.4rem;
}

.content__procedure > li {
  font-size: 0.9375rem;
  line-height: 2.2;
}

.content__procedure > li ~ li {
  margin-top: 0.4rem;
}

.content__procedure > li span {
  font-weight: 600;
  padding-right: 0.4rem;
}

.trial-product__wrap {
  margin-top: 40px;
}

.trial-product__item {
  width: 100%;
  height: 320px;
  padding: 2rem 4rem;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.trial-product__item ~ .trial-product__item {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .trial-product__item {
    height: auto;
    padding: 3.2rem 4rem;
  }
}

.trial-product__item:nth-child(1) {
  background: url(../image/bg_screen.jpg) no-repeat;
  background-position: center 0%;
  background-size: cover;
}

.trial-product__item:nth-child(2) {
  background: url(../image/bg_output.jpg) no-repeat;
  background-position: right;
  background-size: cover;
}

.trial-product__item:nth-child(3) {
  background: url(../image/bg_webcam.jpg) no-repeat;
  background-position: center 60%;
  background-size: cover;
}

.trial-product__item:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
}

.trial-product__left {
  width: 60%;
  height: 100%;
  float: left;
  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-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 768px) {
  .trial-product__left {
    width: 100%;
    height: auto;
    float: none;
  }
}

.trial-product__right {
  width: 40%;
  height: 100%;
  float: left;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .trial-product__right {
    width: 100%;
    height: auto;
    float: none;
  }
}

.trial-product__namegroup {
  word-break: keep-all;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.trial-product__namegroup h3 {
  font-weight: 700;
  font-size: 1.8vw;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1;
  color: #ffffff;
}

@media (max-width: 1400px) {
  .trial-product__namegroup h3 {
    font-size: 2.4vw;
  }
}

@media (max-width: 1020px) {
  .trial-product__namegroup h3 {
    font-size: 2.8vw;
  }
}

@media (max-width: 768px) {
  .trial-product__namegroup h3 {
    font-size: 3.8vw;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .trial-product__namegroup h3 {
    font-size: 1.9rem;
  }
}

.trial-product__namegroup h3 br {
  display: none;
}

.trial-product__namegroup h3 br.only-in-pc {
  display: block;
}

@media (max-width: 1400px) {
  .trial-product__namegroup h3 br {
    display: block;
  }
}

.trial-product__namegroup h4 {
  font-weight: 600;
  font-size: 1.4vw;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-top: 0.5rem;
}

.trial-product__namegroup h4.ent {
  color: #3dfff8;
}

.trial-product__namegroup h4.per {
  color: #ffaa49;
}

@media (max-width: 1400px) {
  .trial-product__namegroup h4 {
    font-size: 1.4vw;
  }
}

@media (max-width: 1020px) {
  .trial-product__namegroup h4 {
    font-size: 1.8vw;
  }
}

@media (max-width: 768px) {
  .trial-product__namegroup h4 {
    font-size: 2.8vw;
    text-align: left;
    margin-top: 0.25rem;
  }
}

@media (max-width: 480px) {
  .trial-product__namegroup h4 {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .trial-product__namegroup {
    text-align: center;
  }
}

.trial-product__linkgroup a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 2.4;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.trial-product__linkgroup a ~ a {
  margin-top: 0.4rem;
}

.trial-product__linkgroup a:hover {
  color: #ff6d33;
}

@media (max-width: 768px) {
  .trial-product__linkgroup a {
    display: none;
  }
}

.trial-product__linkgroup.tablet-mobile {
  display: none;
}

@media (max-width: 768px) {
  .trial-product__linkgroup.tablet-mobile {
    display: block;
    width: 100%;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .trial-product__linkgroup.tablet-mobile a {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 3;
    background-color: #ffaa49;
    color: #ffffff;
  }
}

.trial-product__linkgroup.tablet-mobile a:hover {
  background-color: #ff6d33;
}

.function__zone {
  margin-top: 0;
}

.function__zone > h2 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  word-break: keep-all;
  color: #454d58;
  text-align: center;
  position: relative;
}

.function__wrap.grid-type {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

@media (max-width: 1400px) {
  .function__wrap.grid-type {
    gap: 72px;
  }
}

@media (max-width: 1020px) {
  .function__wrap.grid-type {
    gap: 64px;
  }
}

@media (max-width: 768px) {
  .function__wrap.grid-type {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 480px) {
  .function__wrap.grid-type {
    gap: 40px;
  }
}

.function__box {
  width: 100%;
  height: auto;
  margin-top: 8rem;
  position: relative;
  border-radius: 1.2rem;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.function__box.grid-type {
  margin-top: 0;
}

.function__box-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  word-break: keep-all;
  color: #454d58;
}

.function__box-title-lower {
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 80px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 3;
}

.function__box-title-lower:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  background: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(50%, #44e0ff), to(transparent));
  background: linear-gradient(to left, transparent 0%, #44e0ff 50%, transparent 100%);
}

.function__box-title-lower.trial {
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  margin-top: 0;
  color: #ffffff;
}

@media (max-width: 768px) {
  .function__box-title-lower.trial {
    margin-top: 1rem;
  }
}

.function__box-title.qna-type {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.2px;
  text-transform: none;
  margin-bottom: 0.75rem;
}

.function__box-content {
  width: 100%;
}

@media (max-width: 1020px) {
  .function__box {
    margin-top: 7rem;
  }
}

@media (max-width: 768px) {
  .function__box {
    margin-top: 6rem;
  }
}

@media (max-width: 480px) {
  .function__box {
    margin-top: 5rem;
  }
}

.function__box:nth-child(1) {
  margin-top: 0;
}

.function__sample {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.function__sample.images {
  margin-top: 76px;
}

.function__sample-list {
  width: 49%;
  height: auto;
  padding-top: 26%;
  line-height: 2;
  position: relative;
  margin-top: 6rem;
}

@media (max-width: 768px) {
  .function__sample-list {
    width: 100%;
    padding-top: 50%;
  }
}

.function__sample-list > figure {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.function__sample-list > figure > img {
  width: 100%;
  height: calc(100%);
  -webkit-transform-origin: top;
          transform-origin: top;
}

.function__sample-list > figure > figcaption {
  width: calc(100% - 40px);
  height: 2.6rem;
  position: absolute;
  top: -2.6rem;
  left: 2.6rem;
  font-size: 0.875rem;
  padding-left: 0.875rem;
  line-height: 2.6rem;
  color: #222222;
}

@media (max-width: 480px) {
  .function__sample-list > figure > figcaption.long {
    line-height: 1.3;
    word-break: keep-all;
  }
}

.function__sample-list.images:before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: -2.6rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-weight: 700;
}

.function__sample-list.images:nth-child(1):before {
  content: "1";
}

.function__sample-list.images:nth-child(2):before {
  content: "2";
}

.function__sample-list.images:nth-child(3):before {
  content: "3";
}

.function__sample-list.images:nth-child(4):before {
  content: "4";
}

.function__sample-list.images:nth-child(1) {
  margin-top: 0;
}

.function__sample-list.images:nth-child(2) {
  margin-top: 0;
}

@media (max-width: 768px) {
  .function__sample-list.images:nth-child(2) {
    margin-top: 6rem;
  }
}

.function__apps {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.function__apps-list {
  width: 25%;
  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;
  font-weight: 500;
}

.function__apps-list > img {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .function__apps-list {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .function__apps-list {
    margin-top: 2.4rem;
  }
  .function__apps-list:nth-child(1), .function__apps-list:nth-child(2) {
    margin-top: 0;
  }
}

.function__apps.trial {
  width: 100%;
  margin-top: 1.2rem;
}

.function__apps.trial > li {
  width: 50%;
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 500;
}

.function__apps.trial > li > img {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.4rem;
}

.function__apps.trial > li:nth-child(3), .function__apps.trial > li:nth-child(4) {
  margin-top: 1rem;
}

.function__picture {
  width: 100%;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.function__picture img {
  width: 40%;
}

.function__extra {
  width: 100%;
  margin-top: 40px;
}

.function__extra-list {
  line-height: 2.4;
  padding: 3.2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.function__extra-list > strong {
  display: block;
  width: 30%;
  padding-right: 5%;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 2;
  color: #798992;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .function__extra-list > strong {
    width: 100%;
    font-weight: 300;
  }
}

.function__extra-list:first-child {
  margin-top: 0;
}

.function__extra-list:first-child:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #cacaca;
}

.function__extra-list:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #cacaca;
}

.function__extra-list img {
  width: 100%;
}

.function__desc-group {
  margin: 1rem auto 0;
  font-weight: 400;
}

.function__desc-group.extra {
  width: 70%;
  margin-top: 0;
}

@media (max-width: 768px) {
  .function__desc-group.extra {
    width: 100%;
    margin-top: 0.6rem;
  }
}

.function__desc-listtype {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.function__desc {
  line-height: 2.2;
  font-size: 0.9375rem;
}

.function__desc-em {
  display: block;
  margin-bottom: -1.2rem;
  font-weight: 700;
}

.function__desc.extra {
  text-align: left;
  font-size: 0.9375rem;
  line-height: 2.2;
  padding-left: 1.2rem;
  position: relative;
}

.function__desc.extra:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.125rem;
  background-color: #5855ff;
}

.function__desc.extra ~ .function__desc.extra {
  margin-top: 0.75rem;
}

.function__desc.add {
  margin-top: 0.4rem;
}

.function__desc.add-child {
  text-align: left;
  font-size: 0.875rem;
  line-height: 2.2;
  padding-left: 2.4rem;
  position: relative;
}

.function__desc.add-child:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.75rem;
  left: 1.2rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.2rem;
  background-color: #716effbd;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.function__desc-caption {
  font-size: 1rem;
  font-weight: 400;
  color: #6b8c97;
}

.function__desc-head {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.7;
  color: #5c5c5c;
  margin-bottom: 4px;
  padding-left: 24px;
  position: relative;
}

.function__desc-head:before {
  content: "";
  display: inline-block;
  border-radius: 4px;
  width: 14px;
  height: 14px;
  background-color: #b4b0e0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 6px;
  left: 0;
}

.function__desc-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: #303030;
  padding-left: 16px;
  position: relative;
}

.function__desc-body:before {
  content: "";
  display: inline-block;
  border-radius: 4px;
  width: 6px;
  height: 6px;
  background-color: #dbdae2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 8px;
  left: 0;
}

.function__desc-body--depth2 {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: #303030;
  padding-left: 16px;
  position: relative;
  left: 16px;
}

.function__desc-body--depth2:before {
  content: "";
  display: inline-block;
  border-radius: 4px;
  width: 6px;
  height: 6px;
  background-color: #dbdae2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 8px;
  left: 0;
}

.function__qna {
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: #303030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding-left: 16px;
  border-left: 4px solid #c3bee1;
}

.function__qna * {
  font-size: 0.875rem !important;
}

.form-style {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #d6d5ff;
  position: relative;
  height: 40px;
  line-height: 40px;
  margin: 6px 0;
  padding: 0 18px 0 18px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.form-style:hover {
  border: 2px solid #5855ff;
}

.form-style.error {
  -webkit-animation: Required_null 0.6s linear infinite alternate;
          animation: Required_null 0.6s linear infinite alternate;
}

@-webkit-keyframes Required_null {
  0% {
    border: 2px solid #ffc0c0;
  }
  100% {
    border: 2px solid #ff5c5c;
  }
}

@keyframes Required_null {
  0% {
    border: 2px solid #ffc0c0;
  }
  100% {
    border: 2px solid #ff5c5c;
  }
}

.form-style__txt {
  position: absolute;
  left: 0px;
  top: -1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 40px;
  color: #74748d;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-transform: uppercase;
}

.form-style__txt.error {
  color: #ff5c5c;
}

.form-style__form {
  width: 100%;
  line-height: 40px;
  outline: none;
  border: transparent;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.4px;
}

.form-style select {
  width: 100%;
  border: none;
  outline: none;
  line-height: 40px;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

.inquiry-btn {
  width: 320px;
  margin-top: 80px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #5855ff;
  background-color: #ffffff;
  -webkit-box-shadow: 0 3px 5px rgba(65, 72, 134, 0.2);
          box-shadow: 0 3px 5px rgba(65, 72, 134, 0.2);
  font-size: 0.875rem;
  font-weight: 600;
  color: #5855ff;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: -0.2px;
  font-family: "Poppins", sans-serif;
  line-height: 3;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.inquiry-btn:hover {
  background-color: #5855ff;
  color: #ffffff;
}

.inquiry-btn:active {
  -webkit-transform: translateX(-50%) scale(0.95);
          transform: translateX(-50%) scale(0.95);
}

.inquiry-form legend {
  display: none;
}

.inquiry-form fieldset {
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.inquiry-form fieldset ~ fieldset {
  margin-top: 30px;
}

.inquiry-form fieldset.select-group {
  display: block;
}

.inquiry-form textarea {
  width: 100%;
  height: 240px;
  resize: none;
  border: 2px solid #d6d5ff;
  position: relative;
  margin-top: 40px;
  padding: 18px;
  border-radius: 6px;
  outline: none;
  font-family: "Poppins", sans-serif;
  line-height: 1.9;
  letter-spacing: -0.4px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.inquiry-form textarea::-webkit-input-placeholder {
  line-height: 200px;
  text-align: center;
  color: #5f5f5f;
}

.inquiry-form textarea:-ms-input-placeholder {
  line-height: 200px;
  text-align: center;
  color: #5f5f5f;
}

.inquiry-form textarea::-ms-input-placeholder {
  line-height: 200px;
  text-align: center;
  color: #5f5f5f;
}

.inquiry-form textarea::placeholder {
  line-height: 200px;
  text-align: center;
  color: #5f5f5f;
}

.inquiry-form textarea:hover {
  border: 2px solid #5855ff;
}

.inquiry-form textarea.error {
  -webkit-animation: Required_null 0.6s linear infinite alternate;
          animation: Required_null 0.6s linear infinite alternate;
}

@keyframes Required_null {
  0% {
    border: 2px solid #ffc0c0;
  }
  100% {
    border: 2px solid #ff5c5c;
  }
}

.inquiry-form textarea.error::-webkit-input-placeholder {
  color: #ff5c5c;
}

.inquiry-form textarea.error:-ms-input-placeholder {
  color: #ff5c5c;
}

.inquiry-form textarea.error::-ms-input-placeholder {
  color: #ff5c5c;
}

.inquiry-form textarea.error::placeholder {
  color: #ff5c5c;
}

.inquiry-form .form-style {
  width: 47.5% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .inquiry-form .form-style {
    width: 100% !important;
  }
}

.inquiry-form .form-style.inq-type {
  padding: 0;
  margin: 30px 0;
  border: none;
}

.inquiry-form .form-style.inq-type > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inquiry-form .form-style.select-product {
  width: 47.5%;
  height: auto;
  border: none;
  margin-top: 78px;
  padding: 0;
}

.inquiry-form .form-style.select-product > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.inquiry-form .form-style.select-product > div > label {
  width: 100%;
}

.inquiry-form .form-style.select-product > div > label:nth-child(2) {
  margin-left: 1.2rem;
}

.inquiry-form input::-webkit-input-placeholder {
  color: #ff5c5c;
  opacity: 0.6;
}

.inquiry-form input:-ms-input-placeholder {
  color: #ff5c5c;
  opacity: 0.6;
}

.inquiry-form input::-ms-input-placeholder {
  color: #ff5c5c;
  opacity: 0.6;
}

.inquiry-form input::placeholder {
  color: #ff5c5c;
  opacity: 0.6;
}

.inquiry-form [type="radio"] {
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
}

.inquiry-form [type="radio"] + span {
  padding: 0 1.2rem;
  display: inline-block;
  background-color: #716effbd;
  line-height: 40px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5c5c5c;
  margin-right: 3px;
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.99, 0.75, 1.01);
  transition: all 0.2s cubic-bezier(0, 0.99, 0.75, 1.01);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 768px) {
  .inquiry-form [type="radio"] + span {
    padding: 0 0.9rem;
  }
}

.inquiry-form [type="radio"]:checked + span {
  color: #ffffff;
  background-color: #5855ff;
}

.inquiry-form [type="checkbox"] {
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #cacaca;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.99, 0.75, 1.01);
  transition: all 0.2s cubic-bezier(0, 0.99, 0.75, 1.01);
}

.inquiry-form [type="checkbox"] + span {
  padding: 0 1.2rem;
  display: inline-block;
  line-height: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5c5c5c;
  cursor: pointer;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.99, 0.75, 1.01);
  transition: all 0.2s cubic-bezier(0, 0.99, 0.75, 1.01);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 768px) {
  .inquiry-form [type="checkbox"] + span {
    padding: 0 0.9rem;
  }
}

.inquiry-form [type="checkbox"]:checked {
  border: 2px solid #716effbd;
  background-color: #716effbd;
}

.inquiry-form [type="checkbox"]:checked + span {
  color: #5855ff;
}

.inquiry-form [type="checkbox"]:disabled {
  border: 2px solid #e6e6e6;
  background-color: #e6e6e6;
}

.inquiry-form [type="checkbox"]:disabled + span {
  color: #e6e6e6;
}

.submit-blur {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: none;
}

.submit-success {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 30px;
  background-color: #0059ffe0;
  font-size: 0.9375rem;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: none;
}

.submit-success > span {
  display: block;
  position: relative;
  margin-top: 2rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
}

.submit-success > span:after {
  content: "";
  display: block;
  width: 1320px;
  max-width: 90%;
  height: 1px;
  position: absolute;
  top: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.3);
}

.submit-failed {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 30px;
  background-color: #ff3838d2;
  font-size: 0.9375rem;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: none;
}

.submit-failed > span {
  display: block;
  position: relative;
  margin-top: 2rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
}

.submit-failed > span:after {
  content: "";
  display: block;
  width: 1320px;
  max-width: 90%;
  height: 1px;
  position: absolute;
  top: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.3);
}

.email-error, .product-null-error {
  width: 1320px;
  max-width: 90%;
  padding: 1rem 2.4rem;
  margin: 1px;
  border-radius: 0.4rem;
  line-height: 30px;
  font-size: 0.9375rem;
  text-align: center;
  color: #ffffff;
  background-color: #ff3838d2;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: none;
}

.error-notice {
  width: 1320px;
  max-width: 90%;
  word-break: keep-all;
  text-align: center;
  color: #454d58;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: none;
}

.error-count {
  font-size: 2rem;
  font-weight: 700;
  color: #454d58;
}

.error-close {
  margin-top: 0.6rem;
  color: #454d58;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: none;
}

.clause p {
  font-size: 0.875rem;
  line-height: 2.5;
}

.clause__warning {
  color: red;
  font-weight: 500;
  margin-top: 20px;
}

.clause__bold {
  color: #5855ff;
  font-weight: 500;
  font-size: 1.125rem !important;
  line-height: 3;
}

.clause__sublist li ~ li {
  margin-top: 20px;
}

.clause__sublist li {
  margin-left: 24px;
  font-size: 0.875rem;
  line-height: 2.5;
  list-style: square;
}

.clause__sublist-tit {
  font-weight: 500;
}

.clause__sublist-tit p {
  font-weight: 400;
}

.clause__modified-date {
  margin-bottom: 40px;
  font-size: 0.9375rem;
  line-height: 2.5;
  text-decoration: underline;
}

.clause__modified-date.bottom {
  margin-top: 60px;
  color: #ff6d33;
}

.Text-Group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.Text-Aux {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374b6a;
  text-decoration: underline;
}
/*# sourceMappingURL=sub-style.css.map */