/* common */
ul, ol, li {
  list-style: none;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.event_newff {
  --gap: 60px;
  --c_primary: #E2FF00;
  --c_black_00: #000;
  --c_black_12: #121212;
  --c_white: #fff;
  background: #000;
}
.event_newff .inner {
  width: 100%;
  max-width: var(--max_width_2);
  margin: 0 auto;
  padding: var(--padding_y) var(--padding_x); 
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.event_newff .inner.row {
  flex-direction: row;
}
.event_newff .title_area {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 12px;
}
.event_newff .tit {
  font-weight: 700;
  line-height: 1.4;
  color: var(--c_white);
  letter-spacing: -1px;
}
.event_newff .text_h5 {
  font-weight: 500;
  line-height: 1.4;
}
.cta_text {
  --cta_text_color : var(--c_black_00);
  position: relative;
  font-size : 28px;
  line-height: 1.4;
  text-align: center;
  color : var(--cta_text_color);
}
.cta_text._c_primary {
  --cta_text_color : var(--c_primary);
}

.event_newff .title_area .sub_tit {
  font-family: 'League Gothic', sans-serif;
  line-height: 1.4;
  color: var(--c_primary);
  text-transform: uppercase;
}
.event_newff .btn {
  --text_color: var(--c_black_00);
  --bg_color: var(--c_white);
  position: relative;
  width: fit-content;
  min-height: 56px;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text_color);
  background-color: var(--bg_color);
  transition: background-color ease-in-out 0.55s, color ease-in-out 0.55s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.event_newff .btn.btn_black {
  --text_color: var(--c_white);
  --bg_color: var(--c_black_00);
}
.event_newff .btn::after {
  width: 24px;
  background-color: var(--text_color);
  transition: background-color ease-in-out 0.55s;
  content: '';
  aspect-ratio: 1 / 1;
  mask: 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%3Cmask id='mask0_239_7094' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect y='3.04988e-09' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_239_7094)'%3E%3Cmask id='mask1_239_7094' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='4' y='4' width='16' height='16'%3E%3Crect x='4' y='4' width='16' height='16' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask1_239_7094)'%3E%3Cpath d='M13.6502 11.9995L8.75024 7.09947C8.58357 6.9328 8.50301 6.73558 8.50857 6.5078C8.51413 6.28003 8.60024 6.0828 8.7669 5.91614C8.93357 5.74947 9.13079 5.66614 9.35857 5.66614C9.58635 5.66614 9.78357 5.74947 9.95024 5.91614L15.0669 11.0495C15.2002 11.1828 15.3002 11.3328 15.3669 11.4995C15.4336 11.6661 15.4669 11.8328 15.4669 11.9995C15.4669 12.1661 15.4336 12.3328 15.3669 12.4995C15.3002 12.6661 15.2002 12.8161 15.0669 12.9495L9.93357 18.0828C9.7669 18.2495 9.57246 18.33 9.35024 18.3245C9.12801 18.3189 8.93357 18.2328 8.7669 18.0661C8.60024 17.8995 8.5169 17.7022 8.5169 17.4745C8.5169 17.2467 8.60024 17.0495 8.7669 16.8828L13.6502 11.9995Z' fill='black'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center;
}
.event_newff .btn:hover,
.event_newff .event_newff_popup .btn.btn_black:hover {
  --bg_color: var(--c_primary);
}
.event_newff .btn.btn_black:hover {
  --bg_color: var(--c_white);
  --text_color: var(--c_black_00);
}
.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;
}
.hidden {
  overflow: hidden;
}
.blind {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  border: 0;
  clip: rect(1px 1px 1px 1px);
  clip-path: inset(50%);
}
.hidden_pc {display: none;}
.hidden_mo {display: block;}

