body * {margin: 0;padding: 0;box-sizing: border-box;}
a,button {cursor: pointer;}
ul,li,ol {list-style: none;}
.hidden_pc {display: none;}
.hidden_mo {display: block;}

body {
  /*  color */
  --c_ff: #fff;
  --c_9DA4AC: #9DA4AC;
  --c_E6EAF0: #E6EAF0;
  --c_F6F8FA: #F6F8FA;
  --c_00: #000;
  --c_12: #121212;
  --c_22: #222;
  /*  padding */
  --padding: 180px;
  --padding_btn: 0 40px;
  --max-width: 1380px;
  --mid-width: 1162px;
  --full-width: 100%;
  /*  */
}
.main_250716 {
  overflow-x: clip;
}

/*  font  */
.main_title_list {
  --gap: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  flex: 1 1 auto;
}
.main_strong_title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c_ff);
}
.main_strong_title._black{
  color: var(--c_12);
}
.main_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c_12);
}
.info_badge {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--c_22);
  width: fit-content;
  padding: 4px 12px;
  border: 1px solid var(--c_22);
  border-radius: 4px;
}


.inner {
  --gap: 40px 0;
  display: flex;
  gap: var(--gap);
  max-width: var(--mid-width);
  padding: var(--padding) var(--menu_padding);
  margin: 0 auto;
}
._fullswiper {
  --gap: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--max-width);
  padding: 180px var(--menu_padding) 0;
  margin: 0 auto;
}

/*  btn   */
.main_btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--c_12);
  border-radius: 26px;
  background: transparent;
  overflow: hidden;    
  transition: width 0s ease;
}
.main_btn a {
  --gap: 4px;
  position: absolute;       
  top: 0;
  left: 0;  
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  width: max-content;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--c_12);
  white-space: nowrap;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateX(2px);
  transition: opacity 0s ease, transform 0s ease, visibility 0s linear 0s; 
}
.btn_trigger {
  gap: 4px;
  height: 100%;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  cursor: pointer;
}
.btn_arrow::after {
  --color: #121212;
  content: "";
  display: flex;
  width: 24px;
  height: 24px;
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.998 18L18.998 12L12.998 6' stroke='%23121212' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='18.2' y1='11.8' x2='4.8' y2='11.8' stroke='%23121212' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color);
}
.main_btn._white {
  border-color: var(--c_ff);
}
.main_btn._white a {
  color: var(--c_ff);
}
._white .btn_arrow::after {
  --color: #fff;
}



