@charset "UTF-8";

/* 2025 60주년 & 수업 사례 공모전 이벤트 반응형 pc 기준 작성*/
img {
  max-width: 100%;
}

video {
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}

video:focus {
  outline: none;
}

video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

video::-webkit-media-controls-panel {
  display: none !important;
}

/*===========================================
** breakpoint
===========================================*/
.mobile-only {
  display: none;
}

@media (max-width: 899px) {
  .mobile-only {
    display: block;
  }
}

@media (max-width: 899px) {
  .pc-only {
    display: none;
  }
}

/*=========================================== 
** 공통 mixin
===========================================*/
/*=========================================== 
** 공통 layout
===========================================*/
.thub-event_banner {
  width: 100%;
  position: relative;
  min-height: 800px;
  overflow: hidden;
}

.thub-event_banner .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  background: none;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .thub-event_banner {
    padding-top: 45.33333%;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}

@media (max-width: 899px) {
  .thub-event_banner {
    padding-top: 144%;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}

.thub-event_content {
  padding-bottom: 20px;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .thub-event_content {
    padding-bottom: 40px;
  }
}

.thub-event_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.thub-event_schedule {
  background-color: #b670ec;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.thub-event_schedule>h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .thub-event_schedule>h2 {
    font-size: 24px;
  }

  .thub-event_schedule>svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 899px) {
  .thub-event_schedule {
    height: 60px;
    gap: 8px;
    padding: 0 16px;
  }

  .thub-event_schedule>h2 {
    font-size: 15px;
  }

  .thub-event_schedule>svg {
    width: 16px;
    height: 16px;
  }
}

.thub-event_content_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
}

@media (max-width: 899px) {
  .thub-event_content_title {
    font-size: 26px;
  }

  .thub-event_content_title>svg {
    width: 18px;
  }
}

.thub-event_slider {
  padding: 120px 0;
  background-color: #fff;
  overflow: hidden;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .thub-event_slider {
    padding: 40px 0;
  }
}

@media (max-width: 899px) {
  .thub-event_slider {
    height: auto;
    padding: 20px 0;
  }
}

.thub-event_slider .event-swiper-pc .swiper-slide {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.thub-event_slider .event-swiper-pc .swiper-slide img {
  transition: opacity 0.3s ease;
  width: 100%;
  height: auto;
  display: block;
}

.thub-event_slider .event-swiper-pc .swiper-slide>.main-img {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.thub-event_slider .event-swiper-pc .swiper-slide:hover>.main-img {
  opacity: 0;
}

.thub-event_slider .event-swiper-pc .swiper-slide>.hover-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.thub-event_slider .event-swiper-pc .swiper-slide:hover>.hover-img {
  opacity: 1;
}

.d-day {
  position: absolute;
  top: 75px;
  right: calc(50% - 600px);
  width: 140px;
  height: 140px;
  will-change: transform;
  animation: floatUpDown 2s ease-in-out infinite alternate;
}

.d-day>p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #9248cb;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  /* 36px */
  transform: translate(-50%, -50%);
}

.d-day>p>span {
  display: block;
  color: #4b4b4b;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .d-day {
    top: 30px;
    right: calc(50% - 420px);
  }
}

@media (max-width: 899px) {
  .d-day {
    top: 50%;
    right: calc(50% - 175px);
    width: 74px;
    height: 74px;
    transform: none;
  }

  .d-day>p {
    font-size: 18px;
  }

  .d-day>p>span {
    font-size: 12px;
  }
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

.section_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .section_inner {
    padding: 0 32px;
  }
}

@media (max-width: 899px) {
  .section_inner {
    padding: 0 16px;
  }
}

.event-tabs {
  height: 120px;
  border-top: 2px solid #222;
  background: #222;
}

.event-tabs_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .event-tabs {
    border-top: 1px solid #222;
    height: 56px;
  }
}

.event-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  font-size: 38px;
  font-weight: 400;
  color: #909090;
  background-color: #222;
}

.event-tab>span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 36px;
  padding: 0px 20px;
  gap: 10px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.event-tab.on {
  background-color: #b670ec;
  color: #fff;
  font-weight: 700;
}

.event-tab.on>span {
  color: #b670ec;
}

@media (max-width: 899px) {
  .event-tab {
    font-size: 16px;
  }

  .event-tab>span {
    width: 44px;
    height: 16px;
    padding: 0 6px;
    font-size: 10px;
  }
}

.detail-content>li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed #ccc;
}

.detail-content>li>p:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  border-radius: 0px 25px 25px 0px;
  background: #6dded7;
  color: #17838f;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.detail-content>li>p:nth-child(2) {
  color: #222;
  font-size: 22px;
}

