/* @font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
} */
 @import url('https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.1/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css');
 @font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}
:root {
  --blue-main: #3B82F6;
  --blue-deep: #1D4ED8;
  --blue-light: #EFF6FF;
  --blue-mid: #BFDBFE;
  --accent: #2563EB;
  --text-dark: #1E293B;
  --text-mid: #475569;
  --text-light: #94A3B8;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --purple-tag: #8B5CF6;
  --green-tag: #10B981;
  --orange-tag: #F59E0B;
  --pink-tag: #EC4899;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(59,130,246,0.10);
  --shadow-card: 0 2px 16px rgba(30,41,59,0.08);
}
#contents {
	position:relative;    padding-bottom: 20px; background:#fff;
}
#contents *{font-family: 'Wanted Sans Variable', 'Noto Sans', '나눔 고딕', sans-serif !important;}
#skyBannerWrap {
    position: relative;
    top: 0;
    left: 50%;
    margin-left: -951.5px;
}
#skyBannerWrap #sky_banner {
    position: fixed;
    z-index: 3;
}
#skyBannerWrap #sky_banner .sky_banner_inner {
    width: 100%;
    position: absolute;
    top: 20px;
    left: 166.5px;
    display: flex;
    color: #fff;
    box-sizing: border-box;
    flex-direction: column;
    z-index: 3;
    max-width: 175px;
    gap: 15px;
}
#skyBannerWrap #sky_banner a {
    display: flex;
}
#skyBannerWrap #sky_banner a img {
	margin-bottom:0;
}

