<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "SB_L";
  src: url("./fonts/SB_ì–´ê·¸ë¡œ_L.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "SB_M";
  src: url("./fonts/SB_ì–´ê·¸ë¡œ_M.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SB_B";
  src: url("./fonts/SB_ì–´ê·¸ë¡œ_B.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

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

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

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

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

* {
  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: 80px;
}

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

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

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

#footer {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: #fff;
}

#footer .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

#footer .wrap .ft_logo {
  width: auto;
  height: auto;
  margin-bottom: 30px;
}

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

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

#footer .wrap .inner .info_1 p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 18px;
  color: #242424;
  line-height: 30px;
}

#footer .wrap .inner .info_2 {
  text-align: right;
} 

#footer .wrap .inner .info_2 h2 {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 30px;
  color: #242424;
  margin-bottom: 15px;
}

#footer .wrap .inner .info_2 h2 span {
  font-family: 'PB_B';
	font-weight: bold;
}

#footer .wrap .inner .info_2 p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 15px;
  color: #242424;
}

#footer .wrap .inner .info_2 p span {
  font-family: 'PB_B';
	font-weight: bold;
}

#come_btn {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: fixed;
  width: auto;
  height: auto;
  z-index: 9999;
}

#come_btn img {
  width: auto;
  height: auto;
  cursor: pointer;
  display: block;
}

#standard_popup {
  width: 550px;
  height: 800px;
  overflow-y: scroll;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #efefef;
  scrollbar-width: thin;
  scrollbar-color: #888 #f0f0f0; 
  display: none;
  z-index: 99999;
}

#standard_popup::-webkit-scrollbar {
  width: 8px;
}

#standard_popup::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

#standard_popup::-webkit-scrollbar-track {
  background: #f0f0f0;
}

#standard_popup .close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

#standard_popup .close span {
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

#standard_popup h2 {
  font-family: 'PL_B';
  font-weight: bold;
  font-size: 30px;
  color: #242424;
  text-align: center;
}

#standard_popup .line {
  width: 100%;
  height: 1px;
  background: #000;
  margin: 30px 0;
}

#standard_popup img {
  width: 100%;
  height: auto;
}

#bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  background: rgba(000,000,000,0.7);
  display: none;
}


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

  #footer .wrap .inner .info_1 p {
    font-size: 16px;
    line-height: 25px;
  }

  #footer .wrap .inner .info_2 h2 {
    font-size: 24px;
  }

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

  #come_btn img {
    width: 150px;
  }
}

@media (max-width: 700px) {
  #footer {
    padding: 50px 0;
  }

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

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

  #footer .wrap .inner .info_1,
  #footer .wrap .inner .info_2 {
    width: 100%;
  }

  #footer .wrap .inner .info_1 {
    margin-bottom: 20px;
  }

  #footer .wrap .inner .info_2 {
    text-align: center;
  }

  #come_btn img {
    width: 100px;
  }

  #standard_popup {
    width: 90%;
    height: 400px;
  }

  #standard_popup h2 {
    font-size: 24px;
  }
}

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

  #header {
    height: 50px;
  }

  #standard_popup h2 {
    font-size: 18px;
  }

  #standard_popup .line {
    margin: 15px 0;
  }
}

@media (max-width: 400px) {
  #footer .wrap .inner .info_1 p {
    font-size: 14px;
    line-height: 20px;
  }

  #footer .wrap .inner .info_2 h2 {
    font-size: 18px;
  }

  #footer .wrap .inner .info_2 h2 {
    font-size: 18px;
  }

  #footer .wrap .ft_logo img {
    width: 50px;
  }

  #come_btn img {
    width: 80px;
  }
  
  #come_btn  {
    top: 70%;
  }
}</pre></body></html>