@charset "UTF-8";

/* 251216 메인 페이지 리뉴얼 ========== */
a.top-line-banner {
  padding: 14px 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: url("/img/top-ban-bg.png") no-repeat;
  background-size: cover;
  text-decoration: none;
}
.top-line-banner:hover,
.top-line-banner:focus {
  text-decoration: none;
}

.main-top-area {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-banner-area {
  position: relative;
  width: 620px;
  height: 320px;
  background-color: #f1f1f1;
  border-radius: 24px;
  overflow: hidden;
}
.main-banner-area a {
  display: block;
}
.main-banner-area img {
  width: 620px;
  height: 320px;
  object-fit: cover;
}

/* 글자 슬라이딩 영역 */
.sentence {
  margin: 0;
  width: 420px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.8px;
}
/* 글자 표시 영역 */
.word {
  display: inline-block;
  min-width: 80px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
/* Fade Out Up (위로 올라가며 사라짐) */
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
/* Fade In Down (아래에서 올라오며 나타남) */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.word.fade-out {
  animation: fadeOutUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.word.fade-in {
  animation: fadeInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* //글자 슬라이딩 영역 */

/* 상담 메뉴 */
.main-consult-menu {
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.main-consult-menu .main-consult-menu-item {
  position: relative;
  display: flex;
  height: 86px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8faff 0%, #e2e8ee 100%);
  text-align: left;
  transition: all 0.3s;
}
.main-consult-menu .main-consult-menu-item:hover,
.main-consult-menu .main-consult-menu-item:focus {
  text-decoration: none;
  background-image: linear-gradient(180deg, #dcdfe5 0%, #ccd1d7 100%);
}
.main-consult-menu .main-consult-menu-item-inner {
  padding-left: 48px;
  background-repeat: no-repeat;
  background-position: 0 center;
}
.main-consult-menu
  .main-consult-menu-item:nth-child(1)
  .main-consult-menu-item-inner {
  background-image: url(/img/m/icon/consulting.svg);
  background-size: 36px;
}
.main-consult-menu
  .main-consult-menu-item:nth-child(2)
  .main-consult-menu-item-inner {
  background-image: url(/img/m/icon/rocket.svg);
  background-size: 36px;
}
.main-consult-menu
  .main-consult-menu-item:nth-child(3)
  .main-consult-menu-item-inner {
  background-image: url(/img/m/icon/jewel.svg);
  background-size: 36px;
}
.main-consult-menu-name {
  margin: 0;
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.72px;
}
.main-consult-menu-name .month {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.main-consult-menu-text {
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 14px;
  font-weight: 500;
}

.main-title {
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 26px;
  font-weight: 700;
  line-height: 145%; /* 37.7px */
  letter-spacing: 0.52px;
}
.main-sub-text {
  display: block;
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 16px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: 0.32px;
}
.menu-category-list {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-category-list a:hover,
.menu-category-list a:focus {
  text-decoration: none;
  background-color: #d7dae1;
}
.menu-category-list .menu-category-item {
  padding: 24px 0;
  display: flex;
  width: 92px;
  height: 68px;
  padding: 12px 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f1f4fa;
  border-radius: 12px;
  transition: background 0.3s;
}
.menu-category-list .menu-category-item .menu-category-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
}
.menu-category-list .menu-category-item .category-list-name {
  margin: 0;
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
}
.menu-category-rounded-item {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 96px;
  height: 96px;
  background-color: #1eb99d;
  color: #fff;
  animation: bgFade 1s infinite alternate;
  border-radius: 999px;
  box-sizing: border-box;
}
.menu-category-rounded-item .category-list-name {
  margin: 0;
  color: var(--On-Color-White-White, #fff);
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: -0.15px;
}

/* 배경색 애니메이션 정의 */
@keyframes bgFade {
  0% {
    background-color: #1eb99d;
  }
  100% {
    background-color: #f66873;
  }
}
/* 인터뷰 슬라이드 */
.interview-section {
  margin: 99px auto;
}
.interview-swiper {
  position: relative;
}
.swiper-custom-next,
.swiper-custom-prev {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff9e;
  border-radius: 999px;
}
.swiper-custom-next::after,
.swiper-custom-prev::after {
  color: #1a1e279e;
  font-size: 19px;
  font-weight: bold;
}
.swiper-custom-prev {
  left: 8px;
}
.swiper-custom-next {
  right: 8px;
}
.interview-swiper-wrap {
  padding-top: 24px;
  overflow: hidden;
}
.interview-swiper-wrap .swiper-slide {
  width: 311px;
  height: 354px;
}
.interview-swiper-wrap .swiper-slide .interview-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.interview-swiper-wrap .swiper-slide .thumb {
  position: relative;
  width: 100%;
  height: 100%;
}
.interview-swiper-wrap .swiper-slide .thumb img {
  display: block;
  width: auto;
  height: 100%;
}
.interview-swiper-wrap .swiper-slide .interview-info {
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  color: #fff;
  background: #0000005c;
}
.interview-swiper-wrap .interview-info .text,
.interview-swiper-wrap .interview-info .name {
  display: block;
  color: #fff;
}
.interview-swiper-wrap .interview-more-link {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 48px;
  border-radius: 999px;
  background-color: #fff;
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: all 0.3s;
}
.interview-swiper-wrap .interview-more-link:hover,
.interview-swiper-wrap .interview-more-link:focus {
  text-decoration: none;
  background-color: #dbdcdf;
}
.interview-swiper-wrap .interview-info .text {
  color: var(--On-Color-White-White, #fff);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}
.interview-swiper-wrap .interview-info .name {
  margin-top: 12px;
  color: var(--On-Color-White-White, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.benefit-section {
  padding: 12px;
  margin: 99px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 82px;
  border-radius: 12px;
  background: #e4f0ff;
}
.benefit-section .benefit-text {
  margin-bottom: 4px;
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 18px;
  font-weight: 600;
}
.benefit-section .benefit-sub-text {
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 12px;
  font-weight: 500;
}
.benefit-section .benefit-link {
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid #3182f6;
  background: #fff;
  color: #3182f6;
  transition: background 0.3s;
}
.benefit-section .benefit-link:hover,
.benefit-section .benefit-link:focus {
  text-decoration: none;
  background-color: #e4e4e5;
}
.mou-school-section {
  margin: 99px auto;
}

.mou-job-section {
  margin: 99px auto;
}
.mou-list-box {
  margin: 12px auto;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px 6.5px;
}
/* 포토 슬라이드 */
.photo-section {
  margin: 99px auto 136px;
  overflow: hidden;
}
.photo-swiper {
  position: relative;
  margin: 8px auto;
}
.photo-swiper .swiper-slide {
  width: 316px;
  height: 240px;
}
.photo-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* //251216 메인 페이지 리뉴얼 ========== */
