@charset "UTF-8";

/*공통 영역*/
main {
  width: 100%;
  overflow: hidden;
}
.mobile-view {
  display: none;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.content-box {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}
/*헤더 영역*/
.site-header {
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  transition-duration: 0.3s;
  transition-property: all;
  z-index: 2;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.9);
}
.site-header .logo-box {
  height: 50px;
  width: auto;
  transition-duration: 0.3s;
}
.site-header .logo-box > img {
  width: auto;
  height: 100%;
  display: block;
}
.site-header .header-container {
  width: 100%;
  max-width: var(--header-container-width);
  margin: 0 auto;
  padding: 0 var(--header-container-padding);
}
.site-header .header-menus {
  display: flex;
  column-gap: 35px;
  align-items: center;
}
.site-header .menu-list {
  display: flex;
  column-gap: 25px;
  align-items: center;
}

.site-header .menu-list .menu-item:nth-of-type(n + 2)::before {
  content: "|";
  color: #d6d6d6;
  margin-right: 25px;
}
.site-header .menu-list .menu-item > a {
  font-family: var(--Pretendard), sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #666666;
  text-align: center;
  transition-duration: 0.3s;
  transition-property: color;
}
.site-header .menu-list .menu-item > a:hover {
  color: #7f3afc;
}
.site-header .language-box {
  position: relative;
}
.site-header .language-box .label {
  font-family: var(--Pretendard), sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  line-height: 1;
  color: #666;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 3px 0;
  border-bottom: 1px solid #c0c0c0;
}
.site-header .language-box .label::before {
  content: "";
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 20px;
}
.site-header .language-box .label::after {
  content: "";
  display: inline-block;
  background-image: url("../images/icons/icon-arrow@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
}
.site-header .language-box .option-list {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  bottom: 0;
  transform: translateY(100%);
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.3s;
  transition-property: opacity, bottom;
}
.site-header .language-box .option-list .option-item {
  padding: 10px 10px;
}
.site-header .language-box .option-list .option-item .option-item-link {
  font-family: var(--Pretendard), sans-serif;
  font-weight: 700;
  width: 100%;
  display: block;
  font-size: 12px;
  color: #666;
  transition-duration: 0.3s;
  text-align: center;
  transition-property: color;
}
.site-header .language-box .option-list .option-item:hover .option-item-link {
  color: #7f3afc;
}
.site-header .language-box .label.open + .option-list {
  opacity: 1;
  pointer-events: auto;
  bottom: -10px;
}
.site-header .language-box[data-language="ENG"] .label::before {
  background-image: url("../images/icons/icon-eng.png");
}
.site-header
  .language-box[data-language="ENG"]
  .option-list
  .option-item.eng
  .option-item-link {
  color: #7f3afc;
}
.site-header .language-box[data-language="KOR"] .label::before {
  background-image: url("../images/icons/icon-kor.png");
}
.site-header
  .language-box[data-language="KOR"]
  .option-list
  .option-item.kor
  .option-item-link {
  color: #7f3afc;
}
.site-header .mobile-menu-button {
  display: none;
}

.site-header.fix {
  height: var(--header-bg-height);
  background-color: var(--header-bg-active);
  backdrop-filter: blur(6px) contrast(90%);
  -webkit-backdrop-filter: blur(6px) contrast(90%);
}
.site-header.fix .logo-box {
  height: 40px;
}

.main-section {
  width: 100%;
  height: 900px;
}
.main-section .main-swiper {
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-color: #ffffff;
  --swiper-pagination-bottom: 20px;
}
.main-section .main-swiper {
  width: 100%;
  height: 100%;
}
.main-section .main-swiper .swiper-item {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-section .main-swiper .swiper-item .bg-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-section .main-swiper .swiper-item .bg-box > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.main-section .main-swiper .swiper-item .text-box {
  position: absolute;
  top: calc(50%);
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 200px;
}
.main-section .main-swiper .swiper-item .text-box > h2 {
  font-family: var(--MyriadWebPro), sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  color: #ffffff;
  text-shadow: 2px 4px 4px rgba(89, 65, 122, 0.5);
}
.main-section .main-swiper .swiper-item .text-box > h3 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  color: #ffffff;
  text-shadow: 2px 4px 4px rgba(89, 65, 122, 0.5);
}
.main-section .main-swiper .swiper-item .text-box > h4 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  color: #ffffff;
  text-shadow: 2px 4px 4px rgba(89, 65, 122, 0.5);
}
.main-section .main-swiper .swiper-item .text-box > p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  color: #ffffff;
  text-shadow: 2px 4px 4px rgba(89, 65, 122, 0.5);
  word-break: keep-all;
}
.main-section .main-swiper .swiper-item .text-box .button {
  font-family: var(--Pretendard), sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  color: #ffd076;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 40px;
  border-radius: 4px;
  margin-top: 30px;
}
.main-section .main-swiper :is(.swiper-button-next, .swiper-button-prev) {
  background-repeat: no-repeat;
  background-image: url("../images/icons/icon-swiper-arrow.png");
  background-size: cover;
  width: 40px;
  height: auto;
  aspect-ratio: 59 / 152;
}
.main-section .main-swiper :is(.swiper-button-next, .swiper-button-prev):after {
  content: none;
}
.main-section .main-swiper .swiper-button-next {
  transform: rotate(180deg);
  right: 50px;
}
.main-section .main-swiper .swiper-button-prev {
  left: 50px;
}

