@charset "utf-8";

:root {
  --primary-color: #A358FF;

  --color-static-white: #fff;
  --color-static-black: #000;

  --color-warning: #e60303;

  --shadow-down-blk: 0px 4px 4px rgba(0, 0, 0, 0.25);
  --gradient-primary: linear-gradient(180deg, #6000D6 0%, #320070 100%);
  --gradient-primary-dark: linear-gradient(180deg, #5000b1 0%, #250052 100%);
}
body {
  cursor: none !important;
  width: 100%;
  height: 100%;
  font-family: "Paperlogy";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--color-static-white);
  background: var(--color-static-black);
  overflow-x: hidden;
}
.cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  background-color: var(--color-static-white);
  border-radius: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* transition: all 0.3s ease; */
  transform-origin: 100% 100%;
  backdrop-filter: sepia(20%);
  background-size: cover;
  mix-blend-mode: difference;
}
.english {
  font-family: "Poppins";
  font-family: 200;
}
.overflow_hidden{overflow-x: hidden;}
.hidden_scroll {
  overflow: hidden;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--color-static-white) inset;
}
*::placeholder{
  color: var(--color-gray-400);
}

/* 공통 모달 스타일 시작 */
.modal_popup {
  display: none;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  position: fixed;
  background: var(--color-black-opa-50);
  overflow: hidden;
  z-index: 201;
  color: var(--color-static-black);
}
.modal_wrap {
  min-height: 100px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  border-radius: 16px;
  background: var(--color-static-white);
  overflow-y: hidden;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.5);
}
.modal_wrap_sm {
  max-width: 320px;
  width: 94%;
  padding: 24px 16px;
}
.modal_wrap_md {
  max-width: 550px;
  width: 94%;
}
.modal_wrap_lg {
  max-width: 738px;
  width: 94%;
  min-height: 50%;
  max-height: 90%;
  padding: 0px;
}
.modal_wrap_xl {
  max-width: 900px;
  width: 94%;
  min-height: 50%;
  max-height: 90%;
}
.modal_scroll {
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal_scroll::-webkit-scrollbar {
  width: 6px;
  margin-right: 20px;
}
.modal_scroll::-webkit-scrollbar-thumb {
  margin-right: 20px;
  border-radius: 10px;
  background-color: #dfdfdf;
}
.modal_scroll::-webkit-scrollbar-track {
  margin-right: 20px;
  border-radius: 10px;
  background-color: transparent;
}
.modal_wrap_line {
  width: 100%;
  border-bottom: 0.5px solid var(--color-border-primary);
}
.modal_top_w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 20px 30px 20px;
  background: var(--color-static-white);
}
.modal_top_w .btn_modal_close.icon {
  width: 26px;
}
.modal_title {
  font-size: 24px;
  font-weight: 700;
}
.modal_content {
  padding: 20px 20px 30px 20px;
}
.modal_content_sm {
  padding: 0px;
}
.modal_content .popup_icon {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
}
.modal_btn_w {
  width: 100%;
  margin-top: 30px;
}
.modal_btn_w button {
  padding: 5px 30px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 15px;
}
.modal_btn_w button + button {
  margin-left: 10px;
}
.modal_btn_w .btn_modal_close {
  cursor: pointer;
  color: var(--color-static-white);
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  transition: all 0.3s;
}
.modal_btn_w .btn_modal_cancel {
  cursor: pointer;
  color: var(--color-static-white);
  border: 1px solid var(--color-gray-400);
  background: var(--color-gray-400);
  transition: all 0.3s;
}
.modal_btn_w .btn_modal_close:hover {
  border: 1px solid var(--primary-dark-color);
  background: var(--primary-dark-color);
}
.modal_btn_w .btn_modal_cancel:hover {
  border: 1px solid var(--color-gray-500);
  background: var(--color-gray-500);
}
/* 공통 모달 스타일 시작 */