/* S: popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  display: block;
  animation: popup-open 0.3s ease-out;
  backdrop-filter: blur(25px);
}
.popup_close {
  opacity: 0;
  display:none;
}
.popup_centered {
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.popup_box {
  position: relative;
  z-index: 100;
  border: 2px solid var(--c_black_00);
  background-color: #fff;
  transform: translate(0, 0);
  display: flex;
  animation: popup-inner 0.3s ease-out;
}
.popup .close_btn {
  position: absolute;
  z-index: 5;
  border: none;
  background: url('/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_close.png') no-repeat center center / 100% auto var(--c_black_00);
  display: block;
  border-radius: 50%;
}
.popup .popup_info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.popup .popup_tit img {
  width: fit-content;
  height: 100%;
  object-fit: contain;
}
.popup .popup_text_area {
  margin-top: var(--popup-gap);
}
.popup .popup_text_area,
.popup .tag {
  line-height: 1.7;
}
.popup .dist {
  font-weight: 700;
}
.popup .btn.btn_cta {
  margin: var(--popup-gap) 0 0;
}
.popup .popup_swiper {
  width: 50%;
}
.popup .popup_swiper img {
  width: calc(100% + 2px);
  max-width: calc(100% + 2px);
  margin: 0 -1px;
  height: 100%;
}
.popup .badge {
  position: absolute;
  z-index: 5;
  font-family: "League Gothic", sans-serif;
  line-height: 1.4;
  background: var(--c_primary);
  text-transform: uppercase;
  pointer-events: none;
}
.popup .btn-group {
  margin-top: auto;
  display: flex;
}
.popup .btn-group .ico_arrow {
  height : 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width : 50%;
  border-top : 2px solid #000;
  gap : 4px;
  font-size: 18px;
  font-weight: 700;
  background : var(--c_primary);
}
.popup .btn-group .ico_arrow._download {
  background : #000;
  color : #fff;
}
.popup .btn-group .ico_arrow._download::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 15.1504C19.2456 15.1504 19.4443 15.2314 19.6064 15.3936C19.7686 15.5557 19.8496 15.7544 19.8496 16V18C19.8496 18.5099 19.6704 18.9429 19.3066 19.3066C18.9429 19.6704 18.5099 19.8496 18 19.8496H6C5.4901 19.8496 5.05712 19.6704 4.69336 19.3066C4.3296 18.9429 4.15039 18.5099 4.15039 18V16C4.15039 15.7544 4.23141 15.5557 4.39355 15.3936C4.5557 15.2314 4.75444 15.1504 5 15.1504C5.24556 15.1504 5.4443 15.2314 5.60645 15.3936C5.76859 15.5557 5.84961 15.7544 5.84961 16V18.1504H18.1504V16C18.1504 15.7544 18.2314 15.5557 18.3936 15.3936C18.5557 15.2314 18.7544 15.1504 19 15.1504ZM12 4.15039C12.2456 4.15039 12.4443 4.23141 12.6064 4.39355C12.7686 4.5557 12.8496 4.75444 12.8496 5V12.5117L13.1064 12.2559L14.9814 10.3809C15.1531 10.2094 15.3508 10.1307 15.583 10.1377C15.8163 10.1448 16.0158 10.2309 16.1885 10.4014C16.349 10.5754 16.4303 10.7748 16.4375 11.0049C16.4444 11.2272 16.3668 11.4212 16.1943 11.5938L12.5938 15.1943C12.5073 15.2807 12.4171 15.3379 12.3242 15.3711C12.225 15.4065 12.1174 15.4248 12 15.4248C11.8826 15.4248 11.775 15.4065 11.6758 15.3711C11.5829 15.3379 11.4927 15.2807 11.4062 15.1943L7.80566 11.5938C7.63323 11.4212 7.5556 11.2272 7.5625 11.0049C7.56789 10.8325 7.61475 10.6772 7.70508 10.5371L7.81055 10.4014C7.98331 10.2306 8.18346 10.1448 8.41699 10.1377C8.64923 10.1307 8.84694 10.2094 9.01855 10.3809L10.8936 12.2559L11.1504 12.5117V5C11.1504 4.75444 11.2314 4.5557 11.3936 4.39355C11.5557 4.23141 11.7544 4.15039 12 4.15039Z' fill='white' stroke='black' stroke-width='0.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
/* E: popup */

/* S: visual */
.sc_visual {
  overflow: hidden;
  background-repeat: no-repeat; 
  background-position: center center; 
  background-size: cover;
}
.sc_visual .title_area {
  gap: 26px;
}
.sc_visual .tit {
  margin: 0 auto;
}
.sc_visual .title_area .sub_tit {
  line-height: 1;
}
.sc_visual .group_cnt {
  overflow: hidden;
}
.sc_visual .card_list {
  padding: var(--card_list_padding_y) 0;
  display: flex;
}
.sc_visual .card_item {
  position: relative;
  will-change: transform;
  transition: transform 0.8s ease-in-out;
  flex-shrink: 0;
  transform-origin: 50% 50%;
}
.sc_visual .card_item[data-pos="2"] {
  z-index: 1;
}
.sc_visual .card_item[data-pos="3"] {
  z-index: 5;
  transform: rotate(0deg) translateX(0);
}
.sc_visual .card_item[data-pos="4"] {
  z-index: 1;
}
/* E: visual */