@media (max-width: 899px) {
  .detail-content>li {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .detail-content>li>p:nth-child(1) {
    width: 160px;
    height: 40px;
    border-radius: 20px;
    font-size: 16px;
  }

  .detail-content>li>p:nth-child(2) {
    text-align: center;
    font-size: 18px;
  }
}

.section05 {
  padding: 60px 0;
  background-color: #b670ec;
}

.section05 h2 {
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  /* 44.8px */
}

.section05 button {
  display: flex;
  height: 60px;
  margin: 0 auto;
  padding: 0px 30px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 30px;
  background: #fff;
  color: #9248cb;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  /* 33.6px */
}

@media (max-width: 899px) {
  .section05 {
    padding: 40px 0;
  }

  .section05 h2 {
    font-size: 20px;
  }

  .section05 button {
    height: 50px;
    font-size: 22px;
  }
}

.section06 {
  background-color: #121212;
  padding: 60px 0;
}

.section06>div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section06>div>ul>li:not(:first-child) {
  position: relative;
  margin-bottom: 9px;
  padding-left: 14px;
  font-size: 18px;
  color: #fff;
}

.section06>div>ul>li:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #999;
}

.section06>div>ul>li:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 899px) {
  .section06 {
    padding: 40px 0;
  }

  .section06>div>ul>li:not(:first-child) {
    padding-left: 12px;
    font-size: 15px;
  }

  .section06>div>ul>li:first-child {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .section06>div>ul>li:first-child>svg {
    width: 30px;
  }
}

/*=========================================== 
** 수업사례 공모전
===========================================*/
.page-eventDetailEleLesson .notice>li:not(.check) {
  position: relative;
  margin-bottom: 9px;
  padding-left: 18px;
  font-size: 18px;
  color: #666;
  word-break: keep-all;
}

.page-eventDetailEleLesson .notice>li:not(.check)::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f05288;
}

.page-eventDetailEleLesson .notice>li.check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 36px;
  margin-bottom: 9px;
  padding: 0px 20px;
  border-radius: 18px 18px 0px 18px;
  border: 1px solid #9248cb;
  color: #9248cb;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 899px) {
  .page-eventDetailEleLesson .notice>li:not(.check) {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .page-eventDetailEleLesson .notice>li:not(.check)::before {
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
  }

  .page-eventDetailEleLesson .notice>li.check {
    font-size: 16px;
  }
}

.page-eventDetailEleLesson .section03 {
  padding: 100px 0;
  background-color: #b670ec;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .page-eventDetailEleLesson .section03 {
    padding: 80px 0;
  }
}

@media (max-width: 899px) {
  .page-eventDetailEleLesson .section03 {
    padding: 40px 0;
  }
}

.page-eventDetailEleLesson .section04 {
  padding: 100px 0 120px;
  background-color: #9248cc;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .page-eventDetailEleLesson .section04 {
    padding: 80px 0 100px;
  }
}

@media (max-width: 899px) {
  .page-eventDetailEleLesson .section04 {
    padding: 40px 0 80px;
  }
}

.page-eventDetailEleLesson .contest-intro {
  margin-bottom: 100px;
  border-radius: 30px;
  border: 1px solid #222;
  overflow: hidden;
}

.page-eventDetailEleLesson .contest-intro table tr:not(:last-child) {
  border-bottom: 1px solid #222;
}

.page-eventDetailEleLesson .contest-intro table th {
  width: 200px;
  background-color: #642c8e;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.page-eventDetailEleLesson .contest-intro table td {
  padding: 20px 30px;
  background-color: #fff;
  font-size: 24px;
  color: #222;
}

.page-eventDetailEleLesson .contest-intro table td>span {
  color: #f05288;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.page-eventDetailEleLesson .contest-intro table td>p {
  position: relative;
  margin-bottom: 9px;
  padding-left: 18px;
  font-size: 24px;
  color: #222;
}

.page-eventDetailEleLesson .contest-intro table td>p>span {
  display: block;
  font-size: 20px;
  color: #f05288;
}

.page-eventDetailEleLesson .contest-intro table td>p::before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f05288;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .page-eventDetailEleLesson .contest-intro {
    margin-bottom: 80px;
  }

  .page-eventDetailEleLesson .contest-intro table th {
    width: 180px;
  }
}

@media (max-width: 899px) {
  .page-eventDetailEleLesson .contest-intro {
    margin-bottom: 60px;
  }

  .page-eventDetailEleLesson .contest-intro table th {
    width: 90px;
    font-size: 14px;
  }

  .page-eventDetailEleLesson .contest-intro table td {
    padding: 10px;
    font-size: 16px;
  }

  .page-eventDetailEleLesson .contest-intro table td>p {
    font-size: 16px;
  }

  .page-eventDetailEleLesson .contest-intro table td>p>span {
    font-size: 14px;
  }
}

