@charset "UTF-8";

/*========================
Font Face Start
========================*/
@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-Regular.woff2')
    format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-Medium.woff2')
    format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-SemiBold.woff2')
    format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/packages/pretendard/dist/web/static/woff2/Pretendard-Bold.woff2')
    format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BM Euljiro';
  src:
    url('../fonts/BMEULJIRO.woff2') format('woff2'),
    url('../fonts/BMEULJIRO.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/*========================
Font Face End
========================*/

/*========================
Root Variables Start
========================*/
:root {
  --mj_font_main: 'Pretendard', 'Noto Sans KR', sans-serif;
  --mj_font_point: 'BM Euljiro', 'Pretendard', 'Noto Sans KR', sans-serif;

  --mj_color_black: #000000;
  --mj_color_white: #ffffff;
  --mj_color_red: #e9251c;
  --mj_color_yellow: #ffd632;
  --mj_color_text: #222222;
  --mj_color_sub: #777777;
  --mj_color_gray: #999999;
  --mj_color_dark: #101010;
  --mj_color_line: rgba(255, 255, 255, 0.35);

  --mj_fs_12: 12px;
  --mj_fs_13: 13px;
  --mj_fs_14: 14px;
  --mj_fs_15: 15px;
  --mj_fs_16: 16px;
  --mj_fs_18: 18px;
  --mj_fs_20: 20px;
  --mj_fs_24: 24px;
  --mj_fs_32: 32px;
  --mj_fs_40: 40px;
  --mj_fs_56: 56px;
  --mj_fs_72: 72px;

  --mj_fw_regular: 400;
  --mj_fw_medium: 500;
  --mj_fw_semibold: 600;
  --mj_fw_bold: 700;

  --mj_lh_1: 1;
  --mj_lh_sm: 1.25;
  --mj_lh_md: 1.5;
  --mj_lh_lg: 1.7;

  --mj_container: 1480px;
  --mj_container_wide: 1640px;
  --mj_container_mid: 1280px;
  --mj_container_small: 1080px;
  --mj_gutter: 40px;

  --mj_header_h: 88px;
  --mj_radius_full: 999px;
  --mj_transition: 0.28s ease;
}
/*========================
Root Variables End
========================*/

/*========================
Reset Start
========================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--mj_font_main);
  font-size: var(--mj_fs_16);
  font-weight: var(--mj_fw_regular);
  line-height: var(--mj_lh_md);
  color: var(--mj_color_text);
  background: var(--mj_color_white);
  word-break: keep-all;
  overflow-wrap: break-word;
}

body.mj_menu_open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

input,
select,
textarea {
  font-size: 16px;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

::selection {
  background: var(--mj_color_yellow);
  color: var(--mj_color_black);
}
/*========================
Reset End
========================*/

/*========================
Common Start
========================*/
#wrapper.mj_wrapper,
#container.mj_page_container {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.mj_wrapper,
.mj_page_container {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
}

.mj_container {
  width: 100%;
  max-width: var(--mj_container);
  margin-inline: auto;
  /* padding-inline: var(--mj_gutter); */
}

.mj_container_wide {
  width: 100%;
  max-width: var(--mj_container_wide);
  margin-inline: auto;
  padding-inline: var(--mj_gutter);
}

.mj_container_mid {
  width: 100%;
  max-width: var(--mj_container_mid);
  margin-inline: auto;
  padding-inline: var(--mj_gutter);
}

.mj_container_small {
  width: 100%;
  max-width: var(--mj_container_small);
  margin-inline: auto;
  padding-inline: var(--mj_gutter);
}

.mj_section {
  width: 100%;
}

.mj_font_point {
  font-family: var(--mj_font_point);
}

.mj_pc_br {
  display: block;
}

.mj_mo_br,
.mj_br_mob {
  display: none;
}

.mj_mo_br_425 {
  display: none;
}
.mj_mo_br_360 {
  display: none;
}
.mj_pc_sp {
  display: inline;
}

.mj_only_pc {
  display: block;
}

.mj_only_mo {
  display: none;
}

.mj_sound_only,
.sound_only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}

.mj_skip a {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--mj_color_black);
  color: var(--mj_color_white);
}

.mj_skip a:focus {
  top: 16px;
}

.mj_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--mj_radius_full);
  transition: all var(--mj_transition);
}

.mj_btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 1480px) {
  :root {
    --mj_gutter: 32px;
  }
  .mj_container {
    padding-inline: var(--mj_gutter);
  }
}

@media (max-width: 1024px) {
  :root {
    --mj_gutter: 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --mj_gutter: 20px;
  }

  .mj_pc_br,
  .mj_only_pc {
    display: none;
  }

  .mj_mo_br,
  .mj_br_mob,
  .mj_only_mo {
    display: block;
  }
}

@media (max-width: 425px) {
  :root {
    --mj_gutter: 14px;
  }
  .mj_mo_br_425 {
    display: block;
  }
  .mj_pc_sp {
    display: none;
  }
}

@media (max-width: 360px) {
  :root {
    --mj_gutter: 12px;
  }
  .mj_mo_br_360 {
    display: block;
  }
}
/*========================
Common End
========================*/

/*========================
Animation Start
========================*/
.mj_reveal {
  opacity: 0;
  transition: all 0.8s ease;
  will-change: opacity, transform;
}

.mj_reveal_up {
  transform: translateY(44px);
}

.mj_reveal_down {
  transform: translateY(-44px);
}

.mj_reveal_left {
  transform: translateX(-44px);
}

.mj_reveal_right {
  transform: translateX(44px);
}

.mj_reveal_zoom {
  transform: scale(0.96);
}

.mj_reveal.mj_active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.mj_delay_01 {
  transition-delay: 0.1s;
}
.mj_delay_02 {
  transition-delay: 0.2s;
}
.mj_delay_03 {
  transition-delay: 0.3s;
}
.mj_delay_04 {
  transition-delay: 0.4s;
}
.mj_delay_05 {
  transition-delay: 0.5s;
}
.mj_delay_06 {
  transition-delay: 0.6s;
}

.mj_rolling {
  overflow: hidden;
}

.mj_rolling_track {
  display: flex;
  width: max-content;
  animation: mj_rolling_left 24s linear infinite;
}

.mj_rolling_reverse .mj_rolling_track {
  animation-name: mj_rolling_right;
}

@keyframes mj_rolling_left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes mj_rolling_right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mj_reveal,
  .mj_rolling_track {
    opacity: 1;
    transition: none;
    animation: none;
    transform: none;
  }
}
/*========================
Animation End
========================*/

/*========================
Header Start
========================*/
#hd.mj_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-width: 0;
  background: rgba(17, 17, 17, 0.3);
  border-bottom: 1px solid #ffffff;
  color: var(--mj_color_white);
  transition: transform 0.35s ease;
  will-change: transform;
}

.mj_header.mj_header_hide {
  transform: translateY(-100%);
  pointer-events: none;
}

.mj_header.mj_scrolled {
  box-shadow: none;
}

body.mj_menu_open .mj_header {
  transform: none;
  pointer-events: auto;
}

.mj_header_bar {
  display: flex;
  align-items: center;
  width: min(100% - 80px, 1640px);
  height: var(--mj_header_h);
  margin: 0 auto;
}

.mj_header_logo {
  display: block;
  flex: 1 0 0;
  min-width: 0;
}

.mj_header_logo img {
  width: 190px;
  max-width: 100%;
}

.mj_header_nav {
  flex: 0 0 auto;
  min-width: 0;
}

.mj_header_nav_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mj_header_nav_link {
  display: block;
  font-size: 20px;
  font-weight: var(--mj_fw_medium);
  line-height: var(--mj_lh_1);
  color: var(--mj_color_white);
  white-space: nowrap;
  transition: all var(--mj_transition);
}

.mj_header_nav_link:hover {
  color: var(--mj_color_yellow);
}

.mj_header_tel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1 0 0;
  font-family: var(--mj_font_point);
  font-size: 34px;
  font-weight: 400;
  line-height: var(--mj_lh_1);
  color: var(--mj_color_white);
  white-space: nowrap;
}

.mj_header_tel img {
  width: 30px;
  flex: 0 0 auto;
}

.mj_header_menu_btn {
  display: none;
}

.mj_mobile_panel,
.mj_mobile_dim {
  display: none;
}

/***** Header 1480 *****/
@media (max-width: 1480px) {
  .mj_header_bar {
    width: calc(100% - 64px);
  }

  .mj_header_logo img {
    width: 172px;
  }

  .mj_header_nav_list {
    gap: 34px;
  }

  .mj_header_nav_link {
    font-size: 18px;
  }

  .mj_header_tel {
    font-size: 28px;
  }

  .mj_header_tel img {
    width: 26px;
  }
}

/***** Header 1280 *****/
@media (max-width: 1280px) {
  .mj_header_bar {
    height: 78px;
  }

  .mj_header_logo img {
    width: 158px;
  }

  .mj_header_nav_list {
    gap: 24px;
  }

  .mj_header_tel {
    font-size: var(--mj_fs_24);
  }
}

/***** Header 1024 *****/
@media (max-width: 1024px) {
  .mj_header_bar {
    width: calc(100% - 40px);
    height: 68px;
  }

  .mj_header_nav,
  .mj_header_tel {
    display: none;
  }

  .mj_header_logo img {
    width: 134px;
  }

  .mj_header_menu_btn {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
  }

  .mj_header_menu_btn span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--mj_color_white);
    transition: all var(--mj_transition);
  }

  .mj_mobile_dim {
    position: fixed;
    inset: 0;
    z-index: 800;
    display: block;
    visibility: hidden;
    opacity: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.65);
    transition: all var(--mj_transition);
  }

  .mj_mobile_dim.mj_active {
    visibility: visible;
    opacity: 1;
  }

  .mj_mobile_panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 850;
    display: block;
    width: min(86vw, 340px);
    max-width: 100%;
    height: 100vh;
    padding: 24px 20px;
    background: #111111;
    color: var(--mj_color_white);
    transform: translateX(100%);
    transition: all var(--mj_transition);
  }

  .mj_mobile_panel.mj_active {
    transform: translateX(0);
  }

  .mj_mobile_panel_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mj_mobile_logo img {
    width: 126px;
  }

  .mj_mobile_close {
    position: relative;
    width: 34px;
    height: 34px;
  }

  .mj_mobile_close span {
    position: absolute;
    top: 50%;
    left: 7px;
    width: 20px;
    height: 2px;
    background: var(--mj_color_white);
    transition: all var(--mj_transition);
  }

  .mj_mobile_close span:first-child {
    transform: rotate(45deg);
  }

  .mj_mobile_close span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .mj_mobile_nav {
    margin-top: 36px;
  }

  .mj_mobile_nav_link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: var(--mj_fs_16);
    font-weight: var(--mj_fw_bold);
    color: var(--mj_color_white);
    transition: all var(--mj_transition);
  }

  .mj_mobile_tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    font-family: var(--mj_font_point);
    font-size: 21px;
    font-weight: 400;
    line-height: var(--mj_lh_1);
    color: var(--mj_color_white);
    white-space: nowrap;
  }

  .mj_mobile_tel img {
    width: 21px;
  }
}

/***** Header 425 *****/
@media (max-width: 425px) {
  .mj_header_bar {
    width: calc(100% - 28px);
    height: 58px;
  }

  .mj_header_logo img {
    width: 116px;
  }

  .mj_header_menu_btn {
    width: 32px;
    height: 32px;
  }

  .mj_header_menu_btn span {
    width: 22px;
  }

  .mj_mobile_panel {
    width: 88vw;
    padding: 22px 18px;
  }

  .mj_mobile_logo img {
    width: 116px;
  }
}

/***** Header 360 *****/
@media (max-width: 360px) {
  .mj_header_bar {
    width: calc(100% - 24px);
    height: 56px;
  }

  .mj_header_logo img,
  .mj_mobile_logo img {
    width: 108px;
  }
}
/* 관리자 단축 버튼 */
.mj_admin_shortcuts {
  position: fixed;
  left: 16px;
  bottom: 80px;
  z-index: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mj_admin_shortcut_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity var(--mj_transition);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.mj_admin_shortcut_btn:hover {
  opacity: 1;
}

/*========================
Header End
========================*/

/*========================
Footer Start
========================*/
.mj_footer {
  width: 100%;
  min-width: 0;
  background: var(--mj_color_dark);
  color: var(--mj_color_white);
  overflow: hidden;
}

.mj_footer_inner {
  width: min(100% - 80px, var(--mj_container));
  margin: 0 auto;
  padding: 60px 0;
}

.mj_footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 0;
}

.mj_footer_logo {
  flex: 0 0 auto;
  min-width: 0;
}

.mj_footer_logo img {
  width: 184px;
  max-width: 100%;
}

.mj_footer_tel {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
  font-family: var(--mj_font_point);
  font-size: 36px;
  font-weight: 400;
  line-height: var(--mj_lh_1);
  color: var(--mj_color_white);
  white-space: nowrap;
}

.mj_footer_tel img {
  width: 30px;
  flex: 0 0 auto;
}

.mj_footer_site_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--mj_radius_full);
  font-family: var(--mj_font_main);
  font-size: var(--mj_fs_14);
  font-weight: 400;
  color: var(--mj_color_white);
  white-space: nowrap;
  transition: all var(--mj_transition);
}

.mj_footer_site_btn img {
  width: 14px;
  flex: 0 0 auto;
}

.mj_footer_site_btn:active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.mj_footer_line {
  height: 1px;
  margin: 34px 0 34px;
  background: rgba(255, 255, 255, 0.35);
}

.mj_footer_info {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--mj_fs_15);
  line-height: 1.55;
}

.mj_footer_info p {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
}

.mj_footer_info span {
  display: inline-block;
}

.mj_footer_info_break {
  flex-basis: 100%;
  height: 4px;
}

.mj_footer_copy {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--mj_fs_15);
  line-height: 1.5;
}

.mj_top_btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--mj_color_red);
  transition: all var(--mj_transition);
}

.mj_top_btn span {
  position: absolute;
  top: 18px;
  left: 17px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--mj_color_white);
  border-left: 2px solid var(--mj_color_white);
  transform: rotate(45deg);
}

.mj_top_btn.mj_show {
  display: block;
}

/***** Footer 1480 *****/
@media (max-width: 1480px) {
  .mj_footer_inner {
    width: calc(100% - 64px);
  }

  .mj_footer_logo img {
    width: 166px;
  }

  .mj_footer_tel {
    font-size: 31px;
  }

  .mj_footer_tel img {
    width: 27px;
  }
}

/***** Footer 768 *****/
@media (max-width: 768px) {
  .mj_footer_inner {
    width: calc(100% - 40px);
    padding: 42px 0 44px;
  }

  .mj_footer_top {
    gap: 12px;
  }

  .mj_footer_logo img {
    width: 112px;
  }

  .mj_footer_tel {
    gap: 6px;
    font-size: 18px;
  }

  .mj_footer_tel img {
    width: 16px;
  }

  .mj_footer_site_btn {
    margin-top: 16px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .mj_footer_site_btn img {
    width: 13px;
  }

  .mj_footer_line {
    margin: 26px 0 22px;
  }

  .mj_footer_info {
    font-size: 13px;
    line-height: 1.65;
  }

  .mj_footer_info p {
    display: block;
  }

  .mj_footer_info span {
    display: block;
  }

  .mj_footer_info_break {
    height: 10px;
  }

  .mj_footer_copy {
    margin-top: 26px;
    font-size: 11px;
  }

  .mj_top_btn {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }

  .mj_top_btn span {
    top: 16px;
    left: 15px;
  }
}

/***** Footer 425 *****/
@media (max-width: 425px) {
  .mj_footer_inner {
    width: calc(100% - 28px);
    padding: 38px 0 40px;
  }

  .mj_footer_logo img {
    width: 106px;
  }

  .mj_footer_tel {
    gap: 5px;
    font-size: 16px;
  }

  .mj_footer_tel img {
    width: 15px;
  }

  .mj_footer_site_btn {
    padding: 7px 12px;
    font-size: 12px;
  }

  .mj_footer_site_btn img {
    width: 12px;
  }

  .mj_footer_info {
    font-size: 12px;
  }

  .mj_footer_copy {
    font-size: 11px;
  }
}

/***** Footer 360 *****/
@media (max-width: 360px) {
  .mj_footer_inner {
    width: calc(100% - 24px);
  }

  .mj_footer_logo img {
    width: 98px;
  }

  .mj_footer_tel {
    font-size: 15px;
  }

  .mj_footer_tel img {
    width: 14px;
  }
}
/*========================
Footer End
========================*/

/*========================
Quick Form Start
========================*/

/* ── Wrap ── */
.mj_quick_form_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  /* background: #222; */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── 모바일 토글 버튼 (desktop: 숨김) ── */
.mj_qf_toggle {
  display: none;
}

/* ── 폼 본문 ── */
.mj_qf_body {
  background-color: rgb(17 17 17 / 80%);
}

/* ── Inner ── */
.mj_quick_form_inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--mj_container);
  margin: 0 auto;
  padding: 10px 40px;
}

