@charset "UTF-8";

/* main */
#main .width-wrap .top-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
#main .width-wrap .top-area .left-zone .box {
  position: relative;
}
#main .width-wrap .top-area .left-zone h2 {
  color: var(--po-op1);
}
#main .width-wrap .top-area .left-zone h2.fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
  transition: all 0.3s;
  animation: w100 1.5s forwards alternate;
}
#main .width-wrap .top-area .left-zone .box:last-child h2:last-child.fill {
  animation-delay: 0.8s;
}
#main .width-wrap .top-area .left-zone h2.fill span {
  color: var(--po);
  white-space: nowrap;
}

#video {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-area {
  width: 79.7901%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* flow */
#flow .width-wrap .bottom-area {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-top: 120px;
}
#flow .width-wrap .bottom-area .left-zone {
  display: flex;
  gap: 50px;
}
#flow .width-wrap .bottom-area .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
#flow .width-wrap .bottom-area .left-zone .box {
  flex: 1;
}
#flow .width-wrap .bottom-area .box .img {
  width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  background: #f9f9f9;
}
#flow .width-wrap .bottom-area > .box .img {
  background: var(--po);
}
#flow .width-wrap .bottom-area .box .img img {
  width: 48px;
}
#flow .width-wrap .bottom-area > img {
  width: 33.6px;
}

/* support */
#support {
  overflow: hidden;
}
#support .width-wrap p:first-child {
  text-align: end;
  transform: translateX(-66%);
}
#support .width-wrap p:nth-child(2) {
  margin: 10px 0 160px;
  transform: translateX(42%);
}

/* inquery */
#inquery {
  background: url("/media/img/screen/bg_main_inquery.jpg") 50% / cover no-repeat;
}
#inquery .width-wrap p {
  margin: 24px 0 100px;
}

/* strengths */
#strengths .width-wrap .bottom-area {
  display: grid;
  grid-template-columns: 1fr 1.88fr;
  gap: 60px;
  margin-top: 80px;
}
#strengths .width-wrap .bottom-area .left-zone {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
#strengths .width-wrap .bottom-area .left-zone li {
  padding: 40px 32px;
  box-sizing: border-box;
  border-radius: 20px;
  background: var(----white, #fff);
  cursor: pointer;
  transition: all 0.25s linear;
  opacity: 1;
  width: auto;
  height: auto;
  margin: 0;
}
#strengths .width-wrap .bottom-area .left-zone li:hover {
  box-shadow: 2px 2px 24px 0px rgba(51, 51, 51, 0.1);
}
#strengths
  .width-wrap
  .bottom-area
  .left-zone
  li.swiper-pagination-bullet-active {
  background: var(--box-gradient2);
  color: var(--white);
}
#strengths
  .width-wrap
  .bottom-area
  .left-zone
  li.swiper-pagination-bullet-active
  svg
  path {
  stroke: var(--white);
}
#strengths .width-wrap .bottom-area .right-zone {
  text-align: center;
  border-radius: 20px;
  background: #f9f9f9;
  padding: 48px;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
}
#strengths .width-wrap .bottom-area .right-zone img {
  width: 100%;
}
#strengths .width-wrap .bottom-area .right-zone p:nth-child(3) {
  margin: 40px 0 16px;
}

/* price */
#price {
  background: #f9f9f9;
}
#price .width-wrap .bottom-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 80px;
}
#price .width-wrap .bottom-area .box {
  padding: 48px;
  box-sizing: border-box;
  border-radius: 20px;
  background: var(--white);
}
#price .width-wrap .bottom-area .box .top-zone {
  display: flex;
  align-items: center;
  gap: 12px;
}
#price .width-wrap .bottom-area .box .list-zone {
  margin: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 7px;
}

/* contact */
#contact {
  background: var(--black);
}
#contact .width-wrap {
  z-index: 1;
}
#contact .width-wrap .btn-area {
  margin-top: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
#contact > img {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 0;
  transform: translateX(-80%);
}

