@charset "UTF-8";

/* common */
.mainTitle {
  color: #fff;
  font-size: 10rem;
  font-family: "wagoori";
  margin-bottom: 20px;
}

.mainSubtitle {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 150px;
}

.moveArrow {
  width: 54px;
  cursor: pointer;
}
/* common */

/* apng 이미지 */
.main_way_bg {
  background-image: url("../../images/main_way_bg.png");
  background-position: top 150px center;
  background-repeat: no-repeat;
}
/* apng 이미지 */

/* 별똥별 애니메이션 */
.starAniBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100%; */
  overflow: hidden;
}

.starAniFirst {
  position: absolute;
  top: -90%;
  left: -100%;
  animation: starAniFirst 5s 1s linear infinite;
  z-index: 1;
}

.starAniSecond {
  position: absolute;
  top: -100%;
  left: -100%;
  animation: starAniSecond 5s linear infinite;
  z-index: 1;
}

.starAniThird {
  position: absolute;
  top: -80%;
  left: -100%;
  animation: starAniThird 5s linear infinite;
  z-index: 1;
}

@keyframes starAniFirst {
  0% {
    top: -90%;
    left: -100%;
  }
  100% {
    top: 80%;
    left: 100%;
  }
}

@keyframes starAniSecond {
  0% {
    top: -100%;
    left: -100%;
  }
  100% {
    top: 90%;
    left: 100%;
  }
}

@keyframes starAniThird {
  0% {
    top: -80%;
    left: -100%;
  }
  100% {
    top: 80%;
    left: 100%;
  }
}
/* 별똥별 애니메이션 */

/* line 애니메이션 */
.line {
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-right: 1px solid #fff;
  transform-origin: top right;
  opacity: 0.3;
}

.line1 {
  top: 2700px;
  transform: rotate(50deg);
  animation: drawLine 5s linear infinite;
}
.line2 {
  top: 2800px;
  transform: rotate(45deg);
  animation: drawLine 5s 0.2s linear infinite;
}
.line3 {
  top: 2900px;
  transform: rotate(40deg);
  animation: drawLine 5s 0.4s linear infinite;
}
.line4 {
  top: 3000px;
  transform: rotate(35deg);
  animation: drawLine 5s 0.6s linear infinite;
}
.line5 {
  top: 3100px;
  transform: rotate(30deg);
  animation: drawLine 5s 0.8s linear infinite;
}

@keyframes drawLine {
  0% {
    height: 0;
  }

  100% {
    height: 500vh;
  }
}
/* line 애니메이션 */

.full_main_bg {
  background-image: url("../../images/full_main_bg.svg");
  position: relative;
  overflow: hidden;
}

/* #mainArticleA */
#mainArticleA {
  padding: 100px 0;
  background-image: url("../../images/main_banner_bg.svg");
  overflow: hidden;
  position: relative;
}

#mainArticleAInner {
  width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
  z-index: 2;
}

.mainArticleADate {
  text-align: right;
  color: #fff;
  font-size: 5rem;
  font-family: "wagoori";
  margin-bottom: 200px;
}

.mainArticleADate p:first-child {
  margin-bottom: 10px;
}

.mainArticleATitle {
  color: #fff;
  font-size: 11rem;
  font-family: "Mungyeong";
  word-break: keep-all;
}
/* #mainArticleA */

/* #mainArticleB */
#mainArticleB {
  width: 900px;
  margin: 0 auto;
  padding: 400px 0 0 0;
}

#mainArticleBInner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 560px;
  overflow: visible;
  position: relative;
}

.mainArticleBContens {
  margin-right: 100px;
  width: calc(100% - 484px);
}