.fullswiper_area {
  width: 100%;
}
.fullswiper_area .swiper {
  position: absolute;
  left: 0;
}
.main_intro .fullswiper_area {
  height: 540px;
}
.mainIntroSwiper {
  width: 100%;
  height: 540px;
}
.mainIntroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.mainIntroSwiper .swiper-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 139px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.20) 100%);
  mix-blend-mode: multiply;
}
.mainIntroSwiper .swiper-slide figcaption {    
  position: absolute;
  bottom: 53px;
  left: 50%;
  max-width: var(--max-width);
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--c_ff);
  padding: 0 50px;
  transform: translateX(-50%);
  z-index: 1;
}
.mainIntroSwiper .swiper-slide img {     
  width: 100%;  
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.introslide_paging {
  position: absolute;
  bottom: 16px;
  left: 50%;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: var(--max-width);
  width: 100%;
  padding: 0 50px;
  transform: translateX(-50%);    
  z-index: 1;
}
.introslide_paging .swiper-pagination-num {
  --gap: 3px;
  display: flex;
  gap: var(--gap);
  width: fit-content;
  font-size: 16px;
  color: rgba(255, 255, 255, .3);
}
.introslide_paging .swiper-pagination-current {
  color: var(--c_ff);
}
.introslide_paging .swiper-pagination-progress {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: rgba(255,255,255,.2);
  border-radius: 4px;
  overflow: hidden;
}
.introslide_paging .swiper-pagination-progressbar-fill {
  background-color: var(--c_ff);
}
.mainIntroSwiper .swiper-button {
  position: absolute;
  top: calc(50% - 18px);
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 36px;
  max-width: var(--max-width);
  padding: 0 50px;
  transform: translateX(-50%);
  z-index: 1;
}
.mainIntroSwiper .swiper-button .swiper-button-next,
.mainIntroSwiper .swiper-button .swiper-button-prev {
  position: relative;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  font-size: 0;
  text-indent: -9999rem;
  margin: 0;
  background-color: rgba(64, 72, 79, 0.20);;
  backdrop-filter: blur(8px);
  border-radius: 50%;
}
.mainIntroSwiper .swiper-button-next:after, 
.mainIntroSwiper .swiper-button-prev:after {
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_4297_27581' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='16' height='16'%3E%3Crect width='16' height='16' transform='matrix(-1 0 0 1 16 0)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_4297_27581)'%3E%3Cpath d='M5.82747 8.50414L10.7566 3.47199C10.9243 3.30083 11.0053 3.09829 10.9997 2.86437C10.9941 2.63045 10.9075 2.4279 10.7399 2.25674C10.5722 2.08558 10.3738 2 10.1447 2C9.91554 2 9.71714 2.08558 9.54949 2.25674L4.40238 7.52852C4.26825 7.66545 4.16766 7.81949 4.10059 7.99066C4.03353 8.16182 4 8.33298 4 8.50414C4 8.6753 4.03353 8.84646 4.10059 9.01763C4.16766 9.18879 4.26825 9.34283 4.40238 9.47976L9.56625 14.7515C9.73391 14.9227 9.92951 15.0054 10.1531 14.9997C10.3766 14.994 10.5722 14.9056 10.7399 14.7344C10.9075 14.5633 10.9913 14.3607 10.9913 14.1268C10.9913 13.8929 10.9075 13.6903 10.7399 13.5192L5.82747 8.50414Z' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");
  mask-size: cover;
  background-color: var(--c_ff);
}
.mainIntroSwiper .swiper-button-next:after {
  transform: rotate(180deg);
}
.main_intro,
.main_spot {
  position: relative;
  overflow: hidden !important;
}
.main_spot .fullswiper_area {
  height: 372px;
}
.fullswiper_area .mainSpotSwiper {
  left: 20px;   
  overflow: visible;
}
.swiper-free-mode>.swiper-wrapper {
  transition-timing-function: linear !important;
}
.mainSpotSwiper { 
  width: 100%;
  height: 372px;
}
.mainSpotSwiper .swiper-slide {
  position: relative;
  width: 280px !important;
  border-radius: 16px;
  overflow: hidden;
}
.mainSpotSwiper .swiper-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.20) 100%);
  mix-blend-mode: multiply;
}
.mainSpotSwiper figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--c_ff);
  z-index: 1;
}
.mainSpotSwiper figcaption .spot_add {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: -4px;
}


.main_logo .inner {
  display: grid;
  grid-template-columns: 1fr 48%;
  grid-template-rows: auto 1fr;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  max-width: none;
  padding: 180px 50px 180px 0;
  width: 100%;
  height: 780px;
}
.main_logo .main_title_list {
  flex: none;
  order: 2;
}
.main_title span b {
  display: inline-block;
  transform: translate3d(0, 110%, 0);
  opacity: 0;
}
.main_title.__ani span b {
  color: #ff5f68;
  animation: .4s slideUpText .4s linear forwards;
  animation-delay: calc(.05s * var(--index));
}
.main_logo .main_btn {
  order: 3;
}
.main_logo .main_btn a {
  right: auto;
  left: 0;
}
.logo_list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: flex-start;
  height: 100%;
  margin-top: 18px;
  grid-row: 1 / span 2;
  overflow: hidden;
  order: 1;
}
.logo_list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 154px;
  height: 100%;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.86) 52.26%, rgba(255, 255, 255, 0.00) 100%);
}
.logo_list::before {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.86) 52.26%, rgba(255, 255, 255, 0.00) 100%);
}
.logo_list .logo {
  height: 100px;
  background-size: auto 100%;
  animation: logoRoller 45s linear infinite;
}
.main_logo .logo._1 {
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_1.png') repeat-x;
  background-size: auto 100%;
}
.main_logo .logo._2 {
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_2.png') repeat-x;
  background-size: auto 100%;
  margin-left: -110px;
  animation: logoRoller-re 45s linear infinite;
}
.main_logo .logo._3 {
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/240202_renew/img_logo_3.png') repeat-x;
  background-size: auto 100%;
}


