@charset "utf-8";

body {
  width: 100%;
  overflow-x: hidden;
}
.wrap {
  position: relative;
  margin: 0 auto;
  width: 1440px;
  max-width: 100%;
  padding: 0 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body {
    padding-bottom: 84px;
  }
  .wrap {
    padding: 0 16px;
  }
}
@media screen and (max-width: 360px) {
  .wrap {
    padding: 0 10px;
  }
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 102;
}
.header .wrap {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .wrap .mo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  z-index: 2;
}
.header .call {
  display: none;
  width: 62px;
  height: 62px;
  background: #00a0de url(../img/call-icon.png) center center / 32px no-repeat;
}
.header h1 {
  padding-left: 32px;
}
.header h1 a {
  display: flex;
  align-items: center;
  height: 100px;
  font-size: 0;
  line-height: 0;
}
.header h1 a img {
  width: 231px;
}
.menu-btn {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 62px;
  height: 62px;
  background: #f4f4f4;
}
.menu-btn span {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: #acacac;
}
.gnb {
  display: flex;
  gap: 0 2px;
  height: 100%;
  background: #fff;
}
.gnb li {
  position: relative;
}
.gnb li:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5px;
  width: 1px;
  height: 16px;
  background: #aaa;
}
.gnb li:last-child:after {
  display: none;
}
.gnb li a {
  width: 172px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnb li a span {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.5px;
  color: #161616;
}

/* floating button */
.floating-btn {
  position: fixed;
  right: 30px;
  top: calc(50% + 50px);
  transform: translateY(-50%);
  padding: 10px 0px;
  width: 90px;
  text-align: center;
  background: #ffffff;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  z-index: 101;
}
.floating-btn li {
  position: relative;
}
.floating-btn li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e2e2e2;
}
.floating-btn li:last-child:after {
  display: none;
}
.floating-btn ul li:first-child {
  display: none;
}
.floating-btn li a {
  padding: 16px 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 5px 0;
}
.floating-btn li img {
  width: 42px;
}
.floating-btn li img.mo {
  display: none;
}
.floating-btn li span {
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.5px;
}

/* scroll up button */
.scroll-up-btn {
  display: none;
  position: fixed;
  width: 70px;
  height: 70px;
  right: 30px;
  bottom: 30px;
  background: rgba(0, 0, 0, 0.4) url(../img/scroll-up-btn.png) center center / 32px no-repeat;
  border-radius: 100%;
  z-index: 101;
}

@media screen and (max-width: 1150px) {
  .gnb li a {
    width: 140px;
  }
}
@media screen and (max-width: 1000px) {
  .header .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .header h1 a {
    height: 75px;
  }
  .header h1 {
    padding-left: 0;
  }
  .gnb {
    width: 100%;
    justify-content: center;
  }
  .gnb li a {
    height: 40px;
    padding-bottom: 10px;
  }
  .floating-btn {
    top: calc(50% + 57.5px);
  }
}
@media screen and (max-width: 768px) {
  .header .wrap {
    height: 62px;
  }
  .header .wrap .mo-wrap {
    width: 100%;
  }
  .header .call {
    display: inline-block;
  }
  .header h1 {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 10px;
  }
  .header h1 a {
    height: auto;
    display: inline-block;
  }
  .header h1 a img {
    width: 189px;
  }
  .menu-btn {
    display: flex;
  }
  .gnb {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px 0;
    width: 100%;
    height: auto;
    max-height: calc(calc(var(--vh, 1vh) * 100) - 62px);
    transition: 0.3s;
    overflow: auto;
  }
  .header.on .gnb {
    transform: translateY(100%);
  }
  .gnb li:after {
    display: none;
  }
  .gnb li a {
    padding-bottom: 0;
    width: 100%;
    height: 70px;
    text-align: center;
  }
  .gnb li a span {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #353535;
  }
  .floating-btn {
    top: auto;
    transform: unset;
    border-radius: unset;
    padding: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .floating-btn ul {
    display: flex;
  }
  .floating-btn ul li {
    flex: 1;
  }
  .floating-btn ul li:after {
    left: auto;
    right: 0;
    width: 1px;
    height: 100%;
    background: #f0f0f0;
  }
  .floating-btn ul li:first-child {
    display: block;
  }
  .floating-btn li a {
    height: 84px;
  }
  .floating-btn li img {
    display: none;
  }
  .floating-btn li img.mo {
    display: block;
    width: auto;
    height: 24px;
  }
  .floating-btn li span {
    font-size: 14px;
  }
  .scroll-up-btn {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 100px;
    background-size: 24px auto;
  }
}

/* footer */
footer {
  padding: 50px 0 80px;
  background: #0e0e0e;
}
footer .content {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 50px 0 70px;
  }
}

/* text style */
.mo-show {
  display: none !important;
}

.color-fff {
  color: #fff;
}
.color-primary500 {
  color: #00a0de;
}
.color-primary600 {
  color: #0093d1;
}
.color-primary700 {
  color: #0080be;
}
.color2 {
  color: #4bd3ff;
}
.color-tertiary {
  color: #acacac;
}
.color-secondary {
  color: #6b6b6b;
}
.bg-febf00 {
  background: #febf00;
}
.bg-ff006e {
  background: #ff006e;
}
.bg-55dd27 {
  background: #55dd27;
}
.bg-primary500 {
  background: #00a0de !important;
}