.section-001 {
  padding: 190px 0 190px;
  background-color: #f5f5f5;
}
.section-001 .title-box {
  display: flex;
  justify-content: center;
}
.section-001 .title-box .logo {
  width: 231px;
  height: auto;
  display: block;
}
.section-001 .text-box {
  margin-top: 56px;
}
.section-001 .text-box p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
.section-001 .img-box {
  margin: 80px auto;
  display: flex;
  justify-content: center;
}

.section-002 {
  height: 900px;
  background-image: url(../images/bg-section002.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.section-002 .title-box h2 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
.section-002 .title-box p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-top: 20px;
}
.section-002 .bar {
  display: block;
  width: 66px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  margin: 40px auto;
}
.section-002 .text-box p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 1.6;
}

.section-003 {
  padding: 180px 0 240px;
  background-color: #f5f5f5;
}
.section-003 .text-box {
  font-weight: 700;
  text-align: center;
  color: #000000;
}
.section-003 .title-box h2 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #5401ff;
}
.section-003 .title-box p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}
.section-003 .list-box {
  display: flex;
  width: 100%;
  column-gap: 30px;
  margin-top: 60px;
}
.section-003 .list-box .list-item {
  width: calc((100% - 60px) / 3);
  height: auto;
  aspect-ratio: 450 / 802;
  background-repeat: no-repeat;
  background-position: top center;
  text-align: center;
  padding-top: 240px;
}
.section-003 .list-box .list-item:nth-of-type(1) {
  background-image: url("../images/img-section003-001.jpg");
}
.section-003 .list-box .list-item:nth-of-type(2) {
  background-image: url("../images/img-section003-002.jpg");
}
.section-003 .list-box .list-item:nth-of-type(3) {
  background-image: url("../images/img-section003-003.jpg");
}
.section-003 .list-box .list-item h3 {
  font-family: var(--MyriadWebPro), sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 3px rgba(50, 57, 72, 1);
  line-height: 1.6;
}
.section-003 .list-box .list-item .bar {
  display: block;
  width: 38px;
  height: 6px;
  background-color: #bbd9ff;
  border-radius: 3px;
  margin: 30px auto;
}
.section-003 .list-box .list-item .button {
  font-family: var(--Pretendard), sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 33px;
  border-radius: 4px;
  margin: 40px auto;
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-003 .text-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 70px;
  margin-top: 90px;
  margin-bottom: 200px;
}
.section-003 .text-list .list-item .text-box {
  text-align: left;
}
.section-003 .text-list .list-item .text-box h2 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
}
.section-003 .text-list .list-item .text-box h2 em {
  color: #5c5c5c;
}
.section-003 .text-list .list-item .text-box p {
  padding-left: 30px;
  font-family: var(--Pretendard), sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  color: #5c5c5c;
}

.section-003 .card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px;
}
.section-003 .card-list .list-item {
  width: calc((100% - 20px) / 2);
  height: 325px;
  background-color: #ffffff;
  border-radius: 14px;
  display: flex;
  border: 1px solid #dddddd;
  box-shadow: 12px 0 12px rgba(0, 0, 0, 0.1);
  padding: 60px 30px 30px;
}
.section-003 .card-list .list-item .img-box {
  display: flex;
  align-items: center;
  background-image: url("../images/img-section003-card-bg.png");
  background-size: cover;
  width: 167px;
  height: 167px;
  flex: none;
  justify-content: center;
}
.section-003 .card-list .list-item:nth-of-type(1) .img-box > img {
  width: 71px;
  height: 71px;
  display: block;
}
.section-003 .card-list .list-item:nth-of-type(2) .img-box > img {
  width: 69px;
  height: 60px;
  display: block;
}
.section-003 .card-list .list-item:nth-of-type(3) .img-box > img {
  width: 67px;
  height: 66px;
  display: block;
}
.section-003 .card-list .list-item:nth-of-type(4) .img-box > img {
  width: 51px;
  height: 72px;
  display: block;
}
.section-003 .card-list .list-item .text-box {
  text-align: left;
}
.section-003 .card-list .list-item .text-box h2 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
  color: #1b1b1b;
}
.section-003 .card-list .list-item .text-box p {
  padding-left: 30px;
  font-family: var(--Pretendard), sans-serif;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 24px;
  color: #5c5c5c;
  word-break: keep-all;
}

