@keyframes downUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spanUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainImg {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    color: #0F1B2A;
  }
  51% {
    color: #fff;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes backUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes textRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes width100 {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes width1200 {
  0% {
    width: 1200px;
  }
  100% {
    width: 100%;
  }
}
@keyframes zIndex {
  0% {
    z-index: 999;
  }
  100% {
    z-index: 0;
  }
}
@keyframes arrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"), url("../fonts/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"), url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"), url("../fonts/Pretendard-Thin.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #0F1B2A;
  font-family: "Pretendard", sans-serif;
}

a {
  color: #0F1B2A;
  text-decoration: none;
  font-family: "Pretendard", sans-serif;
}

ul, li, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

html, body {
  scroll-behavior: smooth;
}

.pc-hidden {
  display: none;
}

.mobile-hidden {
  display: block;
}

.mobile-br {
  display: none;
}

@media all and (max-width: 1024px) {
  .pc-hidden {
    display: block;
  }
  .mobile-hidden {
    display: none;
  }
}
.wrap {
  position: relative;
}

.top {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
header .header {
  padding: 0 50px;
  height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: 0.3s;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  header .header {
    padding: 0 25px;
  }
}
header .header .logo {
  width: 9.75rem;
}
header .header .logo img {
  width: 100%;
}
header .header nav ul {
  display: flex;
  gap: 65px;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  header .header nav ul {
    gap: 35px;
  }
}
header .header nav ul li {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
header .header nav ul li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -11px;
  left: 0;
  background-color: #6938EF;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
header .header nav ul li.on::after {
  visibility: visible;
  transform: scaleX(1);
}
header .header nav ul li.on a, header .header nav ul li:hover a {
  color: #6938EF;
}
header .header nav ul li:hover::after {
  visibility: visible;
  transform: scaleX(1);
}
header .header nav ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
header .header .login {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .header .login .btn-tel {
  display: inline-flex;
  margin-right: 10px;
}
@media all and (max-width: 768px) {
  header .header .login .btn-tel {
    margin-right: 0;
  }
}
header .header .login .btn-tel span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
@media all and (max-width: 768px) {
  header .header .login .btn-tel span {
    font-size: 15px;
  }
}
header .header .login .btn-tel:before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 6px;
  background: url(../img/common/phone-call-white.svg) no-repeat center/contain;
}
@media all and (max-width: 768px) {
  header .header .login .btn-tel:before {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
}

.header_btn {
  padding: 0 24px;
  height: 2.5rem;
  border-radius: 22px;
  border: 2px solid #FFFFFF;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.header_btn.pc-hidden {
  display: none;
}
.header_btn:hover {
  border: 2px solid #192534;
  color: #192534;
}
.header_btn_grow {
  background: #5925DC;
  border: none;
}
.header_btn_grow:hover {
  border: none;
  color: #fff;
  background: #192534;
}

footer {
  height: 300px;
  background: #000;
  padding-top: 60px;
}

.footer {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .footer {
    width: 100%;
    padding: 0 25px;
    gap: 20px;
  }
}
.footer_left > ul {
  display: flex;
  gap: 32px;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .footer_left > ul {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.footer_left > ul:first-of-type {
  margin: 25px 0 15px;
}
.footer_left > ul li {
  color: #B5B6B8;
}
.footer_left > ul li:not(:last-of-type) {
  position: relative;
}
.footer_left > ul li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 16px);
  width: 0;
  height: 10px;
  border-left: 1px solid #B5B6B8;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .footer_left > ul li:not(:last-of-type)::after {
    left: calc(100% + 8px);
  }
}
.footer_left .copyright {
  margin-top: 40px;
  color: #B5B6B8;
}
.footer_right {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
}
.footer_right > ul {
  display: flex;
  gap: 32px;
}
.footer_right > ul a {
  color: #fff;
  font-size: 16px;
}
.footer_right > ul a:hover {
  text-decoration: underline;
}
.footer_right > h3 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
}
.footer_right > h3 span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
}
.footer_right > p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.foot_logo {
  width: 120px;
}
.foot_logo img {
  width: 100%;
}

