@charset "utf-8";

/* 메인 히어로 */
.hero_section {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

#visual-wrap {
  opacity: 1;
  transform: scale(1.08);
  transform-origin: center center;
}

#visual-wrap.is-loaded {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity .9s ease,
    transform 1.6s ease;
}

.hero_pin {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #111;
}

.hero_layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero_layer_top {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  box-sizing: border-box;
  background: transparent;
  opacity: 1;
  pointer-events: none;
}

.hero_question {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -.04em;
  text-align: center;
  color: #fff;
  word-break: keep-all;
}

.hero_layer_bottom {
  z-index: 1;
  opacity: 1;
  background: #111;
}

.hero_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero_bg picture,
.hero_bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero_bg img {
  object-fit: cover;
}

.hero_dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .38);
}

.hero_bottom_content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 24px 90px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  opacity: 1;
  transform: none;
}

.hero_sub_title {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .86);
  word-break: keep-all;
}

.hero_main_title {
  margin: 0;
  font-size: 68px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.05em;
  color: #fff;
  word-break: keep-all;
}

.hero_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 58px;
  margin-top: 42px;
  padding: 0 30px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #111;
  text-decoration: none;
  transition:
    background .25s ease,
    color .25s ease,
    transform .5s ease;
}

.hero_cta:hover {
  background: #bea364;
  color: #fff;
  transform: scale(.95);
}

/* 로딩 */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.loading_wrap {
  width: 600px;
  padding: 0 20px;
  box-sizing: border-box;
}

.loading_text {
  margin: 0 0 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .15em;
  text-align: center;
}

.loading_text span {
  vertical-align: baseline;
}

.loading_bar {
  position: relative;
  width: 100%;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  overflow: hidden;
}

.loading_bar_fill {
  position: relative;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 10px rgba(255, 255, 255, .8),
    0 0 20px rgba(255, 255, 255, .6),
    0 0 30px rgba(255, 255, 255, .4);
}

/* tablet */
@media screen and (max-width:1199px) {
  .hero_pin {
    min-height: 680px;
  }

  .hero_question {
    font-size: 48px;
  }

  .hero_sub_title {
    font-size: 19px;
  }

  .hero_main_title {
    font-size: 52px;
  }
}

/* mobile */
@media screen and (max-width:767px) {
  .hero_pin {
    min-height: 560px;
  }

  .hero_question {
    font-size: 32px;
    line-height: 1.42;
  }

  .hero_dim {
    background: rgba(0, 0, 0, .46);
  }

  .hero_bottom_content {
    justify-content: center;
    padding: 0 20px;
  }

  .hero_sub_title {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .hero_main_title {
    font-size: 32px;
    line-height: 1.36;
  }

  .hero_cta {
    min-width: 180px;
    height: 50px;
    margin-top: 30px;
    padding: 0 24px;
    font-size: 15px;
  }

  .loading_wrap {
    width: 100%;
  }

  .loading_text {
    font-size: 14px;
  }

  .loading_bar {
    height: 12px;
  }
}