@charset "utf-8";
/* ==========================================================================
   mj_common.css
   DL CORPORATION Landing - Common
   Author : MJ (문지영)
   --------------------------------------------------------------------------
   1. Variables (Design Token)
   2. Base
   3. Layout (container / section)
   4. Typography
   5. Button
   6. Form
   7. Header
   8. Footer
   9. Floating (side quick / top btn)
   10. Utility
   11. Animation (mj_scroll.js 연동)
   12. Responsive
   ========================================================================== */

/* ==========================================================================
   1. Variables
   ========================================================================== */
:root {
  /* color - base */
  --mj_black: #000000;
  --mj_bg: #08090a;
  --mj_bg_2: #111318;
  --mj_bg_3: #16181f;
  --mj_white: #ffffff;

  /* color - point */
  --mj_point: #4a7dff;
  --mj_point_2: #6fa8ff;
  --mj_point_3: #2f5fe0;
  --mj_point_soft: rgba(74, 125, 255, 0.12);

  /* color - text */
  --mj_txt: #ffffff;
  --mj_txt_2: #c9cdd6;
  --mj_txt_3: #8e94a1;
  --mj_txt_4: #5f6674;
  --mj_txt_dark: #16181f;

  /* color - line */
  --mj_line: rgba(255, 255, 255, 0.1);
  --mj_line_2: rgba(255, 255, 255, 0.18);
  --mj_line_dark: #e5e7eb;

  /* color - etc */
  --mj_card: #ffffff;
  --mj_card_dark: #1a1d25;
  --mj_dim: rgba(0, 0, 0, 0.6);
  --mj_ft_bg: #161618;

  /* font */
  --mj_font:
    'Pretendard', 'Pretendard Variable', -apple-system, BlinkMacSystemFont,
    'Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', sans-serif;
  --mj_font_en: var(--mj_font); /* 전 요소 Pretendard 통일 */

  /* layout */
  --mj_inner: 1360px;
  --mj_inner_s: 1200px;
  --mj_pad: 20px;
  --mj_hd_h: 94px;

  /* radius */
  --mj_r_s: 8px;
  --mj_r: 14px;
  --mj_r_l: 20px;
  --mj_r_full: 999px;

  /* shadow */
  --mj_sh: 0 10px 30px rgba(0, 0, 0, 0.25);
  --mj_sh_l: 0 24px 60px rgba(0, 0, 0, 0.35);

  /* motion */
  --mj_ease: cubic-bezier(0.25, 0.8, 0.35, 1);
  --mj_t: 0.35s var(--mj_ease);
}

/* ==========================================================================
   2. Base
   ========================================================================== */
html,
body {
  width: 100%;
}
body {
  position: relative;
  background: var(--mj_bg);
  color: var(--mj_txt);
  font-family: var(--mj_font);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.6;
}
body.mj_lock {
  overflow: hidden;
}

#wrapper,
#container {
  width: 100%;
}
#container {
  padding: 0;
}

/* 그누보드 기본 요소 정리 */
#hd_login_msg,
#hd_h1,
.to_content {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}

/* ==========================================================================
   3. Layout
   ========================================================================== */
/* --mj_inner = 실제 콘텐츠 폭(1360). 좌우 여백은 별도로 더해짐 */
.mj_inner {
  width: 100%;
  max-width: calc(var(--mj_inner) + var(--mj_pad) * 2);
  margin: 0 auto;
  padding: 0 var(--mj_pad);
}
.mj_inner_s {
  max-width: var(--mj_inner_s);
}
.mj_inner_full {
  max-width: none;
}

.mj_sec {
  position: relative;
  width: 100%;
  padding: 140px 0;
  overflow: hidden;
}
.mj_sec_dark {
  background: var(--mj_bg);
}
.mj_sec_dark2 {
  background: var(--mj_bg_2);
}
.mj_sec_light {
  background: #f5f6f8;
  color: var(--mj_txt_dark);
}

.mj_sec_head_center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   섹션 공통 헤드 : 섹션명 → (12px) → 타이틀 → (24px) → 서브텍스트
   -------------------------------------------------------------------------- */

/* 1. 섹션명 : Pretendard Bold 16 / 100% / 1.32px */
.mj_sec_name {
  display: block;
  color: #2b70d9;
  font-family: var(--mj_font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.0825em; /* 16px 기준 1.32px */
  text-transform: uppercase;
}

/* 2. 타이틀 : Pretendard Bold 44 / 150% / -1.68px */
.mj_sec_tit {
  margin-top: 12px;
  font-family: var(--mj_font);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03818em; /* 44px 기준 -1.68px */
  color: var(--mj_white);
}
.mj_sec_tit_line {
  display: block;
}

/* 타이틀은 다른 요소보다 빠르게 등장 */
.mj_sec_tit[data-mj_ani] {
  transition-duration: 0.55s;
}

/* 등장 후 진한 글씨가 왼쪽 → 오른쪽으로, 위 줄부터 한 줄씩 */
.mj_sec_tit_tx {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.25);
}
.mj_sec_tit_tx::after {
  content: attr(data-tx);
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  color: var(--mj_white);
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
/* is_view 가 붙은 어떤 타이틀에도 적용 (.mj_sec_tit / .mj_sec08_tit 등) */
.is_view .mj_sec_tit_tx::after {
  animation: mjTitWipe 0.6s var(--mj_ease) forwards;
}
.is_view .mj_sec_tit_line:nth-child(1) .mj_sec_tit_tx::after {
  animation-delay: 0.55s;
}
.is_view .mj_sec_tit_line:nth-child(2) .mj_sec_tit_tx::after {
  animation-delay: 1.05s;
}
.is_view .mj_sec_tit_line:nth-child(3) .mj_sec_tit_tx::after {
  animation-delay: 1.55s;
}

/* 3. 서브텍스트 : Pretendard Regular 20 / 160% / -0.32px */
.mj_sec_desc {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--mj_font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.016em; /* 20px 기준 -0.32px */
}

/* ==========================================================================
   4. Typography
   ========================================================================== */
.mj_label {
  display: block;
  margin-bottom: 14px;
  color: var(--mj_point);
  font-family: var(--mj_font_en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mj_tit {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.035em;
}
.mj_tit_l {
  font-size: 54px;
}
.mj_tit_s {
  font-size: 32px;
}
.mj_tit .point {
  color: var(--mj_point_2);
}

.mj_desc {
  margin-top: 22px;
  color: var(--mj_txt_3);
  font-size: 17px;
  line-height: 1.75;
}
.mj_desc_s {
  font-size: 15px;
}

.mj_txt_c {
  text-align: center;
}
.mj_txt_l {
  text-align: left;
}
.mj_txt_r {
  text-align: right;
}

/* ==========================================================================
   5. Button
   ========================================================================== */
.mj_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 34px;
  border-radius: var(--mj_r_full);
  background: var(--mj_point);
  color: var(--mj_white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition:
    background var(--mj_t),
    transform var(--mj_t),
    box-shadow var(--mj_t);
}
.mj_btn:hover {
  background: var(--mj_point_3);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 125, 255, 0.3);
}
.mj_btn:active {
  transform: translateY(0);
}

.mj_btn_line {
  background: transparent;
  border: 1px solid var(--mj_line_2);
  color: var(--mj_white);
}
.mj_btn_line:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--mj_white);
  box-shadow: none;
}