/*  GSAP  scroll event  */
.quick_link_new {
  transition: opacity .3s ease;
}
.quick_link_new.hidden,
.floating-container-fastfive.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.main_scroll_section {
  position: relative;
  height: 500vh;
}
.main_scroll_section aside {
  position: fixed;
  bottom: calc(var(--top) + 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
  z-index: 5;
  opacity: 0;
  transition: opacity .3s ease;
}
.main_scroll_section .__ani aside {
  opacity: 1;
}
.main_scroll_section aside::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  mask-image: url("data:image/svg+xml,%3Csvg width='29' height='28' viewBox='0 0 29 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.6816 10.8182L14.4998 21L4.31801 10.8182' stroke='white' stroke-width='2.31818' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  mask-size: contain;
  background-color: var(--c_ff);
  animation: upAndDown .6s ease-in-out infinite alternate;
}
.scroll_wrapper {
  --top: 72px;
  position: sticky;
  top: var(--top);
  left: 0;
  max-width: 100vw;
  width: 100vw;
  height: 100svh;
  background: var(--c_00);
  will-change: transform;
  transform: translateZ(0);
}
.scroll_slide {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c_00);
  z-index: 1;
  transition: opacity 0.5s ease;
}
.scroll_slide .scroll_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.scroll_slide .text_wrap {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/*  slide01은 초기 상태 유지로 CSS 초기값   */
.main_scroll_section .scroll_slide.slide01 {
  opacity: 1;/* 처음부터 보임 */
  z-index: 2;
}
.slide01 .text_wrap {
  opacity: 0;
}
.scroll_slide .main_strong_title {    
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 150px 0 240px;
  color: var(--c_ff);
}
.scroll_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.scroll_slide .column_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
} 
.column_wrap .col {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/*  usp  */
._grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  grid-template-rows: auto 1fr;
}
._grid .main_title {
  order: 1;
  height: fit-content;
  grid-column: 1;
  grid-row: 1;
}
._grid .main_btn {
  order: 2;
  grid-column: 1;
  grid-row: 2;
}
.main_usp_list {
  position: relative;
  background: var(--c_F6F8FA);
}
.main_usp_list .main_strong_title span {
  position: relative;
  display: inline-block;
}
.main_usp_list .main_strong_title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0%;
  height: 2px;
  background-color: var(--c_12);
  transition: width 0.6s ease;
  transition-delay: .2s;
}
.main_usp_list .main_strong_title.__ani span::after {
  width: 100%;
}
.usp_list {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 480px;
  min-height: 424px;
  width: 100%;
}
.usp_list li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 56px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--c_9DA4AC);
  padding: 0 46px;  
  border-radius: 16px;
  background-color: var(--c_ff);
  transform-origin: center left;
  transition: all .2s ease .4s;
  z-index: 0;
  cursor: pointer;
}
.usp_list li.active {
  height: 102px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c_12);
  background-color: var(--c_E6EAF0);
  box-shadow: 61px 63px 25px 0 rgba(58, 71, 91, 0.00), 39px 40px 22px 0 rgba(58, 71, 91, 0.01), 22px 23px 19px 0 rgba(58, 71, 91, 0.04), 10px 10px 14px 0 rgba(58, 71, 91, 0.07), 2px 3px 8px 0 rgba(58, 71, 91, 0.08);
  z-index: 1;
}
.usp_list li + li {
  margin-top: 8px;
}

.main_usp_office {
  background: url('/wp-content/themes/fastfive/assets/images/pages/main/251022/main_usp_office_bg.jpg') no-repeat center;
  background-size: cover;
}
.main_usp_office .usp_list li {
  gap: 44px;
  height: 72px;
  font-size: 20px;
  color: var(--c_ff);
  background: rgba(255, 255, 255, 0.20);
  padding: 0 44px;
  backdrop-filter: blur(6px);
  transform-origin: center;
  transition: all .4s ease-out .4s;
}
.main_usp_office .usp_list li p {
  font-weight: 400;
}
.main_usp_office .usp_list li p strong {
  display: block;
  font-weight: 700;
  line-height: 1.7;
  transition: font-size .3s ease-out .4s;
}
.main_usp_office .usp_list li img {
  width: 48px;
  transition: width .3s ease-out .4s ;
}
.main_usp_office .usp_list li p span {    
  display: block;
  font-size: 0;
  line-height: 1.7;
  color: #444;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s ease-out .4s;
}
.main_usp_office .usp_list li p b {
  font-weight: 700;
  margin-right: 8px;
}
.main_usp_office .usp_list li.active {
  gap: 24px;
  height: 184px;
  color: var(--c_12);
  background-color: var(--c_ff);
  box-shadow: 61px 63px 25px 0 rgba(58, 71, 91, 0.00), 39px 40px 22px 0 rgba(58, 71, 91, 0.01), 22px 23px 19px 0 rgba(58, 71, 91, 0.04), 10px 10px 14px 0 rgba(58, 71, 91, 0.07), 2px 3px 8px 0 rgba(58, 71, 91, 0.08);
}
.main_usp_office .usp_list li.active img {
  width: 88px;
}
.main_usp_office .usp_list li.active p strong {
  font-size: 28px;
}
.main_usp_office .usp_list li.active p span {
  font-size: 16px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 8px;  
}

