@charset "UTF-8";
/* ---------------------------------------------------------------------------
 * rem($px)
 * - px → rem 변환 (기준: 16px = 1rem)
 * - 사용 예: fn.rem(32) → 2rem
 * ------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------
 * dim($level, $base: #000)
 * - 배경/오버레이 등 dim 처리용 alpha 값 생성
 * - $level: 투명도 (0~100), math.clamp로 범위 보정
 * - $base: 색상 (기본: #000)
 * 사용 예:
 *   dim(60)       → rgba(#000, 0.6)
 *   dim(12, #fff) → rgba(#fff, 0.12)
 * ------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
 * full-height (모바일 뷰포트 높이 보정)
 *
 * - iOS/안드 주소창·툴바 변화에도 화면 높이(래퍼 min-height) 안정화
 * - 100vh 기본 → 100dvh 우선 → 미지원 시 --vh로 대체
 * - 최상위 래퍼에 @include full-height;
 * --------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
 * 브레이크포인트
 *
 * - 사용 예시:
 *   @include mq($min: 768px) {
 *     .container {
 *       width: 100%;
 *     }
 *   }
 *   @include mq($max: 768px) {
 *     .container {
 *       width: 100%;
 *     }
 *   }
 *   @include mq($min: 768px, $max: 1024px) {
 *     .container {
 *       width: 100%;
 *     }
 *   }
 * --------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------
 * hoverable-only / common-mouse-event
 * - hoverable-only: 마우스/트랙패드 등 호버 가능한 장치에서만 스타일 적용
 * - common-mouse-event: hover, focus-visible, active에서 동일 스타일 적용
 *   (호버 가능한 장치면 hover + focus/active 적용, 아닌 장치는 focus/active만)
 * - 사용 예:
 *   @include common-mouse-event {
 *     outline: 1px solid #000;
 *   }
 * ------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------
 * background 믹스인
 * - 역할: 배경 색상, 이미지, 반복, 위치, 크기를 한 번에 설정
 * - 기본값:
 *     $url: 'none' (이미지 없음)
 *     $color: color.white(ffffff)
 *     $repeat: no-repeat
 *     $position: center
 *     $size: contain
 * - 사용 시 주의:
 *     배경 이미지는 www/assets/img/ → URL /assets/img/ 기준 상대 경로
 *     예: "ills/temp.png" → /assets/img/ills/temp.png
 * - 사용 예시:
 *     @use '../abstracts/mixins' as mx;
 *     .example {
 *       @include mx.background("ills/temp.png");
 *       @include mx.background("none", color.gray(5d5d5d));
 *     }
 * ------------------------------------------------------------------------- */
/* input search 초기화 */
.more-link {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  font-family: "KLLE Noto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #bbb;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  gap: 0.25rem;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}
.more-link .ic {
  width: 0.75rem;
  height: 0.75rem;
  color: inherit;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .more-link:hover {
    color: #989898;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

.home-ticker {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  gap: 0.75rem;
  height: 2.75rem;
  padding: 0 1rem;
  background: #fff;
}
.home-ticker::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 0.5rem;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 100%);
}
.home-ticker__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.home-ticker__icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}
.home-ticker__wrap {
  position: relative;
  flex-grow: 1;
  min-width: 0;
  height: 1.25rem;
  overflow: hidden;
}
.home-ticker__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.25rem;
  line-height: 1.25rem;
}
.home-ticker__item.is-hidden {
  display: none;
}
.home-ticker__item a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Pretendard Std", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 20px;
  color: #321919;
  letter-spacing: -0.02em;
  display: block;
  text-decoration: none;
  text-underline-offset: 0.125rem;
  transform: translateY(1px);
}
@media (any-hover: hover) and (any-pointer: fine) {
  .home-ticker__item a:hover {
    text-decoration: underline;
  }
}

