@charset "UTF-8";
/* Download */
.section_main {
  position: relative;
  /* 메인 섹션 모션 정의*/
}
.section_main.motion_trigger .title {
  opacity: 0;
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
.section_main.motion_trigger .sub_title {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s ease-out 0.3s, -webkit-transform 0.5s ease-out 0.3s;
  transition: opacity 0.5s ease-out 0.3s, -webkit-transform 0.5s ease-out 0.3s;
  transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.3s;
  transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.3s, -webkit-transform 0.5s ease-out 0.3s;
}
.section_main.motion_trigger .btn_container,
.section_main.motion_trigger .btn_container_dn_now {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
}
.section_main.motion_trigger .btn_other_platform {
  opacity: 0;
  -webkit-transition: opacity 0.5s linear 0.7s;
  transition: opacity 0.5s linear 0.7s;
}
.section_main.motion_trigger.visible .title {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.section_main.motion_trigger.visible .sub_title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section_main.motion_trigger.visible .btn_container,
.section_main.motion_trigger.visible .btn_container_dn_now {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section_main.motion_trigger.visible .btn_other_platform {
  opacity: 1;
}
.section_main .section_inner {
  position: relative;
}
.section_main .section_inner .box_content .btn_container_dn_now {
  display: none;
  margin-top: 54px;
  max-width: 505px;
}
@media screen and (max-width: 768px) {
  .section_main .section_inner .box_content .btn_container_dn_now {
    width: 88vw;
    margin-top: 7.03125vw;
  }
}
.section_main .btn_other_platform {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 156px;
  padding: 24px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.section_main .btn_other_platform .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.section_main .btn_other_platform h3 {
  width: 416px;
}
@media screen and (max-width: 768px) {
  .section_main .btn_other_platform h3 {
    width: 96vw;
    max-width: 416px;
  }
}
.section_main .btn_other_platform .btn_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.section_main .btn_other_platform .btn_download {
  display: block;
  max-width: 262px;
}
@media screen and (max-width: 768px) {
  .section_main .btn_other_platform .btn_download {
    width: 84.888vw;
    max-width: 262px;
  }
}
.section_main.is-ios .section_inner .btn_container, .section_main.is-aos .section_inner .btn_container {
  display: block;
}
.section_main.is-mac .section_inner .btn_container_dn_now, .section_main.is-pc .section_inner .btn_container_dn_now {
  display: block;
}
.section_main.is-mac .btn_container, .section_main.is-pc .btn_container {
  display: none;
}
.section_main.is-pc .btn_other_platform {
  display: block;
}

.alert_popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.alert_popup.is_show {
  display: block;
}
.alert_popup .alert_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.alert_popup .alert_box {
  position: relative;
  width: 80%;
  max-width: 558px;
  padding: 72px 64px 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  text-align: center;
}
.alert_popup .alert_box .alert_text span {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.alert_popup .alert_box .btn_alert {
  display: block;
  margin: 40px auto 0;
  padding: 11px 70px;
  background-color: #444;
}
.alert_popup .alert_box .btn_alert span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #fff;
}
.alert_popup .alert_box .btn_alert_close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background-color: transparent;
}/*# sourceMappingURL=download.css.map */