/*  main_mid_banner  */
.main_mid_banner {
  position: relative;
}
.main_mid_banner .inner {    
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}
.bg_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: -1;
  transition: opacity 0s ease;
  transition-delay: 1.8s;
}
.bg_image img.active {
  opacity: 1;
  z-index: 1;
  transition: opacity 1.6s ease;
  transition-delay: 0s;
}

/*  faq   */
.main_faq .inner {
  justify-content: space-between;
}
.main_faq .main_title {
  height: fit-content;
}
.main_faq_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 628px;
  width: 100%;
}
.main_faq_list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 68px;
  background-color: #f1f4f8;
  border-radius: 12px;
}
.main_faq_tit, 
.main_faq_answer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main_faq_tit {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--c_12);
  padding: 18px 24px;
  cursor: pointer;
  transition: padding .3s ease-in-out;
}
.main_faq_answer {    
  align-items: flex-start;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  padding: 0 50px 18px 24px;
}
.main_faq_tit::before {
  content: 'Q';
  display: inline-block;
  font-size: inherit;
}
.main_faq_answer::before {
  content: 'A';
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #007fff;
  margin-top: -3px;
}
.main_faq_tit::after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 0 0 auto;
  mask-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.33398 18.6667L16.0007 12L22.6673 18.6667' stroke='%239DA4AC' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  mask-size: contain;
  background-color: var(--c_9DA4AC);
  transform: rotate(180deg);
  transition: transform .4s ease-in-out;
}
.main_faq_tit.active {
  padding-bottom: 2px;
}
.main_faq_tit.active::after {
  transform: rotate(0);
}


/*  키프레임  */
@keyframes slideUpText {
  0% {transform: translate3d(0, 110%, 0); opacity: 0;}
  100% {transform: translateZ(0);  opacity: 1;}
}
@keyframes logoRoller {
  0%{background-position: 2840px center;}
  100% {background-position: center;}
}
@keyframes logoRoller-re {
  0%{background-position: -2840px center;}
  100% {background-position: center;}
}
@keyframes upAndDown {
  0% {transform: translateY(20%);}
  100% {transform: translateY(0%);}
}

/*  pc only   */
@media all and (min-width: 961px ) and (hover: hover) {
  .main_btn:hover {
    max-width: fit-content;
    width: 100%;
    transition: width 1.2s ease;
  }
  .main_btn:hover a{
    position: static;
    visibility: visible;
    display: flex;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: .2s;
  }

  .mainIntroSwiper .swiper-button .swiper-button-next:hover, 
  .mainIntroSwiper .swiper-button .swiper-button-prev:hover {
    background-color: rgba(64, 72, 79, 0.40);
  }
}


@media all and (max-width: 1200px) {
  .main_title {
    font-size: 36px;
  }
  .main_strong_title {
    font-size: 44px;
  }
}


