:root {
  --project-main-color: #8324FF;
  --project-main-color-gra: linear-gradient(rgba(131, 36, 255, 0.95), rgba(84, 33, 155, 0.95));
  --project-button-color: #111;
  --text-main-color: #000;
  --text-acc-color: #24EEF6;
}

/* scroll bar */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(225, 225, 225, 0.6);
  border-radius: 20px;
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body,
button,
input,
select,
table,
textarea,
pre {
  color: #fff;
}

.mbr,
.tbr {
  display: none;
}

/* index - txt용*/
.contents {
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.inner {
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
}

.header.top_z-index {
  z-index: 999;
}

.landing-langcode {
  margin-bottom: 0;
  margin-right: 10px;
}

.landing-langcode::after {
  filter: invert();
}

/* gnb */

.gnb_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.gnb_list .gnb_item {
  margin-top: 5px;
  width: 49%;
}

.gnb_list .gnb_item button {
  display: block;
  width: 100%;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 10px;
  letter-spacing: -0.025em;
  transition: all .3s;
  line-height: 45px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.gnb_list .gnb_item button:hover,
.gnb_list .gnb_item.active button {
  background: #fff;
  color: var(--project-main-color);
}


/* util */
.util {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.util .util_list {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.util_item.guide {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.util_item.guide button {
  background: url('../../static/images/ico/ic-info_w.svg') no-repeat center center;
  background-size: 100%;
  width: 30px;
  height: 30px;
}

.util_item.nextScene button {
  background: url('../../static/images/ico/ico-player-guide-startScene.png') no-repeat center center;
  background-size: 100%;
  width: 30px;
  height: 30px;
}

.tour_btn_sound {
  width: 24px;
  height: 24px;
  background-image: url(../../static/images/ico/ico_sound_off.svg);
  background-repeat: no-repeat;
}

.tour_btn_sound.is_unmute {
  background-image: url(../../static/images/ico/ico_sound_on.svg);
}

/* event_banner */
.event_banner {
  position: fixed;
  z-index: 200;
  right: 10px;
  bottom: 10px;
  width: 256px;
}

.event_banner .text {
  position: absolute;
  left: 36%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: #fff;
  font-size: 13px;
}


/* modal active */

.vr-player {
  background-color: #000;
}

.guide_modal_btn {
  position: absolute;
  bottom: 10px;
  right: 16px;
  width: 20px;
  height: 20px;
  background: none;
  cursor: pointer;
  z-index: 999;
}

.info_icon {
  display: block;
  background: url('../../static/images/ico/info-circle.svg') no-repeat center center;
  background-size: 60%;
  width: 80px;
  height: 80px;
  background-color: #E7E7E7;
  border-radius: 100%;
}

/* modal setting */
.modal_area {
  display: none;
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal_area.open {
  display: block;
}

/* modal common css */
.modal_box {
  position: relative;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  transform: translate3d(-50%, -50%, 0);
}

.modal_box .info_icon_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.modal_scroll_box {
  overflow: auto;
}

.modal_scroll_box .desc>p+p {
  margin-top: 10px;
}

.tip_box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  background-color: #f2f2f2;
}

.tip_title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tip_title i {
  display: inline-block;
  background: url('../../static/images/ico/ic-info_b.svg') no-repeat center center;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
}

.tip_title span {
  color: var(--project-main-color);
  margin-left: 4px;
  font-weight: 700;
}

.tip_desc {
  padding-left: 12px;
  text-align: left;
  word-break: keep-all;
}

.tip_box .tip_desc b {
  text-decoration: underline;
}

.modal_indicator {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.modal_indicator span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #ccc;
  opacity: 1;
}

.modal_indicator span+span {
  margin-left: 8px;
}

.modal_indicator span.on {
  opacity: 1;
  background-color: var(--project-main-color);
}

.guide_icon_box .guide_icon {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  word-break: keep-all;
}

.guide_icon_box .guide_icon.mob {
  display: none;
}

.guide_icon_box .guide_icon .icon_box {
  flex: 1;
  font-size: 15px;
}

.guide_icon_box .guide_icon .icon_box .icon_img {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 115px;
}

.guide_icon_box .guide_icon .icon_box .icon_img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* modal check box */
.today_chk_box .inp_chk_wrap {
  position: absolute;
  right: 0;
  left: 0;
  top: 102%;
  width: 100%;
  text-align: right;
}

.today_chk_box .inp_chk+label {
  display: inline-block;
  outline: 0;
  margin-right: 5px;
  cursor: pointer;
  color: #fff;
}

.today_chk_box .inp_chk+label {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.today_chk_box .inp_chk+label span {
  vertical-align: middle;
}

.today_chk_box .inp_chk+label:before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid #cccccc;
  border-radius: 100%;
  vertical-align: middle;
}

.today_chk_box .inp_chk:checked+label:before {
  background: url(../../static/images/ico/ico-modal-chk.png) no-repeat center / 60% auto var(--project-main-color);
}

/* // end modal common css */


/*  custom - enter_modal css */

.enter_modal {
  max-width: 420px;
  padding: 24px;
  background-color: #fff;
  color: var(--text-main-color);
}

.enter_modal .modal_contents {
  width: 100%;
  height: 100%;
}

.enter_modal .modal_item {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
}

.enter_modal .modal_item.is_active {
  display: block;
}

.enter_modal .btn_modal_close {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  z-index: 100;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: transparent url('../assets/images/ico/ico-btn-modal-close.svg') no-repeat;
  background-size: cover;
}

.enter_modal .modal_btn_box {
  text-align: center;
  margin-top: 24px;
}

.enter_modal .modal_btn_box .btn {
  width: 100%;
  height: 60px;
  border-radius: 4px 30px;
  background-color: var(--project-button-color);
  line-height: 60px;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.enter_modal .logo_box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  padding-bottom: 0;
}

.enter_modal .logo_box {
  height: 120px;
}

.enter_modal .logo_box img {
  height: 100%;
}

.enter_modal .logo_box .txt {
  font-size: 26px;
}

.enter_modal .title {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.enter_modal .desc {
  line-height: 1.5;
  word-break: keep-all;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}


/* // end enter modal css */

.event_modal {
  max-width: 400px;
}

.event_modal .modal_btn_box .btn {
  position: absolute;
  right: 0;
  top: 0;
  background: url(../../static/images/ico/ico-btn-modal-close.svg) no-repeat center / 120% auto;
  width: 15%;
  height: 15%;
  z-index: 1;
}

.event_modal .step1 .modal_item_inner {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.event_modal .step1 {
  height: 0;
  padding-bottom: 100%;
  background: var(--project-main-color);
  border-radius: 30px;
}

.event_modal .step1 .top_logo {
  margin-bottom: 8%;
  width: 45%;
}


.event_modal .step1 .text_box {
  font-size: 54px;
}

.event_modal .step1 .text_box p:before,
.event_modal .step1 .text_box p:after {
  display: inline-block;
  color: #D45CE2
}

.event_modal .step1 .text_box p:before {
  margin-right: 0.5vw;
}

.event_modal .step1 .text_box p:after {
  margin-left: 0.5vw;
}

.event_modal .step1 .text_box p:nth-child(1):before {
  content: "<";
}

.event_modal .step1 .text_box p:nth-child(1):after {
  content: ";>";
}

.event_modal .step1 .text_box p:nth-child(2):before {
  content: "[";
}

.event_modal .step1 .text_box p:nth-child(2):after {
  content: "]";
}

.event_modal .step1 .text_box p:nth-child(3) {
  font-weight: 600;
}

.event_modal .step1 .text_box p:nth-child(3):before,
.event_modal .step1 .text_box p:nth-child(3):after {
  content: "!";
  color: #24EEF6;
}


/* form.html */

.container.event_form {
  min-height: 100%;
  background: var(--project-main-color);
}

.event_form h2 {
  font-size: 30px;
  text-align: center;
}

.event_form .contents {
  padding: 30px 20px;
  max-width: 500px;
}

.event_form .btm_logo {
  margin: 0 auto;
  width: 30%;
}

.event_form .apply_success {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.event_form .apply_success p {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.form_wrap {
  padding: 30px 0 50px;
}


.form_box input,
.form_box select {
  width: 100%;
  height: 100%;
  text-align: center;
  outline: 0;
  color: #000;
  background-color: transparent;
}

.form_box select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  text-align: center;
  text-align-last: center;
  color: #fff;
}

.form_box select option {
  color: #000;
}


.form_box .list_form .item_form {
  margin-bottom: 20px;
}

.form_box .list_form .item_form .item_inner {
  overflow: hidden;
  height: 55px;
  border-radius: 8px;
  line-height: 55px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
}

.form_box .list_form .item_input .item_inner {
  background: #fff;
}

.form_box .list_form .item_select .item_inner {
  background: #fd4141;
}

.form_box .list_form .item_select .item_inner:after {
  content: "";
  position: absolute;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../../static/images/ico/ico-arrow-select.png) no-repeat center / 100% auto;
}

.form_box .desc_box {
  margin: 30px 0;
  word-break: keep-all;
  font-size: 14px;
}

.form_box .desc_box .list_info {
  margin-bottom: 15px;
  line-height: 1.7;
}

.form_box .desc_box .list_desc {
  padding-left: 10px;
}

.form_box .desc_box .list_desc li {
  list-style-type: "-";
  line-height: 1.4;
}

.form_box .desc_box .list_desc li p {
  margin-left: 5px;
}

.event_form .btn_box .btn {
  background: #000;
  color: #fff;
  height: 60px;
  width: 100%;
  line-height: 60px;
  border-radius: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}



/* pc gnb */
@media screen and (min-width: 1024px) {

  .gnb_wrap .gnb_btn.mobile_btn {
    display: none;
  }

  .gnb_wrap .gnb_btn.pc_btn,
  .gnb_wrap .gnb_box {
    left: 50%;
    transform: translateX(-50%);
    background: var(--project-main-color-gra);
    transition: all .1s;
  }

  .gnb_wrap .gnb_btn.pc_btn {
    position: fixed;
    bottom: 0;
    z-index: 1;
    border-radius: 15px 15px 0 0;
  }

  .gnb_wrap .gnb_btn.pc_btn .btn {
    width: 210px;
    height: 55px;
    line-height: 55px;
  }

  .gnb_wrap .gnb_box {
    position: fixed;
    bottom: 0;
    opacity: 0;
    width: 350px;
    padding: 18px 20px;
    text-align: center;
    border-radius: 15px 18px;
    font-weight: 300;
    transform: translate(-50%, 100%);
  }

  /* active */
  .gnb_wrap.active .gnb_box {
    transform: translate(-50%, 0);
    bottom: 70px;
    opacity: 1;
  }

  .gnb_wrap.active .gnb_btn {
    background: #fff;
  }

  .gnb_wrap.active .gnb_btn .btn {
    color: var(--project-main-color);
  }

}

@media screen and (max-width: 1023px) {
  .pbr {
    display: none;
  }

  .tbr {
    display: block;
  }

  .contents {
    max-width: 100%;
    padding: 0 20px;
  }

  .inner {
    max-width: none;
  }


  /* .vr-player */
  .vr-player {
    padding-top: 50px;
  }

  /* header */
  .header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 10px;
    height: 50px;
    background: #7a22ef;
  }

  .gnb_wrap .gnb_btn.pc_btn {
    display: none;
  }

  .gnb_wrap .gnb_btn.mobile_btn {
    position: absolute;
    left: 10px;
    top: 50%;
    bottom: initial;
    transform: translateY(-50%);
  }

  .gnb_wrap .gnb_btn.mobile_btn .btn {
    width: 50px;
    height: 50px;
    line-height: 1;
    background: url(../../static/images/ico/ico_menu-w.png) no-repeat center / 50% auto;
    color: transparent;
  }

  .gnb_wrap .gnb_box {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 10px 10px 20px;
    width: 100%;
    background: var(--project-main-color-gra);
    border-radius: 0;
  }


  .util .util_list {
    justify-content: space-between;
  }

  .change_lang_btn span {
    width: 14px;
    height: 14px;
    font-size: 12px;
    line-height: 14px;
  }

  .change_lang_btn::after {
    width: 24px;
    height: 24px;
  }

  .container.en .change_lang_btn::after {
    left: 34px;
  }

  .info_icon {
    width: 60px;
    height: 60px;
  }

  /* modal setting */
  .modal_box .info_icon_box {
    margin-bottom: 15px;
  }

  .enter_modal {
    max-width: 400px;
  }

  .enter_modal .title {
    margin-bottom: 20px;
  }

  .enter_modal .desc {
    margin-bottom: 20px;
  }

  .enter_modal .modal_btn_box {
    margin-top: 20px;
  }

  .event_banner {
    top: 60px;
    bottom: initial;
    width: 200px;
  }

  .event_banner .text {
    font-size: 12px;
  }

  .event_modal {
    max-width: 350px;
  }

  .event_modal .step1 .text_box {
    font-size: 45px;
  }


}

@media screen and (max-width: 768px) {

  /* modal setting */
  .modal_box .info_icon_box {
    margin-bottom: 12px;
  }

  .info_icon {
    width: 60px;
    height: 60px;
  }

  .tip_box {
    font-size: 14px;
  }

  /* guide icon box */

  .guide_icon_box .guide_icon.pc {
    display: none;
  }

  .guide_icon_box .guide_icon.mob {
    display: flex;
  }

  .guide_icon_box .guide_icon.mob .icon_box {
    font-size: 13px;
  }

  .guide_icon_box .guide_icon.mob .icon_box .icon_img {
    height: 100px;
  }

  .guide_icon_box .guide_icon.mob .icon_box img {
    max-height: 90%;
  }

  /* custom - enter_modal */

  .enter_modal {
    max-width: 60%;
  }

  .enter_modal .title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .enter_modal .desc {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .enter_modal .modal_btn_box .btn {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }



}

@media screen and (max-width: 480px) {

  .tbr {
    display: none;
  }

  .mbr {
    display: block;
  }

  /* gnb */

  .contents {
    padding: 0 1vw;
  }

  .info_icon {
    width: 12.5vw;
    height: 12.5vw;
  }

  .modal_scroll_box .desc>p+p {
    margin-top: 2vw;
  }

  .tip_box {
    padding: 2vw 0;
    font-size: 3.33vw;
    border-radius: 2vw;
  }

  .tip_title i {
    width: 3.75vw;
    height: 3.75vw;
  }

  /* enter modal */
  .enter_modal {
    max-width: initial;
    padding: 4.17vw;
    width: 95%;
  }

  .enter_modal .logo_box {
    height: 29vw;
  }

  .enter_modal .title {
    margin-bottom: 4vw;
    font-size: 4.8vw;
    line-height: 1.3;
  }

  .enter_modal .desc {
    font-size: 3.6vw;
  }

  .enter_modal .modal_btn_box {
    margin-top: 5.3vw;
  }

  .enter_modal .modal_btn_box .btn {
    height: 11vw;
    line-height: 11vw;
    font-size: 5vw;
    border-radius: 0.5vw 5vw;
  }

  /* event modal  */
  .event_modal {
    max-width: 70%;
  }

  .event_modal .step1 {
    border-radius: 5vw;
  }

  .event_modal .step1 .text_box {
    font-size: 10vw;
  }

  .event_form h2 {
    font-size: 7vw;
  }

  .form_box .list_form .item_select .item_inner:after {
    width: 4vw;
    height: 4vw;
  }

  .form_box select {
    padding: 0 8%;
  }


}