#main-visual {
  position: relative;
  z-index: 1;
}
#main-visual .main-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1400px;
  padding: 15rem 5rem 25rem;
  margin: 0 auto;
}
@media screen and (max-width: 859px) {
  #main-visual .main-image {
    padding: 9rem 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 13rem;
    min-height: 78rem;
    width: 90%;
  }
}
#main-visual .main-image .image-wrapper {
  position: relative;
  width: 80%;
}
@media screen and (max-width: 859px) {
  #main-visual .main-image .image-wrapper {
    width: 100%;
  }
}
#main-visual .main-image .image-wrapper p.illustration-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-white);
  position: absolute;
  bottom: -3rem;
}
@media screen and (max-width: 859px) {
  #main-visual .main-image .image-wrapper p.illustration-text {
    font-size: 1rem;
  }
}
#main-visual .main-image .image-wrapper img {
  width: 100%;
  border-radius: 3rem 3rem 3rem 0;
  transition: opacity 1s ease;
}
#main-visual .main-image .image-wrapper img:not(.is-active) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
#main-visual .main-image .image-wrapper img.is-active {
  position: relative;
  opacity: 1;
}
#main-visual .main-image .text-area {
  position: relative;
  width: calc(40% - 4rem);
}
@media screen and (max-width: 859px) {
  #main-visual .main-image .text-area {
    width: 100%;
  }
}
#main-visual .main-image .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  transition: opacity 1s ease, visibility 1s ease;
}
#main-visual .main-image .text-wrapper:not(.is-active) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#main-visual .main-image .text-wrapper.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
#main-visual .main-image .text-wrapper img {
  max-width: 34rem;
}
#main-visual .main-image .text-wrapper p {
  font-size: 1.2rem;
}
#main-visual .main-image .text-wrapper p span.large-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}
#main-visual .second-image,
#main-visual .third-image,
#main-visual .fourth-image {
  overflow: hidden;
}
#main-visual .second-image img,
#main-visual .third-image img,
#main-visual .fourth-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
#main-visual .second-image img.is-active,
#main-visual .third-image img.is-active,
#main-visual .fourth-image img.is-active {
  opacity: 1;
}
#main-visual .second-image {
  position: absolute;
  bottom: 7rem;
  right: 38rem;
  width: 20rem;
  height: 12rem;
}
@media screen and (max-width: 859px) {
  #main-visual .second-image {
    bottom: initial;
    top: calc(50vw + 14rem);
    left: 5%;
    right: initial;
    width: 10rem;
    height: 6rem;
  }
}
#main-visual .second-image img {
  border-radius: 3rem;
}
@media screen and (max-width: 859px) {
  #main-visual .second-image img {
    border-radius: 1.5rem;
  }
}
#main-visual .third-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34rem;
  height: 23rem;
}
@media screen and (max-width: 859px) {
  #main-visual .third-image {
    bottom: initial;
    top: calc(50vw + 11rem);
    right: 0;
    width: 11rem;
    height: 7rem;
  }
}
#main-visual .third-image img {
  border-radius: 4rem 0 0 0;
}
@media screen and (max-width: 859px) {
  #main-visual .third-image img {
    border-radius: 1.5rem 0 0 1.5rem;
  }
}
#main-visual .fourth-image {
  position: absolute;
  top: 0;
  right: 15rem;
  width: 20rem;
  height: 12rem;
}
@media screen and (max-width: 859px) {
  #main-visual .fourth-image {
    right: 30vw;
    width: 10rem;
    height: 6rem;
  }
}
#main-visual .fourth-image img {
  border-radius: 0 0 3rem 3rem;
}
@media screen and (max-width: 859px) {
  #main-visual .fourth-image img {
    border-radius: 0 0 1.5rem 1.5rem;
  }
}
#main-visual .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(50rem, 80vw, 100rem);
  height: 100%;
  z-index: -2;
}
@media screen and (max-width: 859px) {
  #main-visual .bg-image {
    width: 150%;
    left: -13rem;
  }
}
#main-visual .important-information {
  position: absolute;
  bottom: 5rem;
  left: 0;
}
@media screen and (max-width: 859px) {
  #main-visual .important-information {
    bottom: -8rem;
  }
}
#main-visual .important-information a {
  background-color: var(--color-pink);
  border-radius: 0 2rem 2rem 0;
  padding: 3rem 3rem 3rem 6rem;
  color: var(--color-white);
  display: flex;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 859px) {
  #main-visual .important-information a {
    padding: 2rem 2rem 2rem 4rem;
    width: 35rem;
  }
}
#main-visual .important-information a .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 859px) {
  #main-visual .important-information a .text-wrapper {
    width: 100%;
  }
}
#main-visual .important-information a .text-wrapper p,
#main-visual .important-information a .text-wrapper h2 {
  color: var(--color-white);
  line-height: 1.2;
}
#main-visual .important-information a .text-wrapper p.attention {
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}
#main-visual .important-information a .text-wrapper p.attention::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2.5rem;
  width: 2rem;
  height: 2rem;
  background-image: url(../img/common/icon_exclaim.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#main-visual .important-information a .text-wrapper p.date {
  font-size: 1.6rem;
  font-weight: 500;
}
#main-visual .important-information a .text-wrapper .important-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 859px) {
  #main-visual .important-information a .text-wrapper .important-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