/*  mo only   */
@media all and (max-width: 960px) {
  .hidden_pc {display: block;}
  .hidden_mo {display: none !important;}
  body {
    /*  padding */
    --padding: 150px;
    /* --padding_btn: 0 40px; */
    --max-width: 375px;
    --mid-width: 375px;
  }

  /*  mo :: font  */
  .main_title_list {
    --gap: 14px;
    z-index: 1;
  }
  .main_strong_title , .main_title {
    font-size: 28px;
  }

  .inner {
    --gap: 24px;
    flex-direction: column;
    gap: var(--gap);
  }
  ._fullswiper {
    --gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-start;
    padding: var(--padding) var(--menu_padding);
  }
  ._grid {
    display: flex;
  }


  .main_btn {
    width: 48px;
    height: 48px;
    z-index: 1;
    order: 3;
  }
  .main_btn a {
    font-size: 14px;
  }
  .main_btn.__ani {
    max-width: fit-content;
    width: 100%;
    transition: width 1.2s ease;
  }
  .main_btn.__ani a {
    position: static;
    visibility: visible;
    display: flex;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: .2s;
  }
  .btn_arrow::after {
    width: 22px;
    height: 22px;
  }

  .main_intro {
    height: 706px;  
  }
  .main_intro .main_btn {
    order: 2;
  }
  .main_intro .fullswiper_area {
    height: 0;
    order: 3;
  }
  .fullswiper_area .swiper {
    top: 0;
    height: 100%;
    z-index: 0;
  }
  .mainIntroSwiper .swiper-slide img {
    object-position: 100% center;
  }
  .mainIntroSwiper .swiper-slide figcaption {
    bottom: 44px;
    font-size: 16px;
    color: var(--c_22);
    padding: 0 20px;
  }
  .introslide_paging {
    padding: 0 20px;
  }
  .introslide_paging .swiper-pagination-num {
    --gap: 2px;
    font-size: 14px;
    color: rgba(34, 34, 34, 0.2);
  }
  .introslide_paging .swiper-pagination-current {
    color: var(--c_22);
  }
  .introslide_paging .swiper-pagination-progress {
    background-color: rgba(34, 34, 34, 0.20);
  }
  .introslide_paging .swiper-pagination-progressbar-fill {
    background-color: var(--c_22);
  }

  .main_spot .fullswiper_area {
    position: relative;
    height: 300px;
  }
  .fullswiper_area .mainSpotSwiper {
    left: 0;
  }
  .mainSpotSwiper .swiper-slide {
    width: 240px !important;
  }
  .mainSpotSwiper figcaption {
    font-size: 16px;
  }
  .mainSpotSwiper figcaption .spot_add {
    font-size: 14px;
  }

  .main_logo .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0 0 150px;
  }
  .main_logo .main_title_list {
    align-items: center;
    order: 1;
  }
  .logo_list {
    gap: 0;
    width: 100%;
    margin-top: 0;
  }
  .logo_list::before {
    content: none;
  }
  .logo_list .logo {
    height: 70px;
  }
  .logo_list .logo + .logo {
    margin-top: -4px;
  }

  .scroll_wrapper {
    --top: 60px;
    height: 100svh;
  }
  .scroll_slide .main_strong_title {
    padding: 0;
  }
  .scroll_slide .column_wrap {
    flex-direction: column;
    width: 100%;
  }
  .column_wrap .col {
    width: 100%;
  }

  .main_usp_list .main_strong_title span::after {
    bottom: 2px;
  }
  .usp_list {
    min-height: unset;
  }
  .usp_list li {
    height: 40px;
    font-size: 16px;
    padding: 0 42px;
  }
  .usp_list li.active {
    height: 70px;
    font-size: 18px;
  }

  .main_usp_office .usp_list li {
    gap: 40px;
    height: 56px;
    font-size: 16px;
    padding: 0 40px;
  }
  .usp_list li + li {
    margin-top: 6px;
  }
  .main_usp_office .usp_list li.active {
    gap: 16px;
    height: 130px;
    padding: 0 16px;
  }
  .main_usp_office .usp_list li.active p strong {
    font-size: 22px;
  }
  .main_usp_office .usp_list li.active p span {
    font-size: 14px;
    margin-top: 4px;  
  }
  .main_usp_office .usp_list li.active img {
    width: 80px;
  }

  .main_faq .main_title {
    text-align: center;
  }
  .main_faq_tit {
    align-items: flex-start;
    font-size: 16px;
  }
  .main_faq_answer {
    font-size: 14px;
    padding-right: 60px;
  }
  .main_faq_answer::before {
    font-size: 16px;
    margin-top: -1px;
  }
  .main_faq_tit.active {
    padding-bottom: 6px;
  }
}

