@charset "utf-8";

:root {
  --main-color :#C8A445;
}

.main-wrap {
  width: 100%;
}

.section01 {
  width: 100%;
  position: relative;
}

.main-back {
	width: 100%;
	height: 100%;
}

.main-back .slick-list {
	width: 100%;
	height: 100%;
}

.main-back .slick-track {
	width: 100%;
	height: 100%;
}

.main-back .bg-slide {
	width: 100%;
	height: 100%;
	position: relative;
}

.main-back .bg-slide-img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.main-back .bg-slide-img::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.main-back .bg-slide-img img {
	width: 100%;
	height: 100%;
    transition: all 3s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
	object-fit: cover;
}

.main-back .bg-slide-img.slick-active img {
	transform: scale(1);
}

.main-btn {
  position: absolute;
  bottom: 230px;
  left: 50%;
  transform: translateX(-50%);
}

.main-btn a {
  background: #E34346;
  color: #fff;
  text-align: center;
  width: 320px;
  display: block;
  padding: 10px 0;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
}

.main-btn a img {
  width: 24px;
}

.scrollDown {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scrollDown p {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

.scrollDown span {
  display: block;
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: -1;
  opacity: 0.75;
}

.scrollDown span::after {
  content: "";
  width: 2px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}

.main-calendar-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 140px;
  color: #fff;
}

.main-calendar-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.main-calendar-box .title {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}

.main-calendar-box .title p {
  font-size: 24px;
  font-weight: 700;
}

.main-calendar-box .title span {
  font-size: 18px;
  font-weight: 700;
}

.main-calendar-box .title span b {
  margin-left: 5px;
}

.main-calendar {
  margin-left: 30px;
  position: relative;
}

.main-calendar .cal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.main-calendar .cal-btn.prev {
  left: 0;
  background: url('/images/main_cal-prev.svg')no-repeat center center;
}

.main-calendar .cal-btn.prev.off {
  left: 0;
  background: url('/images/main_cal-prev-off.svg')no-repeat center center;
}

.main-calendar .cal-btn.next {
  right: 0;
  background: url('/images/main_cal-next.svg')no-repeat center center;
}

.main-calendar .cal-btn.next.off {
  right: 0;
  background: url('/images/main_cal-next-off.svg')no-repeat center center;
}

.main-calendar ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 8px;
  margin: 0 35px;
}

.main-calendar ul li {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px 0;
  min-width: 48px;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 0;
  transition: all .2s ease;
}

.main-calendar ul li:hover {
  background: var(--main-color);
  border-radius: 4px;
}

.main-calendar ul li.sat {
  color: #2A7EE1;
}

.main-calendar ul li.sun {
  color: #E32D2E;
}

.main-calendar ul li span:nth-of-type(2) {
  font-size: 20px;
  font-weight: 700;
}

.section02 {
  background: #fff;
  display: flex;
  gap: 0 96px;
  padding: 125px 160px;
}

.notice-title {
  width: 376px;
  position: relative;
}

.notice-title h2 {
  font-size: 48px;
  font-weight: 300;
}

.notice-title a.more {
  position: absolute;
  right: 0;
  top: 30px;
  text-decoration: underline;
  color: var(--main-color);
}

.notice-title .banner-list {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  margin-top: 25px;
  min-height: 145px;
  max-height: 145px;
}

.notice-title .banner-list a {
  display: block;
  font-size: 20px;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  padding-left: 30px;
  position: relative;
}

.notice-title .banner-list a::after {
  content: "·";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 40px;
}

.banner-slide-wrap {
  margin-top: 17px;
}

.notice-title .banner-slide {
  border-radius: 4px;
  overflow: hidden;
  height: 148px;
  width: 100%;
}

.notice-title .banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slide-wrap .banner-pagination {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: auto;
}

.banner-slide-wrap .banner-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  margin: 0 8px 0 0;
}

.banner-slide-wrap .banner-pagination .swiper-pagination-bullet:last-child {
  margin: 0;
}

.banner-slide-wrap .banner-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.notice-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 24px;
  width: calc(100% - 472px);
}

.notice-list .notice-box {
  width: 264px;
  height: 394px;
}

.notice-list .notice-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.notice-list .notice-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section03 {
  position: relative;
}

.section03 .text {
  position: absolute;
  left: 160px;
  top: 133px;
  color: #fff;
  z-index: 2;
}

.section03 .text h3 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 27px;
}

.section03 .text p {
  font-size: 20px;
  margin-bottom: 44px;
  line-height: 27px;
}