#main-visual .important-information a .text-wrapper .important-title-wrapper p.tag {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.3rem 2.5rem;
  border-radius: 1rem;
  color: var(--color-pink);
  background-color: var(--color-white);
}
@media screen and (max-width: 859px) {
  #main-visual .important-information a .image-wrapper {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
}
#main-visual .important-information a .image-wrapper img {
  width: 12rem;
  height: 8rem;
  -o-object-fit: cover;
     object-fit: cover;
}

#information {
  padding: 12rem 0 0;
  position: relative;
}
@media screen and (max-width: 859px) {
  #information {
    padding: 0;
  }
  #information.has-important-information {
    padding: 18rem 0 0;
  }
}
@media screen and (max-width: 859px) {
  #information .inner-920 {
    padding: 0;
  }
}
#information .information-wrapper {
  max-width: 50rem;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 859px) {
  #information .information-wrapper {
    max-width: 100%;
    padding: 4rem 10% 0;
  }
}
#information .information-wrapper::before {
  content: "";
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  right: -20vw;
  width: clamp(50rem, 90vw, 100rem);
  height: 105%;
  background-color: var(--color-bg-gray);
  border-radius: 4rem 0 0 4rem;
  z-index: -1;
}
@media screen and (max-width: 859px) {
  #information .information-wrapper::before {
    width: 100vw;
    height: 100vh;
    max-height: 67rem;
    top: initial;
    transform: translateY(0);
    bottom: 3rem;
    right: 0;
  }
}
#information .information-wrapper .title-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}
#information .information-wrapper ul.information-list {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  margin: 3rem 0 0;
}
@media screen and (max-width: 859px) {
  #information .information-wrapper ul.information-list {
    max-width: 100%;
  }
}
#information .information-wrapper ul.information-list li {
  position: relative;
  padding: 2rem 3rem 2rem 0;
  border-bottom: 1px solid var(--color-border-green);
}
#information .information-wrapper ul.information-list li:first-child {
  border-top: 1px solid var(--color-border-green);
}
#information .information-wrapper ul.information-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2rem;
  height: 2rem;
  background-image: url(../img/common/icon_arrow_gray_round.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#information .information-wrapper ul.information-list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
#information .information-wrapper ul.information-list li a p.date {
  font-size: 1.4rem;
  font-weight: 500;
}
#information .information-wrapper ul.information-list li a p.category {
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  background-color: var(--color-bg-gray);
  padding: 0.5rem 1.2rem;
  border-radius: 1rem;
  color: var(--color-white);
  min-width: 7rem;
  text-align: center;
}
#information .information-wrapper ul.information-list li a p.category.news {
  background-color: var(--color-news-green);
}
#information .information-wrapper ul.information-list li a p.category.column {
  background-color: var(--color-column-blue);
}
#information .information-wrapper ul.information-list li a h3.title {
  font-size: 1.4rem;
  font-weight: 500;
}
#information .information-wrapper .btn-wrapper {
  margin: 4rem 0 0;
}
#information .information-wrapper .btn-wrapper a {
  margin: 0 auto;
}
#information .image-wrapper {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: -5%;
  z-index: 1;
}
@media screen and (max-width: 859px) {
  #information .image-wrapper {
    position: relative;
    top: initial;
    left: initial;
    transform: translateY(0);
  }
}
#information .image-wrapper img {
  width: clamp(20rem, 37vw, 43rem);
  border-radius: 0 3rem 3rem 0;
}
@media screen and (max-width: 859px) {
  #information .image-wrapper img {
    width: clamp(20rem, 85vw, 50rem);
  }
}

