/*  common  */
:root {
  --c_primary : #0059FF;
  --c_secondary : #007643;
  --c_tertiary : #C4E5C5;
  --c_white: #fff;
  --c_black: #000;
  --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;
  color: var(--c_white);
  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: #E8F4FF;
}
.sec_visual .inner {
  position: relative;
  z-index: 2;
  padding: 100px var(--padding_x);
  flex-direction: row;
  justify-content: space-between;
}
.sec_visual .group_title {
  position: relative;
  z-index: 10;
}
.sec_visual .title_area {
  padding-left: 5px;
  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_primary);
}
.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_primary) 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_black);
}
.sec_visual .char._primary {
  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._primary {
  fill: var(--c_primary);
}
.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;
  position: relative;
  height: 100%;
}
.sec_visual .group-img.onTrans {
  --bubble_scale: 1;
  --bubble_opacity: 1;
}
.sec_visual .receipt {
  position: absolute;
  top: 65px;
  left: -25px;
  z-index: 5;
  width: 61%;
  max-width: 398px;
  height: 100%;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.55s 0.55s ease, transform 0.55s 0.55s ease-in-out;
  aspect-ratio: 398 / 436;
  will-change: transform, opacity;
}
.sec_visual.onTrans .receipt {
  transform: translateY(0);
  opacity: 1;
}
.sec_visual.onTrans .receipt img {
  animation: bubbleAnimation 3s 1.1s ease infinite;
}
.sec_visual .desk_area {
  position: relative;
  height: 100%;
  transform: translateX(30px);
  opacity: 0;
  transition: opacity 0.55s 0.2s ease, transform 0.55s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.75);
  will-change: transform, opacity;
}
.sec_visual.onTrans .desk_area {
  transform: translateX(0);
  opacity: 1;
}
.sec_visual .desk_area::before {
  position: absolute;
  background: url('/wp-content/themes/fastfive/assets/event/251203_double_discount/img/pc/rent_bubble_01.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: '';
  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: #064B8C;
  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/251203_double_discount/img/pc/marquee_text.png') no-repeat center center / 100% auto;
  background-color: #0059FF;
  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;
  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);
  transform: rotate(20deg);
  transition-delay: 0.2s;
}
.sec_visual.onTrans .marquee_item {
  clip-path: inset(0 0 0 0);
}

/* section :: sec_benefit_01 */
[class*="sec_benefit_0"] .text_p2 {
  font-weight: 700;
  text-transform: uppercase;
  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 .text_p2 {
  color: var(--c_primary);
}
.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: #DCEEFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
.sec_benefit_01 .conts_box > ul li:last-child {
  color: var(--c_white);
  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/251203_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;
  display: block;
}

/* section :: sec_benefit_02 */
.sec_benefit_02 .inner {
  max-width: var(--max_width2);
  padding: 110px var(--padding_x);
}
.sec_benefit_02 .text_p2 {
  color: #58B9FF;
}
.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 .img_area {
  position: relative;
  width: 100%;
}
.sec_benefit_02 .img_area::before {
  position: absolute;
  background-repeat: no-repeat; 
  background-position: center center; 
  background-size: 100% auto;
  transform: scale(0.5);
  opacity: 0;
  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);
  content: '';
  will-change: opacity, transform;
}
.sec_benefit_02 .img_area.onTrans::before {
  transform: scale(1);
  opacity: 1;
  animation: bubbleAnimation 2s 1.2s ease infinite;
}

/* section :: office */
.sec_office {
  background-color: #F8FCFF;
}
.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_primary);
  color: var(--c_white);
  background-color: var(--c_primary);
  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: #004EDE;
}
.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_visual .inner {
    max-width: var(--max_width2);
    align-items: center;
  }
  .sec_visual .group-img {
    width: calc(56.2% + 80px);
    max-width: 652px;
    margin-right: -80px;
    padding-left: 21.7%;
    aspect-ratio: 652 / 448;
  }
  .sec_visual .desk_area {
    width: calc(100% + 92px);
    max-width: 652px;
    margin-right: -92px;
    aspect-ratio: 514 / 448;
  }
  .sec_visual .desk_area::before {
    top: 125px;
    right: 21%;
    width: 85px;
    aspect-ratio: 85 / 87;
  }
  .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/251203_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/251203_double_discount/img/pc/line_scheme_02.png');
  }
  .sec_benefit_02 {
    background: url('/wp-content/themes/fastfive/assets/event/251203_double_discount/img/pc/bg_benefit_02.jpg') no-repeat center center / cover;
  }
  .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 .img_area {
    max-width: 406px;
    margin-right: 54px;
    aspect-ratio: 406 / 375;
  }
  .sec_benefit_02 .img_area::before {
    top: 12px;
    right: 46px;
    width: 98px;
    height: 96px;
    background-image: url('/wp-content/themes/fastfive/assets/event/251203_double_discount/img/pc/max_bubble_01.png');
  }
  .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 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) 35px;
    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 .group_title {
    padding-left: 3px;
  }
  .sec_visual .visual_title {
    margin-top: 28px;
  }
  .sec_visual .visual_title svg {
    max-width: 274px;
    height: 100%;
    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 {
    width: calc(100% + var(--padding_x) * 2);
    max-width: 375px;
    text-align: center;
    align-self: center;
  }
  .sec_visual .desk_area {
    width: 100%;
    max-width: 230px;
    margin-left: auto;
    aspect-ratio: 230 / 250;
  }
  .sec_visual .desk_area::before {
    top: 60px;
    right: 20px;
    width: 48px;
    aspect-ratio: 48 / 49;
  }
  .sec_visual .receipt {
    top: 33px;
    left: 2px;
    width: 100%;
    max-width: 220px;
    aspect-ratio: 187 / 203;
  }
  .sec_visual .marquee_item {
    height: 24px;
  }
  .sec_visual .marquee_item:nth-of-type(2n) {
    background: url('/wp-content/themes/fastfive/assets/event/251203_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;
    background: #00100B;
    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_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 {
    background: url('/wp-content/themes/fastfive/assets/event/251203_double_discount/img/mo/bg_benefit_02.jpg') no-repeat center center / cover;
  }
  .sec_benefit_02 .inner {
    max-width: var(--max_width);
    padding: var(--padding_y) var(--padding_x) 108px;
    gap: 30px;
  }
  .sec_benefit_02 ._top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  .sec_benefit_02 .title_area .text_p1 {
    margin-top: 9px;
  }
  .sec_benefit_02 .img_area {
    max-width: 274px;
    margin-left: auto;
    aspect-ratio: 274 / 230;
  }
  .sec_benefit_02 .img_area::before {
    top: 24px;
    left: 10px;
    width: 60px;
    height: 64px;
    background-image: url('/wp-content/themes/fastfive/assets/event/251203_double_discount/img/mo/max_bubble_01.png');
  }

  /* section :: office */
  .sec_office .inner {
    max-width: 100%;
    padding: var(--padding_y) 0 0;
    padding-bottom: 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 {
    border-top: 1px solid #E5E5E5;
    display: flex; 
    flex-direction: row-reverse;
    border-radius: 0;
  }
  .office_list h5 {
    position: static; 
    justify-content: flex-start;
  }
  .office_list img {
    width: 33.3%;
    aspect-ratio: 125 / 134;
  }
  .office_price {
    padding: 22px 26px; 
    text-align: left;
    justify-content: center;
    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; 
  }
}