.page-eventDetailEleLesson .contest-example {
  margin-bottom: 100px;
  text-align: center;
}

.page-eventDetailEleLesson .contest-example_list {
  margin-top: 20px;
  display: flex;
  gap: 30px;
}

.page-eventDetailEleLesson .contest-example_list>li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 480px;
  width: calc(33.33333% - 15px);
  padding: 40px 0px 32px;
  border-radius: 0px 60px 60px 60px;
  background: #fff;
}

.page-eventDetailEleLesson .contest-example_list>li>h4 {
  margin: 20px 0;
  color: #000;
  text-align: center;
  font-size: min(2vw, 24px);
  font-weight: 700;
}

.page-eventDetailEleLesson .contest-example_list>li>.notice {
  padding: 0 40px;
  text-align: left;
}

.page-eventDetailEleLesson .contest-example_list .num {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  padding: 21px 0px;
  border-radius: 0px 40px 40px 40px;
  background: #2bbdbc;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .page-eventDetailEleLesson .contest-example {
    margin-bottom: 80px;
  }
}

@media (max-width: 899px) {
  .page-eventDetailEleLesson .contest-example {
    margin-bottom: 60px;
  }

  .page-eventDetailEleLesson .contest-example_list {
    flex-direction: column;
  }

  .page-eventDetailEleLesson .contest-example_list>li {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: auto;
    min-height: 404px;
  }

  .page-eventDetailEleLesson .contest-example_list>li>img {
    width: 68px;
  }

  .page-eventDetailEleLesson .contest-example_list>li>h4 {
    font-size: 20px;
  }

  .page-eventDetailEleLesson .contest-example .num {
    width: 66px;
    height: 66px;
    padding: 16.684px 0px 17.316px 0px;
    border-radius: 0px 33px 33px 33px;
    font-size: 20px;
  }
}

.page-eventDetailEleLesson .contest-howto {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 20px;
}

.page-eventDetailEleLesson .contest-howto>div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-eventDetailEleLesson .contest-howto>div>h4 {
  margin-top: 10px;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.page-eventDetailEleLesson .contest-howto>div>p {
  font-size: 22px;
  color: #fff;
  text-align: center;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .page-eventDetailEleLesson .contest-howto {
    gap: 30px;
  }
}

@media (max-width: 899px) {
  .page-eventDetailEleLesson .contest-howto {
    flex-direction: column;
    gap: 20px;
  }

  .page-eventDetailEleLesson .contest-howto>div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-eventDetailEleLesson .contest-howto>div>h4 {
    font-size: 20px;
  }

  .page-eventDetailEleLesson .contest-howto>div>p {
    font-size: 16px;
  }

  .page-eventDetailEleLesson .contest-howto>svg {
    transform: rotate(90deg);
    height: 40px;
  }
}

.page-eventDetailEleLesson .contest-prize {
  margin-bottom: 100px;
  padding: 60px 90px;
  border-radius: 60px;
  background: #fff;
}

.page-eventDetailEleLesson .contest-prize>h4 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 40px;
  color: #121212;
}

.page-eventDetailEleLesson .contest-prize>h4>span {
  color: #f05288;
  font-weight: 700;
}

.page-eventDetailEleLesson .contest-prize-info {
  position: relative;
}

.page-eventDetailEleLesson .contest-prize-info>h5 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 200px;
  height: 60px;
  margin: 0 auto 30px;
  border-radius: 30px;
  background-color: #121212;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  z-index: 1;
}

.page-eventDetailEleLesson .contest-prize-info .line {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px dashed #121212;
}

.page-eventDetailEleLesson .contest-prize-detail>ul {
  display: flex;
}

.page-eventDetailEleLesson .contest-prize-detail>ul.mobile-only {
  display: none;
}

.page-eventDetailEleLesson .contest-prize-detail>ul>li {
  text-align: center;
}

.page-eventDetailEleLesson .contest-prize-detail>p {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  color: #666;
}

.page-eventDetailEleLesson .contest-prize-detail2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

