@charset "UTF-8";
:root {
  --blue: #06a8e2;
  --green: #88c86f;
  --serif: "Noto Serif KR", serif;
  --deco: 'OKGUNG';
  --acc: 'SBAggroB';
}
.serif {
  font-family: var(--serif)
}
.deco {
  font-family: var(--deco);
  font-weight: 100 !important;
}
.acc {
  font-family: var(--acc);
  font-weight: 100 !important;
}
.absol {
  position: absolute;
}
.rltv {
  position: relative;
}
.mont {
  font-family: "Montserrat", sans-serif;
}
/***font setting***/
/********** noto sans & serif*******/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Serif+KR:wght@200..900&display=swap');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
/******** Montserrat **********/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*PT serif*/
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/*더페이스샵 잉크립퀴드*/
@font-face {
  font-family: "InkLipquid";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/InkLipquid.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OKGUNG';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/OKGUNG.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
    font-family: 'SBAggroB';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/************inner size*************/
.inner {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* ===========================
   Modern CSS Reset (2025)
   =========================== */

html, body {
  margin: 0;
  padding: 0;
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  font-size: 13px;
  color: #111;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

img, video {
  max-width: 100%;
  height: auto;
  /* display: block; */
  object-fit: cover;
  vertical-align: middle;
}

input, textarea, select, button {
  /* font: inherit; */
  /* color: inherit; */
  /* background: none; */
  border: none;
  /* outline: none; */
  /* appearance: none; */
}

button {
  cursor: pointer;
}
/* table {
  border-collapse: collapse;
  border-spacing: 0;      
  max-width: 100%;
  table-layout: auto;
  word-break: keep-all;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
} */

/*카카오맵 하단 정보표시 숨기기(필요시, .location_map에 담으면됨)*/
.root_daum_roughmap .cont {
  display: none !important;
}
/*fullpage 워터마크삭제*/
.fp-watermark {
  display: none !important;
}
/****swiper btn custom*****/
.swiper .swiper-btn-box {
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.swiper-btn-box .swiper-button-prev,
.swiper-btn-box .swiper-button-next {
  background: #bc0d138e;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: none;
}
.swiper-btn-box .swiper-button-prev:before,
.swiper-btn-box .swiper-button-next:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
}
.swiper-btn-box .swiper-button-prev:after,
.swiper-btn-box .swiper-button-next:after {
  display: none;
}
.swiper-btn-box .swiper-button-prev:before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.swiper-btn-box .swiper-button-next:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.swiper .swiper-btn-small {
  width: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.swiper-btn-small .swiper-button-prev,
.swiper-btn-small .swiper-button-next {
  background: #00000050;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: none;
}
.swiper-btn-small .swiper-button-prev:before,
.swiper-btn-small .swiper-button-next:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
}
.swiper-btn-small .swiper-button-prev:after,
.swiper-btn-small .swiper-button-next:after {
  display: none;
}
.swiper-btn-small .swiper-button-prev:before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.swiper-btn-small .swiper-button-next:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #bf1035;
  opacity: 1;
}
