@charset "utf-8";
:root {
  --lecture-radius: 20px;
}
@font-face {
  font-family: "S-CoreDream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "S-CoreDream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "S-CoreDream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "S-CoreDream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "S-CoreDream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

.home_tit {
  max-width: 1346px;
  width: 100%;
  padding: 0 48px;
  display: flex;
  justify-content: flex-end;
  height: 100%;
  background: var(--gnb-top-bg);
}
.home_tit a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  border-left: 1px solid #c9c9c9;
}
.home_tit a span {
  font-size: 16px;
  line-height: normal;
  color: #989898;
  padding-left: 20px;
}
.home_tit a:nth-child(1) span {
  background: url("../img/ico/login_gray.svg") left 0 top 50% no-repeat;
  background-size: 16px 16px;
}
.home_tit a:nth-child(2) span {
  background: url("../img/ico/join_gray.svg") left 0 top 50% no-repeat;
  background-size: 16px 16px;
}

/* gnb */
#header .nav {
  position: relative;
  height: 80px;
  z-index: 1000;
}
#header .wrap_gnb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  /* transition: height 0.3s; */
}
#header .wrap_gnb .logo {
  width: 204px;
}
#header .wrap_gnb .logo a {
  display: block;
  padding: 16px 0;
}
#header .wrap_gnb .logo .img_logo {
  display: block;
  width: 100%;
}
#header.open_gnb .wrap_gnb {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  /* transition: height .3s; */
}
#header.open_gnb .t_menu .inner_tmenu .home_tit {
  /* opacity: 0; */
}
/* #header .wrap_gnb::before, */
#header .wrap_gnb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background-color: #eee;
  pointer-events: none;
  /* transition: all .3s; */
  opacity: 0;
}
#header .wrap_gnb::after {
  top: 80px;
}
#header.open_gnb .wrap_gnb::before,
#header.open_gnb .wrap_gnb::after {
  opacity: 1;
}
#header.open_gnb .menu_depth1 {
}
#header .inner_gnb {
  position: relative;
  width: 1250px;
  margin: 0 auto;
}
.nav .menu_depth1 {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: calc(50% - 340px);
  height: 80px;
  /* transition: height .3s; */
}
.nav .menu_depth1 > li {
  position: relative;
  float: left;
}
.nav .menu_depth1 a {
  display: block;
  text-align: center;
  font-size: 17px;
  color: var(--cate1-font-color);
  font-family: var(--cate1-font-family);
  font-weight: 500;
  letter-spacing: -0.025px;
}
.nav .menu_depth1 a:hover {
  color: var(--cate1-font-color-hover);
}
.nav .menu_depth1 .link_depth1 {
  padding: 0 35px;
  line-height: 80px;
}
.nav .menu_depth1 > li:nth-child(1) .link_depth1 {
  padding: 0 40px;
}
.gnb-default .nav .menu_depth1 > li:hover .menu_depth2 {
  visibility: visible;
  opacity: 1;
}
/*.nav .menu_depth1 > li:nth-child(n+4) .link_depth1 {
	padding: 0 27px;
} */
.nav .menu_depth2 {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
}
.nav .menu_depth2 > li + li {
  margin-top: 10px;
}
.nav .menu_depth2 .link_depth2 {
  line-height: 26px;
  font-size: 15px;
  color: var(--cate2-font-color);
  font-family: var(--cate2-font-family);
  word-break: break-all;
}
.nav .menu_depth2 .link_depth2:hover {
  color: var(--cate2-font-color-hover);
  background-color: var(--cate2-bg-color-hover);
}
.gnb-simple {
}
.gnb-default .menu_depth1 {
  overflow: visible;
}
.gnb-default .menu_depth1:hover {
  height: auto;
}
.gnb-default .menu_depth2 {
  background: var(--cate2-bg-color);
  padding: 12px 0 !important;
  visibility: hidden;
  opacity: 0;
  /* margin-top: 13px !important; */
  width: max-content;
  min-width: 100%;
  transform: translateX(0);
}
.gnb-default .menu_depth2::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -12px;
  left: calc(50% - 12px);
  border-top: 0;
  border-bottom: 13px solid var(--cate2-bg-color);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
.gnb-default .menu_depth1 > li .link_depth1:hover + .menu_depth2 {
  display: block;
}
.gnb-full .menu_depth2 {
  padding: 20px 0 !important;
}
#topMenu .menu_depth2 li {
  float: none;
}
#topMenu ul .menuLink {
  font-size: 20px;
}
.mypage_btn {
  z-index: 1;
}
.main_banner {
  position: relative;
}
.main-banner .swiper {
}
.main_banner .swiper-slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.main_banner .swiper-button-prev {
  left: calc(50% - 605px) !important;
  width: 56px !important;
  height: 56px !important;
  background-size: 28px auto;
}
.main_banner .swiper-button-next {
  right: calc(50% - 605px) !important;
  width: 56px !important;
  height: 56px !important;
  background-size: 28px auto;
}
.main_banner .swiper-pagination-banner {
  position: absolute;
  bottom: 0 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}
.main_banner .swiper-pagination-bullet {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  width: 200px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  color: #000;
  opacity: 1;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.6);
}
.main_banner .swiper-pagination-bullet-active {
  color: #fff;
  background: #2953c7;
}
.inner_container .inner_header_title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  min-height: 32px;
}
.inner_container .inner_header_title h2 {
  font-size: 28px;
  font-weight: 700;
}
.inner_container .inner_header_title .title_center {
  text-align: center;
  width: fit-content;
}
.inner_container .inner_header_title .more_list {
  position: absolute;
  right: 0;
  top: 8px;
  font-size: 16px;
  font-weight: 600;
}
.inner_more_list {
  max-width: 1346px;
  width: 100%;
  margin: -20px auto 12px auto;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
}
.inner_more_list .more_list {
  font-size: 16px;
  font-weight: 600;
}
.inner_container {
  max-width: 1346px;
  width: 100%;
  margin: 0 auto;
  padding: 48px;
  box-sizing: border-box;
}

