@charset "UTF-8";
@import url("../fonts/fonts.css");
@import url("./reset.css");
/* 인풋스타일*/
input::-moz-placeholder {
  font-size: inherit;
}
input::placeholder {
  font-size: inherit;
}

:root {
  --com-f: 1.8rem;
  --visu-f: 4.8rem;
  --tit-f: 3.6rem;
  --lg-f: 2.4rem;
  --md-f: 1.6rem;
  --sm-f: 1.4rem;
}

@media all and (max-width: 85.375rem) {
  :root {
    --com-f: 1.6rem;
    --visu-f: 3.4rem;
    --tit-f: 3.3rem;
    --lg-f: 2.2rem;
    --md-f: 1.4rem;
    --sm-f: 1.2rem;
  }
}
@media all and (max-width: 64rem) {
  :root {
    --com-f: 1.6rem;
    --visu-f: 3.4rem;
    --tit-f: 3.2rem;
    --lg-f: 2rem;
    --md-f: 1.4rem;
    --sm-f: 1.2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  :root {
    --tit-f: 3rem;
  }
}
@media all and (max-width: 36rem) {
  :root {
    --com-f: 1.4rem;
    --visu-f: 2.5rem;
    --tit-f: 2.3rem;
    --lg-f: 2rem;
    --md-f: 1.2rem;
    --sm-f: 1rem;
  }
}
body {
  font-size: var(--com-f);
  font-weight: 400;
  font-family: "SUIT", sans-serif;
  color: #000;
  line-height: 1;
  word-break: keep-all;
}

/* visible*/
.d-none {
  display: none !important;
}

.hidden {
  overflow: hidden !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 1px !important;
}

/* 정렬 */
.flex-bt {
  display: flex;
  justify-content: space-between;
}
.flex-start {
  display: flex;
  justify-content: flex-start;
}
.flex-end {
  display: flex;
  justify-content: flex-end;
}

.txt-center {
  text-align: center !important;
}
.txt-left {
  text-align: left !important;
}
.txtright {
  text-align: right !important;
}

.br {
  display: block;
}

.flex-1 {
  flex: 1 1 0 !important;
}

/* 폰트 */
.ff-suit {
  font-family: "SUIT", sans-serif;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

/* 보더 */
.border-t-0 {
  border-top: 0 none !important;
}

.border-b-0 {
  border-bottom: 0 none !important;
}

/* 셀렉트*/
select {
  width: 100%;
  height: 100%;
  border: 0 none;
}

/* 버튼 */
.btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.more-btn {
  opacity: 0.6;
  position: relative;
  padding: 1rem 5rem 1rem 2rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--md-f);
  color: #fff;
  line-height: 1.5;
  border: 1px solid #fff;
}
.more-btn::after {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  width: 1.8rem;
  height: 0.6rem;
  content: "";
  background: url("../img/icon/link-btn-wh.svg") center/contain no-repeat;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.more-btn:hover {
  background-color: #E41C37;
  border: 1px solid #E41C37;
}

/* 패스워드 커스텀 */
input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
  display: none;
}

.figure {
  font-size: 0;
}
.figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}