.h1-bold {
  font-weight: 700;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -0.8px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
.h2-bold {
  font-weight: 700;
  font-size: 48px;
  line-height: 62px;
}
.h2-extra-light {
  font-weight: 200;
  font-size: 48px;
  line-height: 62px;
  letter-spacing: -1px;
}
.h3-bold {
  font-weight: 700;
  font-size: 32px;
  line-height: 54px;
  letter-spacing: -1.5px;
}
.h3-bold.type2 {
  letter-spacing: -0.5px;
}
.h3-bold.type3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 45px;
  letter-spacing: -0.5px;
}
.h4-bold {
  font-weight: 700;
  font-size: 28px;
  line-height: 39px;
  letter-spacing: -0.5px;
}
.h4-bold.type2 {
  font-weight: 400;
  font-size: 28px;
  line-height: 33px;
  letter-spacing: -0.8px;
}
.text-base-regular {
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: -0.5px;
}
.text-l-medium {
  font-weight: 500;
  font-size: 22px;
  line-height: 37px;
  letter-spacing: -0.5px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
.text-xl-medium {
  font-weight: 500;
  font-size: 24px;
  line-height: 41px;
  letter-spacing: -0.5px;
}
.text-l-regular {
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 37px;
  letter-spacing: -0.5px;
  font-weight: 400;
}
.text-l-regular.type3 {
  font-size: 22px;
  line-height: 37.4px;
  letter-spacing: 2px;
}
.text-m-regular {
  font-weight: 600;
  font-size: 22px;
  line-height: 37px;
  letter-spacing: -0.5px;
}
.text-s-regular {
  font-size: 20px;
  line-height: 33.5px;
  letter-spacing: -0.5px;
  font-weight: 400;
}
.text-l-semibold {
  font-weight: 600;
  font-size: 22px;
  line-height: 37px;
  letter-spacing: -0.5px;
}
.text-xl-semibold {
  font-weight: 600;
  font-size: 24px;
  line-height: 41px;
  letter-spacing: -0.5px;
}
.text-sm-regular {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
}
.text-sm-medium {
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
}
.p1 {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.7px;
  color: #ccc;
}
.noto-serif-kr {
  font-family: "Noto Serif KR", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  .mo-show {
    display: block !important;
  }
  .mo-hide {
    display: none !important;
  }
  .h1-bold {
    font-size: 36px;
    line-height: 47px;
    letter-spacing: -1.5px;
  }
  .h2-bold {
    font-size: 30px;
    line-height: 39px;
    letter-spacing: -1px;
  }
  .h2-bold.type2 {
    font-size: 36px;
    line-height: 50px;
    letter-spacing: -1.5px;
  }
  .h2-extra-light {
    font-size: 30px;
    line-height: 39px;
  }
  .h3-bold {
    font-weight: 700;
    font-size: 28px;
    line-height: 48px;
    letter-spacing: -1.5px;
  }
  .h3-bold.type2 {
    letter-spacing: -1.5px;
  }
  .h3-bold.type3 {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: -1.5px;
  }
  .h4-bold {
    font-size: 24px;
    line-height: 34px;
  }
  .h4-bold.type2 {
    font-size: 24px;
    line-height: 31px;
  }
  .text-base-regular {
    font-size: 16px;
    line-height: 26px;
  }
  .text-l-medium {
    font-size: 18px;
    line-height: 29px;
  }
  .text-xl-medium {
    font-weight: 400;
    font-size: 24px;
    line-height: 25px;
    letter-spacing: -0.8px;
  }
  .text-xl-medium.type2 {
    font-size: 18px;
  }
  .text-xl-medium.type3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: -0.5px;
  }
  .text-l-regular {
    line-height: 37px;
  }
  .text-l-regular.type2 {
    font-size: 16px;
    line-height: 27px;
  }
  .text-l-regular.type3 {
    font-size: 18px;
    line-height: 31px;
  }
  .text-m-regular {
    font-size: 16px;
    line-height: 27px;
  }
  .text-s-regular {
    font-size: 16px;
    line-height: 27px;
  }
  .text-sm-regular {
    line-height: 26px;
  }
  .text-l-semibold {
    font-size: 18px;
    line-height: 29px;
  }
  .text-xl-semibold {
    font-size: 16px;
    line-height: 27px;
  }
  .text-xl-semibold.type2 {
    font-size: 18px;
    line-height: 23px;
  }
  .noto-serif-kr {
    font-size: 16px;
    line-height: 27px;
  }
}

/* scroll animation */
.scroll-ani {
  display: block;
  overflow: hidden;
}
.scroll-ani > * {
  opacity: 0;
  display: block;
}
.scroll-ani.fade-up > * {
  transform: translateY(80px);
}
.scroll-ani.active > * {
  opacity: 1;
  transform: translateZ(0) !important;
  transition-timing-function: ease-out;
  transition-property: opacity, transform;
}
body:not(.resize) .scroll-ani.active > * {
  transition-duration: 0.6s;
}
body:not(.resize) .scroll-ani.active.fade > * {
  transition-duration: 0.7s;
}
/* body:not(.resize) .scroll-ani.active.delay1 > * {
  transition-delay: 300ms;
}
body:not(.resize) .scroll-ani.active.delay2 > * {
  transition-delay: 600ms;
} */
@media screen and (max-width: 768px) {
  .scroll-ani.fade-up > * {
    transform: translateY(60px);
  }
  /* body:not(.resize) .scroll-ani.active.delay1 > * {
    transition-delay: 0ms;
  }
  body:not(.resize) .scroll-ani.active.delay2 > * {
    transition-delay: 0ms;
  } */
}

/* style */
.flex-box {
  margin: 0 auto;
  display: flex;
  width: 1170px;
  max-width: 100%;
  text-align: left;
}
.ai-center {
  align-items: center;
}
.jc-center {
  justify-content: center;
}
.fd-column {
  flex-direction: column;
}
.fd-row-revers {
  flex-direction: row-reverse;
}
.flex1 {
  flex: 1;
}
.gap24 {
  gap: 24px;
}
.pd0 {
  padding: 0 !important;
}