/* ── Brand: 로고 + 전화번호 가로 정렬 ── */
.mj_qf_brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.mj_qf_logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* 전화번호: 테두리 박스 스타일 */
.mj_qf_tel {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 38px;
  font-family: var(--mj_font_point);
  white-space: nowrap;
  border: 1.5px solid #fff;
  border-radius: 10px;
  padding: 6px 12px 2px;
  line-height: 1;
  transition: border-color var(--mj_transition);
}
.mj_qf_tel:hover {
  border-color: #fff;
}

/* ── 폼 ── */
.mj_qf_form {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

/* ── 인풋 필드: 흰색 배경 ── */
.mj_qf_fields {
  display: flex;
  gap: 8px;
  flex: 1;
}

.mj_qf_fields input {
  flex: 1;
  height: 40px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #222;
  font-size: var(--mj_fs_14);
  outline: none;
  transition: border-color var(--mj_transition);
}
.mj_qf_fields input::placeholder {
  color: #aaa;
}
.mj_qf_fields input:focus {
  border-color: var(--mj_color_red);
}

/* ── 동의 체크박스 ── */
.mj_qf_agree_label {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--mj_fs_12);
  cursor: pointer;
  white-space: nowrap;
}
.mj_qf_agree_label input[type='checkbox'] {
  width: 14px;
  height: 14px;
  accent-color: var(--mj_color_red);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── 제출 버튼: 레드 필 + hover 아웃라인 ── */
.mj_qf_submit {
  flex-shrink: 0;
  height: 48px;
  padding: 0px 32px;
  background: var(--mj_color_red);
  color: #fff;
  font-size: var(--mj_fs_20);
  font-weight: var(--mj_fw_bold);
  border: 2px solid #fff;
  border-radius: var(--mj_radius_full);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--mj_transition),
    color var(--mj_transition);
}
.mj_qf_submit:hover {
  background: transparent;
  color: var(--mj_color_red);
}

/* ── 태블릿 ≤ 1024px: 2행 세로 배열 ── */
@media (max-width: 1024px) {
  .mj_quick_form_inner {
    flex-wrap: wrap;
    padding: 10px 24px 12px;
    gap: 8px 16px;
  }
  /* 1행: 브랜드 전체 너비 */
  .mj_qf_brand {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .mj_qf_divider {
    display: none;
  }
  /* 2행: 폼 전체 너비 */
  .mj_qf_form {
    width: 100%;
    flex: none;
  }
  .mj_qf_fields {
    flex: 1;
  }
}

/* ── Mobile ≤ 768px: 토글 + 세로 나열 ── */
@media (max-width: 768px) {
  /* 토글 버튼: 빨간 탭 */
  .mj_qf_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 11px 20px;
    background: var(--mj_color_red);
    color: #fff;
    font-size: var(--mj_fs_14);
    font-weight: var(--mj_fw_bold);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
  }
  .mj_qf_toggle_arrow {
    font-size: 10px;
    line-height: 1;
    transition: transform 0.3s;
  }
  .mj_quick_form_wrap.mj_qf_open .mj_qf_toggle_arrow {
    transform: rotate(180deg);
  }

  /* 폼 본문: 기본 닫힘 */
  .mj_qf_body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .mj_quick_form_wrap.mj_qf_open .mj_qf_body {
    max-height: 400px;
  }

  /* 세로 나열 */
  .mj_quick_form_inner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 20px 18px;
    gap: 10px;
  }
  /* 브랜드: 로고 + 전화번호 가로 */
  .mj_qf_brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 12px;
    flex-wrap: nowrap;
  }
  .mj_qf_logo img {
    height: 26px;
  }
  .mj_qf_tel {
    font-size: var(--mj_fs_12);
    padding: 4px 10px;
  }
  .mj_qf_divider {
    display: none;
  }
  .mj_qf_form {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    flex: none;
  }
  .mj_qf_fields {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  /* 모바일 확대 방지: 16px */
  .mj_qf_fields input {
    font-size: 16px;
    width: 100%;
  }
  .mj_qf_agree_label {
    justify-content: flex-start;
  }
  .mj_qf_submit {
    width: 100%;
    font-size: 16px;
  }
}

/*========================
Quick Form End
========================*/

/*========================
TEMP Index Preview Start
========================*/
.mj_index {
  padding-top: var(--mj_header_h);
  background: #fffaf0;
}

/* Index Hero */
.mj_index_hero {
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 120px 0 100px;
  background:
    radial-gradient(
      circle at 82% 24%,
      rgba(255, 214, 50, 0.28),
      transparent 28%
    ),
    linear-gradient(135deg, #111111 0%, #2a0f0d 55%, #e9251c 100%);
  color: var(--mj_color_white);
}

.mj_index_hero_text {
  max-width: 720px;
}

.mj_index_hero_text > span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 9px 18px 7px;
  border-radius: var(--mj_radius_full);
  background: var(--mj_color_yellow);
  color: var(--mj_color_black);
  font-size: var(--mj_fs_20);
  line-height: var(--mj_lh_1);
}

.mj_index_hero_text h2 {
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.mj_index_hero_text p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--mj_fs_20);
  line-height: var(--mj_lh_lg);
}

/* Common Section Head */
.mj_index .mj_section_head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.mj_index .mj_section_head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 16px 6px;
  border-radius: var(--mj_radius_full);
  background: var(--mj_color_black);
  color: var(--mj_color_yellow);
  font-size: var(--mj_fs_18);
  line-height: var(--mj_lh_1);
}

.mj_index .mj_section_head h2 {
  color: var(--mj_color_text);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: var(--mj_fw_bold);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.mj_index .mj_section_head p {
  margin-top: 18px;
  color: var(--mj_color_sub);
  font-size: var(--mj_fs_18);
  line-height: var(--mj_lh_lg);
}

/* Landing Link */
.mj_index_links {
  padding: 100px 0;
  background: var(--mj_color_white);
}

.mj_index_link_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mj_index_link_card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 30px 28px;
  border: 2px solid var(--mj_color_black);
  border-radius: 28px;
  background: var(--mj_color_white);
  box-shadow: 8px 8px 0 var(--mj_color_black);
  transition: all var(--mj_transition);
}

.mj_index_link_card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--mj_color_black);
  background: var(--mj_color_yellow);
}

.mj_index_link_card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--mj_color_red);
  color: var(--mj_color_white);
  font-family: var(--mj_font_point);
  font-size: var(--mj_fs_20);
  line-height: var(--mj_lh_1);
}

.mj_index_link_card strong {
  display: block;
  color: var(--mj_color_text);
  font-size: var(--mj_fs_24);
  font-weight: var(--mj_fw_bold);
  line-height: var(--mj_lh_sm);
  letter-spacing: -0.04em;
}

.mj_index_link_card em {
  display: block;
  margin-top: auto;
  color: var(--mj_color_sub);
  font-size: var(--mj_fs_14);
  font-style: normal;
  line-height: var(--mj_lh_1);
}

/* Common Preview */
.mj_index_common_preview {
  padding: 90px 0 70px;
  background: #111111;
}

.mj_index_common_preview .mj_section_head {
  margin-bottom: 0;
}

.mj_index_common_preview .mj_section_head > span {
  background: var(--mj_color_yellow);
  color: var(--mj_color_black);
}

.mj_index_common_preview .mj_section_head h2 {
  color: var(--mj_color_white);
}

.mj_index_common_preview .mj_section_head p {
  color: rgba(255, 255, 255, 0.7);
}

/* Inc Section Temporary Placeholder */
.mj_index .mj_sales_flow,
.mj_index .mj_market_sales,
.mj_index .mj_profit_case,
.mj_index .mj_onepack,
.mj_index .mj_success_story,
.mj_index .mj_brand {
  min-height: 360px;
  padding: 200px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mj_index .mj_sales_flow {
  background: #fff7dd;
}

.mj_index .mj_market_sales {
  background: #ffffff;
}

.mj_index .mj_profit_case {
  background: #f8f8f8;
}

.mj_index .mj_onepack {
  /* background: #fff1ee; */
}

.mj_index .mj_success_story {
  background: #111111;
  color: var(--mj_color_white);
}

.mj_index .mj_success_story .mj_section_head h2,
.mj_index .mj_success_story .mj_section_head p {
  color: var(--mj_color_white);
}

.mj_index .mj_brand {
  background: #000;
}

/***** TEMP Index Preview 1024 *****/
@media (max-width: 1024px) {
  .mj_index {
    padding-top: 68px;
  }

  .mj_index_hero {
    min-height: 460px;
    padding: 96px 0 82px;
  }

  .mj_index_link_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/***** TEMP Index Preview 768 *****/
@media (max-width: 768px) {
  .mj_index_hero {
    min-height: auto;
    padding: 76px 0 70px;
  }

  .mj_index_hero_text > span {
    margin-bottom: 16px;
    font-size: var(--mj_fs_16);
  }

  .mj_index_hero_text h2 {
    font-size: 46px;
  }

  .mj_index_hero_text p {
    margin-top: 20px;
    font-size: var(--mj_fs_16);
  }

  .mj_index_links {
    padding: 70px 0;
  }

  .mj_index .mj_section_head {
    margin-bottom: 34px;
  }

  .mj_index .mj_section_head > span {
    font-size: var(--mj_fs_15);
  }

  .mj_index .mj_section_head h2 {
    font-size: 32px;
  }

  .mj_index .mj_section_head p {
    margin-top: 14px;
    font-size: var(--mj_fs_15);
  }

  .mj_index_link_grid {
    gap: 16px;
  }

  .mj_index_link_card {
    min-height: 170px;
    padding: 24px 20px;
    border-radius: 22px;
    box-shadow: 6px 6px 0 var(--mj_color_black);
  }

  .mj_index_link_card:hover {
    transform: none;
    box-shadow: 6px 6px 0 var(--mj_color_black);
  }

  .mj_index_link_card span {
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
    font-size: var(--mj_fs_16);
  }

  .mj_index_link_card strong {
    font-size: var(--mj_fs_20);
  }

  .mj_index_common_preview {
    padding: 64px 0 54px;
  }

  .mj_index .mj_sales_flow,
  .mj_index .mj_market_sales,
  .mj_index .mj_profit_case,
  .mj_index .mj_onepack,
  .mj_index .mj_success_story,
  .mj_index .mj_brand {
    min-height: 280px;
    padding: 70px 0;
  }
}

/***** TEMP Index Preview 425 *****/
@media (max-width: 425px) {
  .mj_index {
    padding-top: 58px;
  }

  .mj_index_hero_text h2 {
    font-size: 38px;
  }

  .mj_index_link_grid {
    grid-template-columns: 1fr;
  }

  .mj_index_link_card {
    min-height: 150px;
  }
}
/*========================
TEMP Index Preview End
========================*/

/*========================
Index Body (Standalone - no header/footer)
========================*/
body.mj_index_body {
  overflow: hidden;
  height: 100dvh;
  margin: 0;
  padding: 0;
}

/*========================
Index Body End
========================*/

/*========================
Index Cards (New) Start
========================*/

/* ══ 페이지 래퍼 ══ */
.mj_index {
  background: #111;
  padding-top: 0;
}

/* ══ 섹션 컨테이너 ══ */
.mj_index_cards_section {
  position: relative;
  width: 100%;
  height: 100dvh;
}

/* ══ 2×2 그리드 ══ */
.mj_index_cards_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* ══ 카드 기본 ══ */
.mj_index_card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  background: #111;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.35s ease;
}
.mj_index_card:hover {
  background: #1c1c1c;
}

/* ══ 텍스트 영역 ══ */
.mj_index_card_text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6% 6% 0;
  flex-shrink: 0;
}

/* 아웃라인 넘버 */
.mj_index_card_num {
  display: block;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.75);
  text-stroke: 1.5px rgba(255, 255, 255, 0.75);
  margin-bottom: 5%;
}

/* 제목 */
.mj_index_card_title {
  margin: 0 0 5%;
  font-size: clamp(18px, 2.8vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  word-break: keep-all;
}

/* 설명 — 기본 숨김, hover 슬라이드업 */
.mj_index_card_desc {
  margin: 0;
  font-size: clamp(11px, 1vw, 14px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  word-break: keep-all;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease 0.05s,
    transform 0.3s ease 0.05s;
}
.mj_index_card:hover .mj_index_card_desc {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

/* ══ 음식 이미지 — 반절만 보임 ══ */
.mj_index_card_food {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0 4%;
}
.mj_index_card_food img {
  display: block;
  width: clamp(120px, 52%, 520px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  /* 하단 50% 잘림 */
  transform: translateY(50%);
}

/* hover: 360° 회전 (translateY 유지) */
.mj_index_card:hover .mj_index_card_food img {
  animation: mj_index_spin 0.75s linear forwards;
}
@keyframes mj_index_spin {
  from {
    transform: translateY(50%) rotate(0deg);
  }
  to {
    transform: translateY(50%) rotate(360deg);
  }
}

/* ══ 중앙 로고 ══ */
.mj_index_center_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  width: clamp(80px, 10vw, 160px);
}
.mj_index_center_logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ══ body standalone 오버라이드 ══ */
body.mj_index_body .mj_index {
  padding-top: 0;
}
body.mj_index_body .mj_index_cards_section {
  min-height: 100dvh;
}

/* ══ 반응형 ══ */

/* 태블릿 / 소형 데스크탑 */
@media (max-width: 1024px) {
  .mj_index_card_num {
    font-size: clamp(28px, 4vw, 48px);
  }
  .mj_index_card_title {
    font-size: clamp(16px, 2.8vw, 36px);
  }
}

/* ── 모바일 768px 이하: 1열 4행 가로 카드 ── */
@media (max-width: 768px) {
  /* 섹션: 가로 삐져나옴 클리핑 */
  .mj_index_cards_section {
    overflow: hidden;
  }

  /* 그리드: 1열 4행 */
  .mj_index_cards_grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    border-left: none;
    border-top: none;
  }

  /* 카드: 가로 레이아웃 */
  .mj_index_card {
    flex-direction: row;
    align-items: center;
    overflow: visible;
    border-right: none;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
  }
  .mj_index_card:first-child {
    border-top: none;
  }

  /* 텍스트: 왼쪽 정렬 */
  .mj_index_card_text {
    align-items: flex-start;
    text-align: left;
    padding: 0 0 0 8vw;
    flex: 1;
    min-width: 0;
  }

  .mj_index_card_num {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 6px;
  }

  .mj_index_card_title {
    font-size: clamp(18px, 5.5vw, 30px);
    margin-bottom: 0;
    text-align: left;
  }

  /* 설명 숨김 (hover 불필요) */
  .mj_index_card_desc {
    display: none;
  }

  /* 이미지: 오른쪽, 삐져나옴 */
  .mj_index_card_food {
    flex: 0 0 auto;
    width: auto;
    height: 100%;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 0;
  }
  .mj_index_card_food img {
    width: clamp(130px, 34vw, 200px);
    transform: translateX(28%);
  }

  /* hover: translateX 유지하며 회전 */
  .mj_index_card:hover .mj_index_card_food img {
    animation: mj_index_spin_m 0.75s linear forwards;
  }
  @keyframes mj_index_spin_m {
    from {
      transform: translateX(28%) rotate(0deg);
    }
    to {
      transform: translateX(28%) rotate(360deg);
    }
  }

  /* 중앙 로고 숨김 */
  .mj_index_center_logo {
    display: none;
  }
}

/* 소형 모바일 425px */
@media (max-width: 425px) {
  .mj_index_card_text {
    padding-left: 7vw;
  }
  .mj_index_card_num {
    font-size: clamp(24px, 9vw, 38px);
    -webkit-text-stroke-width: 1.2px;
  }
  .mj_index_card_title {
    font-size: clamp(16px, 6vw, 26px);
  }
  .mj_index_card_food img {
    width: clamp(110px, 36vw, 170px);
    transform: translateX(30%);
  }
}

/* 최소 360px */
@media (max-width: 360px) {
  .mj_index_card_text {
    padding-left: 6vw;
  }
  .mj_index_card_num {
    font-size: 9vw;
    -webkit-text-stroke-width: 1px;
  }
  .mj_index_card_title {
    font-size: 6vw;
  }
  .mj_index_card_food img {
    width: 34vw;
    transform: translateX(32%);
  }
}

/*========================
Index Cards (New) End
========================*/

/*========================
Rolling Banner Start
========================*/
.mj_rolling_banner {
  width: 100%;
  overflow: hidden;
  background: #1e1e1e;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mj_rolling_banner_row {
  --mj_rolling_gap: 52px;
  --mj_rolling_duration: 26s;
  --mj_rolling_bg: #000000;
  --mj_rolling_line: rgba(255, 255, 255, 0.5);
  --mj_rolling_fill: #ffffff;
  --mj_rolling_stroke: #ffffff;
  --mj_rolling_outline_width: 0.7px;
  --mj_rolling_stroke_fill_width: 0.8px;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0 14px;
  border-top: 1px solid var(--mj_rolling_line);
  border-bottom: 1px solid var(--mj_rolling_line);
  background: var(--mj_rolling_bg);
  white-space: nowrap;
}

.mj_rolling_banner_row + .mj_rolling_banner_row {
}

.mj_rolling_banner_track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  animation: mj_rolling_banner_left var(--mj_rolling_duration) linear infinite;
  will-change: transform;
}

.mj_rolling_banner_row.mj_rolling_reverse .mj_rolling_banner_track {
  animation-name: mj_rolling_banner_right;
}

.mj_rolling_banner_group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: var(--mj_rolling_gap);
  padding-right: var(--mj_rolling_gap);
}

