@font-face {
  font-family: "SHS_L";
  src: url("./fonts/SourceHanSerifK-Light.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "SHS_R";
  src: url("./fonts/SourceHanSerifK-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SHS_M";
  src: url("./fonts/SourceHanSerifK-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SHS_B";
  src: url("./fonts/SourceHanSerifK-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "SHN_L";
  src: url("./fonts/SourceHanSansKR-Light.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "SHN_R";
  src: url("./fonts/SourceHanSansKR-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SHN_M";
  src: url("./fonts/SourceHanSansKR-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SHN_B";
  src: url("./fonts/SourceHanSansKR-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}


* {
  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;
  padding-top: 195px;
}

#header {
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  background: #fff;
}

#header .logo {
  width: auto;
  height: auto;
  cursor: pointer;
}

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

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

#header .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 .hamburger:hover {
  cursor: pointer;
}

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

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

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

#header .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_nav {
  width: 60%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background: #000;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s;
  right: -100vw;
}

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

#header .mb_nav .top_menu_inner {
  margin-bottom: 30px;
  position: relative;
}

#header .mb_nav .top_menu_inner:last-of-type {
  margin-bottom: 0;
}

#header .mb_nav .top_menu_inner .arrow {
  font-size: 20px;
  position: absolute;
  right: 30px;
  top: 0;
  transition: all 0.3s;
}

#header .mb_nav .top_menu_inner.active .arrow {
  transform: rotate(180deg);
}

#header .mb_nav .top_menu_inner .main_link {
  font-family: "SHS_B";
  font-weight: bold;
  font-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  display: block;
  cursor: pointer;
  color: #fff;
}

#header .mb_nav .top_menu_inner .bottom_menu {
  padding: 20px 40px;
  background: #fff;
  overflow: hidden;
  padding: 0;
  max-height: 0;
  transition: max-height 1s, padding 0.3s;
}

#header .mb_nav .top_menu_inner .bottom_menu.active {
  padding: 20px 40px;
  max-height: 10000px;
  transition: max-height 5s;
}

#header .mb_nav .top_menu_inner .bottom_menu .bottom_menu_inner {
  margin-bottom: 20px;
}

#header
  .mb_nav
  .top_menu_inner
  .bottom_menu
  .bottom_menu_inner:last-of-type {
  margin-bottom: 0;
}

#header
  .mb_nav
  .top_menu_inner
  .bottom_menu
  .bottom_menu_inner
  .sub_link {
  font-size: 18px;
  color: #000;
  font-family: "SHN_R";
}

#menu_wrap {
  width: 190px;
  height: 100vh;
  background: #fff;
  z-index: 998;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  padding-top: 195px;
}

#menu_wrap .menu_box {
  width: auto;
  height: auto;
}

#menu_wrap .menu_box .menu {
  font-family: "SHS_R";
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 30px;
}

#menu_wrap .menu_box .menu:last-of-type {
  margin-bottom: 0;
}

#sns_wrap {
  position: fixed;
  top: 195px;
  right: 50px;
  z-index: 996;
}

#sns_wrap .sns {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  margin-bottom: 30px;
}

#sns_wrap .sns:last-of-type {
  margin-bottom: 0;
}

#sns_wrap .sns img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  transition: all 0.3s;
}

#sns_wrap .sns img.active {
  opacity: 0;
}

#sns_wrap .sns:hover img {
  opacity: 0;
}

#sns_wrap .sns:hover img.active {
  opacity: 1;
}

#footer {
  width: 100%;
  height: auto;
  padding: 100px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #000;
  position: relative;
  z-index: 999;
  background: #fff;
}

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

#footer .wrap .company_info {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

#footer .wrap .company_info .text {
  width: 50%;
  height: auto;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

#footer .wrap .company_info .text:last-of-type {
  margin-bottom: 0;
}

#footer .wrap .company_info .text h6 {
  font-family: "SHS_B";
  font-weight: bold;
  font-size: 15px;
  width: 35%;
  height: auto;
}

#footer .wrap .company_info .text p {
  font-family: "SHS_R";
  font-weight: normal;
  font-size: 15px;
  width: 65%;
  height: auto;
}

#footer .wrap .shortcut {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

#footer .wrap .shortcut .inner {
  margin-right: 90px;
  display: flex;
  align-items: center;
}

#footer .wrap .shortcut .inner p {
  font-family: "SHS_B";
  font-weight: bold;
  font-size: 15px;
  margin-right: 30px;
}

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

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

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

  #footer .wrap .company_info {
    max-width: 100%;
    order: 1;
  }

  #footer .wrap .shortcut {
    width: 100%;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }

  #footer .wrap .shortcut .inner {
    margin-right: 0;
    width: 100%;
    justify-content: center;
    margin-bottom: 50px;
  }

  #footer .wrap .company_info .text p {
    text-align: center;
  }
}

@media (max-width: 1200px) {
  body {
    padding-top: 75px;
  }

  #header .hamburger {
    display: block;
  }

  #header {
    padding: 20px;
    justify-content: space-between;
  }

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

  #menu_wrap {
    display: none;
  }

  #sns_wrap {
    right: 20px;
    top: unset;
    bottom: 100px;
  }

  #top_btn {
    width: 30px;
    height: 30px;
    line-height: unset;
  }
}

@media (max-width: 900px) {
  #footer .wrap .company_info .text {
    width: 100%;
  }

  #footer .wrap .company_info .text p {
    text-align: right;
  }

  #footer .wrap .company_info {
    max-width: 280px;
  }
}

@media (max-width: 700px) {
  #footer .wrap .shortcut .inner {
    display: none;
  }

  #footer .wrap .shortcut img {
    width: 150px;
  }

  #footer {
    padding: 50px 0;
  }
}

@media (max-width: 500px) {
  #header .hamburger .line {
    width: 25px;
    height: 3px;
  }

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

  #header .mb_nav .top_menu_inner .main_link {
    font-size: 16px;
    padding-left: 20px;
  }

  #header .mb_nav .top_menu_inner {
    margin-bottom: 20px;
  }

  #header .mb_nav .top_menu_inner .arrow {
    font-size: 15px;
    right: 20px;
  }

  #header .mb_nav .top_menu_inner .bottom_menu.active {
    padding: 10px 30px;
  }

  #header
    .mb_nav
    .top_menu_inner
    .bottom_menu
    .bottom_menu_inner
    .sub_link {
    font-size: 14px;
  }

  #header
    .mb_nav
    .top_menu_inner
    .bottom_menu
    .bottom_menu_inner {
    margin-bottom: 15px;
  }

  #header .mb_nav {
    width: 90%;
  }
}

@media (max-width: 400px) {
  body {
    padding-top: 65px;
  }

  #header .logo img {
    width: 60px;
  }

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

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

  #sns_wrap .sns img {
    width: 100%;
    height: auto;
  }

  #sns_wrap .sns {
    width: 20px;
    height: 20px;
    margin-bottom: 20px;
  }

  #top_btn {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

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

  #footer .wrap .company_info .text h6 {
    font-size: 10px;
  }

  #footer .wrap .company_info .text p {
    font-size: 10px;
  }

  #footer .wrap .company_info {
    max-width: 200px;
  }
}