@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap");
/* font-family: 'Noto Sans KR', sans-serif; */
/* Light 300 */
/* Regular 400 */
/* Medium 500 */
/* Bold 700 */
/* Black 900 */

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@100;200;300;400;500;600;700&display=swap");
/* font-family: 'IBM Plex Sans KR', sans-serif; */
/* Thin 100 */
/* ExtraLight 200 */
/* Light 300 */
/* Regular 400 */
/* Medium 500 */
/* SemiBold 600 */
/* Bold 700 */

@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap");
/* font-family: 'Nanum Myeongjo', serif; */
/* Regular 400 */
/* Bold 700 */
/* ExtraBold 800 */

/* @font-face {
  font-family: "Mermaid1001", serif;
  src: url("../font/Mermaid1001.ttf") format("mermaid");
} */

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=swap");
/* font-family: "Noto Serif KR", serif; */

@import url("https://fonts.googleapis.com/css2?family=Poltawski+Nowy:ital,wght@0,400..700;1,400..700&display=swap");
/* font-family: 'Półtawski Nowy', serif; */

/* .test_font {
  font-family: "Poltawski Nowy", serif;
  font-size: 90px;
  font-weight: 700;
} */

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/* font-family: "Lato", sans-serif; */
/* font-weight: 100; */
/* font-weight: 300; */
/* font-weight: 400; */
/* font-weight: 700; */
/* font-weight: 900; */

@font-face {
  font-family: "Pretendard04"; /* 원하는 폰트 이름 */
  src: url("../font/CK_tc04170000104.ttf") format("truetype"); /* 폰트 파일의 경로 */
}

@font-face {
  font-family: "Pretendard05"; /* 원하는 폰트 이름 */
  src: url("../font/CK_tc04170000105.ttf") format("truetype"); /* 폰트 파일의 경로 */
}

@font-face {
  font-family: "Pretendard06"; /* 원하는 폰트 이름 */
  src: url("../font/CK_tc04170000106.ttf") format("truetype"); /* 폰트 파일의 경로 */
}

@font-face {
  font-family: "Pretendard07"; /* 원하는 폰트 이름 */
  src: url("../font/CK_tc04170000107.ttf") format("truetype"); /* 폰트 파일의 경로 */
}

@font-face {
  font-family: "Pretendard08"; /* 원하는 폰트 이름 */
  src: url("../font/CK_tc04170000108.ttf") format("truetype"); /* 폰트 파일의 경로 */
}

@font-face {
  font-family: "Pretendard09"; /* 원하는 폰트 이름 */
  src: url("../font/CK_tc04170000109.ttf") format("truetype"); /* 폰트 파일의 경로 */
}
/* 필요에 따라 추가적인 설정들을 할 수 있습니다 */

/* font-family: 'MyCustomFont', sans-serif;  */

@font-face {
  font-family: "GmarketSansMedium";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

::-webkit-scrollbar {
  width: 0px;
}

.ani {
  opacity: 0;
  transform: translateY(15px);
  transition: all 1s;
}
.ani_T {
  opacity: 0;
  transform: translateY(-15px);
  transition: all 1s;
}
.ani_L {
  opacity: 0;
  transform: translateX(-15px);
  transition: all 1s;
}
.ani_R {
  opacity: 0;
  transform: translateX(15px);
  transition: all 1s;
}
.ani_O {
  opacity: 0;
  transition: all 1s;
}

.aniIn {
  opacity: 1;
  transform: translateY(0);
}
.aniIn_T {
  opacity: 1;
  transform: translateY(0);
}
.aniIn_L {
  opacity: 1;
  transform: translateX(0);
}
.aniIn_R {
  opacity: 1;
  transform: translateX(0);
}
.aniIn_O {
  opacity: 1;
}

.t-delay0_1 {
  transition-delay: 0.1s;
}
.t-delay0_2 {
  transition-delay: 0.2s;
}
.t-delay0_3 {
  transition-delay: 0.3s;
}
.t-delay0_4 {
  transition-delay: 0.4s;
}
.t-delay0_5 {
  transition-delay: 0.5s;
}
.t-delay0_6 {
  transition-delay: 0.6s;
}
.t-delay0_7 {
  transition-delay: 0.7s;
}
.t-delay0_8 {
  transition-delay: 0.8s;
}
.t-delay0_9 {
  transition-delay: 0.9s;
}
.t-delay1 {
  transition-delay: 1s;
}

@keyframes load_R {
  0% {
    transform: translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_L {
  0% {
    transform: translateX(15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_B_T {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes load_bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* wrap */
html {
  height: 100%;
  background: #ffffff;
  /* font-family: "IBM Plex Sans KR", sans-serif; */
  font-family: "Noto Sans KR", sans-serif;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  line-height: 1;
  letter-spacing: -2px;
  word-break: keep-all;
  color: #000;
}
.wrep {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
section {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #000;
}
/* #common {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
} */
.before-load .wrep {
  display: none;
}

#intro {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;

  text-align: center;
  color: white;

  width: 100vw;
  height: 100vh;
  background: black;

  z-index: 9999;
}
#intro .intro_logo {
  margin-top: 50px;
}
#intro .intro_logo img {
}
#intro .title {
}
#intro .title img {
  margin-bottom: 26px;
}
#intro .title p {
  font-size: 26px;
  font-weight: 400;
}

#intro .min_title {
  font-size: 22px;
  font-weight: 400;
  margin: 20px 0 50px;
  display: block;
}
#intro .intro_logo,
#intro .title,
#intro .min_title {
  animation: introText 11s both;
  animation-delay: 2s;
  opacity: 0;
}