.mj_rolling_banner_item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: max-content;
  font-family: var(--mj_font_point);
  font-size: 24px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: none;
}

.mj_rolling_banner_item span {
  display: block;
  white-space: nowrap;
}

.mj_rolling_banner_item.mj_is_fill {
  color: var(--mj_rolling_fill);
  -webkit-text-stroke: 0 transparent;
}

.mj_rolling_banner_item.mj_is_outline {
  color: var(--mj_rolling_bg);
  -webkit-text-stroke: var(--mj_rolling_outline_width) var(--mj_rolling_stroke);
}

.mj_rolling_banner_item.mj_is_stroke_fill {
  color: var(--mj_rolling_bg);
  -webkit-text-stroke: var(--mj_rolling_stroke_fill_width)
    var(--mj_rolling_fill);
}

@supports not (-webkit-text-stroke: 1px #000000) {
  .mj_rolling_banner_item.mj_is_outline {
    color: var(--mj_rolling_stroke);
  }

  .mj_rolling_banner_item.mj_is_stroke_fill {
    color: var(--mj_rolling_fill);
  }
}

.mj_rolling_banner_logo,
.mj_rolling_banner_image {
  /* min-height: 32px; */
}

.mj_rolling_banner_logo img,
.mj_rolling_banner_image img {
  display: block;
  width: auto;
  height: 32px;
  max-width: none;
  object-fit: contain;
}

.mj_rolling_banner_row_01 {
  --mj_rolling_bg: #9b0000;
  --mj_rolling_line: #000000;
  --mj_rolling_fill: #000000;
  --mj_rolling_stroke: #000000;
  --mj_rolling_outline_width: 0.7px;
  --mj_rolling_stroke_fill_width: 0.8px;
}

.mj_rolling_banner_row_02 {
  --mj_rolling_bg: #ed1c24;
  --mj_rolling_line: rgba(255, 255, 255, 0.75);
  --mj_rolling_fill: #ffffff;
  --mj_rolling_stroke: #ffffff;
  --mj_rolling_outline_width: 0.7px;
  --mj_rolling_stroke_fill_width: 0.8px;
}

.mj_rolling_banner_row_03 {
  --mj_rolling_bg: #000000;
  --mj_rolling_line: #9b0000;
  --mj_rolling_fill: #ed1c24;
  --mj_rolling_stroke: #ed1c24;
  --mj_rolling_outline_width: 0.7px;
  --mj_rolling_stroke_fill_width: 0.8px;
}

.mj_rolling_banner_row_04 {
  --mj_rolling_bg: #9b0000;
  --mj_rolling_line: rgba(255, 255, 255, 0.75);
  --mj_rolling_fill: #ffffff;
  --mj_rolling_stroke: #ffffff;
}

.mj_rolling_banner_row_04 .mj_rolling_banner_logo img,
.mj_rolling_banner_row_04 .mj_rolling_banner_image img {
  height: 32px;
}

.mj_rolling_banner_row_05 {
  --mj_rolling_bg: #000000;
  --mj_rolling_line: rgba(255, 255, 255, 0.75);
  --mj_rolling_fill: #ffffff;
  --mj_rolling_stroke: #ffffff;
  --mj_rolling_outline_width: 0.7px;
  --mj_rolling_stroke_fill_width: 0.8px;
}

/* Animation */
@keyframes mj_rolling_banner_left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes mj_rolling_banner_right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/***** Rolling Banner 1024 *****/
@media (max-width: 1024px) {
  .mj_rolling_banner_row {
    --mj_rolling_gap: 42px;
    --mj_rolling_duration: 23s;
  }

  .mj_rolling_banner_item {
    font-size: 21px;
  }

  .mj_rolling_banner_logo img,
  .mj_rolling_banner_image img,
  .mj_rolling_banner_row_04 .mj_rolling_banner_logo img,
  .mj_rolling_banner_row_04 .mj_rolling_banner_image img {
    height: 30px;
  }
}

/***** Rolling Banner 768 *****/
@media (max-width: 768px) {
  .mj_rolling_banner_row {
    --mj_rolling_gap: 34px;
    --mj_rolling_duration: 20s;
    --mj_rolling_outline_width: 0.75px;
    --mj_rolling_stroke_fill_width: 0.65px;
    padding: 14px 0;
  }

  .mj_rolling_banner_item {
    font-size: 18px;
  }

  .mj_rolling_banner_logo img,
  .mj_rolling_banner_image img,
  .mj_rolling_banner_row_04 .mj_rolling_banner_logo img,
  .mj_rolling_banner_row_04 .mj_rolling_banner_image img {
    height: 24px;
    max-height: 40px;
  }
  /* 섹션별 오버라이드 포함 전체 캡 */
  .mj_rolling_banner_logo img,
  .mj_rolling_banner_image img {
    max-height: 40px;
  }
}

/***** Rolling Banner 425 *****/
@media (max-width: 425px) {
  .mj_rolling_banner_row {
    --mj_rolling_gap: 28px;
    --mj_rolling_outline_width: 0.65px;
    --mj_rolling_stroke_fill_width: 0.55px;
    padding: 12px 0;
  }

  .mj_rolling_banner_item {
    font-size: 16px;
  }

  .mj_rolling_banner_logo img,
  .mj_rolling_banner_image img,
  .mj_rolling_banner_row_04 .mj_rolling_banner_logo img,
  .mj_rolling_banner_row_04 .mj_rolling_banner_image img {
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mj_rolling_banner_track {
    animation: none;
  }
}
/*========================
Rolling Banner End
========================*/

/*========================
Success Story Start
========================*/
.mj_success_story {
  position: relative;
  overflow: hidden;
  padding: 118px 0 108px;
  background: #080808;
  color: var(--mj_color_white);
}

.mj_index .mj_success_story {
  min-height: auto;
  padding: 118px 0 108px;
  border-top: 0;
  background: #080808;
}

.mj_success_story_bg,
.mj_success_story_text_img {
  position: absolute;
  margin: 0;
  pointer-events: none;
  user-select: none;
}

.mj_success_story_bg {
  inset: 0;
  z-index: 0;
}

.mj_success_story_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mj_success_story_text_img {
  left: 0;
  bottom: 0;
  z-index: 1;
  width: min(100vw, 1576px);
  opacity: 0.48;
}

.mj_success_story_text_img img {
  width: 100%;
  max-width: none;
}

.mj_success_story > .mj_container_wide {
  position: relative;
  z-index: 3;
}

.mj_success_story_head {
  position: relative;
  z-index: 4;
  margin-bottom: 100px;
  text-align: center;
}

.mj_success_story_title {
  display: inline-block;
  overflow: visible;
  color: var(--mj_color_white);
  font-size: clamp(44px, 4.6vw, 72px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.mj_success_story_title_mask {
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  padding: 22px 28px 24px;
  margin: -22px -28px -24px;
  vertical-align: bottom;
  white-space: nowrap;
}

.mj_success_story_title_text {
  display: inline-block;
  white-space: nowrap;
}

.mj_success_story_head.mj_active .mj_success_story_title_mask {
  animation: mj_success_story_write 1.25s steps(28) 0.15s forwards;
}

.mj_success_story_title em {
  --ss_g1: 14px;
  --ss_g2: 34px;
  color: #000000;
  font-style: normal;
  -webkit-text-stroke: 1px var(--mj_color_yellow);
  text-shadow: 0 0 0 rgba(255, 214, 50, 0);
}

.mj_success_story_head.mj_active .mj_success_story_title em {
  animation: mj_success_story_glow 1.65s ease-in-out 1.15s infinite;
}

.mj_success_story_head p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--mj_fs_24);
  font-weight: var(--mj_fw_medium);
  line-height: var(--mj_lh_md);
  opacity: 0;
  transform: translateY(18px);
}

.mj_success_story_head.mj_active p {
  animation: mj_success_story_sub_up 0.58s ease 1.15s forwards;
}

/* Slider */
.mj_success_story_slider {
  position: relative;
  z-index: 4;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  --mj_success_arrow_top: 50%;
}

.mj_success_story_viewport {
  overflow: hidden;
  width: 100%;
  padding: 36px 0 42px;
}

.mj_success_story_track {
  display: flex;
  align-items: flex-start;
  gap: 92px;
  width: max-content;
  will-change: transform;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.mj_success_story_slide {
  flex: 0 0 clamp(520px, 42vw, 760px);
  opacity: 0.36;
  transform: scale(0.84);
  transition:
    opacity 0.48s ease,
    transform 0.48s ease;
}

.mj_success_story_slide.mj_active {
  opacity: 1;
  transform: scale(1);
}

.mj_success_story_card {
  position: relative;
  width: 100%;
  text-align: center;
}

.mj_success_story_video {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(233, 37, 28, 0.65);
  border-radius: 20px;
  background: #111111;
  box-shadow: none;
  transition:
    box-shadow 0.48s ease,
    border-color 0.48s ease,
    transform 0.48s ease;
}

.mj_success_story_slide.mj_active .mj_success_story_video {
  border-color: rgba(233, 37, 28, 1);
  box-shadow:
    0 0 0 1px rgba(233, 37, 28, 0.42),
    0 0 34px rgba(233, 37, 28, 0.82);
}

.mj_success_story_video img,
.mj_success_story_video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.mj_success_story_video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.mj_success_story_video iframe + .mj_success_story_play,
.mj_success_story_video iframe + .mj_success_story_play + em {
  display: none;
}

.mj_success_story_play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  transition: all var(--mj_transition);
}

.mj_success_story_play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid var(--mj_color_white);
  transform: translate(-50%, -50%);
}

.mj_success_story_video:hover .mj_success_story_play {
  background: var(--mj_color_red);
  border-color: var(--mj_color_red);
}

.mj_success_story_video em {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--mj_color_white);
  font-size: var(--mj_fs_13);
  font-style: normal;
  line-height: var(--mj_lh_1);
}

.mj_success_story_card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--mj_fs_20);
  font-weight: var(--mj_fw_medium);
  line-height: var(--mj_lh_md);
}

.mj_success_story_arrow {
  position: absolute;
  top: var(--mj_success_arrow_top);
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
  transition: all var(--mj_transition);
}

.mj_success_story_arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.mj_success_story_arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mj_success_story_prev {
  left: calc(50% - 480px);
}

.mj_success_story_next {
  right: calc(50% - 480px);
}

.mj_success_story_more_wrap {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.mj_success_story_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 15px 44px;
  border-radius: var(--mj_radius_full);
  background: var(--mj_color_red);
  color: var(--mj_color_white);
  font-size: var(--mj_fs_24);
  font-weight: var(--mj_fw_bold);
  line-height: 1;
  transition: all var(--mj_transition);
}

.mj_success_story_more:hover {
  transform: translateY(-2px);
}

@keyframes mj_success_story_write {
  from {
    max-width: 0;
  }

  to {
    max-width: 1200px;
  }
}

@keyframes mj_success_story_glow {
  0%,
  100% {
    text-shadow:
      0 0 0 rgba(255, 214, 50, 0),
      0 0 0 rgba(255, 214, 50, 0);
  }

  50% {
    text-shadow:
      0 0 var(--ss_g1) rgba(255, 214, 50, 1),
      0 0 var(--ss_g2) rgba(255, 214, 50, 0.85);
  }
}

@keyframes mj_success_story_sub_up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/***** Success Story 1480 *****/
@media (max-width: 1480px) {
  .mj_success_story {
    padding: 104px 0 96px;
  }

  .mj_index .mj_success_story {
    padding: 104px 0 96px;
  }

  .mj_success_story_track {
    gap: 70px;
  }

  .mj_success_story_slide {
    flex-basis: clamp(500px, 46vw, 700px);
  }

  .mj_success_story_prev {
    left: 26px;
  }

  .mj_success_story_next {
    right: 26px;
  }
}

/***** Success Story 1280 *****/
@media (max-width: 1280px) {
  .mj_success_story {
    padding: 96px 0 90px;
  }

  .mj_index .mj_success_story {
    padding: 96px 0 90px;
  }

  .mj_success_story_head {
    margin-bottom: 86px;
  }

  .mj_success_story_title {
    font-size: 54px;
  }

  .mj_success_story_title em {
    --ss_g1: 11px;
    --ss_g2: 26px;
  }

  .mj_success_story_track {
    gap: 54px;
  }

  .mj_success_story_slide {
    flex-basis: clamp(480px, 48vw, 640px);
  }
}

/***** Success Story 1024 *****/
@media (max-width: 1024px) {
  .mj_success_story {
    padding: 86px 0 84px;
  }

  .mj_index .mj_success_story {
    padding: 86px 0 84px;
  }

  .mj_success_story_head {
    margin-bottom: 76px;
  }

  .mj_success_story_title {
    font-size: 48px;
  }

  .mj_success_story_title em {
    --ss_g1: 9px;
    --ss_g2: 22px;
  }

  .mj_success_story_head p {
    font-size: var(--mj_fs_18);
  }

  .mj_success_story_track {
    gap: 42px;
  }

  .mj_success_story_slide {
    flex-basis: 72vw;
  }

  .mj_success_story_arrow {
    width: 50px;
    height: 50px;
  }
}