.top_button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #222B37;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}
.top_button:hover {
  background: #5925DC;
}
.top_button.on {
  visibility: visible;
  opacity: 1;
}

@media all and (max-width: 1024px) {
  .off header:hover .logo .pc-hidden {
    display: none;
  }
  .off header:hover .logo img:not(.pc-hidden) {
    display: block;
  }
  .off .logo img.pc-hidden {
    display: block;
  }
  .on .logo img:not(.pc-hidden) {
    display: block;
  }
  header .header {
    padding: 0 20px;
    height: 64px;
  }
  header .header .logo {
    width: 7.25rem;
  }
  header .header .logo img {
    display: none;
  }
  header .header nav {
    display: none;
  }
  header .header .login {
    display: flex;
    gap: 10px;
  }
  header .header_btn {
    padding: 0 14px;
    height: 1.875rem;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: none;
  }
  header .header_btn.pc-hidden {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer {
    height: auto;
    padding: 40px 0 80px;
  }
  .footer {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
  }
  .footer_left > ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer_left > ul:first-of-type {
    margin: 20px 0 8px;
  }
  .footer_left > ul li {
    font-size: 14px;
    font-weight: 400;
  }
  .footer_left > ul li:not(:last-of-type)::after {
    display: none;
  }
  .footer_left .copyright {
    margin-top: 20px;
  }
  .footer_right {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer_right > ul a {
    font-size: 13px;
  }
  .footer_right > h3 {
    font-size: 24px;
    font-weight: 500;
  }
  .footer_right > h3 span {
    font-size: 13px;
    font-weight: 700;
  }
  .footer_right > p {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
  }
  .top_button {
    position: fixed;
    width: 40px;
    height: 40px;
  }
  .top_button img {
    width: 24px;
  }
}
.focus_color {
  color: #6938EF;
}

.main_color {
  color: #5925DC;
}

.arrow_right {
  width: 30px;
  height: 30px;
  background: url(../img/common/arrow-right.svg);
}

.vertical_line {
  width: 0;
  height: 30px;
  border-left: 1px solid #8D99A8;
}

.circle_img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bold {
  font-weight: 700;
}

.section_one .animate {
  transform: translateY(30%);
}

.section_two_content.animate {
  opacity: 1;
  transition: width 0.5s ease-out;
}
.section_two_content.animate.on {
  width: 100%;
  animation: none;
}
.section_two_content > div.animate.on {
  animation-delay: 0.2s;
}

.section_three_content.animate {
  transform: translateY(30%);
}

.animate {
  opacity: 0;
}
.animate.on {
  animation: downUp 0.7s ease both;
}

.header-popup {
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #192534;
  gap: 25px;
  transition: all ease 0.3s;
}
.header-popup * {
  color: #fff;
}

@keyframes headerTop {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
}
@keyframes headerbot {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    height: 4.375rem;
  }
}
@keyframes headerbotMobile {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    height: 130px;
  }
}
.on .header-popup {
  animation: headerTop 0.5s both;
}

.off .header-popup {
  animation: headerbot 0.5s both;
}
@media all and (max-width: 1024px) {
  .off .header-popup {
    animation: headerbotMobile 0.5s both;
  }
}

.header-popup .header-popup-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.header-popup .header-popup-btn-box {
  display: flex;
  gap: 15px;
}

.header-popup a {
  color: #fff;
  border: 2px solid #fff;
  padding: 0 25px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  gap: 3px;
}

@media all and (max-width: 1024px) {
  .header-popup {
    background-color: #192534;
    height: 130px;
    flex-direction: column;
    text-align: center;
    gap: 11px;
  }
  .mobile-br {
    display: block;
  }
  .header-popup-text {
    color: #0f1b2a;
    font-size: 18px;
    line-height: 1.3;
  }
  .header-popup a {
    border-color: #fff;
    color: #fff;
    font-size: 16px;
    /* font-weight: 600; */
    height: 36px;
    padding: 0 15px;
  }
  .header.hide {
    top: -130px;
  }
}
.on .header {
  background: #fff;
}
.on .header nav > ul > li {
  color: #0F1B2A;
}
.on .header nav > ul > li a {
  color: #0F1B2A;
}
.on .header .header_btn {
  border: 2px solid #5925DC;
  color: #5925DC;
}
.on .header .header_btn:hover {
  border: 2px solid #192534;
  color: #192534;
}
.on .header .header_btn_grow {
  background: #5925DC;
  border: none;
  color: #fff;
}
.on .header .header_btn_grow:hover {
  border: none;
  color: #fff;
  background: #192534;
}
.on .header .login .btn-tel span {
  color: #000;
}
.on .header .login .btn-tel:before {
  background-image: url(../img/common/phone-call-black.svg);
}

