@font-face {
  font-family: "EM_B";
  font-weight: bold;
  font-style: normal;
  src: url("./fonts/esamanru Bold.ttf") format("truetype");
}

@font-face {
  font-family: "EM_M";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/esamanru Medium.ttf") format("truetype");
}

@font-face {
  font-family: "EM_L";
  font-weight: 100;
  font-style: normal;
  src: url("./fonts/esamanru Light.ttf") format("truetype");
}

@font-face {
  font-family: "G_B";
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEdu_OTFBoldA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: "Y_M";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/YES24GothicM.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all !important;
}

a {
  text-decoration: none;
}

ul,li,ol {
  list-style: none;
}

body {
  overflow-x: hidden;
}

#hd_pop {
  width: 100%;
  height: 100%;
}

#hd_pop .hd_pops {
  position: fixed;
}

@media (max-width: 1200px) {
  .hd_pops {
    left: 10px !important;
  }
}

@media (max-width: 700px) {
  .hd_pops_con {
    width: 400px !important;
    height: 480px !important;
  }
}

@media (max-width: 500px) {
  .hd_pops_con {
    width: 350px !important;
    height: 420px !important;
  }
}

@media (max-width: 400px) {
  #hd_pop .hd_pops {
    width: 90% !important;
    height: auto !important;
  }

  .hd_pops_con {
    width: 100% !important;
    height: auto !important;
  }
}

#header {
  width: 100%;
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

#header.active {
  background: #FBF5E9;
}

#header .wrap {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#header .wrap .pc_menu {
  font-family: "Y_M";
  font-weight: normal;
  font-size: 18px;
  color: #005b3e;
  cursor: pointer;
  margin-right: 50px;
}

#header .wrap .pc_menu:last-of-type {
  margin-right: 0;
}

#header .wrap .logo {
  display: block;
  width: auto;
  height: auto;
  cursor: pointer;
  margin-right: 50px;
}

#header .wrap .hamburger,
#header .wrap .hamburger span {
  display: inline-block;
  transition: all .4s;
}

#header .wrap .hamburger {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 9999;
  display: none;
}

#header .wrap .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #005b3e;
  border-radius: 4px;
}

#header .wrap .hamburger span:nth-of-type(1) {
  top: 0;
}

#header .wrap .hamburger span:nth-of-type(2) {
  top: 9px;
}

#header .wrap .hamburger span:nth-of-type(3) {
  bottom: 0;
}

#header .wrap .hamburger span:nth-of-type(1) {
  -webkit-animation : menu-bar-1 .75s forwards;
  animation : menu-bar-1 .75s forwards;
}

@-webkit-keyframes menu-bar-1 {
  0% {
    -webkit-transform : translateY(9px) rotate(45deg);
  }
  50% {
    -webkit-transform : translateY(9px) rotate(0);
  }
  100% {
    -webkit-transform : translateY(0) rotate(0);
  }
}

@keyframes menu-bar-1 {
  0% {
    transform : translateY(9px) rotate(45deg);
  }
  50% {
    transform : translateY(9px) rotate(0);
  }
  100% {
    transform : translateY(0) rotate(0);
  }
}

#header .wrap .hamburger span:nth-of-type(2) {
  transition : all .25s .25s;
  opacity : 1;
}

#header .wrap .hamburger span:nth-of-type(3) {
  -webkit-animation : menu-bar-2 .75s forwards;
  animation : menu-bar-2 .75s forwards;
}

@-webkit-keyframes menu-bar-2 {
  0% {
    -webkit-transform : translateY(-9px) rotate(-45deg);
  }
  50% {
    -webkit-transform : translateY(-9px) rotate(0);
  }
  100% {
    -webkit-transform : translateY(0) rotate(0);
  }
}

@keyframes menu-bar-2 {
  0% {
    transform : translateY(-9px) rotate(-45deg);
  }
  50% {
    transform : translateY(-9px) rotate(0);
  }
  100% {
    transform : translateY(0) rotate(0);
  }
}

#header .wrap .hamburger.active span:nth-of-type(1) {
  -webkit-animation : active-menu-bar-1 .75s forwards;
  animation : active-menu-bar-1 .75s forwards;
}

@-webkit-keyframes active-menu-bar-1 {
  0% {
    -webkit-transform : translateY(0) rotate(0);
  }
  50% {
    -webkit-transform : translateY(9px) rotate(0);
  }
  100% {
    -webkit-transform : translateY(9px) rotate(45deg);
  }
}