#plan {
  margin: 6rem 0 0;
  padding: 6rem 0 0;
  position: relative;
}
#plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90vw;
  height: 100%;
  border-radius: 0 4rem 4rem 0;
  background-color: rgba(129, 223, 132, 0.2);
  z-index: -2;
}
@media screen and (max-width: 859px) {
  #plan::before {
    width: 100vw;
  }
}
#plan::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90vw;
  height: 100%;
  background-image: url(../img/top/bg_plan.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  border-radius: 0 4rem 0 0;
  z-index: -1;
}
@media screen and (max-width: 859px) {
  #plan::after {
    width: 100vw;
  }
}
#plan .title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#plan .title-wrapper h2 {
  color: var(--color-news-green);
}
#plan .content-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 859px) {
  #plan .content-wrapper {
    flex-direction: column;
  }
}
#plan .content-wrapper .text-wrapper {
  max-width: 52rem;
}
#plan .content-wrapper .text-wrapper .read-wrapper {
  margin: 3rem 0 0;
}
#plan .content-wrapper .text-wrapper ul {
  margin: 3rem 0 0;
  padding: 0 0 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 2.5rem;
}
@media screen and (max-width: 859px) {
  #plan .content-wrapper .text-wrapper ul {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
  }
}
#plan .content-wrapper .text-wrapper ul li a {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 1.2rem;
  gap: 1.2rem;
  width: 24rem;
  position: relative;
}
@media screen and (max-width: 859px) {
  #plan .content-wrapper .text-wrapper ul li a {
    width: 100%;
    max-width: 46rem;
  }
}
#plan .content-wrapper .text-wrapper ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background-image: url(../img/common/icon_arrow_green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#plan .content-wrapper .text-wrapper ul li a .icon-wrapper img {
  width: 5rem;
}
#plan .content-wrapper .text-wrapper ul li a h3 {
  font-size: 1.4rem;
}
#plan .content-wrapper .image-wrapper {
  position: relative;
  top: 3rem;
}
@media screen and (max-width: 859px) {
  #plan .content-wrapper .image-wrapper {
    top: 4rem;
    text-align: center;
  }
}
#plan .content-wrapper .image-wrapper img {
  width: clamp(20rem, 25vw, 32rem);
  border-radius: 3rem 0 3rem 0;
}
@media screen and (max-width: 859px) {
  #plan .content-wrapper .image-wrapper img {
    width: 80%;
  }
}

#dual-content {
  margin: 16rem 0 3rem;
  position: relative;
}
@media screen and (max-width: 859px) {
  #dual-content {
    margin: 10rem 0 5rem;
  }
}
#dual-content .inner-920 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 859px) {
  #dual-content .inner-920 {
    flex-direction: column;
    gap: 7rem;
  }
}
#dual-content .inner-920 .content-item {
  width: 45%;
}
@media screen and (max-width: 859px) {
  #dual-content .inner-920 .content-item {
    width: 100%;
  }
}
#dual-content .inner-920 .content-item .image-wrapper img {
  width: 100%;
  border-radius: 3rem 0 3rem 0;
}
#dual-content .inner-920 .content-item .text-wrapper {
  margin: 2rem 0 0;
}
#dual-content .inner-920 .content-item .text-wrapper .title-wrapper h2 {
  color: var(--color-news-green);
}
#dual-content .inner-920 .content-item .text-wrapper .read-wrapper {
  margin: 2rem 0 0;
}
#dual-content .inner-920 .content-item .text-wrapper .btn-wrapper {
  margin: 2rem 0 0;
}
#dual-content .inner-920 .content-item .text-wrapper .btn-wrapper a {
  margin: 0 auto;
  background-color: var(--color-news-green);
}
#dual-content .inner-920 .content-item .text-wrapper .btn-wrapper a::before {
  background-image: url(../img/common/icon_arrow_green_round.svg);
}