/*과정4개 모듈*/
.default_lecture {
  padding: var(--lecture4-padding);
  background: var(--lecture4-bg);
}
.default_lecture .inner_container {
  background: var(--lecture4-inner-bg);
  border-radius: var(--lecture4-bg-radius);
}
.default_lecture .inner_lecture_list .lecture_list_item {
  border-radius: var(--lecture4-radius);
  border: var(--lecture4-border) solid var(--lecture4-border-color);
}
.default_lecture .inner_lecture_list .lecture_list_item .img_thumb {
  border-radius: var(--lecture4-radius) var(--lecture4-radius) 0 0;
}
.default_lecture .inner_lecture_list .lecture_list_item .lecture_info {
  border-radius: 0 0 var(--lecture4-radius) var(--lecture4-radius);
}
.default_lecture .inner_container .inner_header_title {
  justify-content: var(--lecture4-title-align);
}
.default_lecture .inner_container .inner_header_title h2 {
  font-size: var(--lecture4-title-size);
  color: var(--lecture4-title-color);
}
.default_lecture .inner_container .inner_header_title .more_list {
  display: var(--lecture4-more-list);
}

/*패키지 모듈*/
.package_lecture {
  padding: var(--package-padding);
  background: var(--package-bg);
}
.package_lecture .inner_container {
  background: var(--package-inner-bg);
  border-radius: var(--package-bg-radius);
}
.package_lecture .inner_lecture_list .lecture_list_item {
  border-radius: var(--package-radius);
  border: var(--package-border) solid var(--package-border-color);
}
.package_lecture .inner_lecture_list .lecture_list_item .img_thumb {
  border-radius: var(--package-radius) var(--package-radius) 0 0;
}
.package_lecture .inner_lecture_list .lecture_list_item .lecture_info {
  border-radius: 0 0 var(--package-radius) var(--package-radius);
}
.package_lecture .inner_container .inner_header_title {
  justify-content: var(--package-title-align);
}
.package_lecture .inner_container .inner_header_title h2 {
  font-size: var(--package-title-size);
  color: var(--package-title-color);
}
.package_lecture .inner_container .inner_header_title .more_list {
  display: var(--package-more-list);
}

/*기본과정3개 모듈*/
.rolling3_lecture {
  padding: var(--lecture3-padding);
  background: var(--lecture3-bg);
}
.rolling3_lecture .inner_container {
  background: var(--lecture3-inner-bg);
  border-radius: var(--lecture3-bg-radius);
}
.rolling3_lecture .inner_lecture_list .lecture_list_item {
  border-radius: var(--lecture3-radius);
  border: var(--lecture3-border) solid var(--lecture3-border-color);
}
.rolling3_lecture .inner_lecture_list .lecture_list_item .img_thumb {
  border-radius: var(--lecture3-radius) var(--lecture3-radius) 0 0;
}
.rolling3_lecture .inner_lecture_list .lecture_list_item .lecture_info {
  border-radius: 0 0 var(--lecture3-radius) var(--lecture3-radius);
}
.rolling3_lecture .inner_container .inner_header_title {
  justify-content: var(--lecture3-title-align);
}
.rolling3_lecture .inner_container .inner_header_title h2 {
  font-size: var(--lecture3-title-size);
  color: var(--lecture3-title-color);
}
.rolling3_lecture .swiper-slide {
  opacity: 1;
}
.rolling3_Swiper .swiper-slide {
  width: calc(33.33% - 20px);
}
.rolling3_Swiper .swiper-slide:nth-child(3n) {
  margin-right: 0 !important;
}
.rolling3_Swiper .swiper-wrapper {
  flex-wrap: wrap;
  gap: 30px 0;
}

.rolling3_lecture .inner_lecture_list .lecture_list_item {
  width: 100%;
}
.rolling3_lecture .swiper-button-next,
.rolling3_lecture .swiper-button-prev {
  display: none;
}
.rolling3_lecture .inner_container .inner_header_title .more_list {
  display: var(--lecture3-more-list);
}

