@import url(/css/fonts/SCDream/font-face.css);
html {
  scroll-behavior: smooth;
}

:root {
  --scd: 'SCDream', 'Noto Sans KR', Noto Sans, 'Malgun Gothic', dotum, sans-serif;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing img {
  width: 100%;
}
.landing section {
  max-width: 800px;
  position: relative;
}
.landing .video-link {
  position: absolute;
  opacity: 0;
  width: 74.5%;
}
.landing .yt-a {
  top: 89.2%;
  left: 13%;
  height: 7%;
}
.landing .yt-b {
  top: 89%;
  left: 12%;
  height: 7%;
}
.landing .yt-c {
  top: 90%;
  left: 13%;
  height: 7%;
}
.landing .yt-full {
  width: 95%;
  height: 33.7%;
  top: 3.4%;
  left: 50%;
  transform: translatex(-50%);
}
.landing .yt-full.--01 {
  height: 45.7%;
}
.landing .yt-full.--02 {
  height: 45.7%;
  top: 56.4%;
}

#landing-db {
  padding: 5% 3%;
  font-size: 24px;
  font-family: var(--scd);
}
#landing-db * {
  font-family: var(--scd);
}
#landing-db dt {
  margin-bottom: 0.5em;
  font-weight: 500;
}
#landing-db dd {
  padding-bottom: 2em;
}
#landing-db button {
  border: 0;
  background: none;
}
#landing-db button[type=submit] {
  width: 100%;
}
#landing-db label.required::after {
  content: " *";
  color: red;
}
#landing-db input[type=text] {
  width: 100%;
  height: 60px;
  border: 1px solid #000;
  outline: none;
  padding-left: 1em;
}
#landing-db textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 1em;
}
#landing-db .agree label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #444444;
}
#landing-db .agree input {
  width: 1em;
  height: 1em;
}
#landing-db .agree span {
  padding: 0 0.5em;
}
#landing-db .policy {
  font-size: 16px;
  width: 100%;
  margin-bottom: 3em;
  overflow: hidden;
  max-height: 0;
  border: 1px solid #fff;
  padding: 0 1em;
  transition: 0.5s;
}
#landing-db .policy.active {
  padding: 1em;
  border: 1px solid #000;
  max-height: 80vh;
}

#btn-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: bottom 1s;
}
#btn-fixed.hide {
  bottom: -100%;
}

@media (min-width: 800px) {
  .landing #btn-fixed {
    left: calc(50% - 400px);
    width: 800px;
  }
}
@media screen and (max-width: 799px) {
  #landing-db {
    padding: 7vw;
    font-size: 4vw;
  }
  #landing-db .agree label {
    font-size: 2.5vw;
  }
  #landing-db input[type=text] {
    height: 2.8em;
  }
  #landing-db .policy {
    font-size: 2.5vw;
    margin-bottom: 6vw;
  }
}/*# sourceMappingURL=style.min.css.map */