@charset "UTF-8";

/* 기본 설정들 */
html {
  overflow-x: hidden;
}

html * {
  word-break: keep-all;
  margin: 0;
  padding: 0;
  font-family: "Pretendard", sans-serif;
  line-height: 1;
}

html,
body {
  font-family: "Pretendard", sans-serif;
  color: #333;
}

img {
  display: inline-block;
  max-width: 100%;
}

img,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  /* -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none; */
  max-width: 100%;
}
b {
  font: inherit;
}

/* aos 애니메이션 수정 */
[data-aos="fade-up"] {
  transform: translate3d(0, 10px, 0);
}

[data-aos="fade-right"] {
  transform: translate3d(-10px, 0, 0);
}

[data-aos="fade-left"] {
  transform: translate3d(10px, 0, 0);
}

/* 모달, 팝업 공통 css */
.modal {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.modal .modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pc_block {
  display: block;
}

.mobile_block {
  display: none;
}

.tablet_none {
  display: block;
}

/* 웹접근성 고려 */
.blind {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  bottom: 0;
  overflow: hidden;
  white-space: nowrap;
}

.img_cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

._cover > video,
._cover > iframe,
._cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect_box {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.aspect_box > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

img {
  display: block;
}

.none_1024 {
  display: none;
}

@media screen and (max-width: 1024px) {
  .block_1024 {
    display: none;
  }

  .none_1024 {
    display: block;
  }
}

@media screen and (max-width: 980px) {
  .tablet_none {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc_block {
    display: none;
  }

  .mobile_block {
    display: block;
  }
}