.off header:hover .header {
  background: #fff;
}
.off header:hover .header nav > ul > li {
  color: #0F1B2A;
}
.off header:hover .header nav > ul > li a {
  color: #0F1B2A;
}
.off header:hover .header nav > ul > li:hover {
  color: #6938EF;
}
.off header:hover .header nav > ul > li:hover a {
  color: #6938EF;
}
.off header:hover .header .header_btn {
  border: 2px solid #5925DC;
  color: #5925DC;
}
.off header:hover .header .header_btn:hover {
  border: 2px solid #192534;
  color: #192534;
}
.off header:hover .header .header_btn_grow {
  background: #5925DC;
  border: none;
  color: #fff;
}
.off header:hover .header .header_btn_grow:hover {
  border: none;
  color: #fff;
  background: #192534;
}
.off header:hover .header .login .btn-tel span {
  color: #000;
}
.off header:hover .header .login .btn-tel:before {
  background-image: url(../img/common/phone-call-black.svg);
}

.slider {
  width: 100%;
  height: 100vh;
  background: #fff;
  padding-top: 270px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  position: relative;
  animation: zIndex 0.1s both;
  animation-delay: 2.5s;
}
@media all and (min-width: 1921px) {
  .slider {
    padding-top: 14.1vw;
  }
}
.slider .slider_img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  height: 100%;
  background: url(../img/common/main.png) no-repeat;
  background-size: cover;
  z-index: 0;
  animation: width100 1.5s both cubic-bezier(0.8, 0, 0.195, 1);
  animation-delay: 1.5s;
}
.slider > h2, .slider > h3 {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.slider > h2 span, .slider > h3 span {
  display: inline-block;
  opacity: 0;
  animation: mainImg 4.5s both;
}
.slider h2 {
  font-size: 74px;
  font-weight: 700;
}
.slider h3 {
  font-size: 28px;
  font-weight: 500;
}
.slider .main_arrow_down {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: url(../img/common/chevron-down.svg);
  animation: arrow 1.5s cubic-bezier(0.53, 0, 0.42, 0.91) infinite;
}

section {
  width: 1200px;
  margin: 0 auto;
}

.section_title {
  color: #5925DC;
  padding: 0 25px;
  height: 43px;
  border: 2px solid #5925DC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
}

.title_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.title_box > h2 {
  margin: 25px 0 15px;
  line-height: 140%;
  font-size: 45px;
  font-weight: 700;
}
.title_box > p {
  color: #414D5C;
  line-height: 160%;
  font-size: 22px;
  font-weight: 400;
}
.title_box > a {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  gap: 5px;
}
.title_box > a:hover {
  text-decoration: underline;
}

.section_one {
  padding: 125px 0;
  display: flex;
  flex-direction: column;
  gap: 110px;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .section_one {
    padding: 125px 20px;
  }
}
.section_one_content {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
.section_one_content li {
  width: calc(50% - 40px);
  height: 400px;
  background: #EFEDFF;
  border-radius: 8px;
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.section_one_content li:nth-of-type(even) {
  margin-top: 80px;
}
.section_one_content li > span {
  font-size: 16px;
  font-weight: 600;
}
.section_one_content li > h3 {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 700;
}
.section_one_content li > p {
  font-size: 18px;
  font-weight: 400;
}
.section_one_content li > p.main_color {
  letter-spacing: -0.04em;
  font-size: 14px;
}
.section_one_content li > img {
  margin-top: 25px;
  align-self: center;
}

.section_two {
  padding: 95px 0 125px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section_two > h2, .section_two > p {
  text-align: center;
}
.section_two > h2 {
  font-size: 54px;
  font-weight: 700;
}
.section_two > p {
  line-height: 160%;
  font-size: 22px;
  font-weight: 400;
}
.section_two_content {
  width: 1200px;
  margin: 50px auto 0;
  height: 850px;
  background: url(../img/pc/section-two-main.png) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  border-radius: 8px;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .section_two_content {
    width: 100%;
  }
}
.section_two_content > div {
  width: 1000px;
  margin: 100px auto;
  position: relative;
  z-index: 2;
}
.section_two_content > div img {
  width: 100%;
}
.section_two_content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(119, 84, 255, 0.1);
  opacity: 0.5;
  z-index: 1;
}

.section_three {
  padding: 125px 0 250px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .section_three {
    padding: 125px 20px 250px;
  }
}
.section_three_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section_three_content li {
  height: 160px;
  border-radius: 8px;
  padding: 0 35px;
  background: #f9f9f9;
  display: flex;
  gap: 25px;
  align-items: center;
}
.section_three_content li > div {
  display: flex;
  align-items: center;
  gap: 25px;
}
.section_three_content li > div > h4 {
  width: 220px;
  line-height: 140%;
  letter-spacing: -0.03em;
  font-size: 22px;
  font-weight: 500;
}
.section_three_content li > p {
  padding-left: 20px;
  letter-spacing: -0.03em;
  line-height: 21px;
  font-size: 18px;
  font-weight: 400;
}

.section_four {
  width: 100%;
  background: #EFEDFF;
  padding: 130px 0;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .section_four {
    padding: 130px 20px;
  }
}
.section_four_wrap {
  width: 1200px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  gap: 65px;
}
@media all and (min-width: 1025px) and (max-width: 1199px) {
  .section_four_wrap {
    width: 100%;
  }
}
.section_four_content {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.section_four_content .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_four .section_four_swiper {
  width: 100%;
  background: #FFFFFF;
  height: 800px;
  padding: 45px 45px 120px;
  position: relative;
  border-radius: 8px;
}
.section_four .section_four_swiper .swiper {
  width: 100%;
  height: 100%;
  background: #FAFAFF;
  border-radius: 8px;
}
.section_four .section_four_swiper .swiper-button-prev, .section_four .section_four_swiper .swiper-button-next {
  background: #7A5AF8 url(../img/pc/swiper-btn.svg) no-repeat center center;
  width: 40px;
  height: 40px;
}
.section_four .section_four_swiper .swiper-button-prev::after, .section_four .section_four_swiper .swiper-button-next::after {
  display: none;
}
.section_four .section_four_swiper .swiper-button-prev:hover, .section_four .section_four_swiper .swiper-button-next:hover {
  background: #4A1FB8 url(../img/pc/swiper-btn-hover.svg) no-repeat center;
}
.section_four .section_four_swiper .swiper-button-prev {
  left: 0;
}
.section_four .section_four_swiper .swiper-button-next {
  right: 0;
  transform: rotate(180deg);
}
.section_four .section_four_swiper .swiper_text {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  gap: 5px;
}
.section_four .section_four_swiper .swiper_text.on {
  display: flex;
}
.section_four .section_four_swiper .swiper_text span, .section_four .section_four_swiper .swiper_text h3 {
  text-align: center;
}
.section_four .section_four_swiper .swiper_text span {
  font-size: 18px;
  font-weight: 600;
}
.section_four .section_four_swiper .swiper_text h3 {
  font-size: 24px;
  font-weight: 700;
}
.section_four .swiper-pagination {
  position: relative;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_four .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #CCCCCC;
  opacity: 1;
  margin: 0 0 !important;
}
.section_four .swiper-pagination-bullet-active {
  width: 32px;
  height: 12px;
  background: #5925DC;
  border-radius: 6px;
}

.section_five {
  width: 100%;
  height: 375px;
  background: #5925DC;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.section_five > h2 {
  text-align: center;
  color: #FFFFFF;
  font-size: 45px;
  font-weight: 700;
}
.section_five_btn {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.section_five_btn button {
  width: 19.0625rem;
  height: 3.75rem;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
  transition: 0.3s;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_five_btn button:hover {
  color: #192534;
  border: 2px solid #192534;
}
.section_five_btn button:nth-of-type(2) {
  border: none;
  color: #5925DC;
  background: #fff;
}
.section_five_btn button:nth-of-type(2):hover {
  border: none;
  color: #fff;
  background: #192534;
}

@media all and (min-width: 1025px) and (max-width: 1199px) {
  section {
    width: 100%;
  }
}
@media all and (max-width: 1024px) {
  section {
    width: 100%;
  }
  .slider {
    background: #fff;
    padding-top: 210px;
    gap: 16px;
    min-height: 650px;
    animation: none;
  }
  .slider .slider_img {
    background: url(../img/common/main.png) no-repeat center;
    background-size: cover;
    animation: none;
  }
  .slider > h2 span, .slider > h3 span {
    color: #fff;
    animation: spanUp 0.7s both;
  }
  .slider h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
  }
  .slider h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
  }
  .slider h3 span {
    animation-delay: 0.2s;
  }
  .slider .main_arrow_down {
    bottom: 70px;
    width: 40px;
    height: 40px;
    background: url(../img/common/chevron-down.svg) no-repeat center;
    background-size: cover;
  }
  .section_title {
    padding: 0 20px;
    height: 36px;
    font-size: 13px;
    font-weight: 600;
  }
  .title_box > h2 {
    margin: 20px 0 15px;
    font-size: 30px;
    font-weight: 700;
  }
  .title_box > p {
    font-size: 15px;
    font-weight: 400;
  }
  .title_box > a {
    margin-top: 25px;
    font-size: 15px;
    font-weight: 600;
  }
  .section_one {
    padding: 90px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .section_one_content {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 20px;
  }
  .section_one_content li {
    width: 100%;
    height: 370px;
    padding: 30px 25px;
  }
  .section_one_content li:nth-of-type(even) {
    margin-top: 0px;
  }
  .section_one_content li > span {
    font-size: 13px;
    font-weight: 600;
  }
  .section_one_content li > h3 {
    margin-top: 0px;
    font-size: 22px;
    font-weight: 700;
  }
  .section_one_content li > p {
    font-size: 14px;
    font-weight: 400;
  }
  .section_one_content li > p.main_color {
    font-size: 12px;
  }
  .section_one_content li > img {
    margin-top: 30px;
    width: 100%;
  }
  .section_one_content li:nth-of-type(1) img {
    max-width: 325px;
  }
  .section_one_content li:nth-of-type(2) img {
    max-width: 234px;
  }
  .section_one_content li:nth-of-type(3) img {
    max-width: 294px;
  }
  .section_one_content li:nth-of-type(4) img {
    max-width: 233px;
  }
  .section_one_content li:nth-of-type(5) img {
    max-width: 339px;
  }
  .section_one_content li:nth-of-type(6) img {
    max-width: 200px;
  }
  .section_two {
    padding: 0;
    gap: 15px;
  }
  .section_two > h2, .section_two > p {
    text-align: start;
    padding: 0 20px;
  }
  .section_two > h2 {
    font-size: 30px;
    font-weight: 700;
  }
  .section_two > p {
    line-height: 160%;
    font-size: 15px;
    font-weight: 400;
  }
  .section_two_content {
    width: 100%;
    margin: 45px auto 0;
    padding: 0 20px;
    height: 97vw;
    max-height: 540px;
    background: url(../img/pc/section-two-main.png) no-repeat center center;
    background-attachment: scroll;
    background-size: cover;
    position: relative;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media all and (max-width: 1024px) and (max-width: 768px) {
  .section_two_content {
    max-height: 475px;
  }
}
@media all and (max-width: 1024px) {
  .section_two_content > div {
    width: 100%;
    max-width: 625px;
    margin: 0px;
    position: relative;
    z-index: 2;
  }
}
@media all and (max-width: 1024px) and (max-width: 768px) {
  .section_two_content > div {
    max-width: 450px;
  }
}
@media all and (max-width: 1024px) {
  .section_two_content > div img {
    width: 100%;
  }
  .section_three {
    padding: 90px 20px;
  }
  .section_three_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .section_three_content li {
    height: auto;
    min-height: 145px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
  }
  .section_three_content li .circle_img, .section_three_content li .vertical_line {
    display: none;
  }
  .section_three_content li > div {
    display: flex;
    align-items: flex-start;
    gap: 25px;
  }
  .section_three_content li > div > h4 {
    width: auto;
    line-height: 140%;
    letter-spacing: -0.03em;
    font-size: 20px;
    font-weight: 500;
  }
  .section_three_content li > p {
    padding-left: 0px;
    line-height: 150%;
    font-size: 16px;
    font-weight: 400;
  }
  .section_four {
    width: 100%;
    background: #EFEDFF;
    padding: 80px 20px 40px;
  }
  .section_four_wrap {
    width: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .section_four_content {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .section_four_content .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section_four_content .swiper-slide img {
    width: 100%;
    max-width: 525px;
  }
  .section_four .section_four_swiper {
    width: 100%;
    height: 108vw;
    max-height: 560px;
    padding: 30px 25px 130px;
    position: relative;
  }
  .section_four .section_four_swiper .swiper {
    width: 100%;
    height: 100%;
    background: transparent;
  }
  .section_four .section_four_swiper .swiper-button-prev, .section_four .section_four_swiper .swiper-button-next {
    display: none;
  }
  .section_four .section_four_swiper .swiper_text {
    gap: 10px;
    padding: 0 25px;
  }
  .section_four .section_four_swiper .swiper_text span {
    font-size: 13px;
    font-weight: 600;
  }
  .section_four .section_four_swiper .swiper_text h3 {
    word-break: keep-all;
    font-size: 18px;
    font-weight: 700;
  }
  .section_four .swiper-pagination {
    position: relative;
    gap: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section_four .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .section_four .swiper-pagination-bullet-active {
    width: 20px;
    height: 8px;
  }
  .section_five {
    height: 330px;
    padding-top: 80px;
    padding: 80px 20px 0;
    gap: 35px;
  }
  .section_five > h2 {
    text-align: start;
    font-size: 26px;
    font-weight: 700;
  }
  .section_five_btn {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .section_five_btn button {
    width: auto;
    flex-grow: 1;
    height: 3.125rem;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media all and (max-width: 1024px) and (max-width: 768px) {
  .section_five_btn button {
    height: 2.5rem;
  }
}
.section_five_btn {
  position: relative;
}

.floating_form {
  display: none;
  width: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px 25px;
  border: 1px solid #eef1f6;
  box-shadow: 0px 10px 20px rgba(21, 34, 50, 0.25);
  border-radius: 20px;
  z-index: 100;
}
@media all and (max-width: 1024px) {
  .floating_form {
    width: 90vw;
    max-width: 500px;
  }
}
.floating_form.on {
  display: block;
  animation: floating 0.25s ease-out both;
}
.floating_form > h3 {
  font-weight: 500;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.floating_form > h3 img {
  cursor: pointer;
}
.floating_form > form {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.floating_form > form input {
  outline: none;
}
.floating_form > form .red {
  font-weight: 600;
  color: #F04438;
}
.floating_form > form .check {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.floating_form > form .check input[type=checkbox] {
  display: none;
}
.floating_form > form .check input[type=checkbox]:checked + span {
  background: url(../img/common/check.svg) no-repeat;
  border: none;
}
.floating_form > form .check > span {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 3px;
}
.floating_form > form > label:not(.check) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.floating_form > form > label:not(.check) input[type=text] {
  padding-left: 10px;
  height: 36px;
  border: 1px solid #cdd3dd;
  border-radius: 4px;
  font-size: 14px;
}
.floating_form > form > label:not(.check) input[type=text]::-moz-placeholder {
  color: #8d99a8;
}
.floating_form > form > label:not(.check) input[type=text]::placeholder {
  color: #8d99a8;
}
.floating_form > form button {
  width: 100%;
  height: 42px;
  font-size: 14px;
  border-radius: 100px;
  border: 1px solid #414d5c;
  color: #414d5c;
  background: #ffffff;
}
.floating_form > form button:hover {
  background: #5925DC;
  border: 1px solid #5925DC;
  color: #fff;
  transition: 0.3s ease-in-out;
}