/* S: sticky */
.scroll_sec {
  position: relative;
}
.sticky_tab{
  position: sticky;
  top: 72px;
  left: 0;
  background: var(--c_primary);
  color : var(--c_black_00);
  z-index: 10;
}
.sticky_tab ul{
  max-width: 1280px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.sticky_tab ul li{
  width: 50%;
  text-align: center;
  position: relative;
}
.sticky_tab ul li::before{
  position: absolute;
  top: calc(50% - 18px);
  left: 0;
  width: 1px;
  height: 36px;
  background: #777;
  opacity: 0.5;
  display: block;
  content: '';
}
.sticky_tab ul li:nth-child(1):before{
  display: none;
}
.sticky_tab ul a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 170%;
  height: 60px;
}
.ico_arrow {
  text-indent: 16px;
}
.ico_arrow::after{
  content: '';
  display: inline-flex;
  --size : 20px;
  width: var(--size);
  height: var(--size);
  background: 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%3Cmask id='mask0_239_7094' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect y='3.04988e-09' width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_239_7094)'%3E%3Cmask id='mask1_239_7094' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='4' y='4' width='16' height='16'%3E%3Crect x='4' y='4' width='16' height='16' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask1_239_7094)'%3E%3Cpath d='M13.6502 11.9995L8.75024 7.09947C8.58357 6.9328 8.50301 6.73558 8.50857 6.5078C8.51413 6.28003 8.60024 6.0828 8.7669 5.91614C8.93357 5.74947 9.13079 5.66614 9.35857 5.66614C9.58635 5.66614 9.78357 5.74947 9.95024 5.91614L15.0669 11.0495C15.2002 11.1828 15.3002 11.3328 15.3669 11.4995C15.4336 11.6661 15.4669 11.8328 15.4669 11.9995C15.4669 12.1661 15.4336 12.3328 15.3669 12.4995C15.3002 12.6661 15.2002 12.8161 15.0669 12.9495L9.93357 18.0828C9.7669 18.2495 9.57246 18.33 9.35024 18.3245C9.12801 18.3189 8.93357 18.2328 8.7669 18.0661C8.60024 17.8995 8.5169 17.7022 8.5169 17.4745C8.5169 17.2467 8.60024 17.0495 8.7669 16.8828L13.6502 11.9995Z' fill='black'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center / var(--size) auto;
}
/* E: sticky */

/* S: point */
.sc_point {
  overflow: hidden;
  background: var(--c_black_12);
}
.sc_point .inner {
  position: relative;
  justify-content: space-between;
}
.sc_point .keywords {
  overflow: hidden;
  text-align: center;
  background: var(--c_white);
  display: flex;
  flex-direction: column;
}
.sc_point .keyword {
  color: var(--c_black_00);
  display: block;
}
/* E: point */

/* S: discount */
.sc_discount .swiper {
  width: 100%;
  margin: 0 auto;
}
.sc_discount .swiper-slide {
  border: 2px solid var(--c_black_00);
}
.sc_discount .swiper-slide::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c_black_00);
  opacity: 0.5;
  will-change: opacity;
  transition: opacity 0.55s ease-in-out;
  display: block;
  content: '';
}
.sc_discount .swiper-slide.swiper-slide-active::before {
  opacity: 0;
}
.sc_discount img {
  aspect-ratio: 1 / 1;
}
.sc_discount .text_area {
  border-top: 2px solid var(--c_black_00);
  text-align: center;
  background: var(--c_primary);
}

.sc_discount .cta_text::after {
  position: absolute;
  bottom : -5px;
  left : 0;
  width : 100%;
  height : 5px;
  background : url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/brush_underline.svg") no-repeat center / 100% auto;
  content: "";
}
.sc_discount .name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: 1.4;
}
.sc_discount .name::after {
  --size : 39px;
}
.sc_discount .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
}
.sc_discount .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.2;
  transition: opacity 0.55s ease-in-out, background-color 0.55s ease-in-out;
}
.sc_discount .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--c_primary);
  opacity: 1;
}
/* E: discount */

/* S: special */
.sc_special .cnt_tit_box .tit {
  font-weight: 500;
  line-height: 1.7;
}
.sc_special .cnt_img_area {
  display: flex;
}
.sc_special .cnt_img_area::before {
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url('/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_arw_r_off.png');
  background-repeat: no-repeat; 
  background-position: center center; 
  background-size: 100% auto;
  display: block;
  content: '';
  order: 1;
}
.sc_special .btn_cta {
  margin-top: var(--gap);
}
/* E: special */

/* S: benefit */
.sc_benefit {
  background: var(--c_primary);
}
.sc_benefit .inner {
  position: relative;
  max-width: 100%;
}
.sc_benefit .tit,
.sc_benefit .title_area .sub_tit {
  color: var(--c_black_00);
}
.sc_benefit .group_cnt {
  position: relative;
}
.sc_benefit .video_area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc_benefit .video_area::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: var(--c_black_00);
  opacity: 0.5;
  display: block;
  content: '';
  pointer-events: none;
}
.sc_benefit .video {
  width: 100%;
  object-fit: cover;
}
.sc_benefit .text_area {
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 100%;
  transform: translateX(-50%);
}
.sc_benefit .text_area img {
  width: 100%;
}

 .discount_item {
  cursor: pointer;
 }
/* E: benefit */

/* S: lineup */
.sc_lineup {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat; 
}
.sc_lineup::before {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 2;
  width: 100%;
  display: block;
  content: '';
  pointer-events: none;
}