/***** Success Story 768 *****/
@media (max-width: 768px) {
  .mj_success_story {
    padding: 72px 0 70px;
  }

  .mj_index .mj_success_story {
    padding: 72px 0 70px;
  }

  .mj_success_story_head {
    margin-bottom: 54px;
  }

  .mj_success_story_title {
    width: 100%;
    font-size: 36px;
    white-space: normal;
  }

  .mj_success_story_title em {
    --ss_g1: 7px;
    --ss_g2: 16px;
  }

  .mj_success_story_title_mask {
    max-width: none;
    padding: 16px 14px 18px;
    margin: -16px -14px -18px;
    white-space: normal;
  }

  .mj_success_story_title_text {
    white-space: normal;
  }

  .mj_success_story_head.mj_active .mj_success_story_title_mask {
    animation: none;
  }

  .mj_success_story_head p {
    margin-top: 12px;
    font-size: var(--mj_fs_16);
  }

  .mj_success_story_viewport {
    padding: 24px 0 32px;
  }

  .mj_success_story_track {
    gap: 22px;
  }

  .mj_success_story_slide {
    flex-basis: 78vw;
    transform: scale(1);
  }

  .mj_success_story_video {
    border-radius: 14px;
  }

  .mj_success_story_card p {
    margin-top: 16px;
    font-size: var(--mj_fs_16);
  }

  /* 모바일: scale 제거 → opacity만으로 active 구분, 좌우 24px peek */
  .mj_success_story_slide {
    flex-basis: 83vw;
    transform: scale(1);
  }

  .mj_success_story_arrow {
    display: none;
  }

  .mj_success_story_play {
    width: 54px;
    height: 54px;
  }

  .mj_success_story_play::before {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 13px;
  }

  .mj_success_story_more_wrap {
    margin-top: 32px;
  }

  .mj_success_story_more {
    min-height: 52px;
    padding: 13px 32px;
    font-size: var(--mj_fs_16);
  }

  .mj_success_story_text_img {
    width: 132vw;
  }
}

/***** Success Story 425 *****/
@media (max-width: 425px) {
  .mj_success_story {
    padding: 64px 0 62px;
  }

  .mj_index .mj_success_story {
    padding: 64px 0 62px;
  }

  .mj_success_story_head {
    margin-bottom: 44px;
  }

  .mj_success_story_title {
    font-size: 31px;
  }

  .mj_success_story_title em {
    --ss_g1: 6px;
    --ss_g2: 13px;
  }

  .mj_success_story_track {
    gap: 12px;
  }

  .mj_success_story_slide {
    flex-basis: 86vw;
  }

  .mj_success_story_card p {
    font-size: var(--mj_fs_16);
  }

  .mj_success_story_more {
    min-height: 50px;
    font-size: var(--mj_fs_16);
  }
}
/***** Success Story 360 *****/
@media (max-width: 360px) {
  .mj_success_story {
    padding: 56px 0 54px;
  }

  .mj_index .mj_success_story {
    padding: 56px 0 54px;
  }

  .mj_success_story_head {
    margin-bottom: 36px;
  }

  .mj_success_story_title {
    font-size: 27px;
  }

  .mj_success_story_title em {
    --ss_g1: 5px;
    --ss_g2: 11px;
  }

  .mj_success_story_slide {
    flex-basis: 80vw;
  }

  .mj_success_story_more {
    min-height: 48px;
    padding: 12px 24px;
    font-size: var(--mj_fs_16);
  }
}
/* 성공스토리 순차 등장 딜레이 */
.mj_ss_delay_slider {
  transition-delay: 0.8s;
}
.mj_ss_delay_more {
  transition-delay: 1.2s;
}
/*========================
Success Story End
========================*/

/*========================
Onepack Start
========================*/
.mj_onepack {
  position: relative;
  overflow: hidden;
  padding: 100px 0 100px;
  background: #080808;
  color: var(--mj_color_white);
}

.mj_onepack_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}
.mj_onepack_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mj_onepack > .mj_container {
  position: relative;
  z-index: 2;
}

/* Head — 중앙 정렬 */
.mj_onepack_head {
  text-align: center;
  padding-bottom: 40px;
}

