@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

body {
  line-height: normal;
}

/* 레이아웃 */
.layout-1130 {
  width: 1130px;
  margin: 0 auto;
}
.layout-1000 {
  margin: 0 auto;
  width: 1000px;
}

/* ========== 헤더 공통 시작 */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #fff;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.04);
  margin: auto;
  width: 100%;
  padding: 12px 0 0;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand-award-text {
  margin: 0;
  padding: 8px 12px 8px 30px;
  background-image: url("/img/m/icon/Trophy.png");
  background-repeat: no-repeat;
  background-size: 16px;
  background-color: #1eb99d;
  background-position: 6px center;
  color: var(--On-Color-White-White, #fff);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  border-radius: 6px;
}
.header-inner .ico-logo {
  width: 122px;
  height: 36px;
  vertical-align: top;
  display: inline-block;
  overflow: hidden;
  color: transparent;
  white-space: nowrap;
  text-indent: 2000px;
  background-image: url("/img/main/mainLogo.png");
  background-size: 122px;
  background-repeat: no-repeat;
  background-position: 0 center;
}
.gnb-wrap {
  margin-top: 4px;
  width: 1130px;
  margin: 0 auto;
}
.gnb-menu-list {
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  list-style: none;
  gap: 14px;
}

.gnb-menu-list > li {
  position: relative;
  padding-bottom: 10px;
}

.gnb-menu-list > li > a {
  display: block;
  padding: 0 6px;
  height: 36px;
  line-height: 36px;
  text-decoration: none;
  color: var(--Black-800, #353941);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.gnb-menu-list > li > a:hover {
  background-color: #f5f6f8;
}

/* Submenu */
.gnb-menu-list .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  padding: 16px 12px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  text-align: center;
}

/* Submenu 나타나는 애니메이션 */
.gnb-menu-list > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.submenu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--Black-600, #6c6f75);
  font-size: 15px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  border-radius: 12px;
}

.submenu li a:hover {
  background: #f2f4f6;
  color: #1eb99d;
  font-weight: 700;
}
/* //========== 헤더 공통 끝 */

/* ========== 공통 시작 */
.moveButton {
  margin: 32px 0 0;
  display: block;
  width: 100%;
  height: 48px;
  padding: 0;
  color: #3182f6;
  font-size: 16px;
  font-weight: 600;
  background: #e4f0ff;
  border: none;
  border-radius: 12px;
  transition: all 0.3s;
}
.moveButton:active,
.moveButton:hover {
  background: #d7e8fd;
}

.notice-text {
  margin: 0;
  position: relative;
  padding-left: 16px;
  color: #6c6f75;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.notice-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/img/m/icon/error-outline.svg) no-repeat center center;
  background-size: 12px;
}

