@charset "UTF-8";
/* template 별 커스텀 css */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  word-break: keep-all;
  word-wrap: break-word;
  white-space: normal;
}

button {
  overflow: visible;
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: #111;
  line-height: inherit;
  vertical-align: top;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button span,
button:after {
  position: relative;
}

button[disabled], a.disabled {
  cursor: default;
  pointer-events: none;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: white;
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.errorSection {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  padding-top: 284px;
}
.errorSection .errorWrap {
  width: 728px;
  max-width: calc(100% - 40px);
  padding-top: 32px;
  border-top: 2px solid #333333;
  text-align: center;
}
.errorSection .errorWrap h3 {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.errorSection .errorWrap p {
  margin-bottom: 80px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.048px;
}
.errorSection .errorWrap button {
  color: #3137CE;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.054px;
  text-decoration-line: underline;
}

/*** laptop ***/
@media (min-width: 1016px) {
  .wHide {
    display: none;
  }
}
/*** tablet ***/
@media (min-width: 760px) and (max-width: 1015px) {
  .tHide {
    display: none;
  }
  .errorSection .errorWrap h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
  }
  .errorSection .errorWrap p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.048px;
  }
}
/*** mobile ***/
@media (max-width: 759px) {
  .mHide {
    display: none;
  }
  .errorSection .errorWrap h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
  }
  .errorSection .errorWrap p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.048px;
  }
}