/* 헤더 시작 */
header{
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  z-index: 100;
}
header.on{
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header_wrap{
  width: 100%;
  margin: 0 auto;
  height: 70px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a{
  cursor: none;
}
.header_wrap>.logo{
  font-size: 0;
}
.header_wrap>.logo>img{
  width: 160px;
}
.nav_pc .gnb{
  display: flex;
  align-items: center;
  column-gap: 2.8vw;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0;
}
.nav_pc .gnb>li{
  position: relative;
}
.nav_pc .gnb>li>a{
  position: relative;
  padding: 20px 0;
}
.nav_pc .gnb>li.on>a:after, .nav_pc .gnb>li:hover>a:after{
  opacity: 1;
}
.nav_pc .gnb li a:after{
  content: '';
  position: absolute;
  top: 12px;
  right: -8px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--primary-color);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.btn_contact{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  color: var(--color-static-white) !important;
  font-size: 18px !important;
  border: 1px solid var(--color-static-white);
  padding: 4px 30px;
  border-radius: 30px;
  box-shadow: 0 0 12px var(--color-static-white);
  transition: all 0.3s ease-in-out;
}
.btn_contact:hover{
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 12px rgba(163, 88, 255, 1);
  transition: all 0.3s ease-in-out;
}
.btn_contact img{
  width: 25px;
}
.gnb .lnb{
  display: none;
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  width: 150px;
}
.lnb>li>a{
  font-size: 18px;
  display: inline-block;
  padding: 6px 0;
  transition: all .3s ease;
  text-shadow: 0 0 4px var(--color-static-black);
}
.lnb>li:hover>a{
  color: var(--primary-color);
  transition: all .4s ease;
}
/* 버거 메뉴 시작 */
.btn_burger {
  display: none;
  position: relative;
  cursor: pointer;
}
#hamburger {
  display: none;
}
#hamburger + label {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.header #hamburger + label span {
  background: var(--color-static-white);
}
.header #hamburger:checked + label span {
  background: var(--color-static-white);
}
#hamburger + label span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 30px;
  background: var(--color-static-white);
  transition: all 0.35s;
}
#hamburger + label span:nth-child(1) {
  top: 0;
}
#hamburger + label span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#hamburger + label span:nth-child(3) {
  bottom: 0;
}
#hamburger:checked + label {
  z-index: 102;
}
#hamburger:checked + label span {
  background: var(--color-static-white);
}
#hamburger:checked + label span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#hamburger:checked + label span:nth-child(2) {
  opacity: 0;
}
#hamburger:checked + label span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.sidebar {
  width: 100%;
  height: 100vh;
  background: var(--color-static-black);
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 101;
  transition: all 0.4s;
}
#hamburger:checked + label + div {
  left: 0;
}
.nav_mobile {
  position: relative;
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
}
.sidebar .nav_mobile>li {
  color: var(--primary-color);
  position: relative;
  width: 100%;
  text-align: center;
  cursor: pointer !important;
  font-size: 10px;
}
.sidebar {
  padding: 0;
  text-decoration: none;
  display: block;
  text-align: center;
}
.sidebar img.logo {
  max-width: 180px;
  width: 100%;
  padding: 50px 0;
}
.sidebar li a {
  display: flex;
  justify-content: center;
  /* margin-bottom: 40px; */
  text-decoration: none;
  transition: all 0.4s;
  text-align: right;
}
.sidebar ul li a{
  position: relative;
}
.sidebar .lnb>li:hover a:after{
  opacity: 1;
}
.sidebar .lnb>li>a:after{
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(163, 88, 255, 0) 0%, rgba(163, 88, 255, 1) 50%,rgba(163, 88, 255, 0) 100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.sidebar .lnb a{
  color: var(--color-static-white);
  margin-bottom: 10px;
}
.sidebar .lnb li:last-of-type a{
  margin-bottom: 30px;
}
/* 버거 메뉴 끝 */
/* 헤더 끝 */

/* 인덱스 시작 */
main{
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden !important;
}
.bg_video{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 12s ease-in-out;
}
.bg_video.on{
  opacity: 1;
}
.main_text{
  width: 100%;
  padding: 0 50px;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.main_text>.en{
  font-size: clamp(40px, 4.4vw, 100px);
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}
.main_text>.ko{
  font-size: clamp(30px, 3.2vw, 80px);
  font-weight: 300;
  opacity: 0;
  transition: opacity 6s ease-in-out;
}
.main_text>.ko span{
  color: rgba(255, 255, 255, 0.5);
}
.main_text.on>.en, .main_text.on>.ko{
  opacity: 1;
}
.icon_scroll{
  border: 2px solid rgb(255, 255, 255);
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  position: absolute;
  z-index: 99;
  width: 30px;
  height: 45px;
  background-color: var(--color-black-opa-50);
  box-shadow: 0 0 20px var(--color-static-black);
}
.icon_scroll::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  top: 5px;
  width: 3.5px;
  height: 6px;
  border-radius: 2px;
  background-color: rgb(255, 255, 255);
  -webkit-animation: scrollMove 2s infinite;
  animation: scrollMove 2s infinite;
}
section{
  /* overflow: hidden; */
  width: 100%;
  padding: 120px 0 ;
}
.wrap{
  max-width: 1700px;
  width: 100%;
  padding: 0 50px;
  margin: 0 auto;
}
.section_main{
  position: relative;
}
.section_main::after{
  opacity: 0;
  content: '';
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(255,255,255,1));
  position: absolute;
  top: 0;left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.section_main.on::after{
  animation: bar_down_ani 2s ease-in-out forwards;
  animation-delay: 0.5s;
  transition: all 0.5s;
}
.section_main_text{
  font-family: 'Pretendard';
  line-height: 1.4;
  margin: 40px 0;
  font-size: clamp(18px, 3.1vw, 50px);
  text-align: center;
  font-weight: 100;
  background-color: var(--color-static-black);
}
#quote{
  opacity: 0;
}
.section_main_text span{
  font-size: clamp(28px, 4.1vw, 66px);
  font-weight: 700;
}
.con_01{
  padding-top: 0;
}
.con_01 .list_box{
  perspective: 1200px;
}
.list_box li:nth-of-type(2n-1){
  background-color: #2f2f2f;
}
.list_box li:nth-of-type(2n){
  background-color: #e2e2e2;
}
.list_box .box{
  position: -webkit-sticky;
  position: sticky;
  filter: brightness(1);
  padding: 60px 60px;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 100px;
}
.con_01 .list_box .box.a{
  top: 10%;
}
.con_01 .list_box .box.b{
  top: 15%;
}
.con_01 .list_box .box.c{
  top: 20%;
}
.con_01 .list_box .box.d{
  top: 25%;
}
.con_01 .list_box .box:last-child{
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
}
.list_box .box .box_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  max-width: 1400px;
}
.list_box .box .bg_box{
  position: absolute;
  top: -50%;
  right: 0%;
  max-width: 500px;
  width: 35%;
  height: 200%;
  transform: rotate(30deg);
}
.list_box .box:nth-last-of-type(2n-1) .bg_box{
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(255,255,255,0.8)100%);
  border: 4px solid rgba(255, 255, 255, 0.6);
}
.list_box .box:nth-last-of-type(2n) .bg_box{
  background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(47,47,47,0.8)100%);
  border: 4px solid rgba(255, 255, 255, 0.6);
}
.list_box .box .left_box{
  width: 70%;
}
.list_box .box .left_box .num{
  font-size: clamp(30px, 4.5vw, 50px);
  color: var(--color-gray-500);
  font-family: 'Poppins';
  margin-bottom: 60px;
}
.list_box .box .left_box .box_main_text{
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 62px);
}
.list_box .box:nth-of-type(2n) .left_box .box_main_text{
  color: var(--color-static-black);
}
.list_box .box .left_box .box_sub_text{
  font-family: 'Pretendard';
  font-size: clamp(14px, 2vw, 30px);
  font-weight: 200;
  line-height: 1.3;
  margin-bottom: 60px;
}
.list_box .box:nth-of-type(2n) .left_box .box_sub_text{
  color: var(--color-static-black);
}
.list_box .box .left_box .btn_view_more{
  display: flex;
  padding: 8px 26px;
  border: 0.9px solid var(--color-static-white);
  border-radius: 50px;
  float: left;
  align-items: center;
  column-gap: 20px;
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 600;
  font-family: 'Pretendard';
}
.list_box .box .left_box .btn_view_more:hover{
  box-shadow: 0 0 10px var(--color-static-white);
  transition: all 0.3s ease-in-out;
}
.list_box .box:nth-of-type(2n) .left_box .btn_view_more:hover{
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}
.list_box .box:nth-of-type(2n) .left_box .btn_view_more{
  color: var(--color-static-black);
  border: 1px solid var(--color-black-opa-50);
}
.left_box .btn_view_more .arrow_wrap{
  display: flex;
}
.left_box .btn_view_more .arrow_wrap .arrow{
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-static-white);
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  animation: blink 0.6s infinite;
  animation-direction: alternate;
}
.list_box .box:nth-of-type(2n) .left_box .btn_view_more .arrow_wrap .arrow{
  border: 2px solid var(--color-static-black);
  border-bottom: 0;
  border-left: 0;
  color: var(--color-static-black);
}
.left_box .btn_view_more .arrow_wrap .arrow:nth-of-type(2){
  margin-left: -5.5px;
  animation-delay: 0.2s;
}
.left_box .btn_view_more .arrow_wrap .arrow:nth-of-type(3){
  margin-left: -5.5px;
  animation-delay: 0.4s;
}
.list_box .box .right_box{
  font-size: 0;
  width: 30%;
}
.list_box .box .right_box img{
  max-width: 220px;
  width: 100%;
  position: relative;
}
/* 인덱스 끝 */