@keyframes active-menu-bar-1 {
  0% {
    transform : translateY(0) rotate(0);
  }
  50% {
    transform : translateY(9px) rotate(0);
  }
  100% {
    transform : translateY(9px) rotate(45deg);
  }
}

#header .wrap .hamburger.active span:nth-of-type(2) {
  opacity : 0;
}

#header .wrap .hamburger.active span:nth-of-type(3) {
  -webkit-animation : active-menu-bar-2 .75s forwards;
  animation : active-menu-bar-2 .75s forwards;
}

@-webkit-keyframes active-menu-bar-2 {
  0% {
    -webkit-transform : translateY(0) rotate(0);
  }
  50% {
    -webkit-transform : translateY(-9px) rotate(0);
  }
  100% {
    -webkit-transform : translateY(-9px) rotate(-45deg);
  }
}

@keyframes active-menu-bar-2 {
  0% {
    transform : translateY(0) rotate(0);
  }
  50% {
    transform : translateY(-9px) rotate(0);
  }
  100% {
    transform : translateY(-9px) rotate(-45deg);
  }
}

#header .wrap .mb_menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: -100vh;
  background: #FBF5E9;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .wrap .mb_menu.active {
  top: 0;
}

#header .wrap .mb_menu .inner {
  width: auto;
  height: auto;
  text-align: center;
}

#header .wrap .mb_menu .inner p {
  font-family: "Y_M";
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 50px;
}

#header .wrap .mb_menu .inner p a {
  color: #005b3e;
}

#header .wrap .mb_menu .inner p:last-of-type {
  margin-bottom: 0;
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 180px;
  background: #FBF5E9;
}

#footer .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

#footer .wrap img {
  width: auto;
  height: auto;
}

#footer .wrap p {
  font-family: "Y_M";
  font-weight: normal;
  font-size: 18px;
  color: #343434;
  text-align: right;
}

#fast_form {
  width: 100%;
  height: auto;
  padding: 10px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #005b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

#fast_form .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

#fast_form .wrap h2 {
  font-family: "EM_B";
  font-weight: bold;
  font-size: 50px;
  color: #fff;
}

#fast_form .wrap form {
  width: auto;
  height: auto;
}

#fast_form .wrap form .input_box {
  width: 100%;
  max-width: 960px;
  height: auto;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#fast_form .wrap form .input_box input,
#fast_form .wrap form .input_box select {
  width: 16%;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #fff;
  padding: 0 20px;
  font-size: 15px;
  color: #fff;
  font-family: "EM_L";
  font-weight: 100;
}

#fast_form .wrap form .input_box select {
  width: 16%;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #fff;
  padding: 0 20px;
  font-size: 15px;
  color: #fff;
  font-family: "EM_L";
  font-weight: 100;
}

#fast_form .wrap form .input_box select option {
  color: #000;
}

#fast_form .wrap form .input_box input::placeholder {
  color: #fff;
}

#fast_form .wrap form .input_box input[type=submit] {
  font-family: "EM_L";
  font-weight: 100;
  color: #005b3e;
  background: #fff;
  padding: 0;
  font-size: 20px;
}

#fast_form .wrap form .agree_box {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#fast_form .wrap form .agree_box input {
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

#fast_form .wrap form .agree_box label {
  font-family: "EM_L";
  font-weight: 100;
  color: #fff;
  font-size: 12px;
}

@media (max-width: 1600px) {
  #fast_form .wrap {
    max-width: 90%;
  }

  #fast_form .wrap h2 {
    margin-right: 20px;
    white-space: nowrap;
  }
}

@media (max-width: 1400px) {
  #footer .wrap {
    max-width: 90%;
  }

  #fast_form .wrap {
    max-width: 90%;
  }

  #fast_form .wrap h2 {
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  #header .wrap {
    width: 90%;
    justify-content: space-between;
  }

  #header .wrap .pc_menu {
    display: none;
  }

  #header .wrap .logo {
    margin-right: 0;
  }

  #header .wrap .hamburger {
    display: block;
  }

  #footer .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  #footer .wrap p {
    width: 100%;
    text-align: center;
  }

  #footer .wrap img {
    margin-bottom: 30px;
  }

  #fast_form .wrap h2 {
    font-size: 30px;
  }

  #fast_form .wrap form .input_box input[type=submit] {
    font-size: 16px;
  }

  #fast_form .wrap form .input_box input,
  #fast_form .wrap form .input_box select {
    height: 35px;
    border-radius: 5px;
  }
}