.mj_btn_white {
  background: var(--mj_white);
  color: var(--mj_txt_dark);
}
.mj_btn_white:hover {
  background: #e9ecf2;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.mj_btn_s {
  height: 44px;
  padding: 0 22px;
  font-size: 14px;
}
.mj_btn_l {
  height: 64px;
  padding: 0 44px;
  font-size: 18px;
}
.mj_btn_full {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   6. Form
   ========================================================================== */
.mj_form {
  width: 100%;
}
.mj_form_row + .mj_form_row {
  margin-top: 20px;
}
.mj_form_label {
  display: block;
  margin-bottom: 8px;
  color: var(--mj_txt_dark);
  font-size: 14px;
  font-weight: 600;
}
.mj_form_label .req {
  color: #ff5b5b;
}

.mj_input,
.mj_textarea,
.mj_select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--mj_line_dark);
  border-radius: var(--mj_r_s);
  background: #fff;
  color: var(--mj_txt_dark);
  font-size: 15px;
  transition:
    border-color var(--mj_t),
    box-shadow var(--mj_t);
}
.mj_textarea {
  height: 110px;
  padding: 14px 16px;
  line-height: 1.6;
}
.mj_select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2316181f' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.mj_input:focus,
.mj_textarea:focus,
.mj_select:focus {
  border-color: var(--mj_point);
  box-shadow: 0 0 0 3px var(--mj_point_soft);
}
.mj_input::placeholder,
.mj_textarea::placeholder {
  color: #a8adb8;
}

/* checkbox */
.mj_chk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.mj_chk input[type='checkbox'] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid var(--mj_line_dark);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.mj_chk input[type='checkbox']:checked {
  border-color: var(--mj_point);
  background: var(--mj_point)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.5l3 3 6-6' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
}
.mj_chk_txt {
  color: var(--mj_txt_3);
  font-size: 13px;
}

/* ==========================================================================
   7. Header
   ========================================================================== */
#mj_hd {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--mj_hd_h);
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    background var(--mj_t),
    backdrop-filter var(--mj_t);
}
#mj_hd.is_fixed {
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
}

.mj_hd_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* logo */
.mj_hd_logo {
  display: block;
}
.mj_hd_logo img {
  width: 120px;
  height: auto;
}

/* 우측 영역 */
.mj_hd_util {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 관리자 / 문의내역 (로그인 시에만 노출) - 보더 없는 텍스트 링크 */
.mj_hd_admin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  transition: color var(--mj_t);
}
.mj_hd_admin:hover {
  color: var(--mj_white);
}
.mj_hd_admin i {
  font-size: 13px;
}

/* 우측 CTA 버튼 */
.mj_hd_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--mj_r_full);
  color: var(--mj_white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  transition:
    background var(--mj_t),
    color var(--mj_t),
    border-color var(--mj_t);
}
.mj_hd_btn:hover {
  background: var(--mj_white);
  color: #111;
}

/* ==========================================================================
   8. Footer
   ========================================================================== */
#mj_ft {
  position: relative;
  /* 하단 고정 CTA(60px + 40px) 가림 방지용 여백 포함 */
  padding: 76px 0;
  background: var(--mj_ft_bg);
}

/* logo */
.mj_ft_logo img {
  width: 120px;
  height: auto;
  opacity: 0.62;
}

/* divider */
.mj_ft_line {
  height: 1px;
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.22);
}

/* company */
.mj_ft_cont {
  padding-top: 40px;
}

.mj_ft_name {
  color: var(--mj_white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mj_ft_info {
  margin-top: 26px;
  color: #e5e6e8;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.01em;
}
.mj_ft_info li {
  position: relative;
}
.mj_ft_info span {
  color: inherit;
}
.mj_ft_info a {
  transition: color var(--mj_t);
}
.mj_ft_info a:hover {
  color: var(--mj_point_2);
}

.mj_ft_copy {
  margin-top: 46px;
  color: #7c7f86;
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   9. Floating
   ========================================================================== */
/* 우측 퀵메뉴 (위치 고정) */
.mj_quick {
  position: fixed;
  top: 50%;
  right: 40px;
  z-index: 95;
  transform: translateY(-50%);
  width: 80px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  background: #cfcfd1;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.mj_quick_list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.75);
}

.mj_quick a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 78px;
  color: #1d1d1f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: background var(--mj_t);
}
.mj_quick a:hover {
  background: rgba(255, 255, 255, 0.55);
}
.mj_quick_ico {
  display: block;
  height: 34px;
}
.mj_quick_ico img {
  width: 34px;
  height: 34px;
}
.mj_quick_tx {
  display: block;
  line-height: 1;
}

/* 하단 고정 CTA */
.mj_fixcta {
  position: fixed;
  left: 0;
  bottom: 40px;
  z-index: 95;
  width: 100%;
  padding: 0 var(--mj_pad);
  text-align: center;
  pointer-events: none;

  /* 히어로 키워드가 다 뜬 직후 아래 → 위로 등장 */
  opacity: 0;
  transform: translateY(28px);
  animation: mjHeroIn 0.8s var(--mj_ease) 2.25s forwards;
}
/* 등장 완료 후 : 애니메이션 해제하고 transition 으로 전환 */
.mj_fixcta.is_in {
  animation: none;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition:
    opacity 0.45s var(--mj_ease),
    transform 0.45s var(--mj_ease),
    visibility 0.45s;
}
/* 푸터 진입 시 스르륵 사라짐 */
.mj_fixcta.is_in.is_hide {
  opacity: 0;
  transform: translateY(28px);
  visibility: hidden;
}
.mj_fixcta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 256px;
  height: 60px;
  padding-right: 12px; /* 아이콘 여백 보정 : 좌측 여백 줄임 */
  border: 1px solid #2b70d8;
  border-radius: 12px;
  background: rgba(32, 37, 46, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--mj_white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
  pointer-events: auto;
  transition:
    background var(--mj_t),
    border-color var(--mj_t),
    transform var(--mj_t),
    box-shadow var(--mj_t);
}
.mj_fixcta_btn img {
  width: 25px;
  height: 25px;
  margin-left: -6px;
}
.mj_fixcta_btn:hover {
  background: rgba(43, 112, 216, 0.92);
  border-color: #4a8dff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(43, 112, 216, 0.35);
}

#mj_top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--mj_line);
  color: var(--mj_white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--mj_t),
    transform var(--mj_t),
    visibility var(--mj_t),
    background var(--mj_t);
}
#mj_top.is_show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#mj_top:hover {
  background: var(--mj_point);
  border-color: var(--mj_point);
}

/* scroll progress bar */
#mj_progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 0;
  height: 2px;
  background: var(--mj_point);
  transition: width 0.1s linear;
}

/* ==========================================================================
   10. Utility
   ========================================================================== */
