/*  common  */
:root {
  --c_primary : #00CC74;
  --c_secondary : #007643;
  --c_tertiary : #C4E5C5;
  --c_white: #fff;
  --c_black: #00100B;
  --c_black2: #222;
  --max_width: 1380px;
  --max_width2: 1160px;
  --max_width3: 1280px;
  --padding_x: 50px;
  --padding_y: 180px;
  --gap: 60px;
  --menu_padding: 48px;
}
body {color: var(--c_black); letter-spacing: 0;}
img {width: 100%;}
mark { color: unset;background: unset;}
ul, li, button { border: none;list-style: none;}
.hidden_pc { display: none !important;}
.hidden_mo { display: block !important;}
.blind {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  border: 0;
  word-break: initial;
  clip: rect(1px 1px 1px 1px);
  clip-path: inset(50%);
  word-wrap: initial;
}
.inner {
  max-width: var(--max_width);
  margin: 0 auto;
  padding: var(--padding_y) var(--padding_x);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
._full {
  max-width: none;
  padding: var(--padding_y)  0;    
  text-align: center;
}
._primary {
  color: var(--c_primary);
}
._white {
  color: var(--c_white);
}
._center {
  text-align: center;
}
.motion {
  display: block;
}
.motion.slide-up {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.55s 0.2s ease-in-out, opacity 0.55s 0.2s ease-in-out;
  will-change: transform, opacity;
}
.motion.slide-up.onTrans {
  transform: translateY(0);
  opacity: 1;
}
.motion.slide-right {
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 0.55s 0.2s ease-in-out, opacity 0.55s 0.2s ease-in-out;
  will-change: transform, opacity;
}
.motion.slide-right.onTrans {
  transform: translateX(0);
  opacity: 1;
}
.motion.slide-left {
  transform: translateX(30px);
  opacity: 0;
  transition: transform 0.55s 0.2s ease-in-out, opacity 0.55s 0.2s ease-in-out;
  will-change: transform, opacity;
}
.motion.slide-left.onTrans {
  transform: translateX(0);
  opacity: 1;
}

/* text */
.event_double_discount [class*="title_h"] {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
}
.event_double_discount .title_h2 {
  font-size: 40px;
}
.event_double_discount .title_h4 {
  font-size: 34px;
}
.event_double_discount .title_h5 {
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0;
}
.event_double_discount [class*="text_p"] {
  font-weight: 400;
  line-height: 1.7;
}
.event_double_discount .text_p1 {
  font-size: 20px;
}
.event_double_discount .text_p2 {
  font-size: 18px;
}
.event_double_discount .text_p3 {
  font-size: 16px;
}
.event_double_discount .text_p5 {
  font-size: 12px;
}
.event_double_discount .fw_700 {
  font-weight: 700;
}
/* 말풍선 */
.event_double_discount .bubble_box {
  --bubble_color: var(--c_black);
  position: relative;
  width: fit-content;
  padding: 4px 20px;
  font-weight: 500;
  background: var(--bubble_color);
  border-radius: 22px;
}
.event_double_discount .bubble_box::before {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 10px 5px 0px 5px;
  border-style: solid;
  border-color: var(--bubble_color) transparent transparent transparent;
  transform: translate(-50%, 0);
  display: block;
  content: '';
}
.event_double_discount .onTrans .bubble_box {
  animation: bubbleAnimation 2s 0.55s linear forwards infinite alternate;
}
@keyframes bubbleAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

.event_double_discount {overflow: hidden;}
/* visual */
.sec_visual {
  position: relative;
  background: var(--c_primary);
}
.sec_visual .inner {
  position: relative;
  z-index: 2;
  padding: 100px var(--padding_x);
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
}
.sec_visual .group_title {
  position: relative;
  z-index: 10;
}
.sec_visual .title_area {
  display: flex;
  flex-direction: column-reverse;
}
.sec_visual .text_bubble {
  position: relative;
  width: fit-content;
  padding: 2px 16px;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.4;
  color: var(--c_white);
  letter-spacing: -1px;
  background: var(--c_black);
}
.sec_visual .text_bubble::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-width: 18px 18px 0px 0px;
  border-style: solid;
  border-color: var(--c_black) transparent transparent transparent;
  transform: translateY(100%);
  content: '';
}
.sec_visual .visual_title {
  margin-top: 35px;
}
.sec_visual .visual_title svg {
  width: 100%;
  max-width: 400px;
  display: block;
  aspect-ratio: 400 / 206;
}
.sec_visual .char {
  fill: var(--c_white);
}
.sec_visual .char.c_black {
  transition: fill 0.55s 0.2s ease-in-out;
}
.sec_visual .char:nth-of-type(1) {
  transition-delay: 0.2s;
}
.sec_visual .char:nth-of-type(2) {
  transition-delay: 0.25s;
}
.sec_visual .char:nth-of-type(3) {
  transition-delay: 0.3s;
}
.sec_visual .char:nth-of-type(4) {
  transition-delay: 0.35s;
}
.sec_visual.onTrans .char.c_black {
  fill: var(--c_black);
}
.sec_visual .info_area {
  margin-top: 42px;
  display: flex;
  gap: 32px;
}
.sec_visual .info_area .info_box {
  display: flex;
}
.sec_visual .info_area .text_p1 + .text_p1 {
  position: relative;
  margin-left: 10px;
  padding-left: 10px;
  opacity: 0.6;
}
.sec_visual .info_area .text_p1 + .text_p1::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  background: var(--c_black);
  transform: translateY(-50%);
  opacity: 0.15;
  display: block;
  content: '';
}
.sec_visual .title_h5 {
  margin-top: 24px;
}
.sec_visual .group-img {
  --bubble_scale: 0.5;
  --bubble_opacity: 0;
  --card_translate: -70px;
  --card_opacity: 0;
  --card_rotate: 17deg;
  --card_filter: 10px;
}
.sec_visual .group-img.onTrans {
  --bubble_scale: 1;
  --bubble_opacity: 1;
  --card_translate: 0;
  --card_opacity: 1;
  --card_rotate: 0deg;
  --card_filter: 0px;
}
.sec_visual .cards {
  position: absolute;
  top: -172px;
  left: 50%;
  width: 100%;
  max-width: 700px;
  opacity: var(--card_opacity);
  aspect-ratio: 700 / 725;
}
.sec_visual .cards::before {
  position: absolute;
  top: 242px;
  left: 385px;
  z-index: 5;
  width: 80px;
  background: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/double_bubble_01.png') no-repeat center center / 100% auto;
  transform: scale(var(--bubble_scale));
  opacity: var(--bubble_opacity);
  transition: opacity 0.4s 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.5), transform 0.4s 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.5);
  display: block;
  content: '';
  aspect-ratio: 80 / 84;
  will-change: opacity, transform;
  animation: bubbleAnimation 2s 1s ease infinite;
}
.sec_visual .cards img {
  position: absolute;
  object-fit: cover;
}
.sec_visual .cards .card_01 .img_card {
  top: 0;
  left: 20px;
  z-index: 3;
  width: 43%;
  aspect-ratio: 301 / 709;
}
.sec_visual .cards .card_01 .img_shadow {
  bottom: 2px;
  left: 0;
  z-index: -1;
  width: 64.57%;
  aspect-ratio: 452 / 100;
}
.sec_visual .cards .card_02 {
  height: 100%;
  transform: translate(var(--card_translate), var(--card_translate)) rotate(var(--card_rotate));
  transition: transform 0.55s 0.2s ease, opacity 0.65s 0.3s ease, filter 0.55s 0.2s ease;
  filter: blur(var(--card_filter));
  transform-origin: 0% 0%;
  will-change: transform, opacity, filter;
}
.sec_visual .cards .card_02 .img_card {
  top: 32px;
  left: 40px;
  z-index: 2;
  width: 75.7%;
  display: block;
  aspect-ratio: 530 / 678;
  transform-origin: 20% 20%;
  animation: card_swing 4s linear forwards infinite;
}
.sec_visual .cards .card_02 .img_shadow {
  right: 0;
  bottom: 8px;
  z-index: 1;
  width: 50.5%;
  aspect-ratio: 354 / 80;
  animation: shadow_swing 4s linear forwards infinite;
}
.sec_visual .desk_area {
  position: absolute;
  bottom: -70px;
  left: 50%;
  z-index: 5;
  width: 322px;
  transform: translateX(calc(-50% + 2px));
  aspect-ratio: 322 / 270;
}
.sec_visual .desk_area::before {
  position: absolute;
  top: -8px;
  left: -35px;
  width: 80px;
  background: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/double_bubble_02.png') no-repeat center center / 100% auto;
  transform: scale(var(--bubble_scale));
  opacity: var(--bubble_opacity);
  transition: opacity 0.4s 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.5), transform 0.4s 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.5);
  display: block;
  content: '';
  aspect-ratio: 80 / 84;
  will-change: opacity, transform;
  animation: bubbleAnimation 2s 1.2s ease infinite;
}
.sec_visual .desk_area .desk {
  width: 100%;
  object-fit: cover;
}
.sec_visual .group_marquee {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.sec_visual .marquee_item {
  position: absolute;
  z-index: 1;
  height: 48px;
  transition: clip-path 0.55s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: clip-path, transform;
}
.sec_visual .marquee_item:nth-of-type(2n-1) {
  width: 2130px;
  background: #00100B;
  clip-path: inset(0 100% 0 0);
}
.sec_visual .marquee_item:nth-of-type(2n) {
  width: 1508px;
  background: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/marquee_text.png') no-repeat center center / 100% auto;
  clip-path: inset(0 0 0 100%);
}
.sec_visual .marquee_item:nth-of-type(1) {
  top: 60px;
  right: calc(50% - 250px);
  transform: rotate(-30deg);
  opacity: 0.05;
  transition-delay: 0.2s;
}
.sec_visual .marquee_item:nth-of-type(2) {
  right: calc(50% - 160px);
  bottom: 0;
  background-color: #003620;
  transform: translateY(100%) rotate(30deg);
  transition-delay: 0.25s;
}
.sec_visual .marquee_item:nth-of-type(3) {
  top: 0;
  left: calc(50% - 390px);
  transform: rotate(40deg);
  opacity: 0.1;
  transition-delay: 0.3s;
}
.sec_visual .marquee_item:nth-of-type(4) {
  top: -6px;
  left: calc(50% - 200px);
  background-color: #007944;
  transform: rotate(20deg);
  transition-delay: 0.2s;
}
.sec_visual.onTrans .marquee_item {
  clip-path: inset(0 0 0 0);
}

@keyframes card_swing {
  0% { transform: rotate(0deg); }	
  33.3% { transform: rotate(2deg); }
  66.6% { transform: rotate(-2deg); }
	100% { transform: rotate(0deg);}
}
@keyframes shadow_swing {
  0% { transform: translate(0, 0); opacity: 1; filter: blur(0px); }	
  33.3% { transform: translate(-3px, 10px); opacity: 1; filter: blur(0px); }
  66.6% { transform: translate(38px, -3px); opacity: 0.4; filter: blur(4px); }
	100% { transform: translate(0, 0); opacity: 1; filter: blur(0px);}
}
/* @keyframes marquee01 {
  0% {
    transform: rotate(30deg) translateX(0);
  }
  100% {
    transform: rotate(30deg) translateX(-25%);
  }
}
@keyframes marquee02 {
  0% {
    transform: rotate(20deg) translateX(0);
  }
  100% {
    transform: rotate(20deg) translateX(25%);
  }
} */

/* section :: sec_countdown */
.sec_countdown {
  --gap: 24px;
  --padding_y: 80px;
  position: relative;
}
.sec_countdown .discount_bubble_box {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 4px 0;
  font-weight: 600;
  color: var(--c_white);
  background: var(--c_black);
}
.sec_countdown .discount_bubble_box::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 0px 9px 9px 9px;
  border-style: solid;
  border-color: transparent transparent var(--c_black) transparent;
  transform: translate(-50%, -100%);
  display: block;
  content: '';
}
.sec_countdown .discount_bubble_box.onTrans span {
  animation: flickText 2s 0.2s ease;
}
.sec_countdown .discount_timer {
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec_countdown .time_number {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sec_countdown .time_number .hour,
.sec_countdown .time_number .minutes,
.sec_countdown .time_number .seconds {
  display: flex;
}
.sec_countdown .time_number .hour > span,
.sec_countdown .time_number .minutes > span,
.sec_countdown .time_number .seconds > span {
  width: 70px;
  height: 82px;
}
.sec_countdown .time_number + .time_number {
  margin-left: 16px;
}
.sec_countdown .time_number + .time_number::before {
  width: 11px;
  background: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/icon_colon.svg') no-repeat center center / 100% auto;
  display: block;
  content: '';
  aspect-ratio: 11 / 36;
}
@keyframes flickText {
  0%, 33.33%, 66.66%, 100% {
    opacity: 1;
  }
  16.66%, 50%, 83.33% {
    opacity: 0;
  }
}

/* section :: sec_benefit_01 */
[class*="sec_benefit_0"] .text_p3 {
  color: #00FF90;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
}
[class*="sec_benefit_0"] .title_area {
  flex-shrink: 0;
}
[class*="sec_benefit_0"] .title_area .text_p1 {
  margin-top: 16px;
  opacity: 0.8;
}
[class*="sec_benefit_0"] .title_h2 {
  margin-top: 10px;
}
.sec_benefit_01 {
  color: var(--c_white);
  background-color: #07482C;
}
.sec_benefit_01 .conts_box .bubble_box {
  opacity: 0;
  transition: opacity 0.55s 0.2s ease;
}
.sec_benefit_01 .conts_box.onTrans .bubble_box {
  opacity: 1;
}
.sec_benefit_01 .conts_box {
  width: 100%;
  max-width: 520px;
  margin-bottom: -18px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
.sec_benefit_01 .bubble_box::before {
  left: 40px;
  transform: translate(0);
}
.sec_benefit_01 .conts_box > ul {
  width: 100%;
  margin-top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec_benefit_01 .conts_box > ul:nth-of-type(1) {
  max-width: 400px;
  margin-top: 30px;
}
.sec_benefit_01 .conts_box > ul:nth-of-type(2) {
  max-width: 460px;
}
.sec_benefit_01 .conts_box > ul li {
  position: relative;
  width: 50%;
  height: 62px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  color: var(--c_black);
  background-color: var(--c_white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
.sec_benefit_01 .conts_box > ul li:last-child {
  background: var(--c_primary);
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
  transform-origin: left;
}
.sec_benefit_01 .conts_box.onTrans > ul li:last-child {
  transform: scaleX(1);
  opacity: 1;
}
.sec_benefit_01 .conts_box > ul li + li::before {
  position: absolute;
  top: calc(50% - 12px);
  left: -12px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.366943' y='0.9021' width='24' height='24' rx='12' fill='black'/%3E%3Cpath d='M11.1144 14.1546H7.36694V11.6496H11.1144V7.9021H13.6194V11.6496H17.3669V14.1546H13.6194V17.9021H11.1144V14.1546Z' fill='white'/%3E%3C/svg%3E%0A");
  background-size: contain;
  content: '';
}
.sec_benefit_01 .conts_box > small {
  position: relative;
  width: 100%;
  height: 60px;
  padding: 0 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  background: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/line_scheme.png') no-repeat;
  background-position: center top;
  background-size: 100% auto; 
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec_benefit_01 .conts_box.onTrans  > small {
  transform: translateX(-20px);
  animation: 0.6s slideIn 0.6s ease forwards alternate;
}
.sec_benefit_01 .conts_box > small span {
  width: fit-content; 
  margin-bottom: 2px;
  padding: 0 22px;
  background: #07482C;
  display: block;
}

/* section :: sec_benefit_02 */
.sec_benefit_02 {
  background-color: var(--c_black);
}
.sec_benefit_02 .inner {
  max-width: var(--max_width2);
  gap: 80px;
}
.sec_benefit_02 ._top {
  display: flex;
  justify-content: space-between;
  gap: var(--gap);
}
.sec_benefit_02 .title_area .text_p1 {
  opacity: 0.8;
}
.sec_benefit_02 .list_caution {
  margin-top: 10px;
}
.sec_benefit_02 .caution_item {
  line-height: 1;
  opacity: 0.5;
}
 .sec_benefit_02 .img_area {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/benefit_card.png') no-repeat center center / 100% auto;
  aspect-ratio: 520 / 283;
}
.sec_benefit_02 .bubble_box {
  --bubble_color: var(--c_primary);
  margin: 0 auto;
  color: var(--c_white);
}
.sec_benefit_02 .text_box {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
.sec_benefit_02 .title_h4 {
  text-indent: 6px;
}
.sec_benefit_02 ._top .benefit_text {
  font-weight: 800;
  font-size: 64px;
  line-height: 1.2;
}
.sec_benefit_02 .list_benefit_info {
  width: 100%;
  display: flex;
  gap: 20px;
}
.sec_benefit_02 .benefit_info_item {
  position: relative;
  padding: 40px 48px;
  text-align: center;
  background: var(--c_white);
}
.sec_benefit_02 ._bottom .benefit_text {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: var(--c_black2);
}
.sec_benefit_02 ._bottom .img_box {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 2px;
}
/* section :: office */
.sec_office {
  background-color: #F1EADF;
}
.sec_office .title_area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_office .title_area .title_h2 {
  margin-top: 26px;
}
.sec_office .bubble_box {
  --bubble_color: var(--c_black2);
  color: var(--c_white);
  order: -1;
}
.sec_office .title_h2 {
  color: var(--c_black2);
}
.sec_office .desc {
  margin-top: 16px;
  color: var(--c_black2);
  opacity: 0.8;
}
.office {
  width: 100%;
}
.office_nav {
  width: 100%;
  background-color: #fff;
  display: none;
}
.office_nav li {
  flex: 1;
}
.office_nav li button {
  width: 100%;
  min-width: 124px;
  height: 52px;
  font-weight: 700;
  font-size: 16px;
  line-height: 170%;
  color: #777;
  text-align: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.office_nav li button._active {
  color: #fff;
  background-color: #000;
}
.office_list {width: 100%;}
.office_list ul {
  width: 100%;
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(305px, auto)); 
  gap: 40px 20px;
}
.office_list li {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  display: flex; 
  flex-direction: column-reverse;
  border-radius: 10px;
}
.office_list .badge {
  display: flex;
  align-items: center; 
}
.office_list ._person {
  padding: 0 7px;
  border: 1px solid var(--c_secondary);
  color: var(--c_white);
  background-color: var(--c_secondary);
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
}
.office_list img {
  overflow: hidden;
  width: 100%; 
  aspect-ratio: 305 / 252;
  object-fit: cover;
  order: 1;
}
.office_price {
  padding: 20px 26px;
  display: flex;
  flex-direction: column; 
  gap: 2px; 
}
.office_price .text_p2 {
  font-size: 18px;
  line-height: 1.7;
  color: #777;
}
/* section :: premium */
.sec_premium {
  overflow: hidden;
  width: 100%;
}
.sec_premium .inner {
  max-width: calc(var(--max_width3) + (var(--menu_padding) * 2));
  align-items: center;
}
.sec_premium .title_h2 {
  color: #141414;
}
.sec_premium .premiun_content {
  width: 100%;
}
.premium_img,
.premium_exp {
  position: relative;
  width: 89%;
  max-width: 1138px;
  margin: 0 auto;
}
.premium_img {
  margin-top: var(--content_gap);
}
.premium_swiper {
  position: relative;
  overflow: hidden;
  min-width: 100%;
  border-radius: 8px;
}
.premium_swiper figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 100%;
}
.premium_swiper figure img {
  height: 100%;
  object-fit: cover;
}
.premium_swiper figcaption {
  position: absolute;
  right: 0;
  bottom: -100%;
  left: 0;
  z-index: 1;
  width: 100%;
  min-width: 0;
  padding: 9px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.7;
  color: var(--c_white);
  text-align: center;
  background: rgba(0, 0, 0, .6);
  transition: .8s ease bottom;
  display: flex;
  justify-content: center;
  align-items: center;
}
.premium_swiper .swiper-slide-active figcaption {
  bottom: 0;
  transition-delay: .2s;
}
.premium_exp {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  text-align: center;
}
.premium_exp li {
  position: absolute;
  width: 100%;
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  opacity: 0;
}
.premium_exp li._active {
  position: relative;
  opacity: 1;
}
.event_swiper_paging {
  margin-top: 12px;
}
.event_swiper_button {
  --posX: -100%;
  position: absolute;
  top: 50%;
  z-index: 1;
  overflow: hidden;
  width: 80px;
  height: 80px;
  margin-top: -20px;
  transform: translate(var(--posX), -50%);
  text-indent: -1000em;
}
.event_swiper_button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  transition: opacity 0.55s ease;
  display: block;
  content: '';
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='30' viewBox='0 0 18 30' fill='none'%3E%3Cpath d='M15.6719 1.66797L2.33854 15.0013L15.6719 28.3346' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: 18px auto;
  mask-repeat: no-repeat;
  mask-position: center;
  will-change: opacity;
}
.event_swiper_button:hover:after {opacity: 1;}
.event_swiper_button._prev {left: -8px;}
.event_swiper_button._next {
  --posX: 100%;
  right: -8px;
}
.event_swiper_button._next::after {transform: rotate(180deg);}
.event_swiper_paging {
  font-size: 0;
  line-height: 100%;
  text-align: center;
}
.swiper-pagination-bullet {background-color: #000;}
.swiper-pagination-bullet:is(.swiper-pagination-bullet-active) {opacity: 1;}

/* section :: benefit */
.benefit_wrapper {
  background: #00351E;
}
.benefit_wrapper small {
  margin-bottom: 8px;
  opacity: 0.8;
  display: block;
}
.benefit_wrapper .roller_benefit {
  height: 192px;
  background: url(/wp-content/themes/fastfive/assets/event/251020_hongdaeartsalon/img/pc/roller_benefit.png) repeat-x left center / auto 192px;
  animation: roller_x 60s linear infinite;
}

@media (min-width: 1921px) {
  .sec_visual .marquee_item:nth-of-type(1) {
    right: unset;
    left: -885px;
  }
  .sec_visual .marquee_item:nth-of-type(2) {
    right: unset;
    left: -354px;
  }
  .sec_visual .marquee_item:nth-of-type(3) {
    right: -812px;
    left: unset;
  }
  .sec_visual .marquee_item:nth-of-type(4) {
    right: -384px;
    left: unset;
  }
}

@media (min-width: 961px) {
  .sec_benefit_01 .inner {
    max-width: var(--max_width2);
    flex-direction: row;
  }
  .sec_benefit_01 .conts_box > small:nth-of-type(1) {
    max-width: 400px;
    background-image: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/line_scheme_01.png');
  }
  .sec_benefit_01 .conts_box > small:nth-of-type(2) {
    max-width: 460px;
    background-image: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/line_scheme_02.png');
  }

  .sec_benefit_02 .benefit_info_item {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.55s 0.2s ease-in-out, opacity 0.55s 0.2s ease-in-out;
    flex: 1;
    will-change: transform, opacity;
    border-radius: 16px;
  }
  .sec_benefit_02 ._bottom .benefit_info_item:nth-of-type(1) {
    transition-delay: 0.2s;
  }
  .sec_benefit_02 ._bottom .benefit_info_item:nth-of-type(2) {
    transition-delay: 0.3s;
  }
  .sec_benefit_02 ._bottom .benefit_info_item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  .sec_benefit_02 ._bottom .benefit_info_item:nth-of-type(3)::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-width: 0px 12px 18px 12px;
    border-style: solid;
    border-color: transparent transparent var(--c_white) transparent;
    transform: translate(-50%, -100%);
    display: block;
    content: '';
  }
  .sec_benefit_02 ._bottom.onTrans .benefit_info_item {
    transform: translateY(0);
    opacity: 1;
  }
  .sec_benefit_02 .benefit_box:nth-of-type(1) .benefit_text::after,
  .sec_benefit_02 .benefit_box:nth-of-type(2) .benefit_text::after {
    width: 10px;
    margin: 16px auto;
    background-repeat: no-repeat; 
    background-position: center center; 
    background-size: 100% auto;
    display: block;
    content: '';
    aspect-ratio: 1 / 1;
  }
  .sec_benefit_02 .benefit_box:nth-of-type(1) .benefit_text::after {
    background-image: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/icon_plus.svg');
  }
  .sec_benefit_02 .benefit_box:nth-of-type(2) .benefit_text::after {
    background-image: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/pc/icon_equal.svg');
  }
  .sec_benefit_02 .img_box + .benefit_text {
    margin-top: 8px;
  }
  .office_list .badge {
    position: absolute; 
    top: 20px; 
    left: 20px;
    justify-content: center;
  }
}

@media (max-width: 960px){
  @keyframes bubbleAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(3px);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes card_swing {
    0% { transform: rotate(0deg); }	
    33.3% { transform: rotate(2deg); }
    66.6% { transform: rotate(-2deg); }
    100% { transform: rotate(0deg);}
  }
  @keyframes shadow_swing {
    0% { transform: translate(0, 0); opacity: 1; filter: blur(0px); }	
    33.3% { transform: translate(-30px, 0px); opacity: 0.4; filter: blur(4px); }
    66.6% { transform: translate(0, 0px); opacity: 1; filter: blur(0px); }
    100% { transform: translate(0, 0); opacity: 1; filter: blur(0px);}
  }
  
  @keyframes roller_x_02 {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -5220px;
    }
  }
  /*  common  */
  :root {
    --max_width: 500px;
    --padding_x: 20px;
    --padding_y: 130px;
    --gap: 40px;
    --menu_padding: 20px;
  }
  .hidden_pc { display: block !important;}
  .hidden_mo { display: none !important;}

  .motion.slide-up {
    transform: translateY(16px);
  }
  .motion.slide-right {
    transform: translateX(-16px);
  }
  .motion.slide-left {
    transform: translateX(16px);
  }

  /* text */
  .event_double_discount .title_h2 {
    font-size: 28px;
  }
  .event_double_discount .title_h5,
  .event_double_discount .text_p1 {
    font-size: 18px;
  }
  .event_double_discount .text_p2 {
    font-size: 16px;
  }
  .event_double_discount .text_p3 {
    font-size: 14px;
  }
  /* 말풍선 */
  .event_double_discount .bubble_box {
    padding: 4px 16px;
    font-size: 16px;
    border-radius: 18px;
  }
  .event_double_discount .bubble_box::before {
    border-width: 10px 6px 0px 6px;
  }

  /* visual */
  .sec_visual .inner {
    padding: 44px var(--padding_x) 243px;
    flex-direction: column;
  }
  .sec_visual .text_bubble {
    padding: 2px 10px;
    font-size: 22px;
  }
  .sec_visual .text_bubble::before {
    border-width: 12px 12px 0px 0px;
  }
  .sec_visual .visual_title {
    margin-top: 28px;
  }
  .sec_visual .visual_title svg {
    max-width: 274px;
    aspect-ratio: 274 / 140;
  }
  .sec_visual .info_area {
    margin-top: 24px;
    gap: 24px;
  }
  .sec_visual .info_area .text_p1 + .text_p1 {
    margin-left: 8px;
    padding-left: 8px;
  }
  .sec_visual .info_area .text_p1 + .text_p1::before {
    height: 14px;
  }
  .sec_visual .title_h5 {
    margin-top: 16px;
  }
  .sec_visual .group-img {
    --card_translate: 120px;
    --card_rotate: -25deg;
  }
  .sec_visual .group-img.onTrans {
    --card_translate: 0;
    --card_rotate: 0deg;
  }
  .sec_visual .cards {
    top: unset;
    right: -100px;
    bottom: 10px;
    left: unset;
    max-width: 340px;
    aspect-ratio: 340 / 347;
  }
  .sec_visual .cards::before {
    top: 90px;
    left: 174px;
    width: 36px;
    aspect-ratio: 36 / 38;
  }
  .sec_visual .cards .card_01 .img_card {
    left: 100px;
    width: 163px;
    aspect-ratio: 163 / 342;
  }
  .sec_visual .cards .card_01 .img_shadow {
    right: 100px;
    bottom: 0;
    left: unset;
    width: 103px;
    aspect-ratio: 103 / 42;
  }
  .sec_visual .cards .card_02 {
    transform: translate(var(--card_translate), calc(var(--card_translate) * -1)) rotate(var(--card_rotate));
    transform-origin: 100% 100%;
  }
  .sec_visual .cards .card_02 .img_card {
    top: 28px;
    left: 0;
    width: 190px;
    aspect-ratio: 190 / 314;
    transform-origin: 100% 50%;
  }
  .sec_visual .cards .card_02 .img_shadow {
    right: unset;
    bottom: -8px;
    left: 0;
    width: 218px;
    aspect-ratio: 218 / 26;
  }
  .sec_visual .desk_area {
    bottom: -38px;
    left: 36px;
    width: 156px;
    transform: translateX(0);
    aspect-ratio: 156 / 132;
  }
  .sec_visual .desk_area::before {
    left: -16px;
    width: 36px;
    aspect-ratio: 36 / 38;
  }
  .sec_visual .marquee_item {
    height: 24px;
  }
  .sec_visual .marquee_item:nth-of-type(2n) {
    background: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/mo/marquee_text.png') no-repeat center center / 100% auto;
  }
  .sec_visual .marquee_item:nth-of-type(1) {
    top: -12px;
    right: -444px;
    left: unset;
    width: 1082px;
    transform: rotate(40deg);
    opacity: 0.1;
  }
  .sec_visual .marquee_item:nth-of-type(2) {
    top: 10px;
    right: -450px;
    width: 1082px;
    background-color: #003620;
    transform: rotate(20deg);
    transition-delay: 0.25s;
  }
  .sec_visual .marquee_item:nth-of-type(3),
  .sec_visual .marquee_item:nth-of-type(4) {
    display: none;
  }

  /* section :: sec_countdown */
  .sec_countdown {
    --gap: 20px;
  }
  .sec_countdown .inner {
    padding: 60px var(--padding_x) 70px;
  }
  .sec_countdown .discount_bubble_box::before {
    border-width: 0px 6px 10px 6px;
  }
  .sec_countdown .discount_timer {
    font-size: 52px;
    line-height: 46px;
  }
  .sec_countdown .time_number .hour > span,
  .sec_countdown .time_number .minutes > span,
  .sec_countdown .time_number .seconds > span {
    width: 40px;
    height: 46px;
  }
  .sec_countdown .time_number {
    gap: 8px;
  }
  .sec_countdown .time_number + .time_number {
    margin-left: 8px;
  }
  .sec_countdown .time_number + .time_number::before {
    width: 6px;
    aspect-ratio: 6 / 22;
  }

  /* section :: sec_benefit_01 */
  [class*="sec_benefit_0"] .title_h2 {
    margin-top: 4px;
  }
  [class*="sec_benefit_0"] .title_area .text_p1 {  
    margin-top: 12px;
    font-size: 16px;
    opacity: 1;
  }
  .sec_benefit_01 .inner {
    flex-direction: column;
  }
  .sec_benefit_01 .conts_box {
    margin: 0 auto -22px;
  }
  .sec_benefit_01 .bubble_box::before {
    left: 22px;
  }
  .sec_benefit_01 .conts_box > ul {
    margin-top: -6px;
  }
  .sec_benefit_01 .conts_box > ul:nth-of-type(1) {
    max-width: 100%;
    margin-top: 26px;
  }
  .sec_benefit_01 .conts_box > ul:nth-of-type(2) {
    max-width: 100%;
  }
  .sec_benefit_01 .conts_box > ul li {
    height: 55px;
    font-size: 16px;
    border-radius: 8px;
  }
  .sec_benefit_01 .conts_box > ul li + li::before {
    position: absolute;
    top: calc(50% - 9px);
    left: -9px;
    width: 18px;
    height: 18px;
  }
  .sec_benefit_01 .conts_box > small {
    padding: 0 8px;
  }
  .sec_benefit_01 .conts_box > small span {
    margin-bottom: 4px;
    padding: 0 12px;
  }

  /* section :: sec_benefit_02 */
  .sec_benefit_02 .inner {
    max-width: var(--max_width);
    gap: var(--gap);
  }
  .sec_benefit_02 ._top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--gap);
  }
  .sec_benefit_02 .list_caution {
    margin-top: 8px;
  }
  .sec_benefit_02 .img_area {
    aspect-ratio: 334 / 182;
  }
  .sec_benefit_02 .text_box {
    left: 26px;
  }
  .sec_benefit_02 .title_h4 {
    font-size: 20px;
    text-indent: 4px;
  }
  .sec_benefit_02 ._top .benefit_text {
    font-size: 40px;
  }
  .sec_benefit_02 .list_benefit_info {
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.55s 0.2s ease-in-out, opacity 0.55s 0.2s ease-in-out;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    will-change: transform, opacity;
  }
  .sec_benefit_02 ._bottom.onTrans .list_benefit_info {
    transform: translateY(0);
    opacity: 1;
  }
  .sec_benefit_02 .benefit_info_item {
    padding: 0;
    padding-top: 16px;
  }
  .sec_benefit_02 ._bottom .benefit_text {
    font-size: 16px;
  }
  .sec_benefit_02 ._bottom .benefit_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .sec_benefit_02 ._bottom .benefit_box + .benefit_box {
    margin-top: 8px;
  }
  .sec_benefit_02 ._bottom .benefit_box:last-of-type {
    margin-top: 16px;
    padding: 6px 0;
    background: rgba(0, 182, 103, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .sec_benefit_02 ._bottom .benefit_box:last-of-type::before {
    width: 8px;
    background: url('/wp-content/themes/fastfive/assets/event/251103_double_discount/img/mo/icon_equal.svg') no-repeat center center / 100% auto;
    display: block;
    content: '';
    aspect-ratio: 8 / 6;
  }
  .sec_benefit_02 ._bottom svg {
    width: 18px;
    height: 22px;
  }

  /* section :: office */
  .sec_office .inner {
    max-width: 100%;
    padding-bottom: 0;
    padding: var(--padding_y) 0 0;
  }
  .sec_office .title_area .title_h2 {
    margin-top: 20px;
  }
  .sec_office .desc {
    margin-top: 12px;
    font-size: 16px;
  }
  .office_nav {
    display: flex;
  }
  .office_list ul {
    display: block; 
  }
  .office_list li {
    display: flex; 
    flex-direction: row-reverse;
    border-radius: 0;
    border-top: 1px solid #E5E5E5;
  }
  .office_list h5 {
    position: static; 
    justify-content: flex-start;
  }
  .office_list img {
    width: 33.3%;
    aspect-ratio: 125 / 134;
  }
  .office_price {
    justify-content: center;
    padding: 22px 26px; 
    text-align: left;
    flex: 1;
    gap: 0;
  }
  .office_price .title_h2 {
    margin-top: 6px;
  }
  .office_price .text_p2 {
    font-size: 16px;
  }

  /* section :: premium */
  .sec_premium .premium_img,
  .sec_premium .premium_exp {width: 100%; max-width: 375px;}
  .sec_premium .premium_exp {margin-top: 24px; color: #222;}
  .sec_premium .premium_exp li {font-size: 16px; line-height: 1.7;}
  .sec_premium .premium_swiper figcaption {height: 40px; padding: 6px; backdrop-filter: blur(3px);}
  .sec_premium .swiper-pagination-bullet {opacity: .15;}
  .sec_premium .event_swiper_button {display: none;}
  .sec_premium .event_swiper_paging {margin-top: 16px;}

  /* section :: benefit */
  .benefit_wrapper .roller_benefit {
    height: 120px;
    margin-top: 40px;
    background: url(/wp-content/themes/fastfive/assets/event/250827_event_apgujeong1/img/mo/roller_benefit_1.png) repeat-x center / auto 120px;
    animation-duration: 80s;
  }
  .benefit_wrapper .roller_benefit_2 {
    height: 120px;
    margin-top: 12px;
    background: url(/wp-content/themes/fastfive/assets/event/250827_event_apgujeong1/img/mo/roller_benefit_2.png) repeat-x center / auto 120px;
    animation: roller_x 80s linear infinite reverse;
  }
}

/* keyframe */
@keyframes roller_x {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -3760px;
  }
}
@keyframes roller_x_02 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -10112px;
  }
}
@keyframes roller_y {
  to {
    background-position-y: -6000px;
  }
}
@keyframes slideIn {
  to { 
    transform: translateX(0); 
    opacity: 1; 
  }
}