/************************************************************************************/
/*    이벤트 배너 버튼 관련 재사용 가능할 듯 해 CSS 분리     */
.event_banner .btn_group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  width: 100%;
}
.event_banner .btn_event {
  --color: #fff;
  --bg_color: #E20020;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 56px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  text-indent: 8px;
  color: var(--color);
  padding: 0 48px;
  background-color: var(--bg_color);
  border-radius: 8px;
  border: 2px solid var(--bg_color);
}
.event_banner .btn_event::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_295_1497' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='25'%3E%3Crect y='0.5' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_295_1497)'%3E%3Cmask id='mask1_295_1497' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='4' y='4' width='16' height='17'%3E%3Crect x='4' y='4.5' width='16' height='16' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask1_295_1497)'%3E%3Cpath d='M13.6502 12.4995L8.75024 7.59947C8.58357 7.4328 8.50301 7.23558 8.50857 7.0078C8.51413 6.78003 8.60024 6.5828 8.7669 6.41614C8.93357 6.24947 9.13079 6.16614 9.35857 6.16614C9.58635 6.16614 9.78357 6.24947 9.95024 6.41614L15.0669 11.5495C15.2002 11.6828 15.3002 11.8328 15.3669 11.9995C15.4336 12.1661 15.4669 12.3328 15.4669 12.4995C15.4669 12.6661 15.4336 12.8328 15.3669 12.9995C15.3002 13.1661 15.2002 13.3161 15.0669 13.4495L9.93357 18.5828C9.7669 18.7495 9.57246 18.83 9.35024 18.8245C9.12801 18.8189 8.93357 18.7328 8.7669 18.5661C8.60024 18.3995 8.5169 18.2022 8.5169 17.9745C8.5169 17.7467 8.60024 17.5495 8.7669 17.3828L13.6502 12.4995Z' fill='white'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  mask-repeat: no-repeat;
  mask-size: contain;
  background: #fff;
}
.event_banner .btn_event._reverse {
  --color: #000;
  --bg_color: #fff;
}
.event_banner .btn_event._reverse::after{
  background: #000;
}
@media all and (min-width: 961px) and (hover : hover) {
  .event_banner  .btn_event:hover {
    --color: #E20020;
    --bg_color: #000;
    border: 2px solid var(--color);
  }
  .event_banner  .btn_event._reverse:hover {
    --color: #E20020;
    --bg_color: #000;
    border: 2px solid var(--color);
  }
  .event_banner  .btn_event:hover::after {
    background: #E20020;
  }
  .event_banner  .btn_event._reverse:hover::after {
    background-color: #E20020;
  } 
}
@media all and (max-width: 960px) {
  .event_banner .btn_group {
    flex-direction: column;
    align-items: center;
    gap: 12px; 
  }
  .event_banner  .btn_event {
    font-size: 16px;
    text-indent: 4px;
    min-width: 256px;
    padding: 0 32px;
  }
}
/************************************************************************************/
/*  프로모션 배너 섹션 CSS */
.event_banner._251010 {
  --event_key: #E20020;
}
.event_banner {
  background-color: #000;
  position: relative;
  overflow: hidden;
}
.event_banner::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, #000 50%, rgba(0, 0, 0, 0.00) 100%);
  display: block;
  position: absolute;
  z-index: 1;
  content: '';
}
.event_banner .inner {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 106px 50px;
  max-width: 1380px;
  min-height: 735px;
  margin: 0 auto;
  z-index: 1;
}
.event_banner .banner_title {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  z-index: 2;
}
.event_banner ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 388px;
  width: 100%;        
  margin: 0 auto;
}
.event_banner ul > li {
  max-width: 186px;
  width: 50%;
  min-height: 118px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color:  #fff;
  background-color: #380303;
  padding: 10px 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event_banner .banner_title > h2 {    
  width: 714px;
  line-height: 0;
  padding: 28px 0 38px;
  margin: 0 auto;
  transform: scale(0);
}
.__ani.event_banner .banner_title > h2 {
  animation: .6s eventScale .45s ease-in-out forwards;
}
@keyframes eventScale {
  0% { transform: scale(0); } 
  70% { transform: scale(1.1); } 
  100% { transform: scale(1); } 
}
.event_banner .banner_title > h5 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: #fff;
}
.event_banner .banner_title p {
  font-size: 18px;
  font-weight: 400;
  padding: 22px 0;
}
.event_banner .c_key {
  color: var(--event_key);
}
.curtain {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}
.curtain > img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transform: translateX(-100%);
  transition: .5s transform .3s ease-in-out;
}
.curtain > img._right {
  object-position: right;
  transform: translateX(100%);
}
.__ani .curtain > img {
  transform: translateX(0%);
}
.event_banner .obj {
  width: 1520px;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 760px);
  z-index: 1;
}
.event_banner .obj > span {
  position: absolute;
  top: 0;
  left: 0;
  animation: transformYmove .8s ease-in-out infinite alternate;
}
@keyframes transformYmove {
  0% { transform:  translateY(5%); } 
  100% { transform:  translateY(0); }
}
.event_banner .obj > span._right {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
}
.event_banner .obj > span._5 {
  width: 295px;    
  top: -46px;
  left: 95px;
}
.event_banner .obj > span._4 {
  width: 240px;
  top: 432px;
  left: 79px;
  animation-duration: 1.2s;
}
.event_banner .obj > span._3 {
  width: 263px;
  top: 100px;
  right: 89px;
  animation-duration: 1s;
}
.event_banner .obj > span._6 {
  width: 416px;
  top: auto;
  bottom: -51px;
  animation-duration: 1s;
}
 .event_banner .obj._reborn {
  width: 1489px;
  height: 650px;
  top: 56px;
  left: calc(50% - 744px);
  z-index: 0;
}