.mainArticleBImgBox {
  width: 484px;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.mainArticleBArrow {
  margin: auto 0 0 0;
  padding-bottom: 20px;
}

.mainArticleBTitle {
  color: #fff;
  font-size: 10rem;
  font-family: "wagoori";
  margin-bottom: 20px;
}

.mainArticleBTitle span {
  font-family: "Noto Sans KR", "Noto Sans", sans-serif;
}

.mainArticleBBtn {
  width: 270px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.mainArticleBBtn button {
  width: 60px;
  height: 30px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Pretendard";
  font-weight: 500;
  background: none;
  border: 2px solid #fff;
  border-radius: 15px;
  margin-bottom: 15px;
  padding-top: 2px;
}

.mainArticleBBtn button.on {
  color: #000;
  background: #fff;
}

.mainArticleBSubcontent {
  position: absolute;
  top: 303px;
  left: 0;
}

.mainArticleBSubcontent > div {
  display: none;
}

.mainArticleBSubcontent > div.on {
  display: block;
}

.mainArticleBSubcontent h3 {
  font-size: 3rem;
  font-family: "Pretendard";
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.mainArticleBSubcontent p {
  font-size: 2rem;
  font-family: "Pretendard";
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.mainArticleBSubcontent li {
  font-size: 1.8rem;
  font-family: "Pretendard";
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.mainArticleBSubcontent li:last-child {
  margin-bottom: 0;
}

.mainArticleBSubcontent .programListHidden {
  display: none;
}

.mainArticleBSubcontent .programPreparing {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  min-height: 140px;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  font-size: 1.8rem;
  font-family: "Pretendard";
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  backdrop-filter: blur(2px);
}

.mainArticleBSubcontent img {
  width: 14px;
  vertical-align: unset;
  margin-right: 10px;
}

.mainArticleBImgBox > div {
  width: 400px;
  height: 520px;
  opacity: 0;
  position: absolute;
  display: none;
}

.mainArticleBImgBox > div.firstImgBox {
  display: block;
  opacity: 1;
  transform: translateX(0%) translateY(0px) scale(1);
  z-index: 1;
}
.mainArticleBImgBox > div.secondImgBox {
  display: block;
  opacity: 0.6;
  transform: translateX(40%) translateY(15px) scale(0.7);
  z-index: 0;
}
.mainArticleBImgBox > div.thirdImgBox {
  display: block;
  opacity: 0.2;
  transform: translateX(70%) translateY(5px) scale(0.5);
  z-index: 0;
}
.mainArticleBImgBox > div.hideImgBox {
  display: block;
  opacity: 0;
  transform: translateX(-50%) translateY(-40px) scale(1.3);
  z-index: 2;
}

.mainArticleBImgBox > div.bgImgBox {
  display: block;
  opacity: 0.2;
  transform: translateX(70%) translateY(5px) scale(0.5);
  z-index: 0;
}

.mainArticleBImgBox > div.firstImgBoxAni {
  display: block;
  opacity: 1;
  transform: translateX(0%) translateY(0px) scale(1);
  z-index: 1;
  transition: 0.5s;
}
.mainArticleBImgBox > div.secondImgBoxAni {
  display: block;
  opacity: 0.6;
  transform: translateX(40%) translateY(15px) scale(0.7);
  z-index: 0;
  transition: 0.5s;
}
.mainArticleBImgBox > div.thirdImgBoxAni {
  display: block;
  opacity: 0.2;
  transform: translateX(70%) translateY(5px) scale(0.5);
  z-index: 0;
  transition: 0.5s;
}
.mainArticleBImgBox > div.hideImgBoxAni {
  display: block;
  opacity: 0;
  transform: translateX(-50%) translateY(-40px) scale(1.3);
  z-index: 2;
  transition: 0.5s;
}
.mainArticleBImgBox > div.secondImgBoxAni .moveArrow,
.mainArticleBImgBox > div.thirdImgBoxAni .moveArrow {
  opacity: 0;
}

.mainArticleBImgBox .mainArticleBImg {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.mainArticleBImgBox .mainArticleBImg img:first-child {
  border-radius: 30px;
  cursor: pointer;
}

.mainArticleBImgBox .moveArrow {
  transform: translate(30px, -20px);
}

.mainArticleBImgBox .mainArticleBEmptyImg {
  width: 400px;
  height: 520px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.5);
}
/* #mainArticleB */

/* #mainArticleC */
#mainArticleC {
  width: 1280px;
  margin: 0 auto;
  padding: 400px 0 25px 0;
  text-align: center;
  overflow: hidden;
}

#mainArticleC .mainSubtitle,
#mainArticleD .mainSubtitle {
  font-family: "Pretendard";
  font-weight: 500;
}

.mainArticleCItemBox {
  display: flex;
  justify-content: center;
}

.mainArticleCItemBox > div {
  margin-right: 30px;
}

.mainArticleCItemBox > div:last-child {
  margin-right: 0;
}

.mainArticleCItemBox .item2 {
  margin-top: 160px;
}

.mainArticleCItemBox .item3 {
  margin-top: 360px;
}

.mainArticleCItemBox button {
  width: 120px;
  height: 36px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Pretendard";
  font-weight: 500;
  background: none;
  border: 2px solid #fff;
  border-radius: 18px;
  margin-bottom: 30px;
  cursor: auto;
  padding-top: 2px;
}

.mainArticleCItemBox .itemImg {
  position: relative;
  cursor: pointer;
}

.mainArticleCItemBox .itemImg img {
  border-radius: 25px;
}

.mainArticleCItemBox .itemImg::before {
  content: "";
  height: 50%;
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.85) 71%);
  border-radius: 0 0 25px 25px;
}

.mainArticleCItemBox .moveArrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
/* #mainArticleC */

/* #mainArticleD */
#mainArticleD {
  width: 1280px;
  margin: 0 auto;
  padding: 400px 0 0 0;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.mainArticleDVideoBox {
  display: none !important;
}

.mainArticleDVideoBox iframe {
  width: 1000px;
  height: 600px;
}

#mainArticleD .mainArticleDPreparing {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 520px;
  min-height: 170px;
  padding: 48px 40px;
  margin: 310px auto 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: #fff;
  font-size: 3rem;
  font-family: "Pretendard";
  font-weight: 500;
  text-align: center;
  backdrop-filter: blur(2px);
}