/* 플로트 메뉴 시작 */
.float_menu{
  opacity: 0;
  transition: opacity 0.5s ease;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}
.float_menu.on{
  opacity: 1;
}
.float_menu>div{
  position: relative;
  width: 80px;
  height: 80px;
  padding: 20px;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.float_menu>div:hover{
  box-shadow: 0 0 15px rgba(255, 255, 255, 1);
  transition: all .3s ease-in-out;
}
.float_menu>div>.float_contact, .float_menu>div>.float_top{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  padding: 20px;
  border-radius: 100%;
  border: 0.8px solid var(--color-static-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  font-family: 'Pretendard';
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}
.float_menu .float_contact img{
  width: 30px;
}
.float_menu .float_top img{
  width: 20px;
}
.float_menu>div+div{
  margin-top: 20px;
}
/* 플로트 메뉴 끝 */

/* 푸터 시작 */
footer{
  font-family: 'Pretendard';
  padding: 80px 0 50px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 10%);
}
footer img{
  max-width: 230px;
  width: 50%;
  margin-bottom: 40px;
}
.footer_text .company_name{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}
.footer_text p{
  line-height: 1.7;
  font-size: 18px;
  font-weight: 300;
}
.footer_text p span{
  color: rgba(255, 255, 255, 0.5);
  margin-right: 40px;
}
.footer_text .copy{
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 40px;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 200;
}
/* 푸터 끝 */

/* 컨택트 시작 */
.modal_popup .btn_x{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-static-white);
  border: 1px solid var(--color-gray-200);
}
.modal_popup .btn_x img{
  width: 14px;
}
.modal_content h2{
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 600;
  margin-bottom: 6px;
}
.modal_content p{
  font-family: 'Pretendard';
}
.modal_content .sub_txt{
  font-size: 18px;
}
.modal_content .contact_con{
  display: flex;
  column-gap: 20px;
  padding: 50px 60px 20px;
}
.privacy_con{
  padding: 0px 60px;
}
.modal_content .contact_con>div{
  width: 50%;
}
.modal_content .contact_con>div>div{
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.modal_content .contact_con>div>div:last-of-type{
  margin-bottom: 0px;
}
.modal_content .contact_con>div p{
  width: 80px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
}
.input_form, .text_contact{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  cursor: none;
}
.input_form::placeholder, .modal_contact textarea::placeholder{
  font-family: 'Pretendard';
  font-size: 14px;
}
.input_form, .modal_contact textarea{
  font-family: 'Pretendard';
}
.text_contact{
  height: 222px;
  margin-top: 6px;
}
.privacy_con p{
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
.privacy{
  height: 100px;
  font-size: 15px;
}
/* 체크박스 시작 */
.checkbox {
  display: flex;
  align-items: center;
  position: relative;
  font-family: 'Pretendard';
}
.checkbox input {
  position: absolute;
  opacity: 0;
}
.checkbox .label {
  display: inline-block;
  position: relative;
  padding: 0 0 0 25px;
  line-height: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
}
.checkbox input+.label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-gray-300);
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 2px;
}
.checkbox input:checked+.label:before {
  background: url('../img/icon_check.svg') 50% 50% no-repeat var(--primary-color);
  border-color: var(--primary-color);
  background-size: 14px auto;
}
/* 체크박스 끝 */
.btn_hover button {
  cursor: none;
  font-family: 'Pretendard';
  padding: 12px 13%;
  font-size: 20px;
  margin: 0 auto;
  font-weight: 500;
  border-radius: 4px;
  background: var(--gradient-primary);
  --duration: .5s;
  --move-hover: -3px;
  --shadow-hover: 0 4px 20px -2px rgba(0, 0, 0, 0.25);
  display: block;
  text-decoration: none;
  letter-spacing: 0.5px;
  color: var(--color-static-white);
  /* box-shadow: var(--shadow); */
  transform: translateY(var(--y));
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}
.btn_hover button div {
  display: flex;
  justify-content: center;
}
.btn_hover button div span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
}
.btn_hover button div span:nth-child(1) {
  --d: 0.05s;
}
.btn_hover button div span:nth-child(2) {
  --d: 0.1s;
}
.btn_hover button div span:nth-child(3) {
  --d: 0.15s;
}
.btn_hover button div span:nth-child(4) {
  --d: 0.2s;
}
.btn_hover button div span:nth-child(5) {
  --d: 0.25s;
}
.btn_hover button div span:nth-child(6) {
  --d: 0.3s;
}
.btn_hover button div span:nth-child(7) {
  --d: 0.35s;
}
.btn_hover button div span:nth-child(8) {
  --d: 0.4s;
}
.btn_hover button div span:nth-child(9) {
  --d: 0.45s;
}
.btn_hover button:hover {
  --y: var(--move-hover);
  --shadow: var(--shadow-hover);
  --move: -6px;
  --shadow-active: 0 3px 1px rgba(0, 0, 0, .2);
}
.btn_hover button:hover span {
  -webkit-animation: move var(--duration) linear var(--d);
  animation: move var(--duration) linear var(--d);
}
/* 컨택트 끝 */