/*배너+과정3개 모듈*/
.banner_lecture {
  padding: var(--banner-contents-padding);
  background: var(--banner-contents-bg);
}
.banner_lecture .inner_container {
  background: var(--banner-contents-inner-bg);
  border-radius: var(--banner-contents-bg-radius);
}
.banner_lecture .inner_lecture_list .lecture_list_item {
  border-radius: var(--banner-contents-radius);
  border: var(--banner-contents-border) solid var(--banner-contents-border-color);
}
.banner_lecture .inner_lecture_list .lecture_list_item .img_thumb {
  border-radius: var(--banner-contents-radius);
  width: 100%;
  max-width: 189px;
  height: 130px;
  border: 1px solid #e8e8e8;
}
.banner_lecture .inner_lecture_list .lecture_list_item .img_thumb img {
  height: 100%;
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.banner_lecture .inner_container .inner_header_title {
  justify-content: var(--banner-contents-title-align);
}
.banner_lecture .inner_container .inner_header_title h2 {
  font-size: var(--banner-contents-title-size);
  color: var(--banner-contents-title-color);
}
.banner_lecture .inner_container .inner_contents {
  display: flex;
  flex-direction: row;
  gap: 48px;
}
.banner_lecture .inner_container .inner_contents .inner_banner {
  flex: 1;
  width: 50%;
  object-fit: cover;
  border-radius: var(--banner-contents-radius);
}
.banner_lecture .inner_lecture_list {
  flex: 1;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.banner_lecture .inner_lecture_list .lecture_list_item {
  width: 100%;
  display: flex;
  gap: 20px;
}
.banner_lecture .inner_lecture_list .lecture_list_item .lecture_info {
  padding: 0 12px 0 0;
  width: 100%;
  background: transparent;
}
.banner_lecture .inner_container .inner_header_title .more_list {
  display: var(--banner-contents-more-list);
}
.banner_lecture .inner_lecture_list .lecture_list_item .lecture_info .info_title {
  width: 100%;
  height: 30px;
  max-width: 100%;
  word-break: break-all;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

/*유투브 모듈*/
.youtube_contents {
  padding: var(--youtube-contents-padding);
  background: var(--youtube-contents-bg);
}
.youtube_contents .inner_container {
  background: var(--youtube-contents-inner-bg);
  border-radius: var(--youtube-contents-bg-radius);
}
.youtube_contents .inner_lecture_list .lecture_list_item {
  border-radius: var(--youtube-contents-radius);
  border: var(--youtube-contents-border) solid var(--youtube-contents-border-color);
}
.youtube_contents .inner_lecture_list .lecture_list_item .img_thumb {
  border-radius: var(--youtube-contents-radius);
  width: 100%;
  max-width: 189px;
  height: 130px;
  border: 1px solid #e8e8e8;
}
.youtube_contents .inner_lecture_list .lecture_list_item .img_thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.youtube_contents .inner_container .inner_header_title {
  justify-content: var(--youtube-contents-title-align);
}
.youtube_contents .inner_container .inner_header_title h2 {
  font-size: var(--youtube-contents-title-size);
  color: var(--youtube-contents-title-color);
}
.youtube_contents .inner_container .inner_contents {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.youtube_contents .inner_container .inner_contents .inner_banner {
  flex: 1;
  object-fit: cover;
  border-radius: var(--youtube-contents-radius);
}
.youtube_contents .inner_container .inner_contents .inner_contents_list {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex: 1;
}
.youtube_contents .inner_container .inner_contents .inner_contents_list:nth-child(2) {
  flex-wrap: wrap;
  gap: 20px;
}
.youtube_contents .inner_container .inner_contents .inner_contents_list:nth-child(2) .contents_list_item {
  width: calc(50% - 10px);
}
.youtube_contents .inner_container .inner_contents .inner_contents_list .contents_list_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.youtube_contents .inner_container .inner_contents .inner_contents_list .contents_list_item .img_thumb {
  height: 100%;
  border-radius: var(--youtube-contents-radius);
  border: var(--youtube-contents-border) solid var(--youtube-contents-border-color);
}
.youtube_contents .inner_container .inner_contents .inner_contents_list .contents_list_item .img_thumb img {
  height: 100%;
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.youtube_contents .inner_container .inner_contents .inner_contents_list .contents_list_item .contents_info {
  padding: 0;
  background: transparent;
}
.youtube_contents .inner_container .inner_header_title .more_list {
  display: var(--youtube-contents-more-list);
}

/*갤러리영상 모듈*/
.gallery_contents {
  padding: var(--gallery-contents-padding);
  background: var(--gallery-contents-bg);
}
.gallery_contents .inner_container .inner_contents_list {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.gallery_contents .inner_container {
  background: var(--gallery-contents-inner-bg);
  border-radius: var(--gallery-contents-bg-radius);
}
.gallery_contents .inner_container .inner_contents_list .contents_list_item {
  border-radius: var(--gallery-contents-radius);
}
.gallery_contents .inner_container .inner_contents_list .contents_list_item .img_thumb {
  border-radius: var(--gallery-contents-radius);
}
.gallery_contents .inner_container .inner_contents_list .contents_list_item .contents_info {
  background: var(--gallery-contents-inner-bg);
  border-radius: 0;
}
.gallery_contents .inner_container .inner_header_title {
  justify-content: var(--gallery-contents-title-align);
}
.gallery_contents .inner_container .inner_header_title h2 {
  font-size: var(--gallery-contents-title-size);
  color: var(--gallery-contents-title-color);
}
.gallery_contents .inner_container .inner_header_title .more_list {
  display: var(--gallery-contents-more-list);
}

/*롤링과정 모듈*/
.rolling_contents {
  padding: var(--rolling-contents-padding);
  background: var(--rolling-contents-bg);
}
.rolling_contents .inner_container {
  max-width: 100%;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--rolling-contents-inner-bg);
  border-radius: var(--rolling-contents-bg-radius);
}
.rolling_contents .swiper-slide {
  width: 366px;
}
.rolling_contents .swiper-button-prev {
  left: calc(50% - 620px) !important;
  top: calc(50% - 60px) !important;
}
.rolling_contents .swiper-button-next {
  right: calc(50% - 620px) !important;
  top: calc(50% - 60px) !important;
}
.rolling_contents .inner_container .inner_header_title {
  max-width: 1346px;
  width: 100%;
  padding: 0 48px;
  display: flex;
  justify-content: var(--rolling-contents-title-align);
}
.rolling_contents .inner_container .inner_header_title h2 {
  font-size: var(--rolling-contents-title-size);
  color: var(--rolling-contents-title-color);
}
.rolling_contents .inner_container .inner_header_title .more_list {
  display: var(--rolling-contents-more-list);
  right: 48px;
}
.rolling_contents .inner_lecture_list .lecture_list_item {
  border-radius: var(--rolling-contents-radius);
  border: var(--rolling-contents-border) solid var(--rolling-contents-border-color);
}
.rolling_contents .inner_lecture_list .lecture_list_item .img_thumb {
  border-radius: var(--rolling-contents-radius) var(--rolling-contents-radius) 0 0;
}
.rolling_contents .inner_lecture_list .lecture_list_item .lecture_info {
  border-radius: 0 0 var(--rolling-contents-radius) var(--rolling-contents-radius);
}
.rolling_contents .inner_lecture_list .lecture_list_item .lecture_info .info_title {
  margin-bottom: 15px;
}
/*교육과정 모듈*/
.curriculum_contents {
  padding: var(--curriculum-contents-padding);
  background: var(--curriculum-contents-bg);
}
.curriculum_contents .inner_container {
  background: var(--curriculum-contents-inner-bg);
  border-radius: var(--curriculum-contents-bg-radius);
}
.curriculum_contents .inner_container .inner_header_title {
  justify-content: var(--curriculum-contents-title-align);
}
.curriculum_contents .inner_container .inner_header_title h2 {
  font-size: var(--curriculum-contents-title-size);
  color: var(--curriculum-contents-title-color);
}
.curriculum_contents .inner_container .inner_lecture_list .lecture_list_item {
  border-radius: var(--curriculum-contents-radius);
  border: var(--curriculum-contents-border) solid var(--curriculum-contents-border-color);
}
.curriculum_contents .inner_container .inner_lecture_list .lecture_list_item .img_thumb {
  border-radius: var(--curriculum-contents-radius) var(--curriculum-contents-radius) 0 0;
}
.curriculum_contents .inner_container .inner_lecture_list .lecture_list_item .lecture_info {
  border-radius: 0 0 var(--curriculum-contents-radius) var(--curriculum-contents-radius);
}
.curriculum_contents .inner_more_list {
  display: var(--curriculum-contents-more-list);
}

/*학습교재 모듈*/
.book_contents {
  padding: var(--book-contents-padding);
  background: var(--book-contents-bg);
}
.book_contents .inner_container {
  background: var(--book-contents-inner-bg);
  border-radius: var(--book-contents-bg-radius);
}
.book_contents .inner_container .inner_header_title {
  justify-content: var(--book-contents-title-align);
}
.book_contents .inner_container .inner_header_title h2 {
  font-size: var(--book-contents-title-size);
  color: var(--book-contents-title-color);
}
.book_contents .inner_more_list {
  display: var(--book-contents-more-list);
}
.inner_book_list {
}
.inner_book_list .book_list_item {
  position: relative;
}
.inner_book_list .book_list_item .book_info {
  padding: 8px 0 0 0;
}
.inner_book_list .book_list_item .img_thumb {
  width: 100%;
  position: relative;
  border-radius: var(--book-contents-radius);
  border: var(--book-contents-border) solid var(--book-contents-border-color);
  overflow: hidden;
}
.inner_book_list .book_list_item .img_thumb img {
  width: 100%;
  aspect-ratio: 2/3;
}
.inner_book_list .book_list_item .book_info .info_price {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #ec0000;
}
.inner_book_list .book_list_item .book_info .info_cate {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2953c7;
  margin-bottom: 6px;
}
.inner_book_list .book_list_item .book_info .info_title {
  display: -webkit-box;
  font-size: 16px;
  margin-bottom: 12px;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}
.inner_book_list .book_list_item .book_info .info_price {
  font-size: 15px;
}
.inner_book_list .book_list_item .book_info .info_price .basic_price {
  text-decoration: line-through;
  color: #989898;
  padding-right: 16px;
}
.book_Swiper .swiper-slide {
  opacity: 1;
  width: calc(20% - 24px);
}
.book_Swiper .swiper-slide:nth-child(5n) {
  margin-right: 0 !important;
}
.book_Swiper .swiper-wrapper {
  flex-wrap: wrap;
  gap: 30px 0;
}

/*강사 모듈*/
.teacher_contents {
  padding: var(--teacher-contents-padding);
  background: var(--teacher-contents-bg);
}
.teacher_contents .inner_container {
  max-width: 100%;
  padding: 48px 0;
  background: var(--teacher-contents-inner-bg);
  border-radius: var(--teacher-contents-bg-radius);
}
.teacher_contents .inner_container .inner_header_title {
  display: flex;
  align-items: center;
  justify-content: var(--teacher-contents-title-align);
  gap: 72px;
  max-width: 1346px;
  width: 100%;
  padding: 0 48px;
  margin-left: auto;
  margin-right: auto;
}
.teacher_contents .inner_container .inner_header_title h2 {
  font-size: var(--teacher-contents-title-size);
  color: var(--teacher-contents-title-color);
}
.teacher_contents .inner_more_list {
  display: var(--teacher-contents-more-list);
  padding: 0 48px;
}
.teacher_contents .swiper-button-prev {
  background: url("../img/ico/arrow_left_gray.svg") 50% 50% no-repeat #f3f7ff;
  border: 1px solid #989898;
  position: relative;
  top: unset;
  left: unset !important;
  bottom: unset;
  right: unset !important;
  margin-top: 0;
  opacity: 0.3;
}
.teacher_contents .swiper-button-next {
  background: url("../img/ico/arrow_right_gray.svg") 50% 50% no-repeat #f3f7ff;
  border: 1px solid #989898;
  position: relative;
  top: unset;
  left: unset !important;
  bottom: unset;
  right: unset !important;
  margin-top: 0;
  opacity: 0.3;
}
.teacher_contents .swiper-button-box {
  position: absolute;
  top: -54px;
  width: 400px;
  left: calc(50% - 200px);
}
.inner_teacher_list {
}
.inner_teacher_list .teacher_list_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  border: 0;
  border-radius: 0;
  display: flex;
}
.inner_teacher_list .teacher_list_item .img_thumb {
  max-height: 225px;
  height: 100%;
  max-width: 225px;
  width: 100%;
  border: var(--teacher-contents-border) solid var(--teacher-contents-border-color);
  border-radius: 140px;
  overflow: hidden;
}
.inner_teacher_list .teacher_list_item .img_thumb img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
}
.inner_teacher_list .teacher_list_item .teacher_info {
  padding: 8px;
}
.inner_teacher_list .teacher_list_item .teacher_info h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.teacher_Swiper .swiper-slide {
  opacity: 1;
  width: 225px;
}
.teacher_Swiper::before {
  content: "";
  width: calc(50% - 625px);
  height: 100%;
  background: var(--teacher-contents-inner-bg);
  opacity: 0.5;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.teacher_Swiper::after {
  content: "";
  width: calc(50% - 625px);
  height: 100%;
  background: var(--teacher-contents-inner-bg);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/*수강후기 모듈*/
.review_contents {
  padding: var(--review-contents-padding);
  background: var(--review-contents-bg);
}
.review_contents .inner_container {
  max-width: 100%;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--review-contents-inner-bg);
  border-radius: var(--review-contents-bg-radius);
}
.review_contents .inner_container .inner_header_title {
  max-width: 1346px;
  width: 100%;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
}
.review_contents .inner_container .inner_header_title h2 {
  font-size: var(--review-contents-title-size);
  color: var(--review-contents-title-color);
}
.review_list_item {
  border: var(--review-contents-border) solid var(--review-contents-border-color);
  background: #fff;
  border-radius: var(--review-contents-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.review_list_item .review_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.review_list_item .review_header .star_point {
  background: url("../img/ico/star_empty.png") no-repeat;
  background-size: cover;
  width: 98px;
  height: 18px;
  position: relative;
}
.review_list_item .review_header .star_point span {
  background: url("../img/ico/star_fill.png") no-repeat;
  background-size: cover;
  position: absolute;
  width: 98px;
  height: 18px;
}
.review_list_item .review_header .reviewer_name {
  background: url("../img/ico/profile_gray.svg") left 0 top 50% no-repeat;
  background-size: 16px 16px;
  padding-left: 16px;
  font-size: 14px;
  color: #989898;
}
.review_list_item .review_text {
  height: 108px;
  padding-bottom: 20px;
}
.review_list_item .review_text p {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.review_list_item .review_info {
  display: flex;
  flex-direction: column;
}
.review_list_item .review_info .review_lecture_name {
  background: url("../img/ico/lecture_gray.svg") left 0 top 50% no-repeat;
  background-size: 20px 20px;
  padding: 0 0 0 26px;
  margin: 8px 0;
  font-size: 14px;
  color: #989898;
  max-width: 100%;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.review_list_item .review_info .review_lecture_text {
  font-size: 14px;
  color: #989898;
  max-width: 100%;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 55px;
  border-top: 1px solid #c9c9c9;
  padding-top: 15px;
}
.review_Swiper .swiper-slide {
  opacity: 1;
  width: 290px;
}
.review_Swiper::before {
  content: "";
  width: calc(50% - 650px);
  height: 100%;
  background: var(--review-contents-inner-bg);
  opacity: 0.5;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.review_Swiper::after {
  content: "";
  width: calc(50% - 650px);
  height: 100%;
  background: var(--review-contents-inner-bg);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/*교육일정 모듈*/
.schedule_contents {
  padding: var(--schedule-contents-padding);
  background: var(--schedule-contents-bg);
}
.schedule_contents .inner_container {
  background: var(--schedule-contents-inner-bg);
  border-radius: var(--schedule-contents-bg-radius);
}
.schedule_contents .inner_container .inner_contents {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.schedule_contents .inner_container .inner_header_title {
  justify-content: var(--schedule-contents-title-align);
}
.schedule_contents .inner_container .inner_header_title h2 {
  font-size: var(--schedule-contents-title-size);
  color: var(--schedule-contents-title-color);
}
.schedule_contents .calendar-box {
  border-radius: var(--schedule-contents-radius);
  border: var(--schedule-contents-border) solid var(--schedule-contents-border-color);
}
.schedule_contents .inner_container .inner_header_title .more_list {
  display: var(--scedule-contents-more-list);
}
.calendar-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  padding: 24px;
  width: 100%;
  max-width: 368px;
}
.schedule-list {
  border: var(--schedule-contents-border) solid var(--schedule-contents-border-color);
  border-radius: var(--schedule-contents-radius);
  width: 100%;
  height: 400px;
  overflow-y: scroll;
  -ms-overflow-style: none;
}
.schedule-list::-webkit-scrollbar {
  width: 20px;
}
.schedule-list::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(112, 112, 112, 1);
  background-clip: padding-box;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 16px solid transparent;
}
.schedule-list::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: rgba(112, 112, 112, 0.4);
  background-clip: padding-box;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 16px solid transparent;
}
.schedule-list-item {
  display: flex;
  gap: 40px;
  width: 100%;
  padding: 20px 80px 20px 32px;
  border-bottom: 1px solid #e5e5e5;
  background: url("../img/ico/arrow_right_gray.svg") right 32px top 50% no-repeat;
  background-size: 32px 32px;
}
.schedule-list-item:last-child {
  border-bottom: 0;
}
.schedule-list-item .schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 64px;
}
.schedule-list-item .schedule-date p {
  font-size: 18px;
  font-weight: 500;
}
.schedule-list-item .schedule-date span {
  font-size: 16px;
  font-weight: 400;
  color: #989898;
}
.schedule-list-item .schedule-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.schedule-list-item .schedule-info p {
  font-size: 18px;
  font-weight: 500;
}
.schedule-list-item .schedule-info span {
  font-size: 16px;
  font-weight: 400;
  color: #989898;
}

/*게시판1개+배너html 모듈*/
.notice1_html1_contents {
  padding: var(--notice1-html1-padding);
  background: var(--notice1-html1-bg);
}
.notice1_html1_contents .inner_container {
  background: var(--notice1-html1-inner-bg);
  border-radius: var(--notice1-html1-bg-radius);
}

/*게시판2개 모듈*/
.notice2_contents {
  padding: var(--notice2-padding);
  background: var(--notice2-bg);
}
.notice2_contents .inner_container {
  background: var(--notice2-inner-bg);
  border-radius: var(--notice2-bg-radius);
}

/*게시판2개+배너html 모듈*/
.notice2_html1_contents {
  padding: var(--notice2-html1-padding);
  background: var(--notice2-html1-bg);
}
.notice2_html1_contents .inner_container {
  background: var(--notice2-html1-inner-bg);
  border-radius: var(--notice2-html1-bg-radius);
}
.notice2_html1_contents .inner_container .inner_html_contents {
  margin-left: 10px;
  padding: 0;
  overflow: hidden;
}

/*배너html+게시판2개 모듈*/
.html1_notice2_contents {
  padding: var(--html1-notice2-padding);
  background: var(--html1-notice2-bg);
}
.html1_notice2_contents .inner_container {
  background: var(--html1-notice2-inner-bg);
  border-radius: var(--html1-notice2-bg-radius);
}
.html1_notice2_contents .inner_container .inner_html_contents {
  margin-right: 10px;
  height: 320px;
  width: 320px;
  aspect-ratio: 1/1;
  padding: 0;
}
.html1_notice2_contents .inner_container .inner_html_contents img {
  object-fit: cover;
  height: 100%;
  border-radius: 16px;
}
.default_lecture .inner_lecture_list .lecture_list_item,
.package_lecture .inner_lecture_list .lecture_list_item,
.curriculum_contents .inner_lecture_list .lecture_list_item,
.gallery_contents .inner_lecture_list .lecture_list_item {
  width: calc(25% - 22.5px);
}
.inner_lecture_list {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.inner_lecture_list .lecture_list_item {
  position: relative;
  border: 1px solid #e5e5e5;
}
.inner_lecture_list .lecture_list_item .ribbon-tag {
  position: absolute;
  top: 16px;
  left: -6px;
  color: #fff;
  font-size: 12px;
  background: #f10000;
  padding: 4px 24px;
  border-radius: 0 20px 20px 0;
  z-index: 1;
}
.inner_lecture_list .lecture_list_item .ribbon-tag::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  border-style: solid;
  border-width: 6px 0 0 6px;
  border-color: #000 transparent transparent transparent;
}
.img_thumb:hover img {
  transform: scale(1);
  transition: 0.2s all;
}
.inner_lecture_list .lecture_list_item .img_thumb:hover img {
  transform: var(--lecture4-thumbnail-hover);
}
.inner_lecture_list .lecture_list_item .img_thumb {
  position: relative;
  overflow: hidden;
}
.inner_lecture_list .lecture_list_item .img_thumb img {
  width: 100%;
  max-height: 200px;
  height: 100%;
  aspect-ratio: 3/2;
}
.inner_lecture_list .lecture_list_item .lecture_info {
  padding: 24px;
  background: #fff;
}
.inner_lecture_list .lecture_list_item .lecture_info .info_cate {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #2953c7;
  margin-bottom: 10px;
}
.inner_lecture_list .lecture_list_item .lecture_info .info_title {
  font-size: 20px;
  line-height: 1.4;
  height: 56px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  max-width: 240px;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.inner_contents_list .contents_list_item .contents_info .info_title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  max-width: 297px;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.youtube_contents .inner_contents_list .contents_list_item .contents_info .info_title {
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}

.inner_lecture_list .lecture_list_item .lecture_info .info_detail1 {
  font-size: 12px;
  line-height: 1.4;
  color: #000;
  display: flex;
  gap: 16px;
  margin-bottom: 4px;
  min-width: 100px;
}
.inner_lecture_list .lecture_list_item .lecture_info .info_detail1 span {
  color: #989898;
  word-break: break-all;
}
.inner_lecture_list .lecture_list_item .lecture_info .info_detail2 {
  font-size: 12px;
  line-height: 1.4;
  color: #000;
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  min-width: 100px;
}
.inner_lecture_list .lecture_list_item .lecture_info .info_detail2 span {
  color: #989898;
  word-break: break-all;
}
.inner_lecture_list .lecture_list_item .lecture_info .info_detail3 {
  font-size: 12px;
  line-height: 1.4;
  color: #000;
  display: flex;
  gap: 16px;
  min-width: 100px;
}
.inner_lecture_list .lecture_list_item .lecture_info .info_detail3 span {
  color: #000;
  font-weight: 700;
  word-break: break-all;
}
.multi-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.inner_lecture_list .lecture_list_item .lecture_info .info_price {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #ec0000;
}

.swiper.rolling_Swiper,
.swiper.teacher_Swiper,
.swiper.review_Swiper {
  padding: 0 48px;
}
.swiper.review_Swiper {
}
.book_Swiper .swiper-button-next,
.book_Swiper .swiper-button-prev {
  display: none;
}
.inner_container .inner_contents_list .contents_list_item .ribbon-tag::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  border-style: solid;
  border-width: 6px 0 0 6px;
  border-color: #000 transparent transparent transparent;
}
.inner_container .inner_contents_list .contents_list_item .img_thumb {
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
}
.inner_container .inner_contents_list .contents_list_item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  width: calc(25% - 15px);
}
.inner_container .inner_contents_list .contents_list_item .img_thumb img {
  width: 100%;
  max-height: 200px;
  height: 100%;
  aspect-ratio: 3/2;
}
.inner_container .inner_contents_list .contents_list_item .contents_info {
  padding: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
}
.inner_tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.inner_tabs li {
  display: flex;
}
.inner_tabs li a {
  border: 1px solid #888;
  border-radius: 24px;
  padding: 8px 32px;
  font-size: 16px;
  color: #888;
  text-align: center;
}
.inner_tabs li a.active {
  border: 1px solid #ec0000;
  color: #ec0000;
}

.review_contents .swiper-button-box {
  display: flex;
  gap: 24px;
}
.review_contents .swiper-button-prev {
  background: url("../img/ico/arrow_left_gray.svg") 50% 50% no-repeat #f3f7ff;
  border: 1px solid #989898;
  position: relative;
  top: unset;
  left: unset !important;
  bottom: unset;
  right: unset !important;
  margin-top: 0;
  opacity: 0.3;
}
.review_contents .swiper-button-next {
  background: url("../img/ico/arrow_right_gray.svg") 50% 50% no-repeat #f3f7ff;
  border: 1px solid #989898;
  position: relative;
  top: unset;
  left: unset !important;
  bottom: unset;
  right: unset !important;
  margin-top: 0;
  opacity: 0.3;
}

.notice1_html1_contents .inner_container,
.notice2_contents .inner_container {
  display: flex;
  gap: 10px;
}
.notice2_html1_contents .inner_container,
.html1_notice2_contents .inner_container {
  display: flex;
  gap: 0;
}
.notice2_html1_contents .inner_container .inner_notice_list:nth-child(1),
.html1_notice2_contents .inner_container .inner_notice_list:nth-child(2) {
  border-radius: 16px 0 0 16px;
  border-right: 0;
}
.notice2_html1_contents .inner_container .inner_notice_list:nth-child(2),
.html1_notice2_contents .inner_container .inner_notice_list:nth-child(3) {
  border-radius: 0 16px 16px 0;
}

.inner_notice_list {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 20px;
  width: 100%;
}
.inner_notice_list .notice_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 12px;
}
.inner_notice_list .notice_header h3 {
  font-size: 26px;
}
.inner_notice_list .notice_header .more_notice_list {
  width: 24px;
  height: 24px;
  background: url("../img/ico/plus_black.svg") 50% 50% no-repeat;
  background-size: 16px 16px;
}
.inner_notice_list .notice_list {
  display: flex;
  flex-direction: column;
}
.inner_notice_list .notice_list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  gap: 20px;
}
.inner_notice_list .notice_list li p {
  color: #989898;
  flex: 1;
  display: -webkit-box;
  font-size: 16px;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}
.inner_notice_list .notice_list li span {
  font-size: 16px;
  color: #989898;
}
.inner_html_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #f8f8f8;
  border-radius: 16px;
  padding: 0;
}
.inner_html_contents ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}

.inner_html_contents ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.inner_html_contents ul li a span {
  display: block;
  border-radius: 100px;
  padding: 16px;
}
.inner_html_contents ul .qna_button_img {
  width: 80px;
  height: 80px;
  background: url("../img/ico/qna.png") 50% 50% no-repeat #fff;
  background-size: 48px 48px;
}
.inner_html_contents ul .data_button_img {
  width: 80px;
  height: 80px;
  background: url("../img/ico/data.png") 50% 50% no-repeat #fff;
  background-size: 48px 48px;
}
.inner_html_contents ul .email_button_img {
  width: 80px;
  height: 80px;
  background: url("../img/ico/email.png") 50% 50% no-repeat #fff;
  background-size: 48px 48px;
}
.swiper-slide {
  opacity: 0.4;
  transition: opacity 0.3s;
}
.swiper-slide-active,
.swiper-slide-prev,
.swiper-slide-next {
  opacity: 1;
}
.swiper-button-next {
  background: url("../img/ico/arrow_right_white.svg") 50% 50% no-repeat #00000055;
  border-radius: 32px;
  background-size: 24px auto;
  width: 40px !important;
  height: 40px !important;
  padding: 16px;
  right: 0 !important;
}
.swiper-button-prev {
  background: url("../img/ico/arrow_left_white.svg") 50% 50% no-repeat #00000055;
  border-radius: 32px;
  background-size: 24px auto;
  width: 40px !important;
  height: 40px !important;
  padding: 16px;
  left: 0 !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
#footer .logo2 {
  margin-right: 48px;
}
@media all and (max-width: 1260px) {
  .teacher_Swiper::before {
    width: calc(50% - 390px);
  }
  .teacher_Swiper::after {
    width: calc(50% - 390px);
  }
  .review_Swiper::before {
    width: 23.5%;
  }
  .review_Swiper::after {
    width: 23.5%;
  }
}
@media all and (max-width: 1200px) {
  #header .nav {
    margin: 0 auto;
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 64px;
    line-height: 64px;
  }
  /* #header .logo {
    padding-top:10px;
    padding-bottom:10px;
  } */
  #header .logo a {
    height:44px;
  }
  /* #header .logo img {
    display:block;
    height:100%;
    object-fit: contain;
  } */
}
@media all and (max-width: 1024px) {
  /* #header .nav {
    margin: 0 auto;
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 64px;
    line-height: 64px;
  } */
  .container {
    padding-top: 64px;
  }
  .main_banner .swiper-button-prev {
    left: 20px !important;
  }
  .main_banner .swiper-button-next {
    right: 20px !important;
  }
  .inner_container {
    padding: 20px;
  }
  .inner_lecture_list,
  .inner_contents_list {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }
  .inner_container .inner_lecture_list .lecture_list_item,
  .inner_container .inner_contents_list .contents_list_item {
    width: calc(50% - 10px);
  }
  .banner_lecture .inner_lecture_list .lecture_list_item {
    width: 100%;
  }
  .rolling3_lecture .inner_container .inner_lecture_list .lecture_list_item {
    width: 100%;
  }
  .notice1_html1_contents .inner_container,
  .notice2_contents .inner_container {
    gap: 16px;
  }
  .notice2_html1_contents .inner_container .inner_html_contents {
    padding: 0;
    margin-left: 16px;
  }
  .html1_notice2_contents .inner_container .inner_html_contents {
    margin-right: 16px;
  }
  .inner_notice_list {
    padding: 16px;
  }
  .notice1_html1_contents {
    margin-top: 0;
  }
  .inner_html_contents ul .qna_button_img,
  .inner_html_contents ul .data_button_img,
  .inner_html_contents ul .email_button_img {
    width: 64px;
    height: 64px;
    background-size: 32px 32px;
  }
  .inner_html_contents ul li a {
    font-size: 14px;
  }
  .swiper.rolling_Swiper,
  .swiper.teacher_Swiper,
  .swiper.review_Swiper {
    padding: 0 20px;
  }
  .rolling_Swiper .inner_lecture_list .lecture_list_item {
    width: 100%;
  }
  .banner_lecture .inner_container .inner_contents {
    gap: 20px;
  }
  .banner_lecture .inner_container .inner_contents .inner_banner {
    width: 300px;
  }
  .banner_lecture .inner_container .inner_contents .inner_lecture_list .lecture_list_item .img_thumb {
    height: 108px;
    max-width: 128px;
    flex: none;
  }
  .banner_lecture .inner_container .inner_contents .inner_lecture_list .lecture_list_item .img_thumb img {
    aspect-ratio: 1/1;
  }
  .banner_lecture .inner_lecture_list .lecture_list_item .lecture_info .info_title {
    height: 24px;
  }
  .youtube_contents .inner_container .inner_contents .inner_contents_list {
    width: 100%;
  }

  .youtube_contents .inner_container .inner_contents .inner_contents_list .contents_list_item {
    width: 100%;
  }
  .default_lecture,
  .package_lecture,
  .banner_lecture,
  .book_contents,
  .curriculum_contents,
  .teacher_contents,
  .rolling_contents,
  .rolling3_lecture,
  .youtube_contents,
  .gallery_contents,
  .review_contents,
  .notice1_html1_contents,
  .notice2_contents,
  .notice2_html1_contents,
  .html1_notice2_contents,
  .schedule_contents {
    padding: 48px 0;
  }
  .inner_container .inner_header_title {
    margin-bottom: 24px;
    min-height: 24px;
  }
  .inner_container .inner_header_title h2 {
    font-size: 20px;
  }
  .inner_lecture_list .lecture_list_item .lecture_info {
    padding: 12px;
  }

  .inner_teacher_list .teacher_list_item .teacher_info {
    padding: 0;
  }

  .inner_teacher_list .teacher_list_item .teacher_info h3 {
    font-size: 16px;
  }
  .inner_tabs {
    gap: 8px;
    margin-bottom: 40px;
    width: 100%;
  }
  .inner_tabs li a {
    padding: 6px 16px;
    font-size: 14px;
  }
  .inner_tabs {
    -ms-overflow-style: none;
  }
  .inner_tabs::-webkit-scrollbar {
    display: none;
  }
  .inner_lecture_list .lecture_list_item .lecture_info .info_cate {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .inner_lecture_list .lecture_list_item .lecture_info .info_title {
    font-size: 16px;
    margin-bottom: 8px;
    height: 46px;
  }
  .inner_lecture_list .lecture_list_item .lecture_info .info_price {
    font-size: 15px;
  }
  .inner_lecture_list .lecture_list_item .lecture_info .info_detail2 {
    margin-bottom: 8px;
  }
  .swiper-button-prev {
    left: 20px !important;
  }
  .swiper-button-next {
    right: 20px !important;
  }
  .rolling3_lecture .swiper-button-next {
    display: flex;
    top: calc(50% - 84px);
    right: 0 !important;
  }
  .rolling3_lecture .swiper-button-prev {
    display: flex;
    top: calc(50% - 84px);
    left: 0 !important;
  }
  .schedule_contents .inner_container .inner_contents {
    gap: 16px;
  }
  .calendar-box {
    min-width: 352px;
    padding: 16px;
  }
  .schedule-list-item {
    padding: 16px 64px 16px 16px;
    background-size: 24px 24px;
    background-position: right 16px top 50%;
    gap: 20px;
  }
  .schedule-list-item .schedule-date {
    min-width: 56px;
  }
  .schedule-list-item .schedule-date p {
    font-size: 16px;
  }
  .schedule-list-item .schedule-date span {
    font-size: 14px;
  }
  .schedule-list-item .schedule-info {
  }
  .schedule-list-item .schedule-info p {
    font-size: 16px;
  }
  .schedule-list-item .schedule-info span {
    font-size: 14px;
  }

  .book_Swiper .swiper-button-next {
    display: flex;
    top: calc(50% - 44px) !important;
    right: 0 !important;
  }
  .book_Swiper .swiper-button-prev {
    display: flex;
    top: calc(50% - 44px) !important;
    left: 0 !important;
  }

  .book_Swiper .swiper-slide {
    width: unset;
  }
  .book_Swiper .swiper-slide:nth-child(5n) {
    margin-right: 20px !important;
  }
  .book_Swiper .swiper-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }
  .rolling3_Swiper .swiper-slide {
    width: unset;
  }
  .rolling3_Swiper .swiper-slide:nth-child(3n) {
    margin-right: 20px !important;
  }
  .rolling3_Swiper .swiper-wrapper {
    flex-wrap: nowrap;
    gap: 0;
  }
  .rolling_contents .swiper-button-next {
    right: 20px !important;
    top: calc(50% - 39px) !important;
  }
  .rolling_contents .swiper-button-prev {
    left: 20px !important;
    top: calc(50% - 39px) !important;
  }

  .teacher_Swiper::before {
    width: 0;
  }
  .teacher_Swiper::after {
    width: 0;
  }
  .review_Swiper::before {
    width: 0;
  }
  .review_Swiper::after {
    width: 0;
  }
  .rolling_contents .inner_container .inner_header_title,
  .review_contents .inner_container .inner_header_title {
    padding: 0 20px;
  }
  .rolling_contents .inner_container .inner_header_title .more_list {
    right: 20px;
  }
  .teacher_contents .inner_more_list {
    padding: 20px 20px 20px 0;
  }
  .banner_lecture .inner_lecture_list .lecture_list_item .img_thumb img,
  .inner_teacher_list .teacher_list_item .img_thumb img,
  .inner_lecture_list .lecture_list_item .img_thumb img,
  .inner_container .inner_contents_list .contents_list_item .img_thumb img {
    max-height: none;
  }
}