@media (min-width: 481px) {
  .home-stats {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (max-width: 480px) {
  .home-stats {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.home-stats {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.home-stats__row {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  background: #fbfbfb;
  box-shadow: 0 1px 5.2px 0 rgba(0, 0, 0, 0.17);
}
.home-stats__item {
  width: calc((100% - 2rem) / 3);
  min-width: 6.25rem;
}
.home-stats__label {
  font-family: "KLLE Noto", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 20px;
  color: #888;
  letter-spacing: -0.02em;
}
.home-stats__value {
  font-family: "KLLE Noto", sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.6;
  color: #203b92;
  letter-spacing: -0.03em;
}
@media (max-width: 480px) {
  .home-stats__value {
    font-size: 1.375rem;
  }
}

.home-consult {
  padding-top: 1.25rem;
  padding-bottom: 3.75rem;
  border-bottom: 0.5rem solid #f5f5f5;
}
@media (min-width: 481px) {
  .home-consult {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (max-width: 480px) {
  .home-consult {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.home-consult__contact {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
}
.home-consult__title {
  position: relative;
  font-family: "KLLE Noto", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 36px;
  color: #505257;
  letter-spacing: -0.02em;
}
.home-consult__title strong {
  font-weight: 700;
  color: #2441a2;
}
.home-consult__title::before, .home-consult__title::after {
  position: absolute;
  top: 50%;
  width: 5.625rem;
  height: 1px;
  content: "";
  background: #d6d6d6;
}
.home-consult__title::before {
  left: -0.625rem;
  transform: translate(-100%, -50%);
}
.home-consult__title::after {
  right: -0.625rem;
  transform: translate(100%, -50%);
}
.home-consult__tel {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 0 2.25rem;
  text-align: center;
}
.home-consult__tel .ic {
  width: 1.875rem;
  height: 1.875rem;
  color: #0b0b0b;
  transform: translateY(4px);
}
@media (max-width: 480px) {
  .home-consult__tel .ic {
    width: 1.5rem;
    height: 1.5rem;
    transform: translateY(2px);
  }
}
.home-consult__tel-num {
  font-family: "Lato", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  letter-spacing: -2%;
  text-decoration: none;
}
@media (max-width: 480px) {
  .home-consult__tel-num {
    font-size: 2.375rem;
  }
}
.home-consult__hours {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  text-align: center;
}
.home-consult__hours-schedule {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard Std", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #5c5c5c;
  letter-spacing: -0.02em;
}
.home-consult__hours-desc {
  font-family: "Pretendard Std", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #5c5c5c;
  letter-spacing: -0.02em;
}
.home-consult__hours-desc strong {
  font: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.home-consult__buttons {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: 2rem;
}
.home-consult__button {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  gap: 0.75rem;
  min-width: 13.75rem;
  height: 4.25rem;
  padding: 0 1rem;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 3px 3px 0 rgba(114, 114, 114, 0.2);
  transition: background 0.2s ease;
}
.home-consult__button-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.home-consult__button-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
}
.home-consult__button-texts {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0.25rem;
  text-align: left;
}
.home-consult__button-desc {
  font-family: "Pretendard Std", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #3b74ec;
  letter-spacing: -0.02em;
}
.home-consult__button-name {
  font-family: "Pretendard Std", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: #414141;
  letter-spacing: -0.02em;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .home-consult__button:hover {
    background: #f5f5f5;
  }
}
.home-consult__status {
  width: 100%;
  margin: 3rem auto 0;
}
.home-consult__status-list {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.375rem;
}
.home-consult__status-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  min-height: 2rem;
  padding: 0.25rem 0.75rem;
  background: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 480px) {
  .home-consult__status-item {
    flex-direction: column;
    gap: 0.375rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.home-consult__status-badge {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard Std", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #505257;
  letter-spacing: -0.02em;
  width: 3.125rem;
  height: 1rem;
  border-radius: 1rem;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}
.home-consult__status-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  gap: 0.75rem;
  min-width: 0;
}
@media (max-width: 480px) {
  .home-consult__status-info {
    width: 100%;
  }
}
.home-consult__status-name, .home-consult__status-course, .home-consult__status-time {
  width: calc((100% - 1.5rem) / 3);
  text-align: center;
}
.home-consult__status-name, .home-consult__status-course {
  font-family: "Pretendard Std", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #67696b;
  letter-spacing: -0.02em;
}
.home-consult__status-course {
  position: relative;
}
.home-consult__status-course::before, .home-consult__status-course::after {
  position: absolute;
  top: 50%;
  width: 1px;
  height: 0.75rem;
  content: "";
  background: #d4d4d4;
  transform: translateY(-50%);
}
.home-consult__status-course::before {
  left: calc(-0.375rem - 1px);
}
.home-consult__status-course::after {
  right: calc(-0.375rem - 1px);
}
.home-consult__status-time {
  font-family: "Pretendard Std", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #2c487f;
  letter-spacing: -0.02em;
}

.home-review {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  border-bottom: 0.5rem solid #f5f5f5;
  gap: 2.5rem;
}
.home-review__header {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}
@media (min-width: 481px) {
  .home-review__header {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (max-width: 480px) {
  .home-review__header {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.home-review__header {
  gap: 0.125rem;
}
.home-review__title {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  font-family: "Pretendard Std", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #171717;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .home-review__title {
    font-size: 1.375rem;
  }
}
.home-review__title {
  gap: 0.125rem;
}
.home-review__title .ic {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: #ff3435;
}
.home-review__subtitle {
  font-family: "Pretendard Std", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #626262;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .home-review__subtitle {
    font-size: 0.875rem;
  }
}
.home-review__swiper {
  width: 100%;
  padding-inline: 2.5rem;
  overflow: hidden;
}
.home-review__swiper .swiper-slide {
  height: auto;
}
.home-review__swiper.is-dragging .home-review__card, .home-review__swiper[data-review-buffer-fixing] .home-review__card {
  transition: none;
}
.home-review__card {
  overflow: hidden;
  background: #fff;
  border-radius: 0.375rem;
  box-shadow: 4px 4px 10px 0 rgba(175, 175, 175, 0.25);
  transform: scale(0.9);
  transform-origin: center center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.home-review__card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 324/228;
  overflow: hidden;
}
.home-review__card-thumb img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-review__card-thumb img {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.home-review__card-placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
}
.home-review__card-badge {
  font-family: "KLLE Noto", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #373737;
  letter-spacing: -0.02em;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding-inline: 0.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #a1a1a1;
  border-radius: 0.25rem;
}
.home-review__card-body {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.25rem;
  width: 100%;
  height: 8.75rem;
  padding: 0.75rem 1rem;
}
.home-review__card-rating {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.home-review__card-rating .ic {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.home-review__card-rating .ic.is-active {
  background-color: #ff3435;
}
.home-review__card-rating .ic.is-inactive {
  background-color: #d6d6d6;
}
.home-review__card-score {
  font-family: "KLLE Noto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #7c7c7c;
  letter-spacing: -0.02em;
  margin-left: 0.25rem;
  transform: translateY(0.05em);
}
.home-review__card-writer {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  font-family: "KLLE Noto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 20px;
  color: #2f2f2f;
  letter-spacing: -0.02em;
  gap: 0.25rem;
}
.home-review__card-writer::before {
  display: block;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background: #fff url("/assets/images/icon/ic_graduation-cap.svg") no-repeat center/contain;
  transform: translateY(0.1em);
}
.home-review__card-writer::after {
  font-family: "KLLE Noto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2f2f2f;
  letter-spacing: -0.02em;
  content: "학습자님";
  transform: translateY(0.05em);
}
.home-review__card-content {
  font-family: "KLLE Noto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #7a7a7a;
  letter-spacing: -0.02em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding-top: 0.75rem;
}
.swiper-slide-active .home-review__card {
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
  transform: scale(1);
}
.home-review .swiper-pagination {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: center;
  position: static;
  gap: 0.375rem;
  margin-top: 1rem;
}
.home-review .swiper-pagination-bullet {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  cursor: pointer;
  background: #e0e0e0;
  border: 0;
  border-radius: 50%;
  opacity: 1;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}
.home-review .swiper-pagination [data-review-bullet][aria-current=true] {
  background: #5674cd;
}

.home-teacher {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}
@media (min-width: 481px) {
  .home-teacher {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (max-width: 480px) {
  .home-teacher {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.home-teacher {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  border-bottom: 0.5rem solid #f5f5f5;
  gap: 2.5rem;
}
.home-teacher__header {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.125rem;
}
.home-teacher__title {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  font-family: "Pretendard Std", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #171717;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .home-teacher__title {
    font-size: 1.375rem;
  }
}
.home-teacher__title {
  gap: 0.5rem;
}
.home-teacher__title .ic {
  width: 1.5rem;
  height: 1.5rem;
  background: transparent;
}
.home-teacher__subtitle {
  font-family: "Pretendard Std", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #626262;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .home-teacher__subtitle {
    font-size: 0.875rem;
  }
}

.home-product {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  border-bottom: 0.5rem solid #f5f5f5;
  gap: 2.5rem;
}
.home-product__header {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}
@media (min-width: 481px) {
  .home-product__header {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (max-width: 480px) {
  .home-product__header {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.home-product__header {
  gap: 0.125rem;
}
.home-product__title {
  font-family: "Pretendard Std", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #171717;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .home-product__title {
    font-size: 1.375rem;
  }
}
.home-product__subtitle {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  font-family: "Pretendard Std", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #626262;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .home-product__subtitle {
    font-size: 0.875rem;
  }
}
.home-product__subtitle {
  gap: 1rem;
}
.home-product__swiper {
  width: 100%;
  overflow: hidden;
}
.home-product__swiper .swiper-slide {
  box-sizing: border-box;
  width: calc(100% - 6rem);
  height: auto;
}
@media (max-width: 480px) {
  .home-product__swiper .swiper-slide {
    width: calc(100% - 3rem);
  }
}
.home-product__swiper.swiper-lock .swiper-pagination {
  display: none;
}
.home-product__swiper .swiper-pagination {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: center;
}
@media (min-width: 481px) {
  .home-product__swiper .swiper-pagination {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (max-width: 480px) {
  .home-product__swiper .swiper-pagination {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.home-product__swiper .swiper-pagination {
  position: static;
  gap: 0.375rem;
  margin-top: 2rem;
}
.home-product__swiper .swiper-pagination-bullet {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  cursor: pointer;
  background: #e0e0e0;
  border: 0;
  border-radius: 50%;
  opacity: 1;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}
.home-product__swiper .swiper-pagination [data-product-bullet][aria-current=true] {
  background: #5674cd;
}
.home-product__link {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  text-decoration: none;
}
.home-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-product__img {
  width: 100%;
  aspect-ratio: 450/230;
  overflow: hidden;
  background: #e0e0e0;
  border-radius: 1rem;
}
.home-product__placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
}
.home-product__name {
  font-family: "KLLE Noto", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #111;
  letter-spacing: -0.02em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 480px) {
  .home-product__name {
    font-size: 1.25rem;
  }
}

.home-eduinfo {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}
@media (min-width: 481px) {
  .home-eduinfo {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media (max-width: 480px) {
  .home-eduinfo {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.home-eduinfo {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  border-bottom: 0.5rem solid #f5f5f5;
  gap: 2.5rem;
}
.home-eduinfo__header {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.125rem;
}
.home-eduinfo__title {
  font-family: "Pretendard Std", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #171717;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .home-eduinfo__title {
    font-size: 1.375rem;
  }
}
.home-eduinfo__subtitle {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  font-family: "Pretendard Std", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #626262;
  letter-spacing: -0.02em;
}
@media (max-width: 480px) {
  .home-eduinfo__subtitle {
    font-size: 0.875rem;
  }
}
.home-eduinfo__subtitle {
  gap: 1rem;
}
.home-eduinfo__list {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
}
.home-eduinfo__card {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .home-eduinfo__card:hover {
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.35);
  }
  .home-eduinfo__card:hover .home-eduinfo__card-thumb img {
    transform: scale(1.05);
  }
}
@media (max-width: 480px) {
  .home-eduinfo__card {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}
.home-eduinfo__card-body {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1;
  gap: 0.375rem;
  min-width: 0;
}
@media (max-width: 480px) {
  .home-eduinfo__card-body {
    gap: 0.5rem;
  }
}
.home-eduinfo__card-title {
  font-family: "Pretendard Std", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 31px;
  color: #000;
  letter-spacing: -0.02em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 480px) {
  .home-eduinfo__card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
  }
}
.home-eduinfo__card-content {
  font-family: "Pretendard Std", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 21px;
  color: #000;
  letter-spacing: -0.02em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 480px) {
  .home-eduinfo__card-content {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
.home-eduinfo__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-eduinfo__card-thumb {
  flex-shrink: 0;
  width: 11.875rem;
  aspect-ratio: 190/128;
  overflow: hidden;
  background: #e0e0e0;
  border-radius: 0.25rem;
}
.home-eduinfo__card-thumb img {
  transition: transform 0.2s ease;
}
@media (max-width: 480px) {
  .home-eduinfo__card-thumb {
    width: 100%;
  }
}