.section-004 {
  padding: 300px 0;
  background-image: url("../images/bg-section004.jpg");
  background-repeat: repeat;
  background-position: center top;
  background-size: cover;
}
.section-004 .title-box h2 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  color: #5401ff;
}
.section-004 .title-box p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin-top: 20px;
}
.section-004 .list-box {
  display: flex;
  flex-direction: column;
  margin-top: 110px;
}
.section-004 .list-box .list-item {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 60px 30px 30px;
  column-gap: 40px;
}
.section-004 .list-box .list-item .img-box {
  display: flex;
  align-items: center;
}
.section-004 .list-box .list-item .img-box > img {
  width: 300px;
  height: 300px;
  display: block;
}
.section-004 .list-box .list-item .text-box {
  text-align: left;
}
.section-004 .list-box .list-item .text-box h2 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 36px;
  font-weight: 700;
  position: relative;
  color: inherit;
}
.section-004 .list-box .list-item .text-box p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 20px;
  color: inherit;
  word-break: keep-all;
}
.section-004 .list-box .list-item .text-box p strong {
  font-weight: 700;
}
.section-004 .list-box .list-item:nth-of-type(1) .text-box {
  color: #002565;
}
.section-004 .list-box .list-item:nth-of-type(2) .text-box {
  color: #272725;
}
.section-004 .list-box .list-item:nth-of-type(3) .text-box {
  color: #4b0a6d;
}
.section-004 .list-box .list-item:nth-of-type(4) .text-box {
  color: #000000;
}

.section-005 {
  background-color: #f5f5f5;
  padding: 250px 0 150px;
}
.section-005 .title-box h2 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  color: #5401ff;
}
.section-005 .title-box p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin-top: 20px;
  word-break: keep-all;
}
.section-005 .img-box {
  margin: 50px auto 0;
  width: 794px;
  max-width: 100%;
}
.section-005 .img-box > img {
  width: 100%;
  height: auto;
  display: block;
}
.section-005 .text-box p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #646464;
  line-height: 1.6;
  word-break: keep-all;
}
.section-005 .text-box .app-info {
  width: 402px;
  margin: 30px auto 0;
}
.section-005 .text-box .app-info > img {
  width: 100%;
  display: block;
  height: auto;
}
.section-005 .process-box {
  margin-top: 200px;
}
.section-005 .process-box .title {
  font-family: var(--MyriadWebPro), sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #5401ff;
  text-align: center;
}

.section-005 .process-box .process-wrapper {
  font-size: 9px;
  position: relative;
  background-image: url("../images/img-section005-process.png");
  background-size: cover;
  width: 100%;
  gap: 40px;
  height: auto;
  aspect-ratio: 1569 / 677;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  margin: 30px auto;
}
.section-005 .process-box .process-wrapper p.content-text {
  font-size: 2em;
  font-weight: 700;
  color: #646464;
  text-align: center;
}
.section-005 .process-box .process-wrapper .process-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
  width: 32em;
}
.section-005 .process-box .process-wrapper .process-item .img {
  width: 18em;
  height: auto;
  aspect-ratio: 1 / 1;
}
.section-005 .process-box .process-wrapper .process-item .img > img {
  width: 100%;
  height: 100%;
  display: block;
}
.section-005 .process-box .process-wrapper .process-item .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.section-005 .process-box .process-wrapper .process-item .text h2 {
  font-family: var(--Pretendard), sans-serif;
  font-size: 2.4em;
  font-weight: 700;
  text-align: center;
  color: #6701ff;
}
.section-005 .process-box .process-wrapper .process-item .text p {
  font-family: var(--Pretendard), sans-serif;
  font-size: 1.7em;
  font-weight: 700;
  color: #646464;
  text-align: center;
}

.section-005 .process-box .process-wrapper .process-item:nth-of-type(1) {
  left: 20%;
  top: -20%;
}
.section-005 .process-box .process-wrapper .process-item:nth-of-type(2) {
  right: 20%;
  top: -20%;
}
.section-005 .process-box .process-wrapper .process-item:nth-of-type(3) {
  left: 10%;
  bottom: 20em;
}
.section-005 .process-box .process-wrapper .process-item:nth-of-type(4) {
  right: 10%;
  bottom: 20em;
}
.section-005 .link-button {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 40px;
}
.section-005 .link-button .button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  width: 260px;
  height: 125px;
  border-radius: 8px;
  background-color: #6701ff;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