.mj_flex {
  display: flex;
}
.mj_flex_c {
  display: flex;
  align-items: center;
}
.mj_flex_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mj_flex_cc {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mj_col {
  flex-direction: column;
}
.mj_wrap {
  flex-wrap: wrap;
}

.mj_grid {
  display: grid;
  gap: 20px;
}
.mj_grid_2 {
  grid-template-columns: repeat(2, 1fr);
}
.mj_grid_3 {
  grid-template-columns: repeat(3, 1fr);
}
.mj_grid_4 {
  grid-template-columns: repeat(4, 1fr);
}

.mj_mt10 {
  margin-top: 10px;
}
.mj_mt20 {
  margin-top: 20px;
}
.mj_mt30 {
  margin-top: 30px;
}
.mj_mt40 {
  margin-top: 40px;
}
.mj_mt60 {
  margin-top: 60px;
}
.mj_mt80 {
  margin-top: 80px;
}
.mj_mb10 {
  margin-top: 0;
  margin-bottom: 10px;
}
.mj_mb20 {
  margin-bottom: 20px;
}
.mj_mb30 {
  margin-bottom: 30px;
}
.mj_mb40 {
  margin-bottom: 40px;
}
.mj_mb60 {
  margin-bottom: 60px;
}

.mj_rel {
  position: relative;
}
.mj_hide {
  display: none !important;
}
.mj_pc_only {
  display: block;
}
.mj_mo_only {
  display: none;
}

.mj_bg_fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ==========================================================================
   11. Animation (mj_scroll.js 연동)
   ========================================================================== */
[data-mj_ani] {
  opacity: 0;
  transition:
    opacity 0.9s var(--mj_ease),
    transform 0.9s var(--mj_ease);
  transition-delay: var(--mj_delay, 0s);
  will-change: opacity, transform;
}
[data-mj_ani='up'] {
  transform: translateY(40px);
}
[data-mj_ani='down'] {
  transform: translateY(-40px);
}
[data-mj_ani='left'] {
  transform: translateX(40px);
}
[data-mj_ani='right'] {
  transform: translateX(-40px);
}
[data-mj_ani='zoom'] {
  transform: scale(0.94);
}
[data-mj_ani='fade'] {
  transform: none;
}

[data-mj_ani].is_view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ==========================================================================
   12. SEC01 : HERO
   ========================================================================== */
.mj_hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  padding-top: var(--mj_hd_h);
  padding-bottom: 120px;
  background: #08090b;
  overflow: hidden;
}

/* background video */
.mj_hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* 썸네일 (영상 재생 전 / 자동재생 차단 시) */
.mj_hero_thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 영상 : 재생 준비되면 페이드인 */
.mj_hero_video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s var(--mj_ease);
}
.mj_hero_video.is_play {
  opacity: 1;
}
.mj_hero_dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      120% 90% at 50% 40%,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.25) 35%,
      rgba(8, 9, 11, 0.92) 90%,
      #08090b 100%
    );
}

/* content */
.mj_hero_in {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* --------------------------------------------------------------------------
   title
   기본 : 투명한 화이트 / 그 위에 원래 컬러가 왼쪽 → 오른쪽으로 채워짐
   -------------------------------------------------------------------------- */
.mj_hero_tit {
  font-family: var(--mj_font);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.027em; /* 80px 기준 -2.16px */
}
.mj_hero_tit_line {
  display: block;
}

.mj_hero_tit_tx {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.25); /* 바탕 : 투명 화이트 */
}
.mj_hero_tit_tx::after {
  content: attr(data-tx);
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  color: var(--mj_white); /* 채워지는 컬러 */
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  animation: mjTitWipe 1s var(--mj_ease) 0.3s forwards;
}

/* 2번째 줄 : 그라디언트가 좌우로 왔다갔다 */
.mj_hero_tit_point .mj_hero_tit_tx::after {
  background-image: linear-gradient(
    90deg,
    #2b70d9 0%,
    #a8cbff 50%,
    #2b70d9 100%
  );
  background-size: 300% 100%;
  background-position: 0% 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation:
    mjTitWipe 1s var(--mj_ease) 1s forwards,
    mjTitGrad 3.4s ease-in-out 2s infinite alternate;
}

@keyframes mjTitWipe {
  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes mjTitGrad {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 100% 0;
  }
}

/* desc */
.mj_hero_desc {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--mj_font);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(26px);
  animation: mjHeroIn 0.8s var(--mj_ease) 1.45s forwards;
}
.mj_hero_desc b {
  color: inherit;
  font-weight: 700;
}

