@charset "UTF-8";

/* 모바일용 2배수 값 */
:root {
  --scale: 2;
}

/* ===== 공통 서브페이지 inner */
.sub-inner {
  padding: 0 32px;
}
/* ===== //공통 서브페이지 inner */

/* ===== 공통 탭 메뉴 */
/* 탭 메뉴 컨테이너 */
.category-tabs {
  display: flex;
  margin-bottom: 24px;
}

/* 탭 버튼 */
.category-tabs__button {
  padding: 16px 20px;
  border: none;
  color: var(--Black-600, #6C6F75);
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -1.12px;
  border-radius: 24px;
  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;
}
/* ===== //공통 탭 메뉴 */

/* ===== 공통 grid */
.grid-container {
	display: grid;
}
.grid-col-2 {
	grid-template-columns: 1fr 1fr;
	gap:26px 32px;
}
/* ===== //공통 grid */

.moveButton {
  margin: 32px 0 80px;
  display: block;
  width: 100%;
  height: 96px;
  padding: 0;
  color: #3182f6;
  font-size: 32px;
  font-weight: 600;
  background: #e4f0ff;
  border: none;
  border-radius: 24px;
  transition: all 0.3s;
}
.moveButton:focus,
.moveButton:active {
  background: #d7e8fd;
}

.notice-text {
  margin: 0;
  position: relative;
  padding-left: 30px;
  color: #6c6f75;
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
}
.notice-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/img/m/icon/error-outline.svg) no-repeat center center;
  background-size: 24px;
}

/* 구분선 */
.section-divider {
  margin: 0;
  border: none;
  height: 32px;
  background-color: #f5f6f8;
}

/* 메인 퀵 메뉴 */
.main-quick-menu {
  margin: 44px 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.main-quick-menu .quick-item {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8faff 40.38%, #e2e8ee 100%);
}

.main-quick-menu .quick-item:active {
  background: #e2e8ee;
}

.quick-item-link {
  display: block;
  padding: 42px 24px;
  background: calc(100% - 24px) calc(100% - 24px) no-repeat;
}
.main-quick-menu .quick-item:active .quick-item-link:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0, 0, 0, 0.1);
  border-radius: 24px;
  z-index: 0;
}

.quick-item:nth-child(1) .quick-item-link {
  background-image: url(/img/m/icon/rocket.svg);
  background-size: 72px;
}

.quick-item:nth-child(2) .quick-item-link {
  background-image: url(/img/m/icon/consulting.svg);
  background-size: 72px;
}

.quick-item-text {
  color: #1a1e27;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.64px;
  /* margin-bottom: 4px; */
  display: block;
}

.quick-item-sub-text {
  display: block;
  color: #6c6f75;
  font-size: 24px;
  font-weight: 500;
}

/* 메인 메뉴 리스트 */
.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;
}

a.menu-list-link {
  position: relative;
  padding: 20px 56px 20px 86px;
  display: block;
  color: #353941;
  font-size: 32px;
  font-weight: 600;
}
.menu-list-link .month {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.menu-list-link:active {
  background: #c8c9cb;
  color: #353941;
}
.menu-list-item:active .menu-list-link {
  color: #54575e;
}
.menu-list-link:visited {
  color: #353941;
}

.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%);
}

.menu-list-item.item-1 .menu-list-link:before {
  background: url("/img/m/icon/jewel.svg") center center no-repeat;
  background-size: 56px;
}
.menu-list-item.item-2 .menu-list-link:before {
  background: url("/img/m/icon/medal.svg") center center no-repeat;
  background-size: 44px;
}
.menu-list-item.item-3 .menu-list-link:before {
  background: url("/img/icon/icon-person.svg") center center no-repeat;
  background-size: 70px;
}
.menu-list-item.item-4 .menu-list-link:before {
  background: url("/img/m/icon/call.svg") center center no-repeat;
  background-size: 56px;
}


.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,
.side-quick-item .month {
  margin: 0;
  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: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 4px 12px;
  border-radius: 100px;
  background: #e94940;
  -webkit-animation: blink 2.5s step-end infinite;
  white-space: nowrap;
}

.custom-badge,
.custom-badge .month {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

/* 위아래로 움직이는 애니메이션 */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.floating {
  animation: float 2s ease-in-out infinite;
}

/* toast */
.toast {
  position: fixed;
  top: 116px;
  left: 32px;
  right: 32px;
  padding: 18px 64px 18px 0;
  background: #ffc043;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toast.active {
  opacity: 1;
}

.toast-content {
  margin: 0;
  color: #353941;
  font-size: 32px;
  font-weight: 400;
  display: flex;
  align-items: center;
  pointer-events: none; /* 클릭 막기 */
}

.toast-content:before {
  content: "";
  display: inline-block;
  margin: 0 32px;
  width: 48px;
  height: 48px;
  background: url("../../img/m/icon/error-black.svg") no-repeat center center;
  background-size: 48px 48px;
}

.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: 32px 32px;
  width: 48px;
  height: 48px;
}