.sc_lineup .group_lineup {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.sc_lineup .event_text_area {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 15px;
}
.sc_lineup .lineup_item {
  width: 100%;
  display: flex;
}
.sc_lineup .lineup_item.soldout,
.sc_lineup .btn_popup,
.sc_lineup .num  {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sc_lineup .lineup_item.soldout {
  text-align: center;
  background: #D9D9D9;
}
.sc_lineup .btn_popup {
  width: 100%;
}
.sc_lineup .num,
.sc_lineup .lineup_item.soldout {
  border: 1px solid var(--c_black_00);
}
.sc_lineup .num {
  height: 100%;
  font-family: 'Anton', sans-serif;
  line-height: 1;
  background: #F3F3F3;
}
.sc_lineup .lineup_item:hover .num {
  background: var(--c_primary);
  transition: background-color 0.55s ease-in-out;
}
.sc_lineup .info {
  --info-btn-width: 30px;
  position: relative;
  height: 100%;
  border: 1px solid var(--c_black_00);
  background: var(--c_white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.sc_lineup .info::after {
  position: absolute;
  top: 50%;
  right: var(--info-right);
  width: var(--info-btn-width);
  border: 2px solid var(--c_black_00);
  background-color: var(--c_black_00);
  background-image: url('/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_plus_w.svg');
  background-repeat: no-repeat; 
  background-position: center center; 
  background-size: 100% auto;
  transform: translateY(-50%);
  display: block;
  content: '';
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}
.sc_lineup .lineup_item:hover .info::after {
  background-color: var(--c_primary);
  background-image: url('/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_plus_b.svg');
  transition: background-color 0.55s ease-in-out, background-image 0.55s ease-in-out;
}
.sc_lineup .name {
  font-weight: 700;
  line-height: 1.4;
  word-break: break-all;
  text-transform: uppercase;
  flex: 1;
}
.sc_lineup .more_text {
  line-height: 1.7;
}
.sc_lineup .more_text b {
  font-weight: 700;
}
.sc_lineup .arw_box {
  display: flex;
  justify-content: center;
}
.sc_lineup .arw_box svg {
  overflow: visible;
}
.sc_lineup .arw_box path:nth-child(1) {
  animation: arwDown1 1s ease-in-out infinite alternate;
}
.sc_lineup .arw_box path:nth-child(2) {
  animation: arwDown2 1s 0.3s ease-in-out infinite alternate;
}
.sc_lineup .arw_box path:nth-child(3) {
  animation: arwDown3 1s 0.6s ease-in-out infinite alternate;
}
.sc_lineup .slogan {
  position: relative;
}
.sc_lineup .count_box {
  position: relative;
  z-index: 1;
  text-align: center;
}
.sc_lineup .count_box::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100%;
  background-repeat: no-repeat; 
  background-position: center center; 
  background-size: cover;
  transform: translateX(-50%);
  display: block;
  content: '';
}
.sc_lineup .count_box img {
  margin: 0 auto;
}
.sc_lineup .count_num {
  font-weight: 900;
  line-height: 108%;
  letter-spacing: -1px;
}
.sc_lineup .btn_cta {
  position: relative;
  z-index: 2;
}
/* E: lineup */

/* S: standard */
.sc_standard {
  background: var(--c_black_12);
}
.sc_standard .strd_list {
  text-align: center;
  display: grid;
}
.sc_standard .strd_item::before {
  width: 100%;
  background-repeat: no-repeat; 
  background-position: center center; 
  background-size: 100% auto;
  display: block;
  content: '';
}
.sc_standard .strd_item:nth-child(1)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_1.svg");
}
.sc_standard .strd_item:nth-child(2)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_2.svg");
}
.sc_standard .strd_item:nth-child(3)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_3.svg");
}
.sc_standard .strd_item:nth-child(4)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_4.svg");
}
.sc_standard .strd_item:nth-child(5)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_5.svg");
}
.sc_standard .strd_item:nth-child(6)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_6.svg");
}
.sc_standard .strd_item:nth-child(7)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_7.svg");
}
.sc_standard .strd_item:nth-child(8)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_8.svg");
}
.sc_standard .strd_item:nth-child(9)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_9.svg");
}
.sc_standard .strd_item:nth-child(10)::before {
  background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_strd_10.svg");
}
.sc_standard .strd_item .strd_txt {
  color: var(--c_white);
}
/* S: standard */

.sc_lineup .group_marquee {
  background-color: var(--c_primary) ;
  width : 100%;
  height : 60px;
}
.sc_lineup .group_marquee span {
  width : 100%;
  height: 60px;
  display: inline-flex;
  background: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/img_benefit_marquee.png") repeat-x 377px 0 / auto 100%;
  animation : marquee_line 12s infinite linear;
}
@keyframes marquee_line {
  to {
    background-position : -377px 0 ;
  }
}

