@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=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");

::-webkit-scrollbar {
  width: 0;
}
@keyframes load_top {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_R {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_L {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes load_bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* animation: load_bg 2s both;
animation-delay: 0.2s; */

.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 2s;
}

.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;
}

/* wrap */
html {
  height: 100%;
  background: #ffffff;
  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;

  /* height: 300vh; */
  /* background: pink; */
}
/* section:nth-child(even) {
  background: skyblue;
} */

a {
  text-decoration: none;
  color: #000;
}
#common {
  width: 100%;
  max-width: 1920px;
  min-width: 1400px;
  margin: 0 auto;
}

/* header */
.header {
  height: 80px;

  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  /* transition: 2s; */
  z-index: 9999;

  background: white;

  animation: load_bg 2s both;
  animation-delay: 1s;
}
/* .header.active {
  top: -100%;
} */
.header .inner {
  width: 92%;
  height: 100%;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
}
.header .logo a {
}
.header .logo a img {
}

.header .menu_wrap {
}
.header .menu_wrap ul {
  /* width: 676px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .menu_wrap ul li {
  margin: 0 26px;
  position: relative;
}
.header .menu_wrap ul li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  transition: 0.3s;
  opacity: 0;

  width: 0;
  height: 3px;
  background: #c3252e;
}
.header .menu_wrap ul li:hover::before {
  width: 100%;
  opacity: 1;
}
.header .menu_wrap ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #272727;
}

.header .call {
  margin-left: 56px;
}
.header .call img {
}

.quick_menu {
  position: fixed;
  right: 0;
  top: 80px;
  width: 80px;
  height: calc(100% - 80px);
  background: #000;
  z-index: 8999;

  animation: load_bg 2s both;
  animation-delay: 1s;
}
.quick_menu .open {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #c3252e;
  text-align: center;
}
.quick_menu .open span {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.quick_menu .quick_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.quick_menu .quick_btns .line {
  display: block;
  width: 16px;
  height: 1px;
  background: #ffffff;
  margin: 40px 0;
}
.quick_menu .quick_btns a {
}
.quick_menu .quick_btns a.item01 {
  margin-top: 42px;
}
.quick_menu .quick_btns a.item02 {
}
.quick_menu .quick_btns a img {
}

/* footer */
.footer {
  background: #d9d9d9;
}
.footer .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 62px 0;
}
.footer img {
}
.footer img.foot_logo {
}
.footer img.foot_cont {
  margin-top: 22px;
}
.footer .desc {
  text-align: center;
  margin: 32px 0 32px;
}
.footer .desc p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #7d7d7d;
}

.footer .ad_cont {
}
.footer .ad_cont h2 {
  font-size: 16px;
  font-weight: 600;
  color: #7d7d7d;
}
.footer .ad_cont h2 a {
  font-size: 16px;
  font-weight: 600;
  color: #7d7d7d;
}
