@charset "UTF-8";
#wrap.page_main .main {
  padding-top: 0px;
  background-color: #F4F5F9;
  overflow: hidden;
}
.bannerSwiper {
  height: 686px;
  width: 100%;
  border-radius: 0 0 80px 80px;
  overflow: hidden;
  position: relative;
}
.bannerSwiper .swiper-slide .banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bannerSwiper .swiper-slide .banner_bg::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(4, 12, 28, 0.7)
}
.bannerSwiper .swiper-slide .banner_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
}
.banner_text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 20px;
}
.banner_text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}
.bannerSwiper .swiper-pagination {
  bottom: 18px;
}
.bannerSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 0.2;
  background: #fff;
}
.bannerSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.bannerSwiper .swiper_nav {
  position: absolute;
  left: 16px;
  transform: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
@media screen and (min-width:1480px) {
  .bannerSwiper .swiper_nav {
    left: calc((100% - 1440px) / 2);
  }
}
.bannerSwiper .swiper_nav .page-info {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff7a;
}
.bannerSwiper .swiper_nav .page-info b {
  color: #fff;
  font-weight: 600;
}
.bannerSwiper .swiper_nav .btn_move {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: 0.35s;
}
.bannerSwiper .swiper_nav .btn_move.prev {
  background: url(/_img/main/btn_banner_prev.svg) no-repeat center / contain;
}
.bannerSwiper .swiper_nav .btn_move.next {
  background: url(/_img/main/btn_banner_next.svg) no-repeat center / contain;
}
.bannerSwiper .swiper_nav .btn_move.prev:hover {
  background-image: url(/_img/main/btn_banner_prev_hover.svg);
}
.bannerSwiper .swiper_nav .btn_move.next:hover {
  background-image: url(/_img/main/btn_banner_next_hover.svg);
}
.bannerSwiper .swiper_nav .btn_move.disabled {
  border: 1px solid transparent;
}
.section_schedule {
  padding: 100px 0;
  position: relative;
  width: 100%;
  height: 100%;
}
.section_schedule.orientation {
  padding-top: 60px;
}
.sec__inner {
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.schedule_bg {
  position: absolute;
  height: 100%;
  width: 30%;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.schedule_bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main_title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #202020;
}
.section_schedule .btn_link {
  display: inline-block;
  width: 56px;
  height: 56px;
  background: url(/_img/main/btn_schedule.svg) no-repeat center / contain;
}
.test_schedule--list {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.test_schedule--list .test_schedule {
  flex: 1;
  /* min-width: 348px; */
  background-color: #fff;
  padding: 24px;
  transition: 0.35s;
  border: 1px solid var(--color-line);
  border-radius: 4px;
}
.section_schedule .test_schedule {
  border: none;
}
.test_schedule--list .test_schedule:hover {
  box-shadow: 0 0 10px rgba(0, 84, 157, 0.3);
}
.test_schedule h3 {
  font-size: 22px;
  font-weight: 600;
  color: #202020;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.4;
  height: 62px;
}
.test_schedule .test_info {
  padding-top: 16px;
  margin-top: 12px;
  border-top: 1px solid #E5E5EC;
}
.test_schedule .test_info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #767676;
  margin-bottom: 8px;
}
.test_schedule .test_info.item_2 {
  display: flex;
  flex-wrap: wrap;
}
.test_schedule .test_info.item_2 li {
  width: calc(50% - 8px);
}
.test_schedule .test_info li:last-child {
  margin-bottom: 0;
}
.test_schedule .test_info li span.info_tit {
  position: relative;
  padding-right: 8px;
}
.test_schedule .test_info li span.info_tit::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E5E5EC;
}
.test_schedule .test_btn {
  margin-top: 16px;
}
.test_schedule .test_btn .btn:disabled {
  cursor: default;
}
.btn_receipt {
  background-color: #202020;
  color: #fff;
}
.btn_ready,
.btn_ready:disabled {
  background-color: #B3CCE2;
  color: #fff;
}
.btn_end,
.btn_end:disabled {
  background-color: #DDDDDD;
  color: #fff;
}
.section_notice {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  min-height: 480px;
}
.section_notice .notice_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 322px;
  z-index: 1;
  border-radius: 0 0 160px 0;
  background: linear-gradient(to bottom, #00559D, #0E2E69);
}
.section_notice .notice_bg::after {
  content: '';
  display: inline-block;
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  transform: translateX(566px);
  bottom: 30px;
  background: url(/_img/main/notice_bg.png) no-repeat center / contain;
}
.section_notice .main_title h2 {
  color: #fff;
}
.section_notice .main_title .btn_link {
  display: inline-block;
  width: 56px;
  height: 56px;
  background-image: url(/_img/main/btn_notice.svg);
}
.notice_bg_text {
  position: absolute;
  left: -30px;
  top: 100px;
  display: inline-block;
  width: 34px;
  height: 300px;
}
.notice__list {
  display: flex;
  height: 240px;
  margin-top: 40px;
  flex-wrap: wrap;
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.2);
}
.notice__list .notice__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 32px;
  flex: 1;
  background-color: #fff;
  /* min-width: 420px; */
}
.notice__item h3 {
  font-size: 24px;
  font-weight: 600;
  color: #202020;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  height: 68px;
}
.notice__item p.date {
  font-size: 16px;
  margin-top: 8px;
  color: #767676;
}
.notice__item .notice_link {
  display: inline-block;
  width: 56px;
  height: 56px;
  transition: 0.35s;
  background: url(/_img/main/btn_go.svg) no-repeat center / contain;
}
.notice__item:hover .notice_link {
  background-image: url(/_img/main/btn_go_active.svg);
}
.notice__item:nth-child(2n) {
  background-color: #F4F5F9;
}