@media screen and (min-width: 961px) {
  /* common */
  .event_newff {
    --padding_x: 50px;
    --padding_y: 180px;
    --max-width_1: 1608px;
    --max_width_2: 1140px;
  }
  .event_newff .text_h5 {
    font-size: 24px;
  }
  .event_newff .title_area .tit {
    font-size: 52px;
  }
  .event_newff .title_area .sub_tit {
    font-size: 30px;
  }
  .event_newff .btn {
    padding: 8px 48px;
    font-size: 18px;
    text-indent: 8px;
  }

  /* S: popup */
  .popup {
    --popup-gap: 24px;
  }
  .popup_close .popup_centered {
    transform: translate(0, 100px);
  }
  .popup_box {
    width: 100%;
    max-width: 906px;
    border: 2px solid var(--c_black_00);
  }
  .popup .close_btn {
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px; 
  }

  .popup .popup_tit { 
    height: 113px;
    margin : 60px 38px 0;
  }
  .popup .popup_text_area {
    margin: 24px 54px 0;
  }
  .popup .popup_text_area,
  .popup .tag {
    font-size: 18px;
  }
  .popup .btn.btn_cta {
    margin: var(--popup-gap) 0 0;
  }
  .popup .popup_swiper {
    width: 50%;
    border-left: 2px solid var(--c_black_00);
  }
  .popup .badge {
    right: -2px;
    bottom: -2px;
    padding: 0 16px;
    border: 2px solid var(--c_black_00);
    font-size: 26px;
  }
  /* E: popup */

  /* S: visual */
  .sc_visual {
    --card_list_padding_y: 30px; /* 카드 리스트 상하 패딩 */
    --gap: calc(80px - var(--card_list_padding_y));
    background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/bg_visual.jpg");
  }
  .sc_visual .inner {
    max-width: var(--max-width_1);
    padding-top: 80px;
    padding-bottom: calc(100px - var(--card_list_padding_y));
  }
  .sc_visual .title_area {
    gap: 26px;
  }
  .sc_visual .tit {
    max-width: 590px;
    aspect-ratio: 591 / 166;
  }
  .sc_visual .btn_wrap {
    margin-top: 26px;
  }
  .sc_visual .group_cnt {
    max-width: 1508px;
  }
  .sc_visual .card_list {
    /* 마이너스 마진만큼 너비 확장 */
    width: calc(100% + 162px * 2);
    margin: 0 -162px;
  }
  .sc_visual .card_item {
    width: 20%;
  }
  .sc_visual .card_item[data-pos="1"] {
    transform: translateX(163px);
  }
  .sc_visual .card_item[data-pos="2"] {
    transform: rotate(-7deg) translate(60px, 2px);
  }
  .sc_visual .card_item[data-pos="3"] {
    box-shadow: 3px 20px 22px var(--c_black_00);
  }
  .sc_visual .card_item[data-pos="4"] {
    transform: rotate(7deg) translate(-60px, 2px);
  }
  .sc_visual .card_item[data-pos="5"] {
    transform: translateX(-163px);
  }
  .sc_visual .img.active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: opacity;
    opacity: 0;
    transition: opacity 0.55s ease-in-out;
  }
  .sc_visual .card_item[data-pos="3"] .img.active {
    opacity: 1;
  }
  /* E: visual */

  /* S: point */
  .sc_point .inner {
    max-width: var(--max_width_2);
    padding: 134px var(--padding_x);
  }
  .sc_point .tit { 
    font-size: 40px;
  }
  .sc_point .keywords {
    min-width: 372px;
    height: 80px;
    margin: 10px 0;
  }
  .sc_point .keyword {
    padding: 12px 20px;
  }
  .sc_point .group_cnt {
    position: absolute;
    right: 25px;
    bottom: -45px;
    width: 48.24%;
    max-width: 550px;
  }
  .sc_point .group_cnt .img_box img {
    aspect-ratio: 550 / 445;
  }
  /* E: point */

  /* S: discount */
  .sc_discount .swiper {
    max-width: 850px;
  }
  .sc_discount .swiper-slide {
    width: 374px;
  }
  .sc_discount .text_area {
    padding: 18px;
  }
  .sc_discount .name {
    font-size: 34px;
  }
  .sc_discount .swiper-pagination {
    margin-top: 26px;
  }
  /* E: discount */

  /* S: special */
  .sc_special {
    --special-gap: 68px;
  }
  .sc_special .cnt_tit_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--special-gap);
  }
  .sc_special .cnt_tit_box {
    max-width: 220px;
    margin: 0 auto;
    text-align: center;
    flex: 1;
  }
  .sc_special .cnt_tit_box .tit {
    margin-top: 13px;
    font-size: 20px;
  }
  .sc_special .cnt_tit_box.exp .tit {
    color: #777;
  }
  .sc_special .cnt_tit_box.real .tit {
    color: var(--c_primary);
  }
  .sc_special .swiper {
    margin-top: 30px;
  }
  .sc_special .swiper-wrapper {
    display: block;
  }
  .sc_special .swiper-slide + .swiper-slide {
    margin-top: 16px;
  }
  .sc_special .cnt_img_area {
    justify-content: space-between;
    align-items: center;
    gap: var(--special-gap);
  }
  .sc_special .cnt_img_area::before {
    width: 44px;
    transform: translate(-50%, -50%);
    aspect-ratio: 44 / 36;
    transition: background-image 0.55s 0.55s ease-in-out;
  }
  .sc_special .cnt_img_area.onTrans::before {
    background-image: url('/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_arw_r_on.png');
  }
  /* E: special */

  /* S: benefit */
  .sc_benefit .inner {
    padding: var(--padding_y) 0 0;
  }
  .sc_benefit .video {
    height: 753px;
  }
  .sc_benefit .text_area {
    top: 160px;
    max-width: 800px;
    transform: translateX(-50%);
  }
  .sc_benefit .text_area img {
    aspect-ratio: 800 / 336;
  }
  .sc_benefit .text_area .btn_cta { 
    margin-top: 40px;
  }

  /* E: benefit */

  /* S: lineup */
  .sc_lineup {
    background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/bg_lineup.jpg");
    background-position: center center; 
    background-size: cover;
  }
  .sc_lineup::before {
    height: 308px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
  }
  .sc_lineup .event_text_area img {
    aspect-ratio: 563 / 95;
  }
  .sc_lineup .lineup_item,
  .sc_lineup .btn_popup,
  .sc_lineup .num,
  .sc_lineup .info {
    min-height: 120px;
  }
  .sc_lineup .num {
    min-width: 120px;
    font-size: 34px;
    letter-spacing: 0.34px;
  }
  .sc_lineup .info {
    --info-right: 58px;
    --info-gap: 16px;
    /* padding-right = 우측여백 + 텍스트-버튼 간격 + 버튼 너비 */
    padding: 35px calc(var(--info-right) + var(--info-gap) + var(--info-btn-width)) 35px var(--info-right);
    gap: var(--info-gap);
  }
  .sc_lineup .name {
    font-size: 36px;
    flex: 1;
  }
  .sc_lineup .count_area {
    margin-top: 20px;
  }
  .sc_lineup .more_text {
    font-size: 18px;
  }
  .sc_lineup .slogan {
    max-width: 706px;
    margin: 20px auto -25px;
  }
  .sc_lineup .slogan::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    display: block;
    content: '';
    mix-blend-mode: soft-light;
  }
  .sc_lineup .count_box {
    padding: 72px 0 85px;
  }
  .sc_lineup .count_box::before {
    max-width: 606px;
    background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/bg_count.png");
    aspect-ratio: 606 / 527;
  }
  .sc_lineup .count_box img {
    max-width: 166px;
    aspect-ratio: 166 / 38;
  }
  .sc_lineup .count_num {
    font-size: 126px;
  }

  /* E: lineup */

  /* S: standard */
  .sc_standard .inner {
    max-width: 950px;
  }
  .sc_standard .strd_list {
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
  }
  .sc_standard .strd_item::before {
    aspect-ratio: 130 / 60;
  }
  .sc_standard .strd_item .strd_txt {
    margin-top: 10px;
    font-size: 24px;
  }
  /* S: standard */
}