#course {
  width: 100%;
  height: 100%;
  background-image: url(../img/top/bg_course.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  position: relative;
  padding: 20rem 0 8rem;
}
@media screen and (max-width: 859px) {
  #course {
    padding: 10rem 0 8rem;
  }
}
#course::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/bg_round.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}
#course .inner-920 {
  padding: 5rem;
  position: relative;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 4rem 0 0 4rem;
}
@media screen and (max-width: 859px) {
  #course .inner-920 {
    background-color: transparent;
  }
}
#course .inner-920::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 859px) {
  #course .inner-920::after {
    right: 0;
    width: 95%;
    border-radius: 4rem 0 0 4rem;
  }
}
#course .title-wrapper {
  position: relative;
  z-index: 2;
}
#course .title-wrapper h2 {
  color: var(--color-pink);
}
#course .content-wrapper {
  margin: 5rem 0 0;
  position: relative;
  z-index: 2;
}
#course .content-wrapper .top-course-slider {
  overflow: visible;
}
#course .content-wrapper .top-course-slider .swiper-button-prev,
#course .content-wrapper .top-course-slider .swiper-button-next {
  width: 5.1rem;
  height: 4.9rem;
  margin-top: 0;
  transform: translateY(-50%);
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: transparent;
}
#course .content-wrapper .top-course-slider .swiper-button-prev::after,
#course .content-wrapper .top-course-slider .swiper-button-next::after {
  display: none !important;
  content: "" !important;
  font-size: 0 !important;
}
#course .content-wrapper .top-course-slider .swiper-button-prev {
  left: -2.5rem;
  background-image: url(../img/common/icon_arrow_prev.svg);
}
#course .content-wrapper .top-course-slider .swiper-button-next {
  right: -2.5rem;
  background-image: url(../img/common/icon_arrow_next.svg);
}
#course .content-wrapper .top-course-slider .swiper-slide {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 2rem 0 2rem 0;
}
#course .content-wrapper .top-course-slider a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#course .content-wrapper .top-course-slider a::before {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  background-image: url(../img/common/icon_arrow_pink_round.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
#course .content-wrapper .top-course-slider a .image-wrapper img {
  border-radius: 2rem 0 0 0;
}
#course .content-wrapper .top-course-slider a .text-wrapper {
  background-color: var(--color-white);
  padding: 2rem 2rem 5rem 2rem;
  border-radius: 0 0 2rem 0;
  min-height: 18rem;
}
#course .content-wrapper .top-course-slider a .text-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-pink);
}
#course .content-wrapper .top-course-slider a .text-wrapper p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 1.5rem 0 0;
}

#schedule {
  padding: 6rem 0 0;
}
#schedule .title-wrapper h2 {
  color: var(--color-purple);
}
#schedule .content-wrapper {
  margin: 3rem 0 0;
}

#external-link {
  margin: 8rem 0 0;
  background-color: var(--color-bg-gray);
  padding: 7rem 0;
}
@media screen and (max-width: 767px) {
  #external-link {
    padding: 5rem 0;
  }
}
#external-link ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 2rem;
}
#external-link ul li {
  width: 24%;
}
@media screen and (max-width: 767px) {
  #external-link ul li {
    width: 48%;
  }
}
#external-link ul li a {
  display: block;
}/*# sourceMappingURL=top.css.map */