@media (max-width: 899px) {
  .page-eventDetailEleLesson .contest-prize {
    margin-bottom: 60px;
    padding: 20px 14px;
    border-radius: 20px;
  }

  .page-eventDetailEleLesson .contest-prize>h4 {
    margin-bottom: 19px;
    font-size: 20px;
  }

  .page-eventDetailEleLesson .contest-prize-info>h5 {
    gap: 4px;
    width: 120px;
    height: 44px;
    margin: 0 auto 20px;
    border-radius: 22px;
    font-size: 18px;
    font-weight: 700;
  }

  .page-eventDetailEleLesson .contest-prize-info>svg {
    width: 20px;
  }

  .page-eventDetailEleLesson .contest-prize-detail {
    margin-bottom: 40px;
  }

  .page-eventDetailEleLesson .contest-prize-detail>ul {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .page-eventDetailEleLesson .contest-prize-detail>ul.pc-only {
    display: none;
  }

  .page-eventDetailEleLesson .contest-prize-detail>ul.mobile-only {
    display: flex;
  }

  .page-eventDetailEleLesson .contest-prize-detail>ul>li {
    width: 50%;
  }

  .page-eventDetailEleLesson .contest-prize-detail>p {
    justify-content: center;
    text-align: center;
  }

  .page-eventDetailEleLesson .contest-prize-detail2 {
    flex-direction: column;
    gap: 47px;
  }
}

.page-eventDetailEleLesson .contest-criteria>h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  border-radius: 60px 60px 0px 0px;
  background: #2bbdbc;
  text-align: center;
}

.page-eventDetailEleLesson .contest-criteria_detail {
  padding: 40px 90px;
  background-color: #fff;
}

.page-eventDetailEleLesson .contest-criteria_notice {
  margin-bottom: 40px;
  padding: 40px 90px;
  border-radius: 0px 0px 60px 60px;
  background: #f4f4f4;
}

@media (max-width: 899px) {
  .page-eventDetailEleLesson .contest-criteria>h4 {
    height: 68px;
    font-size: 16px;
    border-radius: 20px 20px 0px 0px;
  }

  .page-eventDetailEleLesson .contest-criteria_detail {
    padding: 20px 14px;
  }

  .page-eventDetailEleLesson .contest-criteria_notice {
    padding: 20px 14px;
    border-radius: 0px 0px 20px 20px;
  }
}

.page-eventDetailEleLesson .thub-event_btn {
  text-align: center;
}

.page-eventDetailEleLesson .thub-event_btn>a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 400px;
  margin: 0 auto 40px;
  padding: 35px 0px;
  color: #773ba6;
  font-size: 36px;
  font-weight: 700;
  line-height: 140%;
  /* 50.4px */
  letter-spacing: -1px;
  border-radius: 60px;
  background: linear-gradient(180deg, #93f5ef 0%, #6dded7 10%, #6db3de 100%);
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2);
}

.page-eventDetailEleLesson .thub-event_btn>.desc {
  margin-bottom: 6px;
  color: #fff;
  text-align: center;
  font-size: 20px;
}

