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

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

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

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

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

.hd_pops {
  position: fixed !important;
  top: 10px !important;
}

#hd_pops_4 {
  left: 10px !important;
}

#hd_pops_4 {
  left: 510px !important;
}

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

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

  #hd_pops_4 {
    left: 310px !important;
  }
}

@media (max-width: 700px) {
  #hd_pops_4 {
    left: 10px !important;
  }
}

@media (max-width: 400px) {
  .hd_pops {
    width: 280px !important;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

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

body {
  overflow-x: hidden;
}

.global {
  width: 30px;
  height: 100vh;
  position: fixed;
  z-index: 9999;
}

.global.left {
  background: url(../img/common/global_left.png) no-repeat right / cover;
  top: 0;
  left: 0;
}

.global.right {
  background: url(../img/common/global_right.png) no-repeat left / cover;
  top: 0;
  right: 0;
}

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

#header .wrap {
  width: 100%;
  max-width: 95%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .wrap .inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

#header .wrap .inner .logo {
  width: auto;
  height: auto;
  cursor: pointer;
  margin-right: 60px;
}

#header .wrap .inner .logo img {
  width: auto;
  height: auto;
}

#header .wrap .inner .pc_nav {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

#header .wrap .inner .pc_nav p {
  cursor: pointer;
  margin-right: 50px;
  font-size: 18px;
  color: #fff;
  font-family: "G_B";
  font-weight: bold;
}

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

#header .wrap img.tel {
  width: auto;
  height: auto;
}

#header .wrap .hamburger {
  display: none;
  position: relative;
  z-index: 9999;
}

#header .wrap .hamburger .line {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#header .wrap .hamburger:hover {
  cursor: pointer;
}

#header .wrap .hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header .wrap .hamburger.active .line:nth-child(2) {
  width: 0px;
}

#header .wrap .hamburger.active .line:nth-child(1),
#header .wrap .hamburger.active .line:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

#header .wrap .hamburger.active .line:nth-child(1) {
  -webkit-transform: translateY(7px);
  -ms-transform: translateY(7px);
  -o-transform: translateY(7px);
  transform: translateY(7px);
}

#header .wrap .hamburger.active .line:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(90deg);
  -ms-transform: translateY(-9px) rotate(90deg);
  -o-transform: translateY(-9px) rotate(90deg);
  transform: translateY(-9px) rotate(90deg);
}

#header .wrap .hamburger.active .line {
  background-color: #000;
}

#header .wrap .mb_nav {
  width: 80vw;
  height: 100vh;
  position: fixed;
  right: -100vw;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-left: 1px solid #000;
  transition: all 0.5s;
}

#header .wrap .mb_nav.active {
  right: 0;
}

#header .wrap .mb_nav p {
  text-align: center;
  margin-bottom: 30px;
  font-family: "G_B";
  font-weight: bold;
  font-size: 16px;
}

#footer {
  width: 100%;
  height: 270px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#footer img {
  width: auto;
  height: auto;
  margin-bottom: 15px;
}

#footer h2 {
  font-family: "G_B";
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #2d2d2d;
}

#fast_form {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D2334;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999999;
}

#fast_form .close {
  width: auto;
  height: auto;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

#fast_form .close span {
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
}

#fast_form .close span:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

#fast_form .close span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

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

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

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

#fast_form .wrap form input {
  background: none;
  border: none;
}

#fast_form .wrap form .fm_wrap {
  display: flex;
  margin-bottom: 4px;
}

#fast_form .wrap form .fm_wrap input {
  width: 203px;
  height: 41px;
  border-radius: 10px;
  background: #fff;
  padding: 0 5px;
  margin-right: 24px;
  font-family: "P_B";
  font-size: 15px;
  font-weight: bold;
  color: #000;
}

#fast_form .wrap form .fm_wrap input:last-of-type {
  margin-right: 0;
}

#fast_form .wrap form .fm_wrap input[type="submit"] {
  background: #D0533E;
  color: #fff;
  font-size: 20px;
}

#fast_form .wrap form .agree {
  display: flex;
  align-items: center;
}

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

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

#fast_form .wrap form .agree label a {
  font-family: "P_M";
  color: #d1d1d1;
  cursor: pointer;
}

@media (max-width: 1400px) {
  #header .wrap .inner .pc_nav {
    display: none;
  }

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

  #header .wrap img.tel {
    display: none;
  }

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

  #header .wrap .inner .logo img {
    width: 150px;
  }

  .global {
    width: 20px;
  }

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

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

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

  #fast_form .wrap h3 {
    font-size: 42px;
  }

  #fast_form .wrap form .fm_wrap input {
    width: 180px;
    height: 35px;
    margin-right: 10px;
    font-size: 14px;
  }

  #fast_form .wrap form .fm_wrap input[type="submit"] {
    font-size: 18px;
  }

  #fast_form {
    height: 120px;
  }
}

@media (max-width: 1200px) {
  #fast_form {
    height: auto;
    padding: 30px 0;
  }

  #fast_form .wrap {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  #fast_form .wrap h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  #fast_form .wrap h3 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 900px) {
  #header .wrap .inner .logo img {
    width: 100px;
  }

  .global {
    width: 10px;
  }

  #header {
    height: 60px;
    border: 3px solid #fff;
  }

  #fast_form .wrap form .fm_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  #fast_form .wrap form .fm_wrap input {
    width: 100%;
    margin-right: 0;
    max-width: 90%;
  }

  #fast_form .wrap form .fm_wrap input {
    margin-bottom: 10px;
  }

  #fast_form .wrap form .fm_wrap input:last-of-type {
    margin-bottom: 0;
  }

  #fast_form .wrap form .agree {
    width: 100%;
    max-width: 95%;
    justify-content: center;
  }
}

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

  #footer img {
    width: 180px;
  }

  #footer h2 {
    font-size: 14px;
    line-height: 20px;
  }

  #fast_form .wrap h2 {
    font-size: 24px;
    margin-bottom: 0;
  }

  #fast_form .wrap h3 {
    font-size: 32px;
  }
}

@media (max-width: 400px) {
  #header .wrap .hamburger .line {
    width: 25px;
    margin: 5px auto;
  }

  #header .wrap .hamburger.active .line:nth-child(1) {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px);
  }

  #header .wrap .inner .logo img {
    width: 80px;
  }

  #header {
    height: 50px;
  }

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

  #fast_form .wrap h3 {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}