/* 컨펌 모달 */
.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: 32px;
  width: 654px;
  max-width: 90%;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
}
.confirm-modal-content {
  padding: 48px 36px;
}
.confirm-modal-title {
  margin: 0 0 16px;
  color: #000;
  font-size: 44px;
  font-weight: 600;
  line-height: 48px;
}
.confrim-modal-message {
  margin: 0;
  color: #51545b;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
}
.confirm-modal-buttons {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.confirm-modal-buttons .btn-close,
.confirm-modal-buttons .btn-active {
  border-radius: 16px;
  font-size: 32px;
  font-weight: 500;
  border: none;
  height: 112px;
  transition: all 0.3s;
}
.confirm-modal-buttons .btn-close {
  color: #6c6f75;
  background: #f5f6f8;
}
.confirm-modal-buttons .btn-close:active {
  color: #585c62;
  background: #c0c2c6;
}
.confirm-modal-buttons .btn-active {
  color: #585c62;
  background: #fdbb37;
}
.confirm-modal-buttons .btn-active:active {
  color: #1a1e27;
  background: #c79533;
}

/* =============== 메인 숏폼 컨텐츠 시작 */
.main-shorts-feed-section {
	margin: calc(36px * var(--scale)) calc(16px * var(--scale)) calc(24px * var(--scale));
	border-bottom: calc(1px * var(--scale)) solid #EFF1F3;
}
.main-shorts-feed {
	height: auto;
	/* overflow-y: scroll; 
	scroll-snap-type: y mandatory;  */
	display: grid;
	grid-template-columns:repeat(2, minmax(0, 1fr)); 
	gap: calc(17px * var(--scale)); 
	box-sizing: border-box;
	padding: calc(8px * var(--scale)) 0 0;
}
.main-shorts-feed-title {
	display:flex;
	align-items: center;
	gap: calc(8px * var(--scale));
	color: var(--On-Color-Black-High-Emphasis, #1A1E27);
	font-size: calc(20px * var(--scale));
	font-weight: 600;
	line-height: calc(28px * var(--scale));
}
.main-shorts-thumb {
	position: relative; 
    width: 100%;         
    aspect-ratio: 163 / 290; 
    scroll-snap-align: start; 
    background: #1a1a1a;
    border-radius: calc(12px * var(--scale));
    overflow: hidden;
}
.main-shorts-thumb a {
	display: block;
	width:100%;
	height:100%;
}
.main-shorts-thumb img{
	object-fit: cover;
	width:100%;
	height:100%;
}
.main-shorts-title {
	margin:calc(6px * var(--scale)) 0 calc(12px * var(--scale));
	color: var(--Black-800, #353941);
	font-size: calc(16px * var(--scale));
	font-weight: 500;
	line-height: 125%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.badge-box {
	display: flex;
	align-items: center;
	gap:calc(3px * var(--scale));
	flex-wrap: wrap
}
.badge-item {
	display: flex;
	min-width:calc(80px * var(--scale));
	padding: calc(2px * var(--scale)) calc(4.5px * var(--scale));
	justify-content: center;
	align-items: center;
	gap: calc(2px * var(--scale));
	font-size: calc(12px * var(--scale));
	font-weight: 600;
	line-height: calc(16px * var(--scale));
	box-sizing:border-box;
	border-radius: 9999px;
	border-width: calc(2px * var(--scale));
	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}
a.shorts-more {
	margin:calc(32px * var(--scale)) 0 calc(24px * var(--scale));
	display: flex;
	padding: calc(14px * var(--scale)) calc(20px * var(--scale));
	justify-content: center;
	align-items: center;
	gap: calc(10px * var(--scale));
	border-radius: calc(12px * var(--scale));
	background: var(--Black-100, #EFF1F3);
	color: var(--Black-800, #353941);
	text-align: center;
	font-size: calc(16px * var(--scale));
	font-weight: 600;
	line-height: calc(24px * var(--scale))
}
a.shorts-more:hover,
a.shorts-more:focus{color: var(--Black-800, #353941);}
/* =============== //메인 숏폼 컨텐츠 끝 */
/* =============== 입시 설명회 페이지 시작 */
.sub-title-700 {
  margin-top: 80px;
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: 44px;
  font-weight: 700;
  line-height: 56px;
}
.session-info-wrap {
  padding: 98px 32px 0;
}
.process-box {
  margin: 60px 0;
  padding: 24px 0;
  color: #353941;
  font-size: 32px;
}
.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: 60px;
  height: 60px;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #353941;
  font-weight: 500;
}
.process-list-item .desc-box {
  margin: 32px 0 32px 30px;
  padding-left: 60px;
  border-left: 4px solid #e4e8eb;
  color: var(--Black-500, #888a90);
  font-size: 26px;
  font-weight: 500;
  line-height: 145%;
}
.process-list-item:nth-child(1) .desc-box {
  height: 92px;
}
.process-list-item:nth-child(2) .desc-box {
  height: 126px;
}
.process-list-item .process-img-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  vertical-align: middle;
}
.process-list-item .process-img-box,
.process-list-item .process-number {
  margin-right: 28px;
}
.process-list-item.last-line:before {
  content: "";
  display: block;
  width: 4px;
  height: 26px;
  background: #e4e8eb;
  border-radius: 8px;
  margin: 12px 0 12px 30px;
}
.session-info-box {
  padding: 72px 32px;
}
.content-wrapper {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid #f5f6f8;
}
.content-row {
  display: flex;
}
.content-row + .content-row {
  margin-top: 72px;
}
.content-left {
  width: 160px;
}

.content-right {
  width: calc(100% - 170px);
}

.content-left,
.content-right {
  color: var(--Black-600, #6c6f75);
  font-size: 30px;
  font-weight: 600;
}
.text-gray-1 {
  color: var(--Black-400, #a3a5aa);
  font-size: inherit;
  font-weight: 500;
  /* 19px */
}

.text-gray-2 {
  color: var(--Black-500, #888a90);
  font-family: Pretendard;
  font-size: inherit;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.content-list li {
  color: var(--Black-600, #6c6f75);
  font-size: 30px;
  font-weight: 600;
  line-height: 32px; /* 84.211% */
}

.content-list li + li {
  margin-top: 24px;
}
/* =============== //입시 설명회 페이지 끝 */

/* =============== 상담신청 완료 페이지 시작 */
.complete-info-area {
  padding-top: 98px;
  margin: 64px 32px;
  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: 44px;
  font-weight: 700;
  line-height: 135%; /* 35.1px */
  text-align: center;
}
.complete-text {
  margin-top: 16px;
  color: #6c6f75;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 135%; /* 21.6px */
}
.complete-video-wrap {
  width: 480px;
  height: 480px;
  margin: 64px auto 80px;
  border-radius: 48px;
  overflow: hidden;
}

.complete-video-wrap video {
  width: 100%;
}
.complete-info-qa {
  margin: 0;
  color: #353941;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%; /* 16px */
}

.complete-info-list-area {
  padding: 48px 56px;
  border-radius: 16px;
  background: #f5f6f8;
}

.complete-info-list {
  margin-top: 44px;
  text-align: left;
  color: var(--Black-800, #353941);
  font-size: 28px;
  font-weight: 500;
  line-height: 100%; /* 14px */
}

.complete-info-list li {
  display: flex;
  font-size: inherit;
  align-items: center;
  gap: 10px;
}

.complete-info-list li + li {
  margin-top: 28px;
}
.complete-info-list li:before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: url(/img/m/icon/Check-circle-blue.svg) no-repeat center center;
  background-size: 28px;
}
.complete-notice-text {
  margin: 8px 0 0 24px;
  color: var(--Black-500, #888a90);
  font-size: 26px;
  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: 40px;
  font-weight: 600;
  line-height: 48px; /* 120% */
}

.coupon-download-area {
  margin: 144px 32px 112px;
}
.coupon-download-box {
  margin-top: 32px;
  padding: 32px 48px;
  border-radius: 24px;
  background: var(--yellow-100-primary-container, #fceed0);
}
.coupon-download-text-box {
  padding-left: 130px;
  position: relative;
}
.coupon-download-text-box:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 88px;
  height: 88px;
  background: #fafafc url(/img/m/icon/gift.svg) center center no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 12px;
  background-size: 56px;
}
.btn-download-link {
  margin-top: 42px;
  display: block;
  width: 100%;
  padding: 24px 0;
  border-radius: 12px;
  background: var(--Black-10, #fafafc);
  color: var(--Black-700, #51545b);
  font-size: 28px;
  text-align: center;
  font-weight: 600;
}
.download-info-title {
  margin: 0;
  color: var(--Black-900, #1a1e27);
  font-size: 32px;
  font-weight: 600;
  line-height: 100%; /* 16px */
}
.download-info-text {
  margin: 20px 0 0;
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 18.9px */
}

/* =============== 상담신청 완료 페이지 끝 */

/* =============== 위치 정보 및 포토 시작 */
.branch-top-area {
  margin: 80px 0 32px;
}

.branch-sub-text {
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: 32px;
  font-weight: 400;
  line-height: 32px; /* 100% */
  margin-top: 8px;
}
.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;
  margin-right: 40px;
  width: 48px;
  height: 48px;
  padding: 44px 0;
}

.branch-wrap .consult-content strong {
  color: var(--on-color-black-high-emphasis, #1a1e27);
  font-family: Pretendard;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
}

.branch-wrap .consult-content p {
  margin: 0;
  color: var(--on-color-black-medium-emphasis, #6c6f75);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  padding-top: 4px;
}

.branch-wrap .content-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 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: 40px;
  font-weight: 600;
  line-height: 56px;
  margin: 0;
  text-align: left !important;
}
.branch-wrap .wrap .tab-list li a {
  padding: 20px 24px 20px 72px;
  background-color: #eff1f3;
  border-radius: 60px;
  margin: 0;
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-image: url(/img/m/consult/no_add.svg);
  background-position: 25px 20px;
  color: #6c6f75;
  text-decoration: none;
  border: none;
  font-size: 28px;
  line-height: 32px;
  /* 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: 25px 20px;
  background-color: #fcc659;
  background-size: 32px 32px;
  background-repeat: no-repeat;
  color: #1a1e27;
  border: none;
  font-weight: 500;
  transition: none;
}
.branch-wrap .wrap .tab-list {
  width: calc(200px * 3);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  margin: 16px 0 64px;
}
.branch-wrap .wrap .tab-list li {
  margin: 0;
}
.branch-wrap .title1 {
  padding: 16px 0 64px;
}
.branch-wrap .title {
  padding: 48px 0 16px 0;
}
.branch-wrap .title p,
.fac-wrap .title p,
.branch-wrap .title1 p,
.fac-wrap .title1 p {
  color: #6c6f75;
  font-family: Pretendard;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  text-align: left;
  margin: 0;
  padding-top: 8px;
}
.branch-wrap .wrap .tab-cont .cont .map {
  margin: 0;
  width: 686px;
  height: 480px;
  border-radius: 12px;
}

/* 시설 사진 */
.branch-wrap .swiperContainer {
  width: 632px;
  height: 480px;
  margin-bottom: 112px;
}
.branch-wrap .swiperContainer img {
  border-radius: 24px;
  width: 632px;
  height: 480px;
  object-fit: cover;
}

.branch-wrap .swiper-slide-prev,
.branch-wrap .swiper-slide-active,
.branch-wrap .swiper-slide-next {
  width: 632px !important;
  margin-right: 16px !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: 686px !important;
  height: 480px;
  border-radius: 12px;
}
/* =============== 위치 정보 및 포토 끝 */

/* =============== 바텀 시트 시작 */
.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 9998;
}
.common-bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 32px 32px 0 0;
  min-height: 180px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.12);
}
.common-bottom-sheet.open {
  transform: translateY(0);
}
.common-bottom-sheet .content {
  padding: 0 54px 60px;
  font-size: 32px;
  text-align: center;
}
.overlay.open {
  display: block;
}
.common-bottom-sheet .handle-area {
  padding: 32px 0
}
.common-bottom-sheet .handle {
  width: 92px;
  height: 8px;
  background: #ccc;
  border-radius: 2.5px;
  margin: 0 auto;
}
.common-bottom-sheet .bottom-sheet-title {
  color: var(--Content-contentPrimary, #000);
  text-align: center;
  font-size: 44px;
  font-weight: 600;
  line-height: 145%;
}
.common-bottom-sheet .bottom-sheet-text {
  color: var(--Black-600, #6c6f75);
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
}

.common-bottom-sheet .bottom-sheet-link {
  margin: 48px auto;
  padding: 28px 0;
  display: block;
  width: 312px;
  height: 52px;
  line-height: 52px;
  border-radius: 32px;
  background: var(--yellow-600-primary, #feb015);
  color: var(--On-Color-White-White, #fff);
  font-size: 32px;
  font-weight: 400;
}

.common-bottom-sheet .bottom-sheet-link:visited {
  color: #fff;
}

.common-bottom-sheet .bottom-sheet-title-close {
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: none;
  background: no-repeat;
  color: var(--Black-700, #51545b);
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}
.common-bottom-sheet .bottom-sheet-img-box {
  margin-bottom: 48px;
  border-radius: 24px;
  overflow: hidden;
}
.common-bottom-sheet .bottom-sheet-img-box a {
  display: block;
}
.common-bottom-sheet .bottom-sheet-img-box img {
  height: 442px;
  border-radius: 32px;
}
/* =============== //바텀 시트 끝 */

/* 지점별 전화번호 */
.contact-text {
  padding-top: 98px;
  margin: 96px 0 48px;
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}
.branch-contact-area {
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.branch-contact-area .label_small_B {
  display: block;
  margin-bottom: 16px;
  font-size: 30px;
}
.branch-contact-area .Paragraph_x_small {
  font-size: 26px !important;
}
.branch-contact-area a {
  text-align: center;
  background-color: #fafafc;
  padding: 36px 32px;
  box-sizing: border-box;
  border-radius: 24px;
  margin: 8px;
}
.branch-contact-area .comming {
  padding: 36px 32px;
  margin: 8px;
  display: flex;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: var(--States-Black-10-Disabled, #fcfcfd);
}

/* =============== 교습비/수강료 시작 */
.line-tab-menu-wrap {
  margin: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.line-tab-menu-wrap .tab-menu-btn {
  width: calc(100% / 3);
  background: transparent;
  font-size: 32px;
  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-wrap {
  margin-top: 30px;
}
/* =============== 교습비/수강료 끝 */

/* =============== 진로&대회 시작 */
.competition-img-box {
  padding: 32px 0;
  margin: 0 32px;
  border-top: 2px solid #eff1f3;
}
.competition-img-box img {
  width: 100%;
  display: block;
}
/* 국내대회 */
.compeition-tab-btn-wrap {
  padding: 32px;
}
.compeition-tab-btn-wrap .tab-menu-btn {
  padding: 20px 16px;
  font-family: Pretendard;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  border: none;
  border-bottom: 4px solid transparent;
  background-color: transparent;
  color: #1a1e27;
}
.compeition-tab-btn-wrap .tab-menu-btn.on {
  border-bottom-color: #feb015;
}
/* =============== 진로&대회 끝 */
/* =============== 환불규정 시작 */
.refund-text {
  margin: 30px 0;
  font-size: 36px;
  word-break: keep-all;
  color: #262626;
}
.refund-info-wrap {
  padding: 32px;
}

.refund-title {
  margin-top: 70px;
  margin-bottom: 48px;
  padding: 30px;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  background: #1f5e45;
  line-height: 50px;
}

.refund-sub-title {
  margin: 40px 0;
  font-size: 34px;
  color: #262626;
  font-weight: 500;
}

.refund-desc {
  font-size: 32px;
}

.refund-info-list {
  margin-bottom: 60px;
}
.refund-info-list li {
  margin: 20px 0;
  font-size: 32px;
  line-height: 48px;
  color: #222;
  word-break: keep-all;
}
/* =============== 환불규정 끝 */

/* =============== 상담 신청 */
.branch-list {
  width: calc(190px * 3 + 16px * 2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.branch-list.chk-list .chk-item {
  padding-right: 20px;
}
/* =============== 상담 신청 끝 */

/* =============== 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 {
  padding-bottom: 158px;
}
/* .teenagers-landing-content .swiper-slide {
  aspect-ratio: 300 / 420;
} */
.teenagers-landing-content video {
  display: block;
  pointer-events: none; /* 클릭 불가 */
}
.hero-section {
  position: relative;
  margin-top: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: calc(100vh - 98px); */
  overflow: hidden;
  width: 100%;
  aspect-ratio: 375 / 710;
}
/* 스크롤 힌트 컨테이너 */
.scroll-hint-container {
  position: absolute;
  top: 55%;
  right: calc(35px * var(--scale));
  z-index: 9999;
  pointer-events: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  opacity: 1;
  transition: opacity 0.4s ease-out;
}
.scroll-hint-container.hidden {
  opacity: 0;
  visibility: hidden;
}

/* 손가락 아이콘 */
.scroll-hint-icon {
  font-size: 80px;
  animation: bounce 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* 바운싱 애니메이션 */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
}
.hero-section .landing-main-video-area {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.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;
  top: 0;
  bottom: 0;
  z-index: 99;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: calc(120px * var(--scale));
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) -4.95%,
    rgba(0, 0, 0, 0.62) 93.73%
  );
}
.hero-section .title {
  color: var(--On-Color-White-White, #fff);
  text-align: center;
  font-size: calc(36px * var(--scale));
  font-weight: 800;
  line-height: 135%;
  letter-spacing: calc(1.44px * var(--scale));
}

.why-section {
  text-align: center;
  background-color: #f5f6f8;
}
.why-section .why-title-area {
  padding-top: calc(80px * var(--scale));
  padding-bottom: calc(40px * var(--scale));
}
.why-section .why-title {
  margin: 0;
  padding-bottom: calc(40px * var(--scale));
  color: #000;
  text-align: center;
  font-size: calc(30px * var(--scale));
  font-weight: 700;
  line-height: 145%;
  letter-spacing: calc(0.3px * var(--scale));
}
.why-section .why-title-area .title-deco {
  display: inline-block;
  width: calc(4px * var(--scale));
  height: calc(32px * var(--scale));
  background: linear-gradient(180deg, #d9d9d9 0%, #737373 100%);
}
.why-section .why-item + .why-item {
  margin-top: calc(80px * var(--scale));
}
.why-section .why-item:last-of-type {
  padding-bottom: calc(80px * var(--scale));
}
.why-section .why-item .why-image-wrapper {
  border-radius: calc(12px * var(--scale));
  margin-bottom: calc(40px * var(--scale));
}
.why-image-wrapper img {
  max-width: 100%;
}
.why-section .why-item .why-text {
  color: #000;
  font-size: calc(30px * var(--scale));
  font-weight: 700;
  line-height: 145%;
  letter-spacing: calc(0.3px * var(--scale));
}
.why-section .why-box {
  padding: calc(16px * var(--scale)) calc(12px * var(--scale))
    calc(16px * var(--scale)) calc(40px * var(--scale));
  margin: calc(85px * var(--scale)) calc(24px * var(--scale)) 0;
  display: flex;
  align-items: center;
  gap: calc(19px * var(--scale));
  border-radius: calc(24px * var(--scale));
  background: var(--Black-150, #dadbde);
}
.why-section .why-description {
  margin: 0;
  color: var(--Black-800, #353941);
  font-size: calc(19px * var(--scale));
  font-weight: 700;
  line-height: 135%;
  letter-spacing: 0.19px;
  text-align: left;
}

.education-section {
  margin: 0 calc(24px * var(--scale));
}
.education-section .education-title {
  margin: calc(80px * var(--scale)) 0 calc(64px * var(--scale));
  color: #000;
  font-size: calc(36px * var(--scale));
  font-weight: 800;
  line-height: 145%;
  letter-spacing: 0.36px;
}
.education-section .education-cont {
  margin-bottom: calc(56px * var(--scale));
  padding-bottom: calc(56px * var(--scale));
  border-bottom: 1px solid #d3d3d3;
}
.education-section .education-cont:last-child {
  margin: 0;
  border: none;
}
.education-section .comparison-container {
  display: flex;
  gap: calc(13px * var(--scale));
}
.education-section .comparison-container .comparison-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(12px * var(--scale));
  width: 100%;
  padding: calc(19px * var(--scale)) calc(16px * var(--scale));
  border-radius: calc(19px * var(--scale));
  background: var(--Black-100, #eff1f3);
}
.education-section .comparison-container .comparison-item-title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(4px * var(--scale));
  color: var(--Black-600, #6c6f75);
  font-size: calc(16px * var(--scale));
  font-weight: 700;
  line-height: 135%;
  letter-spacing: calc(-0.32px * var(--scale));
}
.education-section .comparison-container .comparison-item-list {
  margin: 0;
}
.education-section .comparison-container .comparison-item-list li {
  color: var(--Black-600, #6c6f75);
  font-size: calc(15px * var(--scale));
  font-weight: 600;
  line-height: 135%;
  letter-spacing: calc(0.3px * var(--scale));
  text-align: left;
  list-style: inside;
  display: list-item;
}
.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: 800;
}
.education-section .education-desc {
  margin-top: calc(16px * var(--scale));
  padding: calc(16px * var(--scale)) calc(12px * var(--scale));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8px * var(--scale));
  border-radius: calc(19px * var(--scale));
  background: var(--Black-500, #888a90);
  color: var(--On-Color-White-White, #fff);
  font-size: calc(17px * var(--scale));
  font-weight: 600;
  line-height: 135%;
  letter-spacing: calc(0.17px * var(--scale));
}
.education-section .education-approach-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8px * var(--scale));
  text-align: center;
}
.education-section .approach-item-title {
  display: inline-block;
  position: relative;
  margin-top: 0;
  margin-bottom: calc(14px * var(--scale));
  padding: calc(8px * var(--scale)) calc(16px * var(--scale));
  color: #fff;
  text-align: center;
  background-color: #a3a5aa;
  border-radius: 999px;
  font-size: calc(13px * var(--scale));
  font-weight: 700;
  line-height: 123%;
}
.education-section .approach-item-title::before {
  position: absolute;
  bottom: -18px;
  left: 50%;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  transform: rotate(45deg) translateX(-50%);
  background-color: inherit;
}
.education-section .point .approach-item-title {
  background-color: #353941;
}
.education-section .approach-item-img {
  margin: calc(8px * var(--scale)) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(120px * var(--scale));
  height: calc(120px * var(--scale));
  border-radius: 9999px;
  background-color: #f0f2f4;
}
.education-section .point .approach-item-img {
  background-color: #fceed0;
}
.education-section .approach-item-text {
  margin: calc(8px * var(--scale)) auto 0;
  color: #353941;
  font-size: calc(14px * var(--scale));
  font-weight: 700;
  line-height: 135%;
  letter-spacing: calc(-0.28px * var(--scale));
}
.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: calc(32px * var(--scale));
  height: calc(32px * var(--scale));
  border-radius: 999px;
  background: var(--Black-800, #353941);
}
.education-section .approach-divider .approach-divider-text {
  color: #fff;
  text-align: center;
  font-size: calc(14px * var(--scale));
  font-weight: 600;
  line-height: 100%;
}
.education-section .education-graphic {
  display: flex;
  justify-content: center;
  text-align: center;
}
.education-section .education-graphic .education-graphic-arrow {
  padding-top: calc(40px * var(--scale));
}
.education-section .education-graphic-desc-1 {
  margin: 0 auto;
  display: flex;
  width: calc(96px * var(--scale));
  height: calc(95px * var(--scale));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(4px * var(--scale));
  border-radius: calc(8px * var(--scale));
  border: calc(2px * var(--scale)) dashed var(--Core-Outline, #d1d2d4);
  background: var(--Black-10, #fafafc);
  color: #f14654;
  font-size: calc(16px * var(--scale));
  font-weight: 700;
  line-height: 135%;
  letter-spacing: calc(0.32px * var(--scale));
}
.education-section .education-graphic-desc-2 {
  margin: calc(8px * var(--scale)) auto 0;
  display: flex;
  width: calc(96px * var(--scale));
  height: calc(102px * var(--scale));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: calc(8px * var(--scale));
  background: #727e97;
  color: var(--On-Color-White-White, #fff);
  font-size: calc(14px * var(--scale));
  font-weight: 500;
  line-height: 135%;
}
.education-section .education-graphic-desc-3 {
  margin: 0 auto;
  display: flex;
  width: calc(96px * var(--scale));
  height: calc(205px * var(--scale));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: calc(8px * var(--scale));
  background: #2cad70;
  color: var(--On-Color-White-White, #fff);
  font-size: calc(16px * var(--scale));
  font-weight: 600;
  line-height: 165%;
}
.education-section .education-graphic-name {
  display: block;
  margin: calc(16px * var(--scale)) auto calc(6px * var(--scale));
  color: rgba(53, 57, 65, 0.42);
  text-align: center;
  font-size: calc(16px * var(--scale));
  font-weight: 700;
  line-height: 135%;
  letter-spacing: calc(-0.32px * var(--scale));
}
.education-section .education-graphic-icon {
  margin: calc(6px * var(--scale)) 0;
  text-align: center;
}
.education-section .graphic-item-2 .education-graphic-name {
  color: #2cad70;
}
.education-section .education-graphic-text {
  margin:0;
  display: flex;
  width: calc(132px * var(--scale));
  height: calc(126px * var(--scale));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(4px * var(--scale));
  border-radius: calc(19px * var(--scale));
  background: var(--Black-100, #eff1f3);
  text-align: center;
  font-size: calc(15px * var(--scale));
}
.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-top: calc(32px * var(--scale));
  color: var(--Black-600, #6c6f75);
  font-size: calc(13px * var(--scale));
  font-weight: 500;
  line-height: 145%;
  text-align: center;
}
.education-section .education-text span {
  color: #2cad70;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.guide-section {
  padding: calc(120px * var(--scale)) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: calc(16px * var(--scale));
  background-color: #f5f6f8;
}
.guide-section .guide-section-text {
  text-align: center;
  font-size: calc(26px * var(--scale));
  font-weight: 800;
  line-height: 165%;
  letter-spacing: calc(0.065px * var(--scale));
  background: linear-gradient(104deg, #6fae7b 6.74%, #06751b 69.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skills-section {
  margin: 0 calc(24px * var(--scale));
}
.skills-section .skills-title {
  margin: calc(80px * var(--scale)) 0 calc(52px * var(--scale));
  color: #353941;
  font-size: calc(30px * var(--scale));
  font-weight: 800;
  line-height: 145%;
  letter-spacing: calc(0.3px * var(--scale));
}
.teenagers-landing-content .skills-title .text-bg {
  margin-left: calc(-5px * var(--scale));
  padding-left: calc(5px * var(--scale));
  padding-right: calc(5px * var(--scale));
}
.teenagers-landing-content .skills-title .text-line {
  bottom: 0;
}
.skills-section .skills-item {
  margin-bottom: calc(56px * var(--scale));
  padding: calc(16px * var(--scale)) calc(24px * var(--scale))
    calc(24px * var(--scale));
  border-radius: calc(24px * var(--scale));
  background: rgba(44, 173, 112, 0.16);
}
.skills-section .skills-icon-box {
  margin-bottom: calc(8px * var(--scale));
}
.skills-section .skills-icon-box img {
  display: block;
}
.skills-section .skills-item-text {
  margin-bottom: calc(32px * var(--scale));
  color: #353941;
  font-size: calc(19px * var(--scale));
  font-weight: 700;
  line-height: 145%;
  letter-spacing: calc(0.19px * var(--scale));
}
.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: calc(12px * var(--scale));
  width: calc(280px * var(--scale));
  height: calc(240px * var(--scale));
  overflow: hidden;
  border-radius: calc(12px * var(--scale));
}
.skills-section .skills-video-box video {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
}
.skills-section .skills-video-text {
  color: rgba(53, 57, 65, 0.52);
  font-size: calc(14px * var(--scale));
  font-weight: 500;
  line-height: 135%;
  letter-spacing: calc(0.14px * var(--scale));
}

.team-section .team-title-area {
  padding: calc(120px * var(--scale)) calc(24px * var(--scale));
  background-color: #f5f6f8;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: calc(16px * var(--scale));
}
.team-section .team-title {
  color: var(--Black-800, #353941);
  font-family: Pretendard;
  font-size: calc(32px * var(--scale));
  font-style: normal;
  font-weight: 800;
  line-height: 165%;
  letter-spacing: calc(0.08px * var(--scale));
}
.team-section .team-sub-text {
  padding: calc(80px * var(--scale)) calc(24px * var(--scale))
    calc(56px * var(--scale));
  font-size: calc(32px * var(--scale));
  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 img {
  border-radius: calc(24px * var(--scale));
  overflow: hidden;
}
.team-section .swiper-slide:nth-child(2) img {
  border: 4px solid #d1d2d4;
  box-sizing: border-box;
  padding: 0;
}
.team-section .team-intro-content {
  padding: 0 calc(24px * var(--scale));
}
.team-section .image-with-caption {
  margin-bottom: calc(16px * var(--scale));
  text-align: center;
}
.team-section .image-with-caption img {
  max-width: 100%;
  height: auto;
}
.team-section .image-with-caption figcaption {
  color: rgba(53, 57, 65, 0.62);
  font-size: calc(15px * var(--scale));
  font-weight: 600;
  line-height: 165%;
  letter-spacing: calc(0.038px * var(--scale));
  text-align: left;
}
.team-section .team-info-box {
  display: flex;
  flex-direction: column;
  gap: calc(16px * var(--scale));
}
.team-section .team-info-box .team-info-text {
  margin: 0;
  display: flex;
  padding: calc(19px * var(--scale)) 0 calc(19px * var(--scale))
    calc(32px * var(--scale));
  align-items: center;
  justify-content: flex-start;
  gap: calc(4px * var(--scale));
  border-radius: calc(24px * var(--scale));
  background: #f0f2f4;
  color: var(--Black-800, #353941);
  font-size: calc(19px * var(--scale));
  font-weight: 700;
  line-height: 135%;
  /* letter-spacing: calc(0.76px * var(--scale)); */
}
.team-section .team-info-box .team-info-text:nth-child(1) {
  padding-left: 0;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #71a3fb 0%, #a469fa 100%);
}
.team-section .team-info-box .team-info-text img {
  display: inline-block;
  margin-right: calc(8px * var(--scale));
}
.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 {
  margin: calc(52px * var(--scale)) calc(24px * var(--scale))
    calc(120px * var(--scale));
}
.team-section .team-banner img {
  width: 100%;
}
.team-section .team-slide-inner {
  margin: 0 16px;
  padding: calc(28px * var(--scale)) 0 calc(28px * var(--scale))
    calc(17px * var(--scale));
  display: flex;
  width: calc(100% - (17px * var(--scale)));
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: calc(24px * var(--scale));
  box-sizing: border-box;
  background: #f5f6f8;
}
.team-section .team-slide-inner-title {
  color: var(--Black-800, #353941);
  font-size: calc(14px * var(--scale));
  font-weight: 800;
  line-height: 155%;
}
.team-section .team-slide-inner-text {
  margin: 0;
  text-align: left;
  color: var(--Black-600, #6c6f75);
  font-size: calc(7.5px * var(--scale));
  font-weight: 600;
  line-height: 165%;
}

.achievements-section {
  padding: calc(42px * var(--scale)) 0 0;
}
.achievements-section .swiper-slide {
  border-radius: calc(24px * var(--scale));
  overflow: hidden;
}
.achievements-section .teenagers-banner-cont {
  margin: 0 auto;
  padding: calc(42px * var(--scale)) 0;
  overflow: hidden;
}
.achievements-section .achievements-slide-inner {
  margin: 0 auto;
  display: flex;
  /* width: 100%;
  height: 100%;
  aspect-ratio: 654 / 860; */
  /* width: calc(702px - 32px); */
  /* height: 915px; */
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: calc(24px * var(--scale));
  box-sizing: border-box;
}
.achievements-section .achievements-slide-inner.fir {
  padding: calc(40px * var(--scale)) calc(18px * var(--scale))
    calc(24px * var(--scale));
  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: calc(40px * var(--scale)) calc(13.5px * var(--scale))
    calc(24px * var(--scale));
  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: calc(27px * var(--scale));
  font-weight: 800;
  line-height: 125%; /* 33.75px */
  letter-spacing: calc(0.54px * var(--scale));
}
.achievements-section .last .achievements-text {
  color: #1a1e27;
}
.achievements-section .last .achievements-text span {
  color: #0da6ff;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}
.achievements-section .achievements-grid-box {
  width: 100%;
  display: grid;
  grid-template: 1fr 1fr / 1fr 1fr;
  gap: calc(16px * var(--scale));
}
.achievements-section .achievements-grid-box .achievements-grid-item {
  display: flex;
  padding: calc(12px * var(--scale)) 0;
  flex-direction: column;
  align-items: center;
  gap: calc(8px * var(--scale));
  border-radius: calc(12px * var(--scale));
  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: calc(16px * var(--scale));
  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%;
}
.achievements-section .achievements-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(6px * var(--scale));
  padding: calc(12px * var(--scale)) calc(8px * var(--scale))
    calc(12px * var(--scale)) calc(35px * var(--scale));
  border-radius: calc(10px * var(--scale));
  background: url("/img/m/landing/icon-check.svg") #fff 16px center no-repeat;
  background-size: 32px 32px;
  color: var(--On-Color-Black-High-Emphasis, #1a1e27);
  font-size: calc(16px * var(--scale));
  font-weight: 700;
  line-height: normal;
  letter-spacing: calc(-0.32px * var(--scale));
}
.achievements-section .achievements-list li + li {
  margin-top: calc(8.67px * var(--scale));
}
.achievements-section .achievements-list li span {
  color: var(--On-Color-Black-Medium-Emphasis, #6c6f75);
  font-size: calc(14px * var(--scale));
  font-weight: 400;
  line-height: 100%; /* 14px */
}

/* 리뷰 슬라이드 컨텐츠 */
.reviews-section {
  padding: calc(42px * var(--scale)) 0;
}
.review-swiper .swiper-slide {
  height: unset;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 calc(8px * var(--scale));
}
.review-swiper .swiper-slide:nth-child(1).swiper-slide-active {
  padding-left: 2px;
}
.review-cont {
  height: 100%;
  display: flex;
  width: 100%;
  padding: calc(32px * var(--scale)) calc(24px * var(--scale));
  background: var(--Black-50, #f5f6f8);
  flex-direction: column;
  justify-content: space-between;
  gap: calc(24px * var(--scale));
  box-sizing: border-box;
  align-items: flex-start;
  border-radius: calc(24px * var(--scale));
}
.review-cont-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(12px * var(--scale));
  text-align: left;
}
.review-cont .profile-img-box img {
  width: calc(64px * var(--scale));
  height: calc(64px * var(--scale));
}
.review-cont .review-title {
  color: var(--Black-800, #353941);
  font-size: calc(22px * var(--scale));
  font-weight: 700;
  line-height: 145%; /* 1.72188rem */
}
.review-cont .review-cont-text {
  padding-top: calc(16px * var(--scale));
  color: #6c6f75;
  font-size: calc(16px * var(--scale));
  font-weight: 600;
  line-height: 145%; /* 1.26875rem */
  word-break: keep-all;
  background-image: url("/img/m/landing/Talkingup_fill.svg");
  background-repeat: no-repeat;
  background-size: calc(16px * var(--scale));
  background-position: 0 0;
}
.review-name {
  padding: calc(10px * var(--scale));
  color: #2cad70;
  border-radius: 999px;
  background: #e3f5ec;
  font-size: calc(12px * var(--scale));
  font-weight: 700;
  line-height: 133.333%;
}

/* 슬라이드 컨텐츠 공통 스타일 */
.admissions-section .teenagers-banner-cont {
  margin: 0 auto;
  padding: calc(42px * var(--scale)) 0;
  overflow: hidden;
}

.teenagers-banner-cont .teenagers-banner-title {
  padding: 0 calc(24px * var(--scale));
  margin: 0 0 calc(24px * var(--scale));
  color: #353941;
  font-size: calc(30px * var(--scale));
  font-weight: 800;
  line-height: 135%;
  letter-spacing: calc(0.3px * var(--scale));
}
.teenagers-banner-cont .teenagers-banner-sub-text {
  margin-bottom: calc(2px * var(--scale));
  display: block;
  color: rgba(53, 57, 65, 0.62);
  font-size: calc(19px * var(--scale));
  font-weight: 500;
  letter-spacing: calc(0.19px * var(--scale));
  line-height: normal;
}
.teenagers-banner-cont .swiper-area {
  text-align: center;
  overflow: hidden;
  padding: 0 calc(27.5px * var(--scale));
}
.teenagers-banner-cont .swiper-slide > img,
.teenagers-banner-cont .swiper-slide a,
.team-section .team-slide-inner {
  display: block;
}
.teenagers-banner-cont .swiper-slide > img,
.teenagers-banner-cont .swiper-slide > a,
.achievements-section .achievements-slide-inner,
.team-section .team-slide-inner {
  /* max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; */
  width: 610px;
  height: 854px;
  margin: 0 auto;
}

.teenagers-banner-cont .swiper-slide-active:nth-child(1) > img,
.teenagers-banner-cont .swiper-slide-active:nth-child(1) > a,
.achievements-section
  .swiper-slide-active:nth-child(1)
  .achievements-slide-inner.fir,
.team-section .swiper-slide-active:nth-child(1) .team-slide-inner {
  margin: 0 auto 0 0;
}

.teenagers-landing-content .fixed-area {
  padding: calc(6px * var(--scale)) calc(12px * var(--scale));
  width: calc(234px * var(--scale));
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 9999;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(218, 219, 222, 0.22);
  backdrop-filter: blur(8px);
}
.teenagers-landing-content .fixed-area .btn-consult {
  padding: calc(16px * var(--scale));
  display: block;
  border-radius: 999px;
  background: var(--mambo-yellow-600-primary, #feb015);
  color: var(--On-Color-White-White, #fff);
  text-align: center;
  font-size: calc(16px * var(--scale));
  font-weight: 700;
  line-height: 125%;
}

/* 10대 랜딩 공통 스타일 */
.teenagers-landing-content .text-bg {
  display: inline-block;
  padding: 0 calc(12px * var(--scale));
  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: -9px;
  width: 100%;
}
/* =============== 10대 렌딩 끝 */


/* ===== 강사 소개 페이지 */
.teacher-list {
	padding-bottom: 32px;
}
.teacher-item {
	position:relative;
}
.teacher-item .teacher-thumb-box {
	margin-bottom: 16px;
	width: 330px;
	height: 332px;
	background-color: #F5F5F7;
	border-radius: 24px;
	overflow: hidden;
}
.teacher-item.active:before {
	content:'';
	position:absolute;
	top:0;
	left:-12px;
	display: inline-block;
	width: 132px;
	height: 60px;
	background: url('/img/icon/icon-ribbon-mgpt.svg') no-repeat center center;
	background-size: 132px 60px
}
.teacher-thumb-box img {
	width: 100%;
	height: 100%;
}
.teacher-name {
	margin-bottom: 8px;
	color: var(--On-Color-Black-High-Emphasis, #1A1E27);
	text-align: center;
	font-size: 28px;
	font-weight: 500;
	line-height: 114.286%; 
}
.course-name {
	margin:0;
	color: var(--On-Color-Black-Medium-Emphasis, #6C6F75);
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	line-height: 100%
}
/* 강사 상세 정보 */
.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:-12px;
	display: inline-block;
	width: 132px;
	height: 60px;
	background: url('/img/icon/icon-ribbon-mgpt.svg') no-repeat center center;
	background-size: 132px 60px
}
.profile-top-area .profile-thumb {
	width: 370px;
	height: 492px;
	aspect-ratio: 185/246;
	background:#eee;
	border-radius: 24px;
	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: 38px;
	font-weight: 600;
	letter-spacing: -1.52px;
}
.profile-name span {
	margin-top: 16px;
	display:block;
	color: var(--On-Color-Black-Medium-Emphasis, #6C6F75);
	font-size: 32px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: normal;
}
.profile-desc-box {
	margin: 48px 0;
	padding: 20px 24px;
	display:flex;
	align-items:center;
	gap:24px;
	border-radius: 24px;
	border: 4px solid rgba(30, 185, 157, 0.42);
}
.profile-desc-box .icon-box {
	display:flex; 
	align-items:center;
	justify-content:center;
	width: 96px;
	height: 96px;
	border-radius: 12px;
	background: var(--Black-50, #F5F6F8);
}
.profile-desc-box .desc-text {
	margin: 0;
	width: calc(100% - 24px - 96px);
	color: var(--mambo-green-100-secondary-a, #1EB99D);
	font-size: 32px;
	font-weight: 500;
	line-height: 135%;
	text-align: left;
	word-break: break-all;
}
.resume-wrapper .section{
	margin: 48px 0;
}
/* 리스트 공통 스타일 */
.resume-wrapper .content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.resume-wrapper .section-title {
	margin: 0 0 16px;
	text-align:left;
	color: var(--Black-800, #353941);
	font-size: 38px;
	font-weight: 600;
	line-height: 40px; /* 105.263% */
}
.resume-wrapper .content-list li {
	margin: 0;
    position: relative;
    padding-left: 50px;
    color: var(--Black-600, #6C6F75);
	font-size: 30px;
	font-weight: 400;
	line-height: 135%; 
    word-break: keep-all;
}
.resume-wrapper .content-list li::before {
    content: "•";
    position: absolute;
    left: 13px;
    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); }
}
/* ===== //로딩바 */