/* grid 정렬 */
.grid {
  display: grid;
  gap: 16px;
}
.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* checkbox */
.chk-list .chk-item {
  padding: 14px 14px 14px 46px;
  background-color: #eff1f3;
  border-radius: 60px;
  margin: 0;
  background-size: 20px;
  background-repeat: no-repeat;
  background-image: url(../../img/m/consult/no_add.svg);
  background-position: 16px center;
  transition: all 0.3s;
}
.chk-list .chk-item .name {
  color: #6c6f75;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.chk-item:hover,
.chk-item.active {
  background-image: url(../../img/m/consult/add.svg);
  background-color: #fcc659;
}
.chk-item.active .name {
  color: #1a1e27;
}

/* ===== 공통 탭 메뉴 */
/* 탭 메뉴 컨테이너 */
.category-tabs {
  display: flex;
  margin-bottom: 24px;
}

/* 탭 버튼 */
.category-tabs__button {
  padding: 8px 10px;
  border: none;
  color: var(--Black-600, #6C6F75);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -0.64px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  background-color:transparent;
}

/* 활성화된 탭 */
.category-tabs__button--active {
  background-color: #EFF1F3;
  color: #51545B;
  font-weight: 600;
}
/* ===== //공통 탭 메뉴 */
/* ========== //공통 끝 */

/* =========== 모달 시작 */
.modal-wrap {
	 display: none
}
.modal-wrap.active {
	 display: block;
}
.modal-wrap .modal-dimmed {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.12);
	z-index: 999991
}
.modal-wrap .modal-body {
	position:fixed;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
	width: 592px;
	padding:0;
	/* min-height: 500px;
	max-height: 85dvh; */
	overflow:hidden;
	background:#fff;
	border-radius: 16px;
	z-index: 999992;
	box-sizing: border-box;
}
.modal-body .modal-inner {
	position:relative;
	margin-bottom: 40px;
	padding: 0 24px 0 24px;
	height: calc(80dvh - 56px);
	box-sizing:border-box;
	overflow-y: auto
}
.modal-body .btn-transparent {
	/* position:absolute;
	right:24px;
	top:16px; */
}
.modal-head {
	padding: 16px 24px 8px;
	display: flex;
	justify-content: end
}

.btn-transparent {
	border: none;
	background:#fff;
}
/* //=========== 모달 끝 */ 

/* =========== 상담 신청 폼 시작 */
.consult-form-wrap {
  padding: 64px 0 54px;
}

/* 폼 공통 */
.subTitle {
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
}
.chkSubText {
  margin: 0;
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.chkTitle {
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.chk-form-box {
  margin-top: 40px;
}
.chkBtn {
  display: block;
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background: var(--yellow-600-primary, #feb015);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  border: none;
  transition: all 0.3s;
}
.chkBtn:active,
.chkBtn:hover {
  color: #c5c5c5;
  background: #c78d19;
}
.name-form-box {
  position: relative;
}
#nameDel {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.phone-form-box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.phone-select-input {
  width: 104px;
  background: url(../../img/m/consult/phone_arrow.svg) no-repeat center;
  background-size: 20px;
  background-position: calc(100% - 10px) center;
  cursor: pointer;
}
.phone-form {
  width: calc(100% - 113px);
}
.phone-first-area {
  position: relative;
}
.phone-first-area .dropDown-phone {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 15px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
}
.phone-first-area .dropDown-phone .item {
  margin: 0;
  cursor: pointer;
}
.dropDown-phone .item:hover {
  font-weight: bold;
}
.dropDown-phone .item + .item {
  margin-top: 10px;
}
.form-check-label {
  margin-top: 12px;
}
#privacyChk input[type="checkbox"] + p {
  background-size: 24px;
  background-repeat: no-repeat;
  background-image: url("../../img/m/consult/unchk.svg");
  padding-left: 36px;
  background-position-y: -3px;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  color: #6c6f75;
}
#privacyChk input[type="checkbox"]:checked + p {
  background-image: url("../../img/m/consult/chk.svg");
  background-size: 24px;
  background-position: 0px;
}
.privacy_chk {
  font-size: inherit;
  text-decoration: underline;
  color: inherit;
}
.privacy_chk:hover {
  color: #666;
}
/* =========== 상담 신청 폼 끝 */

/* =========== 수강 신청 과목 선택 리스트 시작 */
.chk-top-title {
  margin: 32px 0 8px;
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.branch-list {
  margin: 8px 0 56px;
  width: calc(96px * 3 + 16px * 3);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.course-box-wrap {
  padding-top: 10px;
}
.course-chk-list {
  padding: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.course-title {
  margin: 8px 0;
  padding: 8px 0;
  position: relative;
  color: var(--Black-700, #51545b);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  cursor: pointer;
}
.course-title:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  display: inline-block;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url(/img/icon-arrow-gray.svg) no-repeat center right;
  background-size: 24px;
}
.courseTitle.active:before {
  transform: translateY(-50%) rotate(180deg);
}
.course-box {
  border-bottom: 1px solid #f5f6f7;
}
.customer-info-form {
  padding: 32px 0 40px;
}
#select_process {
  background-image: url("../../img/m/consult/error.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: calc(100% - 16px) center;
  padding-right: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* =========== 수강 신청 과목 선택 리스트 끝 */

/* 공통 사이즈 */
.w100p {
  width: 100%;
}

/* input 기본 스타일 */
.form-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
}
.basic-input {
  padding: 0 16px;
  height: 48px;
  border: 2px solid #f5f6f8;
  border-radius: 6px;
  background-color: #f5f6f8;
  color: #1a1e27;
  font-size: 14px;
  font-weight: 400;
  box-sizing: border-box;
}
.basic-input:focus {
  border-color: #feb015;
  background-color: #fff;
}

/* 툴팁 버튼 영역 */
.tooltip-btn-area {
  position: relative;
  padding-top: 40px;
}
.tooltip-wrap {
  position: absolute;
  right: 0;
  top: 0;
  /* display: flex;
	align-items: center;
	gap: 10px; */
  padding: 8px 16px;
  border-radius: 6px;
  background: #353941;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}
.tooltip-wrap img {
  display: inline-block;
  vertical-align: middle;
  padding-right: 5px;
}
.tooltip-wrap:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #353941;
  transform: rotate(-45deg) translateX(-50%);
  z-index: -1;
}
.tooltip-wrap .point,
.tooltip-wrap .month {
  color: #feb015;
  font-size: inherit;
  font-weight: 600;
}
.tooltip-wrap .point {
  margin: 0;
}

/* 구분선 */
.section-divider {
  margin: 0;
  border: none;
  height: 16px;
  background-color: #f5f6f8;
}

/* 메인 메뉴 리스트 */
.main-menu-list {
  margin: 44px 32px;
  border-radius: 28px;
  background: #f5f6f8;
  padding: 32px;
}
.menu-list-item {
  position: relative;
  border-radius: 24px;
  transition: all 0.3s;
  overflow: hidden;
}
.menu-list-item + .menu-list-item {
  margin-top: 16px;
}

.menu-list-link {
  position: relative;
  padding: 20px 56px 20px 86px;
  display: block;
  color: #51545b;
  font-size: 32px;
  font-weight: 600;
}
.menu-list-link:active,
.menu-list-link:hover {
  background: #c8c9cb;
  color: #54575e;
}
.menu-list-item:active .menu-list-link,
.menu-list-item:hover .menu-list-link {
  color: #54575e;
}
.menu-list-link:visited {
  color: #51545b;
}

.menu-list-link + .menu-list-link {
  margin-top: 8px;
}

.menu-list-link:before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.first.menu-list-link:before {
  background: url("/img/m/icon/consulting.svg") center center no-repeat;
  background-size: 56px;
}

.sec.menu-list-link:before {
  background: url("/img/m/icon/medal.svg") center center no-repeat;
  background-size: 44px;
}

.menu-list-link:after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("/img/m/icon/arrow-right-gray.svg") center center no-repeat;
  background-size: 15px;
}

/* 사이드바 타이틀 */
.side-quick-title {
  margin: 80px 32px;
  color: #1a1e27;
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
}

/* 사이드 메뉴 - 3단 메뉴 */
.side-quick-menu {
  margin: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 26px;
  display: grid;
}

.side-quick-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 0;
  border-radius: 24px;
  background: #eff1f3;
}

.side-quick-item .img-box {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.side-quick-item .menu-name {
  padding-top: 12px;
  color: #1a1e27;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1.68px;
  line-height: 32px;
}

/* 커스텀 뱃지 */
.custom-badge {
  margin: 0;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 2px 6px;
  border-radius: 100px;
  background: #e94940;
  color: #fff;
  -webkit-animation: blink 2.5s step-end infinite;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  width: 80px;
  text-align: center;
}
.custom-badge .month {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* 위아래로 움직이는 애니메이션 */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}
.floating {
  animation: float 2s ease-in-out infinite;
}

/* toast */
.toast {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 32px 9px 0;
  background: #ffc043;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* 클릭 막기 */
  width: 740px;
}

.toast.active {
  opacity: 1;
}

.toast-content {
  margin: 0;
  color: #353941;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  /* pointer-events: none; 클릭 막기 */
}

.toast-content:before {
  content: "";
  display: inline-block;
  margin: 0 16px;
  width: 24px;
  height: 24px;
  background: url("../../img/m/icon/error-black.svg") no-repeat center center;
  background-size: 24px;
}

.toast-close-btn {
  margin-right: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 0;
  background: url("../../img/m/icon/filled-black.svg") no-repeat center center;
  background-size: 16px;
  width: 24px;
  height: 24px;
}

/* 컨펌 모달 */
.dimmed {
  position: fixed;
  top: 0;
  background: rgba(218, 219, 222, 0.9);
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.confirm-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #fff;
  border-radius: 16px;
  width: 327px;
  max-width: 90%;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
}
.confirm-modal-content {
  padding: 24px 18px;
  font-family: Pretendard, noto, dotum, system-ui, roboto, Arial, Helvetica,
    sans-serif;
}
.confirm-modal-title {
  margin: 0 0 16px;
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
  font-family: inherit;
}
.confrim-modal-message {
  margin: 0;
  color: #51545b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.confirm-modal-buttons {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.confirm-modal-buttons .btn-close {
  color: #6c6f75;
  background: #f5f6f8;
}
.confirm-modal-buttons .btn-close:active,
.confirm-modal-buttons .btn-close:hover {
  color: #585c62;
  background: #c0c2c6;
}
.confirm-modal-buttons .btn-active {
  background: #fdbb37;
  color: #1a1e27;
}
.confirm-modal-buttons .btn-active:active,
.confirm-modal-buttons .btn-active:hover {
  color: #1a1e27;
  background: #c79533;
}
.confirm-modal-buttons .btn-close,
.confirm-modal-buttons .btn-active {
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  height: 56px;
  transition: all 0.3s;
}

/* =============== 서브 페이지 상단 뒤로가기 버튼 영역 시작 */
.top-btn-bar {
  padding: 40px 0;
}
.top-btn-bar .btn-back {
  border: none;
  background: transparent;
}
/* =============== //서브 페이지 상단 뒤로가기 버튼 영역 끝 */

/* =============== 입시 설명회 페이지 시작 */
.sub-title-700 {
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 30px;
  font-weight: 700;
  line-height: 42px;
}
.session-info-wrap {
  padding-bottom: 40px;
}
.process-box {
  margin: 30px 0;
  padding: 12px 0;
  color: #353941;
  font-size: 19px;
}
.process-list-item {
  font-size: inherit;
  color: inherit;
  font-weight: 700;
}

.process-list-item .process-number {
  display: inline-block;
  border-radius: 100px;
  background: var(--Black-50, #f5f6f8);
  width: 32px;
  height: 32px;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #353941;
  line-height: 20px;
  font-weight: 500;
}
.process-list-item .desc-box {
  margin: 16px 0 16px 15px;
  padding-left: 30px;
  border-left: 2px solid #e4e8eb;
  color: var(--Black-500, #888a90);
  font-size: 15px;
  font-weight: 400;
  line-height: 145%; /* 21.75px */
}
.process-list-item .process-img-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  vertical-align: middle;
}
.process-list-item .process-img-box,
.process-list-item .process-number {
  margin-right: 14px;
}
.process-list-item.last-line:before {
  content: "";
  display: block;
  width: 2px;
  height: 15px;
  background: #e4e8eb;
  border-radius: 8px;
  margin: 6px 0 6px 15px;
}
.session-info-box {
  padding: 36px 0;
}
.content-wrapper {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f5f6f8;
}
.content-row {
  display: flex;
}
.content-row + .content-row {
  margin-top: 40px;
}
.content-left {
  width: 160px;
}

.content-right {
  width: calc(100% - 170px);
}

.content-left,
.content-right {
  color: var(--Black-600, #6c6f75);
  font-size: 19px;
  font-weight: 600;
}
.text-gray-1 {
  color: var(--Black-400, #a3a5aa);
  font-size: inherit;
  font-weight: 500;
  /* 19px */
  line-height: 20px;
  display: inline-block;
  width: 203px;
}

.text-gray-2 {
  color: var(--Black-500, #888a90);
  font-family: Pretendard;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.content-list li {
  color: var(--Black-600, #6c6f75);
  font-size: 19px;
  font-weight: 600;
  line-height: 16px; /* 84.211% */
}

.content-list li + li {
  margin-top: 24px;
}
/* =============== //입시 설명회 페이지 끝 */

/* =============== 상담신청 완료 페이지 시작 */
.complete-info-area {
  padding-top: 56px;
  margin-bottom: 56px;
  text-align: center;
}
.complete-sub-text {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 9999px;
  background: #f5f6f8;
  color: #3182f6;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px; /* 166.667% */
}
.complete-header {
  color: #1a1e27;
  font-size: 26px;
  font-weight: 700;
  line-height: 145%; /* 35.1px */
  text-align: left;
}
.complete-text {
  margin-top: 4px;
  color: #6c6f75;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%; /* 21.6px */
}
.complete-info-qa {
  margin-bottom: 8px;
  color: #353941;
  font-size: 18px;
  font-weight: 600;
  line-height: 165%;
}

.complete-info-list-area {
  margin-top: 56px;
  border-radius: 16px;
}

.complete-info-list {
  text-align: left;
}

.complete-info-list li {
  padding: 24px 16px;
  display: flex;
  font-size: inherit;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  background: #f5f6f8;
  color: var(--Black-800, #353941);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%; /* 14px */
}

.complete-info-list li + li {
  margin-top: 8px;
}
.complete-info-list li:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url(/img/m/icon/Check-circle-blue.svg) no-repeat center center;
  background-size: 16px;
}
.complete-notice-text {
  margin: 8px 0 0 12px;
  color: var(--Black-500, #888a90);
  font-size: 13px;
  font-weight: 400;
  line-height: 135%; /* 17.55px */
  text-align: left;
}
.coupon-download-title {
  margin: 0 0 16px;
  color: var(--Black-800, #353941);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px; /* 120% */
}

.coupon-download-area {
  margin-top: 10px;
  padding-bottom: 64px;
}
.coupon-download-box {
  margin-top: 16px;
  padding: 24px;
  border-radius: 22px;
  background: var(--yellow-100-primary-container, #fceed0);
}
.coupon-download-text-box {
  padding-left: 64px;
  position: relative;
}
.coupon-download-text-box:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 44px;
  height: 44px;
  background: #fafafc url(/img/m/icon/gift.svg) center center no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 12px;
  background-size: 28px;
}

.download-info-title {
  margin: 0;
  color: var(--Black-900, #1a1e27);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%; /* 16px */
}
.download-info-text {
  margin: 10px 0 0;
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}
.coupon-wrap {
  margin: 21px 0;
}
.coupon-notice {
  margin-top: 21px;
  padding: 12px 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--Black-700, #51545b);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  border-radius: 6px;
  background: #f7faff;
}
/* =============== 상담신청 완료 페이지 끝 */

/* =============== 위치 정보 및 포토 시작 */
.branch-top-area {
  margin: 64px 0 16px;
}

.branch-sub-text {
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 100% */
  margin-top: 4px;
  padding: 0;
}
.branch-wrap {
  /* margin: 0 32px; */
  overflow: hidden;
}

/*상담전화 박스 영역*/
.branch-wrap .consult-box {
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
}

.branch-wrap .consult-content {
  display: flex;
  align-items: center;
}

.branch-wrap .consult-content img {
  display: inline-block;
  width: 22px;
  height: 22px;
  padding: 20px;
}

.branch-wrap .consult-content strong {
  color: var(--on-color-black-high-emphasis, #1a1e27);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.branch-wrap .consult-content p {
  margin: 0;
  color: var(--on-color-black-medium-emphasis, #6c6f75);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding-top: 2px;
}

.branch-wrap .content-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  width: calc(100% - 70px);
}

.branch-wrap .consult-content a {
  display: flex;
  padding: 0px 24px;
  height: 72px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 9999px;
  background: var(--core-surface-b, #eff1f3);
  color: var(--on-color-black-high-emphasis, #1a1e27);
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

/* 지도 */
.branch-title {
  color: #1a1e27;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
  text-align: left !important;
}
.branch-wrap .wrap .tab-list li a {
  padding: 14px 16px 14px 46px;
  background-color: #eff1f3;
  border-radius: 60px;
  margin: 0;
  width: auto;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-image: url(/img/m/consult/no_add.svg);
  background-position: 16px center;
  color: #6c6f75;
  text-decoration: none;
  border: none;
  font-size: 16px;
  line-height: 20px;
  /* width: 194px; */
  /* margin: 12px 0; */
  display: block;
  transition: none;
}
.branch-wrap .wrap .tab-list li.active a {
  background-image: url(/img/m/consult/add.svg);
  background-position: 16px center;
  background-color: #fcc659;
  background-size: 20px;
  background-repeat: no-repeat;
  color: #1a1e27;
  border: none;
  font-weight: 500;
  transition: none;
}
.branch-wrap .wrap .tab-list {
  width: calc(96px * 6 + 16px * 6);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0 64px;
}
.branch-wrap .wrap .tab-list li {
  margin: 0;
}
.branch-wrap .title1 {
  margin: 16px 0 64px;
}
.branch-wrap .title {
  margin: 16px 0 8px;
}
.branch-wrap .title p,
.fac-wrap .title p,
.branch-wrap .title1 p,
.fac-wrap .title1 p {
  color: #6c6f75;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin: 0;
  /* padding-top: 8px; */
}
.branch-wrap .wrap .tab-cont .cont .map {
  margin: 0;
  width: 100%;
  height: 480px;
  border-radius: 12px;
}

/* 시설 사진 */
.branch-wrap .swiperContainer {
  width: 316px;
  height: 240px;
  margin-bottom: 48px;
}
.branch-wrap .swiperContainer img {
  border-radius: 12px;
  width: 316px;
  height: 240px;
  object-fit: cover;
}

.branch-wrap .swiper-slide-prev,
.branch-wrap .swiper-slide-active,
.branch-wrap .swiper-slide-next {
  width: 316px !important;
  margin-right: 8px !important;
}

.branch-wrap .Surface_A:active,
.branch-wrap .Surface_A:hover {
  background: #e8e8e9;
  border-radius: 24px;
  color: #bec0c4 !important;
}

.branch-wrap .root_daum_roughmap {
  width: 100% !important;
  height: 480px;
  border-radius: 12px;
}
/* =============== 위치 정보 및 포토 끝 */
/* =============== new 푸터 시작 */
.footer-bg {
  background: #f5f6f8;
}
.footer-new {
  padding: 32px 32px 40px;
  background: #f5f6f8;
}
.footer-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-branch-view {
  color: #51545b;
  height: 32px;
  padding: 0px 7px;
  border: 1px solid #d1d2d4;
  border-radius: 4px;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.fot-branch-area {
  margin-top: 10px;
}
.table-footer-branch-info {
  font-size: 12px;
}
.table-footer-branch-info th {
  font-weight: normal;
  text-align: center;
}
.table-footer-branch-info td {
  padding: 0 10px;
  text-align: center;
}
.table-footer-branch-info thead {
  border-bottom: 1px solid #ddd;
}
.table-footer-branch-info th,
.table-footer-branch-info td {
  font-size: 12px;
}
.fot-comp-name {
  margin: 0;
  color: #353941;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
.fot-menu-list {
  margin: 20px 0 12px;
}
.fot-menu-list li {
  display: inline-block;
  vertical-align: middle;
  color: var(--Black-700, #51545b);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.fot-menu-list li + li {
  /* margin-left: 12px; */
}

.fot-menu-list li + li:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background: #dadbde;
  vertical-align: middle;
  margin: 0 12px;
}

.fot-menu-list li a {
  display: inline-block;
  vertical-align: middle;
}
.fot-info-list {
  margin: 12px 0 32px;
}
.fot-info-list li {
  color: var(--Black-500, #888a90);
  font-size: 11px;
  font-weight: 400;
  line-height: 12px;
}
.fot-info-list li a {
  color: inherit;
}
.fot-info-list li + li {
  margin-top: 8px;
}
.footer-icon a {
  display: inline-block;
}
/* =============== new 푸터 끝 */

/* =============== 입시 설명회 팝업 시작 */
.common-popup-wrap {
  display: none;
}
.common-popup-wrap.open {
  display: block;
}
.common-popup-wrap .popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 24px 18px 36px;
  border-radius: 16px;
  background: #fff;
  z-index: 99999;
}
.common-popup-wrap .popup-img-box {
  border-radius: 12px;
  overflow: hidden;
}
.common-popup-wrap .popup-img-box a {
  display: block;
  text-align: center;
}
.common-popup-wrap .popup-img-box img {
  /* width: 100%; */
  height: 221px;
  border-radius: 16px;
}
.common-popup-wrap .popup-content {
  padding: 24px 18px 24px;
  border-radius: 16px;
  width: 330px;
}

.common-popup-wrap .popup-title {
  color: var(--Content-contentPrimary, #000);
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 145%; /* 31.9px */
  margin-bottom: 8px;
  font-family: Pretendard, noto, LotteMartDream, dotum, gullim, bm, tm, lhp,
    roboto, scd, Tahoma, Arial, Helvetica, sans-serif;
}
.common-popup-wrap .text-info-box {
  margin: 26px 0;
}
.common-popup-wrap .popup-text {
  margin: 0;
  color: var(--Black-700, #51545b);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: Pretendard, noto, LotteMartDream, dotum, gullim, bm, tm, lhp,
    roboto, scd, Tahoma, Arial, Helvetica, sans-serif;
}
.common-popup-wrap .popup-content-link {
  margin: 0 auto;
  display: flex;
  width: 124px;
  height: 26px;
  font-size: 16px;
  padding: 14px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  background: var(--yellow-600-primary, #feb015);
  color: #fff;
  text-decoration: none;
  font-family: Pretendard, noto, LotteMartDream, dotum, gullim, bm, tm, lhp,
    roboto, scd, Tahoma, Arial, Helvetica, sans-serif;
}
.common-popup-wrap .popup-content-link:visited {
  color: #fff;
}
.common-popup-wrap .btn-popup-close {
  padding: 16px 0;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background: no-repeat;
  color: var(--Black-700, #51545b);
  font-size: 16px;
  font-weight: 500;
}
/* =============== 입시 설명회 팝업 끝 */

/* =============== 교습비/수강료 시작 */
.line-tab-menu-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.line-tab-menu-wrap .tab-menu-btn {
  padding: 10px 20px;
  background: transparent;
  font-size: 18px;
  transition: color 0.3s;
  color: #292929;
  border: 0;
  border-bottom: 2px solid #fff;
}
.line-tab-menu-wrap .tab-menu-btn:hover,
.line-tab-menu-wrap .tab-menu-btn.on {
  color: #feb015;
  border-bottom: 2px solid #feb015;
}
.tuition-tab-info-box p {
  margin: 0;
}
/* =============== 교습비/수강료 끝 */

/* =============== 진로&대회 시작 */
.competition-img-box img {
  margin: 0 auto;
  width: 560px;
  display: block;
}
/* 국내대회 */
.compeition-tab-btn-wrap {
  margin: 60px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.compeition-tab-btn-wrap .tab-menu-btn {
  padding: 10px 20px;
  background: transparent;
  font-size: 18px;
  transition: color 0.3s;
  color: #292929;
  border: 0;
  border-bottom: 2px solid #fff;
}
.compeition-tab-btn-wrap .tab-menu-btn:hover,
.compeition-tab-btn-wrap .tab-menu-btn.on {
  color: #feb015;
  border-bottom: 2px solid #feb015;
}
/* =============== 진로&대회 끝 */

/* =============== 환불규정 시작 */
.refund-text {
  margin-bottom: 40px;
  font-size: 20px;
  color: #262626;
  text-align: center;
}

.refund-title {
  margin-top: 35px;
  margin-bottom: 24px;
  padding: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  background: #1f5e45;
}

.refund-sub-title {
  margin: 20px 0;
  font-size: 18px;
  color: #262626;
  font-weight: 500;
}

.refund-desc {
  font-size: 16px;
}

.refund-info-list {
  margin-bottom: 30px;
}
.refund-info-list li {
  font-size: 16px;
  line-height: 24px;
  color: #222;
}
/* =============== 환불규정 끝 */

/* =============== 10대 렌딩 시작 */
.header-wrapper.active {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px);
}
.header-wrapper.active .header_app_bar {
  background: none;
  border-color: transparent;
}
.teenagers-landing-content {
  background-color: #f5f6f8;
  padding-top: 64px;
  padding-bottom: 158px;
}
.teenagers-landing-content section:nth-last-of-type(1) {
	padding-bottom:240px
}
.teenagers-landing-content video {
  display: block;
  pointer-events: none; /* 클릭 불가 */
}
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: calc(100vh - 98px); */
  overflow: hidden;
  width: 1000px;
  height: 620px;
  border-radius: 40px;
  overflow: hidden;
}
.hero-section .landing-main-video-area {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-section .landing-main-video-area .video-text {
  color: rgba(255, 255, 255, 0.62);
  position: absolute;
  top: 22px;
  right: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: 0.64px;
  z-index: 10;
}
.hero-section .landing-main-video-area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
}
.hero-section .hero-section-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 99;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-section .title-small {
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 1.04px;
  margin-bottom: 4px;
}
.hero-section .title {
  color: var(--On-Color-White-White, #fff);
  text-align: center;
  font-size: 52px;
  font-weight: 900;
  line-height: 145%;
  letter-spacing: 2.08px;
}

.why-section {
  text-align: center;
  background: #fff;
}
.why-section .why-title-area {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f5f6f8;
}
.why-section .why-title {
  margin: 0;
  padding-bottom: 40px;
  color: #000;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.48px;
}
.why-section .why-title-area .title-deco {
  display: inline-block;
  width: 6px;
  height: 64px;
  background: linear-gradient(180deg, #d9d9d9 0%, #737373 100%);
}
.why-section .why-item + .why-item {
  margin-top: 80px;
}
.why-section .why-item:last-of-type {
  padding-bottom: 80px;
}
.why-section .why-item .why-image-wrapper {
  margin-top: 130px;
}
.why-image-wrapper img {
  border-radius: 12px;
  max-width: 100%;
  width: 592px;
  height: 320px;
}
.why-section .why-item .why-text {
  padding-top: 52px;
  color: #000;
  font-size: 32px;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.32px;
  margin: 0 0 -10px;
}
.why-section .why-box {
  display: flex;
  width: 592px;
  padding: 24px 24px 24px 40px;
  margin: 200px auto 160px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 24px;
  background: var(--Black-150, #dadbde);
}
.why-section .why-description {
  margin: 0;
  color: var(--Black-800, #353941);
  font-size: 26px;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 0.26px;
  text-align: left;
  margin-left: 40px;
}

.education-section {
  background-color: #fff;
}
.education-cont-wrap {
  display: flex;
  padding: 120px 0;
  margin: 0 80px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 135px;
}
.education-cont-wrap {
  border-bottom: 1px solid #eff1f3;
}
.education-cont-wrap:last-child {
  border: none;
}
.education-section .education-title-small {
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-family: Pretendard;
  font-size: 22px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: 0.22px;
}
.education-section .education-cont-text {
  flex-grow: 1;
}
.education-section .education-cont-detail {
  flex-grow: 1;
  padding: 0;
}
.education-section .education-title {
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 40px;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: 0.4px;
}
.education-section .education-cont {
  border-bottom: 1px solid #d3d3d3;
}
.education-section .education-cont:last-child {
  border: none;
}
.education-section .comparison-container {
  display: flex;
  gap: 24px;
}
.education-section .comparison-container .comparison-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 19px 0;
  border-radius: 19px;
  background: var(--Black-100, #eff1f3);
}
.education-section .comparison-container .comparison-item-title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--Black-600, #6c6f75);
  font-size: 22px;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: -0.44px;
}
.education-section .comparison-container .comparison-item-list {
  font-size: 19px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: 0.76px;
  margin: 0;
}
.education-section .comparison-container .comparison-item-list li {
  color: var(--Black-600, #6c6f75);
  font-size: 19px;
  font-weight: 600;
  line-height: 135%;
  letter-spacing: 0.3px;
  text-align: left;
}
.education-section .comparison-container .comparison-item-list li:before {
    content: '• ';
}
.education-section .comparison-item.item-2 .comparison-item-title {
  background: linear-gradient(90deg, #3bba53 0%, #1c812f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.education-section .comparison-item.item-2 .comparison-item-list li {
  color: #2cad70;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 1.14px;
}
.education-section .education-desc {
  margin: 24px 0px 0px 0px;
  padding: 24px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 19px;
  background: var(--Black-500, #888a90);
  color: var(--On-Color-White-White, #fff);
  font-size: 20px;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 0.22px;
}
.education-section .education-desc img {
  display: flex;
  width: 26px;
  height: 26px;
  padding: 1.3px 4.322px 1.294px 3.9px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
.education-section .education-approach-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  text-align: center;
}
.education-section .approach-item-title {
  display: inline-block;
  position: relative;
  margin-top: 0;
  margin-bottom: 6px;
  padding: 8px 16px;
  color: #fff;
  text-align: center;
  background-color: #a3a5aa;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}
.education-section .approach-item-title::before {
  position: absolute;
  bottom: -10px;
  left: 50%;
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  transform: rotate(45deg) translateX(-50%);
  background-color: inherit;
}
.education-section .point .approach-item-title {
  background-color: #353941;
}
.education-section .approach-item-img {
  margin: 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  background-color: #f0f2f4;
}
.education-section .point .approach-item-img {
  background-color: #fceed0;
}
.education-section .approach-item-text {
  margin: 8px auto 0;
  color: #353941;
  font-size: 19px;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: -0.28px;
}
.education-section .approach-item-text span {
  color: #3539416b;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.education-section .approach-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--Black-800, #353941);
  flex-direction: column;
  justify-content: center;
}
.education-section .approach-divider .approach-divider-text {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}
.education-section .education-graphic {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  text-align: center;
}
.education-section .education-graphic .education-graphic-arrow {
  padding-top: 60px;
}
.education-section .education-graphic-desc-1 {
  margin: 0 auto;
  display: flex;
  width: 120px;
  height: 95px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  border: 2px dashed #d1d2d4;
  background: var(--Black-10, #fafafc);
  color: #f14654;
  font-size: 21px;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 0.42px;
  box-sizing: border-box;
}
.education-section .education-graphic-desc-2 {
  margin: 8px auto 0;
  display: flex;
  width: 120px;
  height: 102px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #727e97;
  color: var(--On-Color-White-White, #fff);
  font-size: 19px;
  font-weight: 500;
  line-height: 135%;
}
.education-section .education-graphic-desc-3 {
  margin: 0 auto;
  display: flex;
  width: 120px;
  height: 205px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 8px;
  background: #2cad70;
  color: var(--On-Color-White-White, #fff);
  font-size: 21px;
  font-weight: 700;
  line-height: 165%;
}
.education-section .education-graphic-name {
  color: rgba(53, 57, 65, 0.42);
  text-align: center;
  display: block;
  margin: 16px 0px 6px 0px;
  font-size: 19px;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: -0.38px;
}
.education-section .graphic-item-2 .education-graphic-name {
  color: #2cad70;
}
.education-section .education-graphic-text {
  margin: 0;
  display: flex;
  width: 152px;
  height: 140px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 19px;
  background: var(--Black-100, #eff1f3);
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 145%;
}
.education-section .graphic-item-1 .education-graphic-text {
  color: var(--Black-600, #6c6f75);
  font-weight: 600;
  line-height: 145%;
}
.education-section .graphic-item-2 .education-graphic-text {
  color: var(--Black-800, #353941);
  font-weight: 700;
  line-height: 156%;
}
.education-section .education-text {
  margin: 40px 0px 0px 0px;
  color: var(--Black-600, #6c6f75);
  font-size: 13px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 145%;
}
.education-section .education-text span {
  color: #2cad70;
  font-size: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: inherit;
  line-height: 145%;
}

.guide-section {
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background-color: #eff1f3;
}
.guide-section .guide-section-text {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 165%;
  letter-spacing: 0.1px;
  background: linear-gradient(104deg, #6fae7b 6.74%, #06751b 69.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skills-section {
  padding-bottom: 60px;
  background: #fff;
  overflow: hidden;
}
.skills-section .skills-title {
  padding: 120px 130px;
  color: #353941;
  font-size: 30px;
  font-weight: 800;
  line-height: 145%;
  letter-spacing: 0.3px;
}
.skills-section .swiper-custom-prev {
  left: 106px;
}
.skills-section .swiper-custom-next {
  right: 106px;
}
.skills-section .swiper-slide {
  width: 360px;
  height: 627px;
  padding: 32px 40px;
  border-radius: 24px;
  background: rgba(44, 173, 112, 0.16);
  box-sizing: border-box;
}
.teenagers-landing-content .skills-title .text-bg {
  margin-left: -5px;
  padding-left: 5px;
  padding-right: 5px;
}
.teenagers-landing-content .skills-title .text-line {
  bottom: 0;
}
.skills-section .skills-icon-box {
  margin-bottom: 8px;
}
.skills-section .skills-icon-box img {
  display: block;
}
.skills-section .skills-item-text {
  margin-bottom: 32px;
  color: #353941;
  font-size: 26px;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.26px;
}
.skills-section .skills-item-text span {
  color: rgba(53, 57, 65, 0.52);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.skills-section .skills-video-box {
  position: relative;
  margin-bottom: 12px;
  width: 280px;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
}
.skills-section .skills-video-box video {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
}
.skills-section .skills-video-text {
  margin: 0;
  color: rgba(53, 57, 65, 0.52);
  font-size: 14px;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: 0.14px;
}
.skills-section .swiper-area {
  padding: 0 40px 0 130px;
  margin: 0 auto;
}
.skills-section .swiper-container.admissions-swiper {
  width: 100%;
}

/* 이미지 컨텐츠 영역 */
.admissions-section {
  padding: 60px 130px 0;
  background-color: #fff;
}
.admissions-section .teenagers-banner-cont {
  margin: 120px 130px;
  padding: 0;
}
.admissions-section .teenagers-banner-cont:nth-child(1) {
  margin-top: 0;
}
.admissions-section .teenagers-banner-cont:last-child {
  margin-bottom: 0;
}
.admissions-section .teenagers-banner-detail {
  padding-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.admissions-section .teenagers-banner-detail a,
.admissions-section .teenagers-banner-detail img {
  width: 350px;
  height: 490px;
}

.team-section {
  background-color: #fff;
}
.team-section .team-title-area {
  display: flex;
  padding: 96px 130px 120px 130px;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background-color: #eff1f3;
}
.team-section .team-title {
  color: var(--Black-800, #353941);
  text-align: center;
  font-family: Pretendard;
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 165%;
  letter-spacing: 0.1px;
}
.team-section .team-sub-text-area {
  padding: 80px 190px 56px 190px;
  display: flex;
  align-items: center;
}
.team-section .team-sub-text {
  font-size: 40px;
  font-weight: 800;
  line-height: 145%;
  background: linear-gradient(
    95deg,
    #01c8d6 1.93%,
    #00a9ea 29.22%,
    #2ed686 56.51%,
    #ffc642 83.8%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-section .swiper-slide {
  width: 320px;
  height: 448px;
  border-radius: 24px;
  overflow: hidden;
}
.team-section .swiper-slide img {
  width: 100%;
}
/* .team-section .swiper-slide:nth-child(2) img {
  width: 654px;
  border: 4px solid #d1d2d4;
  box-sizing: border-box;
  padding: 0;
} */
.team-section .team-intro-content {
  display: flex;
  padding: 0 24px 120px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding-bottom: 52px;
}
.team-section .image-with-caption {
  margin-bottom: 16px;
  text-align: center;
}
.team-section .image-with-caption img {
  width: 620px;
  height: 540.367px;
  stroke-width: 4px;
  stroke: rgba(53, 57, 65, 0.82);
}
.team-section .image-with-caption figcaption {
  text-align: left;
  color: rgba(53, 57, 65, 0.62);
  font-size: 15px;
  font-weight: 600;
  line-height: 165%;
  letter-spacing: 0.038px;
}
.team-section .team-info-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-section .team-info-box .team-info-text {
  margin: 0;
  display: flex;
  padding: 19px 32px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 24px;
  background: #f0f2f4;
  color: var(--Black-800, #353941);
  font-size: 22px;
  font-weight: 700;
  line-height: 135%;
}
.team-section .team-info-box .team-info-text:nth-child(1) {
  padding: 26px 32px;
  justify-content: center;
  color: #fff;
  border-radius: 22px;
  background: linear-gradient(90deg, #71a3fb 0%, #a469fa 100%);
}
.team-section .team-info-box .team-info-text img {
  display: inline-block;
  margin-right: 8px;
}
.team-section .team-info-box .team-info-text span {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  background: linear-gradient(90deg, #f87785 0%, #e30018 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-section .team-banner {
  width: 620px;
  margin: 0 auto 120px;
}
.team-section .team-slide-inner {
  padding: 28px 0 28px 17px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 24px;
  box-sizing: border-box;
  background: #f5f6f8;
}
.team-section .team-slide-inner-title {
  color: var(--Black-800, #353941);
  font-size: 14px;
  font-weight: 800;
  line-height: 145%;
}
.team-section .team-slide-inner-text {
  margin: 0;
  text-align: left;
  color: var(--Black-600, #6c6f75);
  font-size: 8px;
  font-weight: 600;
  line-height: 165%;
}

.achievements-section {
  background-color: #fff;
}
.achievements-section .swiper-slide {
  width: 320px;
  height: 448px;
  border-radius: 24px;
  overflow: hidden;
}
.achievements-section .teenagers-banner-cont {
  margin: 0 auto;
  overflow: hidden;
}
.achievements-section .achievements-slide-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}
.achievements-section .achievements-slide-inner.fir {
  padding: 40px 18px 24px;
  background: linear-gradient(147deg, #3a89f7 0%, #4dbec1 98.61%);
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
}
.achievements-section .achievements-slide-inner.last {
  padding: 40px 13.5px 24px;
  background: url("/img/m/landing/achievements-bg.png") center center no-repeat;
  background-size: cover;
}
.achievements-section .achievements-text-area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.achievements-section .achievements-text {
  margin: 0;
  color: var(--On-Color-White-High-Emphasis, #fff);
  font-size: 30px;
  font-weight: 700;
  line-height: 125%;
}
.achievements-section .last .achievements-text {
  color: #1a1e27;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.64px;
}
.achievements-section .last .achievements-text span {
  color: #0da6ff;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.achievements-section .achievements-grid-box {
  width: 100%;
  display: grid;
  grid-template: 1fr 1fr / 1fr 1fr;
  gap: 16px;
}
.achievements-section .achievements-grid-box .achievements-grid-item {
  display: flex;
  padding: 12px 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.07);
  justify-content: space-between;
  width: 100%;
}
.achievements-section .achievements-grid-text {
  color: var(--Black-900, #1a1e27);
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 135%;
}
.achievements-section .achievements-grid-text span {
  color: #1a7dff;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.achievements-section .achievements-list {
  width: 100%;
  margin: 0;
}
.achievements-section .achievements-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 8px 12px 37px;
  border-radius: 10px;
  background: url("/img/m/landing/icon-check.svg") #fff 10px center no-repeat;
  background-size: 19px 19px;
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.32px;
  line-height: normal;
}
.achievements-section .achievements-list li + li {
  margin-top: 8.67px;
}
.achievements-section .achievements-list li span {
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 14px;
  font-weight: 400;
  line-height: 100%; /* 14px */
}

/* 리뷰 슬라이드 컨텐츠 */
.skills-section + .reviews-section {
  padding-top:60px
}
.reviews-section.teenagers-banner-cont {
  padding-bottom: 120px;
  background-color: #fff;
}
.review-swiper .swiper-slide {
  height: unset;
  overflow: hidden;
  box-sizing: border-box;
  width: 320px;
  height: 424px;
  background: var(--Black-50, #f5f6f8);
  border-radius: 24px;
}
.review-cont {
  padding: 32px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
  align-items: flex-start;
}
.review-cont-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}
.review-cont .profile-img-box img {
  width: 64px;
  height: 64px;
}
.review-cont .review-title {
  color: var(--Black-800, #353941);
  font-size: 24px;
  font-weight: 700;
  line-height: 145%;
}
.review-cont .review-cont-text {
  margin: 0;
  padding-top: 16px;
  color: #6c6f75;
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
  word-break: keep-all;
  background-image: url("/img/m/landing/Talkingup_fill.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 0 0;
}
.review-name {
  padding: 10px;
  color: #2cad70;
  border-radius: 999px;
  background: #e3f5ec;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

/* 슬라이드 컨텐츠 공통 스타일 */
.teenagers-banner-cont {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}
.teenagers-banner-title {
  margin-bottom: 24px;
  color: #353941;
  font-size: 30px;
  font-weight: 800;
  line-height: 135%;
  letter-spacing: 0.3px;
}
.teenagers-banner-cont .teenagers-banner-title {
  padding: 0 130px;
}
.teenagers-banner-sub-text {
  margin-bottom: 2px;
  display: block;
  color: rgba(53, 57, 65, 0.62);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.19px;
  line-height: normal;
}
.teenagers-landing-content .swiper-area {
  position: relative;
}
.teenagers-banner-cont .swiper-area {
  margin: 0 106px;
  padding: 0 24px;
  text-align: center;
  overflow: hidden;
}
.teenagers-banner-cont .swiper-slide a {
  display: block;
}
.teenagers-banner-cont .swiper-slide > img,
.teenagers-banner-cont .swiper-slide > a {
  max-width: 100%;
  max-height: 100%;
}

.teenagers-landing-content .swiper-custom-prev,
.teenagers-landing-content .swiper-custom-next {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.82);
  background-size: 32px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.teenagers-landing-content .swiper-custom-prev {
  background-image: url("/img/icon/arrow-prev.svg");
}
.teenagers-landing-content .swiper-custom-next {
  background-image: url("/img/icon/arrow-next.svg");
}

.teenagers-banner-cont .swiper-custom-prev {
  left: 3px;
}
.teenagers-banner-cont .swiper-custom-next {
  right: 3px;
}

/* 10대 랜딩 공통 스타일 */
.teenagers-landing-content .text-bg {
  display: inline-block;
  padding: 0 12px;
  border-radius: 9999px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.teenagers-landing-content .text-bg.yellow {
  background-color: #fcef69;
}
.teenagers-landing-content .text-bg.green {
  background-color: #7bee88;
}
.teenagers-landing-content .text-bg.pink {
  background-color: #ff81b3;
}
.teenagers-landing-content .text-line-box {
  display: inline-block;
  position: relative;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.teenagers-landing-content .text-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  width: 100%;
}

/* 고정 이벤트 바 ===== */
.event-bar {
  position: fixed;
  bottom: 40px;
  left: 50%;
  z-index: 1000;
  transform: translateX(-50%);
  background: #fff6f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  width: 100%;
  max-width: 1000px;
}
.event-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-label {
  color: #faa700;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.28px;
  background: #f9e6be;
  border-radius: 999px;
  padding: 6px 8px;
  margin-right: 6px;
}
.event-desc {
  color: var(--Black-900, #1a1e27);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.053px;
}
a.event-btn {
  padding: 12px 48px;
  text-decoration: none;
  color: var(--On-Color-White-High-Emphasis, #fff);
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 999px;
  background: var(--Orange-900, #feb015);
}
/* //고정 이벤트 바 ===== */
/* =============== 10대 렌딩 끝 */

/* 메인 페이지 및 쇼츠 리스트 뱃지 스타일 ========= */
.badge-box {
	display: flex;
	align-items: center;
	gap:6px;
	flex-wrap: wrap
}
.badge-item {
	display: inline-flex;
	min-width:107px;
	padding: 2px 6px;
	justify-content: center;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	box-sizing:border-box;
	border-radius: 9999px;
	border-width: 2px;
	border-style: solid;
	background: var(--Core-SurfaceA, #FFF);
}
.badge-4503 {color:#D09112; border-color:#FBD17B}
.badge-4502 {color:#2372EB; border-color:#8FC2FF}
.badge-4501 {color:#E4283A; border-color:#FB8890}
.badge-4500 {color:#1F816F; border-color:#1EB99D}

/* ===== 강사 소개 페이지 */
.teacher-container {
	margin: 64px 0;
	padding: 0 16px;
}
.teacher-list {
	margin-top: 24px;
	gap: 19px 13px;
}
.teacher-item {
	position:relative;
	cursor: pointer;
}
.teacher-item .teacher-thumb-box {
	margin-bottom: 8px;
	width: 165px;
	height: 166px;
	background-color: #F5F5F7;
	border-radius: 12px;
	overflow: hidden;
}
.teacher-item.active:before {
	content:'';
	position:absolute;
	top:0;
	left:-6px;
	display: inline-block;
	width: 66px;
	height: 30px;
	background: url('/img/icon/icon-ribbon-mgpt.svg') no-repeat center center;
	background-size: 66px 30px
}
.teacher-thumb-box img {
	width: 100%;
	height: 100%;
}
.teacher-name {
	margin-bottom: 4px;
	color: var(--On-Color-Black-High-Emphasis, #1A1E27);
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 100%;
}
.course-name {
	margin:0;
	color: var(--On-Color-Black-Medium-Emphasis, #6C6F75);
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 12px;
}
/* 강사 상세 정보 */
.common-bottom-sheet .profile-info {
	padding-top: 80px;
	padding-left: 48px;
	padding-right: 48px;
	position: relative;
	text-align: left;
	max-height: 70dvh;
	overflow-y: auto; 
}
.profile-info .bottom-sheet-title-close {
	position: absolute;
	right:48px;
	top:0;
}
.profile-info .bottom-sheet-title-close img {
	width: 48px
}
.profile-top-area {
	position:relative;
	display: flex;
	align-items: end;
	gap: 16px;
}
.profile-top-area.active:before {
	content:'';
	position:absolute;
	top:0;
	left:-6px;
	display: inline-block;
	width: 66px;
	height: 30px;
	background: url('/img/icon/icon-ribbon-mgpt.svg') no-repeat center center;
	background-size: 66px 30px
}
.profile-top-area .profile-thumb {
	width: 302px;
	height: 403px;
	aspect-ratio: 302/403;
	background:#eee;
	border-radius: 12px;
	overflow: hidden;
}
.profile-top-area .profile-thumb img {
	object-fit: cover;
	height:100%;
	width: 100%;
}
.profile-name {
	color: var(--On-Color-Black-High-Emphasis, #1A1E27);
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.84px;
}
.profile-name span {
	margin-top: 12px;
	display:block;
	color: var(--On-Color-Black-Medium-Emphasis, #6C6F75);
	font-size: 19px;
	font-weight: 500;
	line-height: 12px;
	letter-spacing: normal;
}
.profile-desc-box {
	margin: 24px 0;
	padding: 10px 12px;
	display:flex;
	align-items:center;
	gap:12px;
	border-radius: 12px;
	border: 2px solid rgba(30, 185, 157, 0.42);
}
.profile-desc-box .icon-box {
	display:flex;
	align-items:center;
	justify-content:center;
	width: 48px;
	height: 48px;
	padding: 4px;
	border-radius: 12px;
	background: var(--Black-50, #F5F6F8);
	box-sizing: border-box;
}
.profile-desc-box .icon-box img{
	width: 100%;
	height: 100%
}
.profile-desc-box .desc-text {
	margin: 0;
	width: calc(100% - 12px - 48px);
	color: var(--mambo-green-100-secondary-a, #1EB99D);
	font-size: 16px;
	font-weight: 500;
	line-height: 135%;
	text-align: left;
	word-break: break-all;
}
.resume-wrapper .section{
	margin: 24px 0;
}
/* 리스트 공통 스타일 */
.resume-wrapper .content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.resume-wrapper .section-title {
	margin: 0 0 8px;
	text-align:left;
	color: var(--Black-800, #353941);
	font-size: 19px;
	font-weight: 600;
	line-height: 20px; /* 105.263% */
}
.resume-wrapper .content-list li {
	margin: 0;
	position: relative;
	padding-left: 22px;
	color: var(--Black-600, #6C6F75);
	font-size: 15px;
	font-weight: 400;
	line-height: 135%;
	word-break: keep-all;
}
.resume-wrapper .content-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #888;
    font-weight: bold;
}
/* ===== //강사 소개 페이지 */

/* 로딩바 */
.load-indicator {
    text-align: center;
    padding: 48px;
    grid-column: 1 / -1;
    display: none;
}

.load-indicator.active {
    display: block;
}

.spinner {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 6px solid #DBDBDB;
    border-top-color: #0095F6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}