@media screen and (max-width : 961px) {
  .event_banner {
    position: relative;
    background: #000;
  }
  .event_banner .inner {
    max-width: 335px;
    min-height: unset;
    padding: 100px 20px;
    flex-direction: column;
    gap: 32px;
  }
  .event_banner .inner::before {
    content: none
  }
  .event_banner .banner_title {
    text-align: center;
    align-items: center;
  }
  .event_banner ul {
    max-width: 335px;
    gap: 14px;
  }
  .event_banner ul > li {
    max-width: none;
    min-height: 100px;
    font-size: 16px;
  }
  .event_banner .banner_title > h2 {
    width: 335px;
    padding: 20px 0;
  }
  .event_banner .banner_title > h5 {
    font-size: 26px;
  }
  .event_banner .banner_title p {
    padding: 18px 0;
  }
  .event_banner .obj {
    max-width: 500px;
    left: calc(50% - 250px);
  }
  .event_banner .obj > span._5 {
    width: 178px;    
    top: auto;
    bottom: -38px;
    left: auto;
    right: -8px;
  }
  .event_banner .obj > span._4 {
    width: 136px; 
    top: auto;
    bottom: 0;
    left: 0;
  }
  .event_banner .obj > span._3 {
    width: 140px;
    top: -30px;
    right: 50px;
  }
  .event_banner .obj > span._6 {
    width: 212px;
    top: -70px;
    left: 10px;
    bottom: auto;
  }
  .event_banner .obj._reborn {
    width: 1489px;
    height: 650px;
    top: 56px;
    left: calc(50% - 744px);
  }
  .event_banner .obj._reborn {
    width: 528px;
    height: 666px;
    left: calc(50% - 250px);
    top: 10px;
  }
} /* ~961px END */


