@charset "UTF-8";
@font-face {
  font-family: "BMEULJIRO";
  font-weight: normal;
  font-style: normal;
  src: url("../font/BMEULJIRO.woff") format("woff");
}
@font-face {
  font-family: "GangwonEdu_OTFBoldA";
  font-weight: normal;
  font-style: normal;
  src: url("../font/GangwonEdu_OTFBoldA.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  -webkit-user-select: none; /* Chrome, Safari, Opera */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* 일반적인 방법 */
}

*,
:after,
:before {
  box-sizing: border-box;
}

:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  cursor: default;
  overflow-wrap: break-word;
  -moz-tab-size: 4;
  tab-size: 4;
}

html,
body {
  min-width: 320px;
  height: 100%;
  min-height: 600px;
}

html {
  font-size: 62.5%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "GangwonEdu_OTFBoldA", sans-serif;
  font-size: 1.6rem;
  color: #000;
  word-break: keep-all;
  background: #EB6D37;
  user-select: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

input {
  font-family: inherit;
  letter-spacing: inherit;
  border: 0 none;
  outline: 0 none;
}

a {
  text-decoration: none;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

fieldset {
  border: 0;
}

input, textarea {
  -webkit-user-select: auto;
  font-family: inherit;
}

progress::-webkit-progress-bar {
  background-color: #fff;
}

progress {
  background-color: #fff;
}

progress::-webkit-progress-value {
  background-color: var(--point-color);
}

progress::-moz-progress-bar {
  background-color: var(--point-color);
}

progress {
  color: var(--point-color);
}

@media (min-width: 768px) {
  html {
    font-size: 100%;
  }
}

@media (max-width: 414px) {
  html {
	font-size: 62.3% !important
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 80%;
  }
}
.skip-nav {
  position: relative;
  width: 100%;
}
.skip-nav a {
  position: absolute;
  top: -999px;
  padding: 5px 10px;
  font-weight: 700;
  color: #fff;
  background: #333;
  text-decoration: none;
  white-space: nowrap;
}
.skip-nav a:focus {
  top: 0;
  z-index: 10000;
}

.ir-block {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}

.ir-inline {
  z-index: -1;
  overflow: hidden;
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}

.is-hide {
  display: none !important;
}

.is-omission {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.is-disabled-pointer-events {
  pointer-events: none;
}

.is-z-index-top {
  z-index: 1;
  position: relative;
}

.is-divider {
  height: var(--divider-width);
  border: 0 none;
  background: var(--gray);
}

.icon-blank {
  --box-size: 1.2rem;
  display: inline-block;
  width: var(--box-size);
  height: var(--box-size);
  vertical-align: middle;
  background: url(../images/common/icon/icon__blank.svg) no-repeat center/contain;
}

:root {
  --margins: 2rem;
}

@keyframes shake-horizontal {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    transform: translateX(-1.5%);
  }
  20%, 40%, 60% {
    transform: translateX(1.5%);
  }
  80% {
    transform: translateX(0.8%);
  }
  90% {
    transform: translateX(-0.8%);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-in {
  animation: fade-in 1s linear forwards;
}

.fade-out {
  animation: fade-out 1s linear forwards;
}

.main {
  height: 100%;
  padding: 0 0 5rem;
}
.main__contain {
  width: 36rem;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 6vh var(--margins) 0;
}