@charset "UTF-8";
:root {
  --fs-com: 2rem;
  --fs-xl: 2.4rem;
  --fs-lg: 1.8rem;
  --fs-md: 1.6rem;
  --fs-sm: 1.5rem ;
}

@media all and (max-width: 85.375rem) {
  :root {
    --fs-com: 1.8rem;
    --fs-xl: 2.1rem;
    --fs-lg: 1.6rem;
    --fs-md: 1.4rem;
    --fs-sm: 1.3rem ;
  }
}
@media all and (max-width: 64rem) {
  :root {
    --fs-xl: 2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  :root {
    --fs-com: 1.6rem;
    --fs-xl: 1.8rem;
    --fs-lg: 1.4rem;
    --fs-md: 1.2rem;
    --fs-sm: 1.1rem ;
  }
}
@media all and (max-width: 47.9375rem) {
  :root {
    --fs-com: 1.4rem;
    --fs-xl: 1.6rem;
    --fs-lg: 1.2rem;
    --fs-md: 1.1rem;
  }
}
body {
  line-height: 1;
  font-size: var(--fs-com);
  font-weight: 400;
  font-family: "AppleSDGothicNeo", sans-serif;
  color: #000;
  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;
}
.txt-right {
  text-align: right !important;
}

.br {
  display: block;
}

.inline {
  display: inline;
}

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

.ff-kr {
  font-family: "Noto Sans KR", 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-800 {
  font-weight: 800 !important;
}

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

.fc-red {
  color: #df2f24 !important;
}

/* 배경컬러*/
.bg-gray {
  background-color: #f7f5f5;
}

/* 보더 */
.border-top-2 {
  border-top: 2px solid #121212;
}

.border-top-3 {
  border-top: 3px solid #121212;
}

.border-bottom-1 {
  border-bottom: 1px solid #000;
}

.br-0 {
  border-right: 0 none !important;
}

.bl-0 {
  border-left: 0 none !important;
}

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

.bt-0 {
  border-top: 0 none !important;
}

/* 마진 */
.mt-0 {
  margin-top: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* 패딩 */
.pt-0 {
  padding-top: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

/* 언어 */
.lang-wrap {
  position: relative;
  text-align: right;
  color: #fff;
}
.lang-wrap .lang-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding-right: 2rem;
}
.lang-wrap .lang-btn .fi {
  display: block;
  margin-right: 0.5rem;
  width: 2rem;
}
.lang-wrap .lang-btn .fi img {
  vertical-align: middle;
}
.lang-wrap .lang-btn::after {
  position: absolute;
  right: 0;
  font-family: "fontello";
  content: "\e809";
  transform: rotate(0);
  transition: transform 0.2s;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
}
.lang-wrap .lang-btn.active::after {
  transform: rotate(180deg);
  transition: transform 0.2s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
}
.lang-wrap .lang-option {
  display: none;
  position: absolute;
  left: 0;
  padding: 0.75rem 1rem;
  width: calc(100% + 2px);
  background-color: rgba(31, 31, 31, 0.1);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.lang-wrap .lang-option a {
  display: block;
  padding: 0.5rem;
  padding-left: 2rem;
  text-align: left;
}
.lang-wrap .lang-option a:hover, .lang-wrap .lang-option a:focus {
  font-weight: 700;
}

/* 셀렉트 */
.z-index-100 {
  z-index: 100 !important;
  position: relative !important;
}

.select-wrap .select-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.select-wrap .select {
  margin: 0 0.5rem;
}
.select-wrap .select-arrow {
  position: relative;
}
.select-wrap .select-arrow::after {
  position: absolute;
  top: -0.7rem;
  content: "\e803";
  font-family: "fontello";
  transform: rotate(0);
  transition: transform 0.6s;
  -webkit-transition: transform 0.6s;
  -moz-transition: transform 0.6s;
  -ms-transition: transform 0.6s;
  -o-transition: transform 0.6s;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
.select-wrap.active .select-arrow::after {
  transform: rotate(180deg);
  transition: transform 0.6s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.select-wrap .option {
  display: none;
}