@media screen and (max-width: 960px) {
  /* common */
  .event_newff {
    --padding_x: 0;
    --padding_y: 130px;
    --max-width_1: 1608px;
    --max_width_2: 1140px;
  }
  .event_newff .inner {
    max-width: 100%;
  }
  .event_newff .title_area .tit {
    font-size: 34px;
  }
  .event_newff .title_area .sub_tit {
    font-size: 24px;
  }
  .event_newff .btn {
    min-width: 270px;
    padding: 14px 49px;
    font-size: 16px;
    text-indent: 4px;
  }
  .hidden_pc {display: block;}
  .hidden_mo {display: none !important;}
  .cta_text {
    font-size: 18px;
  }
  /* S: popup */
  .popup {
    --popup-gap: 12px;
  }
  .popup_close .popup_centered {
    transform: translate(0, 30px);
  }
  .popup_box {
    width: 72%;
    max-width: 500px;
    border: 2px solid var(--c_black_00);
    flex-direction: column-reverse;
  }
  .popup .close_btn {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px; 
  }
  .popup .popup_info {
    text-align: center;
  }
  .popup .popup_tit { 
    margin-top: 30px;
    height: 42px;
  }
  .popup .popup_tit img {
    margin: 0 auto;
  }
  .popup .popup_text_area {
    padding : 0 20px;
  }
  .popup .btn-group {
    margin-top: 36px;
  }
  .popup .popup_text_area,
  .popup .tag {
    font-size: 16px;
    word-break: keep-all;
    display: inline-block;
  }
  .popup .popup_swiper {
    width: 100%;
    border-bottom: 1px solid var(--c_black_00);
  }
  .popup .badge {
    right: -1px;
    bottom: -1px;
    padding: 0 6px;
    border: 1px solid var(--c_black_00);
    font-size: 14px;
  }
  .popup .btn-group .ico_arrow {
    font-size: 16px;
    height : 56px;
    text-indent: 4px;
  }
  /* E: popup */

  /* S: visual */
  .sc_visual {
    --card_list_padding_y: 24px;
    --gap: calc(60px - var(--card_list_padding_y));
    position: relative;
    background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/bg_visual_m.jpg");
  }
  .sc_visual::before,
  .sc_visual::after {
    position: absolute;
    top: 0;
    z-index: 5;
    width: 31%;
    height: 100%;
    display: block;
    content: '';
    pointer-events: none;
  }
  .sc_visual::before {
    right: 74.6%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 1.49%, #000 100%);
  }
  .sc_visual::after {
    left: 74.6%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 1.49%, #000 100%);
  }
  .sc_visual .inner {
    padding-top: 70px;
    padding-bottom: calc(88px - var(--card_list_padding_y));
  }
  .sc_visual .group_title {
    position: relative;
    z-index: 10;
  }
  .sc_visual .title_area {
    gap: 26px;
  }
  .sc_visual .tit {
    max-width: 276px;
    aspect-ratio: 276 / 156;
  }
  .sc_visual .btn_wrap {
    margin-top: 26px;
  }
  .sc_visual .card_list {
    width: max-content;
    margin: 0 calc((100% - 1370px) / 2); /* 카드 5장 최대 너비 */
  }
  .sc_visual .card_item {
    width: 274px;
    box-shadow: 4px 4px 22px var(--c_black_00);
  }
  .sc_visual .card_item[data-pos="1"] {
    transform: translate(122px, -24px);
  }
  .sc_visual .card_item[data-pos="2"] {
    transform: rotate(-7deg) translate(42px, -2px);
  }
  .sc_visual .card_item[data-pos="4"] {
    transform: rotate(7deg) translate(-42px, -2px);
  }
  .sc_visual .card_item[data-pos="5"] {
    transform: translate(-122px, -24px);
  }
  .sc_visual .img:not(.active) {
    display: none;
  }
  .sc_visual .card_item[data-pos="3"] {
    z-index: 10;
  }
  .sc_visual .card_item:not([data-pos="3"]) {
    z-index: 3;
  }
  .sticky_tab {
    top : 60px;
  }
  .sticky_tab ul a {
    font-size: 14px;
    height : 44px;
    gap : 4px;
  }
  .sticky_tab ul li::before {
    height: 24px;
    top: calc(50% - 12px);
  }
  /* E: visual */

  /* S: point */
  .sc_point .inner.row {
    padding: var(--padding_y) 0 0;
    flex-direction: column;
    align-items: center;
  }
  .sc_point .tit {
    font-size: 28px; 
    text-align: center;
  }
  .sc_point .keywords {
    width: 262px;
    height: 60px;
    margin: 12px 0;
  }
  .sc_point .keyword {
    padding: 10px 16px;
  }
  .sc_point .group_cnt {
    position: relative;
    right: -25px;
    width: 424px;
  }
  .sc_point .group_cnt .img_box img {
    aspect-ratio: 424 / 296;
  }
  /* E: point */

  /* S: discount */
  .sc_discount .inner {
    --gap: 36px;
  }
  .sc_discount .swiper {
    max-width: 448px;
  }
  .sc_discount .swiper-slide {
    width: 192px;
  }
  .sc_discount .text_area {
    padding: 6px;
  }
  .sc_discount .name {
    font-size: 22px;
  }
  .sc_discount .swiper-pagination {
    margin-top: 16px;
  }
  /* E: discount */

  /* S: special */
  .sc_special {
    --gap: 36px;
    --swiper-gap: 50px;
  }
  .sc_special .group_cnt {
    position: relative;
    width: 100%;  
    max-width: 500px;
    margin: 0 auto;
  }
  .sc_special .cnt_tit_box + .cnt_tit_box {
    /* (전체 높이 + 이미지 간격 - 페이지네이션 높이) / 2 - border 보정 */
    top: calc((100% + var(--swiper-gap) - 24px) / 2 - 1px);
  }
  .sc_special .cnt_tit_box {
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 10; 
    display: flex;
    align-items: center;
  }
  .sc_special .cnt_tit_box .tit {
    padding: 0 6px;
    border: 2px solid var(--c_black_00);
    font-weight: 700;
    font-size: 14px;
    color: var(--c_black_00);
    background: var(--c_white);
    text-transform: uppercase;
  }
  .sc_special .cnt_tit_box.exp .tit + .tit {
    background: #D9D9D9;
  }
  .sc_special .cnt_tit_box .tit + .tit {
    margin-left: -2px;
    background: var(--c_primary);
  }
  .sc_special .cnt_img_area {
    position: relative;
    opacity: 1;
    transform: unset;
    flex-direction: column;
    gap: var(--swiper-gap);
  }
  .sc_special .cnt_img_area::before {
    width: 26px;
    background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_arw_r_off.png");
    transform: translate(-50%, -50%) rotate(90deg);
    transition: background-image 0.55s 0.8s ease-in-out;
    transform-origin: 50% 50%;
    aspect-ratio: 26 / 33;
  }
  .sc_special .swiper {
    position: relative;
  }
  .sc_special .swiper-slide-active .cnt_img_area::before {
    background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/ico_arw_r_on.png");
  }
  .sc_special .img_box {
    border: 2px solid var(--c_black_00);
  }
  .sc_special .cnt_img_area img {
    aspect-ratio: 375 / 220;
  }
  .sc_special .swiper-pagination {
    position: static;
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }
  .sc_special .swiper-pagination-bullet {
    background: var(--c_white);
    opacity: 0.15;
    transition: opacity 0.55s ease-in-out;
  }
  .sc_special .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
  }
  /* E: special */

  /* S: benefit */
  .sc_benefit .inner {
    --gap: 36px;
    padding: var(--padding_y) 0 0;
  }
  .sc_benefit .video {
    height: 476px;
  }
  .sc_benefit .text_area {
    top: 50%;
    width: 97.3%;
    max-width: 500px;
    transform: translate(-50%, -50%);
  }
  .sc_benefit .text_area img {
    aspect-ratio: 365 / 153;
  }
  .sc_benefit .text_area .btn_cta { 
    margin-top: 36px;
  }
 
  /* E: benefit */

  /* S: lineup */
  .sc_lineup {
    background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/bg_lineup_m.jpg");
    background-position: center bottom; 
    background-size: 960px auto;
  }
  .sc_lineup::before {
    bottom : 47px;
    height: 232px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 69.99%, #000 103.59%);
    background-blend-mode: darken;
  }
  .sc_lineup .inner {
    padding-bottom: 134px;
    overflow: hidden;
  }
  .sc_lineup .event_text_area img {
    aspect-ratio: 330 / 55;
  }
  .sc_lineup .group_lineup {
    max-width: 500px;
    margin: 0 auto;
  }
  .sc_lineup .lineup_item,
  .sc_lineup .btn_popup,
  .sc_lineup .num,
  .sc_lineup .info {
    min-height: 95px;
  }
  .sc_lineup .num {
    background: var(--c_primary);
    min-width: 55px;
    border-left: none;
    font-size: 22px;
    letter-spacing: 0.22px;
  }

  .sc_lineup .info {
    --info-right: 24px;
    --info-gap: 0;
    /* padding-right = 우측여백 + 텍스트-버튼 간격 + 버튼 너비 */
    padding: 16px calc(var(--info-right) * 2 + var(--info-btn-width)) 16px var(--info-right);
    border-right: none;
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
  }
  .sc_lineup .name {
    font-size: 26px;
  }
  .sc_lineup .more_text {
    font-size: 16px;
  }
  .sc_lineup .arw_box svg {
    width: 16px;
    height: 40px;
  }
  .sc_lineup .slogan {
    max-width: 250px;
    margin: 20px auto 36px;
  }
  .sc_lineup .count_area {
    display: flex;
    flex-direction: column;
    margin-top : 36px;
  }
  .sc_lineup .count_box {
    margin-top: 60px;
    padding: 45px 0 12px;
    order: 2;
  }
  .sc_lineup .count_box::before {
    top: -29px;
    max-width: 358px;
    background-image: url("/wp-content/themes/fastfive/assets/event/251222_event_newff/img/bg_count_m.png");
    aspect-ratio: 358 / 350;
  }
  .sc_lineup .count_num {
    font-size: 80px;
  }
  .sc_lineup .btn_cta {
    order: 1;
  }
  .sc_lineup .group_marquee,
  .sc_lineup .group_marquee span {
    height: 47px;
  }
  /* E: lineup */

  /* S: standard */
  .sc_standard .strd_list {
    max-width: 232px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 60px;
  }
  .sc_standard .strd_item::before {
    aspect-ratio: 86 / 52;
  }
  .sc_standard .strd_item .strd_txt {
    margin-top: 6px;
    font-size: 16px;
  }
  /* S: standard */
}

@keyframes popup-open {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
@keyframes popup-inner {
  from {
      transform: translate(0, 100px);
  }
  to {
      transform: translate(0, 0);
  }
}

/* @keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} */

@keyframes arwDown1 {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(6px);
    opacity: 1;
  }
}
@keyframes arwDown2 {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(4px);
    opacity: 1;
  }
}
@keyframes arwDown3 {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(2px);
    opacity: 1;
  }
}