.mainArticleCelebrationBox img {
  width: 1000px;
  height: 600px;
}

/* #mainArticleD */

/* #mainArticleE */
#mainArticleE {
  width: 1280px;
  margin: 0 auto;
  padding: 400px 100px 0 100px;
  text-align: center;
  overflow: hidden;
}

#mainArticleE .mainTitle {
  font-family: "wagoori";
}

#mainArticleE .mainSubtitle {
  margin-bottom: 310px;
  font-family: "Pretendard";
  font-weight: 500;
}

#mainArticleE .mainArticleESlide {
  position: relative;
}

#mainArticleE .slideInner {
  display: none;
}

#mainArticleE .mainArticleEPreparing {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 520px;
  min-height: 170px;
  padding: 48px 40px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: #fff;
  font-size: 3rem;
  font-family: "Pretendard";
  font-weight: 500;
  text-align: center;
  backdrop-filter: blur(2px);
}

#mainArticleE .slideFlex {
  display: flex;
  justify-content: space-between;
}

#mainArticleE .slideFlex > img {
  width: 600px;
  height: 400px;
  border-radius: 20px;
}

#mainArticleE .slideTxt {
  text-align: right;
  margin-left: 20px;
}

#mainArticleE .slideCourse {
  font-size: 10rem;
  font-family: "wagoori";
}

.slideCourseMobile {
  display: none;
}

#mainArticleE .slideTitle {
  color: #fff;
  font-size: 3rem;
  font-family: "Pretendard";
  font-weight: 500;
  margin-bottom: 20px;
}

#mainArticleE .slideTime {
  color: #fff;
  font-size: 2rem;
  font-family: "Pretendard";
  font-weight: 500;
  margin-bottom: 20px;
}

#mainArticleE .slideContent {
  color: #fff;
  font-size: 2rem;
  font-family: "Pretendard";
  font-weight: 500;
}

#mainArticleE .slideContent p {
  margin-top: 5px;
}

#mainArticleE .slideContent img {
  width: auto;
  vertical-align: unset;
  margin: 0 5px;
}

.slick-slide img {
  display: inline-block;
}

#mainArticleE .slide button {
  width: 100px;
  height: 36px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Pretendard";
  font-weight: 500;
  background: none;
  border: 2px solid #fff;
  border-radius: 18px;
  margin-top: 40px;
  padding-top: 2px;
}

/* #mainArticleF */
#mainArticleF {
  width: 1280px;
  margin: 0 auto;
  padding: 400px 0 25px 0;
  text-align: center;
  overflow: hidden;
}

.mainArticleCharacter .mainTitle {
  font-family: "wagoori";
}

.mainArticleCharacter .mainSubtitle {
  font-family: "Pretendard";
  font-weight: 500;
}

.mainArticleFItemBox {
  display: flex;
  justify-content: center;
}

.mainArticleCharacter .mainArticleFItemBox {
  width: 100%;
  max-width: 1114px;
  margin: 0 auto;
}

.mainArticleFItemBox > div {
  margin-right: 30px;
}

.mainArticleFItemBox > div:last-child {
  margin-right: 0;
}