/************************************************************************************/
/*    메인배너 ::   비주얼    */
.mainBannerSwiper .swiper-slide {
  position: relative;
}
.mainBannerSwiper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.mainBannerSwiper .mainBanner_inner{    
  display: block;
  max-width: var(--max-width);
  width: 100%;
  min-height: 490px;
  height: 100%;
  padding: 0 var(--menu_padding);
  margin: 0 auto;
}
.main_banner_title {
  position: relative;
  width: fit-content;
  min-height: 178px;
  height: 100%;
  padding: 80px 0;
}
.main_banner_title ._white:not(.main_banner_badge) {
  --color: #fff;
  color: var(--color);
}
.main_banner_title ._black:not(.main_banner_badge)  {
  --color: #000;
}
.main_banner_badge {
  --bg_color: #fff; 
  position: absolute;
  top: 80px;
  left: 0;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: initial;
  background: var(--bg_color);
  padding: 4px 8px;
  border-radius: 4px;
  mix-blend-mode: screen;
}
.main_banner_badge._black {
  color: var(--c_ff);
  --bg_color: #000;
  mix-blend-mode: darken;
}
.main_banner_tit {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  padding: 34px 0 8px;
}
.main_banner_txt {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}
.slide_function {
  position: absolute;
  top: auto;
  left: max(50px, calc((100% - 1280px) / 2));
  bottom:0;
}
.mainBannerSwiper .slide_function .swiper-pagination-num { 
  display: flex;
  gap: 4px;
  width: fit-content;
  font-size: 14px;
  z-index: 1;
}
.mainBannerSwiper .slide_function._white .swiper-pagination-num {
  color: var(--c_ff);
}
.mainBannerSwiper .slide_function._black .swiper-pagination-num { 
  color: var(--c_12);
}
.mainBannerSwiper .swiper-pagination-current {
  font-weight: 700;
}
.mainBannerSwiper .slide_function .swiper-pagination-progress {
  position: absolute;
  top: auto;
  bottom: 150px;
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.20);
  z-index: 1;
}
.mainBannerSwiper .slide_function .swiper-pagination-progressbar-fill {
  position: absolute;
  z-index: 15;
  width: 100%;
  height: 2px;
  background: var(--c_ff);
}
.slide_function._black .swiper-pagination-progress {
  background: rgba(34, 34, 34, 0.20);
  z-index: 1;
}
.mainBannerSwiper .slide_function._black  .swiper-pagination-progress .swiper-pagination-progressbar-fill {
  background: rgba(34, 34, 34, 1);
}
.mainBannerSwiper .swiper-button {    
  align-items: center;
  position: absolute;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 137px;
  height: 30px;
  bottom: 80px;
}
.mainBannerSwiper .swiper-button-next, .mainBannerSwiper .swiper-button-prev {
  position: static;
  top: 0;
  width: 30px;
  height: 30px;
  font-size: 0;
  line-height: 0;
  margin-top: 0;
  border-radius: 50%;
  background: none;
}
.mainBannerSwiper .swiper-button-prev {
  left: 0;   
}
.mainBannerSwiper .swiper-button-next {
  right: 0; 
}
.mainBannerSwiper .swiper-button-prev:after, .mainBannerSwiper .swiper-button-next::after {
  --bg_color: #fff;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_4305_533' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_4305_533)'%3E%3Cpath d='M6.14419 10.625L10.891 15.3718L9.99998 16.25L3.75 9.99998L9.99998 3.75L10.891 4.62819L6.14419 9.375H16.25V10.625H6.14419Z' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");
  mask-size: cover;
  background: var(--bg_color);
}
.mainBannerSwiper .swiper-button-next::after {
  mask-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_4305_602' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='20' height='20'%3E%3Crect width='20' height='20' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_4305_602)'%3E%3Cpath d='M13.8558 10.625H3.75V9.375H13.8558L9.10898 4.62819L9.99998 3.75L16.25 9.99998L9.99998 16.25L9.10898 15.3718L13.8558 10.625Z' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.mainBannerSwiper .slide_function._black .swiper-button-prev:after, .mainBannerSwiper .slide_function._black .swiper-button-next::after {
  --bg_color: #121212;
}
.swiper-navigation-icon {
  display: none
}
@media all and (min-width: 961px) and (hover : hover) {
  .mainBannerSwiper .swiper-button-next:hover, 
  .mainBannerSwiper .swiper-button-prev:hover {
    background: rgba(34, 2, 0, 0.2);
  }
}
@media all and (max-width: 960px) {
  .mainBannerSwiper {
    padding-bottom: 4px;
  }
  .mainBannerSwiper a.swiper-slide {    
    width: 100%;
    padding: 48px 30px 0;
  }
  .mainBannerSwiper .mainBanner_inner {
    padding: 0;
    width: 100%;
  }
  .main_banner_title {
    padding: 0;
  }
  .main_banner_badge {
    top: 0;
    line-height: 1.3;
  }
  .main_banner_tit {
    font-size: 34px;
  }
  .main_banner_txt {
    font-size: 16px;
  }
  .slide_function {
    left: auto;
    right: 0;
    width: 100%;
  }
  .mainBannerSwiper .swiper-button {
    bottom: 24px;
    right: 20px;
    gap: 8px;
    justify-content: center;
    background: rgba(34,34,34,0.50);
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 5;
  }
  .mainBannerSwiper .swiper-button-next, 
  .mainBannerSwiper .swiper-button-prev {
    display: none;
  }
  .mainBannerSwiper .slide_function._black .swiper-pagination-num {
    color: rgba(255,255,255,0.50);
  }
  .mainBannerSwiper .swiper-pagination-current {
    color: var(--c_ff)
  }
  .mainBannerSwiper .slide_function .swiper-pagination-progress {  
    bottom: 0;
    width: 100%;
    height: 4px;
  }
  .mainBannerSwiper .slide_function .swiper-pagination-progress {  
    height: 4px;
    background: rgba(34,34,34,0.20);
    z-index: 1;
  }
  .mainBannerSwiper .slide_function .swiper-pagination-progressbar-fill {    
    height: 4px;
    background: var(--c_12);
  }
  .event_collection {
    align-items: center;
    display: flex;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--c_ff);
    padding: 0;
  }
  .event_collection > span {
    font-weight: 400;
    color: rgba(255,255,255,0.50);
  }
  .event_collection::before {
    content: '';
    width: 1px;
    height: 12px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.50);
  }

}
/*    END ::  메인배너   ::   비주얼    */

