@font-face {
	font-family: 'PB_B';
	font-weight: bold;
	font-style: bold;
	src: url("./fonts/Pretendard-Bold.woff")  format('woff');
}

@font-face {
	font-family: 'PB_M';
	font-weight: normal;
	font-style: normal;
	src: url("./fonts/Pretendard-Medium.woff")  format('woff');
}

@font-face {
	font-family: 'PB_R';
	font-weight: normal;
	font-style: normal;
	src: url("./fonts/Pretendard-Regular.woff")  format('woff');
}

@font-face {
	font-family: 'PB_L';
	font-weight: 100;
	font-style: normal;
	src: url("./fonts/Pretendard-Light.woff")  format('woff');
}

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

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

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

@font-face {
  font-family: "JA";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/정선아리랑체TTF.ttf") format("truetype");
}

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

a {
  text-decoration: none;
  cursor: pointer;
}

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

body {
  overflow-x: hidden;
}

#header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #CFAA66;
}

#header .logo {
  width: 400px;
  height: 100%;
  border-right: 1px solid #CFAA66;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}

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

#header .pc_menu {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .pc_menu ul {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

#header .pc_menu ul li {
  font-family: 'PB_B';
  font-size: 18px;
  color: #0D0D0D;
  cursor: pointer;
}

#header .tel_btn {
  width: 400px;
  height: 100%;
  border-left: 1px solid #CFAA66;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #0D0D0D;
}

#header .tel_btn img {
  width: auto;
  height: auto;
}

#header .hamburger_box {
  width: 300px;
  height: 100%;
  border-left: 1px solid #CFAA66;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  display: none;
}

#header .hamburger_box .hamburger {
  position: relative;
  z-index: 9999;
}

#header .hamburger_box .hamburger .line {
  width: 30px;
  height: 4px;
  background-color: #000;
  display: block;
  margin: 4px 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 .tel_btn.active .hamburger .line {
  background: #fff;
}

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

#header .hamburger_box .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 .hamburger_box .hamburger.active .line:nth-child(2) {
  width: 0px;
}

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

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

#header .hamburger_box .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 .mb_menu_wrap {
  position: fixed;
  right: -60vw;
  top: 0;
  width: 60vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/common/mb_menu.png) no-repeat center / cover;
  border-left: 1px solid #0D0D0D;
  transition: all 0.3s;
}

#header .mb_menu_wrap.active {
  right: 0;
}

#header .mb_menu_wrap .wrap {
  width: 100%;
  height: auto;
  padding: 0 50px;
}

#header .mb_menu_wrap .wrap ul {
  width: 100%;
  height: auto;
}

#header .mb_menu_wrap .wrap ul li {
  width: 100%;
  height: auto;
  padding: 30px 0;
  border-bottom: 1px solid #0D0D0D;
  text-align: center;
  font-family: 'PB_B';
  font-size: 20px;
  color: #0D0D0D;
  cursor: pointer;
}

#footer {
  width: 100%;
  height: auto;
  padding: 100px 0;
  text-align: center;
  background: #CFAA66;
}

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

#footer p {
  font-family: "KM_R";
  font-size: 18px;
  color: #0D0D0D;
}

#fast_form {
  width: 100%;
  height: auto;
  padding: 10px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  border-top: 1px solid #0D0D0D;
}

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

#fast_form .wrap h2 {
  font-family: "KM_B";
  font-size: 50px;
  color: #0D0D0D;
}

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

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

#fast_form .wrap form .input_box input {
  width: 24%;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #0D0D0D;
  padding: 0 20px;
  font-size: 15px;
  color: #0D0D0D;
  font-family: "KM_R";
}

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

#fast_form .wrap form .input_box input[type=submit] {
  font-family: "KM_R";
  color: #fff;
  background: #0D0D0D;
  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: "KM_R";
  color: #0D0D0D;
  font-size: 12px;
}

.top_button {
  position: fixed;
  right: 30px;
  bottom: 100px;
  width: auto;
  height: auto;
  cursor: pointer;
}

#quick_menu {
  width: auto;
  height: 315px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: -134px; 
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.3s;
}

#quick_menu.active {
  right: 0;
}

#quick_menu .arrow_btn {
  width: 40px;
  height: 100%;
  background: #CFAA66;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px 0 0 10px;
}

#quick_menu .arrow_btn img {
  width: auto;
  height: auto;
}

#quick_menu .icon_box {
  width: auto;
  height: 100%;
  padding: 10px 35px;
  background: #fff;
  border: 1px solid #E8E8E8;
}

#quick_menu .icon_box .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 33.3333%;
  border-bottom: 1px solid #E8E8E8;
  text-align: center;
}

#quick_menu .icon_box .box:last-of-type {
  border-bottom: 0;
}

#quick_menu .icon_box .box img {
  width: auto;
  height: auto;
  margin-bottom: 10px;
}

#quick_menu .icon_box .box p {
  font-family: 'PB';
  font-size: 12px;
  color: #888;
}

@media (max-width: 1600px) {
  #header .logo img {
    width: 200px;
  }

  #header .tel_btn img {
    width: 200px;
  }

  #header .logo {
    width: 300px;
  }

  #header .tel_btn {
    width: 300px;
  }

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

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

  #fast_form .wrap form .input_box {
    width: 100%;
  }
}

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

  #header .tel_btn {
    display: none;
  }

  #header .hamburger_box {
    display: flex;
  }

  #header {
    justify-content: space-between;
  }

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

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

@media (max-width: 1200px) {
  #header .logo img {
    width: 150px;
  }

  #header .logo {
    width: 200px;
  }

  #header .hamburger_box {
    width: 80px;
  }

  #header {
    height: 50px;
  }

  #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 {
    height: 35px;
    border-radius: 5px;
  }
}

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

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

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

@media (max-width: 700px) {
  #header .mb_menu_wrap .wrap {
    padding: 0 30px;
  }

  #header .mb_menu_wrap .wrap ul li {
    padding: 15px 0;
    font-size: 16px;
  }

  #footer {
    padding: 50px 10px 150px;
  }

  #footer p {
    font-size: 14px;
  }

  #footer img {
    width: 150px;
  }
  
  #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 .logo img {
    width: 110px;
  }

  #header .logo {
    width: 150px;
  }

  #header .hamburger_box .hamburger .line {
    width: 25px;
    height: 2px;
  }

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

  #header .hamburger_box {
    width: 65px;
  }

  #header .mb_menu_wrap {
    width: 80vw;
    right: -80vw;
  }

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

  #fast_form .wrap form .input_box input {
    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;
  }

  .top_button {
    width: 30px;
    right: 10px;
  }
  
  #quick_menu .arrow_btn img {
    width: 16px;
  }

  #quick_menu {
    height: 185px;
  }

  #quick_menu .arrow_btn {
    width: 30px;
  }

  #quick_menu .icon_box .box img {
    height: 20px;
    margin-bottom: 5px;
  }

  #quick_menu .icon_box .box p {
    font-size: 10px;
  }

  #quick_menu .icon_box {
    padding: 5px 10px;
  }

  #quick_menu {
    right: -74px;
  }
}

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

  #fast_form .wrap form .input_box input {
    width: 32.5%;
  }

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

  #fast_form .wrap form .input_box input[type=submit] {
    width: 100%;
  }

  .top_button {
    bottom: 120px;
  }
}