.mainArticleFItemBox .item2 {
  margin-top: 80px;
}

.mainArticleFItemBox .item3 {
  margin-top: 160px;
}

.mainArticleFItemBox button {
  width: 120px;
  height: 36px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  background: none;
  border: 2px solid #fff;
  border-radius: 18px;
  margin-bottom: 30px;
  cursor: auto;
  padding-top: 2px;
}

.mainArticleFItemBox .itemImg {
  position: relative;
  cursor: pointer;
}

.mainArticleFItemBox .itemImg img {
  width: 100%;
  max-width: 542px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 25px;
}

.mainArticleFItemBox .mainArticleFItemEmpty {
  visibility: hidden;
  pointer-events: none;
}

.mainArticleFItemBox .mainArticleFItemEmpty .itemImg {
  width: 542px;
  max-width: 542px;
  aspect-ratio: 1 / 1;
}

.mainArticleFItemBox .moveArrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
/* #mainArticleC */

/* 슬라이드 화살표--------------------------------------------------------------------------------------- */
.slideInner {
  position: relative;
}
.slideInner .arr {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  transition: all 0.5s;
  cursor: pointer;
  background: none;
  border: none;
}
.slideInner .arr:hover {
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  transition: all 0.5s;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.5;
}
.slideInner .arr img {
  width: 100%;
  height: 100%;
}
.slideInner .prev {
  left: -70px;
  z-index: 99;
}
.slideInner .next {
  right: -70px;
}

/* 슬라이드 도트------------------------------------------------------------------------------------------ */
.slick-dots {
  width: 100%;
  position: absolute;
  bottom: calc(100% + 100px);
  left: 50%;
  transform: translateX(-50%);
}
.slick-dots li {
  display: inline-block;
  width: 73px;
  height: 62px;
  margin: 0 5px;
  transform: translateX(80px);
  position: relative;
}
.slick-dots li:first-child::before {
  content: "코스";
  position: absolute;
  top: 50%;
  left: -136px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}
.slick-dots li:first-child::after {
  content: "";
  width: 1px;
  height: 25px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}
.slick-dots li.slick-active {
  display: inline-block;
  width: 73px;
  height: 62px;
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  color: transparent;
}
.slick-dots li #slick-slide-control00 {
  background: url("../../images/2025/course/main_course_2025_a.png") no-repeat center;
}
.slick-dots li.slick-active #slick-slide-control00 {
  background: url("../../images/2025/course/main_course_2025_a_click.png") no-repeat center;
}
.slick-dots li #slick-slide-control01 {
  background: url("../../images/2025/course/main_course_2025_b.png") no-repeat center;
}
.slick-dots li.slick-active #slick-slide-control01 {
  background: url("../../images/2025/course/main_course_2025_b_click.png") no-repeat center;
}
.slick-dots li #slick-slide-control02 {
  background: url("../../images/2025/course/main_course_2025_c.png") no-repeat center;
}
.slick-dots li.slick-active #slick-slide-control02 {
  background: url("../../images/2025/course/main_course_2025_c_click.png") no-repeat center;
}
.slick-dots li #slick-slide-control03 {
  background: url("../../images/2025/course/main_course_2025_d.png") no-repeat center;
}
.slick-dots li.slick-active #slick-slide-control03 {
  background: url("../../images/2025/course/main_course_2025_d_click.png") no-repeat center;
}
.slick-dots li #slick-slide-control04 {
  background: url("../../images/main_course_e.svg") no-repeat center;
}
.slick-dots li.slick-active #slick-slide-control04 {
  background: url("../../images/main_course_e_click.svg") no-repeat center;
}
.slick-dots li #slick-slide-control05 {
  background: url("../../images/main_course_f.svg") no-repeat center;
}
.slick-dots li.slick-active #slick-slide-control05 {
  background: url("../../images/main_course_f_click.svg") no-repeat center;
}
.slick-dots li #slick-slide-control06 {
  background: url("../../images/main_course_g.svg") no-repeat center;
}
.slick-dots li.slick-active #slick-slide-control06 {
  background: url("../../images/main_course_g_click.svg") no-repeat center;
}
/* #mainArticleE */

/* #mainArticleF */
#mainArticleF {
  width: 1000px;
  margin: 0 auto;
  padding: 400px 0 0 0;
  text-align: center;
  overflow: hidden;
}