/* badge */
.mj_hero_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
/* 키워드 : 하나씩 순차로 떠오름 */
.mj_hero_badge li {
  opacity: 0;
  transform: translateY(20px);
  animation: mjHeroIn 0.7s var(--mj_ease) forwards;

  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--mj_font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.mj_hero_badge li:nth-child(1) {
  animation-delay: 1.75s;
}
.mj_hero_badge li:nth-child(2) {
  animation-delay: 1.92s;
}
.mj_hero_badge li:nth-child(3) {
  animation-delay: 2.09s;
}

.mj_hero_badge img {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

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

/* ==========================================================================
   13. SEC01 : REFERENCE
   ========================================================================== */
.mj_sec01 {
  position: relative;
  padding: 120px 0;
  background: var(--mj_bg);
  overflow: hidden;
}

/* 무한 롤링 : 첫 화면만 콘텐츠 좌측 라인에서 시작하고,
   한 칸 넘어간 뒤부터는 여백 없이 뷰포트 전체를 사용 */
.mj_sec01_roll {
  margin-top: 48px;
  overflow: hidden;
}
/* 1920 기준 : 0.5 - 1 - 1 - 1 - 0.5 장이 보이도록
   (카드 4장 + gap 4개 = 화면 폭) */
.mj_sec01_track {
  display: flex;
  gap: 24px;
  width: 100%;
  box-sizing: content-box;
  padding-left: max(var(--mj_pad), calc((100% - var(--mj_inner)) / 2));
  will-change: transform;
}
.mj_sec01_card {
  flex: 0 0 900px;
  width: 900px;
  max-width: calc(100vw - 40px);
  aspect-ratio: 899 / 300;
  border-radius: 16px;
  background: var(--mj_white);
  overflow: hidden;
}
.mj_sec01_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   14. SEC02 : PROBLEM
   ========================================================================== */
.mj_sec02 {
  position: relative;
  padding: 120px 0 230px;
  background: var(--mj_bg);
  overflow: hidden;
}
/* 하단 웨이브 배경 */
.mj_sec02::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 366px;
  background: url('../img/sec02_bg.png') no-repeat center bottom;
  background-size: cover;
  pointer-events: none;
}
.mj_sec02 > .mj_inner {
  position: relative;
  z-index: 1;
}

/* head */
.mj_sec02_head {
  text-align: center;
}

/* sub head */
.mj_sec02_subhead {
  margin-top: 84px;
  color: #b6b6b6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

/* cards */
.mj_sec02_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.mj_sec02_card {
  position: relative;
  height: 320px;
  padding: 40px 44px;
  border-radius: 16px;
  overflow: hidden;
}
.mj_sec02_card1 {
  background: linear-gradient(180deg, #e6ebfe 0%, #e0ebfd 100%);
}
.mj_sec02_card2 {
  background: linear-gradient(180deg, #d2f9fe 0%, #c0deff 100%);
}
.mj_sec02_card3 {
  background: linear-gradient(180deg, #e1fdef 0%, #d7f5f7 100%);
}

/* 카드 제목 : Pretendard Bold 24 / 160% / -0.57px */
.mj_sec02_card_tit {
  position: relative;
  z-index: 1;
  display: block;
  color: #101011;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.02375em; /* 24px 기준 -0.57px */
}
/* 카드 설명 : Pretendard Regular 16 / 160% / -0.57px */
.mj_sec02_card_desc {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: #606060;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.0356em; /* 16px 기준 -0.57px */
}
.mj_sec02_card_ico {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 0;
  width: 130px;
  height: auto;
  transform-origin: 100% 100%;
  transition: transform 0.55s var(--mj_ease);
}
.mj_sec02_card:hover .mj_sec02_card_ico {
  transform: scale(1.12);
}

/* --------------------------------------------------------------------------
   마무리 메시지 : Pretendard Bold 48 / 160% / -0.57px
   기본은 화이트 → 강조 구간만 히어로 그라디언트로 왼쪽부터 채워짐
   -------------------------------------------------------------------------- */
.mj_sec02_msg {
  margin-top: 200px;
  color: var(--mj_white);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.011875em; /* 48px 기준 -0.57px */
  text-align: center;
}
/* 강조 구간 : 흰 글씨 → 그라디언트가 왼쪽부터 칠해짐
   (레이어를 겹치지 않고 배경 한 장을 밀어서 흰 테두리가 생기지 않음) */
.mj_sec02_msg_point {
  background-image: linear-gradient(
    90deg,
    #2b70d9 0%,
    #a8cbff 49.9%,
    #ffffff 50%,
    #ffffff 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0; /* 처음엔 흰색 구간 */
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.mj_sec02_msg.is_view .mj_sec02_msg_point {
  animation: mjMsgFill 0.7s var(--mj_ease) forwards;
}
.mj_sec02_msg.is_view .mj_sec02_msg_point:nth-of-type(1) {
  animation-delay: 0.2s;
}
.mj_sec02_msg.is_view .mj_sec02_msg_point:nth-of-type(2) {
  animation-delay: 0.65s;
}

/* 2번째 강조 : 그라디언트 좌우 반전 */
.mj_sec02_msg_point:nth-of-type(2) {
  background-image: linear-gradient(
    90deg,
    #a8cbff 0%,
    #2b70d9 49.9%,
    #ffffff 50%,
    #ffffff 100%
  );
}

@keyframes mjMsgFill {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: 0% 0;
  }
}

/* ==========================================================================
   15. SEC03 : DIFFERENCE
   ========================================================================== */
.mj_sec03 {
  position: relative;
  padding: 120px 0 160px;
  background: var(--mj_bg) url('../img/sec03_bg.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.mj_sec03_grid {
  display: grid;
  grid-template-columns: 1fr 588px;
  gap: 60px;
  align-items: start;
}

/* 오른쪽 : 본문 블록 + 강조 블록 (gap 60) */
.mj_sec03_right {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 34px; /* 좌측 타이틀 라인에 맞춤 */
}

/* 본문 : Pretendard Regular 22 / 160% / -0.32px */
.mj_sec03_tx {
  color: var(--mj_white);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01455em; /* 22px 기준 -0.32px */
}

/* 강조 : Pretendard Bold 32 / 160% / -0.32px
   한 줄씩 아래에서 밀려 올라오는 마스크 슬라이드업 */
.mj_sec03_strong {
  color: var(--mj_white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em; /* 32px 기준 -0.32px */
}
.mj_sec03_strong_line {
  display: block;
  overflow: hidden;
}
.mj_sec03_strong_tx {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
}
.mj_sec03_strong.is_view .mj_sec03_strong_tx {
  animation: mjLineUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mj_sec03_strong.is_view
  .mj_sec03_strong_line:nth-child(1)
  .mj_sec03_strong_tx {
  animation-delay: 0.15s;
}
.mj_sec03_strong.is_view
  .mj_sec03_strong_line:nth-child(2)
  .mj_sec03_strong_tx {
  animation-delay: 0.3s;
}

@keyframes mjLineUp {
  from {
    opacity: 0;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   16. SEC04 : REWARD
   ========================================================================== */
.mj_sec04 {
  position: relative;
  padding: 120px 0;
  background: var(--mj_bg);
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   STEP FLOW
   -------------------------------------------------------------------------- */
.mj_sec04_step {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}
.mj_sec04_step_item {
  flex: 0 0 100px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mj_sec04_step_arrow {
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  height: 100px;
}
.mj_sec04_step_arrow img {
  width: 46px;
}

.mj_sec04_step_ico {
  display: block;
}
.mj_sec04_step_ico img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.4));
}
.mj_sec04_step_no {
  display: block;
  margin-top: 17px;
  color: #2b70d9;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.mj_sec04_step_name {
  display: block;
  margin-top: 9px;
  color: var(--mj_white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   질문 / 말풍선 / 결론
   -------------------------------------------------------------------------- */
/* Pretendard Bold 32 / 150% / -1.68px */
.mj_sec04_q {
  margin-top: 160px;
  color: var(--mj_white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.0525em; /* 32px 기준 -1.68px */
  text-align: center;
}

.mj_sec04_bubble {
  position: relative;
  height: 190px;
  margin-top: 68px;
}
.mj_sec04_bubble > span {
  position: absolute;
  display: block;
}
.mj_sec04_bubble img {
  width: 100%;
  height: auto;
}
/* 1360 기준 : 156 / 527 / 886px, 폭 312 / 312 / 351px */
.mj_sec04_bubble1 {
  left: 11.47%;
  top: 35%;
  width: 22.94%;
}
.mj_sec04_bubble2 {
  left: 38.75%;
  top: 0;
  width: 22.94%;
}
.mj_sec04_bubble3 {
  left: 65.15%;
  top: 39%;
  width: 25.81%;
}
/* 좌우 말풍선 기울기 */
.mj_sec04_bubble1 img {
  transform: rotate(-6.5deg);
}
.mj_sec04_bubble3 img {
  transform: rotate(2.2deg);
}

/* 아래로 갈수록 진해지는 라인 : 위 → 아래로 그려짐 */
.mj_sec04_line {
  display: block;
  width: 1px;
  height: 124px;
  margin: 10px auto 0;
  background: linear-gradient(
    180deg,
    rgba(86, 86, 86, 0) 0%,
    rgba(86, 86, 86, 1) 100%
  );
  transform: scaleY(0);
  transform-origin: 50% 0;
}
.mj_sec04_line.is_view {
  animation: mjLineDraw 1.05s var(--mj_ease) forwards;
}

@keyframes mjLineDraw {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

/* Pretendard Bold 28.87 / 150% / -1.52px */
.mj_sec04_r {
  margin-top: 40px;
  color: var(--mj_white);
  font-size: 28.87px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.05265em; /* 28.87px 기준 -1.52px */
  text-align: center;
}
/* Pretendard Regular 20 / 160% / -0.32px */
.mj_sec04_rdesc {
  margin-top: 24px;
  color: var(--mj_white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.016em;
  text-align: center;
}

/* --------------------------------------------------------------------------
   카드
   -------------------------------------------------------------------------- */
.mj_sec04_list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.mj_sec04_card {
  position: relative;
  flex: 0 0 425px;
  width: 425px;
  height: 310px;
  padding: 24px 24px 40px 32px; /* 좌32 상24 우24 하40 */
  border: 1px solid #3d3d3d;
  border-radius: 16px;
  background-color: #14161a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
/* 배경 이미지 : hover 시 확대 */
.mj_sec04_card_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.7s var(--mj_ease);
}
.mj_sec04_card:hover .mj_sec04_card_bg {
  transform: scale(1.08);
}
/* Pretendard Bold 40 / 150% / -1.61px */
.mj_sec04_card_num {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: var(--mj_white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.04025em; /* 40px 기준 -1.61px */
}
/* Pretendard Bold 24 / 130% / 0 */
.mj_sec04_card_tit {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: var(--mj_white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}
/* Pretendard Regular 18 / 130% / 0 / #fff 80% */
.mj_sec04_card_desc {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

/* ==========================================================================
   17. SEC05 : PROCESS
   ========================================================================== */
.mj_sec05 {
  position: relative;
  padding: 120px 0;
  background: var(--mj_bg);
  overflow: hidden;
}

/* 카드 321 x 340 / gap 25 / radius 16 / padding 0 32 40 */
.mj_sec05_list {
  display: flex;
  gap: 25px;
  margin-top: 60px;
}
.mj_sec05_card {
  flex: 1 1 0;
  min-width: 0;
  height: 340px;
  padding: 0 32px 40px;
  border-radius: 16px;
  background: var(--mj_white);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* hover 는 box-shadow 만 (transition 단축속성을 쓰면
   [data-mj_ani] 의 transition-delay 가 덮어써져 순차 등장이 깨짐) */
.mj_sec05_card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.mj_sec05_card_ico {
  display: block;
  width: 196px;
  max-width: 100%;
  margin: 0 auto;
}
.mj_sec05_card_ico img {
  width: 100%;
  height: auto;
  transition: transform 0.55s var(--mj_ease);
}
.mj_sec05_card:hover .mj_sec05_card_ico img {
  transform: scale(1.1);
}

/* Pretendard Bold 24 / 130% / 0 / #222222 */
.mj_sec05_card_tit {
  display: block;
  margin-top: 20px;
  color: #222222;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}
/* Pretendard Regular 16 / 130% / 0 / #222222 80% */
.mj_sec05_card_desc {
  margin-top: 10px;
  color: rgba(34, 34, 34, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

/* ==========================================================================
   18. SEC06 : DIAGNOSIS
   ========================================================================== */
.mj_sec06 {
  position: relative;
  padding: 120px 0;
  background: var(--mj_bg) url('../img/sec06_cardBg.jpg') no-repeat center
    center;
  background-size: cover;
  overflow: hidden;
}

/* 펼쳐지는 패널 */
.mj_sec06_list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.mj_sec06_item {
  position: relative;
  flex: 0 0 147px;
  height: 320px;
  border: 1px solid #3d3d3d;
  border-radius: 16px;
  background-color: #1a1c20;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
  transition: flex-basis 0.6s var(--mj_ease);
}
.mj_sec06_item.is_active {
  flex-basis: 632px;
  cursor: default;
}

.mj_sec06_item_in {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 10px;
  transform: translateY(-50%);
  text-align: center;
}
/* 접힘 : 패널 폭 안에 들어가도록 축소 */
.mj_sec06_item_tit {
  display: block;
  color: var(--mj_white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.0525em;
  white-space: nowrap;
  transition: font-size 0.5s var(--mj_ease);
}
/* 펼침 : Pretendard Bold 32 / 150% / -1.68px */
.mj_sec06_item.is_active .mj_sec06_item_tit {
  font-size: 32px;
}

/* Pretendard Regular 18 / 160% / -0.32px */
.mj_sec06_item_desc {
  margin-top: 0;
  max-height: 0;
  color: var(--mj_white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01778em; /* 18px 기준 -0.32px */
  opacity: 0;
  overflow: hidden;
  transition:
    opacity 0.4s var(--mj_ease),
    max-height 0.5s var(--mj_ease),
    margin-top 0.5s var(--mj_ease);
}
.mj_sec06_item.is_active .mj_sec06_item_desc {
  margin-top: 48px;
  max-height: 120px;
  opacity: 1;
  transition-delay: 0.15s, 0s, 0s;
}

/* ==========================================================================
   19. SEC07 : CHECK
   ========================================================================== */
.mj_sec07 {
  position: relative;
  padding: 120px 0;
  background: var(--mj_bg);
  overflow: hidden;
}

/* 좌측 하단 대형 워터마크 로고 */
.mj_sec07_mark {
  position: absolute;
  left: 30px;
  bottom: 0;
  z-index: 0;
  width: 690px;
  opacity: 0.04;
  pointer-events: none;
}
.mj_sec07_mark img {
  width: 100%;
  height: auto;
}

.mj_sec07_grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 680px;
  gap: 60px;
  align-items: start;
}
/* 섹션명이 없는 섹션이라 타이틀 상단 여백 제거 → 첫 박스와 상단 맞춤 */
.mj_sec07_left {
  padding-top: 0;
}
.mj_sec07_left .mj_sec_tit {
  margin-top: 0;
}

/* 체크 리스트 */
.mj_sec07_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mj_sec07_item {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 25px;
  border-radius: 12px;
  background: var(--mj_white);
}
.mj_sec07_item img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
.mj_sec07_item span {
  color: #212121;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
/* 등장이 끝난 뒤에만 hover 트랜지션 적용 (stagger 지연과 충돌 방지) */
.mj_sec07_item.is_done {
  transition:
    transform 0.3s var(--mj_ease),
    box-shadow 0.3s var(--mj_ease);
  transition-delay: 0s;
}
.mj_sec07_item.is_done:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   20. SEC08 : CONTACT (CTA)
   ========================================================================== */
.mj_sec08 {
  position: relative;
  padding: 99px 0 98px;
  background: var(--mj_bg) url('../img/cta_bg.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.mj_sec08_grid {
  display: grid;
  grid-template-columns: 1fr 511px;
  gap: 60px;
  align-items: start;
}
.mj_sec08_left {
  padding-top: 22px;
}

.mj_sec08_label {
  display: block;
  color: #9e9e9f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
}
.mj_sec08_tit {
  margin-top: 12px;
  color: var(--mj_white);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.54;
  letter-spacing: -0.035em;
}
.mj_sec08_desc {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.016em;
}

/* --------------------------------------------------------------------------
   문의 폼
   -------------------------------------------------------------------------- */
.mj_sec08_form {
  padding: 60px 48px 40px; /* 좌우48 상60 하40 */
  border-radius: 20px;
  background: var(--mj_white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.mj_sec08_form .mj_form_row + .mj_form_row {
  margin-top: 20px;
}

.mj_sec08_form .mj_form_label {
  margin-bottom: 10px;
  color: #212121;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.mj_sec08_form .mj_form_label .req {
  color: #2b70d9;
}

.mj_sec08_form .mj_input,
.mj_sec08_form .mj_textarea {
  height: 50px;
  padding: 0 18px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  background: #f8f8f8;
  color: #212121;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.mj_sec08_form .mj_textarea {
  height: 100px;
  padding: 15px 18px;
}
.mj_sec08_form .mj_input::placeholder,
.mj_sec08_form .mj_textarea::placeholder {
  color: #9a9a9a;
  opacity: 1;
}
.mj_sec08_form .mj_input:focus,
.mj_sec08_form .mj_textarea:focus {
  border-color: #2b70d9;
  background: var(--mj_white);
  box-shadow: 0 0 0 3px rgba(43, 112, 217, 0.12);
}

/* 2열 배치 */
.mj_sec08_form .mj_form_col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mj_sec08_form .mj_form_cell {
  min-width: 0;
}

/* --------------------------------------------------------------------------
   커스텀 드롭다운
   -------------------------------------------------------------------------- */
.mj_sel {
  position: relative;
}
/* 실제 값 전송용 (숨김, 검증 포커스는 가능) */
.mj_sel_native {
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* 버튼 */
.mj_sel_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border: 1px solid #ececec;
  border-radius: 10px;
  background: #f8f8f8;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s var(--mj_ease), background 0.25s var(--mj_ease),
    box-shadow 0.25s var(--mj_ease);
}
.mj_sel_btn:hover {
  border-color: #dcdcdc;
  background: #f4f4f4;
}
.mj_sel.is_open .mj_sel_btn,
.mj_sel_btn:focus-visible {
  border-color: #2b70d9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(43, 112, 217, 0.14);
}
.mj_sel.is_sel .mj_sel_btn {
  border-color: #d9e6fa;
  background: #fff;
}

.mj_sel_tx {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  color: #212121;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mj_sel_tx.is_ph {
  color: #9a9a9a;
  font-weight: 400;
}

.mj_sel_ico {
  flex: 0 0 12px;
  color: #a5a5a5;
  transition: transform 0.3s var(--mj_ease), color 0.25s var(--mj_ease);
}
.mj_sel.is_open .mj_sel_ico {
  color: #2b70d9;
  transform: rotate(180deg);
}
.mj_sel.is_sel .mj_sel_ico {
  color: #2b70d9;
}

/* 목록 */
.mj_sel_list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 20;
  width: 100%;
  max-height: 230px;
  padding: 6px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  overflow-y: auto;
  transition: opacity 0.24s var(--mj_ease), transform 0.24s var(--mj_ease),
    visibility 0.24s var(--mj_ease);
}
.mj_sel.is_open .mj_sel_list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mj_sel_opt {
  padding: 12px 14px;
  border-radius: 7px;
  color: #4d4d4d;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: background 0.2s var(--mj_ease), color 0.2s var(--mj_ease);
}
.mj_sel_opt:hover,
.mj_sel_opt.is_focus {
  background: #f2f6fd;
  color: #212121;
}
.mj_sel_opt.is_on {
  background: rgba(43, 112, 217, 0.1);
  color: #2b70d9;
  font-weight: 700;
}

/* 목록 스크롤바 */
.mj_sel_list::-webkit-scrollbar {
  width: 6px;
}
.mj_sel_list::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #dcdcdc;
}

.mj_sec08_agree {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.mj_sec08_agree_more {
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s var(--mj_ease);
}
.mj_sec08_agree_more:hover {
  color: #2b70d9;
}
.mj_sec08_agree .mj_chk_tx {
  color: #545454;
  font-size: 15px;
  letter-spacing: -0.03em;
}
.mj_sec08_agree input[type='checkbox'] {
  border-color: #d8d8d8;
}
.mj_sec08_agree input[type='checkbox']:checked {
  border-color: #2b70d9;
  background-color: #2b70d9;
}

.mj_sec08_submit {
  display: block;
  width: 122px;
  height: 46px;
  margin: 40px auto 0;
  border-radius: 6px;
  background: #3c74e4;
  color: var(--mj_white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition:
    background var(--mj_t),
    transform var(--mj_t);
}
.mj_sec08_submit:hover {
  background: #2b70d9;
  transform: translateY(-2px);
}
.mj_sec08_submit:disabled {
  opacity: 0.6;
  transform: none;
}

/* ==========================================================================
   21. 공통 모달 (개인정보 수집 동의 등)
   ========================================================================== */
.mj_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--mj_ease), visibility 0.3s var(--mj_ease);
}
.mj_modal.is_open {
  opacity: 1;
  visibility: visible;
}

.mj_modal_box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  max-height: 84vh;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s var(--mj_ease);
  overflow: hidden;
}
.mj_modal.is_open .mj_modal_box {
  transform: translateY(0) scale(1);
}

.mj_modal_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid #ececec;
}
.mj_modal_tit {
  color: #111;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.mj_modal_close {
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #888;
  transition: background 0.25s, color 0.25s;
}
.mj_modal_close:hover {
  background: #f2f2f2;
  color: #111;
}

.mj_modal_body {
  flex: 1 1 auto;
  padding: 26px 32px;
  overflow-y: auto;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.03em;
}
.mj_modal_lead {
  padding-bottom: 20px;
  border-bottom: 1px dashed #e2e2e2;
  color: #555;
}
.mj_modal_body h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}
.mj_modal_body ul li {
  position: relative;
  padding-left: 12px;
}
.mj_modal_body ul li + li {
  margin-top: 4px;
}
.mj_modal_body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b5b5b5;
}
.mj_modal_body b {
  color: #111;
  font-weight: 700;
}
.mj_modal_info li {
  padding-left: 0;
  color: #666;
  font-size: 14px;
}
.mj_modal_info li::before {
  display: none;
}
.mj_modal_body a {
  color: #2b70d9;
}
.mj_modal_body a:hover {
  text-decoration: underline;
}

.mj_modal_foot {
  padding: 18px 32px 26px;
  border-top: 1px solid #ececec;
  text-align: center;
}
.mj_modal_btn {
  min-width: 132px;
  height: 46px;
  padding: 0 26px;
  border-radius: 8px;
  background: #3c74e4;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: background 0.25s;
}
.mj_modal_btn:hover {
  background: #2b70d9;
}


/* ==========================================================================
   22. Responsive
   ========================================================================== */
@media (max-width: 1280px) {
  .mj_sec {
    padding: 120px 0;
  }
  .mj_tit {
    font-size: 38px;
  }
  .mj_tit_l {
    font-size: 46px;
  }

  .mj_hero_tit {
    font-size: 64px;
  }
  .mj_hero_desc {
    font-size: 21px;
  }
}

@media (max-width: 1024px) {
  :root {
    --mj_hd_h: 74px;
  }
  .mj_sec {
    padding: 100px 0;
  }
  .mj_tit {
    font-size: 32px;
  }
  .mj_tit_l {
    font-size: 38px;
  }
  .mj_tit_s {
    font-size: 26px;
  }
  .mj_desc {
    font-size: 16px;
  }
  .mj_grid_4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .mj_hd_logo img {
    width: 104px;
  }
  .mj_hd_btn {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  .mj_quick {
    right: 16px;
    width: 68px;
  }
  .mj_quick a {
    height: 68px;
    font-size: 11px;
    gap: 4px;
  }
  .mj_quick_ico,
  .mj_quick_ico img {
    width: 28px;
    height: 28px;
  }

  .mj_hero {
    padding-bottom: 110px;
  }
  .mj_hero_tit {
    font-size: 48px;
  }
  .mj_hero_desc {
    font-size: 18px;
  }

  .mj_sec01 {
    padding: 90px 0;
  }
  .mj_sec_tit {
    font-size: 34px;
  }
  .mj_sec01_roll {
    margin-top: 36px;
  }

  .mj_sec02 {
    padding: 90px 0 170px;
  }
  .mj_sec_desc {
    font-size: 17px;
  }
  .mj_sec02_subhead {
    margin-top: 60px;
    font-size: 18px;
  }
  .mj_sec02_card {
    height: 290px;
    padding: 32px 30px;
  }
  .mj_sec02_card_tit {
    font-size: 20px;
  }
  .mj_sec02_card_desc {
    font-size: 15px;
  }
  .mj_sec02_card_ico {
    width: 104px;
    right: 14px;
    bottom: 14px;
  }
  .mj_sec02_msg {
    margin-top: 150px;
    font-size: 36px;
  }

  .mj_sec03 {
    padding: 90px 0 110px;
  }
  .mj_sec03_grid {
    grid-template-columns: 1fr 460px;
    gap: 40px;
  }
  .mj_sec03_right {
    gap: 44px;
    padding-top: 28px;
  }
  .mj_sec03_tx {
    font-size: 18px;
  }
  .mj_sec03_strong {
    font-size: 26px;
  }

  .mj_sec04 {
    padding: 90px 0;
  }
  .mj_sec04_step {
    gap: 34px;
  }
  .mj_sec04_step_item {
    flex: 0 0 84px;
    width: 84px;
  }
  .mj_sec04_step_ico img {
    width: 84px;
    height: 84px;
  }
  .mj_sec04_step_arrow {
    flex: 0 0 34px;
    height: 84px;
  }
  .mj_sec04_step_arrow img {
    width: 34px;
  }
  .mj_sec04_step_no {
    margin-top: 14px;
    font-size: 14px;
  }
  .mj_sec04_step_name {
    font-size: 19px;
  }
  .mj_sec04_q {
    margin-top: 110px;
    font-size: 26px;
  }
  .mj_sec04_bubble {
    height: 150px;
    margin-top: 50px;
  }
  .mj_sec04_r {
    font-size: 23px;
  }
  .mj_sec04_rdesc {
    font-size: 17px;
  }
  .mj_sec04_list {
    gap: 14px;
  }
  .mj_sec04_card {
    flex: 1 1 0;
    width: auto;
    height: 280px;
    padding: 20px 20px 32px 24px;
  }
  .mj_sec04_card_num {
    font-size: 34px;
  }
  .mj_sec04_card_tit {
    font-size: 21px;
  }
  .mj_sec04_card_desc {
    font-size: 16px;
  }

  .mj_sec05 {
    padding: 90px 0;
  }
  .mj_sec05_list {
    gap: 18px;
    margin-top: 44px;
  }
  .mj_sec05_card {
    height: 300px;
    padding: 0 22px 30px;
  }
  .mj_sec05_card_ico {
    width: 150px;
  }
  .mj_sec05_card_tit {
    margin-top: 16px;
    font-size: 20px;
  }
  .mj_sec05_card_desc {
    margin-top: 8px;
    font-size: 14px;
  }

  .mj_sec06 {
    padding: 90px 0;
  }
  .mj_sec06_list {
    gap: 14px;
    margin-top: 44px;
  }
  .mj_sec06_item {
    flex: 0 0 118px;
    height: 280px;
  }
  .mj_sec06_item.is_active {
    flex-basis: 480px;
  }
  .mj_sec06_item_tit {
    font-size: 16px;
  }
  .mj_sec06_item.is_active .mj_sec06_item_tit {
    font-size: 26px;
  }
  .mj_sec06_item_desc {
    font-size: 15px;
  }
  .mj_sec06_item.is_active .mj_sec06_item_desc {
    margin-top: 32px;
  }

  .mj_sec07 {
    padding: 90px 0;
  }
  .mj_sec07_grid {
    grid-template-columns: 1fr 520px;
    gap: 40px;
  }
  .mj_sec07_mark {
    width: 520px;
    left: 16px;
  }
  .mj_sec07_item {
    height: 56px;
    padding: 0 20px;
    gap: 12px;
  }
  .mj_sec07_item span {
    font-size: 16px;
  }

  .mj_sec08 {
    padding: 80px 0;
  }
  .mj_sec08_grid {
    grid-template-columns: 1fr 460px;
    gap: 40px;
  }
  .mj_sec08_tit {
    font-size: 40px;
    line-height: 1.45;
  }
  .mj_sec08_desc {
    font-size: 17px;
  }
  .mj_sec08_form {
    padding: 40px 34px 36px;
  }
  /* 0.5 - 1 - 1 - 0.5 (3장분) */
  .mj_sec01_track {
    gap: 20px;
  }
  .mj_sec01_card {
    flex: 0 0 700px;
    width: 700px;
  }
  .mj_hero_badge {
    margin-top: 32px;
    gap: 10px;
  }
  .mj_hero_badge li {
    font-size: 15px;
  }
  .mj_hero_badge img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  :root {
    --mj_pad: 18px;
  }

  .mj_sec {
    padding: 80px 0;
  }
  .mj_sec_head {
    margin-bottom: 40px;
  }

  .mj_tit {
    font-size: 26px;
  }
  .mj_tit_l {
    font-size: 30px;
  }
  .mj_tit_s {
    font-size: 22px;
  }
  .mj_desc {
    margin-top: 16px;
    font-size: 14px;
  }
  .mj_label {
    font-size: 11px;
  }

  .mj_btn {
    height: 50px;
    padding: 0 26px;
    font-size: 15px;
  }
  .mj_btn_l {
    height: 56px;
    padding: 0 32px;
    font-size: 16px;
  }

  .mj_grid {
    gap: 12px;
  }
  .mj_grid_2,
  .mj_grid_3,
  .mj_grid_4 {
    grid-template-columns: 1fr;
  }

  .mj_pc_only {
    display: none;
  }
  .mj_mo_only {
    display: block;
  }

  #mj_ft {
    padding: 50px 0 100px;
  }
  .mj_ft_logo img {
    width: 96px;
  }
  .mj_ft_line {
    margin-top: 20px;
  }
  .mj_ft_cont {
    padding-top: 28px;
  }
  .mj_ft_name {
    font-size: 14px;
  }
  .mj_ft_info {
    margin-top: 18px;
    font-size: 13px;
    line-height: 24px;
  }
  .mj_ft_copy {
    margin-top: 30px;
    font-size: 12px;
  }

  /* 헤더 */
  :root {
    --mj_hd_h: 62px;
  }
  .mj_hd_logo img {
    width: 88px;
  }
  .mj_hd_util {
    gap: 6px;
  }
  .mj_hd_btn {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }
  .mj_hd_admin {
    height: 36px;
    padding: 0 6px;
    font-size: 12px;
    gap: 4px;
  }
  .mj_hd_admin span {
    display: none;
  } /* 좁은 화면에선 아이콘만 */

  /* 퀵메뉴 : 하단 CTA 위로 가로 배치 */
  .mj_quick {
    top: auto;
    right: 12px;
    bottom: 92px;
    width: 60px;
    transform: none;
    border-radius: 12px;
  }
  .mj_quick a {
    height: 58px;
    gap: 3px;
    font-size: 10px;
  }
  .mj_quick_ico,
  .mj_quick_ico img {
    width: 24px;
    height: 24px;
  }

  /* 하단 고정 CTA */
  .mj_fixcta {
    bottom: 16px;
    padding: 0 14px;
  }
  .mj_fixcta_btn {
    width: 100%;
    max-width: 340px;
    height: 54px;
    gap: 8px;
    font-size: 15px;
  }
  .mj_fixcta_btn img {
    width: 21px;
    height: 21px;
  }

  #mj_top {
    display: none;
  }

  /* 히어로 */
  .mj_hero {
    padding-bottom: 130px;
  }
  .mj_hero_tit {
    font-size: 28px;
  }
  .mj_hero_desc {
    font-size: 14px;
  }
  .mj_hero_badge {
    gap: 8px 10px;
    margin-top: 26px;
    flex-wrap: wrap;
  }
  .mj_hero_badge li {
    font-size: 13px;
  }
  .mj_hero_badge img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  /* SEC01 */
  .mj_sec01 {
    padding: 70px 0;
  }
  .mj_sec_name {
    font-size: 13px;
  }
  .mj_sec_tit {
    font-size: 22px;
  }
  .mj_sec01_roll {
    margin-top: 28px;
  }
  /* 0.5 - 1 - 0.5 (2장분) */
  .mj_sec01_track {
    gap: 12px;
  }
  .mj_sec01_card {
    flex: 0 0 calc(100% - 60px);
    width: calc(100% - 60px);
    border-radius: 12px;
  }

  /* SEC02 */
  .mj_sec02 {
    padding: 70px 0 120px;
  }
  .mj_sec02::after {
    height: 220px;
  }
  .mj_sec_desc {
    font-size: 14px;
  }
  .mj_sec02_subhead {
    margin-top: 46px;
    font-size: 16px;
  }
  .mj_sec02_list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }
  .mj_sec02_card {
    height: auto;
    min-height: 200px;
    padding: 26px 24px;
    border-radius: 14px;
  }
  .mj_sec02_card_tit {
    font-size: 18px;
  }
  .mj_sec02_card_desc {
    margin-top: 10px;
    font-size: 14px;
  }
  .mj_sec02_card_ico {
    width: 88px;
    right: 12px;
    bottom: 12px;
  }
  .mj_sec02_msg {
    margin-top: 90px;
    font-size: 22px;
  }

  /* SEC03 */
  .mj_sec03 {
    padding: 70px 0 80px;
  }
  .mj_sec03_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mj_sec03_right {
    gap: 30px;
    padding-top: 0;
  }
  .mj_sec03_tx {
    font-size: 15px;
  }
  .mj_sec03_strong {
    font-size: 19px;
  }

  /* SEC04 */
  .mj_sec04 {
    padding: 70px 0;
  }
  .mj_sec04_step {
    gap: 8px;
    margin-top: 40px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .mj_sec04_step_item {
    flex: 0 0 62px;
    width: 62px;
  }
  .mj_sec04_step_ico img {
    width: 62px;
    height: 62px;
  }
  .mj_sec04_step_arrow {
    flex: 0 0 20px;
    height: 62px;
  }
  .mj_sec04_step_arrow img {
    width: 20px;
  }
  .mj_sec04_step_no {
    margin-top: 10px;
    font-size: 11px;
  }
  .mj_sec04_step_name {
    font-size: 14px;
  }

  .mj_sec04_q {
    margin-top: 70px;
    font-size: 20px;
  }

  /* 말풍선 : 세로 정렬 */
  .mj_sec04_bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: auto;
    margin-top: 34px;
  }
  .mj_sec04_bubble > span {
    position: static;
    width: auto;
    max-width: 88%;
  }
  .mj_sec04_bubble1 {
    align-self: flex-start;
  }
  .mj_sec04_bubble3 {
    align-self: flex-end;
  }
  .mj_sec04_line {
    height: 70px;
    margin-top: 10px;
  }

  .mj_sec04_r {
    font-size: 19px;
  }
  .mj_sec04_rdesc {
    margin-top: 16px;
    font-size: 14px;
  }

  .mj_sec04_list {
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }
  .mj_sec04_card {
    flex: 0 0 auto;
    width: 100%;
    height: 250px;
    padding: 18px 18px 26px 22px;
  }
  .mj_sec04_card_num {
    margin-bottom: 6px;
    font-size: 28px;
  }
  .mj_sec04_card_tit {
    margin-bottom: 6px;
    font-size: 18px;
  }
  .mj_sec04_card_desc {
    font-size: 14px;
  }

  /* SEC05 */
  .mj_sec05 {
    padding: 70px 0;
  }
  .mj_sec05_list {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
  .mj_sec05_card {
    flex: 1 1 calc(50% - 6px);
    min-width: calc(50% - 6px);
    height: auto;
    padding: 0 18px 24px;
  }
  .mj_sec05_card:hover {
    box-shadow: none;
  }
  .mj_sec05_card_ico {
    width: 120px;
  }
  .mj_sec05_card_tit {
    margin-top: 12px;
    font-size: 16px;
  }
  .mj_sec05_card_desc {
    margin-top: 6px;
    font-size: 13px;
  }

  /* SEC06 : 세로 아코디언 */
  .mj_sec06 {
    padding: 70px 0;
  }
  .mj_sec06_list {
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }
  .mj_sec06_item {
    flex: 0 0 78px;
    height: auto;
    border-radius: 12px;
    transition: flex-basis 0.5s var(--mj_ease);
  }
  .mj_sec06_item.is_active {
    flex-basis: 190px;
  }
  .mj_sec06_item_tit {
    font-size: 17px;
  }
  .mj_sec06_item.is_active .mj_sec06_item_tit {
    font-size: 21px;
  }
  .mj_sec06_item_desc {
    font-size: 14px;
  }
  .mj_sec06_item.is_active .mj_sec06_item_desc {
    margin-top: 14px;
  }

  /* SEC07 */
  .mj_sec07 {
    padding: 70px 0;
  }
  .mj_sec07_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mj_sec07_left {
    padding-top: 0;
  }
  .mj_sec07_mark {
    width: 300px;
    left: 8px;
    opacity: 0.05;
  }
  .mj_sec07_list {
    gap: 8px;
  }
  .mj_sec07_item {
    height: 50px;
    padding: 0 16px;
    gap: 10px;
    border-radius: 10px;
  }
  .mj_sec07_item img {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
  }
  .mj_sec07_item span {
    font-size: 14px;
  }

  /* SEC08 */
  .mj_sec08 {
    padding: 60px 0 70px;
  }
  .mj_sec08_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mj_sec08_left {
    padding-top: 0;
  }
  .mj_sec08_label {
    font-size: 13px;
  }
  .mj_sec08_tit {
    margin-top: 10px;
    font-size: 25px;
    line-height: 1.45;
  }
  .mj_sec08_desc {
    margin-top: 16px;
    font-size: 14px;
  }
  .mj_sec08_form {
    padding: 28px 20px 26px;
    border-radius: 14px;
  }
  .mj_sec08_form .mj_form_label {
    font-size: 14px;
  }
  .mj_sec08_form .mj_form_col2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mj_sec08_form .mj_input,
  .mj_sec08_form .mj_textarea {
    height: 46px;
    font-size: 15px;
  }
  .mj_sel_btn {
    height: 46px;
    padding: 0 14px;
  }
  .mj_sel_tx {
    font-size: 15px;
  }
  .mj_sel_opt {
    padding: 11px 12px;
    font-size: 14px;
  }
  .mj_sec08_form .mj_textarea {
    height: 90px;
  }
  .mj_sec08_agree .mj_chk_tx {
    font-size: 13px;
  }
  .mj_sec08_agree_more {
    font-size: 12px;
  }

  /* 모달 */
  .mj_modal {
    padding: 16px;
  }
  .mj_modal_box {
    max-height: 88vh;
    border-radius: 14px;
  }
  .mj_modal_head {
    padding: 20px 20px 14px;
  }
  .mj_modal_tit {
    font-size: 18px;
  }
  .mj_modal_body {
    padding: 18px 20px;
    font-size: 14px;
  }
  .mj_modal_body h3 {
    margin-top: 18px;
    font-size: 15px;
  }
  .mj_modal_info li {
    font-size: 13px;
  }
  .mj_modal_foot {
    padding: 14px 20px 20px;
  }
  .mj_modal_btn {
    min-width: 110px;
    height: 42px;
    font-size: 14px;
  }
  .mj_sec08_submit {
    margin-top: 26px;
  }
}

@media (max-width: 400px) {
  .mj_tit {
    font-size: 23px;
  }
  .mj_tit_l {
    font-size: 26px;
  }
  .mj_hero_tit {
    font-size: 23px;
  }
  .mj_sec_tit {
    font-size: 19px;
  }
  .mj_sec02_msg {
    font-size: 19px;
  }
}