@media (max-width: 900px) {
  #fast_form .wrap h2 {
    font-size: 18px;
  }

  #fast_form .wrap form .input_box input,
  #fast_form .wrap form .input_box select {
    height: 25px;
    font-size: 12px;
  }

  #fast_form .wrap form .input_box input[type=submit] {
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  #fast_form .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  #fast_form .wrap h2 {
    margin-right: 0;
    margin-bottom: 10px;
  }

  #fast_form .wrap form .input_box {
    margin-bottom: 5px;
  }
}

@media (max-width: 500px) {
  #header .wrap .logo {
    height: 50px;
  }

  #header {
    height: 50px;
  }

  #header .wrap .hamburger {
    width: 25px;
    height: 15px;
  }

  #header .wrap .hamburger span:nth-of-type(2) {
    top: 6.5px;
  }
  
  @-webkit-keyframes menu-bar-1 {
    0% {
      -webkit-transform : translateY(6.5px) rotate(45deg);
    }
    50% {
      -webkit-transform : translateY(6.5px) rotate(0);
    }
    100% {
      -webkit-transform : translateY(0) rotate(0);
    }
  }
  
  @keyframes menu-bar-1 {
    0% {
      transform : translateY(6.5px) rotate(45deg);
    }
    50% {
      transform : translateY(6.5px) rotate(0);
    }
    100% {
      transform : translateY(0) rotate(0);
    }
  }
  
  @-webkit-keyframes menu-bar-2 {
    0% {
      -webkit-transform : translateY(-6.5px) rotate(-45deg);
    }
    50% {
      -webkit-transform : translateY(-6.5px) rotate(0);
    }
    100% {
      -webkit-transform : translateY(0) rotate(0);
    }
  }
  
  @keyframes menu-bar-2 {
    0% {
      transform : translateY(-6.5px) rotate(-45deg);
    }
    50% {
      transform : translateY(-6.5px) rotate(0);
    }
    100% {
      transform : translateY(0) rotate(0);
    }
  }
  
  @-webkit-keyframes active-menu-bar-1 {
    0% {
      -webkit-transform : translateY(0) rotate(0);
    }
    50% {
      -webkit-transform : translateY(6.5px) rotate(0);
    }
    100% {
      -webkit-transform : translateY(6.5px) rotate(45deg);
    }
  }
  
  @keyframes active-menu-bar-1 {
    0% {
      transform : translateY(0) rotate(0);
    }
    50% {
      transform : translateY(6.5px) rotate(0);
    }
    100% {
      transform : translateY(6.5px) rotate(45deg);
    }
  }
  
  @-webkit-keyframes active-menu-bar-2 {
    0% {
      -webkit-transform : translateY(0) rotate(0);
    }
    50% {
      -webkit-transform : translateY(-6.5px) rotate(0);
    }
    100% {
      -webkit-transform : translateY(-6.5px) rotate(-45deg);
    }
  }
  
  @keyframes active-menu-bar-2 {
    0% {
      transform : translateY(0) rotate(0);
    }
    50% {
      transform : translateY(-6.5px) rotate(0);
    }
    100% {
      transform : translateY(-6.5px) rotate(-45deg);
    }
  }

  #header .wrap .mb_menu .inner p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  #footer .wrap img {
    width: 100px;
  }

  #footer .wrap p {
    font-size: 12px;
  }

  #footer {
    padding-bottom: 100px;
  }

  #fast_form .wrap h2 {
    font-size: 14px;
  }

  #fast_form .wrap form .input_box input,
  #fast_form .wrap form .input_box select {
    height: 20px;
    font-size: 9px;
    padding: 0 10px;
  }

  #fast_form .wrap form .input_box input[type=submit] {
    font-size: 10px;
  }

  #fast_form .wrap form .agree_box label {
    font-size: 9px;
  }
}

@media (max-width: 400px) {
  #fast_form .wrap form .input_box {
    flex-wrap: wrap;
  }

  #fast_form .wrap form .input_box input,
  #fast_form .wrap form .input_box select {
    width: 49%;
    text-align: center;
  }

  #fast_form .wrap form .input_box input:nth-of-type(n+4) {
    margin-top: 5px;
  }
}