@media all and (max-width: 640px) {
  .main_banner .swiper-pagination-banner {
    display: none !important;
  }
  .main_banner .swiper-button-next,
  .main_banner .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-size: 20px auto;
  }

  .inner_container {
    padding: 20px;
  }
  .inner_lecture_list,
  .inner_contents_list {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .banner_lecture .inner_lecture_list {
    width: 100%;
  }
  .html1_notice2_contents .inner_container .inner_html_contents,
  .notice2_html1_contents .inner_container .inner_html_contents {
    margin: 0;
    width: 100%;
    height: 100%;
  }
  .notice2_html1_contents .inner_container .inner_notice_list:nth-child(1),
  .html1_notice2_contents .inner_container .inner_notice_list:nth-child(2),
  .notice2_html1_contents .inner_container .inner_notice_list:nth-child(2),
  .html1_notice2_contents .inner_container .inner_notice_list:nth-child(3) {
    border-radius: 16px;
    border: 1px solid #e5e5e5;
  }
  .notice1_html1_contents .inner_container,
  .notice2_contents .inner_container {
    flex-direction: column;
    gap: 16px;
  }

  .notice2_html1_contents .inner_container,
  .html1_notice2_contents .inner_container {
    flex-direction: column;
    gap: 16px;
  }
  .banner_lecture .inner_container .inner_contents {
    flex-direction: column;
    gap: 24px;
  }
  .banner_lecture .inner_container .inner_contents .inner_lecture_list .lecture_list_item .img_thumb {
    max-width: 148px;
  }
  .banner_lecture .inner_container .inner_contents .inner_lecture_list .lecture_list_item .img_thumb img {
    aspect-ratio: 3/2;
  }
  .banner_lecture .inner_container .inner_contents .inner_banner {
    width: 100%;
  }
  .youtube_contents .inner_container .inner_contents {
    flex-direction: column;
    gap: 20px;
  }
  .youtube_contents .inner_container .inner_contents .inner_contents_list:nth-child(2) {
  }
  .curriculum_contents .inner_lecture_list,
  .book_contents .inner_lecture_list {
    justify-content: flex-start;
  }
  .curriculum_contents .inner_lecture_list .lecture_list_item,
  .book_contents .inner_lecture_list .lecture_list_item {
    width: calc(50% - 10px);
  }
  .schedule_contents .inner_container .inner_contents {
    flex-direction: column;
    align-items: center;
  }
  .calendar-box {
    width: 100%;
    min-width: 100%;
    padding: 12px 0;
  }
  .teacher_Swiper {
    padding: 0 20px !important;
  }
  .teacher_Swiper::before,
  .review_Swiper::before {
    width: 0;
  }
  .teacher_Swiper::after,
  .review_Swiper::after {
    width: 0;
  }
  .review_Swiper .swiper-slide-prev,
  .review_Swiper .swiper-slide-next {
    opacity: 0.4;
  }
  .review_Swiper .swiper-slide-active {
    opacity: 1;
  }
  .gallery_contents .inner_contents_list .contents_list_item .contents_info .info_title {
    font-size: 16px;
  }
  .default_lecture,
  .package_lecture,
  .banner_lecture,
  .book_contents,
  .curriculum_contents,
  .teacher_contents,
  .rolling_contents,
  .rolling3_lecture,
  .youtube_contents,
  .gallery_contents,
  .review_contents,
  .notice1_html1_contents,
  .notice2_contents,
  .notice2_html1_contents,
  .html1_notice2_contents,
  .schedule_contents {
    padding: 32px 0;
  }
}