/* responsive */
@media all and (max-width: 1540px) {
  #price .width-wrap .bottom-area {
    grid-template-columns: 1fr;
    max-width: 685px;
    margin: 80px auto 0;
  }
}
@media all and (max-width: 1450px) {
  #flow .width-wrap .bottom-area .left-zone {
    flex-wrap: wrap;
  }
}
@media all and (max-width: 1415px) {
  #strengths .width-wrap .bottom-area {
    grid-template-columns: auto 1.88fr;
    gap: 40px;
  }
  #strengths .width-wrap .bottom-area .left-zone li {
    padding: 30px 22px;
  }
}
@media all and (max-width: 1200px) {
  #support .width-wrap p:nth-child(2) {
    margin: 5px 0 110px;
  }

  #contact .width-wrap .btn-area {
    margin-top: 100px;
    grid-template-columns: 1fr 1fr;
  }
  #contact .width-wrap .btn-area a:last-child {
    grid-column: 1/3;
  }
  #contact .width-wrap .btn-area a svg {
    width: 20px;
    height: 20px;
  }
}
@media all and (max-width: 1065px) {
  #flow .width-wrap .bottom-area .box .img {
    width: 180px;
  }
  #flow .width-wrap .bottom-area .box .img img {
    width: 43px;
  }
}
@media all and (max-width: 1000px) {
  #main .width-wrap .top-area {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  #main .video-area {
    height: auto !important;
  }
  #main .video-area video {
    width: 100vw;
  }

  #flow .width-wrap .bottom-area {
    flex-direction: column;
    gap: 50px;
    margin-top: 80px;
  }
  #flow .width-wrap .bottom-area > img {
    transform: rotate(90deg) !important;
  }
  #flow .width-wrap .bottom-area .left-zone {
    gap: 25px;
  }

  #strengths .width-wrap .bottom-area {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  #strengths .width-wrap .bottom-area .left-zone {
    flex-direction: row;
    gap: 12px;
  }
  #strengths .width-wrap .bottom-area .left-zone li {
    padding: 30px;
    width: 100%;
    justify-content: center;
    box-shadow: 2px 2px 24px 0px rgba(51, 51, 51, 0.1);
  }
  #strengths .width-wrap .bottom-area .left-zone li p {
    display: none;
  }
}
@media all and (max-width: 600px) {
  #price .width-wrap .bottom-area .box .list-zone {
    margin: 24px 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #contact .width-wrap .btn-area {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #contact .width-wrap .btn-area a:last-child {
    grid-column: 1 / 2;
  }
}
@media all and (max-width: 500px) {
  #main .width-wrap .top-area {
    margin-bottom: 32px;
  }

  #flow .width-wrap h6 {
    font-size: 20px;
    letter-spacing: -0.8px;
  }
  #flow .width-wrap .bottom-area {
    margin-top: 40px;
    gap: 32px;
  }
  #flow .width-wrap .bottom-area .left-zone {
    gap: 12px;
  }
  #flow .width-wrap .bottom-area .box .img {
    width: 140px;
  }
  #flow .width-wrap .bottom-area .box .img img {
    width: 38px;
  }
  #flow .width-wrap .bottom-area > img {
    width: 23px;
  }

  #support .width-wrap p:nth-child(2) {
    margin: 0 0 60px;
  }
  #support .width-wrap p:last-child {
    font-size: 12px;
    letter-spacing: -0.48px;
  }

  #inquery .width-wrap p {
    margin: 14px 0 40px;
  }
  #inquery .width-wrap a {
    padding: 10px 16px;
    border-radius: 8px;
  }

  #strengths .width-wrap .bottom-area {
    gap: 24px;
    margin-top: 28px;
  }
  #strengths .width-wrap .bottom-area .left-zone li {
    border-radius: 10px;
    padding: 16px;
  }
  #strengths .width-wrap .bottom-area .left-zone li svg {
    width: 20px;
    max-height: 20px;
  }
  #strengths .width-wrap .bottom-area .right-zone {
    padding: 20px;
  }
  #strengths .width-wrap .bottom-area .right-zone p:nth-child(3) {
    margin: 28px 0 10px;
  }
  #price .width-wrap .bottom-area .box {
    padding: 20px;
    border-radius: 16px;
  }

  #price .width-wrap h6 {
    font-size: 20px;
    letter-spacing: -0.8px;
  }
  #price .width-wrap .bottom-area {
    margin: 40px auto 0;
  }
  #price .width-wrap .bottom-area .box .top-zone {
    align-items: flex-start;
    flex-direction: column;
  }
  #price .width-wrap .bottom-area .box a p {
    font-size: 14px;
    letter-spacing: -0.56px;
  }
}