.mj_onepack_title {
  margin: 0 0 20px;
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.mj_onepack_eyebrow_inline {
  font-weight: var(--mj_fw_regular);
  color: var(--mj_color_white);
}
.mj_onepack_title_inline {
  color: var(--mj_color_yellow);
}

.mj_onepack_desc {
  font-size: 28px;
  font-weight: var(--mj_fw_regular);
  line-height: var(--mj_lh_md);
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.mj_onepack_desc strong {
  font-weight: var(--mj_fw_bold);
  color: var(--mj_color_white);
}
.mj_onepack_desc.mj_active {
  opacity: 1;
  transform: translateY(0);
}

/* Char animation */
.mj_char {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
}
.mj_char_sp {
  display: inline-block;
}
[data-mj-onepack-head].mj_active .mj_char {
  animation: mj_onepack_char_up 0.36s ease forwards;
  animation-delay: calc(var(--mj_ci) * 0.08s + 0.1s);
}
@keyframes mj_onepack_char_up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 메뉴 타이틀 */
.mj_onepack_menu_title {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  color: var(--mj_color_white);
  margin: 0 40px 24px;
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Stage */
.mj_onepack_stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Panel — 초기 hidden, JS로 순차 등장 */
.mj_onepack_panel {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.mj_onepack_panel.mj_shown {
  opacity: 1;
  transform: translateY(0);
}

/* Steps grid */
/* PC: track은 투명 래퍼 — 슬라이드가 steps의 flex item으로 직접 참여 */
.mj_onepack_steps_track {
  display: contents;
}

.mj_onepack_steps_wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.mj_onepack_steps {
  display: flex;
  gap: 32px;
}

/* Slide */
.mj_onepack_slide {
  flex: 1 1 0;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  border: 2px solid #000;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.mj_onepack_slide.mj_shown {
  opacity: 1;
  transform: translateY(0);
}
.mj_onepack_slide.mj_active {
  border-color: var(--mj_color_red);
  box-shadow: 0 0 10px var(--mj_color_red);
}

.mj_onepack_slide_img {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.mj_onepack_slide_img img,
.mj_onepack_slide_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.mj_onepack_slide {
  cursor: pointer;
}
.mj_onepack_slide:hover .mj_onepack_slide_img img {
  transform: scale(1.05);
}

.mj_onepack_slide_label {
  margin: 0;
  padding: 16px 20px;
  background: #000;
  border-top: 2px solid #222;
  color: var(--mj_color_white);
  font-size: var(--mj_fs_20);
  font-weight: var(--mj_fw_bold);
  line-height: var(--mj_lh_1);
  text-align: center;
  letter-spacing: -0.02em;
}

/* Badge */
.mj_onepack_badge {
  position: absolute;
  left: -20px;
  top: -60px;
  transform: translateY(-100%);
  z-index: 5;
  width: 140px;
  margin: 0;
  opacity: 0;
  transform-origin: center;
}
.mj_onepack_badge img {
  width: 100%;
  display: block;
}

[data-mj-onepack-badge].mj_active {
  animation:
    mj_onepack_badge_in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0s forwards,
    mj_onepack_badge_pulse 2.8s ease-in-out 0.65s infinite;
}
@keyframes mj_onepack_badge_in {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-15deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.22) rotate(7deg);
  }
  80% {
    transform: scale(0.91) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@keyframes mj_onepack_badge_pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.08) rotate(-4deg);
  }
  60% {
    transform: scale(0.96) rotate(3deg);
  }
}

/* Product */
.mj_onepack_product {
  position: absolute;
  right: -40px;
  bottom: -130px;
  width: 530px;
  margin: 0;
  pointer-events: none;
  z-index: -1;
}
.mj_onepack_product img {
  width: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 1480px) {
  .mj_onepack_title {
    font-size: 48px;
  }
  .mj_onepack_desc {
    font-size: 24px;
  }
  .mj_onepack_product {
    /* width: 420px; */
  }
}

@media (max-width: 1280px) {
  .mj_onepack_product {
  }
  .mj_onepack_badge {
    width: 110px;
    left: 10px;
    top: -36px;
  }
  .mj_onepack_steps {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .mj_onepack {
    padding: 90px 0 80px;
  }
  .mj_onepack_title {
    font-size: 44px;
  }
  .mj_onepack_desc {
    font-size: 22px;
  }
  .mj_onepack_product {
    width: 420px;
  }
  .mj_onepack_badge {
    width: 80px;
  }
  .mj_onepack_menu_title {
    font-size: 32px;
  }
  .mj_onepack_steps {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .mj_onepack {
    padding: 72px 0 80px;
  }
  .mj_onepack_title {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .mj_onepack_desc {
    font-size: 18px;
  }
  .mj_onepack_menu_title {
    font-size: 28px;
    margin: 0 20px 16px;
  }
  .mj_onepack_stage {
    gap: 60px;
  }
  .mj_onepack_steps {
    gap: 10px;
  }
  .mj_onepack_steps_wrap {
    padding: 0 20px;
  }
  .mj_onepack_slide {
    border-radius: 10px;
  }
  .mj_onepack_slide_label {
    font-size: 15px;
    padding: 10px;
  }
  .mj_onepack_badge {
    width: 72px;
    left: -8px;
    top: -36px;
    transform: translateY(0);
  }
}
@media (max-width: 425px) {
  .mj_onepack_menu_title {
    font-size: 22px;
    margin: 0 12px 12px;
  }
  .mj_onepack_stage {
    gap: 48px;
  }
  .mj_onepack_steps {
    gap: 8px;
  }
  .mj_onepack_steps_wrap {
    padding: 0 12px;
  }
  .mj_onepack_slide {
    border-radius: 8px;
  }
  .mj_onepack_slide_label {
    font-size: 13px;
    padding: 8px 6px;
  }
  .mj_onepack_badge {
    width: 40px;
    left: 7px;
    top: -27px;
    transform: translateY(0);
  }
}
@media (max-width: 360px) {
  .mj_onepack_title {
    font-size: 30px;
  }
  .mj_onepack_desc {
    font-size: 16px;
  }
  .mj_onepack_menu_title {
    font-size: 24px;
  }
  .mj_onepack_slide_label {
    font-size: 14px;
  }
}

/* 스크롤 등장 초기 상태 */
.mj_onepack_title,
.mj_onepack_desc,
.mj_onepack_stage,
.mj_onepack_badge,
.mj_onepack_product {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.mj_onepack_title.mj_shown,
.mj_onepack_desc.mj_shown,
.mj_onepack_stage.mj_shown,
.mj_onepack_badge.mj_shown,
.mj_onepack_product.mj_shown {
  opacity: 1;
  transform: translateY(0);
}
/* 배지는 자체 등장 애니메이션 있으므로 별도 처리 */
.mj_onepack_badge {
  transform-origin: center;
}

/*========================
Onepack End
========================*/

/*========================
Brand Start
========================*/
/* Section */
.mj_brand {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  /* background: #000; */
  color: var(--mj_color_white);
}
/* BG Texture */
.mj_brand_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  pointer-events: none;
}
.mj_brand_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Container */
.mj_brand > .mj_container {
  position: relative;
  z-index: 2;
}
/* Food images */
.mj_brand_food {
  position: absolute;
  top: -40px;
  z-index: 3;
  margin: 0;
  opacity: 0;
  transform: translateY(-70px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.mj_brand_food.mj_active {
  opacity: 1;
  transform: translateY(0);
}
.mj_brand_food_left {
  left: -120px;
  top: -120px;
  width: 560px;
}
.mj_brand_food_right {
  right: -150px;
  top: -150px;
  width: 620px;
}
.mj_brand_food img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: mj_brand_food_spin 18s linear infinite;
}
.mj_brand_food_right img {
  animation-direction: reverse;
}
@keyframes mj_brand_food_spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Head */
.mj_brand_head {
  position: relative;
  text-align: center;
  padding-bottom: 44px;
}
/* Badge 30% - top right of box */
.mj_brand_badge {
  position: absolute;
  right: -68px;
  top: -70px;
  transform: scale(0) rotate(-15deg);
  transform-origin: center center;
  z-index: 10;
  width: 300px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.mj_brand_badge img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(200, 30, 20, 0.5));
}
.mj_brand_badge.mj_active {
  animation:
    mj_brand_badge_in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    mj_brand_badge_pulse 2.8s ease-in-out 0.65s infinite;
}
@keyframes mj_brand_badge_in {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-15deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.18) rotate(7deg);
  }
  80% {
    transform: scale(0.93) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@keyframes mj_brand_badge_pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.08) rotate(-4deg);
  }
  60% {
    transform: scale(0.96) rotate(3deg);
  }
}
/* Eyebrow */
.mj_brand_eyebrow {
  display: inline-block;
  overflow: hidden;
  margin: 0 0 4px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.mj_brand_eyebrow.mj_active {
  clip-path: inset(0 0% 0 0);
}
.mj_brand_eyebrow img {
  display: block;
  height: 64px;
  width: auto;
  margin: 0 auto;
}
/* Title */
.mj_brand_title {
  margin: 0 0 32px;
  font-size: var(--mj_fs_72);
  font-style: normal;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.mj_brand_title_line {
  display: block;
  opacity: 0;
  transform: translateY(-28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.mj_brand_title_line.mj_active {
  opacity: 1;
  transform: translateY(0);
}
/* Title Point - Red + Glow */
.mj_brand_title_point {
  color: var(--mj_color_red);
  font-style: normal;
  -webkit-text-stroke: 5px #000;
  paint-order: stroke fill;
  filter: drop-shadow(0 0 0px rgba(233, 37, 28, 0));
}
.mj_brand_title_point.mj_active {
  animation: mj_brand_glow 1.65s ease-in-out 0.55s infinite;
}
@keyframes mj_brand_glow {
  0%,
  100% {
    filter: drop-shadow(0 0 0px rgba(233, 37, 28, 0));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(233, 37, 28, 1))
      drop-shadow(0 0 20px rgba(233, 37, 28, 0.85));
  }
}
/* Subtitle */
.mj_brand_desc {
  font-size: var(--mj_fs_24);
  line-height: var(--mj_lh_lg);
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.mj_brand_desc.mj_active {
  opacity: 1;
  transform: translateY(0);
}
.mj_brand_desc strong {
  font-weight: var(--mj_fw_bold);
  color: var(--mj_color_white);
}
/* Box BG */
.mj_brand_box_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  pointer-events: none;
}
.mj_brand_box_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
/* Network Map Box */
.mj_brand_box {
  position: relative;
  overflow: visible;
  border-radius: 20px;
  border: 5px solid transparent;
  background:
    linear-gradient(#0c0c0c, #0c0c0c) padding-box,
    linear-gradient(90deg, #a60000 0%, #ff3535 50%, #730000 100%) border-box;
  min-height: 700px;
  padding: 48px 40px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mj_brand_box.mj_active {
  opacity: 1;
  transform: translateY(0);
}
/* Network Map */
.mj_brand_map {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 1138px;
  opacity: 0;
  clip-path: circle(0% at 50% 50%);
  transition:
    opacity 3.2s ease,
    clip-path 3.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.mj_brand_map.mj_active {
  opacity: 1;
  clip-path: circle(75% at 50% 50%);
}
.mj_brand_map img {
  width: 100%;
  display: block;
}
/* Dome Deco */
.mj_brand_dome {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0;
  pointer-events: none;
}
.mj_brand_dome img {
  width: 100%;
  display: block;
}
/***** Brand 1440 *****/
@media (max-width: 1480px) {
  .mj_brand_food_left {
    left: -80px;
    width: 480px;
  }
  .mj_brand_food_right {
    right: -80px;
    width: 500px;
  }
  .mj_brand_badge {
    width: 230px;
    right: -40px;
    top: -50px;
  }
}
/***** Brand 1280 *****/
@media (max-width: 1280px) {
  .mj_brand {
    padding: 100px 0 0;
  }
  .mj_brand_food_left {
    left: -50px;
    width: 380px;
  }
  .mj_brand_food_right {
    right: -50px;
    width: 380px;
  }
  .mj_brand_title {
    font-size: var(--mj_fs_56);
  }
  .mj_brand_badge {
    width: 190px;
    right: -30px;
    top: -40px;
  }
}
/***** Brand 1024 *****/
@media (max-width: 1024px) {
  .mj_brand {
    padding: 88px 0 60px;
  }
  .mj_brand_food_left {
    left: -70px;
    top: -70px;
    width: 320px;
  }
  .mj_brand_food_right {
    right: -60px;
    top: -60px;
    width: 310px;
  }
  .mj_brand_title {
    font-size: var(--mj_fs_40);
  }
  .mj_brand_badge {
    width: 230px;
    right: -40px;
    top: -80px;
  }
  .mj_brand_desc {
    font-size: var(--mj_fs_16);
  }
  .mj_brand_box {
    min-height: 480px;
  }
  .mj_brand_dome {
    width: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
/***** Brand 768 *****/
@media (max-width: 768px) {
  .mj_brand {
    padding: 80px 0 0;
  }
  .mj_brand_food_left {
    left: -60px;
    top: -60px;
    width: 200px;
  }
  .mj_brand_food_right {
    right: -60px;
    top: -60px;
    width: 200px;
  }
  .mj_brand_title {
    font-size: 36px;
  }
  .mj_brand_title_line {
    transform: translateY(-18px);
  }
  .mj_brand_badge {
  }
  .mj_brand_head {
    padding-bottom: 40px;
  }
  .mj_brand_eyebrow img {
    height: 48px;
  }
  .mj_brand_title {
    line-height: 1.35;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  }
  .mj_brand_desc {
    font-size: var(--mj_fs_16);
  }
  .mj_brand_badge {
    right: -20px;
    top: -48px;
    width: 140px;
  }
  .mj_brand_box {
    min-height: auto;
    border-radius: 14px;
    padding: 28px 20px;
    margin-bottom: 40px;
  }
}
/***** Brand 425 *****/
@media (max-width: 425px) {
  .mj_brand {
    padding: 60px 0 0;
  }
  .mj_brand_food_left {
    left: -40px;
    top: -50px;
    width: 150px;
  }
  .mj_brand_food_right {
    right: -40px;
    top: -50px;
    width: 150px;
  }
  .mj_brand_head {
    padding-bottom: 28px;
  }
  .mj_brand_eyebrow img {
    height: 44px;
  }
  .mj_brand_title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .mj_brand_title_point {
    -webkit-text-stroke: 3px #000;
  }
  .mj_brand_desc {
    font-size: var(--mj_fs_16);
  }
  .mj_brand_badge {
    width: 100px;
    top: -25px;
  }
  .mj_brand_box {
    min-height: auto;
    border-radius: 12px;
    padding: 28px 16px;
    margin-bottom: 32px;
  }
}

/***** Brand 360 *****/
@media (max-width: 360px) {
  .mj_brand {
    padding: 52px 0 0;
  }
  .mj_brand_food_left {
    left: -36px;
    top: -44px;
    width: 120px;
  }
  .mj_brand_food_right {
    right: -36px;
    top: -44px;
    width: 120px;
  }
  .mj_brand_title {
    font-size: 27px;
  }
  .mj_brand_badge {
    width: 80px;
    right: 8px;
    top: -14px;
  }
  .mj_brand_box {
    padding: 24px 14px;
    margin-bottom: 28px;
  }
}
/*========================
Brand End
========================*/

/*========================
CTA Start
========================*/

@keyframes mj_smoke_rise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-80px) scale(1.15);
  }
}

@keyframes mj_tel_glow {
  0%,
  40%,
  100% {
    filter: none;
  }
  20% {
    filter: drop-shadow(0 0 8px rgba(233, 37, 28, 1))
      drop-shadow(0 0 20px rgba(233, 37, 28, 0.8));
  }
  60% {
    filter: drop-shadow(0 0 8px rgba(233, 37, 28, 1))
      drop-shadow(0 0 20px rgba(233, 37, 28, 0.8));
  }
  80% {
    filter: none;
  }
}

.mj_cta {
  position: relative;
  overflow: hidden;
}

.mj_cta_bg {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.mj_cta_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mj_cta_vertical_text {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}
.mj_cta_vertical_text img {
  height: 640px;
  width: auto;
  display: block;
}

.mj_cta > .mj_container {
  position: relative;
  z-index: 1;
}

.mj_cta_inner {
  display: flex;
  min-height: 720px;
}

.mj_cta_left {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px 120px 0;
  overflow: visible;
}

.mj_cta_content {
  position: relative;
  z-index: 2;
}

.mj_cta_badge {
  display: inline-block;
  margin: 0 0 40px;
}
.mj_cta_badge img {
  height: 64px;
  width: auto;
}

.mj_cta_copy_reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s ease;
}
.mj_cta_copy_reveal.mj_active {
  clip-path: inset(0 0% 0 0);
}

.mj_cta_copy {
  margin: 0 0 64px;
  font-size: 44px;
  font-weight: 200;
  line-height: var(--mj_lh_sm);
  color: var(--mj_color_white);
}
.mj_cta_copy em {
  font-style: normal;
  font-weight: 200;
  color: var(--mj_color_red);
}

.mj_cta_tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mj_color_white);
  font-size: 48px;
  font-weight: 200;
  font-family: var(--mj_font_point);
  transition: opacity var(--mj_transition);
}
.mj_cta_tel:hover {
  opacity: 0.8;
}

.mj_cta_tel_icon {
  margin: 0;
  flex-shrink: 0;
  animation: mj_tel_glow 1.8s ease-in-out infinite;
}
.mj_cta_tel_icon img {
  width: 44px;
  height: auto;
  display: block;
}

.mj_cta_food_wrap {
  position: absolute;
  bottom: -110px;
  right: -80px;
  width: 520px;
  z-index: 2;
}
.mj_cta_food {
  margin: 0;
  position: relative;
  z-index: 1;
}
.mj_cta_food img {
  width: 100%;
  height: auto;
}
.mj_cta_smoke {
  position: absolute;
  bottom: 50%;
  left: 20%;
  transform: translateX(-50%);
  width: 80%;
  margin: 0;
  z-index: 2;
  pointer-events: none;
  animation: mj_smoke_rise 3s ease-in-out infinite;
}
.mj_cta_smoke img {
  width: 100%;
  height: auto;
}

.mj_cta_right {
  position: relative;
  width: 42%;
  background-color: #6e0f0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 120px;
}
.mj_cta_right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background-color: #6e0f0a;
  z-index: 0;
}

.mj_cta_form_wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
}

.mj_cta_paper {
  position: absolute;
  inset: -10px -6px -10px -10px;
  margin: 0;
  z-index: 0;
  pointer-events: none;
}
.mj_cta_paper img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.mj_cta_form {
  position: relative;
  z-index: 1;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mj_cta_form_row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mj_cta_form_row label,
.mj_cta_form_label {
  flex-shrink: 0;
  width: 70px;
  font-size: var(--mj_fs_15);
  font-weight: var(--mj_fw_medium);
  color: var(--mj_color_text);
}
.mj_cta_form_row input[type='text'],
.mj_cta_form_row input[type='tel'],
.mj_cta_form_row select {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: var(--mj_color_white);
  font-size: var(--mj_fs_14);
  color: var(--mj_color_text);
  outline: none;
  transition: border-color var(--mj_transition);
}
.mj_cta_form_row input:focus,
.mj_cta_form_row select:focus {
  border-color: var(--mj_color_red);
}

.mj_cta_store_toggle {
  display: flex;
  gap: 0;
  flex: 1;
}
.mj_cta_store_btn {
  flex: 1;
  height: 48px;
  padding: 0;
  border: 1px solid #c0c0c0;
  border-radius: 0 4px 4px 0;
  background: var(--mj_color_white);
  font-size: var(--mj_fs_15);
  font-weight: var(--mj_fw_medium);
  color: var(--mj_color_text);
  cursor: pointer;
  transition:
    background var(--mj_transition),
    color var(--mj_transition),
    border-color var(--mj_transition);
}
.mj_cta_store_btn:first-child {
  border-radius: 4px 0 0 4px;
}
.mj_cta_store_btn:last-child {
  border-radius: 0 4px 4px 0;
  border-left: none;
}
.mj_cta_store_btn.mj_is_active {
  background: var(--mj_color_black);
  border-color: var(--mj_color_black);
  color: var(--mj_color_white);
}

.mj_cta_form_row_msg {
  align-items: flex-start;
}
.mj_cta_form_row_msg label {
  padding-top: 12px;
}
.mj_cta_form_row_msg textarea {
  flex: 1;
  height: 120px;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background: var(--mj_color_white);
  font-size: var(--mj_fs_14);
  color: var(--mj_color_text);
  resize: none;
  outline: none;
  transition: border-color var(--mj_transition);
}
.mj_cta_form_row_msg textarea:focus {
  border-color: var(--mj_color_red);
}

.mj_cta_form_agree {
  display: flex;
  align-items: center;
  padding: 2px 0;
}
.mj_cta_agree_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--mj_fs_13);
  color: var(--mj_color_sub);
  cursor: pointer;
}
.mj_cta_agree_label input[type='checkbox'] {
  width: 16px;
  height: 16px;
  accent-color: var(--mj_color_red);
  cursor: pointer;
  flex-shrink: 0;
}

.mj_cta_submit {
  width: 100%;
  height: 56px;
  margin-top: 6px;
  background: var(--mj_color_red);
  color: var(--mj_color_white);
  font-size: var(--mj_fs_16);
  font-weight: var(--mj_fw_bold);
  border: none;
  border-radius: var(--mj_radius_full);
  cursor: pointer;
  transition: opacity var(--mj_transition);
}
.mj_cta_submit:hover {
  opacity: 0.85;
}

/***** CTA 1480 *****/
@media (max-width: 1480px) {
  .mj_cta_copy {
    font-size: 38px;
  }
  .mj_cta_tel {
    font-size: 42px;
  }
}

/***** CTA 1280 *****/
@media (max-width: 1280px) {
  .mj_cta_copy {
    font-size: 34px;
  }
  .mj_cta_tel {
    font-size: 36px;
  }
  .mj_cta_food_wrap {
    width: 440px;
  }
}

/***** CTA 1024 *****/
@media (max-width: 1024px) {
  .mj_cta_copy {
    font-size: 28px;
    margin: 0 0 44px;
  }
  .mj_cta_tel {
    font-size: 30px;
  }
  .mj_cta_tel_icon img {
    width: 34px;
  }
  .mj_cta_food_wrap {
    /* width: 360px; */
  }
  .mj_cta_badge img {
    height: 48px;
  }
  .mj_cta_vertical_text img {
    height: 520px;
  }
}

/***** CTA 768 *****/
@media (max-width: 768px) {
  .mj_cta_inner {
    flex-direction: column;
    min-height: auto;
  }
  .mj_cta_left {
    padding: 60px 0 40px;
  }
  .mj_cta_food_wrap {
    width: 260px;
    right: -80px;
  }
  .mj_cta_copy {
    font-size: var(--mj_fs_24);
  }
  .mj_cta_tel {
    font-size: var(--mj_fs_24);
  }
  .mj_cta_right {
    width: 100%;
    padding: 50px 0 60px;
  }
  .mj_cta_right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100%;
    background-color: #6e0f0a;
    z-index: 0;
  }
  .mj_cta_vertical_text img {
    height: 380px;
  }
  .mj_cta_form {
    padding: 32px 24px;
  }
  .mj_cta_form_row label,
  .mj_cta_form_label {
    width: 60px;
    font-size: var(--mj_fs_14);
  }
  .mj_cta_form_row input[type='text'],
  .mj_cta_form_row input[type='tel'],
  .mj_cta_form_row select {
    min-width: 0;
    flex: 1 1 0%;
    width: 0;
  }
}

/***** CTA 425 *****/
@media (max-width: 425px) {
  .mj_cta_left {
    padding: 48px 0 32px;
  }
  .mj_cta_badge img {
    height: 44px;
  }
  .mj_cta_copy {
    font-size: var(--mj_fs_20);
  }
  .mj_cta_tel {
    font-size: var(--mj_fs_20);
  }
  .mj_cta_food_wrap {
    width: 200px;
  }
  .mj_cta_right {
    padding: 40px 0 50px;
  }
  .mj_cta_vertical_text img {
    height: 300px;
  }
}

/***** CTA 360 *****/
@media (max-width: 360px) {
  .mj_cta_left {
    padding: 40px 0 28px;
  }
  .mj_cta_copy {
    font-size: var(--mj_fs_18);
  }
  .mj_cta_tel {
    font-size: var(--mj_fs_18);
  }
  .mj_cta_food_wrap {
    width: 170px;
  }
  .mj_cta_vertical_text img {
    height: 260px;
  }
  .mj_cta_form_row {
    gap: 10px;
  }
  .mj_cta_form_row label,
  .mj_cta_form_label {
    width: 50px;
  }
  .mj_cta_form_row input[type='text'],
  .mj_cta_form_row input[type='tel'],
  .mj_cta_form_row select {
    min-width: 0;
    flex: 1 1 0%;
    width: 0;
  }
}

/*========================
CTA End
========================*/

/*========================
Point Font Weight Start
========================*/

@font-face {
  font-family: 'BM Euljiro';
  src:
    url('../fonts/BMEULJIRO.woff2') format('woff2'),
    url('../fonts/BMEULJIRO.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

.mj_font_point {
  font-weight: 200;
}

/*========================
Point Font Weight End
========================*/

/*========================
Market Sales Start
========================*/

.mj_market_sales {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  padding: 120px 0 100px;
}

.mj_ms_bg {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.mj_ms_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mj_ms_map {
  position: absolute;
  top: -10px;
  right: 160px;
  width: 570px;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s ease 0.25s,
    transform 0.9s ease 0.25s;
}
.mj_ms_map.mj_active {
  opacity: 1;
  transform: translateY(0);
}
.mj_ms_map img {
  width: 100%;
  height: auto;
}

/* ── food + smoke 묶음 wrapper ── */
.mj_ms_food_wrap {
  position: absolute;
  bottom: -130px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  width: 680px;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.9s ease 0.5s,
    transform 0.9s ease 0.5s;
}
.mj_ms_food_wrap.mj_active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* food: wrapper 안에서 static */
.mj_ms_food {
  position: relative;
  margin: 0;
  z-index: 1;
}
.mj_ms_food img {
  width: 100%;
  height: auto;
  display: block;
}

/* smoke: wrapper 안에서 absolute — food 기준으로 위치 */
.mj_ms_smoke {
  position: absolute;
  bottom: 78%; /* food 이미지 상단 기준 */
  left: 44%;
  width: 44%;
  margin: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.mj_ms_smoke.mj_active {
  animation: mj_smoke_rise 3.5s ease-in-out infinite;
}
.mj_ms_smoke img {
  width: 100%;
  height: auto;
}

.mj_ms_vtxt {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 82px;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.mj_ms_vtxt img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.mj_market_sales > .mj_container {
  position: relative;
  z-index: 4;
}

.mj_ms_head {
  padding: 0 0 120px;
}

.mj_ms_title {
  margin: 0 0 20px;
  font-size: 64px;
  font-weight: 200;
  line-height: 1.25;
  color: var(--mj_color_white);
}
.mj_ms_title em {
  font-style: normal;
  font-weight: 200;
  color: var(--mj_color_red);
}

.mj_ms_title_mask {
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  padding: 22px 28px 24px;
  margin: -22px -28px -24px;
  vertical-align: bottom;
  white-space: nowrap;
}
.mj_ms_title_text {
  display: inline-block;
  white-space: nowrap;
}
.mj_ms_head.mj_active .mj_ms_title_mask {
  animation: mj_success_story_write 1.25s steps(28) 0.15s forwards;
}

.mj_ms_sub {
  font-size: 32px;
  color: #fff;
  font-weight: 300;
  opacity: 0;
  transform: translateY(18px);
}
.mj_ms_sub strong {
  color: #fff;
  font-weight: var(--mj_fw_bold);
}
.mj_ms_head.mj_active .mj_ms_sub {
  animation: mj_success_story_sub_up 0.58s ease 1.15s forwards;
}

/* 카드 슬라이더 */
.mj_ms_cards_area {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  /* overflow hidden은 각 row에서 처리 - body 스크롤바 방지 */
}

.mj_ms_row {
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.mj_ms_row.mj_active {
  opacity: 1;
  transform: translateY(0);
}

.mj_ms_track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  padding: 6px 0;
}

@keyframes mj_ms_slide_l {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes mj_ms_slide_r {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.mj_ms_track_l {
  animation: mj_ms_slide_l 42s linear infinite;
}
.mj_ms_track_r {
  animation: mj_ms_slide_r 36s linear infinite;
}

/* 카드 */
/* 카드 (이미지) */
.mj_ms_card {
  flex-shrink: 0;
  height: 190px;
  aspect-ratio: 3/2; /* 이미지 미로드 시 track 너비 0 방지 */
  margin: 0;
  overflow: hidden;
}
.mj_ms_card img {
  height: 100%;
  width: auto;
  display: block;
}

@media (max-width: 1280px) {
  .mj_ms_food {
    /* width: 380px; */ /* right: -20px; */
  }
  .mj_ms_map {
    width: 420px;
    right: -40px;
  }
}

@media (max-width: 1024px) {
  .mj_ms_food_wrap {
    width: 600px;
  }
}

@media (max-width: 768px) {
  .mj_market_sales {
    padding: 60px 0 60px;
  }
  .mj_ms_title {
    font-size: var(--mj_fs_32);
  }
  .mj_ms_sub {
    font-size: 18px;
  }
  .mj_ms_head {
    padding: 0 0 56px;
  }
  .mj_ms_food_wrap {
    width: 380px;
    bottom: -80px;
  }
  .mj_ms_map {
    width: 280px;
    top: -10px;
    right: -20px;
  }
  .mj_ms_card_amount {
    font-size: var(--mj_fs_20);
  }
  .mj_ms_card {
    height: 120px;
  }
}

@media (max-width: 425px) {
  .mj_ms_food_wrap {
    width: 300px;
    bottom: -60px;
  }
}

@media (max-width: 360px) {
  .mj_ms_food_wrap {
    width: 260px;
    bottom: -50px;
  }
}

/* 하단 롤링 래퍼 */
.mj_ms_rolling_wrap {
  position: relative;
  z-index: 7; /* margin-top: 60px; */
}
.mj_rolling_banner_row_01 .mj_rolling_banner_logo img,
.mj_rolling_banner_row_01 .mj_rolling_banner_image img {
  height: 32px;
}

/*========================
Market Sales End
========================*/

/*========================
Profit Case Start
========================*/
.mj_profit_case {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

/* BG */
.mj_pc_bg {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.mj_pc_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Deco — 섹션 기준 좌상단 */
.mj_pc_deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  margin: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.5);
  transform-origin: top left;
  transition:
    opacity 0.6s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.mj_pc_deco.mj_active {
  opacity: 1;
  transform: scale(1);
}
.mj_pc_deco img {
  width: 100%;
  display: block;
}

/* POCHA HEAVEN 워터마크 — 섹션 기준 하단 중앙 */
.mj_pc_text_bg {
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 900px;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}
.mj_pc_text_bg img {
  width: 100%;
  display: block;
}

/* 음식 이미지 — 섹션 기준 좌하단 */
.mj_pc_food {
  position: absolute;
  left: -90px;
  bottom: -100px;
  width: 620px;
  margin: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.7s ease 0.35s,
    transform 0.7s ease 0.35s;
}
.mj_pc_food.mj_shown {
  opacity: 1;
  transform: translateX(0);
}
.mj_pc_food img {
  width: 100%;
  display: block;
}

/* Head — 컨테이너 안 */
.mj_pc_head {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 50px;
}
.mj_pc_eyebrow {
  font-size: 40px;
  color: #fff;
  font-weight: 400;
  margin: 0 0 14px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease 0.1s,
    transform 0.5s ease 0.1s;
}
[data-mj-pc-head].mj_active .mj_pc_eyebrow {
  opacity: 1;
  transform: translateY(0);
}
[data-mj-pc-head].mj_active .mj_char {
  animation: mj_onepack_char_up 0.36s ease forwards;
  animation-delay: calc(var(--mj_ci) * 0.04s + 0.1s);
}
.mj_pc_title {
  font-size: 72px;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.mj_pc_title_em {
  font-style: normal;
  color: #f5d028;
}

/* 매출 사례 표 — 컨테이너 안 */
.mj_pc_table {
  position: relative;
  z-index: 5;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.mj_pc_table.mj_shown {
  opacity: 1;
  transform: translateY(0);
}

/* 프레임 + 영상 + 썸네일 래퍼 */
.mj_pc_table_wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
}
/* 1. 썸네일 — 맨 아래, 항상 보임 */
.mj_pc_table_poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
/* 2. 영상 — 중간, 항상 보임 */
.mj_pc_table_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
/* 3. 프레임 PNG — 맨 위 */
.mj_pc_table_frame {
  position: relative;
  width: 100%;
  display: block;
  pointer-events: none;
  z-index: 2;
}

/* 롤링 래퍼 */
.mj_pc_rolling_wrap {
  position: relative;
  z-index: 5;
}

/* 1480 */
@media (max-width: 1480px) {
  .mj_pc_deco {
    width: 800px;
  }
  .mj_pc_text_bg {
    width: 700px;
  }
  .mj_pc_food {
    width: 500px;
  }
  .mj_pc_eyebrow {
    font-size: 34px;
  }
  .mj_pc_title {
    font-size: 60px;
  }
}

/* 1280 */
@media (max-width: 1280px) {
  .mj_pc_deco {
    width: 650px;
  }
  .mj_pc_text_bg {
    width: 580px;
  }
  .mj_pc_food {
    width: 420px;
    left: -60px;
  }
  .mj_pc_eyebrow {
    font-size: 28px;
  }
  .mj_pc_title {
    font-size: 50px;
  }
}

/* 1024 */
@media (max-width: 1024px) {
  .mj_profit_case {
    padding: 80px 0 60px;
  }
  .mj_pc_deco {
    width: 500px;
  }
  .mj_pc_text_bg {
    width: 480px;
  }
  .mj_pc_food {
    width: 340px;
    left: -40px;
    bottom: -60px;
  }
  .mj_pc_eyebrow {
    font-size: 24px;
  }
  .mj_pc_title {
    font-size: 42px;
  }
  .mj_pc_head {
    padding-bottom: 36px;
  }
}

/* 768 */
@media (max-width: 768px) {
  .mj_profit_case {
    padding: 60px 0 60px;
  }
  .mj_pc_deco {
    width: 100%;
  }
  .mj_pc_text_bg {
    width: 100%;
  }
  .mj_pc_food {
    width: 280px;
    left: auto;
    right: -20px;
    bottom: -40px;
  }
  .mj_pc_eyebrow {
    font-size: 18px;
  }
  .mj_pc_title {
    font-size: 32px;
  }
  .mj_pc_head {
    padding-bottom: 28px;
    text-align: left;
  }
}

/* 425 */
@media (max-width: 425px) {
  .mj_pc_food {
    width: 220px;
    right: -10px;
    bottom: -30px;
  }
  .mj_pc_eyebrow {
    /* font-size: 16px; */
  }
  .mj_pc_title {
    font-size: 30px;
  }
}

/* 360 */
@media (max-width: 360px) {
  .mj_pc_food {
    width: 180px;
  }
  .mj_pc_title {
    font-size: 27px;
  }
}

/*========================
Profit Case End
========================*/

/*========================
Sales Flow Start
========================*/

.mj_sales_flow {
  position: relative;
  background-color: #890000;
  background-image: url('/img/common/salesflow_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 120px 0 0;
  color: var(--mj_color_white);
}

/* 롤링 컬럼 — absolute, 섹션 전체 높이 */
.mj_sf_roll {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  overflow: hidden;
  z-index: 1;
  opacity: 0.7;
}
.mj_sf_roll_reverse {
  left: auto;
  right: 0;
}
.mj_sf_roll_track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: mj_sf_roll_up 30s linear infinite;
}
.mj_sf_roll_reverse .mj_sf_roll_track {
  animation-direction: reverse;
}
@keyframes mj_sf_roll_up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
.mj_sf_roll_track figure {
  margin: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.mj_sf_roll_track figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* 중앙 콘텐츠 */
.mj_sf_content {
  position: relative;
  z-index: 2;
}

/* 섹션 헤드 */
.mj_sales_flow .mj_section_head {
  text-align: center;
}
.mj_sales_flow .mj_section_head > span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3em;
  font-weight: var(--mj_fw_medium);
}
.mj_sales_flow .mj_section_head h2 {
  font-family: var(--mj_font_point);
  font-size: 64px;
  font-weight: 200;
  color: var(--mj_color_white);
  line-height: 1.25;
  margin: 20px 0 28px;
}

/* h2 초저녁/심야 글자 위 6px 원 */
.mj_sf_h2_char {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}
.mj_sf_h2_char::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
}

/* 일반 글자 (plain) */
.mj_sf_plain_char {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

/* 트리거 후 글자 등장 */
.mj_sf_h2_animate .mj_sf_plain_char,
.mj_sf_h2_animate .mj_sf_h2_char {
  animation: mj_sf_char_in 0.38s ease both;
}

/* 트리거 후 점 팝인 */
.mj_sf_h2_animate .mj_sf_h2_char::before {
  animation: mj_sf_dot_pop 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--dot-delay, 0.3s);
}

@keyframes mj_sf_char_in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mj_sf_dot_pop {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

/* 서브텍스트 애니 */
.mj_sf_sub_animate {
  animation: mj_sf_sub_in 0.6s ease both;
}
@keyframes mj_sf_sub_in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 서브텍스트 */
.mj_sales_flow .mj_section_head p {
  font-size: 28px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}
.mj_sales_flow .mj_section_head p strong {
  font-weight: var(--mj_fw_bold);
  color: var(--mj_color_white);
}

/* 방점 제거 — 볼드만 유지 */
.mj_sf_dotword {
  font-weight: var(--mj_fw_bold);
}

/* 카드 래퍼 */
.mj_sf_cards {
  position: relative;
  z-index: 2;
  max-width: var(--mj_container);
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 32px;
}

/* 카드 공통 */
.mj_sf_card {
  background: #f9e9d2;
  border: 2px solid #111;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 140px;
}

/* 카드 내부 애니 없음 */

/* 카드1: 차트 좌 / 텍스트 우 */
.mj_sf_card_peak {
  flex-direction: row;
}

/* 카드2: 텍스트 좌 / 차트 우 + 도넛 absolute */
.mj_sf_card_sales {
  flex-direction: row;
  position: relative;
}

/* 차트 figure */
.mj_sf_card_chart {
  margin: 0;
  flex-shrink: 0;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mj_sf_card_chart img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

/* 피크타임 카드 — 3레이어 시계 */
.mj_sf_card_chart_peak {
  position: relative;
}
/* inner: 레이어 기준점 + 모바일 패딩 수신 */
.mj_sf_peak_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
/* gray PNG: normal flow로 크기 기준 잡음 */
.mj_sf_peak_gray {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
}
/* video와 red PNG: gray 위에 정확히 겹침 */
.mj_sf_peak_video,
.mj_sf_peak_red {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.mj_sf_peak_video {
  object-fit: cover;
  z-index: 1;
}
.mj_sf_peak_red {
  object-fit: contain;
  z-index: 3;
}
/* 모바일: chart 패딩 리셋 — inner 자체를 margin으로 들여쓰기 */
@media (max-width: 768px) {
  .mj_sf_card_chart_peak {
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mj_sf_peak_inner {
    width: calc(100% - 80px);
    margin: 40px auto 0;
  }
}
@media (max-width: 425px) {
  .mj_sf_peak_inner {
    width: calc(100% - 40px);
    margin: 20px auto 0;
  }
}
.mj_sf_card_sales .mj_sf_card_chart img {
  object-fit: cover;
  width: 100%;
}

/* 카드 텍스트 */
.mj_sf_card_text {
  padding: 40px 44px;
}
.mj_sf_card_sales .mj_sf_card_text {
  padding-right: 120px;
}
.mj_sf_card_text h3 {
  font-family: var(--mj_font_point);
  font-size: 48px;
  font-weight: 200;
  color: #111;
  line-height: 1.3;
  margin: 0 0 24px;
}
.mj_sf_card_text p {
  font-family: var(--mj_font_main);
  font-size: 24px;
  font-weight: 400;
  color: #222;
  line-height: 1.4;
  margin: 0 0 10px;
}
.mj_sf_card_text p:last-child {
  margin-bottom: 0;
}

/* 도넛 뱃지 — absolute */
.mj_sf_donut {
  position: absolute;
  right: calc(50% - 200px);
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  z-index: 3;
}

/* 바깥쪽 연한 투명 원 — 펄스 */
.mj_sf_donut::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  animation: mj_sf_pulse 2.4s ease-in-out infinite;
}

/* 중간 투명 원 — 펄스 (오프셋) */
.mj_sf_donut_ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  animation: mj_sf_pulse 2.4s ease-in-out infinite 0.4s;
}

@keyframes mj_sf_pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* 안쪽 코어 — solid #000 + 반투명 보더 */
.mj_sf_donut_core {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #000;
  border: 10px solid rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-weight: 200;
}

/* 저녁매출 */
.mj_sf_donut_core > span {
  font-family: var(--mj_font_point);
  font-size: 32px;
  font-weight: 200;
  color: #fff;
  line-height: 1;
}

/* 평균 40 % */
.mj_sf_donut_core > strong {
  font-family: var(--mj_font_point);
  display: flex;
  align-items: baseline;
  color: #ffd700;
  font-size: 32px;
  font-weight: 200;
  line-height: 1;
}
.mj_sf_donut_core > strong em {
  font-size: 62px;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* 하단 POCHA HEAVEN 텍스트 — 슬라이드 뒤 */
.mj_sf_bottom_text {
  display: block;
  position: relative;
  z-index: 0;
  margin: 40px 0 0;
  padding-left: 300px;
  line-height: 0;
}
.mj_sf_bottom_text img {
  height: 100px;
  width: auto;
  display: block;
}

/* 1480 */
@media (max-width: 1480px) {
  .mj_sales_flow .mj_section_head h2 {
    font-size: 54px;
  }
  .mj_sales_flow .mj_section_head p {
    font-size: 22px;
  }
  .mj_sf_card {
    padding: 52px 100px;
  }
}

/* 1280 */
@media (max-width: 1280px) {
  .mj_sf_roll {
    width: 240px;
  }
  .mj_sf_cards {
    /* padding: 0 260px; */
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .mj_sf_card {
    padding: 44px 60px;
  }
  .mj_sf_card_chart {
    height: 400px;
  }
  .mj_sf_card_text h3 {
    font-size: 38px;
  }
  .mj_sf_card_text p {
    font-size: 20px;
  }
  .mj_sf_donut {
    width: 220px;
    height: 220px;
    right: calc(50% - 160px);
  }
  .mj_sf_donut_core > strong em {
    font-size: 50px;
  }
  .mj_sales_flow .mj_section_head h2 {
    font-size: 48px;
  }
  .mj_sales_flow .mj_section_head p {
    font-size: 20px;
  }
  .mj_sf_bottom_text {
    padding-left: 240px;
  }
}

/* 1024 */
@media (max-width: 1024px) {
  .mj_sf_roll {
    width: 180px;
  }
  .mj_sf_cards {
    /* padding: 0 200px; */
  }
  .mj_sf_card {
    padding: 36px 44px;
  }
  .mj_sf_card_chart {
    height: 320px;
  }
  .mj_sf_card_text {
    padding: 24px 28px;
  }
  .mj_sf_card_sales .mj_sf_card_text {
    padding-right: 80px;
  }
  .mj_sf_card_text h3 {
    font-size: 30px;
  }
  .mj_sf_card_text p {
    font-size: 17px;
  }
  .mj_sf_donut {
    width: 170px;
    height: 170px;
    right: calc(50% - 120px);
  }
  .mj_sf_donut_core > span {
    font-size: 22px;
  }
  .mj_sf_donut_core > strong {
    font-size: 22px;
  }
  .mj_sf_donut_core > strong em {
    font-size: 40px;
  }
  .mj_sales_flow .mj_section_head h2 {
    font-size: 40px;
  }
  .mj_sales_flow .mj_section_head p {
    font-size: 18px;
  }
  .mj_sf_bottom_text {
    padding-left: 180px;
  }
  .mj_sf_h2_char::before {
    top: -8px;
  }
}

/* 768 */
@media (max-width: 768px) {
  .mj_sales_flow {
    padding: 60px 0 0;
  }
  .mj_sf_roll {
    width: 80px;
    opacity: 0.4;
  }
  .mj_sf_cards {
    padding: 0;
    max-width: none;
    margin: 32px var(--mj_gutter) 0;
    gap: 14px;
  }
  .mj_sf_card {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border-radius: 16px;
    min-height: auto;
  }
  .mj_sf_card_peak,
  .mj_sf_card_sales {
    flex-direction: column;
  }
  /* 카드2 모바일: 차트(위) → 텍스트(아래), 도넛은 차트 위에 absolute */
  .mj_sf_card_sales .mj_sf_card_chart {
    order: -1;
  }
  .mj_sf_card_sales .mj_sf_card_text {
    order: 1;
  }
  /* 이미지 전체 보이기 */
  .mj_sf_card_chart {
    height: auto;
    width: 100%;
    flex-shrink: 0;
    padding: 40px 40px 0;
  }
  .mj_sf_card_chart img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  /* 카드 패딩 — 이미지·텍스트 동일 여백 */
  .mj_sf_card {
    padding: 44px;
    gap: 24px;
  }
  .mj_sf_card_text,
  .mj_sf_card_sales .mj_sf_card_text {
    padding: 0;
    margin-top: 16px;
  }
  .mj_sf_card_text h3 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .mj_sf_card_text p {
    font-size: 16px;
  }
  /* 도넛: 차트 이미지 정중앙 (768px 모바일 only) */
  .mj_sf_card_sales .mj_sf_card_chart {
    position: relative;
    overflow: visible;
  }
  .mj_sf_donut {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
  }
  .mj_sf_donut_core > span {
    font-size: 20px;
  }
  .mj_sf_donut_core > strong {
    font-size: 20px;
  }
  .mj_sf_donut_core > strong em {
    font-size: 40px;
  }
  .mj_sf_bottom_text {
    padding-left: 0;
    margin-top: 24px;
  }
  .mj_sf_bottom_text img {
    height: 50px;
    width: 100%;
    object-fit: contain;
  }
  .mj_sales_flow .mj_section_head h2 {
    font-size: 36px;
  }
  .mj_sales_flow .mj_section_head p {
    font-size: 16px;
  }

  .mj_section_head p {
    margin-top: 12px;
  }
}

/* 425 */
@media (max-width: 425px) {
  .mj_sf_card {
    padding: 24px;
    gap: 24px;
  }
  .mj_sf_card_chart {
    padding: 20px 20px 0;
  }
  .mj_sales_flow .mj_section_head h2 {
    font-size: 30px;
  }
  .mj_sales_flow .mj_section_head p {
    font-size: 15px;
  }
  .mj_sf_card_text h3 {
    font-size: 24px;
  }
  .mj_sf_card_text p {
    font-size: 15px;
  }
  .mj_sf_donut {
    width: 120px;
    height: 120px;
  }
  .mj_sf_donut_core > strong em {
    font-size: 30px;
  }
  .mj_sf_donut_core > span {
    font-size: 15px;
  }
  .mj_sf_donut_core > strong {
    font-size: 15px;
  }
}

/* 360 */
@media (max-width: 360px) {
  .mj_sales_flow .mj_section_head h2 {
    font-size: 26px;
  }
  .mj_sales_flow .mj_section_head p {
    font-size: 14px;
  }
  .mj_sf_card_text {
    padding: 22px 18px;
  }
  .mj_sf_card_text h3 {
    font-size: 21px;
  }
  .mj_sf_card_text p {
    font-size: 14px;
  }
}

/*========================
Sales Flow End
========================*/

/*========================
New Menu Section Start
========================*/

/* ========================================
   기본
   ======================================== */

.mj_onepack_sec2 {
  position: relative;
  width: 100%;
  overflow: clip;
  background: #9b0000;
  padding: 60px 0 0;
}

.mj_opsec2_deco_left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.mj_opsec2_deco_left img {
  height: auto;
  display: block;
  width: 700px;
}

.mj_opsec2_deco_right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.mj_opsec2_deco_right img {
  height: auto;
  display: block;
  width: 120px;
}

.mj_opsec2_paper_back {
  position: absolute;
  left: 50%;
  top: 60px;
  bottom: 0;
  width: 88%;
  max-width: 1800px;
  transform: translateX(-50%) rotate(-2.2deg) translateY(16px);
  transform-origin: bottom center;
  z-index: 2;
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 620px;
}

.mj_opsec2_wrapper {
  position: relative;
  z-index: 3;
  width: 88%;
  max-width: 1720px;
  margin: 0 auto;
  overflow: visible;
  background-size: 100% 100%;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 0;
}

.mj_opsec2_grid {
  display: grid;
  grid-template-columns: 54fr 46fr;
}

.mj_opsec2_left {
  position: relative;
  padding: 120px 0px 380px 80px;
  display: flex;
  flex-direction: column;
}

.mj_opsec2_badge {
  position: absolute;
  top: 36px;
  left: 0;
  z-index: 5;
  width: 220px;
}
.mj_opsec2_badge img {
  width: 100%;
  height: auto;
  display: block;
}

.mj_opsec2_txt {
  margin-top: 40px;
}
.mj_opsec2_sub {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  font-family:
    'Pretendard',
    -apple-system,
    sans-serif;
  margin-bottom: 10px;
}
.mj_opsec2_title {
  font-size: 59px;
  font-weight: 200;
  font-family: var(--mj_font_point);
  color: #111;
  line-height: 1.15;
  margin-bottom: 16px;
  white-space: normal;
}
.mj_opsec2_title strong {
  color: var(--mj_red, #e00);
}
.mj_opsec2_desc {
  font-size: 26px;
  font-weight: 500;
  color: #000;
  font-family:
    'Pretendard',
    -apple-system,
    sans-serif;
  line-height: 1.5;
}
.mj_opsec2_desc strong {
  color: var(--mj_red, #e00);
  font-weight: 700;
}

.mj_opsec2_right {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  align-self: stretch;
}

.mj_opsec2_rolls {
  width: 120%;
  height: 100%;
  margin-left: -10%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: rotate(-8deg);
}

.mj_opsec2_roll {
  overflow: hidden;
  flex: 1 1 0;
  min-height: 0;
  position: relative;
}

.mj_opsec2_roll_track {
  display: flex;
  width: max-content;
  height: 100%;
}
.mj_opsec2_roll_track figure {
  height: 100%;
  flex-shrink: 0;
}
.mj_opsec2_roll_track figure img {
  height: 100%;
  width: auto;
  display: block;
}

.mj_opsec2_track_left {
  animation: mj_opsec2_scroll_left 30s linear infinite;
}
.mj_opsec2_track_right {
  animation: mj_opsec2_scroll_right 30s linear infinite;
}

@keyframes mj_opsec2_scroll_left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes mj_opsec2_scroll_right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.mj_opsec2_roll_fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(240, 236, 227, 1) 0%,
    rgba(240, 236, 227, 0) 100%
  );
  pointer-events: none;
  z-index: 5;
}

.mj_opsec2_food {
  position: absolute;
  left: -230px;
  bottom: -270px;
  z-index: 8;
  width: 670px;
}
.mj_opsec2_food img {
  width: 100%;
  height: auto;
  display: block;
}

.mj_opsec2_beer {
  position: absolute;
  left: 180px;
  bottom: -280px;
  z-index: 7;
  width: 560px;
}
.mj_opsec2_beer img {
  width: 100%;
  height: auto;
  display: block;
}
.mj_opsec2_beer_mo_wrap {
  display: none;
}

.mj_opsec2_border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  line-height: 0;
}
.mj_opsec2_border img {
  width: 100%;
  height: auto;
  display: block;
}

.mj_opsec2_d1 {
  transition-delay: 0.1s;
}
.mj_opsec2_d2 {
  transition-delay: 0.25s;
}
.mj_opsec2_d3 {
  transition-delay: 0.45s;
}
.mj_opsec2_d4 {
  transition-delay: 0.65s;
}
.mj_opsec2_d5 {
  transition-delay: 0.85s;
}
.mj_opsec2_d6 {
  transition-delay: 1.05s;
}
.mj_opsec2_d7 {
  transition-delay: 1.2s;
}
.mj_opsec2_d8 {
  transition-delay: 1.4s;
}
.mj_opsec2_d9 {
  transition-delay: 0.05s;
}

/* ========================================
   Responsive - 1480px
   ======================================== */
@media (max-width: 1480px) {
  .mj_onepack_sec2 {
    padding-top: 50px;
  }
  .mj_opsec2_paper_back {
    top: 50px;
    min-height: 760px;
  }
  .mj_opsec2_deco_left img {
    width: 560px;
  }
  .mj_opsec2_deco_right img {
    width: 100px;
  }
  .mj_opsec2_roll {
    height: 240px;
  }
  .mj_opsec2_right {
    padding: 0;
  }
  .mj_opsec2_left {
    padding: 100px 0px 260px 64px;
  }
  .mj_opsec2_badge {
    width: 180px;
  }
  .mj_opsec2_title {
    font-size: 58px;
  }
  .mj_opsec2_desc {
    font-size: 24px;
  }
  .mj_opsec2_food {
    width: 500px;
    left: -170px;
    bottom: -100px;
  }
  .mj_opsec2_beer {
    width: 440px;
    left: 110px;
    bottom: -140px;
  }
}

/* ========================================
   Responsive - 1280px
   ======================================== */
@media (max-width: 1280px) {
  .mj_onepack_sec2 {
    padding-top: 50px;
  }
  .mj_opsec2_paper_back {
    top: 44px;
    min-height: 700px;
  }
  .mj_opsec2_deco_left img {
    width: 460px;
  }
  .mj_opsec2_deco_right img {
    width: 88px;
  }
  .mj_opsec2_roll {
    height: 220px;
  }
  .mj_opsec2_right {
    padding: 0;
  }
  .mj_opsec2_left {
    padding: 90px 0px 240px 56px;
  }
  .mj_opsec2_badge {
    top: 26px;
  }
  .mj_opsec2_title {
    font-size: 48px;
  }
  .mj_opsec2_desc {
    font-size: 20px;
  }
}

/* ========================================
   Responsive - 1024px
   ======================================== */
@media (max-width: 1024px) {
  .mj_onepack_sec2 {
    padding-top: 40px;
  }
  .mj_opsec2_paper_back {
    top: 36px;
    min-height: 620px;
    width: 92%;
  }
  .mj_opsec2_deco_left img {
    width: 360px;
  }
  .mj_opsec2_deco_right img {
    width: 72px;
  }
  .mj_opsec2_wrapper {
    width: 92%;
  }
  .mj_opsec2_roll {
    height: 190px;
  }
  .mj_opsec2_right {
    padding: 0;
  }
  .mj_opsec2_left {
    padding: 80px 18px 200px 32px;
  }
  .mj_opsec2_badge {
    top: 20px;
    width: 120px;
  }
  .mj_opsec2_sub {
    margin-bottom: 8px;
  }
  .mj_opsec2_title {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .mj_opsec2_desc {
    font-size: 16px;
  }
  .mj_opsec2_food {
    width: 380px;
    left: -100px;
    bottom: -80px;
  }
  .mj_opsec2_beer {
    width: 320px;
    left: 120px;
    bottom: -100px;
  }
}

/* ========================================
   Responsive - 768px
   ======================================== */
@media (max-width: 768px) {
  .mj_onepack_sec2 {
    padding-top: 28px;
  }
  .mj_opsec2_paper_back {
    top: 28px;
    min-height: auto;
    width: 94%;
  }
  .mj_opsec2_deco_left img {
    width: 220px;
  }
  .mj_opsec2_deco_right img {
    width: 50px;
  }
  .mj_opsec2_wrapper {
    width: 94%;
  }
  .mj_opsec2_grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .mj_opsec2_left {
    padding: 60px 24px 80px 24px;
  }
  .mj_opsec2_badge {
    top: 18px;
  }
  .mj_opsec2_sub {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .mj_opsec2_title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .mj_opsec2_right {
    height: auto;
    padding: 0;
    overflow: hidden;
  }
  .mj_opsec2_rolls {
    height: auto;
  }
  .mj_opsec2_roll {
    flex: none;
    height: 120px;
  }
  .mj_opsec2_roll_fade {
    display: none;
  }
  .mj_opsec2_food {
    left: auto;
    right: -70px;
    bottom: 30%;
    transform: none;
    width: 280px;
    z-index: 8;
  }
  .mj_opsec2_beer {
    display: block;
    left: auto;
    right: 70px;
    bottom: 30%;
    width: 250px;
    z-index: 7;
  }
  .mj_opsec2_beer_pc_wrap {
    display: none;
  }
  .mj_opsec2_beer_mo_wrap {
    display: block;
  }
}

/* ========================================
   Responsive - 425px
   ======================================== */
@media (max-width: 425px) {
  .mj_onepack_sec2 {
    padding-top: 22px;
  }
  .mj_opsec2_paper_back {
    top: 20px;
  }
  .mj_opsec2_deco_left img {
    width: 180px;
  }
  .mj_opsec2_deco_right img {
    width: 44px;
  }
  .mj_opsec2_left {
    padding: 60px 20px 40px 20px;
  }
  .mj_opsec2_badge {
    top: 14px;
    width: 80px;
  }
  .mj_opsec2_txt {
    margin-top: 20px;
  }
  .mj_opsec2_right {
    height: auto;
  }
  .mj_opsec2_rolls {
    height: auto;
  }
  .mj_opsec2_roll {
    flex: none;
    height: 100px;
  }
  .mj_opsec2_food {
    width: 200px;
    bottom: 35%;
  }
  .mj_opsec2_beer {
    width: 200px;
    right: 40px;
    bottom: 35%;
  }
}

/* ========================================
   Responsive - 360px
   ======================================== */
@media (max-width: 360px) {
  .mj_opsec2_wrapper {
    padding-bottom: 40px;
  }
  .mj_opsec2_deco_left img {
    width: 150px;
  }
  .mj_opsec2_deco_right img {
    width: 36px;
  }
  .mj_opsec2_left {
    padding: 28px 0px 60px 16px;
  }
  .mj_opsec2_badge {
    width: 52px;
  }
  .mj_opsec2_roll {
    flex: none;
    height: 90px;
  }
  .mj_opsec2_food {
    width: 180px;
    right: -64px;
    bottom: 40%;
  }
  .mj_opsec2_beer {
    width: 140px;
    right: 44px;
    bottom: 40%;
  }
}

/*========================
New Menu Section End
========================*/

/*========================
Startup Cost Section Start
========================*/

/* ── 섹션 기본 ── */
.mj_startup_cost {
  position: relative;
  overflow: hidden;
  background-color: #8c0000;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* ────────────────────────────
   패럴랙스 배경 레이어 (마우스 트래킹)
──────────────────────────── */
.mj_sc_parallax {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  margin: 0;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.mj_sc_parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ────────────────────────────
   아티클 1: 로열티 비교
──────────────────────────── */
.mj_sc_art1 {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}

/* 상단 가게 배경 */
.mj_sc_art1_store {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 100%;
  margin: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0 0 50% 50%;
}
.mj_sc_art1_store img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 타이틀 영역 */
.mj_sc_art1_title {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 20px 64px;
  color: #fff;
}

/* eyebrow: 위에서 아래로 */
.mj_sc_art1_eyebrow {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.4;

  opacity: 0;
  transform: translateY(-48px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.mj_sc_art1_eyebrow.mj_active {
  opacity: 1;
  transform: translateY(0);
}

.mj_sc_art1_h2 {
  font-family: var(--mj_font_point);
  font-size: 72px;
  font-weight: 400;
  margin: 0;
  color: var(--mj_color_yellow);
  line-height: 1.2;
}
.mj_sc_art1_h2_white {
  color: #fff;
}

/* 한 글자씩 등장 */
.mj_sc_art1_h2 .mj_sc_char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.mj_sc_art1_h2 .mj_sc_char.mj_active {
  opacity: 1;
}
.mj_sc_art1_h2 .mj_sc_char_sp {
  opacity: 1;
}

/* 콘텐츠 영역 */
.mj_sc_art1_content {
  position: relative;
  z-index: 2;
  max-width: var(--mj_container);
  margin: 0 auto;
  padding: 0 40px;
}

/* 음식 이미지 (왼쪽 고정) */
.mj_sc_art1_food {
  position: absolute;
  left: -400px;
  bottom: -130px;
  width: 720px;
  z-index: 10;
  margin: 0;
  pointer-events: none;

  /* 초기 상태 */
  opacity: 0;
  transform: translateX(-44px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.mj_sc_art1_food.mj_active {
  opacity: 1;
  transform: translateX(0);
}
.mj_sc_art1_food img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
}

/* 표 레이어 컨테이너 */
.mj_sc_art1_table_wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* 공통: 레이어 이미지 */
.mj_sc_art1_table_base,
.mj_sc_art1_table_pocha,
.mj_sc_art1_badge {
  margin: 0;
}
.mj_sc_art1_table_base img,
.mj_sc_art1_table_pocha img,
.mj_sc_art1_badge img {
  width: 100%;
  display: block;
}

/* 레이어1: 타 주점 표 (기본) */
.mj_sc_art1_table_base {
  position: relative;
  z-index: 1;
  width: 100%;

  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.mj_sc_art1_table_base.mj_active {
  opacity: 1;
  transform: translateY(0);
}

/* 레이어2: 포차천국 표 (scale 팝인) */
.mj_sc_art1_table_pocha {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;

  opacity: 0;
  transform: scale(1.25);
  transform-origin: center center;
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mj_sc_art1_table_pocha.mj_active {
  opacity: 1;
  transform: scale(1);
}

/* 레이어3: 뱃지 (scale 팝인 + 흔들흔들 반복) */
.mj_sc_art1_badge {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  z-index: 3;

  opacity: 0;
  transform: scale(0) rotate(-15deg);
  transform-origin: center center;
}
.mj_sc_art1_badge.mj_active {
  animation: mj_sc_badge_in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes mj_sc_badge_in {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-15deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.18) rotate(7deg);
  }
  80% {
    transform: scale(0.93) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes mj_sc_badge_pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.03) rotate(-2deg);
  }
  60% {
    transform: scale(0.98) rotate(1.5deg);
  }
}

/* ── 반응형 ── */

/* 1480px */
@media (max-width: 1480px) {
  .mj_sc_art1_eyebrow {
    font-size: 34px;
  }
  .mj_sc_art1_h2 {
    font-size: 60px;
  }
  .mj_sc_art1_food {
    width: 420px;
    left: -120px;
    bottom: -100px;
  }
  .mj_sc_art1_table_wrap {
    max-width: 760px;
  }
}

/* 1280px */
@media (max-width: 1280px) {
  .mj_sc_art1_eyebrow {
    font-size: 28px;
  }
  .mj_sc_art1_h2 {
    font-size: 50px;
  }
  .mj_sc_art1_title {
    padding: 64px 20px 48px;
  }
  .mj_sc_art1_food {
    /* width: 360px; */
    left: -90px;
    bottom: -120px;
  }
  .mj_sc_art1_table_wrap {
    max-width: 660px;
  }
  .mj_sc_art1_content {
    padding: 0 20px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .mj_sc_art1 {
    padding-bottom: 80px;
  }
  .mj_sc_art1_title {
    padding: 52px 20px 40px;
  }
  .mj_sc_art1_eyebrow {
    font-size: 22px;
  }
  .mj_sc_art1_h2 {
    font-size: 40px;
  }
  .mj_sc_art1_food {
    width: 320px;
    left: -100px;
    bottom: -90px;
  }
  .mj_sc_art1_table_wrap {
    max-width: 540px;
  }
  .mj_sc_art1_badge {
    bottom: -36px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .mj_sc_art1 {
    padding-bottom: 60px;
  }
  .mj_sc_art1_title {
    padding: 40px 20px 32px;
  }
  .mj_sc_art1_eyebrow {
    font-size: 18px;
  }
  .mj_sc_art1_h2 {
    font-size: 32px;
  }
  .mj_sc_art1_content {
    padding: 0 16px;
  }
  .mj_sc_art1_food {
    width: 280px;
    left: -70px;
    bottom: -110px;
  }
  .mj_sc_art1_table_wrap {
    max-width: 100%;
    margin: 0 auto;
  }
  .mj_sc_art1_badge {
    bottom: -28px;
  }
}

/* 425px */
@media (max-width: 425px) {
  .mj_sc_art1 {
    padding-bottom: 80px;
  }
  .mj_sc_art1_title {
    padding: 32px 16px 28px;
  }
  .mj_sc_art1_eyebrow {
    font-size: 15px;
  }
  .mj_sc_art1_h2 {
    font-size: 24px;
  }
  .mj_sc_art1_food {
    width: 160px;
    left: -10px;
    bottom: -40px;
  }
  .mj_sc_art1_table_wrap {
    max-width: 100%;
    margin: 0 auto;
  }
  .mj_sc_art1_badge {
    bottom: -24px;
  }
}

/* 360px */
@media (max-width: 360px) {
  .mj_sc_art1_eyebrow {
    font-size: 13px;
  }
  .mj_sc_art1_h2 {
    font-size: 20px;
  }
  .mj_sc_art1_food {
    width: 150px;
    left: -60px;
    bottom: -90px;
  }
  .mj_sc_art1_table_wrap {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ────────────────────────────
   아티클 2: 창업비용표
──────────────────────────── */
.mj_sc_art2 {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
}

/* 타이틀 */
.mj_sc_art2_title {
  text-align: center;
  padding: 0 20px 60px;
  color: #fff;
}

/* 마스크: overflow hidden, max-width 0→full */
.mj_sc_art2_mask {
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  vertical-align: bottom;
  white-space: nowrap;
}
.mj_sc_art2_text {
  display: inline-block;
  white-space: nowrap;
}
.mj_sc_art2_title.mj_active .mj_sc_art2_sub .mj_sc_art2_mask {
  animation: mj_sc_art2_write 0.9s steps(20) forwards;
}
.mj_sc_art2_title.mj_active .mj_sc_art2_h2 .mj_sc_art2_mask {
  animation: mj_sc_art2_write 1.1s steps(26) 0.5s forwards;
}
@keyframes mj_sc_art2_write {
  from {
    max-width: 0;
  }
  to {
    max-width: 1200px;
  }
}

.mj_sc_art2_sub {
  font-family: var(--mj_font_point);
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.mj_sc_art2_h2 {
  font-family: var(--mj_font_point);
  font-size: 72px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.mj_sc_art2_h2 em {
  color: var(--mj_color_yellow);
  font-style: normal;
}

/* 표 영역 */
.mj_sc_art2_tables {
  max-width: var(--mj_container_mid);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 상단 표 + 뱃지 래퍼 */
.mj_sc_art2_table_wrap {
  position: relative;
}

/* 상단 표: 업종변경 */
.mj_sc_art2_table_change {
  display: block;
  width: 100%;
  margin: 0;

  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.mj_sc_art2_table_change.mj_active {
  opacity: 1;
  transform: translateY(0);
}
.mj_sc_art2_table_change picture,
.mj_sc_art2_table_change img {
  width: 100%;
  display: block;
}

/* 뱃지: 상단 표와 같은 크기로 겹치기 */
.mj_sc_art2_badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  pointer-events: none;

  opacity: 0;
  transform: scale(0) rotate(15deg);
  transform-origin: center center;
}
.mj_sc_art2_badge.mj_active {
  animation:
    mj_sc_badge2_in 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    mj_sc_badge2_pulse 2.8s ease-in-out 0.65s infinite;
}
.mj_sc_art2_badge img {
  width: 100%;
  display: block;
}

@keyframes mj_sc_badge2_in {
  0% {
    opacity: 0;
    transform: scale(0) rotate(15deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.18) rotate(-7deg);
  }
  80% {
    transform: scale(0.93) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes mj_sc_badge2_pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.03) rotate(2deg);
  }
  60% {
    transform: scale(0.98) rotate(-1.5deg);
  }
}

/* 하단 표: 신규 */
.mj_sc_art2_table_new {
  display: block;
  width: 100%;
  margin: 0;

  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.mj_sc_art2_table_new.mj_active {
  opacity: 1;
  transform: translateY(0);
}
.mj_sc_art2_table_new img {
  width: 100%;
  display: block;
}

/* ── 반응형 ── */

/* 1480px */
@media (max-width: 1480px) {
  .mj_sc_art2_sub {
    font-size: 44px;
  }
  .mj_sc_art2_h2 {
    font-size: 60px;
  }
}

/* 1280px */
@media (max-width: 1280px) {
  .mj_sc_art2 {
    padding: 80px 0 100px;
  }
  .mj_sc_art2_sub {
    font-size: 36px;
  }
  .mj_sc_art2_h2 {
    font-size: 50px;
  }
  .mj_sc_art2_title {
    padding-bottom: 48px;
  }
  .mj_sc_art2_tables {
    padding: 0 20px;
    gap: 32px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .mj_sc_art2 {
    padding: 60px 0 80px;
  }
  .mj_sc_art2_sub {
    font-size: 28px;
  }
  .mj_sc_art2_h2 {
    font-size: 40px;
  }
  .mj_sc_art2_title {
    padding-bottom: 36px;
  }
  .mj_sc_art2_tables {
    gap: 24px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .mj_sc_art2 {
    padding: 48px 0 60px;
  }
  .mj_sc_art2_sub {
    font-size: 22px;
  }
  .mj_sc_art2_h2 {
    font-size: 30px;
  }
  .mj_sc_art2_title {
    padding: 0 16px 28px;
  }
  .mj_sc_art2_tables {
    padding: 0 16px;
    gap: 20px;
  }
}

/* 425px */
@media (max-width: 425px) {
  .mj_sc_art2 {
    padding: 36px 0 48px;
  }
  .mj_sc_art2_sub {
    font-size: 18px;
  }
  .mj_sc_art2_h2 {
    font-size: 24px;
  }
  .mj_sc_art2_tables {
    padding: 0 12px;
    gap: 16px;
  }
}

/* 360px */
@media (max-width: 360px) {
  .mj_sc_art2_sub {
    font-size: 15px;
  }
  .mj_sc_art2_h2 {
    font-size: 20px;
  }
}

/* ────────────────────────────
   아티클 3: 영업팀 없음
──────────────────────────── */
.mj_sc_art3 {
  position: relative;
  z-index: 2;
  background-color: #f5ede0;
}

/* 물결 이미지 (absolute, article 기준) */
.mj_sc_art3_wave {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}
.mj_sc_art3_wave img {
  width: 100%;
  display: block;
}
.mj_sc_art3_wave_top {
  top: 0;
}
.mj_sc_art3_wave_btm {
  bottom: 0;
  transform: scaleY(-1);
}

/* 음식 이미지 (absolute, 물결 위) */
.mj_sc_art3_food {
  position: absolute;
  right: -170px;
  bottom: -120px;
  width: 640px;
  margin: 0;
  pointer-events: none;
  z-index: 2;

  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.mj_sc_art3_food.mj_active {
  opacity: 1;
  transform: translateX(0);
}
.mj_sc_art3_food img {
  width: 100%;
  display: block;
}

/* 콘텐츠 영역 (카드 위, 음식/물결 위) */
.mj_sc_art3_inner {
  position: relative;
  z-index: 3;
  max-width: 1860px;
  margin: 0 auto;
  padding: 100px 40px 120px;
}

/* 타이틀 영역 */
.mj_sc_art3_title_area {
  text-align: center;
  margin-bottom: 56px;
}

.mj_sc_art3_h2 {
  font-family: var(--mj_font_point);
  font-size: 52px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}
.mj_sc_art3_h2 em {
  color: var(--mj_color_red);
  font-style: normal;
}

.mj_sc_art3_sub {
  font-size: 24px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* 카드 그리드: 440px × 3 + gap 24px */
.mj_sc_art3_cards {
  display: grid;
  grid-template-columns: repeat(3, 440px);
  gap: 24px;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mj_sc_art3_card {
  margin: 0;
}
.mj_sc_art3_card img {
  width: 100%;
  display: block;
}

/* 카드 순차 등장 딜레이 */
.mj_sc_art3_d2 {
  transition-delay: 0.2s;
}
.mj_sc_art3_d3 {
  transition-delay: 0.4s;
}

/* ── 반응형 ── */

/* 1480px */
@media (max-width: 1480px) {
  .mj_sc_art3_h2 {
    font-size: 44px;
  }
  .mj_sc_art3_sub {
    font-size: 20px;
  }
  .mj_sc_art3_food {
    width: 500px;
  }
  .mj_sc_art3_cards {
    grid-template-columns: repeat(3, 360px);
  }
}

/* 1280px */
@media (max-width: 1280px) {
  .mj_sc_art3_inner {
    padding: 48px 20px 60px;
  }
  .mj_sc_art3_h2 {
    font-size: 38px;
  }
  .mj_sc_art3_sub {
    font-size: 18px;
  }
  .mj_sc_art3_food {
    width: 340px;
    right: -100px;
    bottom: -70px;
  }
  .mj_sc_art3_cards {
    grid-template-columns: repeat(3, 280px);
    gap: 16px;
  }
}

/* 1024px */
@media (max-width: 1024px) {
  .mj_sc_art3_h2 {
    /* font-size: 32px; */
  }
  .mj_sc_art3_sub {
    font-size: 16px;
  }
  .mj_sc_art3_food {
    width: 300px;
  }
  .mj_sc_art3_cards {
    grid-template-columns: repeat(3, 210px);
    gap: 12px;
  }
  .mj_sc_art3_title_area {
    margin-bottom: 40px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .mj_sc_art3_inner {
    /* padding: 40px 16px 48px; */
  }
  .mj_sc_art3_h2 {
    /* font-size: 26px; */
  }
  .mj_sc_art3_sub {
    font-size: 15px;
  }
  .mj_sc_art3_food {
    width: 400px;
    right: -80px;
    bottom: -80px;
  }
  .mj_sc_art3_cards {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
  }
  .mj_sc_art3_title_area {
    margin-bottom: 32px;
  }
}

/* 425px */
@media (max-width: 425px) {
  .mj_sc_art3_h2 {
    font-size: 22px;
  }
  .mj_sc_art3_sub {
    font-size: 14px;
  }
  .mj_sc_art3_inner {
    padding: 32px 12px 40px;
  }
  .mj_sc_art3_food {
    /* width: 160px; */
    /* right: 0px; */
    /* bottom: -30px; */
  }
}

/* 360px */
@media (max-width: 360px) {
  .mj_sc_art3_h2 {
    font-size: 18px;
  }
  .mj_sc_art3_sub {
    font-size: 13px;
  }
  .mj_sc_art3_food {
    /* width: 130px; */
    /* right: 0px; */
    /* bottom: -20px; */
  }
}

/*========================
Startup Cost Section End
========================*/