#intro .intro_bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;

  width: 100vw;
  height: 100vh;
  object-fit: cover;

  animation: introBg 8s both;
  /* animation-delay: 1s; */
}

@keyframes introBg {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0.15;
  }
}

@keyframes introText {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* header */
.header {
  width: 100%;
  /* height: 120px; */

  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 10000;
  transition: 0.3s;

  /* background: rgba(0, 0, 0, 0.2); */
}
.header.active {
  background: rgba(0, 0, 0, 0.2);
}

.header .inner {
  width: 70%;
  /* height: 100%; */
  margin: 0 auto;
  padding: 10px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .inner .logo {
  width: 16%;
}
.header .inner .logo a {
  width: 100%;
}
.header .inner .logo a img {
  width: 100%;
}

.head_rit {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head_rit .menu_cont {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head_rit .menu_cont li {
  width: 6.3vw;
  height: 100%;
  margin: 0 20px;

  position: relative;
}

.head_rit .menu_cont li a {
  width: 100%;
  height: 100%;
  transition: 0.3s;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 22px;
  font-weight: 500;
  color: white;
  padding: 34px 0;
}

.head_rit .sub_cont {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);

  display: none;
  background: #1b3955;
  border-radius: 20px;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.274);
}
.head_rit .menu_cont li:hover .sub_cont {
  display: block;
}
.head_rit .sub_cont li {
  width: 180px;
  /* padding: 30px 20px 0; */
}
.head_rit .sub_cont li:last-child {
  padding-bottom: 30px;
}
.head_rit .sub_cont li a {
  font-size: 18px;
  font-weight: 500;
  color: white;

  position: relative;

  padding: 20px 0;
  margin: 0;
}
.head_rit .sub_cont li:nth-child(1) a {
  margin-top: 30px;
}
.menu_cont li .sub_cont li a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  transition: 0.3s;

  width: 0;
  height: 2px;
  background: white;
  opacity: 0;
}
.head_rit .sub_cont li a:hover::before {
  width: 60%;
  opacity: 1;
}

.header .inner .call {
  width: 29%;
}
.header .inner .call img {
  width: 100%;
}

/* footer */

/* quick_menu */
.quick_menu {
  position: fixed;
  bottom: -60px;
  left: 0;
  z-index: 1000;
  transition: 0.3s;

  width: 100vw;
  height: 60px;
  background: #1b3955;
}
.quick_menu.active {
  bottom: 0;
}

.quick_menu ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quick_menu ul li {
  flex: 1;
  height: 100%;

  border-right: 2px solid white;
}
.quick_menu ul li:last-child {
  border-right: 0;
}
.quick_menu ul li a {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 18px;
  font-weight: 500;
  color: white;

  transition: 0.5s;
}

.quick_menu ul li:hover a {
  background: #a05f2d;
}

/* footer */
.footer {
  height: 500px;
  background: #272727;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer .title {
  margin-bottom: 62px;
  text-align: center;
}
.footer .title h2 {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}
.footer .title strong {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  line-height: 42px;

  margin: 26px 0 20px;
  display: block;
}
.footer .title span {
  font-size: 20px;
  font-weight: 500;
  color: #fff;

  display: block;
}

.footer .foot_sns {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 50px;
}
.footer .foot_sns a {
  width: 50px;
  height: 50px;
  display: block;
}
.footer .foot_sns a img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.footer .foot_sns a:nth-child(2) {
  margin: 0 32px;
}
