/* 리셋 */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 0vw;
}

* {
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  word-break: keep-all;
}

/* 공통 */

img {
  width: 100%;
  display: block;
  pointer-events: none;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.front {
  position: relative;
  z-index: 10;
  width: 100%;
}

.vw_img {
  width: unset;
  max-width: 101%;
  min-width: 100%;
}

.vw_himg {
  width: unset;
  max-height: 101%;
  min-height: 100%;
}

.flexcol {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.mobile-pc {
  display: none;
}

.pc-mobile {
  display: flex;
}

.absol {
  position: absolute;
}


.rltv {
  position: relative;
}

/* 클릭 요소 드래그 선택 방지 (탭·버튼·nav 등에 .no-select 부여) */
.no-select,
.swiper-button-prev,
.swiper-button-next {
  -webkit-user-select: none;
  user-select: none;
}

@media screen and (max-width:599px) {

  .mobile-pc {
    display: flex;
  }

  .pc-mobile {
    display: none;
  }

}