.page-eventDetailEleLesson .thub-event_btn>.email {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.page-eventDetailEleLesson .thub-event_btn>.email>span:last-child {
  color: #38fef1;
}

@media (max-width: 899px) {
  .page-eventDetailEleLesson .thub-event_btn>a {
    width: 320px;
    margin: 0 auto 20px;
    padding: 28px 0px;
    font-size: 28px;
    letter-spacing: -0.8px;
    border-radius: 48px;
    box-shadow: 0px 6.4px 6.4px 0px rgba(0, 0, 0, 0.2);
  }

  .page-eventDetailEleLesson .thub-event_btn>a>svg {
    width: 30px;
  }

  .page-eventDetailEleLesson .thub-event_btn>.desc {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .page-eventDetailEleLesson .thub-event_btn>.email {
    gap: 4px;
    color: #fff;
    font-size: 18px;
  }

  .page-eventDetailEleLesson .thub-event_btn>.email>svg {
    width: 18px;
  }
}

/*=========================================== 
** 60주년 이벤트
===========================================*/
.page-event60thComment .event-tab.on {
  background-color: #ef72d4;
  color: #fff;
  font-weight: 700;
}

.page-event60thComment .event-tab.on>span {
  color: #ef72d4;
}

.page-event60thComment .section03 {
  padding: 120px 0 100px;
  background-color: #ef72d4;
  text-align: center;
}

.page-event60thComment .section03 .thub-event_gift {
  margin-bottom: 36px;
}

.page-event60thComment .section03 .thub-event_gift>h2 {
  margin-bottom: 5px;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  line-height: 148%;
  /* 59.2px */
}

.page-event60thComment .section03 .thub-event_gift>h2>span {
  color: #fff0bf;
  font-size: 64px;
}

.page-event60thComment .section03 .thub-event_gift .gift-detail {
  position: relative;
  top: -100px;
  padding: 76px 90px;
  border-radius: 60px;
  background: #fff;
}

.page-event60thComment .section03 .thub-event_gift .gift-detail .coffee-img {
  position: absolute;
  top: 35px;
  right: 10px;
}

.page-event60thComment .section03 .textarea-wrap {
  margin-top: 20px;
  padding: 60px 90px;
  background-color: #fff;
  border-radius: 60px;
}

.page-event60thComment .section03 .textarea-wrap .textarea-title>h4 {
  margin-bottom: 30px;
  color: #121212;
  text-align: center;
  font-size: 40px;
}

.page-event60thComment .section03 .textarea-wrap .textarea-title>h4>strong {
  color: #f05288;
}

.page-event60thComment .section03 .textarea-wrap .textarea-title>.ex-img {
  display: block;
  margin: 0 auto 20px;
}

.page-event60thComment .section03 .textarea-wrap .textarea-title>.ex-img2 {
  margin: 0 auto 60px;
}

.page-event60thComment .section03 .textarea-wrap .textarea-box {
  display: flex;
  padding: 40px 30px 0;
  border-top: 1px dashed #121212;
}

.page-event60thComment .section03 .textarea-wrap .textarea-box>div {
  flex: 1;
}

.page-event60thComment .section03 .textarea-wrap .textarea-box>div textarea {
  width: 100%;
  height: 160px;
  padding: 20px 30px;
  border: none;
  border-radius: 30px 0px 0px 30px;
  background: #f2f2f2;
  color: #121212;
  font-size: 18px;
  font-weight: 400;
  resize: none;
}

.page-event60thComment .section03 .textarea-wrap .textarea-box>div textarea::-moz-placeholder {
  color: #121212;
  font-size: 18px;
}

.page-event60thComment .section03 .textarea-wrap .textarea-box>div textarea::placeholder {
  color: #121212;
  font-size: 18px;
}

.page-event60thComment .section03 .textarea-wrap .textarea-box .comment-count {
  margin-top: 4px;
  text-align: right;
  color: #666;
  line-height: 140%;
}

.page-event60thComment .section03 .textarea-wrap .textarea-box>button {
  width: 180px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 0px 30px 30px 0px;
  background: #121212;
  color: #f2f2f2;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 899px) {
  .page-event60thComment .section03 {
    padding: 40px 0 60px;
  }

  .page-event60thComment .section03 .thub-event_gift {
    margin-bottom: 60px;
  }

  .page-event60thComment .section03 .thub-event_gift>h2 {
    margin-bottom: 32px;
    color: #fff;
    text-align: center;
    font-size: 22px;
  }

  .page-event60thComment .section03 .thub-event_gift>h2>span {
    font-size: 32px;
  }

  .page-event60thComment .section03 .thub-event_gift .gift-detail {
    position: relative;
    top: -25px;
    padding: 20px 20px 232px;
    border-radius: 20px;
    background: #fff;
  }

  .page-event60thComment .section03 .thub-event_gift .gift-detail .coffee-img {
    position: absolute;
    top: initial;
    left: 50%;
    right: 50%;
    transform: translate(-55%, 0);
    max-width: 350px;
  }

  .page-event60thComment .section03 .textarea-wrap {
    margin-top: 20px;
    padding: 0;
    background-color: transparent;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-title {
    margin-bottom: 20px;
    padding: 20px 40px 30px;
    border-radius: 20px;
    background-color: #fff;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-title>h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-title>.ex-img {
    display: block;
    width: 174px;
    margin: 0 auto 20px;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-title>.ex-img2 {
    margin: 0 auto;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-box {
    border-top: none;
    flex-direction: column;
    padding: 0;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-box>div textarea {
    padding: 10px;
    border-radius: 0;
    font-size: 16px;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-box>div textarea::-moz-placeholder {
    font-size: 16px;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-box>div textarea::placeholder {
    font-size: 16px;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-box .comment-count {
    font-size: 14px;
    color: #fff;
    text-align: right;
  }

  .page-event60thComment .section03 .textarea-wrap .textarea-box>button {
    width: 100%;
    height: auto;
    padding: 7px 0;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
  }
}

.page-event60thComment .section04 {
  padding: 89px 0 100px;
  background-color: #e64cbf;
}

.eventbox6 {
  position: relative;
  background-image: url("/assets/front/2025img/event/contest60th/garland_left.png"), url("/assets/front/2025img/event/contest60th/garland_right.png");
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
}

.eventbox6 .innerContent {
  width: 100%;
  max-width: 1080px;
  position: relative;
  margin: 0 auto;
}

.eventbox6 .innerContent>p {
  padding-left: 70px;
  font-size: 20px;
  color: #fff;
}

.eventbox6 .innerContent>p>span {
  color: #2bbdbc;
  font-weight: 700;
}

.eventbox6 .innerContent #msgArea {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.eventbox6 .innerContent #msgArea>a {
  flex-shrink: 0;
}

.eventbox6 .innerContent .message-list {
  display: flex;
  gap: 20px;
}

.eventbox6 .innerContent .message {
  width: calc(33.33333% - 10px);
  height: 344px;
  flex-shrink: 1;
  background: #fff;
}

.eventbox6 .innerContent .message.on {
  display: block;
}

.eventbox6 .innerContent .message.invisible {
  visibility: hidden;
}

.eventbox6 .innerContent .message>div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px 20px 30px;
  border-bottom: 1px dashed #ccc;
}

.eventbox6 .innerContent .message>.m_type {
  width: 300px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

.eventbox6 .innerContent .message>.m_type>img {
  width: 44px;
  height: 44px;
  margin: 0;
  top: 0;
}

.eventbox6 .innerContent .message>.m_type>span {
  color: #2054b8;
  font-family: "Noto Sans KR";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.5px;
}

.eventbox6 .innerContent .message>div:nth-child(2) {
  display: block;
  overflow-y: auto;
  height: 260px;
  width: 100%;
  padding: 18px 30px;
  word-break: keep-all;
  word-wrap: break-word;
}

.eventbox6 .innerContent .message div>div {
  display: flex;
  gap: 5px;
}

.eventbox6 .innerContent .message div>div span:nth-child(1) {
  color: #515151;
}

.eventbox6 .innerContent .message div>div .seperate {
  width: 1px;
  height: 12px;
  flex-shrink: 0;
  background: #ddd;
  padding: 0;
  margin: auto 0;
}

.eventbox6 .innerContent .message div>div span:nth-child(3) {
  color: #999;
}

.eventbox6 .innerContent .message div img {
  width: 32px;
  height: 32px;
}

.eventbox6 .innerContent .message div p {
  text-align: left;
  color: #515151;
}

@media (min-width: 900px) and (max-width: 1280px) {
  .eventbox6 .innerContent .message {
    width: calc(50% - 10px);
  }
}

@media (max-width: 899px) {
  .eventbox6 .innerContent .message {
    width: 100%;
  }
}

.eventbox6 .innerContent div.off {
  display: none !important;
}

@media (max-width: 899px) {
  .eventbox6 {
    background-image: none;
  }

  .eventbox6 .innerContent>p {
    padding-left: 0;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .eventbox6 .innerContent>#msgArea {
    gap: 0;
    margin-top: 7px;
  }
}

@media (max-width: 1024px) {

  #arrowLeft,
  #arrowRight {
    display: none;
  }
}

.new_paging_wrap ul>li.on {
  border: 1px solid #2bbdbc;
  background: #2bbdbc;
}

.new_paging_wrap ul>li.on>a {
  background: #2bbdbc;
}

@media (max-width: 1024px) {
  .new_paging_wrap {
    display: none;
  }
}

.form_board {
  margin: 10px 0 30px;
  border-top: 2px solid #000;
  /*
    세부 내용
  */
}

.form_board .desc {
  margin-top: 10px;
  color: #666;
}

.form_board>h3 {
  padding: 16px 30px;
  align-items: center;
  border-bottom: 1px solid #ddd;
  background: #f5f5f5;
}

.form_board>h3>span {
  color: #da120d;
}

.form_board>ul {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #ddd;
}

.form_board>ul>li {
  color: #020d12;
}

.form_board>ul>li:first-child {
  margin-right: 10px;
}

.form_board>ul>li:nth-child(2) {
  width: 100%;
}

.form_board>ul>li:nth-child(2) .description {
  color: #da120d;
  font-size: 14px;
  margin-bottom: 8px;
}

.form_board>ul>li:nth-child(2) span {
  color: #121212;
}

.form_board>ul>li:nth-child(2)>div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form_board>ul>li.category {
  flex-basis: 120px;
  flex-shrink: 0;
}

.form_board>ul>li.category>span {
  color: #da120d;
}

.form_board>ul>li.category>p {
  color: #777;
}

.form_board>ul>li.category_file>div {
  margin-bottom: 8px;
}

.form_board>ul>li.category_file>p {
  color: #777;
}

.form_board .category_tel>div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form_board .category_tel>div:nth-child(1) {
  margin-bottom: 9px;
}

.form_board .category_tel>div>p {
  color: #da120d;
  font-size: 14px;
  line-height: 140%;
  margin-right: 40px;
}

.form_board .category_tel>div>input,
.form_board .category_tel>div>select {
  width: 120px;
  border-radius: 4px;
}

.form_board .category_select {
  display: flex;
  gap: 8px;
}

.form_board .base_select_wrap .select_menu {
  margin-left: 0;
}

.form_board .radio_wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}

.form_board .category_school>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form_board .inner_form_board_con .category_file p {
  margin-top: 2px;
  color: #999;
  font-size: 14px;
  line-height: 140%;
}

.form_board .category_search_keyword>p {
  margin-top: 8px;
  color: #999;
  font-size: 14px;
  line-height: 140%;
}

.form_board .category_search_keyword textarea {
  min-height: 100px;
}

.form_board>ul.category_teacher {
  display: block;
}

.form_board>ul.category_teacher>li {
  display: flex;
  width: 100%;
  gap: 30px;
  justify-content: space-between;
}

.form_board>ul.category_teacher>li>ul {
  width: calc(50% - 30px);
  display: flex;
  align-items: center;
}

.form_board>ul.category_teacher>li>ul>li:nth-child(2) {
  width: 100%;
}

.form_board .category_detail>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form_board .category_detail>div>p:nth-child(1) {
  color: #ccc;
  font-size: 15px;
}

.form_board .category_detail>div>p:nth-child(2) {
  color: #777;
  font-size: 15px;
}

.form_board .category_detail>p {
  text-align: right;
  color: #777;
  font-size: 15px;
}

.form_board #attachment-files {
  width: 100%;
}

.form_board .inner_form_board {
  padding: 0;
}

.form_board .inner_form_board>li:nth-child(1) {
  padding-left: 52px;
}

.form_board .inner_form_board>li:nth-child(2) {
  border-left: 1px solid #ddd;
}

.form_board .inner_form_board .type-category-box {
  padding: 26px 30px 28px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #ddd;
}

.form_board .inner_form_board_con {
  border-top: none;
}

.form_board .inner_form_board_con>ul {
  padding: 25px 30px 28px;
}

.form_board .inner_form_board_con>ul:last-child {
  border-bottom: none;
}

.form_board .inner_form_board_con .category {
  font-size: 16px;
}

@media (max-width: 899px) {
  .form_board {
    /*
      세부 내용
    */
  }

  .form_board .desc {
    margin-top: 10px;
    color: #666;
  }

  .form_board>ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0px;
  }

  .form_board>ul>li:first-child {
    margin-right: 0px;
  }

  .form_board>ul>li:nth-child(2) {
    padding: 16px 10px 0;
  }

  .form_board>ul>li:nth-child(2)>div {
    gap: 0;
  }

  .form_board>ul>li:nth-child(2)>div>.base_checkbox {
    width: 50%;
    margin-bottom: 8px;
  }

  .form_board>ul>li.category {
    flex-basis: auto;
    flex-shrink: 0;
  }

  .form_board>ul>li.category>span {
    font-size: 14px;
  }

  .form_board>ul>li.category_file>p {
    font-size: 14px;
  }

  .form_board .use-service>div {
    display: block;
  }

  .form_board .category_tel>div {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .form_board .category_tel>div:nth-child(1) {
    margin-bottom: 9px;
  }

  .form_board .category_tel>div>p {
    color: #da120d;
    font-size: 14px;
    line-height: 140%;
    margin-right: 40px;
  }

  .form_board .category_tel>div>input,
  .form_board .category_tel>div>select {
    width: 120px;
    border-radius: 4px;
  }

  .form_board .category_select {
    display: flex;
    gap: 8px;
  }

  .form_board .base_select_wrap .select_menu {
    margin-left: 0;
  }

  .form_board .radio_wrap {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .form_board .category_school>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .form_board .inner_form_board_con .category_file p {
    margin-top: 2px;
    color: #999;
    font-size: 14px;
    line-height: 140%;
  }

  .form_board .category_search_keyword>p {
    margin-top: 8px;
    color: #999;
    font-size: 14px;
    line-height: 140%;
  }

  .form_board .category_search_keyword textarea {
    min-height: 100px;
  }

  .form_board>ul.category_teacher {
    display: block;
  }

  .form_board>ul.category_teacher>li {
    display: flex;
    width: 100%;
    gap: 30px;
    justify-content: space-between;
  }

  .form_board>ul.category_teacher>li>ul {
    width: calc(50% - 30px);
    display: flex;
    align-items: center;
  }

  .form_board>ul.category_teacher>li>ul>li:nth-child(2) {
    width: 100%;
  }

  .form_board .category_detail>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .form_board .category_detail>div>p:nth-child(1) {
    color: #ccc;
    font-size: 15px;
  }

  .form_board .category_detail>div>p:nth-child(2) {
    color: #777;
    font-size: 15px;
  }

  .form_board #attachment-files {
    width: 100%;
  }

  .form_board .inner_form_board {
    padding: 0;
  }

  .form_board .inner_form_board>li:nth-child(1) {
    padding-left: 52px;
  }

  .form_board .inner_form_board>li:nth-child(2) {
    border-left: 1px solid #ddd;
  }

  .form_board .inner_form_board .type-category-box {
    padding: 26px 30px 28px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #ddd;
  }

  .form_board .inner_form_board_con {
    border-top: none;
  }

  .form_board .inner_form_board_con>ul {
    padding: 25px 30px 28px;
  }

  .form_board .inner_form_board_con>ul:last-child {
    border-bottom: none;
  }

  .form_board .inner_form_board_con .category {
    font-size: 16px;
  }
}

.category_data_attachment>div {
  position: relative;
}

.category_data_attachment .base_input {
  width: 100%;
}

.category_data_attachment .del {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -11px;
  right: 10px;
}

.category_data_attachment .del img {
  width: 22px;
  height: 22px;
}

.attachment-file-data {
  margin-top: 8px;
}

.attachment-file-data>a {
  font-size: 14px;
}

.attachment-file-data>a>img {
  width: 20px;
  height: 20px;
}

.epledge_box>h4 {
  border-radius: 8px;
  background: #f5f5f5;
  padding: 16px 30px;
}

.epledge_box>.epledge_box_con {
  margin: 20px auto 10px;
  padding: 10px 10px 20px 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
}

.epledge_box>.epledge_box_con>p {
  color: #666;
}

.epledge_box>.base_radio {
  justify-content: flex-end;
  margin-right: 30px;
}

/**/
/* input, textarea */
select,
textarea,
input[type=text] {
  display: block;
  width: 100%;
  border: 1px solid #ddd;
  font-family: Noto Sans KR;
  font-size: 16px;
  line-height: 150%;
  padding: 9px 10px;
}

input {
  border-radius: 4px;
}

textarea {
  width: 100%;
  height: 281px;
  resize: none;
  color: #121212;
}

select:disabled,
textarea:disabled,
iuput:disabled {
  border: 1px solid #ccc;
  background-color: #ebebeb;
  color: #b3b3b3;
}

.base_input {
  display: block;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #121212;
  font-size: 16px;
  padding: 9px 10px;
}

input:focus {
  color: #121212;
  font-size: 16px;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
  font-size: 16px;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
  font-size: 16px;
}

.base_input_disabled {
  border: 1px solid #ccc;
  background-color: #ebebeb;
  color: #b3b3b3;
}

/* input[checkbox] */
.base_checkbox {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
}

.base_checkbox input[type=checkbox] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-right: 8px;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

.base_checkbox input[type=checkbox]+label {
  display: inline-flex;
  align-items: center;
  color: #666;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  /* 137.5% */
  cursor: pointer;
}

.base_checkbox input[type=checkbox]:checked {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.6186 0.390524C14.1271 0.911223 14.1271 1.75544 13.6186 2.27614L6.45577 9.60948C5.94718 10.1302 5.12259 10.1302 4.614 9.60948L0.381442 5.27614C-0.127147 4.75544 -0.127147 3.91122 0.381442 3.39052C0.890032 2.86983 1.71462 2.86983 2.22321 3.39052L5.53488 6.78105L11.7768 0.390524C12.2854 -0.130175 13.11 -0.130175 13.6186 0.390524Z' fill='white'/%3E%3C/svg%3E") #386fff no-repeat 50% 50%;
  background-size: 14px 10px;
  border: 1px solid #386fff;
}

/* input[radio] */
.base_radio {
  display: flex;
  align-items: center;
}

.base_radio input[type=radio] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ddd;
  margin-right: 8px;
}

.base_radio input[type=radio]+label {
  display: inline-flex;
  align-items: center;
  color: #666;
  font-size: 16px;
  line-height: 22px;
  /* 137.5% */
  cursor: pointer;
}

.base_radio input[type=radio]:checked {
  position: relative;
  border: 1px solid #386fff;
}

.base_radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  transform: translateZ(50%, 50%);
  background-color: #386fff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/*input[file]*/
.filebox input[type=file] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.filebox {
  width: 100%;
  display: flex;
  align-items: center;
}

.filebox .file_upload {
  display: inline-block;
  height: 40px;
  padding: 0 10px;
  vertical-align: middle;
  border: 1px solid #dddddd;
  width: 100%;
  color: #ccc;
  margin-right: 8px;
}

.filebox label {
  font-weight: 400;
  flex-shrink: 0;
}

.dark_btn {
  display: block;
  padding: 6px 23px 8px 23px;
  color: #fff;
  background-color: #333;
  border-radius: 8px;
  cursor: pointer;
}

/*# sourceMappingURL=event60th.css.map */