.mainArticleFContents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 150px;
  text-align: left;
  padding: 0 15px;
}

.mainArticleFContents .noticeItem {
  width: 460px;
  height: 140px;
  border-radius: 13px;
  padding: 20px 20px 20px 30px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.mainArticleFContents .noticeTitle {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
}

.mainArticleFContents .noticeDate {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
}

.mainArticleFContents .noticeDate {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.mainArticleFContents .noticeDate img {
  margin-bottom: 5px;
}

.mainArticleFContents .noticeItem1 {
  box-shadow: 0 0 10px 2px #ffd800;
  border: solid 5px #ffd800;
}

.mainArticleFContents .noticeItem2 {
  box-shadow: 0 0 10px 2px #ff6e00;
  border: solid 5px #ff6e00;
}

.mainArticleFContents .noticeItem3 {
  box-shadow: 0 0 10px 2px #0087c1;
  border: solid 5px #0087c1;
}

.mainArticleFContents .noticeItem4 {
  box-shadow: 0 0 10px 2px #36ad32;
  border: solid 5px #36ad32;
}

.mainArticleFContents .noticeItem5 {
  box-shadow: 0 0 10px 2px #e5004c;
  border: solid 5px #e5004c;
}

.mainArticleFContents .noticeItem6 {
  box-shadow: 0 0 10px 2px #984ea7;
  border: solid 5px #984ea7;
}

#mainArticleF button {
  width: 100px;
  height: 36px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  background: none;
  border: 2px solid #fff;
  border-radius: 18px;
  margin-top: 60px;
  padding-top: 2px;
}
/* #mainArticleF */

/* #mainArticleG */
#mainArticleG {
  width: 1080px;
  margin: 0 auto;
  padding: 400px 0 350px 0;
  text-align: center;
  overflow: hidden;
}

#mainArticleG .mainArticleGContents {
  display: flex;
  justify-content: center;
  margin-top: 150px;
}

#mainArticleG .mainArticleGContents > img {
  width: 600px;
  height: 375px;
  display: none;
}

#mainArticleG .mainArticleGTxt {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 0;
}

#mainArticleG .mainTitle {
  font-family: "wagoori";
}

#mainArticleG .mainArticleGSubtitle {
  color: #fff;
  font-size: 3rem;
  font-family: "Pretendard";
  font-weight: 500;
  margin-bottom: 30px;
}

#mainArticleG .mainArticleGBus,
#mainArticleG .mainArticleGSubway {
  color: #fff;
  font-size: 2rem;
  font-family: "Pretendard";
  font-weight: 500;
  margin-bottom: 20px;
}

#mainArticleG button {
  width: 100px;
  height: 36px;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Pretendard";
  font-weight: 500;
  background: none;
  border: 2px solid #fff;
  border-radius: 18px;
  padding-top: 2px;
}
/* #mainArticleG */

/* popup */
.popupContainer {
  max-width: 1500px;
  width: 100%;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  z-index: 999;
}

/* 팝업 이미지 1:1이 아니면 주석 제거 */
/* .popupContainer {
    max-width: 1500px;
    width: 100%;
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
} */

.popupInner {
  border-radius: 10px;
  box-shadow: 0 0 20px 0 #fff;
  background: #000;
  overflow: hidden;
  margin: 0 25px 100px 25px;
}

/* 팝업 이미지 1:1이 아니면 주석 제거 */
/* .popupInner {
    float: left;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 #fff;
    background: #000;
    overflow: hidden;
    margin: 0 25px 100px 25px;
} */

.popupImg {
  max-width: 450px;
  width: 100%;
}

/* 팝업 이미지 1:1이 아니면 주석 제거 */
/* .popupImg {
    width: 450px;
} */

.popupBtn {
  display: flex;
  justify-content: space-between;
  font-size: 1.7rem;
  color: #fff;
  padding: 17px 30px 18px 25px;
}

.popupBtn input {
  margin-right: 10px;
  width: 15px;
}

.popupBtn button {
  background: transparent;
  font-size: 1.7rem;
  color: #fff;
}

@media (max-width: 1500px) {
  .popupContainer {
    max-width: 1000px;
  }
}
@media (max-width: 1000px) {
  .popupContainer {
    max-width: 500px;
  }
  /* 팝업 이미지 1:1이 아니면 주석 제거 */
  /* .popupImg {
        width: 100%;
    } */
}