@media screen and (min-width: 768px) and (max-width:1480px) {
  .section_schedule .test_schedule {
    min-width: calc(50% - 16px);
  }
}

@media screen and (min-width: 768px) and (max-width:1200px) {
  .header__gnb nav.gnb>ul {
    gap: 24px;
  }
}

@media screen and (max-width:900px) {
  .notice__list {
    flex-direction: column;
    height: auto;
    margin-top: 16px;
  }
}

@media screen and (max-width:768px) {
  .bannerSwiper {
    border-radius: 0px;
    height: 480px;
  }
  .banner__inner {
    padding: 0 16px;
  }
  .banner_text {
    width: 100%;
    transform: translateY(48px);
  }
  .banner_text h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .banner_text p {
    font-size: 14px;
  }
  .bannerSwiper .swiper-pagination {
    bottom: 40px;
  }
  .bannerSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .bannerSwiper .swiper_nav {
    transform: translate(0);
    left: 16px;
  }
  .bannerSwiper .swiper_nav .page-info {
    font-size: 11px;
  }
  .bannerSwiper .swiper_nav .btn_move {
    width: 24px;
    height: 24px;
  }
  .section_schedule {
    padding: 40px 0;
  }
  .section_schedule.orientation {
    padding-top: 40px;
  }
  .sec__inner {
    padding: 0 16px;
  }
  .schedule_bg {
    display: none;
  }
  .main_title h2 {
    font-size: 20px;
  }
  .section_schedule .btn_link {
    width: 24px;
    height: 24px;
  }
  .test_schedule--list {
    margin-top: 20px;
    flex-direction: column;
    gap: 8px;
  }
  .test_schedule--list .test_schedule {
    min-width: auto;
    width: 100%;
    padding: 12px;
  }
  .section_schedule .test_schedule--list .test_schedule:nth-child(3),
  .section_schedule .test_schedule--list .test_schedule:nth-child(4) {
    display: none;
  }
  .test_schedule h3 {
    font-size: 16px;
    padding-bottom: 8px;
    margin-bottom: 0px;
    height: auto;
  }
  .test_schedule .test_info {
    margin-top: 0px;
  }
  .test_schedule .test_info li {
    font-size: 12px;
  }
  .test_schedule .test_btn {
    margin-top: 8px;
  }
  .section_notice {
    padding-top: 40px;  
    padding-bottom: 0px;
    min-height: auto;
  }
  .section_notice .notice_bg {
    height: 160px;
    border-radius: 0 0 16px 0;
  }
  .section_notice .main_title .btn_link {
    width: 24px;
    height: 24px;
    background-size: contain;
  }
  .notice_bg_text {
    display: none;
  }
  .notice__list .notice__item {
    padding: 12px;
  }
  .notice__item h3 {
    font-size: 16px;
    height: auto;
  }
  .notice__item p.date {
    font-size: 12px;
    margin-top: 4px;
  }
  .notice__item .notice_link {
    width: 24px;
    height: 24px;
  }
}