.wrapper {
  max-width: none;
}
.wrapper .application {
  max-width: 768px;
  margin: 0 auto;
}

.is_mo {
  display: none;
}

.heroSection {
  position: relative;
  overflow: hidden;
  background: #0050ff;
}
.heroSection > img {
  position: relative;
  width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}
.heroSection .shake {
  animation: shake 1s ease-in-out infinite;
}
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-3px, 0);
  }
  40% {
    transform: translate(3px, 0);
  }
  60% {
    transform: translate(-3px, 0);
  }
  80% {
    transform: translate(3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.heroSection .heroInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  z-index: 1;
}
.heroSection .heroInner .titleBox p {
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: Pretendard;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px; /* 104.167% */
}
.heroSection .heroInner .titleBox p span {
  color: #ff8374;
}
.heroSection .heroInner .titleBox strong {
  position: relative;
  display: inline-block;
}
.heroSection .heroInner .titleBox strong .bell {
  position: absolute;
  right: -10px;
  top: -60px;
}
.heroSection .heroInner .phoneBox {
  position: relative;
  margin-top: auto;
}
.heroSection .heroInner .phoneBox .clock {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  left: 0;
  top: 90px;
  width: 100%;
}
.heroSection .heroInner .phoneBox .clock .clock-time {
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 94px;
  font-style: normal;
  font-weight: 700;
  line-height: 96px; /* 133.31% */
}
.heroSection .heroInner .phoneBox .clock .clock-date {
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 133.31% */
}
.heroSection .heroInner .phoneBox .desc {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: rgba(119, 29, 29, 0.6);
  text-align: center;
  font-family: Pretendard;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 129.412% */
}

.textBanner {
  padding: 106px 0 60px 0;
}
.textBanner p {
  margin-bottom: 22px;
  color: #222;
  font-family: Pretendard;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: -2px;
}
.textBanner p span {
  color: #ff2121;
}
.textBanner strong {
  display: flex;
  justify-content: center;
  width: 768px;
  height: 136px;
  margin: 0 auto;
  align-items: center;
  background: linear-gradient(90deg, #51a9ff 0%, #0051ff 100%);
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 62px;
  font-style: normal;
  font-weight: 700;
  line-height: 63px; /* 101.613% */
  letter-spacing: -0.96px;
}

.desc_noti {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #565656;
}

.userList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.userList .swiper-slide {
  padding-top: 0;
  width: calc(50% - 5px);
}
.userList .swiper-slide .image {
  width: 47%;
}
.userList .swiper-slide .txt {
  right: 14px;
}
.userList .swiper-slide .txt strong {
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  font-size: 67px;
  line-height: 80px;
}
.userList .swiper-slide .txt strong span {
  color: #0f2b66;
  font-family: Pretendard;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  margin-left: 4px;
  letter-spacing: -2px;
}
.userList .swiper-slide p {
  position: absolute;
  right: 0;
  bottom: 63%;
  font-size: 14px;
  text-align: center;
  padding-left: 40px;
  margin-bottom: 0;
  background-size: 30px;
}
.userList .swiper-slide p span {
  color: #ff2121;
}
.userList .swiper-slide.slide03 .image {
  width: 54%;
}
.userList .swiper-slide.slide03 strong {
  font-size: 56px;
}

@keyframes bg {
  0% {
    background: #ed372a;
  }
  50% {
    background: #000;
  }
  100% {
    background: #ed372a;
  }
}
.fixedBtn {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 10px;
  width: 100%;
  max-width: 750px;
  height: 144px;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 20px;
  animation: bg 1s infinite;
  z-index: 10;
  background: #ed372a;
}
.fixedBtn.show {
  display: block;
}

.section_04 .graph {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .is_mo {
    display: block;
  }
  .is_pc {
    display: none;
  }
  .heroSection {
    display: flex;
  }
  .heroSection > img {
    width: 100%;
  }
  .heroSection .heroInner {
    padding-top: 0;
  }
  .heroSection .heroInner .titleBox {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 12vw;
    transform: translateX(-50%);
  }
  .heroSection .heroInner .titleBox p {
    margin-bottom: 6%;
    font-size: 28px;
    line-height: 28px; /* 104.167% */
  }
  .heroSection .heroInner .titleBox strong {
    width: calc(100% - 32px);
    max-width: 360px;
    margin: 0 auto;
  }
  .heroSection .heroInner .titleBox strong .text {
    width: 100%;
  }
  .heroSection .heroInner .titleBox strong .bell {
    width: 100%;
    max-width: 54px;
    top: -20px;
  }
  .heroSection .heroInner .phoneBox {
    position: absolute;
    margin-top: auto;
    bottom: 50vw;
  }
  .heroSection .heroInner .phoneBox img {
    width: 100%;
  }
  .heroSection .heroInner .phoneBox .clock {
    position: static;
    top: 18%;
    gap: 2%;
  }
  .heroSection .heroInner .phoneBox .clock .clock-time {
    font-size: 340%;
    line-height: 100%;
  }
  .heroSection .heroInner .phoneBox .clock .clock-date {
    font-size: 100%;
    line-height: 100%; /* 133.31% */
  }
  .heroSection .heroInner .phoneBox .desc {
    display: none;
    font-size: 10px;
    line-height: 14px; /* 129.412% */
  }
  .textBanner {
    padding: 62px 16px 50px 16px;
  }
  .textBanner p {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 30px;
  }
  .textBanner strong {
    width: 100%;
    height: 68px;
    font-size: 30px;
    line-height: 32px; /* 101.613% */
  }
  .userList {
    gap: 0;
    flex-wrap: nowrap;
  }
  .userList .swiper-slide .image {
    width: 47% !important;
  }
  .userList .swiper-slide p {
    font-size: 14px;
    bottom: 70%;
  }
  .userList .swiper-slide .txt {
    bottom: 20px;
  }
  .userList .swiper-slide .txt strong {
    display: flex;
    align-items: flex-end;
  }
  .userList .swiper-slide.slide03 .image {
    width: 54% !important;
  }
  .userList .swiper-slide.slide03 strong {
    display: flex;
    align-items: flex-end;
  }
  .userList .swiper-slide.swiper-slide-active .txt strong {
    font-size: 66px;
    line-height: 70px; /* 61.069% */
    padding: 0;
  }
  .userList .swiper-slide.swiper-slide-active .txt strong span {
    margin-left: 4px;
    font-size: 20px;
    line-height: 40px; /* 61.069% */
    vertical-align: bottom;
  }
  .section_04 .text {
    font-size: 14px;
  }
  .section_04 .profit u {
    font-size: 24px;
    vertical-align: 0px;
  }
  #user_call::-moz-placeholder {
    font-size: 10px;
  }
  #user_call::placeholder {
    font-size: 10px;
  }
  .fixedBtn {
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 70px;
    transform: translateX(0);
    font-size: 24px;
    border-radius: 10px;
  }
}/*# sourceMappingURL=style.css.map */