/* 리뉴얼 - 260317 */
.hero {
  background: url(https://img.megastudyacademy.co.kr/campusdev/tj_html_img/images/job/re2026/main_bg.png);
  min-height: 526px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 46px;
}

.hero-text {
  padding-top:40px;
  animation: fadeUp 0.7s ease both;
  width: 100%;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -1.5px;
  gap: 8px;
  text-align: center;
  width: 100%;
}
.hero-title .highlight {
  background: linear-gradient(to bottom, #5785F5, #1BB7C2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-desc {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.3;
  letter-spacing: -0.05rem;
}
.hero-desc strong{font-weight: 700;}
.hero-desc .desc_1{color: #5785F5;}
.hero-desc .desc_2{color: #1BB7C2;}

.hero-visual {
  width: 690px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero-visual img{
  width: 100%;
  object-fit: contain;
}


.section {
  padding: 100px 40px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.section-eyebrow-icon {
  font-size: 22px;
}
.section-title {
  font-family: 'GMarketSans' !important;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 60px;
  line-height: 1.3;
}
.section-title .blue { color: var(--blue-main); }

/* ───── WHY 섹션 ───── */
.why {
  background: var(--bg-soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(59,130,246,0.15);
}

.why-card-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.why-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.07) 0px,
    rgba(255,255,255,0.07) 1px,
    transparent 1px,
    transparent 20px
  );
}
.why-card-img-label {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.18);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1px;
}

.img-blue   { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.img-indigo { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.img-teal   { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.img-violet { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }

.why-card-body {
  padding: 20px 22px 24px;
}

.why-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.tag-blue   { background: #EFF6FF; color: var(--blue-main); }
.tag-indigo { background: #EEF2FF; color: #6366F1; }
.tag-teal   { background: #F0FDFA; color: #0D9488; }
.tag-violet { background: #F5F3FF; color: #7C3AED; }

.why-card-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text-dark);
}
.why-card-title em {
  font-style: normal;
  color: var(--blue-main);
}
.why-card-sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 4px;
  line-height: 1.6;
}
/* ───── SOLUTION 섹션 ───── */
section.solution > div{width: 1200px;}
.solution {
  background: #fff;
}

.solution-eyebrow-text {
  font-family: 'GMarketSans';
  font-size: 20px;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 8px;
}

/* 방사형 레이아웃 컨테이너 */
.orbit-wrap {
  position: relative;
  width: 1200px;
  height: 680px;
  margin: auto;
}

/* 중앙 이미지 박스 */
.orbit-center {
  position: absolute;
  top: 40%; 
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; 
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(150deg, #DBEAFE 0%, #C7D2FE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(191,219,254,0.35), 0 0 0 32px rgba(199,210,254,0.15);
  overflow: hidden;
  z-index: 2;
}
.orbit-center::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.15) 0px,
    rgba(255,255,255,0.15) 1px,
    transparent 1px,
    transparent 20px
  );
}
.orbit-center-label {
  font-size: 11px;
  color: #93C5FD;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 1;
  text-transform: uppercase;
}

/* 점선 연결원 */
.orbit-ring {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1.5px dashed #BFDBFE;
  z-index: 0;
  pointer-events: none;
}

/* 각 아이템 공통 */
.sol-item {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 300px;
  z-index: 3;
}

/* 오른쪽 그룹: 아이콘 왼쪽 */
.sol-item.align-left  { flex-direction: row; text-align: left;}
/* 왼쪽 그룹: 아이콘 오른쪽, 텍스트 오른쪽 정렬 */
.sol-item.align-right {
  flex-direction: row-reverse;
  text-align: right;
}

/* 위치 배치 — 7개 아이템 */
/* 오른쪽 */
.sol-pos-1 { top: 12px;  left: calc(50% + 240px); } /* 오른쪽 상단 */
.sol-pos-2 { top: 45%;  left: calc(50% + 268px); transform: translateY(-50%); } /* 오른쪽 중앙 */
.sol-pos-3 { bottom: 88px; left: calc(50% + 240px); } /* 오른쪽 하단 */
/* 왼쪽 */
.sol-pos-4 { top: 12px;  right: calc(50% + 240px); } /* 왼쪽 상단 */
.sol-pos-5 { top: 45%;  right: calc(50% + 268px); transform: translateY(-50%); } /* 왼쪽 중앙 */
.sol-pos-6 { bottom: 88px; right: calc(50% + 240px); } /* 왼쪽 하단 */
/* 하단 중앙 */
.sol-pos-7 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 260px;
}

/* 연결선 (가상 요소) */
.sol-item::before {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, #BFDBFE, transparent);
  height: 1.5px;
  top: 22px;
  pointer-events: none;
  z-index: -1;
}
.sol-item.align-left::before  { left: -56px; width: 56px; }
.sol-item.align-right::before { right: -56px; width: 56px; background: linear-gradient(270deg, #BFDBFE, transparent); }
.sol-pos-7::before { display: none; }

.sol-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.sol-pos-7 .sol-icon {
  margin: 0 auto 8px;
  width: 48px; height: 48px;
}

.sol-icon-blue   { background: #EFF6FF; }
.sol-icon-indigo { background: #EEF2FF; }
.sol-icon-teal   { background: #F0FDFA; }
.sol-icon-violet { background: #F5F3FF; }
.sol-icon-pink   { background: #FDF2F8; }
.sol-icon-amber  { background: #FFFBEB; }
.sol-icon-cyan   { background: #ECFEFF; }

.sol-text-wrap {}
.sol-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
  line-height: 1.3;
}
.sol-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ───── ANIMATIONS ───── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───── RESPONSIVE (1200px 이하 대비) ───── */
@media (max-width: 1280px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .orbit-wrap { transform: scale(0.85); transform-origin: top center; margin-bottom: -60px; }
}
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; }
  .hero-visual { width: 100%; border-radius: 16px; }
  .section-title { font-size: 28px; }
  .hero-title { font-size: 38px; }

  /* orbit → 세로 리스트 fallback */
  .orbit-wrap {
    width: 100%;
    height: auto;
    transform: none;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .orbit-ring { display: none; }
  .orbit-center {
    position: static;
    transform: none;
    margin: 0 auto;
    flex-shrink: 0;
  }
  .sol-item {
    position: static !important;
    width: 100% !important;
    max-width: 360px;
    flex-direction: row !important;
    text-align: left !important;
    transform: none !important;
    background: var(--bg-soft);
    border-radius: 14px;
    padding: 16px 18px;
  }
  .sol-item::before { display: none !important; }
  .sol-pos-7 {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .sol-pos-7 .sol-icon {
    margin: 0;
    width: 44px;
    height: 44px;
  }
}
#jobInfoMain{
	background: url("https://img.megastudyacademy.co.kr/campus/tj_html_img/images/job/main_bg.png?v=20230209");
	background-position: top center;
    background-size: 1920px auto;
}
#jobInfoMain .main_inner {
	padding:80px 0 70px;
	width:100%;
	margin:0 auto;
	max-width:1180px;
}
#jobInfoMain .main_inner .main_title {
	display:flex;flex-direction:column;align-items:center;justify-content:center;gap:88px;
} 
#jobSolution{
	background:#fff;
}
#jobSolution .Solution_inner {
	padding:90px 0;
	width:100%;
	margin:0 auto;
	max-width:1180px;
}
#jobProgram{
	background: url("https://img.megastudyacademy.co.kr/campus/tj_html_img/images/job/program_bg.png?v=20230209");
	background-position: top center;
    background-size: 1920px auto;
}
#jobProgram .Program_inner {
	width:100%;
	margin:0 auto;
	max-width:100%;
  display: flex;
  flex-direction: column;

}
#jobProgram .Program_inner .swiper-container {
	width:100%;padding:0 371px;
}
#jobProgram .Program_inner .swiper-container .swiper-slide {
  width: 240px;
  height: 285px;
  overflow: hidden;
  padding: 30px 0 0 28px;
}
#jobProgram .Program_inner .swiper-container *{font-family: 'Wanted Sans Variable', 'Noto Sans', '나눔 고딕', sans-serif}
#jobProgram .Program_inner .swiper-container .swiper-slide div.text{
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: auto;
  text-align: left;
}
#jobProgram .Program_inner .swiper-container .swiper-slide div.text span.number{
  font-size: 15px;
  color: #3074F0;
  font-weight: 600;
}
#jobProgram .Program_inner .swiper-container .swiper-slide div.text p{
  font-size: 24px;
  color: #222;
  font-weight: 700;
  line-height: 1.1;
}
#jobProgram .swiper-slide:nth-child(1){background: url("https://img.megastudyacademy.co.kr/campusdev/tj_html_img/images/job/re2026/program_01.png") center / cover no-repeat;}
#jobProgram .swiper-slide:nth-child(2){background: url("https://img.megastudyacademy.co.kr/campusdev/tj_html_img/images/job/re2026/program_02.png") center / cover no-repeat;}
#jobProgram .swiper-slide:nth-child(3){background: url("https://img.megastudyacademy.co.kr/campusdev/tj_html_img/images/job/re2026/program_03.png") center / cover no-repeat;}
#jobProgram .swiper-slide:nth-child(4){background: url("https://img.megastudyacademy.co.kr/campusdev/tj_html_img/images/job/re2026/program_04.png") center / cover no-repeat;}
#jobProgram .swiper-slide:nth-child(5){background: url("https://img.megastudyacademy.co.kr/campusdev/tj_html_img/images/job/re2026/program_05.png") center / cover no-repeat;}
#jobProgram .swiper-slide:nth-child(6){background: url("https://img.megastudyacademy.co.kr/campusdev/tj_html_img/images/job/re2026/program_06.png") center / cover no-repeat;}
#jobProgram .swiper-slide:nth-child(7){background: url("https://img.megastudyacademy.co.kr/campusdev/tj_html_img/images/job/re2026/program_07.png") center / cover no-repeat;}
#jobCompany{
	background:#F6F7F9;
}
#jobCompany .company_inner {
	padding:90px 0;
	width:100%;
	margin:0 auto;
	max-width:1130px;
	display:flex;flex-direction:column;gap:50px;
}
#jobCompany .company_inner .section-title{margin-bottom: 0;}
#jobCompany .company_inner .company_content ul{
	display:grid;grid-template-columns:1fr 1fr 1fr 1fr 1fr;row-gap:40px;column-gap:20px;
}
#jobCompany .company_inner .company_content ul li {
	display:flex;align-items:center;justify-content:center;
}
#jobCompany .company_inner .company_content ul li img {margin-bottom:0;}
#video{width:100%; text-align:center;padding:90px 0;}
.video_T{font-size:35px; letter-spacing:-1px; font-weight:500; color:#000; padding:30px 0;font-family:"GmarketSansMedium";}
.video_T span {color:#3074F0;}
#content {
  width:100%;
  position: relative;
  z-index: 2; 
}
#content div{width:100%;}
#content > div iframe{width:720px; height:405px;}
.slider-for{width:100%;}
.sub {
display:flex;flex-direction:column;align-items:center;justify-content:center;gap:30px;}
.sub p {
	font-size:20px;color:#222222;font-weight:400;
}
.sub p span{
	font-weight:700;
}
.sub img {
	width:200px;
}
.slider-nav .slick-slide {
    margin:0 7.5px;
}

.slider-nav .slick-slide img{width:100%;}

.YouTube_info{width:720px !important; text-align:left; margin:30px auto 0 auto;}
.info_1{color:#fff; font-size:14px; font-weight:500;letter-spacing: -0.1px;padding: 1px 17px;border-radius:20px; background:#3074F0;}
.info_2{color:#333; font-size:20px; font-weight:700;letter-spacing:-0.1px; margin:15px 0 5px;line-height: 30px;}
.info_3{color:#999999; font-size:14px; font-weight:400;letter-spacing:-0.1px;line-height: 22px;}
.info_4{color:#999999; font-size:14px; font-weight:300; margin-left:20px; }

.gray{width:100%; margin-top: 70px;margin-bottom:50px;}
 
.slider-nav {
    width: 100%;
	margin:0 auto;
}

.slider-nav li{cursor:pointer;width:200px;opacity:0.5;}
.slider-nav li img {
width:100%;
}
.slider-nav li.swiper-slide.swiper-slide-active {
	opacity:1 !important;
}
section.jobbox > div {
	width:1200px;
}
section.jobbox fieldset *{font-family: 'Wanted Sans Variable', 'Noto Sans', '나눔 고딕', sans-serif;}
section.jobbox .jobtitle {
    display: block;
    text-align: left;
    font-family: 'GmarketSansMedium';
    font-size: 24px;
    font-weight: 500;
    color: #343230;
    padding-left: 0;
    position: relative;
    margin-bottom: 20px;
	line-height:24px;
	max-width:1180px;
}
#quickfootbanner {
	display:none;
}
section.jobbox .jobtitle::before {
	display:none;
}
.allformbox .guidetxt {
    margin: 0 0 40px;
}
.allformbox .guidetxt p {
    /* font-family: 'Noto Sans KR', sans-serif; */
    font-size: 16px;
    color: #555555;
    position: relative;
    font-weight: 400;
    text-align: left;
	line-height:24px;
}
section.jobstorybox6 .btngono input{
    width: 250px;
    height: 50px;
	background:#7E7BFF;
    line-height: 50px;
    text-align: center;
    /* font-family: 'Noto Sans KR', sans-serif; */
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-left: 10px;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
}
section.jobstorybox6 .btngono a{
    width: 250px;
    height: 50px;
	background:#707076;
    line-height: 50px;
    text-align: center;
    /* font-family: 'Noto Sans KR', sans-serif; */
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-left: 10px;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
}