.section-005 .link-button .button:hover {
  transform: translateY(-10%);
}
.section-005 .link-button::after {
  content: "";
  background-image: url("../images/button-shadow.png");
  background-size: cover;
  width: 530px;
  height: 88px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  opacity: 0;
  transition-duration: 0.6s;
  transform: translate(-50%, 90%) scaleX(1.5);
}
.section-005 .link-button._motion_::after {
  opacity: 1;
  transform: translate(-50%, 90%) scaleX(1);
}
.section-005 .map-box {
  margin-top: 290px;
}
.section-005 .map-box .map-item {
  width: 100%;
  aspect-ratio: 1410 / 755;
  height: auto;
  margin-top: 30px;
}
.section-005 .map-box .map-item :is(img, frame) {
  width: 100%;
  height: 100%;
  display: block;
}
.section-005 .contact-box {
  margin-top: 140px;
}
.section-005 .contact-box .title-box :is(h2, p) {
  text-align: left;
  color: #000000;
}
.section-005 .contact-box .title-box h2 {
  font-size: 32px;
}
.section-005 .contact-box .title-box p {
  font-size: 24px;
}

.section-005 .form-area {
  margin-top: 60px;
}
.section-005 .form-area .form-group {
  display: flex;
  column-gap: 70px;
}
.section-005 .form-area .form-group .input-col {
  width: calc((100% - 70px) / 2);
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.section-005 .form-area .form-group .input-col .input-row {
  display: flex;
}
.section-005 .form-area .input-box {
  display: flex;
  align-items: center;
  height: 56px;
  width: 100%;
}
.section-005 .form-area .input-box > label {
  width: 110px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  padding-left: 18px;
}
.section-005 .form-area .input-box > label::before {
  content: "";
  width: 7px;
  height: 10px;
  display: block;
  background-color: #9f9f9f;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.section-005 .form-area .input-box.required > label::before {
  background-color: #9d13dd;
}
.section-005 .form-area .input-box > label::after {
  content: ":";
  position: absolute;
  right: 10px;
}
.section-005 .form-area .input-box > input[type="text"] {
  font-family: var(--Pretendard), sans-serif;
  font-size: 18px;
  width: calc(100% - 110px);
  height: 100%;
  border-radius: 8px;
  border: 1px solid #dddddd;
  padding: 0 20px;
  font-weight: 400;
}
.section-005 .form-area .input-box.textarea-input {
  flex-direction: column;
  height: 100%;
  row-gap: 12px;
  align-items: flex-start;
}
.section-005 .form-area .input-box.textarea-input > label {
  display: flex;
  align-items: center;
  height: 56px;
}
.section-005 .form-area .input-box.textarea-input > label::after {
  content: none;
}
.section-005 .form-area .input-box.textarea-input > textarea {
  font-family: var(--Pretendard), sans-serif;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  height: 328px;
  border-radius: 8px;
  border: 1px solid #dddddd;
  padding: 20px;
}
.section-005 .form-area .button-box {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
.section-005 .form-area .button-box .button {
  background-color: #3e3e3e;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  width: 260px;
  height: 85px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
.section-005 .form-area .button-box .button::before {
  content: "";
  display: inline-block;
  background-image: url("../images/icons/icon-send.png");
  width: 28px;
  height: 20px;
}

.section-006 {
  padding: 250px 0;
  background-image: url("../images/bg-section006.jpg");
  background-repeat: repeat;
  background-position: center top;
  background-size: cover;
}
.section-006 .content-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-006 .box-text {
  width: 100%;
  max-width: 838px;
  height: auto;
  aspect-ratio: 838 / 547;
  background-image: url("../images/section-006-box-bg.png");
  background-size: cover;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 30px;
}
.section-006 .box-text p {
  font-family: var(--MyriadWebPro), sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
}
.section-006 .box-text p em {
  font-family: var(--MyriadWebPro), sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.section-006 .box-text .button {
  font-family: var(--MyriadWebPro), sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 80px;
  border-radius: 10px;
  margin-top: 10px;
}
.section-006 .box-text .button::before {
  content: "";
  background-image: url("../images/icons/icon-preview.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 21px;
  height: auto;
  aspect-ratio: 21 / 29;
  display: block;
  margin-right: 10px;
}

.site-footer {
  background-color: #000000;
}
.site-footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  padding: 50px 30px;
}
.site-footer .footer-wrapper .footer-top-box {
  height: 38px;
  display: flex;
  border-bottom: 1px solid #787878;
  padding-bottom: 20px;
  box-sizing: content-box;
  justify-content: space-between;
}

.site-footer .footer-logo-box {
  display: flex;
  column-gap: 10px;
  align-items: last baseline;
}
.site-footer .footer-logo-box span {
  font-size: 16px;
  color: #b0b0b0;
}
.site-footer .footer-box {
  display: flex;
  column-gap: 50px;
}
.site-footer .footer-box li {
  font-family: var(--Pretendard), sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  text-align: left;
  color: #111111;
}
.site-footer .footer-box li a {
  color: inherit;
}
.site-footer .footer-menu-box {
  display: flex;
  column-gap: 5px;
  align-items: flex-end;
}
.site-footer .footer-menu-box .footer-menu-item {
  display: flex;
  align-items: center;
}
.site-footer
  .footer-menu-box
  li[class^="footer-menu-item"]:nth-of-type(n + 2)::before {
  content: "|";
  color: #595959;
  margin-right: 5px;
  font-size: 12px;
}
.site-footer .footer-menu-box .footer-menu-item > a {
  display: inline-block;
  font-family: var(--Pretendard), sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #cccccc;
  text-align: center;
  transition-duration: 0.3s;
  transition-property: color;
}
.site-footer .footer-menu-box .footer-menu-item > a:hover {
  color: #6701ff;
}
.site-footer .footer-menu-box .footer-menu-item-ivy-League > a {
  display: inline-block;
  font-family: var(--Pretendard), sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #7ab33d;
  text-align: center;
  transition-duration: 0.3s;
  transition-property: color;
}
.site-footer .footer-menu-box .footer-menu-item-ivy-League > a:hover {
  color: #8ce031;
}
.site-footer .footer-menu-box .footer-menu-item-ivy-Playground > a {
  display: inline-block;
  font-family: var(--Pretendard), sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #8b6bf0;
  text-align: center;
  transition-duration: 0.3s;
  transition-property: color;
}
.site-footer .footer-menu-box .footer-menu-item-ivy-Playground > a:hover {
  color: #ad71ff;
}

.site-footer .footer-wrapper .footer-bottom-box {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.site-footer .footer-wrapper .footer-bottom-box .company-info {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.site-footer .footer-wrapper .footer-bottom-box .company-info .contact-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.site-footer
  .footer-wrapper
  .footer-bottom-box
  .company-info
  .contact-list
  .contact-item {
  font-size: 16px;
  color: #cccccc;
  font-weight: 500;
}
.site-footer
  .footer-wrapper
  .footer-bottom-box
  .company-info
  .contact-list
  .contact-item
  > a {
  font-family: inherit;
  color: inherit;
}
.site-footer .footer-wrapper .footer-bottom-box .company-info .address {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.site-footer .footer-wrapper .footer-bottom-box .company-info .address > p {
  font-size: 16px;
  color: #999999;
  font-weight: 500;
}
.site-footer
  .footer-wrapper
  .footer-bottom-box
  .company-info
  .address
  .copyright {
  display: flex;
  justify-content: space-between;
}
.site-footer
  .footer-wrapper
  .footer-bottom-box
  .company-info
  .address
  .copyright
  .admin {
  color: #595959;
  font-size: 14px;
  text-decoration: underline;
}
.site-footer
  .footer-wrapper
  .footer-bottom-box
  .company-info
  .address
  .copyright
  > p {
  font-size: 14px;
  color: #999999;
  font-weight: 500;
}
.site-footer .footer-wrapper .footer-bottom-box .sns-info {
  display: flex;
  column-gap: 30px;
  align-items: flex-end;
}
.site-footer .footer-wrapper .footer-bottom-box .sns-list {
  display: flex;
  column-gap: 13px;
}
.site-footer .footer-wrapper .footer-bottom-box .sns-list .sns-item {
  font-size: 0;
  text-indent: -99999px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #646464;
  background-position: center;
  background-repeat: no-repeat;
}
.site-footer .footer-wrapper .footer-bottom-box .sns-list .sns-item.facebook {
  background-image: url("../images/icons/icon-facebook.png");
}
.site-footer .footer-wrapper .footer-bottom-box .sns-list .sns-item.instagram {
  background-image: url("../images/icons/icon-insta.png");
}
.site-footer .footer-wrapper .footer-bottom-box .sns-list .sns-item.youtube {
  background-image: url("../images/icons/icon-youtube.png");
}
.site-footer .footer-wrapper .footer-bottom-box .sns-list .sns-item > a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1400px) {
  :root {
    --header-container-padding: 30px;
    --content-padding: 30px;
  }
  .main-section .main-swiper .swiper-item .text-box {
    padding: 0 130px;
  }
  .section-003 .card-list .list-item .text-box h2 {
    font-size: 20px;
  }
  .section-003 .card-list .list-item .text-box p {
    font-size: 16px;
    margin-top: 20px;
  }

  .section-005 .process-box .process-wrapper {
    font-size: 0.6vw;
  }
}

@media screen and (max-width: 1200px) {
  .section-003 .card-list .list-item {
    width: 100%;
    height: 325px;
    padding: 60px 30px;
  }
  .section-003 .card-list .list-item .text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (max-width: 1080px) {
  .hidden-1080 {
    display: none;
  }

  .main-section .main-swiper .swiper-item .text-box {
    padding: 0 100px;
  }
  .main-section .main-swiper :is(.swiper-button-next, .swiper-button-prev) {
    width: 30px;
  }
  .main-section .main-swiper .swiper-button-next {
    transform: rotate(180deg);
    right: 30px;
  }
  .main-section .main-swiper .swiper-button-prev {
    left: 30px;
  }
  .main-section .main-swiper .swiper-item .text-box br {
    display: none;
  }
  .section-003 .list-box {
    flex-direction: column;
    row-gap: 10px;
  }
  .section-003 .list-box .list-item {
    width: 100%;
    height: 350px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: left;
  }

  .section-003 .list-box .list-item:nth-of-type(1) {
    background-image: url("../images/m-img-section003-001.jpg");
  }
  .section-003 .list-box .list-item:nth-of-type(2) {
    background-image: url("../images/m-img-section003-002.jpg");
  }
  .section-003 .list-box .list-item:nth-of-type(3) {
    background-image: url("../images/m-img-section003-003.jpg");
  }

  .section-003 .list-box .list-item .bar {
    margin: 10px auto;
  }
  .section-003 .list-box .list-item .button {
    width: 100px;
    height: 33px;
    margin: 20px auto;
  }
}

@media screen and (max-width: 900px) {
  :root {
    --header-container-padding: 30px;
    --header-height: 60px;
    --header-bg-height: 60px;
  }

  .site-header .logo-box {
    height: 30px;
  }
  .site-header.fix .logo-box {
    height: 30px;
  }
  .site-header .header-menus {
    column-gap: 20px;
  }
  .site-header .menu-list {
    column-gap: 10px;
  }
  .site-header .menu-list .menu-item:nth-of-type(n + 2)::before {
    margin-right: 10px;
  }
  .site-header .menu-list .menu-item > a {
    font-size: 14px;
  }

  .main-section {
    width: 100%;
    height: 600px;
  }
  .main-section .main-swiper {
    --swiper-pagination-bullet-size: 12px;
  }
  .main-section .main-swiper :is(.swiper-button-next, .swiper-button-prev) {
    display: none;
  }
  .main-section .main-swiper .swiper-item .text-box {
    padding: 0 30px;
  }
  .main-section .main-swiper .swiper-item .text-box > h2 {
    font-size: 60px;
  }
  .main-section .main-swiper .swiper-item .text-box > h3 {
    font-size: 28px;
  }
  .main-section .main-swiper .swiper-item .text-box > h4 {
    font-size: 24px;
  }
  .main-section .main-swiper .swiper-item .text-box > p {
    font-size: 16px;
    margin-top: 10px;
  }

  .section-001 {
    padding: 60px 0;
  }
  .section-001 .title-box .logo {
    width: 180px;
  }
  .section-001 .text-box p {
    text-align: left;
    font-size: 18px;
  }

  .section-002 {
    padding: 60px 0;
    height: 800px;
  }
  .section-002 .title-box h2 {
    font-size: 32px;
  }
  .section-002 .title-box p {
    font-size: 18px;
  }
  .section-002 .text-box p {
    text-align: left;
    font-size: 18px;
  }

  .section-003 {
    padding: 80px 0;
  }
  .section-003 .title-box h2 {
    font-size: 32px;
  }
  .section-003 .title-box p {
    font-size: 24px;
  }
  .section-003 .text-list {
    margin-bottom: 60px;
  }
  .section-003 .card-list {
    margin-top: 60px;
  }

  .section-004 {
    padding: 60px 0;
    height: auto;
  }
  .section-004 .text-box p {
    text-align: left;
  }
  .section-004 .list-box {
    margin-top: 40px;
  }
  .section-004 .list-box .list-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    column-gap: 40px;
  }
  .section-004 .list-box .list-item .img-box > img {
    width: 200px;
    height: 200px;
  }
  .section-004 .list-box .list-item .text-box h2 {
    font-size: 24px;
  }
  .section-004 .list-box .list-item .text-box p {
    font-size: 16px;
  }

  .section-005 {
    padding: 60px 0;
    height: auto;
  }
  .section-005 .text-box p {
    font-size: 16px;
  }
  .section-005 .text-box .app-info {
    width: 300px;
    margin: 50px auto 0;
  }
  .section-005 .process-box {
    margin-top: 100px;
  }
  .section-005 .process-box .title {
    font-size: 32px;
  }
  .section-006 {
    padding: 180px 0;
  }
  .section-006 .box-text {
    row-gap: 10px;
  }
  .section-006 .box-text p {
    font-size: 18px;
  }
  .section-006 .box-text p em {
    font-size: 24px;
  }
  .section-006 .box-text .button {
    font-size: 18px;
    width: 200px;
    height: 50px;
  }
  .section-006 .box-text .button::before {
    width: 14px;
    margin-right: 10px;
  }

  .site-footer .footer-wrapper .footer-top-box .footer-logo-box {
    column-gap: 20px;
  }

  .site-footer .footer-wrapper .footer-top-box {
    height: auto;
    flex-direction: column;
    row-gap: 30px;
  }
  .site-footer .footer-menu-box .footer-menu-item > a {
    font-size: 16px;
  }
  .site-footer .footer-wrapper .footer-bottom-box {
    flex-direction: column;
    row-gap: 30px;
  }
  .site-footer .footer-wrapper .footer-bottom-box .sns-info {
    align-self: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .hidden-768 {
    display: none;
  }
  .site-header .mobile-menu-button {
    position: fixed;
    width: 30px;
    height: 40px;
    top: 10px;
    right: 15px;
    z-index: 3;
    display: block;
  }
  .site-header .mobile-menu-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #666666;
    transition-duration: 0.3s;
  }
  .site-header .mobile-menu-button span:nth-of-type(1) {
    top: 8px;
  }
  .site-header .mobile-menu-button span:nth-of-type(2) {
    top: 16px;
    width: 25px;
  }
  .site-header .mobile-menu-button span:nth-of-type(3) {
    bottom: 13px;
  }

  .site-header .header-menus {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 400px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: flex-start;
    transform: translatex(100%);
    transition-duration: 0.3s;
    transition-property: transform;
  }
  .site-header .header-menus .menu-box {
    width: 100%;
    padding: 100px 20px 20px;
  }
  .site-header .header-menus .menu-list {
    flex-direction: column;
    width: 100%;
  }
  .site-header .header-menus .menu-list .menu-item {
    width: 100%;
    line-height: 55px;
    border-bottom: 1px solid #333;
  }
  .site-header .menu-list .menu-item:nth-of-type(n + 2)::before {
    content: none;
  }
  .site-header .menu-list .menu-item > a {
    color: #ffffff;
    padding: 0 20px;
    font-weight: 500;
  }
  .site-header .language-box {
    padding: 0 40px;
  }

  body.open .site-header .mobile-menu-button span:nth-of-type(1) {
    -webkit-transform: translateY(16px) rotate(-45deg);
    transform: translateY(16px) rotate(-45deg);
    top: 0;
  }
  body.open .site-header .mobile-menu-button span:nth-of-type(2) {
    opacity: 0;
  }
  body.open .site-header .mobile-menu-button span:nth-of-type(3) {
    -webkit-transform: translateY(-23px) rotate(45deg);
    transform: translateY(-23px) rotate(45deg);
    bottom: 0;
  }
  body.open .site-header .mobile-menu-button span {
    background-color: #fff;
    height: 1px;
  }
  body.open .site-header .header-menus {
    transform: translatex(0);
  }

  .main-section .main-swiper .swiper-item .text-box .button {
    font-size: 18px;
    width: 120px;
    height: 40px;
    margin-top: 20px;
  }

  .section-002 .text-box p {
    font-size: 16px;
  }

  .section-003 .text-list {
    row-gap: 60px;
  }
  .section-003 .title-box p {
    font-size: 18px;
    margin-top: 30px;
  }
  .section-003 .text-list .list-item .text-box p {
    font-size: 16px;
    padding-left: var(--content-padding);
  }
  .section-003 .text-list .list-item .text-box h2 {
    padding-left: var(--content-padding);
  }
  .section-003 .list-box .list-item .button {
    width: 80px;
    height: 30px;
    margin: 20px auto;
  }
  .section-003 .list-box .list-item .button img {
    width: 20px;
    height: auto;
    display: block;
  }

  .section-004 {
    background-image: url(../images/bg-section004-m.jpg);
  }
  .section-004 .title-box h2 {
    font-size: 40px;
  }
  .section-004 .title-box p {
    font-size: 16px;
    margin-top: 20px;
  }
  .section-004 .list-box .list-item {
    flex-direction: column;
    row-gap: 20px;
    padding: 20px 0;
  }

  .section-005 .process-box .process-wrapper {
    font-size: 10px;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    background-image: none;
  }
  .section-005 .process-box .process-wrapper .process-item {
    position: static;
    width: calc((100% - 10px) / 2);
  }
  .section-005 .process-box .process-wrapper .process-item .img {
    width: 14em;
  }
  .section-005 .process-box .process-wrapper .process-item .text p {
    font-size: 1.4em;
    padding: 0 20px;
    word-break: keep-all;
  }
  .section-005 .process-box .process-wrapper p.content-text {
    font-size: 1.4em;
    font-weight: 700;
    color: #646464;
    text-align: center;
  }

  .section-005 .map-box {
    margin-top: 150px;
  }
  .section-005 .map-box .title-box h2 {
    font-size: 32px;
  }
  .section-005 .map-box .title-box p {
    font-size: 16px;
  }

  .section-005 .title-box h2 {
    font-size: 24px;
  }
  .section-005 .title-box p {
    font-size: 18px;
    margin-top: 10px;
  }
  .section-005 .contact-box {
    margin-top: 30px;
  }
  .section-005 .contact-box .title-box h2 {
    font-size: 20px;
  }
  .section-005 .contact-box .title-box p {
    font-size: 16px;
  }
  .section-005 .form-area .form-group {
    display: flex;
    flex-direction: column;
  }
  .section-005 .form-area .form-group .input-col {
    width: 100%;
  }
  .section-005 .form-area .input-box > label {
    width: 100px;
    font-size: 16px;
    padding-left: 16px;
  }
  .section-005 .form-area .input-box {
    flex-direction: column;
    height: 100%;
    row-gap: 0;
    align-items: flex-start;
  }
  .section-005 .form-area .input-box > label {
    display: flex;
    align-items: center;
    height: 40px;
  }
  .section-005 .form-area .input-box > label::after {
    content: none;
  }
  .section-005 .form-area .input-box > input[type="text"] {
    font-size: 16px;
    width: 100%;
    height: 50px;
    border-radius: 8px;
    padding: 0 20px;
  }
  .section-005 .form-area .input-box.textarea-input {
    row-gap: 0;
  }
  .section-005 .form-area .input-box.textarea-input > textarea {
    font-size: 16px;
  }
  .section-005 .form-area .button-box .button {
    width: 100%;
    height: 70px;
    font-size: 16px;
  }

  .section-006 .box-text p {
    font-size: 16px;
  }
  .section-006 .box-text p em {
    font-size: 24px;
  }

  .section-006 {
    padding: 140px 0;
  }
  .section-006 .box-text {
    row-gap: 5px;
  }
  .section-006 .box-text p {
    font-size: 14px;
  }
  .section-006 .box-text p em {
    font-size: 16px;
  }
  .section-006 .box-text .button {
    font-size: 16px;
    width: 180px;
    height: 50px;
  }
  .section-006 .box-text .button::before {
    width: 12px;
    margin-right: 10px;
  }

  .site-footer .footer-wrapper {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
  }
  .site-footer .footer-menu-box .footer-menu-item > a {
    font-size: 14px;
  }
  .site-footer .footer-wrapper .footer-bottom-box .company-info .address > p {
    font-size: 14px;
  }
  .site-footer
    .footer-wrapper
    .footer-bottom-box
    .company-info
    .address
    .copyright {
    flex-direction: column;
    row-gap: 10px;
    margin-top: 20px;
  }
  .site-footer
    .footer-wrapper
    .footer-bottom-box
    .company-info
    .address
    .copyright
    > p {
    font-size: 12px;
  }
  .site-footer .footer-wrapper .footer-bottom-box .sns-info .qrcode > img {
    width: 80px;
    height: 80px;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  :root {
    --content-padding: 16px;
    --container-padding: 16px;
  }

  .section-001 .title-box .logo {
    width: 140px;
  }

  .section-003 .card-list .list-item {
    width: 100%;
    height: auto;
    padding: 30px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
  }
  .section-003 .card-list .list-item .text-box h2 {
    text-align: center;
    padding: 0;
  }

  .section-005 .process-box .process-wrapper .process-item .img {
    width: 10em;
  }
  .section-005 .process-box .process-wrapper .process-item .text h2 {
    font-size: 1.8em;
  }
  .section-005 .process-box .process-wrapper .process-item .text p {
    font-size: 1.2em;
    padding: 0 20px;
    word-break: keep-all;
  }
  .section-005 .process-box .process-wrapper p.content-text {
    font-size: 1.6em;
    font-weight: 700;
    color: #646464;
    text-align: center;
  }
}

.floating-menu {
  position: fixed;
  top: 60%;
  right: 10px;
  /*transform: translateY(-50%);*/
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  padding: 12px;
  z-index: 1000;
  width: 6.5em;
  height: 12em;
}

.floating-menu ul {
  list-style: none;
  padding: 2;
  margin: 0;
  position: relative;
  left: 5%;
  top: 10px;
}

.floating-icon img {
  width: 14px;
  height: 12px;
  vertical-align: middle;
}

.floating-icon a {
  color: #333;
  vertical-align: middle;
  margin-left: 10px;
}

.floating-line {
  width: 5em;
}

.floating-Banner {
  width: 8em;
}

.floating-bottomIcon {
  margin-top: 5px;
}

.floating-bottomIcon img {
  width: 20px;
  height: 22px;
  margin-left: 0px;
  vertical-align: middle;
}

.floating-bottomIcon a {
  color: #000000;
  margin-left: 5px;
  vertical-align: middle;
}

.floating-menu li {
  margin-bottom: 10px;
}

.floating-menu a {
  font-size: 11px;
  text-decoration: none;
  font-family: var(--Pretendard);
}

.floating-menu a:hover {
  color: #007bff;
}

@media (min-width: 1400px) {
  .section-005 .process-box .process-wrapper .process-item:nth-of-type(1) {
    left: 0%;
    top: -10%;
  }
  .section-005 .process-box .process-wrapper .process-item:nth-of-type(2) {
    right: 0%;
    top: -10%;
  }
  .section-005 .process-box .process-wrapper .process-item:nth-of-type(3) {
    left: -5%;
    bottom: -15%;
  }
  .section-005 .process-box .process-wrapper .process-item:nth-of-type(4) {
    right: -5%;
    bottom: -15%;
  }
  .section-003 .card-list .list-item .text-box p {
    font-size: 16px;
    margin-top: 20px;
  }
}