/* 어바웃 시작 */
.com_sub_main{
  width: 100vw;
  height: 90vh;
  background: url('../img/img_visual_01.webp') no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.com_sub_main .sub_main_title{
  position: absolute;
  top: 40%;
  left: 50px;
  font-size: clamp(30px, 5vw, 100px);
  font-weight: 600;
}
.bg_main_gra{
  position: absolute;
  width: 100vw;
  height: 45vh;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,1));
  bottom: 0;
  z-index: 2;
}
.about_main{
  display: flex;
  align-items: center;
}
.about_main>div{
  width: 50%;
}
.about_main .sm_title{
  text-align: left;
}
.big_title{
  font-family: 'Pretendard';
  font-size: clamp(30px, 5vw, 60px);
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
}
.big_title span{
  font-weight: 100;
  font-size: clamp(16px, 3.2vw, 40px);
}
.sm_title{
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 6px;
}
.about_main .text{
  font-family: 'Pretendard';
  font-weight: 200;
  font-size: clamp(16px, 1.9vw, 26px);
}
.promise_list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 100px;
}
.promise_list li{
  width: 25%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  text-align: center;
}
.promise_list li .inner_box {
  position: relative;
  width: 100%;
  height: 30rem;
  overflow: hidden;
}
.promise_list li .inner_box .bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  background-position: 50% 50%;
  background-size: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.promise_list li:hover .inner_box .bg{
  transform: scale(1.2);
  filter: grayscale(0%) blur(3px);
}
.promise_list li:nth-child(1) .inner_box .bg{
  background: url('../img/img_pro_01.webp') no-repeat;
  background-position: 50% 50%; 
  background-size:cover;
}
.promise_list li:nth-child(2) .inner_box .bg{
  background: url('../img/img_pro_02.webp') no-repeat;
  background-position: 50% 50%; 
  background-size:cover;
}
.promise_list li:nth-child(3) .inner_box .bg{
  background: url('../img/img_pro_03.webp') no-repeat;
  background-position: 50% 50%; 
  background-size:cover;
}
.promise_list li:nth-child(4) .inner_box .bg{
  background: url('../img/img_pro_04.webp') no-repeat;
  background-position: 50% 50%; 
  background-size:cover;
}
.promise_list li:hover .title_txt{
  top: 55%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.promise_list li .title_txt{
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Pretendard';
  width: 100%;
  max-width: 300px;
  transition: all 0.5s ease;
  padding: 0 16px;
}
.promise_list li .title_txt .txt{
  opacity: 0;
  font-size: 0;
  transition: opacity 0.4s ease;
}
.promise_list li:hover .title_txt .txt{
  opacity: 1;
  font-size: 15px;
  transition: opacity 0.4s ease;
  margin-top: 30px;
}
.promise_list li .title_txt .en{
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 300;
}
.promise_list li .title_txt .ko{
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  margin-top: -6px;
  line-height: 1.1;
  margin-top: 5px;
}
.partners_wrap{
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
}
.partner_slide{
  width: max-content;
  display: flex;
  margin: 10px 0;
}
.partner_slide.left{
  animation: paMoveLeft 30s linear infinite;
}
.partner_slide.right{
  animation: paMoveRight 30s linear infinite;
}
.partner_slide .partner{
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1/1;
  background-color: var(--color-static-white);
  border-radius: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .4;
}
.partner_slide .partner:hover{
  opacity: 1;
  transition: all 0.4s;
}
.partner_slide .partner:hover img{
  filter: grayscale(0%);
  transition: all 0.4s;
}
.partner_slide .partner img{
  filter: grayscale(100%);
}
.partner_slide .partner+.partner{
  margin-left: 20px;
}
.certificate_wrap{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 40px;
  column-gap: 5%;
}
.certificate_wrap img{
  width: 30%;
}

/* 어바웃 끝 */

/* 히스토리 시작 */
.history_tab_wrap {
  position: sticky;
  top: 70px;
  background: var(--color-static-black);
  z-index: 2;
  font-family: 'Pretendard';
}
.history_tab {
  display: flex;
  padding-top: 20px;
}
.history_tab li{
  width: 25%;
  color: #ccc;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.history_tab li.active{
  color: var(--primary-color);
}
.history_progress {
  margin-top: 20px;
  height: 3px;
  background: var(--color-gray-500);
}
.history_progress .progressbar{
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.2s ease;
}
.history {
  display: flex;
  font-family: 'Pretendard';
}
.history .side:first-of-type {
  width: 40%;
}
.history .side:last-of-type {
  width: 60%;
}
.history .left .txt_wrap {
  position: sticky;
  top: 0;
  padding-top: 200px;
}
.history .left .txt_wrap h2{
  line-height: 1.3;
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 700;
}
.history .left .txt_wrap p{
  line-height: 1.4;
  font-size: clamp(16px, 1.8vw, 36px);
  font-weight: 100;
}
.history .right ul{
  padding-top: 170px;
}
.history .right p{
  font-size: 56px;
  font-weight: 800;
  color: #ddd;
  transition: all 0.3s ease;
}
.history .right p.active {
  color: var(--primary-color);
  font-size: 76px;
  transition: all 0.3s ease;
}
.history .right dl {
  display: flex;
  margin-bottom: 22px;
}
.history .right li dl:last-of-type{
  margin-bottom: 140px;
}
.history .right dl.next_month {
  margin-top: 48px;
}
.history .right dt {
  font-weight: 700;
  width: 120px !important;
  font-size: 18px;
}
.history .right dd {
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  width: calc(100% - 120px);
}
.history .right dt.blind {
  opacity: 0;
}
/* 히스토리 끝 */


/* 스탬프투어 시작 */
.busi_sub_main{
  width: 100vw;
  height: 100vh;
  background: url('../img/img_visual_02.webp') no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.busi_sub_main_02{
  background: url('../img/img_visual_03.webp') no-repeat;
  background-position: center;
  background-size: cover;
}
.busi_sub_main_03{
  background: url('../img/img_visual_04.webp') no-repeat;
  background-position: left;
  background-size: cover;
}
.busi_sub_main .sub_main_title{
  font-size: clamp(30px, 6vw, 70px);
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.title_location{
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 10;
}
.sub_s_title{
  display: block;
  font-size: clamp(18px, 2.8vw, 42px);
  font-weight: 200;
  line-height: 1.3;
}
.btn_home{
  cursor: none;
  background: transparent;
  color: var(--color-static-white);
  border: 1px solid var(--color-static-white);
  padding: 8px 20px;
  border-radius: 40px;
  font-family: 'Paperlogy';
  font-size: 18px;
  z-index: 10;
  margin-top: 50px;
}
.btn_home:hover{
  box-shadow: 0 0 12px var(--color-static-white);
}
.mockup{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10%;
  z-index: 1;
}
.mockup img{
  max-width: 230px;
  width: 40%;
}
.mockup img:first-child{
  margin-bottom: 100px;
}
.mockup img:last-child{
  margin-top: 100px;
}
.qr_area{
  position: absolute;
  bottom: 10px;
  right: 50px;
  text-align: center;
  z-index: 3;
}
.qr_area img{
  max-width: 76px;
  width: 90%;
  border-radius: 8px;
}
.sm_text{
  font-size: 19px;
  text-align: center;
  font-family: 'Pretendard';
  font-weight: 200;
}
.tag_area{
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 80px auto 50px;
  padding: 0 30px;
  font-family: 'Pretendard';
  column-gap: 20px;
  font-size: 21px;
}
.main_img{
  max-width: 1200px;
  border-radius: 30px;
}
.btn_download{
  background: var(--gradient-primary);
  color: var(--color-static-white);
  padding: 8px 18px;
  border-radius: 4px;
  white-space: nowrap;
}
.btn_download:hover{
  background: var(--gradient-primary-dark);
}
.btn_download img{
  width: 13px;
  margin-left: 16px;
}
.opa_text{
  opacity: 0.2;
  font-weight: 800;
}
.stamp_img_wrap{
  margin: 0 auto;
  margin-top: 200px;
  padding-bottom: 80px;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 40px;
  column-gap: 8%;
  position: relative;
}
.stamp_img_wrap img:nth-of-type(2),.stamp_img_wrap img:nth-of-type(5),
.stamp_img_wrap img:nth-of-type(8){
  margin-top: -160px;
}
.bg_op{
  width: 900px;
  height: 900px;
  border-radius: 100%;
  position: absolute;
  top: 450px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
}
.bg_op::before{
  content: '';
  width: 700px;
  height: 700px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
}
.bg_op::after{
  content: '';
  width: 500px;
  height: 500px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
}
.bg_icon{
  position: absolute;
  width: 100px;
}
.bg_icon.lo_01{
  right: -80px;
  top: 30%;
  z-index: -1;
}
.bg_icon.lo_02{
  left: -110px;
  bottom: 30%;
  z-index: -1;
}
.bg_icon.lo_03{
  width: 80px;
  height: 80px;
  left: 160px;
  bottom: 65px;
}
.count_text{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-family: 'Pretendard';
  font-weight: 100;
  margin-bottom: 80px;
}
.big_text{
  font-size: clamp(30px, 5vw, 60px);
  text-align: center;
  line-height: 1.3;
  font-weight: 100;
}
.banner_wrap{
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  row-gap: 10px;
  position: relative;
  padding-bottom: 30px;
}
.banner_wrap img{
  max-width: 250px;
  width: 100%;
  border-radius: 10px;
}
.btn_bottom_home{
  cursor: none;
  background: transparent;
  color: var(--color-static-white);
  border: 1px solid var(--color-static-white);
  padding: 8px 20px;
  border-radius: 40px;
  font-family: 'Paperlogy';
  font-size: 18px;
  z-index: 10;
  transition: all 0.4s ease;
}
.btn_bottom_home:hover{
  box-shadow: 0 0 12px var(--color-static-white);
  transition: all 0.4s ease;
}
/* 스탬프투어 끝 */


/* 축제 시작 */
.bg_main_gra.lo_top{
  top: 0;
  bottom: unset;
  transform: rotate(180deg);
  height: 20vh;
}
.bg_main_gra.lo_bottom{
  height: 20vh;
}
.festi_img_ani {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden; /* 부모에서만 잘라줌 */
}
.rolling-inner {
  display: flex;
  flex-direction: column;
}
.bg_festi_img {
  width: 30%;
  height: 100vh;
  position: relative;
  z-index: -1;
}
.bg_festi_img img {
  display: block;
  max-width: 260px;
  border-radius: 12px;
  margin: 60px auto;
}
.bg_festi_img img + img {
  margin-top: 120px;
}
.bg_festi_img.left img:nth-child(1), .bg_festi_img.left img:nth-child(7){
  transform: rotate(10deg);
}
.bg_festi_img.left img:nth-child(2), .bg_festi_img.left img:nth-child(8){
  transform: rotate(70deg);
}
.bg_festi_img.left img:nth-child(3), .bg_festi_img.left img:nth-child(9){
  transform: rotate(15deg) translateX(100px);
}
.bg_festi_img.left img:nth-child(4), .bg_festi_img.left img:nth-child(10){
  transform: rotate(-10deg);
}
.bg_festi_img.left img:nth-child(5), .bg_festi_img.left img:nth-child(11){
  transform: rotate(60deg);
}
.bg_festi_img.left img:nth-child(6), .bg_festi_img.left img:nth-child(12){
  transform: rotate(-15deg);
}
.bg_festi_img.right{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bg_festi_img.right img:nth-child(1), .bg_festi_img.right img:nth-child(7){
  transform: rotate(-10deg);
}
.bg_festi_img.right img:nth-child(2), .bg_festi_img.right img:nth-child(8){
  transform: rotate(15deg);
}
.bg_festi_img.right img:nth-child(3), .bg_festi_img.right img:nth-child(9){
  transform: rotate(-70deg);
}
.bg_festi_img.right img:nth-child(4), .bg_festi_img.right img:nth-child(10){
  transform: rotate(15deg) translateX(-100px);
}
.bg_festi_img.right img:nth-child(5), .bg_festi_img.right img:nth-child(11){
  transform: rotate(10deg);
}
.bg_festi_img.right img:nth-child(6), .bg_festi_img.right img:nth-child(12){
  transform: rotate(60deg);
}
.festi_main_text_wrap{
  width: 40%;
  padding: 0 20px;
}
.outline{
  font-weight: 900;
  color: var(--color-static-black);
  -webkit-text-stroke: 0.5px var(--color-static-white);
  line-height: 1.2;
}
.festi_img_wrap{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
/* 축제 끝 */


/* 다이렉트 시작 */
.direct_guide_wrap{
  display: flex;
  column-gap: 10px;
  justify-content: space-evenly;
  align-items: center;
}
.direct_guide_wrap .guide_area{
  max-width: 100px;
  width: 100%;
  background: var(--gradient-primary);
  padding: 12px;
  border-radius: 4px;
  font-family: 'Pretendard';
  text-align: center;
  line-height: 1.2;
  font-size: 15px;
  margin: 0 auto;
}
.direct_way_wrap{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.bg_gra{
  background: var(--gradient-primary);
  width: 100%;
  height: 60vh;
  position: absolute;
  z-index: -1;
  top: 26%;
}
.direct_way_wrap>div{
  display: flex;
  align-items: end;
  column-gap: 5%;
}
.direct_way_wrap>div img{
  max-width: 280px;
  width: 100%;
}
.direct_way_wrap>div .text{
  margin-bottom: 100px;
  width: calc(100% - 280px);
  font-family: 'Pretendard';
}
.direct_way_wrap>div .text h3{
  font-weight: 700;
  font-size: clamp(20px, 4vw, 50px);
}
.direct_way_wrap>div .text p{
  font-weight: 200;
  font-size: clamp(16px, 2vw, 30px);
  line-height: 1.3;
}
.direct_icon_wrap{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.direct_icon_wrap>div{
  max-width: 250px;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0.5px solid var(--color-static-white);
  padding: 30px;
  background: var(--color-static-black);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  font-family: 'Pretendard';
}
.direct_icon_wrap div+div{
  margin-left: -4%;
}
.direct_icon_wrap>div>img{
  max-width: 80px;
  width: 50%;
}
.direct_icon_wrap>div:last-of-type>img{
  max-width: unset;
  width: unset;
  max-height: 80px;
  height: 50%;
}
.sub_text{
  text-align: center;
  font-family: 'Pretendard';
  font-weight: 100;
  font-size: clamp(19px, 2vw, 38px);
}
.sub_text span{
  font-size: clamp(23px, 2.8vw, 45px);
  font-weight: 700;
}
/* 다이렉트 끝 */

/* 카드핏 시작 */
.text_section {
  height: 350vh; /* 스크롤 길이 (텍스트 개수에 따라 조정) */
  position: relative;
}
.text_blink{
  font-size: clamp(100px, 20vw, 200px);
  font-family: 'Pretendard';
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  animation: blink 3s infinite;
}
.text_blink.lo_01{
  top: 0;
  left: 10%;
}
.text_blink.lo_02{
  font-size: clamp(20px, 8vw, 200px);
  top: 2%;
  left: 50%;
  animation-delay: 0.5s;
}
.text_blink.lo_03{
  font-size: clamp(20px, 8vw, 200px);
  top: 12%;
  left: 38%;
  animation-delay: 1s;
}
.text_blink.lo_04{
  top: 6%;
  right: 12%;
  animation-delay: 1.2s;
}
.text_wrap {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.text_item {
  position: absolute;
  top: 50%;
  transform: translateY(50%); /* 처음엔 아래쪽 */
  opacity: 0;
  padding: 0 30px;
  text-align: center;
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: clamp(30px, 6vw, 70px);
}
.text_item span{
  background-color: var(--primary-color);
  padding: 0 4px;
}
.text_item.active {
  transform: translateY(-50%);
  opacity: 1;
}
.cardfit_img_wrap{
  max-width: 1000px;
  width: 100%;
  margin: 80px auto 0;
  padding: 0 20px;
}
.cardfit_img_wrap>div{
  display: flex;
  align-items: start;
  justify-content: center;
  text-align: center;
  gap: 4%;
  position: relative;
}
.cardfit_img_wrap>div::after{
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  top: 48%;
  z-index: -1;
  background: var(--color-static-white);
  transition: width 1s linear;
}
.cardfit_img_wrap>div.active::after{
  width: 100vw;
  transition: all 0.9s linear 0.5s;
}
.cardfit_img_wrap>div>div{
  width: 30%;
}
.cardfit_img_wrap>div img{
  max-width: 230px;
  width: 100%;
}
.cardfit_img_wrap>div p{
  font-family: 'Pretendard';
  line-height: 1.3;
  font-weight: 200;
  margin: 6px 0;
}
.wonder_wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr; /* 좌, 중앙, 우 */
  align-items: center;
  justify-content: center;
  gap: 3%;
  max-width: 1000px;
  width: 100%;  
  margin: 0 auto;
}
.wonder_wrap > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wonder_wrap .wonder_img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.wonder_wrap img {
  width: 100%;   /* 항상 부모에 맞게 줄어듦 */
  height: auto;
  border-radius: 6%;
  object-fit: cover;
}
/* 카드핏 끝 */

































@-webkit-keyframes scrollMove {
  0% {
    -webkit-transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollMove {
  0% {
    -webkit-transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bar_down_ani {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}
@keyframes bar_down_ani {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}
@-webkit-keyframes move {
  40% {
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}
@keyframes move {
  40% {
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}
@-webkit-keyframes paMoveLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes paMoveLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes paMoveRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes paMoveRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}









/* mediaquery */
@media (max-width: 1440px) {
  .mockup{
    right: 26px;
    width: 40%;
  }
}
@media (max-width: 1024px) {
  .header_wrap{
    padding: 22px 30px;
  }
  .header_wrap>.logo>img {
    width: 140px;
  }
  .wrap {
    padding: 0 30px;
  }
  .history .left .txt_wrap{
    padding-top: 128px;
    top: 84px;
  }
  .history .right ul {
    padding-top: 110px;
}
  .history .right p.active{
    font-size: 64px;
  }
  .history .righ dl{
    width: 100%;
  }
  .history .right dt{
    width: 120px;
  }
  .history .right dd{
    width: calc(100% - 120px);
  }
  .bg_op{
    width: 500px;
    height: 500px;
  }
  .bg_op::before{
    width: 350px;
    height: 350px;
  }
  .bg_op::after{
    width: 200px;
    height: 200px;
  }
  .title_location {
    left: 30px;
  }
}

@media (max-width: 900px) {
  .nav_pc{
    display: none;
  }
  .btn_burger{
    display: block;
  }
  .modal_content .contact_con{
    padding: 30px 40px;
  }
  .privacy_con{
    padding: 0px 40px;
  }
  .history_tab_wrap {
    top: 70px;
  }
  .stamp_img_wrap{
    column-gap: 4%;
  } 
}

@media (max-width: 768px) {
  .sm_d_none{
    display: none;
  }
  .cursor{
    display: none;
  }
  body{
    cursor: default !important;
  }
  .icon_scroll{
    border: 1.5px solid rgb(255, 255, 255);
    bottom: 20px;
    width: 20px;
    height: 32px;
  }
  .icon_scroll::before {
    width: 3px;
    height: 5px;
    border-radius: 2px;
  }
  .float_menu>div{
    width: 60px;
    height: 60px;
  }
  .float_menu>div>.float_contact, .float_menu>div>.float_top{
    width: 50px;
    height: 50px;
    font-size: 11px;
    line-height: 1;
  }
  .float_menu .float_contact img{
    width: 24px;
  }
  .float_menu .float_top img{
    width: 16px;
  }
  .float_menu>div+div{
    margin-top: 14px;
  }
  .modal_content .contact_con{
    flex-direction: column;
    padding: 30px 30px 10px;
    gap: 16px;
  }
  .modal_content .contact_con>div{
    width: 100%;
  }
  .promise_list li{
    width: 50%;
  }
  .privacy_con{
    padding: 0px 30px;
  }
  .history {
    flex-direction: column;
  }
  .history .side{
    width: 100% !important;
  }
  .history .left .txt_wrap{
    text-align: center;
    padding-top: 80px;
  }
  .history .right ul {
    padding-top: 80px;
  }
  .about_main{
    flex-direction: column;
    row-gap: 50px;
  }
  .about_main>div{
    width: 100%;
    text-align: center !important;
  }
  .about_main .sm_title{
    text-align: center;
  }
  .mockup{
    position: absolute;
    top: 120px;
    transform: translateX(50%);
    right: 50%;
    width: 90%;
    gap: 6%;
  }
  .mockup img{
    max-width: 180px;
  }
  .mockup img:first-child {
    margin-bottom: 70px;
  }
  .mockup img:last-child {
    margin-top: 70px;
  }
  .title_location {
    width: 100%;
    top: unset;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .qr_area{
    display: none;
  }
  .direct_guide_wrap{
    flex-direction: column;
    gap: 40px;
  }
  .direct_guide_wrap .guide_area{
    margin-bottom: 20px !important;
  }
  .direct_guide_wrap .big_title, .direct_guide_wrap .sm_text{
    text-align: center !important;
  }
  .main_img {
    border-radius: 3%;
  }
  footer{
    padding: 50px 0;
  }
  .footer_text .company_name {
    font-size: 24px;
  }
  .festi_img_ani{
    height: 100%;
  }
  .festi_img_ani>div{
    width: 100%;
  }
  .bg_main_gra.lo_bottom, .bg_main_gra.lo_top{
    display: none;
  }
  .bg_festi_img{
    display: none !important;
  }
}

@media (max-width: 620px) {
  .wrap {
    padding: 0 20px;
  }
  section {
    padding: 80px 0;
  }
  .m_block{
    display: block;
  }
  .main_text>.en{
    font-size: clamp(30px, 9vw, 100px);
  }
  .main_text>.ko{
    font-size: clamp(18px, 7vw, 80px);
  }
  .list_box .box {
    padding: 60px 30px;
  }
  .con_01 .list_box .box{
    position: -webkit-inherit;
    position: inherit;
    margin-bottom: 50px;
  }
  .partner_slide .partner {
    max-width: 120px;
    padding: 0 10px;
  }
  .certificate_wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
  }
  .certificate_wrap img{
    width: 45%;
  }
  .stamp_img_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr ;
  }
  .stamp_img_wrap img:nth-of-type(2),.stamp_img_wrap img:nth-of-type(5),
  .stamp_img_wrap img:nth-of-type(8){
    margin-top: 0;
  }
  .stamp_img_wrap img:nth-of-type(2n-1){
    margin-top: -120px;
  }
  .direct_way_wrap{
    margin-top: 20px;
  }
  .direct_way_wrap>div {
    align-items: center;
    row-gap: 20px;
    flex-direction: column;
  }
  .direct_way_wrap>div .text {
    margin-bottom: 60px;
    width: 100%;
    text-align: center !important;
  }
  .direct_way_wrap>div:last-of-type {
    align-items: center;
    row-gap: 20px;
    flex-direction: column-reverse;
  }
  .bg_gra{
    height: 80vh;
  }
  .cardfit_img_wrap>div p{
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .sidebar img.logo {
    max-width: 160px;
    padding: 40px 0 30px;
  }
  .list_box .box .box_inner {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .list_box .box .box_inner .left_box, .list_box .box .box_inner .right_box{
    width: 100%;
    text-align: center;
  }
  .list_box .box .right_box{
    width: 100%;
  }
  .list_box .box .box_inner .left_box .num, .bg_box{
    display: none;
  }
  .list_box .box .box_inner .left_box .btn_view_more{
    justify-content: center;
    float: none;
  }
  .list_box .box .left_box .box_main_text{
    font-size: clamp(28px, 9vw, 62px);
  }
  .list_box .box .left_box .box_sub_text{
    font-size: clamp(14px, 4vw, 30px);
  }
  .history .right dl {
    flex-direction: column;
  }
  .history .right dt, .history .right dd{
    width: 100% !important;
  }
  .history .right dt{
    font-size: 24px;
  }
  br.mo_d{
    display: inline-block;
    content: " ";
    padding: 0 2px;
  }
  .footer_text p{
    font-size: 15px;
  }
  .modal_content .contact_con{
    padding: 30px 6px;
  }
  .privacy_con{
    padding: 0px 6px;
  }
  .direct_icon_wrap div+div{
    margin-left: -5%;
  }
  .direct_icon_wrap>div{
    padding: 15px;
    font-size: 14px;
  }
  .wonder_wrap {
    grid-template-columns: 1fr 0.5fr 1fr; 
  }
}

@media (max-width: 425px) {
  .cardfit_img_wrap>div p{
    font-size: 13px;
  }
  .partner_slide .partner {
    max-width: 100px;
  }
}

@media (max-width: 380px) {
  
}