.section03 .text a.more {
  color: var(--main-color);
  text-decoration: underline;
  font-size: 16px;
  display: inline-block;
}

.course-tab-content {
  position: relative;
}

.course-slide-wrap {
  position: relative;
  width: 100%;
  height: 792px;
}

.course-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.course-slide .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.course-slide .swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

.course-slide .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-slide-paging {
  position: absolute;
  left: 160px;
  bottom: 134px;
  display: flex;
  flex-direction: column;
  width: 210px;
  margin-top: 72px;
  z-index: 2;
}

.course-slide-paging-item {
  display: inline-block;
  width: 210px;
  width: 210px;
}

.course-slide-txt {
  display: flex;
  align-items: center;
  height: 64px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.course-slide-txt:hover {
  color: #fff;
  font-weight: 700;
}

.course-slide-txt::after {
  content: ">";
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;

}

.course-slide-txt:hover::after {
  color: #fff;
}

.course-slide-paging-item.active .course-slide-txt {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid #fff;
}

.course-slide-paging-item.active .course-slide-txt::after {
  color: #fff;
}

.section04 {
  background: #4E4741;
  padding: 160px;
}

.section04 .title {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 80px;
}

.section04 .title h3 {
  font-size: 48px;
  font-weight: 300;
}

.section04 .title a.more {
  color: var(--main-color);
  text-decoration: underline;
  font-size: 16px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section04 .title ul {
  display: flex;
  align-items: center;
  gap: 0 36px;
}

.section04 .title ul li {
  font-size: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  cursor: pointer;
}

.section04 .title ul li:first-child::after {
  content: "·";
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
}

.section04 .title ul li.on {
  color: #fff;
}

.section04 .facil-content {
  margin-top: 35px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.section04 .facil-content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.facil-slide-wrap {
  position: relative;
  width: 100%;
  height: 540px;
}

.facil-slide, .facil-slide-inner, .facil-slide-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.facil-slide-item .bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.facil-slide-item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facil-slide-paging {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 210px;
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
}

.facil-slide-paging-item {
  display: inline-block;
  width: 210px;
  width: 210px;
}

.facil-slide-paging-progress-wrap {
  width: 100%;
  height: 2px;
  position: relative;
  overflow: hidden;
  bottom: -65px;
  background-color: rgba(255, 255, 255, 0.4);
}

.facil-slide-paging-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: width 0.2s linear;
  background-color: #fff;
}

.facil-slide-txt {
  display: flex;
  align-items: center;
  height: 64px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  position: relative;
  font-weight: 500;
}

/* .facil-slide-txt:hover {
  color: #fff;
  font-weight: 700;
} */

.facil-slide-txt::after {
  content: ">";
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;

}

/* .facil-slide-txt:hover::after {
  color: #fff;
} */

.facil-slide-paging-item--active .facil-slide-txt {
  opacity: 1;
  color: #fff;
  font-weight: 700;
}

.facil-slide-paging-item--active .facil-slide-txt::after {
  color: #fff;
}

.facil-slide-paging-item--active .facil-slide-paging-progress {
  opacity: 1;
}

.section05 {
  height: 257px;
  background: url('/images/section05_back.jpg')no-repeat center center / cover;
  position: relative;
}

.section05 a {
  width: 100%;
  height: 100%;
  display: block;
}

.section05 .text {
  position: absolute;
  left: 160px;
  top: 80px;
}

.section05 .text h3 {
  margin-bottom: 16px;
  color: #999;
  font-size: 36px;
  font-weight: 300;
}

.section05 .text p {
  font-size: 20px;
  color: #D6D6D6;
}

.section06 {
  height: 624px;
}

.section06 .map-area {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.map-area .map-img {
  width: 100%;
  height: 100%;
}

.map-area .map-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-area .map-text-wrap {
  position: absolute;
  right: 160px;
  bottom: 146px;
  background: #fff;
  width: 540px;
  height: 332px;
  display: flex;
  align-items: center;
  z-index: 1;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.map-area .map-text {
  padding-left: 40px;
}

.map-area .map-text h3 {
  color: #999;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 23px;
}

.map-area .map-text h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
}

.map-area .map-text p {
  font-size: 20px;
  margin-bottom: 5px;
}

.map-area .map-text span {
  font-size: 20px;
  margin-bottom: 32px;
  display: block;
}

.map-area .map-text a.more {
  color: var(--main-color);
  text-decoration: underline;
  font-size: 16px;
  display: block;
}

.root_daum_roughmap {
  width: 100% !important;
}

.root_daum_roughmap .cont {
  display: none;
}

.root_daum_roughmap .wrap_controllers {
  display: none;
}
