@charset "UTF-8";
/* Nesting Css */
/* 폰트 파일 */
/* @import url("/assets/fonts/gmarket/gmarketsans.css"); */
/* @import url("/assets/fonts/pretendard/variable/pretendardvariable.css"); */
/* ---------------------------- Variable ---------------------------- */
:root {
  /* font-family */
  --page-font-family: "Pretendard Variable", "notokr", sans-serif;
  /* page global color */
  --page-point-color: #e74a0f;
  --page-point-color-light: #e1e8fa;
  --page-point-color-dark: #d04f00;
  --page-point-color-hover: var(--page-point-color-dark);
  --page-danger-color: #f32222;
  --page-danger-color-hover: #cc0a0a;
  --page-dark-color: #4f5356;
  --page-dark-color-hover: #333;
  --page-grey-color: #ddd;
  --page-grey-color-hover: #c4c4c4;
  /* swiper */
  --swiper-theme-color: var(--page-point-color) !important;
  /* navbar */
  --navbar-height: clamp(60px, 10vw, 100px);
  /* container */
  --container-padding-inline: 15px;
  /* snb */
  --snb-height: 67px;
  /* common */
  --radius: 15px;
  --svh100: 100svh;
  /* board */
  --form-height: 45px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 15px;
  --radius-xl: 20px;
  /* google-material-symbols */
  --gms: "Material Symbols Outlined";
  --gms-grad-low: "GRAD" -25;
  --gms-grad-zero: "GRAD" 0;
  --gms-grad-high: "GRAD" 200;
  --gms-opsz: "opsz" 48;
  /* fill icon */
  --gms-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
  --gms-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
  --gms-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
  --gms-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
  --gms-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
  --gms-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
  --gms-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
  /* outlined icon */
  --gms-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
  --gms-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
  --gms-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
  --gms-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
  --gms-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
  --gms-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
  --gms-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
}

/* svh 미지원 */
@supports not (max-height: 100svh) {
  :root {
    --svh100: 100vh;
  }
}
@media (max-width: 991.98px) {
  :root {
    --container-padding-inline: 20px;
  }
}
/* ---------------------------- Reset ---------------------------- */
* {
  box-sizing: border-box;
  word-break: keep-all;
  float: unset;
  -webkit-tap-highlight-color: transparent;
}
*::before, *::after {
  content: none;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 14px;
}

#site {
  margin: 0;
  padding: 0;
  font-family: var(--page-font-family);
  /* display: none; */
  opacity: 0;
  /* FOUC */
}
#site > .container {
  max-width: inherit;
  width: 100%;
  padding: 0;
}
#site > *:not(#force__wrapper) {
  visibility: hidden;
}
#site.loaded {
  /* display: block; */
  opacity: 1;
}
#site.loaded > *:not(#force__wrapper) {
  visibility: visible;
}
#site .hide {
  /* display: none !important; */
  opacity: 1 !important;
}

::selection {
  background-color: var(--page-point-color);
  color: #fff;
}

select::-ms-expand {
  display: none;
}

form,
fieldset {
  all: unset;
  box-sizing: border-box;
  display: block;
}

/* input 색상 초기화 */
input:where(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.cke_screen_reader_only {
  bottom: 0;
}

.cke_resizer_ltr {
  float: right;
}

.cke_reset_all *,
.cke_reset_all a,
.cke_reset_all textarea {
  white-space: wrap !important;
}

.caret {
  display: none;
}

/* material-symbols */
.material-symbols-outlined {
  font-family: var(--gms) !important;
  overflow: hidden;
  display: inline-flex;
  line-height: 1;
  font-variation-settings: var(--gms-300-out), var(--gms-grad-zero);
  user-select: none;
}

figure {
  margin: 0;
}

/* ---------------------------- Paragraph ---------------------------- */
:is(ol, ul, li, dl) {
  all: unset;
  box-sizing: border-box;
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

:is(p, h1, h2, h3, h4, h5, h6, dt, dd) {
  all: unset;
  box-sizing: border-box;
  display: block;
}

:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
  position: relative;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  line-height: 1.5;
}

:is(h1, h2, h3, h4, h5, h6, dt, b, strong) {
  color: #222;
}

:is(p, li, dd, small) {
  color: #555;
}

:is(small, .small) {
  font-size: 0.8em;
}

br {
  visibility: visible;
  opacity: 0;
}

.big {
  font-size: 1.2em;
}

a:not(.btn) {
  text-decoration: none;
  color: inherit;
}

a:not(.btn):where(:focus, :hover) {
  text-decoration: unset;
  color: unset;
}

.text-danger {
  color: var(--page-danger-color);
}

/* ---------------------------- Button ---------------------------- */
.btn {
  all: unset;
  box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  place-content: center;
  place-items: center;
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1;
  height: var(--form-height);
  padding: 0 1.2em;
  border-radius: var(--radius-sm);
  outline: none;
  white-space: nowrap;
  /* <a href="/public/download/2505/" download class="btn btn-down"><b>다운로드</b><span class="material-symbols-outlined">sim_card_download </span></a> */
  /* [hover] PC 환경에서만 :hover 효과 적용  */
}
.btn:is(.btn-primary, #btn_modify) {
  background-color: var(--page-point-color);
  border: 1px solid var(--page-point-color);
  color: #fff;
}
.btn:is(.btn-primary, #btn_modify):is(:hover, :focus) {
  background-color: var(--page-point-color-hover);
}
.btn:is(#btn_delete, .btn-danger) {
  background-color: var(--page-danger-color);
  border: 1px solid var(--page-danger-color);
}
.btn:is(#btn_delete, .btn-danger):is(:hover, :focus) {
  background-color: var(--page-danger-color-hover);
}
.btn.btn-outline-primary {
  background: none;
  border: 1px solid var(--page-point-color);
  color: var(--page-point-color);
}
.btn.btn-outline-primary:is(:hover, :focus) {
  background-color: var(--page-point-color);
  color: #fff;
}
.btn.btn-outline-danger {
  background: none;
  border: 1px solid var(--page-danger-color);
  color: var(--page-danger-color);
}
.btn.btn-outline-danger:is(:hover, :focus) {
  background-color: var(--page-danger-color);
  color: #fff;
}
.btn:is(.btn-secondary, .btn-default) {
  background-color: var(--page-grey-color);
  border: 1px solid var(--page-grey-color);
  color: #000;
}
.btn:is(.btn-secondary, .btn-default):is(:hover, :focus) {
  background-color: var(--page-grey-color-hover);
}
.btn.btn-dark {
  background-color: var(--page-dark-color);
  border: 1px solid var(--page-dark-color);
  color: #fff;
}
.btn.btn-dark:is(:hover, :focus) {
  background-color: var(--page-dark-color-hover);
}
.btn.btn-outline-dark {
  border: 1px solid var(--page-dark-color);
  color: var(--page-dark-color);
}
.btn.btn-outline-dark:is(:hover, :focus) {
  background-color: var(--page-dark-color);
  color: #fff;
}
.btn.btn-lg {
  font-size: clamp(14px, 5vw, 16px);
  height: 50px;
}
.btn.btn-danger {
  color: #fff;
}
.btn.btn-down {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-inline: clamp(20px, 2vw, 30px) clamp(15px, 2vw, 25px);
  width: fit-content;
  margin-inline: auto;
  color: #fff;
  height: clamp(50px, 5vw, 60px);
  border: 1px solid #333;
  background: #fff;
  color: #222;
}
.btn.btn-down span {
  color: #222;
  font-variation-settings: var(--gms-500-out);
}
.btn.btn-down b {
  color: inherit;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
}
@media (hover: hover) {
  .btn.btn-primary:where(:hover, :focus) {
    background-color: var(--page-point-color-hover);
    border-color: var(--page-point-color-hover);
  }
  .btn.btn-secondary:where(:hover, :focus) {
    color: #000;
    background-color: var(--page-grey-color-hover);
    border-color: var(--page-grey-color);
  }
  .btn.btn-down:hover {
    background: #222;
    color: #fff;
  }
  .btn.btn-down:hover span {
    color: inherit;
  }
}

/* 버튼 비활성화 */
button[disabled] {
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
  filter: grayscale(1);
}

/* ---------------------------- Image ---------------------------- */
.img-box {
  position: relative;
  display: flex;
}

.img-responsive {
  display: flex;
  max-width: 100%;
  height: auto;
}

img {
  user-select: none;
  flex-shrink: 0;
  image-orientation: from-image;
}

.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

*:has(> .bg) {
  position: relative;
}

/* ---------------------------- Layout ---------------------------- */
:where(.container, .row) {
  position: relative;
}

/* container */
[class*=container] {
  width: 100%;
  padding: unset;
  margin-inline: auto;
  padding-inline: var(--container-padding-inline);
  /* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
}
[class*=container]::before, [class*=container]::after {
  content: none;
}
@media (min-width: 1360px) {
  [class*=container] {
    max-width: 1330px;
  }
}
@media (max-width: 991.98px) {
  [class*=container] {
    max-width: 800px;
  }
}

.row {
  margin: 0;
}
.row::before, .row::after {
  content: none;
}

:where([class*=row-], [class*=-row]) {
  display: flex;
  gap: 30px;
}

.clearfix {
  width: 100%;
}

.col {
  flex: 1;
  padding: 0;
}
.col.auto {
  flex: 0 1 auto;
}

/* 그리드 행 */
[grid-rowspan="1"] {
  grid-row: span 1;
}

[grid-rowspan="2"] {
  grid-row: span 2;
}

[grid-rowspan="3"] {
  grid-row: span 3;
}

[grid-rowspan="4"] {
  grid-row: span 4;
}

[grid-rowspan="5"] {
  grid-row: span 5;
}

[grid-rowspan="6"] {
  grid-row: span 6;
}

[grid-rowspan="7"] {
  grid-row: span 7;
}

[grid-rowspan="8"] {
  grid-row: span 8;
}

[grid-rowspan="9"] {
  grid-row: span 9;
}

[grid-rowspan="10"] {
  grid-row: span 10;
}

[grid-rowspan="11"] {
  grid-row: span 11;
}

[grid-rowspan="12"] {
  grid-row: span 12;
}

/* 그리드 열 */
[grid-colspan="1"] {
  grid-column: span 1;
}

[grid-colspan="2"] {
  grid-column: span 2;
}

[grid-colspan="3"] {
  grid-column: span 3;
}

[grid-colspan="4"] {
  grid-column: span 4;
}

[grid-colspan="5"] {
  grid-column: span 5;
}

[grid-colspan="6"] {
  grid-column: span 6;
}

[grid-colspan="7"] {
  grid-column: span 7;
}

[grid-colspan="8"] {
  grid-column: span 8;
}

[grid-colspan="9"] {
  grid-column: span 9;
}

[grid-colspan="10"] {
  grid-column: span 10;
}

[grid-colspan="11"] {
  grid-column: span 11;
}

[grid-colspan="12"] {
  grid-column: span 12;
}

:is([class*=hidden]) {
  display: none;
  /* // Small devices (landscape phones, 576px and up) */
  /* // Medium devices (tablets, 768px and up) */
  /* // Large devices (desktops, 992px and up) */
  /* // X-Large devices (large desktops, 1200px and up) */
  /* // XX-Large devices (larger desktops, 1400px and up) */
}
@media (min-width: 320px) {
  :is([class*=hidden])[class*=-xs] {
    display: inherit;
  }
}
@media (min-width: 576px) {
  :is([class*=hidden])[class*=-sm] {
    display: inherit;
  }
}
@media (min-width: 768px) {
  :is([class*=hidden])[class*=-md] {
    display: inherit;
  }
}
@media (min-width: 992px) {
  :is([class*=hidden])[class*=-lg] {
    display: inherit;
  }
}
@media (min-width: 1200px) {
  :is([class*=hidden])[class*=-xl] {
    display: inherit;
  }
}
@media (min-width: 1400px) {
  :is([class*=hidden])[class*=-xxl] {
    display: inherit;
  }
}

:is([class*=visible]) {
  display: none;
  /* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
  /* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
  /* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
  /* [max-xx-lager / desktop] 데스크탑, 1400px 미만 ▼ */
}
@media (max-width: 319.98px) {
  :is([class*=visible])[class*=-xs] {
    display: inherit;
  }
}
@media (max-width: 575.98px) {
  :is([class*=visible])[class*=-sm] {
    display: inherit;
  }
}
@media (max-width: 767.98px) {
  :is([class*=visible])[class*=-md] {
    display: inherit;
  }
}
@media (max-width: 991.98px) {
  :is([class*=visible])[class*=-lg] {
    display: inherit;
  }
}
@media (max-width: 1199.98px) {
  :is([class*=visible])[class*=-xl] {
    display: inherit;
  }
}
@media (max-width: 1399.98px) {
  :is([class*=visible])[class*=-xxl] {
    display: inherit;
  }
}

.center-block {
  display: block;
  margin-inline: auto;
}

.center-flex {
  display: flex;
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/* ---------------------------- Modal, Jquery Ui ---------------------------- */
.ui-widget {
  font-family: inherit;
  z-index: 10000;
}
.ui-widget :is(input, select, textarea, button) {
  font-family: inherit;
}
.ui-widget .ui-datepicker select:is(.ui-datepicker-month, .ui-datepicker-year) {
  -webkit-appearance: none;
  background: none;
  border: 0;
  width: auto;
}

#site.modal-open {
  overflow: unset;
  padding-right: 0;
}
#site.modal-open .navbar {
  padding-right: 0;
}

.modal-backdrop {
  display: none;
}

.modal {
  z-index: 10000;
  display: flex;
  width: 100%;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding-block: calc(var(--navbar-height) / 2);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade {
  opacity: 0;
}
.modal.fade.in {
  animation: modalFade 0.25s 0s forwards;
}
.modal.fade.in .modal-dialog {
  animation: modalPop 0.35s 0.05s forwards;
}
.modal.in {
  z-index: 20000;
  scale: 1;
}
.modal:not(.in) {
  display: none;
  opacity: 0;
  scale: 0;
}
.modal .modal-body {
  position: relative;
  padding: 30px;
}
.modal .modal-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 30px;
}
.modal .modal-header::before, .modal .modal-header::after {
  content: none;
}
.modal .modal-header .modal-title {
  font-size: clamp(17px, 3vw, 18px);
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
}
.modal .modal-header .close {
  line-height: 0;
  margin-top: 0;
  opacity: 0.2;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
  appearance: none;
  font-size: 21px;
  font-weight: 700;
  color: #000;
  text-shadow: 0 1px 0 #fff;
}
.modal .modal-header .close span {
  font-variation-settings: var(--gms-400-out);
  font-size: 32px;
}
.modal .modal-header .close:hover {
  opacity: 1;
}
.modal .modal-footer {
  display: flex;
  gap: 5px;
  padding: 25px 30px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal .modal-footer .btn {
  flex: 1;
}
.modal .modal-title {
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
}
.modal .modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: 0;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}
@media (min-width: 768px) {
  .modal .modal-content {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
  }
}
.modal .modal-dialog {
  position: relative;
  transform: translate(0, 0) !important;
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  height: fit-content;
  margin-block: auto;
  scale: 0.9;
}
@media (min-width: 768px) {
  .modal .modal-dialog {
    max-width: 600px;
    margin: 30px auto;
  }
}
@media (min-width: 768px) {
  .modal .modal-sm {
    max-width: 300px;
  }
}

.modal-open .modal {
  z-index: 10000;
  display: flex !important;
  width: 100%;
  justify-content: center;
  overflow: auto;
}

#delete_modal.in + .modal {
  display: none;
}

@keyframes modalFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modalPop {
  0% {
    scale: 0.9;
  }
  50% {
    scale: 1.015;
  }
  100% {
    scale: 1;
  }
}
/* 날짜 */
.bootstrap-timepicker {
  display: flex;
  gap: 10px;
  max-width: 300px;
}

#site .bootstrap-timepicker-widget {
  display: none !important;
}

/* ---------------------------- iframe ---------------------------- */
/* 구글맵 iframe*/
iframe[src*="https://www.google.com/"] {
  width: auto;
  height: auto;
  aspect-ratio: 5/3;
  margin-bottom: -6px;
  background-color: #e5e3df;
}

/* 외부동영상 */
iframe:where([src*=youtube], [title*=YouTube], [src*="player.vimeo.com"]) {
  width: auto;
  height: auto;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: var(--radius-sm);
}

#bbsArea .board_video_view iframe:where([src*=youtube], [title*=YouTube], [src*="player.vimeo.com"]) {
  width: 100%;
}

/* [ IFRAME END ] */
/* ---------------------------- common ---------------------------- */
/* list-style */
:where(ol, ul)[class*=li-] {
  display: flex;
  flex-direction: column;
}
:where(ol, ul)[class*=li-] > li {
  position: relative;
  padding-left: 0.85em;
  letter-spacing: -0.02em;
  font-size: clamp(14px, 2vw, 15px);
}
:where(img) + :where(ol, ul)[class*=li-] {
  margin-top: 20px;
}
:where(ol, ul)[class*=li-] small {
  font-size: 0.85em;
}

/* circle */
.li-cir {
  gap: 6px;
}
.li-cir + .title-h5 {
  margin-top: 40px;
}
.li-cir > li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  width: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #555;
}

/* dash */
.li-dash > li::before {
  content: "-";
  position: absolute;
  top: 0.7em;
  left: 0;
  line-height: 0;
}

/* number */
.li-num > li {
  counter-increment: listNum;
  padding-left: 27px;
}
.li-num > li::before {
  content: counter(listNum, decimal-leading-) "";
  position: absolute;
  top: 0.25em;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--page-point-color);
  border-radius: 50%;
  aspect-ratio: 1;
  width: 18px;
  padding-top: 2px;
  padding-right: 1px;
  line-height: 0;
  color: var(--page-point-color);
  font-size: 11px;
  font-weight: 700;
}

/* check */
.li-check > li {
  position: relative;
  padding-left: 1.3em;
  font-size: 15px;
}
.li-check > li::before {
  content: "\e5ca";
  font-family: var(--gms);
  position: absolute;
  top: 0.1em;
  font-size: 20px;
  line-height: 1;
  left: -0.2em;
  display: block;
  color: var(--page-point-color);
  font-variation-settings: var(--gms-600-out);
}

/* ---------------------------- navbar ---------------------------- */
#site .nav-options {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1199.98px) {
  #site .nav-options {
    /*xl*/
    position: absolute;
    right: 15px;
    top: calc(100% + 1rem);
    z-index: 1000;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background-color: #fff;
    border-radius: 9999px;
  }
}
@media (max-width: 767.98px) {
  #site .nav-options {
    /*md*/
    top: 50%;
    transform: translateY(-50%);
    right: 55px;
    /* margin-inline: auto; */
    /* left: 1rem; */
    /* right: 1rem; */
  }
}
@media (max-width: 575.98px) {
  #site .nav-options {
    /*sm*/
    gap: 0.75rem;
    padding: 0;
  }
}
#site .nav-options * {
  all: unset;
}
#site .nav-options span.text {
  /* color: #fff; */
  white-space: nowrap;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
#site .nav-options span.text b {
  font-size: 0.83em;
  font-weight: 600;
  opacity: 0.75;
  display: block;
  margin-bottom: 2px;
  line-height: 1;
}
#site .nav-options span.text em {
  font-size: 1.05em;
  letter-spacing: -0.01em;
  color: #111;
}
#site .nav-options a {
  font-size: clamp(12px, 1.5vw, 16px);
  /* margin-right: 10px; */
  display: flex;
  align-items: center;
  cursor: pointer;
  /* border: 1px solid #ccc; */
  /* padding: 10px 12px; */
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  #site .nav-options a {
    /*md*/
    font-size: clamp(11px, 2vw, 14px);
  }
}
#site .nav-options a span.material-symbols-outlined {
  box-sizing: border-box;
  display: flex;
  width: 34px;
  height: 34px;
  /* padding: 6px; */
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  /* background: rgba(0, 0, 0, 0.1); */
  background-color: var(--page-point-color);
  color: #fff;
  margin-right: 5px;
  font-variation-settings: var(--gms-600-out);
  margin-right: 8px;
  font-size: 18px;
}
@media (max-width: 575.98px) {
  #site .nav-options a span.material-symbols-outlined {
    /*sm*/
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 575.98px) {
  #site .nav-options a {
    /*sm*/
    margin: 0;
  }
  #site .nav-options a span.text {
    display: none;
  }
  #site .nav-options a span.material-symbols-outlined {
    margin: 0;
    font-size: 14px;
    font-variation-settings: var(--gms-600-fill);
  }
}
#site .nav-options .btn {
  display: flex;
  width: 80px;
  height: clamp(28px, 2vw, 32px);
  padding: 0 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: clamp(12px, 1.25vw, 14px);
  letter-spacing: -0.28px;
}
@media (max-width: 575.98px) {
  #site .nav-options .btn {
    /*sm*/
    width: auto;
    font-size: 11px;
    padding-inline: 8px;
  }
}

/* [ navbar 재작업 ] */
.navbar {
  /* 메인메뉴 padding */
  --navbar-menu-padding-inline: clamp(15px, 2vw, 25px);
  /* 메인메뉴 font-size */
  --navbar-menu-font-size: clamp(15px, 2vw, 18px);
  /* 드롭다운 메뉴 font-size */
  --navbar-dropdown-menu-font-size: clamp(13px, 2vw, 15px);
  /* 로고 사이즈 */
  --navbar-logo-width: clamp(180px, 15vw, 250px);
  --navbar-logo-font-size: clamp(20px, 3vw, 24px);
  all: unset;
  box-sizing: border-box;
  z-index: 5000;
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  height: var(--navbar-height);
  background-color: #fff;
  border-bottom: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.navbar :is(ul, li, a) {
  all: unset;
  box-sizing: border-box;
}
.navbar a {
  cursor: pointer;
}
.navbar :where(*):before,
.navbar :where(*):after {
  content: none;
}
.navbar #gnbauth i {
  display: none;
}
.navbar .navbar-header {
  margin-inline: 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  gap: 1rem;
}

/* 로고 */
.navbar .navbar-brand {
  /* 텍스트 로고 */
}
.navbar .navbar-brand, .navbar .navbar-brand:is(:hover, :focus) {
  display: block;
  width: var(--navbar-logo-width);
  margin-left: 0;
}
.navbar .navbar-brand img {
  width: var(--navbar-logo-width);
}
.navbar .navbar-brand span {
  position: relative;
  display: block;
  font-size: var(--navbar-logo-font-size);
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

/* 메인메뉴 */
.navbar .navbar-right > li > a {
  z-index: 100;
  font-size: var(--navbar-menu-font-size);
  color: #000;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0;
}

.navbar :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
  position: relative;
  z-index: 100;
  color: var(--page-point-color);
  /* background-color: transparent; */
  /* text-shadow: 0 0 0.01em var(--page-point-color); */
  /* border-bottom: 3px solid var(--page-point-color); */
}

/* 서브 드롭다운메뉴 */
.navbar :is(.dropdown-menu) {
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.8);
  background-color: #fff;
}
.navbar :is(.dropdown-menu) a {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  transition: none;
  font-size: var(--navbar-dropdown-menu-font-size);
  font-weight: 450;
  color: #333;
  width: 100%;
}
.navbar :is(.dropdown-menu) a:hover {
  background-color: inherit;
  color: var(--page-point-color);
  text-decoration: underline;
}

@media (min-width: 1600px) {
  /*xl*/
  .navbar > .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
    max-width: 100%;
    padding-inline: 50px;
  }
}
@media (max-width: 1599.98px) {
  /*xxl*/
  .navbar > .container {
    max-width: 100%;
  }
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
  /* wide */
  .navbar {
    /* 메인메뉴 */
  }
  .navbar .navbar-collapse {
    display: flex;
    align-self: stretch;
    height: auto !important;
  }
  .navbar .navbar-toggle {
    display: none;
  }
  .navbar .navbar-right {
    display: flex;
    align-self: stretch;
  }
  .navbar .navbar-right > li {
    position: relative;
    display: flex;
    /* 데스크탑 서브 드롭다운메뉴 */
  }
  .navbar .navbar-right > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: transparent;
    padding-inline: var(--navbar-menu-padding-inline);
    padding-block: 0;
    font-weight: 600;
  }
  .navbar .navbar-right > li .dropdown-menu {
    box-sizing: border-box;
    z-index: 5;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: calc(100% - 10px);
    /* transform: translateX(-50%); */
    display: none;
    flex-direction: column;
    border-radius: 6px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
    margin-top: 0px;
    padding: 25px;
    min-width: 170px;
    gap: 15px;
    opacity: 0;
    transform-origin: center top;
    /* text-align: center; */
  }
  .navbar .navbar-right > li .dropdown-menu a {
    display: flex;
    line-height: 1.1;
    padding: 0 0 2px;
    letter-spacing: -0.018em;
    border-bottom: 1px solid transparent;
    white-space: nowrap;
    text-align: center;
    /* justify-content: center; */
  }
  .navbar .navbar-right > li.open .dropdown-menu {
    display: flex;
    animation: menuOpen 0.25s forwards;
  }
  .navbar .navbar-right > :is(li:not(#gnbauth):last-child, li#gnbauth) {
    /* margin-right: calc(var(--navbar-menu-padding-inline) * -1); */
  }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
  /* 배경 */
  body::before {
    transition: 0.35s;
    content: "";
    display: block;
    z-index: 1000;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    animation: menuHeight 0s 0.35s forwards;
  }
  body.menu-overlay::before {
    opacity: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.5);
    animation: none;
  }
  .navbar {
    overflow: hidden;
    animation: menuHidden 0s 0.401s forwards;
  }
  .navbar .container {
    --container-padding-inline: 15px;
    max-width: 100%;
  }
  .navbar .navbar-header {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar .navbar-brand {
    order: 1;
  }
  .navbar .navbar-toggle {
    all: unset;
    box-sizing: border-box;
    order: 2;
    border: 0;
    padding: 9px 0;
    margin: 0;
    cursor: pointer;
  }
  .navbar .navbar-toggle > * {
    display: none;
  }
  .navbar .navbar-toggle::before {
    content: "\e5d2";
    font-family: var(--gms);
    font-size: 1.8em;
    font-variation-settings: var(--gms-500-out);
  }
  .navbar .navbar-toggle:where(:hover, :focus) {
    background: none;
  }
  .navbar .navbar-toggle.open::before {
    content: "\e5cd";
  }
  .navbar .navbar-collapse {
    transition: 0.4s;
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee;
    max-height: 0;
    height: auto !important;
  }
  .navbar .navbar-collapse .navbar-right {
    display: flex;
    flex-direction: column;
    overflow: hidden auto;
    position: relative;
    width: 100%;
    padding-block: 0px;
  }
  .navbar .navbar-collapse .navbar-right > li {
    transition: inherit;
  }
  .navbar .navbar-collapse .navbar-right > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: clamp(45px, 5vw, 55px);
    padding: 0 15px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
  .navbar .navbar-collapse.open {
    transition: all 0.5s;
    max-height: var(--svh100);
  }
  .navbar .dropdown .dropdown-menu {
    /* transition: 0.75s; */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #eee;
    padding: 0;
    max-height: 0;
  }
  .navbar .dropdown .dropdown-menu a {
    /* width: 100%; */
    display: block;
    color: #555;
    padding: 10px 15px;
  }
  .navbar .dropdown .dropdown-toggle::after {
    all: unset;
    box-sizing: border-box;
    content: "\e5cf";
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    margin-left: auto;
    font-size: 1.5em;
  }
  .navbar .dropdown.open .dropdown-menu {
    opacity: 1;
    max-height: var(--svh100);
  }
  .navbar .dropdown.open .dropdown-toggle {
    color: var(--page-point-color);
    font-weight: 600;
  }
  .navbar .dropdown.open .dropdown-toggle::after {
    content: "\e5ce";
    color: var(--page-point-color);
    font-variation-settings: var(--gms-400-out);
  }
}
@keyframes menuOpen {
  0% {
    opacity: 0;
    scale: 1 0.5;
  }
  100% {
    opacity: 1;
    scale: 1 1;
  }
}
@keyframes menuHeight {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
@keyframes menuHidden {
  from {
    overflow: hidden;
  }
  to {
    overflow: visible;
  }
}
/* ---------------------------- footer ---------------------------- */
footer {
  margin-top: 0px;
  background-color: #fff;
  border-top: 1px solid #eee;
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
footer li {
  color: #777;
  font-size: clamp(14px, 2vw, 15px);
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.2px;
}
footer li b {
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}
footer li.corp {
  margin-bottom: 6px;
  color: #555;
}
footer li.corp strong {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 175% */
  letter-spacing: -0.32px;
}
footer li.copyright {
  color: #999;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 191.667% */
  margin-top: 5px;
}
footer .footer-info {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  line-height: 1.5;
  color: #444;
  gap: 0 15px;
}
footer .footer-logo {
  flex-shrink: 0;
  width: 231px;
}
footer .footer-wrap {
  display: flex;
  /* align-items: center; */
  gap: 80px;
  padding: 50px 0 50px;
}
footer .line {
  color: rgba(85, 85, 85, 0.3);
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  transform: translateY(1px);
}
@media (max-width: 767.98px) {
  footer .footer-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

#loginBtn {
  /* mix-blend-mode: screen; */
  background-color: #f5f5f5;
  border-radius: 4px;
  width: fit-content;
}
#loginBtn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 10px;
  background: transparent;
  color: #7d7d7d;
  line-height: 1;
  border-radius: 0;
  border: none;
  border-radius: 0;
  font-size: clamp(11px, 2vw, 12px);
  border-radius: 4px;
}
#loginBtn a:hover {
  background: #333;
  color: #fff;
  border-color: var(--backgorund-color);
}
#loginBtn a span.material-symbols-outlined {
  font-size: 1rem;
  margin-right: 5px;
  font-variation-settings: var(--gms-500-out);
}
html.logined #loginBtn a[href="/member/login"] {
  display: none;
}
html:not(.logined) #loginBtn a[href="/member/logout"] {
  display: none;
}

/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (min-width: 768px) {
  #loginBtn {
    margin-left: auto;
    align-self: flex-end;
  }
}
/* ---------------------------- subpage (snb-left) ---------------------------- */
#site {
  /* [ subpage-navbar ] */
}
#site .subpage-header {
  --background-image: url(/public/img/sub/sub-top.jpg);
  position: relative;
  overflow: hidden;
  height: 200px;
  /* background: #d3eaff; */
  /* border-radius: 0 0 0 80px; */
  /* margin: 0 60px; */
}
@media (max-width: 767.98px) {
  #site .subpage-header {
    height: 170px;
  }
}
@media (max-width: 575.98px) {
  #site {
    /*sm*/
  }
  #site .subpage-header {
    height: 100px;
  }
}
#site .subpage-header .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--background-image) #000 no-repeat center/cover;
  /* filter: brightness(0.6); */
}
#site .subpage-title {
  z-index: 10;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  height: 100%;
}
#site .subpage-title h2 {
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  z-index: 100;
  letter-spacing: -0.034em;
  line-height: 1.3;
  display: none;
}
#site .breadcrumb {
  z-index: 1000;
  /* width: 45%; */
  top: 17px;
  left: var(--container-padding-inline);
  z-index: 10;
  padding-block: 15px;
  border-bottom: 1px solid #eaeaea;
}
@media (max-width: 767.98px) {
  #site .breadcrumb {
    /*md*/
    display: none;
  }
}
@media (max-width: 575.98px) {
  #site .breadcrumb {
    /*sm*/
    padding-block: 10px;
  }
}
#site .breadcrumb ul {
  /* position: absolute; */
  background: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  /* overflow: hidden; */
  width: fit-content;
}
#site .breadcrumb li {
  position: relative;
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  white-space: nowrap;
}
#site .subpage:not([id^="product"]) .breadcrumb li:nth-child(6),
#site .subpage:not([id^="product"]) .breadcrumb li:nth-child(5){
  display: none;
}
#site .breadcrumb li.active {
  font-weight: 600;
}
#site .breadcrumb li.arrow:before {
  content: "\e5cc";
  font-family: var(--gms);
  font-weight: 400;
  display: block;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}
#site .breadcrumb a.home {
  line-height: 0.9;
}
#site .breadcrumb a.home::before {
  content: "\e88a";
  font-family: var(--gms);
  font-variation-settings: var(--gms-300-fill);
  font-weight: 300;
  display: block;
  font-size: 16px;
  line-height: 0;
}
#site .subpage-body > .container {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, auto);
  align-items: flex-start;
  /* padding-block: 0px 150px; */
  gap: clamp(30px, 5vw, 50px);
  padding-block: 50px 100px;
}
@media (max-width: 991.98px) {
  #site .subpage-body > .container {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    align-items: stretch;
    gap: 0;
    /* padding-inline: 0; */
    padding-top: 0;
  }
}
#site .snb-title {
  height: 80px;
  /* margin-bottom: 35px; */
  /* margin-top: 8px; */
  /* background: var(--page-point-color); */
  /* border-radius: 12px 12px 0 0; */
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
#site .snb-title h2 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: #222;
}
#site .snb-title h2 .corp {
  display: none;
}
#site .snb-left {
  /* position: sticky; */
  z-index: 10;
  /* top: calc(var(--navbar-height) + 50px); */
  margin-bottom: 70px;
}
@media (max-width: 991.98px) {
  #site .snb-left {
    /*lg*/
    margin-bottom: 40px;
  }
}
#site #snbInner {
  /* max-height: calc(100vh - (calc(var(--navbar-height) + 50px) + 100px)); */
  overflow: auto;
}
#site #snbInner > ul {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  justify-content: center;
}
#site #snbInner > ul::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  /* background: linear-gradient(to right, var(--page-point-color), #000); */
  background-color: var(--page-point-color);
  /* margin-bottom: 10px; */
}
#site #snbInner > ul > li > a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  line-height: 1.3;
  padding-inline: 18px 18px;
  font-size: 17px;
  /* height: 47px; */
  padding-block: 18px;
  color: #222;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  font-weight: 450;
  letter-spacing: -0.035em;
  transition: all 0.15s;
}
@media (max-width: 767.98px) {
  #site #snbInner > ul > li > a {
    /*md*/
    padding: 10px 15px;
    font-size: 15px;
  }
}
#site #snbInner > ul > li:is(.active, .open) > a {
  font-weight: 600;
  color: var(--page-point-color);
  gap: 10px;
}
#site #snbInner > ul > li > a::after {
  content: "\e5cc";
  font-family: var(--gms);
  font-variation-settings: var(--gms-500-fill);
  font-size: 18px;
  width: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.15s;
  color: #aaa;
  border-radius: 50%;
  aspect-ratio: 1;
  line-height: 1;
  padding: 0px;
}
#site #snbInner > ul > li.dropdown > a::after {
  content: "add";
  font-size: 18px;
  font-variation-settings: var(--gms-500-out);
}
#site #snbInner > ul > li.dropdown.open > a::after {
  content: "remove";
  /* font-size: 15px; */
  font-variation-settings: var(--gms-700-out);
}
#site #snbInner li a:hover::after {
  /* box-shadow: 0 0 0 1.5px #e0e0e0; */
  /* color: #999; */
}
#site #snbInner li:is(.active, .open) a::after,
#site #snbInner li:is(.active, .open) a:hover::after {
  color: var(--page-point-color);
}
@media (max-width: 767px) {
  #site #snbInner {
    /* display: none; */
    width: auto;
    position: static;
    margin-inline: calc(var(--container-padding-inline) * -1);
    margin-bottom: 0;
    /* border-bottom: 1px solid #ccc; */
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.075);
  }
  #site .snb-title {
    display: none;
  }
  #site .snb ul::before {
    margin-bottom: 0;
  }
  #site .snb a {
    padding-inline: var(--container-padding-inline);
    font-size: 14px;
    padding-block: 15px;
  }
}
#site #snbInner .dropdown.open + .dropdown-menu {
  display: flex;
}
#site #snbInner .dropdown-menu {
  /* display: flex; */
  flex-direction: column;
  background-color: #f8f8f8;
  display: none;
  padding: 15px 18px;
  border-bottom: 1px solid #eee;
  /* max-height: 450px; */
  /* overflow: auto; */
}
#site #snbInner .dropdown-menu > li.active > a {
  color: var(--page-point-color);
  font-weight: 500;
}
#site #snbInner .dropdown-menu > li.active > a::before {
  background-color: var(--page-point-color);
}
#site #snbInner .dropdown-menu > li > a {
  display: flex;
  padding: 5px 16px;
  color: #555;
  letter-spacing: -0.01em;
  font-weight: 450;
  font-size: clamp(14px, 2vw, 15px);
}
#site #snbInner .dropdown-menu > li > a::before {
  content: "";
  width: 6px;
  height: 2px;
  background: #bbb;
  position: absolute;
  left: 0;
  top: 15px;
}
#site #snbInner .dropdown-menu .dropdown-tabs {
  padding-left: 16px;
  margin-bottom: 15px;
  /* border-left: 1px solid #ddd; */
}
#site #snbInner .dropdown-menu .dropdown-tabs li {
  position: relative;
  font-size: 13px;
}
#site #snbInner .dropdown-menu .dropdown-tabs > li > a {
  font-weight: 700;
  color: #000;
}
#site #snbInner .dropdown-menu .dropdown-tabs > li.active > a {
  text-decoration: underline;
  text-decoration-color: var(--page-point-color);
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
  pointer-events: none;
}
#site #snbInner .dropdown-menu .dropdown-tabs-depth {
  /* padding-left: 15px; */
  margin-bottom: 10px;
  margin-top: 7px;
  border-bottom: 1px solid #ccc;
  /* border-left: 1px solid #ccc; */
}
#site #snbInner .dropdown-menu .dropdown-tabs-depth b,
#site #snbInner .dropdown-menu .dropdown-tabs-depth strong {
  all: unset;
}
#site #snbInner .dropdown-menu .dropdown-tabs-depth .active {
  text-decoration: underline;
  color: #000;
  /* font-weight: 500; */
}
#site #snbInner .dropdown-menu .dropdown-tabs-depth li {
  padding-left: 10px;
  margin-bottom: 4px;
  position: relative;
  font-size: 13px;
}
#site #snbInner .dropdown-menu .dropdown-tabs-depth li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0rem;
}
#site #snbInner .dropdown-menu > li > a + .dropdown-tabs-depth {
  margin: 0;
  margin-left: 5px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

/* [ subpage-title-template ] */
/* 타이틀 변수 설정*/
[class*=title-h] {
  --h-line-height: 1.4;
  --h-letter-spacing: -0.01em;
  --p-font-weight: 400;
  --p-color: #555;
  --p-line-height: 1.65;
  /* 제목 */
  /* 본문 */
  /* 본문+본문 간격 */
}
[class*=title-h]:only-child {
  margin-bottom: 0;
}
[class*=title-h] a {
  color: #337ab7;
}
[class*=title-h] a:hover {
  /* text-decoration: underline; */
  /* color: #1b5c94; */
}
[class*=title-h] p.big {
  font-size: 22px;
}
[class*=title-h] span.color {
  font-weight: 600;
  color: #000;
}
[class*=title-h] > :is(h2, h3, h4, h5, h6) {
  font-size: var(--h-font-size);
  font-weight: var(--h-font-weight);
  color: var(--h-color);
  line-height: var(--h-line-height);
  letter-spacing: var(--h-letter-spacing);
}
[class*=title-h] > :is(p, ul, ol) {
  font-size: var(--p-font-size);
  font-weight: var(--p-font-weight);
  color: var(--p-color);
  line-height: var(--p-line-height);
  letter-spacing: -0.015em;
}
[class*=title-h] > *:not(:is(h2, h3, h4, h5, h6)) + * {
  margin-top: calc(var(--text-between) + 10px);
}

/* 제목+본문 간격 */
.subpage [class*=title-h] > :is(h2, h3, h4, h5, h6) + * {
  margin-top: var(--text-between);
}

/* 본문+본문 간격 */
.subpage [class*=title-h] > *:not(:is(h2, h3, h4, h5, h6)) + * {
  margin-top: calc(var(--text-between));
}

.subpage .title-h3 {
  position: relative;
  --h-font-size: clamp(20px, 4vw, 34px);
  --h-font-weight: 700;
  --h-color: #222;
  --h-line-height: 1.2;
  --p-font-size: clamp(13px, 2vw, 16px);
  --text-between: 10px;
  margin-bottom: 40px;
  margin-top: 0;
  /* padding-bottom: 20px; */
}
.subpage .title-h3 p {
  margin-top: 30px;
}

.subpage .title-h3 h3 {
  /* width: 50%; */
  /* padding-bottom: 30px; */
  height: 80px;
  /* height: 55px; */
  border-bottom: 2px solid #444;
  padding-top: 15px;
  color: #111;
  letter-spacing: -0.02em;
}
.subpage .title-h3 h3 .cert {
  font-weight: 400;
  font-size: 90%;
  opacity: 0.7;
  display: inline-block;
  transform: translateY(-1px);
}

.subpage .title-h3:has(p) {
  margin-bottom: 45px;
}

.subpage .title-h3 .logo {
  position: absolute;
  right: 0;
  top: 0;
  height: 25px;
}

@media (max-width: 767.98px) {
  .subpage .title-h3 {
    /* text-align: center; */
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 40px;
  }
  .subpage .title-h3 h3 {
    padding-bottom: 20px;
    line-height: 1.4;
    height: auto;
  }
  .subpage .title-h3 .logo {
    margin-top: 5px;
    /* width: 200px; */
    height: 20px;
  }
}
.subpage .title-h4 {
  --h-font-size: clamp(20px, 3vw, 28px);
  --h-font-weight: 400;
  --h-color: #222;
  --p-font-size: clamp(13px, 2vw, 16px);
  --text-between: 5px;
  --title-between: clamp(50px, 5vw, 80px);
  margin-bottom: 50px;
  letter-spacing: -0.01em;
}
.subpage .title-h4 p {
  margin-top: 30px;
}

.subpage .title-h4 li + li {
  margin-top: 5px;
}

.subpage .title-h4 + .title-h4 {
  margin-top: clamp(30px, 5vw, 50px);
}

.subpage .title-h4 b {
  font-weight: 600;
}

.subpage .title-h4 span.mini {
  display: block;
  font-weight: 500;
  font-size: 16px;
}

.subpage .title-h4 h4 {
  position: relative;
  /* padding-left: 12px; */
  letter-spacing: -0.034em;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.subpage .title-h4 h4::before {
  /* content: ""; */
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--page-point-color);
  margin-bottom: 7px;
}

#site .subpage .title-h4 p:only-child {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 450;
}

.subpage .title-h4 :is(img, img + p) {
  margin-top: 30px;
}

.subpage .title-h5 {
  --h-font-size: clamp(20px, 3vw, 22px);
  --h-font-weight: 600;
  --h-color: var(--page-point-color);
  --p-font-size: 18px;
  --text-between: 7px;
  --title-between: 30px;
  margin-bottom: 15px;
  margin-top: 40px;
}
.subpage .title-h5.mt-0 {
  margin-top: 10px;
}

:is(#product01_03, #product01_04, #product02_01, #product02_02) .title-h5 {
  /* margin-top: 20px; */
}

.subpage .title-h5 li {
  font-size: 16px;
}

.subpage .title-h5 h5 {
  line-height: 1.3;
}

.subpage .title-h5 + .title-h5 {
  margin-top: 28px;
}

.subpage .title-h6 + .title-h5 {
  margin-top: 30px;
}

.subpage .title-h5 h5 b {
  display: inline-block;
  /* margin-inline: 1px; */
  font-size: 110%;
  color: inherit;
  /* color: #0862c9; */
  font-weight: 800;
}

.subpage .title-h5:has(p, ul) {
  margin-bottom: 30px;
}

.subpage .title-h6 {
  --h-font-size: 17px;
  --h-font-weight: 600;
  --h-color: #444;
  --p-font-size: 16px;
  --text-between: 7px;
  --title-between: 0px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.subpage :where(img, [class*=-wrap]) + :where(img, [class*=-wrap]) {
  /* margin-top: 50px; */
}

.title-box {
  margin-bottom: 0;
  padding: 30px 20px;
  text-align: center;
  /* background-color: var(--page-point-color); */
  border: 2px solid var(--page-point-color);
  margin-bottom: 40px;
}

.title-box h5 {
  color: inherit;
  font-size: 22px;
  font-weight: 600;
  color: var(--page-point-color);
}

.title-box .info {
  flex: 1;
  border: 1px solid #ccc;
  padding: 20px;
}

.title-box .info li {
  font-size: 15px;
}

.title-box .info li + li {
  margin-top: 3px;
}

/* h5 end */
/* [ subpage-content ] */
@media (max-width: 767.98px) {
  .subpage-content {
    /*md*/
  }
  .subpage-content .container {
    padding: 0;
  }
}
.subpage-content section {
  /* padding: 50px 0 150px; */
  min-height: 300px;
}
.subpage-content section:only-child {
  /* padding-bottom: 170px; */
}
.subpage-content section.bg-gray {
  background-color: #f7f7f7;
  padding-bottom: 120px;
}

.snb-left[style="display: none;"] + .subpage-content {
  grid-column: span 2;
  /* max-width: 1200px; */
  margin-inline: auto;
}
.snb-left[style="display: none;"] + .subpage-content .container {
  padding-inline: 0;
}

/* greet */
.greet-wrap {
  display: flex;
  gap: 70px;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 575.98px) {
  .greet-wrap {
    /*sm*/
    flex-direction: column-reverse;
    gap: 1.2rem;
  }
}
.greet-wrap .img-box {
  width: 100%;
  overflow: hidden;
  max-width: 350px;
  border-radius: 12px;
}
@media (max-width: 575.98px) {
  .greet-wrap .img-box {
    /*sm*/
    max-width: 100%;
    height: 200px;
    flex: 0 1 auto;
  }
}
.greet-wrap .img-box img {
  width: 100%;
  object-fit: cover;
  object-position: left;
  background: #ccc;
}
.greet-wrap .info > span {
  display: block;
  color: var(--page-point-color);
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 20px;
}
.greet-wrap .info hr {
  margin-block: 30px 40px;
  border: 0;
  height: 1px;
  background: #ddd;
}
.greet-wrap .info h4 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 650;
  margin-bottom: 10px;
  line-height: 1;
  color: var(--page-point-color);
  letter-spacing: -0.02em;
  margin-top: 20px;
}
.greet-wrap .info h4 span {
  display: block;
  font-size: 20px;
  letter-spacing: 0;
  color: #cdcdcd;
  margin-bottom: 20px;
}
.greet-wrap .info h4 b {
  color: var(--page-point-color);
}
.greet-wrap .info h4 small {
  font-size: 30px;
  color: #333;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.35;
  display: block;
  margin-top: 2px;
}
.greet-wrap .info p {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 25px;
  line-height: 1.8;
  letter-spacing: -0.018em;
}
.greet-wrap .info p b {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.06em;
  color: #333;
}
.greet-wrap .info p:last-child {
  font-weight: 500;
  font-size: 18px;
  color: #333;
  margin-top: 40px;
}
.greet-wrap .info p.name {
  text-align: right;
  font-size: 18px;
  color: #333;
  margin-bottom: 0;
  margin-top: 30px;
}
.greet-wrap .info p.name strong {
  color: #222;
  font-weight: 650;
  letter-spacing: 9px;
  margin-left: 15px;
  font-size: 24px;
}

#site .product-tabs > [role] > .nav {
  display: flex;
  /* gap: 20px; */
  margin-bottom: 25px;
  border-bottom: 1px solid #e3e3e3;
}
#site .product-tabs > [role] > .nav li {
  /* flex: 1; */
  line-height: 1;
  background: transparent;
}
#site .product-tabs > [role] > .nav li a {
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #aaa;
  /* padding-bottom: 3px; */
  padding-bottom: 18px;
  display: block;
}
#site .product-tabs > [role] > .nav li a::after {
  content: "";
  width: 0;
  height: 3px;
  background: #fd703a;
  position: absolute;
  left: 0;
  bottom: -1px;
  /* background: #333; */
  transition: all 0.3s;
  opacity: 0;
}
#site .product-tabs > [role] > .nav li a:hover {
  color: var(--page-point-color);
  color: #333;
}
#site .product-tabs > [role] > .nav li a:hover::after {
  width: 100%;
  opacity: 1;
}
#site .product-tabs > [role] > .nav li b {
  color: inherit;
}
#site .product-tabs > [role] > .nav li.active a {
  color: var(--page-point-color);
  color: #333;
}
#site .product-tabs > [role] > .nav li.active a::after {
  width: 100%;
  opacity: 1;
}
#site .product-tabs > [role] > .nav li + li {
  /* padding-left: 15px; */
  margin-left: 40px;
}

#site .product-box .nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  border-bottom: 1px dotted #ddd;
  padding-bottom: 30px;
}
#site .product-box .nav a {
  position: relative;
  background-color: #f6f6f6;
  text-align: left;
  padding: 12px 22px;
  font-size: 15px;
  display: block;
  height: auto;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 400;
  color: #555;
  border: 1px solid transparent;
  background: #f5f5f5;
  transition: all 0.1s;
}
#site .product-box .nav a::after {
  content: "keyboard_arrow_down";
  font-family: var(--gms);
  font-variation-settings: var(--gms-500-fill);
  position: absolute;
  right: 16px;
  font-size: 20px;
  line-height: 1;
  color: #ccc;
  transition: all 0.1s;
}
#site .product-box .nav a:hover {
  border-color: var(--page-point-color);
  background-color: #fff;
  color: #222;
  z-index: 1;
  color: var(--page-point-color);
}
#site .product-box .nav a:hover::after {
  color: var(--page-point-color);
  opacity: 1;
}
#site .product-box .nav a small,
#site .product-box .nav a strong {
  color: inherit;
}
#site .product-box .nav li.active a {
  background: var(--page-point-color);
  color: #fff;
  border-color: var(--page-point-color);
}
#site .product-box .nav li.active a::after {
  color: #fff;
}
#site .product-box .img-box {
  border: 1px solid #e3e3e3;
  /* height: 100%; */
  /* width: 100%; */
  justify-content: center;
  align-items: center;
  margin-right: 40px;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  padding: 30px;
}
@media (max-width: 991.98px) {
  #site .product-box .img-box {
    /*lg*/
    margin: 0;
  }
}
#site .product-box .img-box.h-auto {
  height: auto;
  margin: 0;
  margin-bottom: 20px;
}
#site .product-box .img-box.fit {
  margin: 0;
  height: auto;
  padding: 5px;
}
#site .product-box .img-box.fit + .title-h5 {
  margin-top: 20px;
}
#site .product-box .img-box.fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
#site .product-box .img-box.thumb {
  margin: 0;
  aspect-ratio: 5/3;
  width: 100%;
  padding: 0;
  height: auto;
}
#site .product-box .img-box.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
#site .product-box .img-box.thumb + label {
  text-align: center;
  display: block;
  padding-block: 10px 10px;
  font-weight: 600;
  color: #222;
  font-size: 15px;
}
#site .product-box .img-box img {
  object-fit: scale-down;
}
#site .product-box .row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: initial;
  gap: 20px 20px;
}
@media (max-width: 991.98px) {
  #site .product-box .row {
    /*lg*/
  }
  #site .product-box .row:not(.table-ordering-option-wrap) {
    display: flex;
    flex-direction: column;
  }
}
#site .product-box .row .col-md-12 {
  grid-column: span 12;
}
#site .product-box .row .col-md-11 {
  grid-column: span 11;
}
#site .product-box .row .col-md-10 {
  grid-column: span 10;
}
#site .product-box .row .col-md-9 {
  grid-column: span 9;
}
#site .product-box .row .col-md-8 {
  grid-column: span 8;
}
#site .product-box .row .col-md-7 {
  grid-column: span 7;
}
#site .product-box .row .col-md-6 {
  grid-column: span 6;
}
#site .product-box .row .col-md-5 {
  grid-column: span 5;
}
#site .product-box .row .col-md-4 {
  grid-column: span 4;
}
#site .product-box .row .col-md-3 {
  grid-column: span 3;
}
#site .product-box .row .col-md-2 {
  grid-column: span 2;
}
#site .product-box .row .col-md-1 {
  grid-column: span 1;
}

#site #bbsArea.form-wrap tr {
  grid-template-columns: minmax(0, 210px) minmax(0, auto);
  padding: 0;
  align-items: stretch;
  gap: 0;
}
#site #bbsArea.form-wrap tr th,
#site #bbsArea.form-wrap tr td {
  padding: 12px 15px;
}
#site #bbsArea.form-wrap tr th {
  background-color: #f8f8f8;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
  padding-inline: 25px;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.018em;
}
#site #bbsArea.form-wrap tr th:has(.required_text) > :where(span:first-child, span.required_text) {
  color: #f00;
}
#site #bbsArea.form-wrap tr .form-caption {
  display: none;
}
#site #bbsArea.form-wrap tr .checkbox {
  margin-block: 12px !important;
}
#site #bbsArea.form-wrap tr :is(.custom_radio, .custom_checkbox, .status_wrap input) + span {
  color: #666;
}
#site #bbsArea.form-wrap tr .custom_checkbox + span a {
  color: #333;
}
#site #bbsArea.form-wrap tr .custom_checkbox + span {
  user-select: none;
}
#site #bbsArea.form-wrap tr .custom_checkbox + span::before {
  margin: 0;
  font-size: 1.4em;
  color: #555;
  content: "check_circle";
  font-family: var(--gms);
  font-weight: 300;
}
#site #bbsArea.form-wrap tr .custom_checkbox:checked + span::before {
  color: var(--page-point-color);
  font-variation-settings: var(--gms-600-fill);
}
#site #bbsArea.form-wrap tr .custom_checkbox[disabled], #site #bbsArea.form-wrap tr .custom_checkbox[disabled] + span {
  opacity: 0.5;
}

/* map */
.map-wrap {
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.map-wrap .cont,
.map-wrap .wrap_controllers {
  display: none !important;
}
.map-wrap .root_daum_roughmap_landing {
  width: 100% !important;
  height: 100%;
  aspect-ratio: 21/9;
}
.map-wrap .wrap_map {
  width: 100%;
  height: 100% !important;
}
.map-wrap .info {
  display: flex;
  margin-top: 30px;
  gap: 25px;
}
.map-wrap .email {
  margin-left: auto;
}
.map-wrap li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0;
  font-weight: 500;
  color: #333;
}
.map-wrap li.addr {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.map-wrap li span.material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: var(--gms-500-out), var(--gms-grad-zero);
  color: #fff;
  background: var(--page-point-color);
  border-radius: 50%;
  padding: 7px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .map-wrap .info {
    flex-direction: column;
  }
  .map-wrap .email {
    margin-left: 0;
  }
}

.table-location {
  width: 100%;
  border-top: 2px solid var(--page-point-color);
  border-bottom: 2px solid #ccc;
}

.table-location tbody tr th,
.table-location tbody tr td {
  vertical-align: middle;
  padding: 15px 15px;
  font-size: 15px;
  letter-spacing: -0.03em;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.table-location tbody tr th {
  background: #f9f9f9;
  color: #333;
}

.table-location tbody tr td {
  color: #555;
  font-weight: 400;
}

.table-location tbody tr td:last-child {
  border-right: none;
}

@media screen and (max-width: 767px) {
  .table-location colgroup {
    display: none;
  }
  .table-location tbody tr th,
  .table-location tbody tr td {
    display: block;
    width: 100%;
    max-width: 100%;
  }
}
#site .table-ordering {
  background-color: #f4f4f4;
  padding: 20px;
  color: #222;
}
@media (max-width: 991.98px) {
  #site .table-ordering {
    /*lg*/
    /* justify-content: flex-start; */
    overflow: auto hidden;
  }
  #site .table-ordering table {
    margin: 0;
    justify-content: flex-start;
    text-align: left;
    max-width: 100%;
  }
}

.table-ordering table {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.table-ordering table tbody {
  width: 100%;
  display: grid;
  grid-template-columns: auto repeat(20, minmax(0, min-content));
  grid-auto-columns: max-content;
  justify-content: center;
}

.table-ordering table tbody tr {
  width: 100%;
  display: grid;
  grid-template-columns: subgrid; /* ⭐ 핵심 */
  grid-column: 1/-1;
  gap: 20px;
  /* ⭐ 줄바꿈 방지 */
  /* 부모 전체 컬럼 사용 */
}
@media (max-width: 991.98px) {
  .table-ordering table tbody tr {
    /*lg*/
    gap: 10px;
  }
}
.table-ordering table tbody tr > td {
  /* flex: 1; */
}
.table-ordering table tbody tr:first-child td {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}
.table-ordering table tbody tr:first-child td.square {
  font-family: "notokr";
  letter-spacing: 3px;
}

.table-ordering table tbody tr:last-child td {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  color: var(--page-point-color);
  line-height: 1;
  padding-top: 0;
  letter-spacing: 5px;
  text-align: center;
  text-indent: 3px;
  white-space: nowrap;
}

@media screen and (max-width: 639px) {
  .table-ordering table tbody tr:first-child td {
    font-size: 16px;
  }
  .table-ordering table tbody tr:last-child td {
    font-size: 16px;
    letter-spacing: 3px;
    text-indent: 0px;
  }
}
#site .subpage .table-ordering-option-wrap {
  margin-top: 15px;
  gap: 10px;
}
@media (max-width: 991.98px) {
  #site .subpage .table-ordering-option-wrap {
    /*lg*/
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (min-width: 992px) {
  .table-ordering-option-wrap > div {
    padding-right: 0;
  }
  .table-ordering-option-wrap > div:last-child {
    padding-right: 15px;
  }
}
@media screen and (max-width: 991px) {
  .table-ordering-option {
    margin-bottom: 15px;
  }
}
.table-ordering .ls {
  letter-spacing: 2px;
}

.table-ordering-option {
  width: 100%;
}

.table-ordering-option thead tr th {
  background-color: #555;
  color: #fff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
}

.table-ordering-option tbody tr th {
  vertical-align: top;
}

.table-ordering-option tbody tr td {
  color: #555;
  font-weight: 400;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.table-ordering-option tr th,
.table-ordering-option tr td {
  padding: 6px 2px;
  text-align: left;
}

.table-ordering-option tbody tr th,
.table-ordering-option tbody tr td {
  border-bottom: 1px solid #e3e3e3;
}

.valign_t {
  vertical-align: top !important;
}

.valign_m {
  vertical-align: middle !important;
}

.valign_b {
  vertical-align: bottom !important;
}

/* ---------------------------- mainpage ---------------------------- */
/* [ main-swiper 2405.1 ] */
#mainCarouselSwiper {
  position: relative;
  width: 100%;
}
#mainCarouselSwiper .swiper {
  display: block !important;
}
#mainCarouselSwiper .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: max(clamp(600px, 70vw, 750px), calc(var(--svh100) - var(--navbar-height))); */
  /* 뷰포트가 작을 때 (최소 높이) */
  /* 중간 크기일 때 (중간 높이) */
}
@media (max-width: 767.98px) {
  #mainCarouselSwiper .swiper .swiper-slide {
    height: 500px;
  }
}
@media (min-width: 768px) {
  #mainCarouselSwiper .swiper .swiper-slide {
    height: 300px;
    /* height: 600px; */
  }
}
@media (min-width: 768px) and (max-height: 900px) {
  #mainCarouselSwiper .swiper .swiper-slide {
    /* height: 800px; */
  }
}
@media (max-width: 991.98px) {
  #mainCarouselSwiper .swiper .swiper-slide {
    /*lg*/
    height: 400px;
  }
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* filter: brightness(0.95); */
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption {
  position: relative;
  z-index: 10;
  /* text-align: center; */
  color: #fff;
  margin-bottom: 50px;
  /* .btn {
      backdrop-filter: blur(10px);
      border: 1px solid #fff;
      border-radius: 9999px;
      max-width: 150px;
      justify-content: space-between;
      width: 100%;
      padding-inline: 20px 18px;
      & + .btn {
          margin-left: 5px;
      }
      &::after {
          content: "\e5e1";
          font-family: var(--gms);
      }
  } */
}
@media (max-width: 1199.98px) {
  #mainCarouselSwiper .swiper .swiper-slide .swiper-caption {
    /*xl*/
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  #mainCarouselSwiper .swiper .swiper-slide .swiper-caption {
    /*md*/
    padding-inline: 10px;
    margin: 0;
    text-align: center;
  }
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption .swiper-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption .swiper-link-btn {
  display: none;
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption .swiper-link-btn span::before {
  content: "더보기";
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption h1 {
  position: relative;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: -0.005em;
  margin: 0 0 0px;
  color: inherit;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#mainCarouselSwiper .swiper .swiper-slide .swiper-caption p {
  margin-top: 10px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: inherit;
}

/* 구글아이콘 ver */
#mainCarouselSwiper [class*=swiper-button] {
  display: flex;
  align-items: center;
  top: 0;
  margin: 0;
  opacity: 1;
  width: fit-content;
  height: 100%;
  position: static;
}
#mainCarouselSwiper [class*=swiper-button]::after {
  content: none;
}
#mainCarouselSwiper [class*=swiper-button]::before {
  position: relative;
  right: auto;
  top: 0;
  font-family: var(--gms);
  font-variation-settings: var(--gms-100-out);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  color: rgb(255, 255, 255);
}
#mainCarouselSwiper [class*=swiper-button]:hover::before {
  color: rgb(255, 255, 255);
}
#mainCarouselSwiper [class*=swiper-button].swiper-button-next {
  right: 0;
  order: 3;
}
#mainCarouselSwiper [class*=swiper-button].swiper-button-next::before {
  content: "\e5e1";
}
#mainCarouselSwiper [class*=swiper-button].swiper-button-prev {
  order: 1;
}
#mainCarouselSwiper [class*=swiper-button].swiper-button-prev::before {
  content: "\e2ea";
}
@media (max-width: 767.98px) {
  #mainCarouselSwiper [class*=swiper-button] {
    display: none;
  }
}

#mainCarouselSwiper .swiper-indicators-wrap {
  position: absolute;
  bottom: 0;
  z-index: 10;
  max-width: 1300px;
  margin-inline: auto;
  /* width: fit-content; */
  /* margin-inline: auto 130px; */
  /* width: 100%; */
  left: 0;
  right: 0;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  gap: 20px;
  bottom: 20px;
}
@media (max-width: 767.98px) {
  #mainCarouselSwiper .swiper-indicators-wrap {
    /*md*/
    justify-content: center;
  }
}

#mainCarouselSwiper .swiper-pagination-container {
  z-index: 10;
  position: static;
  left: 50%;
  /* transform: translateX(-50%); */
  bottom: 40px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  height: auto;
  line-height: 1;
  gap: 7px;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50px;
  margin: 0 4px;
  backdrop-filter: blur(10px);
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
  transition: ease-in-out 0.2s all;
  margin: 0;
}
#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet-active {
  background: #fff;
  box-shadow: none;
}

#mainCarouselSwiper .swiper-pagination-container {
  z-index: 10;
  position: static;
  width: fit-content;
  margin: 0;
  left: 50%;
  /* transform: translateX(-50%); */
  bottom: 40px;
  order: 2;
  padding: 0;
}

#mainCarouselSwiper .swiper-pagination-container .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  height: auto;
  line-height: 1;
  gap: 12px;
}

#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50px;
  margin: 0 4px;
  backdrop-filter: blur(10px);
  /* border: 1px solid #fff; */
  background-color: #fff;
}

#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet {
  opacity: 1;
  /* background-color: rgba(255, 255, 255, 0); */
  transition: ease-in-out 0.2s all;
  margin: 0;
}

#mainCarouselSwiper .swiper-pagination-container .swiper-pagination span.swiper-pagination-bullet-active {
  background: #fff;
  box-shadow: none;
}

/* [ mainpage ] */
.mainpage :is(.bg) {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  filter: brightness(0.6);
}
.mainpage section {
  position: relative;
  padding-block: 80px 90px;
}
.mainpage section.bg-gray {
  background-color: #f6f6f6;
}

.mainpage .main-support * {
  color: #fff;
}
.mainpage .main-support * .en {
  color: #fff;
}

#site .btn-more {
  display: inline-flex;
  height: 52px;
  min-width: 190px;
  padding: 12px 20px 12px 30px;
  align-items: center;
  gap: 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: -0.54px;
  margin-top: 10px;
  width: fit-content;
  margin-inline: auto;
  justify-content: space-between;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.25s;
}

#site .btn-more + .btn-more {
  margin-left: 4px;
}

@media (max-width: 767.98px) {
  #site .btn-more {
    /*md*/
    font-size: 15px;
    height: 52px;
    min-width: 100px;
  }
}
#site .btn-more span.material-symbols-outlined {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--page-point-color);
  border-radius: 9999px;
  width: 24px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
}

#site .btn-more:hover {
  background: #fff;
  color: #111;
}

.m-title-h3 {
  margin-bottom: 40px;
  text-align: center;
}
.m-title-h3 h3 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
}
.m-title-h3 h3 .en {
  display: block;
  text-transform: capitalize;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--page-point-color);
  /* display: none; */
  margin-bottom: 5px;
}
.m-title-h3 p {
  font-size: 18px;
  margin-top: 20px;
}
.m-title-h3:has(a) {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
.m-title-h3:has(a) a {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}

.m-product-wrap {
  display: flex;
  gap: 50px 30px;
  margin-inline: -50px;
}
@media (max-width: 1599.98px) {
  .m-product-wrap {
    /*xxl*/
    margin-inline: 0;
  }
}
@media (max-width: 991.98px) {
  .m-product-wrap {
    /*md*/
    flex-direction: column;
    max-width: 400px;
    margin-inline: auto;
  }
}
.m-product-wrap .col {
  transition: 0.3s;
  /* border-radius: 16px; */
  /* background: var(--page-point-color); */
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
  /* color: #fff; */
  /* background: #fff; */
  /* padding: 18px; */
  /* box-shadow: 0 0px 30px rgba(0, 0, 0, 0.2); */
}
.m-product-wrap .col img:not(.product-img) {
  width: 100%;
  pointer-events: none;
  object-fit: cover;
  transition: all 0.3s;
  filter: brightness(0.7);
  border-radius: 12px;
}
@media (max-width: 575.98px) {
  .m-product-wrap .col img:not(.product-img) {
    /*sm*/
    height: 200px;
    object-position: 30%;
  }
}
.m-product-wrap .col img.product-img {
  pointer-events: none;
  position: absolute;
  right: 30px;
  top: 12px;
  z-index: 1000;
  aspect-ratio: 1;
  border-radius: 9999px;
  overflow: hidden;
  max-width: clamp(100px, 12.5vw, 200px);
  /* display: none; */
}
@media (max-width: 991.98px) {
  .m-product-wrap .col img.product-img {
    /*md*/
    max-width: clamp(140px, 38vw, 180px);
  }
}
@media (max-width: 575.98px) {
  .m-product-wrap .col img.product-img {
    /*sm*/
    max-width: 175px;
    right: 10px;
  }
}
.m-product-wrap .col .info {
  /* position: absolute; */
  inset: 0;
  display: block;
  padding: 28px 0px 0;
  z-index: 100;
  background: #fff;
}
.m-product-wrap .col .info em {
  all: unset;
}
.m-product-wrap .col .info span.text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 650;
  /* text-shadow: 0 0 5px rgba(0,0,0,0.4); */
  text-align: center;
}
.m-product-wrap .col .info span.text em + em {
  color: #555;
  font-size: 0.76em;
  font-weight: 450;
  letter-spacing: -0.015em;
}
.m-product-wrap .col .info span.material-symbols-outlined {
  font-variation-settings: var(--gms-400-out), var(--gms-grad-zero);
  font-size: inherit;
}
.m-product-wrap .col .info .link {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: fit-content;
  gap: 5px;
  font-size: 14px;
  background: #ccc;
  border-radius: 20px;
  padding: 8px 12px;
  display: none;
}
.m-product-wrap .col:hover {
  /* background-color: var(--page-point-color); */
}
.m-product-wrap .col:hover p {
  color: #fff;
  background-color: var(--page-point-color);
}
.m-product-wrap .col:hover p .material-symbols-outlined {
  color: inherit;
}
.m-product-wrap .col:hover img {
  /* opacity: 0.6; */
  /* transform: scale(1.15); */
}

.m-busi-wrap {
  display: flex;
  gap: 110px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}
.m-busi-wrap .col {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  /* display: flex; */
  /* padding: 30px 30px; */
  /* height: clamp(250px, 19vw, 280px); */
  /* border: 2px solid #fff; */
  /* box-shadow: 6px 8px 30px -3px rgb(49 49 49 / 10%); */
  /* transition: border-color 0.3s; */
  /* background: #fff; */
}
.m-busi-wrap .col .m-title-h3 {
  text-align: left;
}
.m-busi-wrap .col .m-title-h3 h3 {
  font-size: clamp(40px, 5vw, 56px);
}
.m-busi-wrap .col .m-title-h3 p {
  color: #666;
  margin-top: 28px;
}
.m-busi-wrap .col .m-title-h3:hover img {
  scale: 1.15;
  filter: brightness(1);
}
.m-busi-wrap .col .m-title-h3 img {
  transition: 0.5s;
  position: absolute;
  /* z-index: -1; */
  inset: 0;
  object-fit: cover;
  filter: brightness(0.8);
  user-select: none;
  pointer-events: none;
}
.m-busi-wrap .col .m-title-h3 span.info {
  display: flex;
  align-self: flex-end;
  align-items: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 750;
  line-height: 115%; /* 45px */
  color: #fff;
  justify-content: space-between;
  flex: 1;
  gap: 15px;
  z-index: 2;
  letter-spacing: -0.015em;
}
.m-busi-wrap .col .m-title-h3 span.info strong {
  color: inherit;
  font-weight: inherit;
}
.m-busi-wrap .col .m-title-h3 span.info strong small {
  color: inherit;
  font-size: 26px;
  line-height: 100%;
}
.m-busi-wrap .col .m-title-h3 span.info span.icon {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 9999px;
  /* background-color: var(--page-point-color); */
  /* background: #dddddd; */
  flex-shrink: 0;
  border: 2px solid #fff;
  transition: all 0.3s;
}
.m-busi-wrap .col .m-title-h3 span.info span.icon svg {
  scale: 0.9;
}

.products-swiper + .products-swiper {
  margin-top: 20px;
}

.products-swiper {
  position: relative;
  /* margin-inline: 100px; */
  display: flex;
  align-items: center;
  gap: 30px;
  /* overflow: hidden; */
  /* width: 100%; */
  margin-inline: -100px;
}
@media (max-width: 1599.98px) {
  .products-swiper {
    /*xxl*/
    margin: 0;
  }
}
.products-swiper [class^=swiper-button] {
  position: static;
  margin: 0;
  transform: none;
  color: #bbb;
}
@media (max-width: 767.98px) {
  .products-swiper [class^=swiper-button] {
    /*md*/
    display: none;
  }
}
.products-swiper .swiper-box {
  padding: 30px;
  background-color: #fff;
  border-radius: 16px;
  flex: 1;
  /* width: 100%; */
  overflow: hidden;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.04);
}
.products-swiper .swiper {
  width: 100%;
  border-radius: 16px;
}
.products-swiper .swiper-wrapper {
  /* padding: 20px 0; */
}
.products-swiper .swiper-slide {
  background-color: #fff;
  /* height: 90px; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0px 0px 10px rgba(0,0,0,0.1); */
  border-radius: 16px;
  overflow: hidden;
}
.products-swiper .swiper-slide img {
  height: auto;
  /* max-height: 80px; */
  margin-inline: auto;
  mix-blend-mode: multiply;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.products-swiper.swiper1 img {
  aspect-ratio: 4/6;
}
.products-swiper.swiper2 img {
  aspect-ratio: 5/4;
}

/* [ main-widget ] */
.mainpage [class^=board_box] {
  margin-bottom: 0;
}

.mainpage .page-header {
  margin-block: 0 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.mainpage .page-header h4 {
  display: inline-block;
  font-size: clamp(18px, 3vw, 22px);
}
.mainpage .page-header i::before {
  position: relative;
  display: block;
  content: "\e145";
  translate: 0 2px;
  font-family: var(--gms);
  font-variation-settings: var(--gms-300-out);
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 500;
  color: #000;
}

.mainpage .type_list {
  display: flex;
  flex-direction: column;
  /* gap: 15px; */
}
.mainpage .type_list li {
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  padding-block: 27px;
  padding-right: 50px;
  justify-content: space-between;
  gap: 17px;
  border-bottom: 1px solid #eee;
}
.mainpage .type_list li:hover a {
  text-decoration: underline;
}
.mainpage .type_list li::after {
  content: "\e145";
  font-family: var(--gms);
  position: absolute;
  right: 0;
  font-size: 36px;
  color: #2ba1ea;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 300;
}
.mainpage .type_list li.no_bd_text {
  justify-content: center;
}
.mainpage .type_list li .info {
  color: #666;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  order: 5;
}
.mainpage .type_list li .info span:not(.regdate) {
  display: none;
}
.mainpage .type_list li .board_status_badge {
  order: 2;
  display: flex;
  line-height: 1;
  margin-right: auto;
  margin-left: 10px;
  background-color: var(--page-point-color) !important;
  color: #fff;
  padding: 5px 8px;
  align-items: center;
  font-size: 12px;
  margin-block: -5px;
  align-self: center;
}
.mainpage .type_list li .board_status_badge.badge_wait {
  background-color: #a0a1a3 !important;
}
.mainpage .type_list li .board_status_badge.badge_complete {
  background-color: #e40000 !important;
}
.mainpage .type_list li span.subject {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
}
.mainpage .type_list li a:hover {
  /* text-decoration: underline; */
}
.mainpage .type_list li :where(li, a) {
  line-height: 1;
  font-size: clamp(14px, 3vw, 16px);
  color: #000;
}

.mainpage .type_thumb {
  display: grid;
  grid-template-columns: repeat(2, minmax(1fr));
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  gap: 10px;
}
.mainpage .type_thumb > div {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.mainpage .type_thumb .inner {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
}
.mainpage .type_thumb .thumb {
  aspect-ratio: 1.6666666667;
  height: auto;
}
.mainpage .type_thumb .bottom {
  padding: 0;
}
.mainpage .type_thumb .bottom .title {
  padding: 0;
  margin-top: 5px;
}
.mainpage .type_thumb .bottom .title a {
  font-size: clamp(15px, 3vw, 17px);
}
.mainpage .type_thumb .info {
  display: none;
}

.mainpage :where(.type_video, [data-board-option=video]) .top a::before {
  content: "\f144";
  font-family: "font awesome 6 free";
  font-weight: 400;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
}
.mainpage :where(.type_video, [data-board-option=video]) .inner:hover .top a::before {
  opacity: 1;
}

/* [ main-popup ] */
#site #mainPopup {
  position: relative;
  top: 50px;
}
#site #mainPopup .main_popup {
  display: none;
  position: absolute;
  top: 100px !important;
  min-width: 300px;
  z-index: 900;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
#site #mainPopup .main_popup.show {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
#site #mainPopup .main_popup button.close {
  all: unset;
  cursor: pointer;
  opacity: 1;
  margin: 0;
  height: auto;
  color: inherit;
  font-size: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#site #mainPopup .main_popup span.material-symbols-outlined {
  line-height: 0.8;
  font-variation-settings: var(--gms-200-out);
  font-size: inherit;
}
#site #mainPopup .main_popup .main_popup_contents {
  overflow: hidden;
  /* padding: 10px; */
  background: #fff;
}
#site #mainPopup .main_popup .main_popup_contents video {
  display: block;
}
#site #mainPopup .main_popup .main_popup_contents img {
  display: block;
  max-width: 100%;
  height: auto;
}
#site #mainPopup .main_popup .main_popup_optional {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding-inline: 7px 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 40px;
}
#site #mainPopup .main_popup .main_popup_optional label {
  font-weight: 400;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 400;
}
#site #mainPopup .main_popup .main_popup_optional label input[type=checkbox] {
  display: none;
}
#site #mainPopup .main_popup .main_popup_optional label span {
  padding-left: 3px;
  display: flex;
  gap: 5px;
  align-items: center;
}
#site #mainPopup .main_popup .main_popup_optional label span::before {
  content: "\e8b5";
  display: inline-block;
  font-family: var(--gms);
  font-variation-settings: var(--gms-300-out);
  font-size: clamp(16px, 2vw, 18px);
  /* transform: translateY(3px); */
}
#site #mainPopup .main_popup .main_popup_optional label :where(label, div) {
  opacity: 0.8;
}
#site #mainPopup .main_popup .main_popup_optional label :where(label, div):where(:hover, :focus) {
  opacity: 1;
}
#site #mainPopup .main_popup .main_popup_optional label :where(label, div, span) {
  line-height: 1;
}
#site #mainPopup .main_popup.main_popup_left {
  left: 50px;
}
#site #mainPopup .main_popup.main_popup_center {
  left: 50%;
  transform: translate(-50%);
}
#site #mainPopup .main_popup.main_popup_right {
  right: 50px;
}
@media (max-width: 767.98px) {
  #site #mainPopup .main_popup[class*=main_popup_] {
    left: 15px;
    right: 15px;
    transform: none;
    width: fit-content;
    margin-inline: auto;
  }
}

/* ---------------------------- table ---------------------------- */
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive table {
    min-width: 700px;
  }
}
:where(.table) {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  table-layout: fixed;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  border-spacing: 0;
}

:where(.table) :where(th, td) {
  vertical-align: top;
  line-height: 1.5;
}

.table-style {
  --border-color: #e0e0e0;
  border: 1px solid var(--border-color);
  border-right: none;
  border-left: none;
  border-top: 2px solid var(--page-point-color);
  background-color: #fff;
  margin: 0;
  border-right: 2px solid #fff;
}

.table-style :is(th, td) {
  padding: 15px 20px;
  font-size: clamp(14px, 2vw, 15px);
  vertical-align: middle;
  border: 1px solid var(--border-color);
  border-left: none;
  text-align: left;
  line-height: 1.8;
  letter-spacing: -0.025em;
}

.table-style td {
  color: #555;
}

.table-style thead th {
  border-bottom: 0;
  background-color: #eee;
  border: 1px solid var(--border-color);
  color: #222;
  /* text-align: center; */
  font-weight: 600;
}

.table-style thead,
.table-style tbody:only-child {
  border-top: 2px solid var(--page-point-color);
}

.table-style tbody th {
  background-color: #f8f8f8;
  /* text-align: center; */
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}

/* ---------------------------- board ---------------------------- */
/* 게시판 숨김 */
.board_wrapper {
  margin-block: 0;
  /* 게시글 공지사항 */
}
.board_wrapper tr.notice {
  background-color: #f8f8f8;
}
.board_wrapper tr.notice th.num::before {
  content: "공지";
  display: flex;
  padding: 1px 7px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #666;
  color: #fff;
  position: absolute;
  width: fit-content;
  margin-inline: auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  /* bottom: 50%; */
  font-size: 13px;
}
.board_wrapper tr.notice td.subject {
  /* 게시글 아이콘 */
}
.board_wrapper tr.notice td.subject a {
  font-weight: 500;
  color: #000;
}
.board_wrapper tr.notice td.subject .is_secret {
  order: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board_wrapper tr.notice td.subject span {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 7px;
}
.board_wrapper tr.notice td.subject span .badge {
  display: none !important;
}
.board_wrapper tr.notice td.subject small {
  margin-top: 0;
  /* 잠금 아이콘 */
  /* 댓글 아이콘*/
}
.board_wrapper tr.notice td.subject small.lock {
  order: 0;
  translate: 0 -1px;
  font-size: 0.9em;
}
.board_wrapper tr.notice td.subject small.comment {
  opacity: 0.8;
  order: 1000;
  translate: 0 -1px;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  gap: 1px;
  color: var(--page-point-color-dark);
  font-weight: 700;
}
.board_wrapper tr.notice td.subject small.comment::before {
  content: "[";
}
.board_wrapper tr.notice td.subject small.comment::after {
  content: "]";
}
.board_wrapper tr.notice td.subject small.comment i {
  display: none;
}
.board_wrapper tr.notice td.cate::before {
  content: "공지";
  color: #222;
}
.board_wrapper tr.notice td.cate span {
  display: none;
}

/* 게시글 수정/삭제/목록/댓글 등록 버튼 */
.board_wrapper[id$=_view] .btn {
  min-width: 60px;
  padding-inline: 10px;
  justify-content: center;
  align-items: center;
}
.board_wrapper :is(.form-caption, .wr_caution) i {
  color: var(--page-point-color);
}
.board_wrapper .wr_caution {
  padding-left: 18px;
}

#site :where(.member_wrapper, .board_wrapper) {
  /* 게시판/주문폼/회원가입 버튼 */
  /* checkbox, radio */
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
#site :where(.member_wrapper, .board_wrapper) .text-center:not(td) {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
#site :where(.member_wrapper, .board_wrapper) .text-center:not(td) .btn + .btn {
  margin: 0;
}
#site :where(.member_wrapper, .board_wrapper) .btn.btn-lg,
#site :where(.member_wrapper, .board_wrapper) .btn + .btn:not(.btn-outline-danger) {
  min-width: 180px;
}
#site :where(.member_wrapper, .board_wrapper) tbody td:has(.radio-inline, .checkbox-inline) {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(5px, 2vw, 10px) clamp(15px, 3vw, 20px);
  font-size: clamp(14px, 2vw, 16px);
}
#site :where(.member_wrapper, .board_wrapper) .checkbox {
  margin: 0;
}
#site :where(.member_wrapper, .board_wrapper) .checkbox label {
  cursor: pointer;
  width: fit-content;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox label, .radio label) {
  letter-spacing: -0.06em;
}
#site :where(.member_wrapper, .board_wrapper) .custom_checkbox + span a {
  font-weight: 500;
  color: #1b54e4;
  text-decoration: underline;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .checkbox, .radio-inline, .radio) :where(input[type=checkbox], input[type=radio]) {
  position: static;
  margin: 0 5px 0 0;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox, .radio) label {
  padding-left: 0;
  display: flex;
  align-items: center;
}
#site :where(.member_wrapper, .board_wrapper) :where(.checkbox-inline, .radio-inline) {
  margin-block: 0;
  padding-left: 0;
  margin-left: 0;
  margin-top: 0;
}
@media (max-width: 767.98px) {
  #site :where(.member_wrapper, .board_wrapper) div.text-center {
    margin-top: 20px;
    /* margin-bottom: 50px; */
    /* padding-top: 30px; */
    display: flex;
    justify-content: center;
    width: 100%;
  }
  #site :where(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
    margin-left: 0;
  }
  #site :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
    padding: 0;
    height: 50px;
    font-size: 14px;
  }
  #site :where(.member_wrapper, .board_wrapper) .text-center :where(.btn.btn-lg, .btn + .btn) {
    flex: 1;
    min-width: inherit;
  }
}

/* 카테고리 / 분류 */
#bbsArea .category_wrap {
  margin-bottom: 50px;
}
#bbsArea .category_wrap ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-bottom: 50px;
}
#bbsArea .category_wrap ul li {
  margin: 0;
}
#bbsArea .category_wrap ul li a {
  color: #888;
  font-weight: 500;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 16px;
}
#bbsArea .category_wrap ul li a:hover {
  color: #111;
}
#bbsArea .category_wrap ul li.on :where(a, a:hover, a:focus) {
  color: #000;
  font-weight: 600;
}

#site .list-wrap colgroup .num_col {
  width: 90px;
}
#site .list-wrap colgroup .hits_col,
#site .list-wrap colgroup .writer_col {
  width: 100px;
}

/* 게시판 노출 */
#bbsArea {
  position: relative;
}
#bbsArea .board_data_view {
  border-top: 1px solid #333;
  border-bottom: 1px solid #ddd;
}
#bbsArea .write_btn_wrap {
  position: absolute;
  right: 0;
  bottom: 0;
}
#bbsArea .btn-lg {
  width: 200px;
}
#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
  display: block;
  margin-top: 0;
}
#bbsArea .board_wrapper + .search_wrap {
  margin-top: 50px;
}
#bbsArea .board_wrapper + .pagination_wrap {
  margin-block: 50px;
}

#bbsArea .pagination_wrap + .search_wrap {
  margin-top: 0px;
}
#bbsArea .pagination_wrap ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
#bbsArea .pagination_wrap ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  aspect-ratio: 1;
  font-size: 15px;
  border-radius: 9999px;
}
#bbsArea .pagination_wrap ul li:not(.active) a:hover {
  background-color: #eee;
}
#bbsArea .pagination_wrap ul li.active a {
  width: 28px;
  background-color: var(--page-point-color);
  color: #fff;
  font-weight: 700;
}
#bbsArea .pagination_wrap ul li + #bbsArea .pagination_wrap ul li {
  margin-left: -1px;
}
#bbsArea .pagination_wrap .box a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* 게시판 목록 하단 */
#bbsArea .search_wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0;
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
#bbsArea .search_wrap #search_kind {
  cursor: pointer;
  line-height: 1;
}
#bbsArea .search_wrap .write_btn_wrap {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  #bbsArea .search_wrap {
    flex-direction: column;
    max-width: 300px;
    margin-inline: auto;
  }
  #bbsArea .search_wrap .write_btn_wrap {
    position: static;
    display: flex;
    gap: 5px;
    width: 100%;
  }
  #bbsArea .search_wrap .write_btn_wrap > .btn {
    width: 100%;
    min-width: auto;
    flex: 1;
  }
  #bbsArea .search_wrap select.form-control {
    max-width: 100% !important;
  }
}

#bbsArea .badge {
  display: inline-flex;
  background-color: var(--page-point-color);
  border-radius: 3px;
  padding: 3px 7px;
  margin-block: -3px;
  margin-right: 0px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

#bbsArea .option_wrap {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
#bbsArea .option_wrap .list_btn_wrap {
  position: static;
}

/* 게시글 헤더 */
#bbsArea .header_wrap {
  /* text-align: center; */
  padding: 40px var(--container-padding-inline) 55px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 991.98px) {
  #bbsArea .header_wrap {
    /*lg*/
    padding: 20px;
  }
}
#bbsArea .header_wrap h4.title {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  #bbsArea .header_wrap h4.title {
    /*lg*/
    text-align: center;
    font-size: 20px;
  }
}
#bbsArea .header_wrap span {
  color: #666;
}
#bbsArea .header_wrap strong {
  color: #000;
  font-weight: 600;
}
#bbsArea .header_wrap .title {
  margin: 0;
  font-size: 24px;
}
#bbsArea .header_wrap .info {
  margin-top: 15px;
  opacity: 0.5;
}
#bbsArea .header_wrap .info span {
  font-size: 13px;
  color: #000;
}
#bbsArea .header_wrap .info span + #bbsArea .header_wrap .info span {
  margin-left: 9px;
}

/* 게시글 콘텐츠 */
#bbsArea .contents_wrap {
  padding: 50px 0px;
}
#bbsArea .contents_wrap .contents_inner {
  font-size: 14px;
}
#bbsArea .contents_wrap img {
  max-width: 100%;
  height: auto;
}
#bbsArea .contents_wrap p {
  font-size: inherit;
  line-height: 1.6;
  margin: 1em 0;
}
#bbsArea .contents_wrap a {
  color: #337ab7;
}
#bbsArea .contents_wrap a:hover {
  color: #1b5a92;
  text-decoration: underline;
}
#bbsArea .contents_wrap a:visited {
  color: #6c368b;
}
#bbsArea .contents_wrap a:visited:hover {
  color: #461b5f;
  text-decoration: underline;
}
#bbsArea .contents_wrap :is(.h1, h1) {
  font-size: 36px;
}
#bbsArea .contents_wrap :is(.h2, h2) {
  font-size: 30px;
}
#bbsArea .contents_wrap :is(.h3, h3) {
  font-size: 24px;
}
#bbsArea .contents_wrap :is(.h4, h4) {
  font-size: 18px;
}
#bbsArea .contents_wrap :is(.h5, h5) {
  font-size: 14px;
}
#bbsArea .contents_wrap :is(.h6, h6) {
  font-size: 12px;
}
#bbsArea .contents_wrap :is(.h1, .h2, .h3, h1, h2, h3) {
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 500;
  color: inherit;
}
#bbsArea .contents_wrap :where(li, dl) {
  margin: inherit;
  padding: inherit;
  list-style-position: inside;
}
#bbsArea .contents_wrap ul li {
  list-style-type: disc;
}
#bbsArea .contents_wrap ol li {
  list-style-type: decimal;
}

/* 게시글 다운로드 */
#bbsArea :is(.download_wrap, .status_wrap) {
  padding: 15px;
  border-top: 1px solid #ddd;
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
#bbsArea :is(.download_wrap, .status_wrap) th {
  text-align: left;
  vertical-align: top;
  width: 100px;
}
#bbsArea :is(.download_wrap, .status_wrap) ul {
  display: flex;
  flex-direction: column;
  gap: 5px 10px;
  flex-wrap: wrap;
}
#bbsArea :is(.download_wrap, .status_wrap) ul a {
  color: #000;
}
#bbsArea :is(.download_wrap, .status_wrap) ul a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  #bbsArea :is(.download_wrap, .status_wrap) ul {
    flex-direction: column;
  }
  #bbsArea :is(.download_wrap, .status_wrap) tr {
    display: flex;
    flex-direction: column;
  }
  #bbsArea :is(.download_wrap, .status_wrap) tr > * {
    width: 100%;
  }
  #bbsArea :is(.download_wrap, .status_wrap) tr th {
    padding-bottom: 10px;
  }
  #bbsArea :is(.download_wrap, .status_wrap) tr a {
    word-break: break-all;
  }
}

/* 게시글 댓글 */
#bbsArea .reply_wrap {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}
#bbsArea .reply_wrap h4 {
  position: static;
  text-align: left;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}
#bbsArea .reply_wrap > h4 {
  /* order: 1; */
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0px;
}
#bbsArea .reply_wrap .btn_wrap {
  margin-top: 0.75em;
  display: flex;
}
#bbsArea .reply_wrap .btn_wrap .pull-left {
  display: flex;
  gap: 5px;
}
#bbsArea .reply_wrap :is(#bbsArea .reply_wrap #reply_modify_btn, #bbsArea .reply_wrap .text-left + button) {
  margin-left: auto;
}
#bbsArea .reply_wrap #reply_btn {
  cursor: pointer;
  background-color: var(--page-point-color);
  color: #fff;
  display: flex;
}
#bbsArea .reply_wrap #reply_list {
  /* order: 3; */
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ccc;
  margin-block: 20px;
}
#bbsArea .reply_wrap #reply_list .info {
  display: flex;
  gap: 7px;
  /* height: 40px; */
}
#bbsArea .reply_wrap #reply_list :is([id*=reply_modify], [id*=reply_delete]) {
  min-width: unset;
  padding: 0;
}
#bbsArea .reply_wrap #reply_list :is([id*=reply_modify], [id*=reply_delete]):focus {
  border: 0;
}
#bbsArea .reply_wrap #reply_list .media {
  position: relative;
  margin: 0;
  padding: 20px 5px 40px;
}
#bbsArea .reply_wrap #reply_list .media + #bbsArea .reply_wrap #reply_list .media {
  border-top: 1px solid #ddd;
}
#bbsArea .reply_wrap #reply_list .media .media-left,
#bbsArea .reply_wrap #reply_list .media > .pull-left {
  padding-right: 20px;
}
#bbsArea .reply_wrap #reply_list .media .media .media-left img {
  border-radius: 100%;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .media .media-body {
  position: static;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .info {
  position: absolute;
  /* right: 0; */
  left: 130px;
  bottom: 15px;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .info .btn {
  display: inline-block;
  font-weight: 500;
  /* padding: 0 5px; */
  line-height: 1;
  font-size: 12px;
  vertical-align: middle;
  color: #333;
  height: auto;
  max-width: unset;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body .info span {
  color: #aaa;
  font-size: 13px;
  margin-left: 6px;
  vertical-align: middle;
}
#bbsArea .reply_wrap #reply_list .media .media .media-body p {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  word-break: break-all;
}
#bbsArea .reply_wrap #reply_list .media .media-heading .text-muted {
  color: #aaa;
  font-weight: 400;
  font-size: 12px;
  position: absolute;
  bottom: 15px;
  left: 5px;
  margin-left: 0 !important;
}
#bbsArea .reply_wrap #reply_write .info .form-control {
  display: inline-block;
  width: 120px;
}
#bbsArea .reply_wrap #reply_write .info .form-control + #bbsArea .reply_wrap #reply_write .info .form-control {
  margin-left: 2px;
}
#bbsArea .reply_wrap #reply_write .contents {
  margin-top: 5px;
}
#bbsArea .reply_wrap #reply_write .contents .form-control {
  height: 100px;
  width: 100%;
  min-height: 100px;
  max-height: 300px;
  resize: vertical;
  padding: 10px 15px;
}
#bbsArea .reply_wrap #reply_write .btn_wrap {
  margin-top: 5px;
  text-align: right;
}
#bbsArea .reply_wrap #reply_write .btn_wrap .btn {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 539px) {
  #bbsArea .reply_wrap .info .form-control {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
  #bbsArea .reply_wrap .info .form-control + #bbsArea .reply_wrap .info .form-control {
    margin-left: 0;
  }
}

/* 게시글 작성 */
#bbsArea .table.board_write_table {
  border-top: 1px solid #333;
  border-collapse: inherit;
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
  /* 휴지통 버튼 */
  /* 필수 입력 항목 */
  /* textarea 글자수 */
  /* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
#bbsArea .table.board_write_table tbody td {
  padding: 0px;
  border: 0;
}
#bbsArea .table.board_write_table .text-muted i {
  color: var(--page-point-color);
}
#bbsArea .table.board_write_table .files {
  /* 파일 추가 버튼 */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px 15px;
  flex: 1;
}
#bbsArea .table.board_write_table .files #File_add {
  aspect-ratio: 1;
  width: auto;
  padding: 9px 12px;
  margin: 0;
}
#bbsArea .table.board_write_table .files + #File_add {
  padding: 0;
  padding-left: 0;
  padding-right: 0;
}
#bbsArea .table.board_write_table .files + #File_add .fa-plus {
  line-height: 0;
}
#bbsArea .table.board_write_table .files .fileInput {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, min-content);
  align-self: stretch;
}
#bbsArea .table.board_write_table .files .fileInput .file_add {
  padding: 6px 7px 5px;
}
#bbsArea .table.board_write_table .files .fileInput .tempChk {
  text-align: right;
  font-size: 12px;
  margin-top: 5px;
  color: #555;
}
#bbsArea .table.board_write_table .files + .sumChk {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}
@media (max-width: 767.98px) {
  #bbsArea .table.board_write_table .text-muted {
    width: 100%;
  }
}
#bbsArea .table.board_write_table :is(.refresh, .delete_attach) {
  display: inline-block;
  color: #999;
  line-height: 40px;
  margin-left: 7px;
  margin-right: 7px;
  cursor: pointer;
}
#bbsArea .table.board_write_table :is(.refresh, .delete_attach):hover {
  color: #ec0909;
}
#bbsArea .table.board_write_table th:has(.required_text) > :where(span:first-child, span.required_text) {
  position: static;
  margin-right: 2px;
  color: var(--page-point-color);
}
#bbsArea .table.board_write_table .frm_textarea_cnt {
  display: none;
}
@media (min-width: 768px) {
  #bbsArea .table.board_write_table .files_upload_wrap {
    gap: 15px;
    display: flex;
  }
  #bbsArea .table.board_write_table .files_upload_wrap .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    aspect-ratio: 1;
    height: 40px;
  }
}
@media (max-width: 767.98px) {
  #bbsArea .table.board_write_table .files {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #bbsArea .table.board_write_table img[alt*="현재 대표 이미지"] {
    max-width: 100%;
  }
  #bbsArea .table.board_write_table #delete_thumb {
    width: 100%;
  }
  #bbsArea .table.board_write_table .files_upload_wrap {
    display: flex;
    flex-direction: column;
  }
  #bbsArea .table.board_write_table .files_upload_wrap .btn {
    width: 100%;
    aspect-ratio: inherit;
    margin-top: 15px;
  }
  #bbsArea .table.board_write_table .files_upload_wrap .files .fileInput .file_add {
    position: relative;
    right: auto;
  }
}

/* input */
.form-control {
  width: 100%;
  font-family: var(--page-font-family);
  padding: 0.6rem 0.85rem;
  font-size: clamp(13px, 2vw, 15px);
  height: var(--form-height);
  border-radius: var(--radius-sm);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--page-grey-color);
  color: #333;
  letter-spacing: -0.018em;
  transition: all 0.25s;
}
.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border-color: var(--page-grey-color);
  /* box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.08); */
}
.form-control:not([readonly]):focus {
  border-color: var(--page-point-color);
}
.form-control[type=file] {
  position: relative;
  width: 100%;
  cursor: pointer;
  padding: 0 0.8rem;
  padding-left: 0;
  line-height: calc(var(--form-height) - 2px);
  margin: 0;
}
.form-control[type=file]::file-selector-button {
  width: 80px;
  margin-right: 10px;
  font-family: inherit;
  position: relative;
  left: 0;
  height: 100%;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-radius: 0;
}
.form-control[type=file]:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #e5e5e5;
}

#search_query.form-control {
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--page-grey-color);
}
#search_query.form-control:focus {
  background-color: #fff;
  border-color: var(--page-point-color);
}

textarea.form-control {
  padding-block: 0.9rem;
  line-height: 1.5;
}

select.form-control {
  -webkit-appearance: none;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB2ZXJzaW9uPSIxLjEiICAgaWQ9InN2ZzIiICAgdmlld0JveD0iMCAwIDQ4MCA0ODAiICAgaGVpZ2h0PSI0ODAiICAgd2lkdGg9IjQ4MCI+ICA8bWV0YWRhdGEgICAgIGlkPSJtZXRhZGF0YTEwIj4gICAgPHJkZjpSREY+ICAgICAgPGNjOldvcmsgICAgICAgICByZGY6YWJvdXQ9IiI+ICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4gICAgICAgIDxkYzp0eXBlICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPiAgICAgICAgPGRjOnRpdGxlPjwvZGM6dGl0bGU+ICAgICAgPC9jYzpXb3JrPiAgICA8L3JkZjpSREY+ICA8L21ldGFkYXRhPiAgPGRlZnMgICAgIGlkPSJkZWZzOCIgLz4gIDxwYXRoICAgICBpZD0icGF0aDQiICAgICBkPSJNIDE0MCwxOTAgMjQwLDI5MCAzNDAsMTkwIFoiIC8+PC9zdmc+);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 5px) 11px;
  background-origin: border-box;
  padding-right: 23px;
  max-width: 100px;
}

.wr_add_button select.form-control {
  max-width: 100%;
}

select.form-control#wr_cate {
  max-width: 200px;
}

input.form-control {
  -webkit-appearance: none;
  padding-right: 20px;
}
input.form-control#wr_reply_captcha {
  max-width: 130px;
  width: 100% !important;
}
input.form-control + .clear-input {
  display: none;
  border: 0;
  background-color: transparent;
}
input.form-control.vaild-text + .clear-input {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 100%;
  color: #bbb;
  top: 0;
  right: 0;
  border: 1px solid transparent;
}
input.form-control.vaild-text + .clear-input::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}
input.form-control + .clear-input {
  display: none;
  border: 0;
  background-color: transparent;
}
input.form-control + .clear-input:hover {
  color: var(--page-point-color);
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
  .form-control {
    width: 100%;
  }
}
.wr_form_wrap {
  display: grid;
  grid-template-columns: 1fr 0.5fr 2fr;
  gap: 10px;
  padding: 3px 0 0;
}
.wr_form_wrap label {
  font-size: 13px;
}
@media (max-width: 768px) {
  .wr_form_wrap {
    display: flex;
    flex-direction: column;
  }
}

.wr_form_item {
  position: relative;
}
.wr_form_item input.form-control {
  padding-right: 40px;
  background-color: transparent;
  padding-right: 35px;
}
.wr_form_item :where(.input-group, .form-control) {
  width: 100%;
}

.custom_file {
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
}

.checkbox-inline + .checkbox-inline {
  margin-left: 20px;
}

:is(.custom_radio, .custom_checkbox) {
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
}

:is(.custom_radio, .custom_checkbox, .status_wrap input) + span {
  user-select: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom_checkbox + span {
  user-select: none;
}
.custom_checkbox + span::before {
  margin: 0;
  font-size: 1.25em;
  color: #555;
  content: "\e835";
  font-family: var(--gms);
  font-weight: 300;
  transform: translateY(-1px);
}
.custom_checkbox:checked + span::before {
  content: "\e834";
  font-weight: 900;
  color: var(--page-point-color);
}
.custom_checkbox[disabled], .custom_checkbox[disabled] + span {
  opacity: 0.5;
}

.custom_radio[disabled], .custom_radio[disabled] + span {
  opacity: 0.5;
}
.custom_radio:checked + span::before {
  content: "\e837";
  font-weight: 900;
  color: var(--page-point-color);
}
.custom_radio + span::before {
  margin: 0;
  font-size: 1.25em;
  color: #555;
  content: "\e836";
  font-family: var(--gms);
  font-weight: 300;
  transform: translateY(-1px);
}

.radio-inline {
  cursor: pointer;
  align-self: center;
  margin-top: 0 !important;
}

.status_wrap [name=wr_status] {
  display: none;
}
.status_wrap [name=wr_status][disabled], .status_wrap [name=wr_status][disabled] + span {
  opacity: 0.5;
}
.status_wrap [name=wr_status] + span::before {
  margin: 0;
  font-size: 1.25em;
  color: #555;
  content: "\e836";
  font-family: var(--gms);
  font-weight: 300;
  transform: translateY(-1px);
}
.status_wrap [name=wr_status]:checked + span::before {
  content: "\e837";
  font-weight: 900;
  color: var(--page-point-color);
}

/* 자동입력방지 */
#wr_captcha {
  margin-top: 0;
  width: 100%;
  max-width: 220px;
}

#captcha {
  z-index: 10;
  cursor: pointer;
  position: relative;
  filter: brightness(0.62) contrast(4.5) opacity(0.7);
  height: var(--form-height) !important;
  margin: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
}
#captcha:hover {
  border-color: #222 !important;
}
#captcha + br {
  display: none;
}
#captcha + br + input {
  margin: 0 0 0 5px !important;
  margin-left: -1px;
  border-radius: var(--radius-sm);
}
#captcha + br + input:focus {
  z-index: 15;
}

td:has(#captcha) {
  display: flex;
  gap: 0;
}

/* [ board-columns ] */
:is(.table_video, .table_blog2, .table_pd) {
  --board-template-columns: 1;
  display: grid;
  grid-template-columns: repeat(var(--board-template-columns), minmax(0, 1fr));
  margin-inline: 0;
  gap: 50px 20px;
}
:is(.table_video, .table_blog2, .table_pd)::before, :is(.table_video, .table_blog2, .table_pd)::after {
  content: none;
}
:is(.table_video, .table_blog2, .table_pd) > dd {
  width: 100%;
  padding: 0;
}
:is(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
  grid-column: span var(--board-template-columns);
}
:is(.table_video, .table_blog2, .table_pd) > dd.no_content {
  grid-column: span var(--board-template-columns);
}

@media (min-width: 576px) {
  :is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 2;
  }
}
@media (min-width: 768px) {
  :is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 4;
  }
}
/* [ board-video ] */
.table_video .top a::before {
  content: "\e1c4";
  font-family: var(--gms);
  font-weight: 400;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
}
.table_video .inner:hover .top a::before {
  opacity: 1;
}

.type_video .thumb {
  background-color: #000;
}

/* [ board-list ] */
/* 게시판 리스트, 현황 */
.board_status_list .status_badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}
.board_status_list .status_badge_1 {
  background: #a0a1a3;
  color: #fff;
}
.board_status_list .status_badge_2 {
  background: var(--page-point-color);
  color: #fff;
}
.board_status_list .status_badge_3 {
  background: #e1e1e1;
  color: #888;
}

:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default {
  border: 0;
  border-spacing: 0;
  border-top: 1px solid #333;
  margin-bottom: 0;
  width: 100%;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default thead th {
  background: #fff;
  border-bottom: 1px solid #ccc;
  color: #222;
  text-align: center;
  /* font-size: 17px; */
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 23.8px */
  letter-spacing: -0.17px;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody th.num {
  font-weight: normal;
  vertical-align: middle;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody td {
  vertical-align: middle;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody .subject a {
  /* width: 100%; */
  overflow: hidden;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #222;
  font-style: normal;
  /* font-weight: 500; */
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.5px;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody .subject a:hover {
  text-decoration: underline;
  text-underline-position: under;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) .table_default tbody.table_responsive th {
  margin-bottom: 0;
  border: 0;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(th, td) {
  padding: 15px 12px;
  /* font-size: clamp(15px, 3vw, 17px); */
  border-bottom: 1px solid #eaeaea;
  text-align: center;
  font-style: normal;
  color: #777;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 21px */
  letter-spacing: -0.2px;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td {
  color: #777;
  text-align: center;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.subject {
  text-align: left;
  font-size: clamp(15px, 3vw, 16px);
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.subject span {
  display: flex;
  gap: 0.5rem;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.subject.subject_secret > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
:is(.board_list_list, .board_status_list, .cs_bd_wrapper) td.text-center {
  display: table-cell;
  text-align: center;
}

/* 반응형 스타일 */
@media (max-width: 767.98px) {
  :is(.board_list_list, .board_status_list, .cs_bd_wrapper) :is(colgroup, .num, .regdate, .hits, .writer) {
    display: none;
  }
  :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .subject {
    width: 100%;
  }
  :is(.board_list_list, .board_status_list, .cs_bd_wrapper) .status {
    width: 35%;
  }
}
/* [ board-blog A ] */
.table_blog {
  border-top: 2px solid #222;
}
.table_blog .info {
  display: none;
}
.table_blog dd {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, auto);
  align-items: flex-start;
  gap: 40px;
  padding-block: 40px;
  border-bottom: 1px solid #ddd;
}
.table_blog .no_post {
  grid-column: span 2;
}
.table_blog .right {
  display: flex;
  flex-direction: column;
  gap: 15px 15px;
  align-items: flex-start;
  padding-right: 30px;
}
.table_blog .right .info {
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  grid-column: 2;
  grid-row: span 2;
  margin-bottom: 0;
}
.table_blog .right :where(.writer, .hits) {
  display: none;
}
.table_blog .right a {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 22px;
  color: #000;
}
.table_blog .right a:has(.badge) {
  padding-top: 28px;
  margin-top: 5px;
}
.table_blog .right .text {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.table_blog .right p {
  padding: 0;
  font-size: clamp(14px, 3vw, 16px);
}
.table_blog .badge {
  position: absolute;
  top: 5px;
  left: 0;
  display: flex;
}

@media (max-width: 767.98px) {
  .table_blog dd {
    display: flex;
    flex-direction: column;
  }
  .table_blog .right {
    padding-right: 0;
  }
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .badge {
  margin-top: 0px;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .inner {
  border: 0;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .top {
  position: relative;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) dd {
  margin-bottom: 0;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) .bottom {
  margin-top: 12px;
  padding: 0;
}
#bbsArea :where(.table_video, .table_blog2, .table_pd) :where(.inner .bottom) a {
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #222;
}

:is(.table_video, .table_blog, .table_blog2, .table_pd) .inner:hover .thumb {
  border-color: var(--page-point-color);
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
  display: none;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb + img.thumb {
  display: block;
  aspect-ratio: 5/3;
  object-fit: cover;
  width: 100%;
  height: auto;
  background-color: #ccc;
  border-radius: var(--radius-sm);
  border: 1px solid #e3e3e3;
  transition: all 0.25s;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd).table_pd a span.thumb + img.thumb {
  aspect-ratio: 1;
}

:where(.table_video, .table_blog2, .table_pd, .table_blog) .title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px 0;
  padding: 0;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview {
  margin-top: 10px;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .title + .pd_preview * {
  all: unset;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  opacity: 0.7;
  display: none;
}
:where(.table_video, .table_blog2, .table_pd, .table_blog) .info span {
  padding: 0;
  font-size: 13px;
  line-height: 1;
}

/* [ board-form ] */
:is(#form_history_list, #form_history_nologin) .board_wrapper {
  padding: 0;
  background: transparent;
  min-height: auto;
}

.board_wrapper :where(form[id*=form]) :where(th, td, table.table) {
  border: 0;
  line-height: 1;
}
.board_wrapper :where(form[id*=form]) table {
  width: 100%;
  display: flex;
  border-top: 0;
}
.board_wrapper :where(form[id*=form]) th {
  padding: 0;
  font-weight: 700;
  display: flex;
  background-color: transparent;
  width: auto;
  border-top: 0;
}
.board_wrapper :where(form[id*=form]) :where(th, td) {
  font-size: 15px;
}
.board_wrapper :where(form[id*=form]) tbody {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.board_wrapper :where(form[id*=form]) tbody tr {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
  align-items: flex-start;
  gap: 15px;
  padding: 25px 10px;
  border-bottom: 1px solid #e3e3e3;
}
.board_wrapper :where(form[id*=form]) #item_agree .checkbox {
  margin-top: 0;
}
.board_wrapper :where(form[id*=form]) #item_agree label {
  font-size: clamp(13px, 2vw, 15px);
}
.board_wrapper :where(form[id*=form]) #item_email .text-muted {
  font-size: clamp(13px, 2vw, 15px);
}

:where(.form-wrap, form) #list_btn {
  display: none;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
  .board_wrapper :where(form[id*=form]) th {
    margin-bottom: 15px;
  }
  .board_wrapper :where(form[id*=form]) table.table tbody tr {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
/* ---------------------------- member ---------------------------- */
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group {
  height: 52px;
}
:is(.find_container, .login_container, .mypage_container) .member_wrapper .form-group input {
  border: 0;
  padding-left: 0;
}

:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .form-group {
  height: 45px;
}
:is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
  padding: clamp(30px, 4vw, 60px) clamp(20px, 10vw, 60px);
  border-radius: 30px;
  background: #fff;
}

:is(.find_container, .login_container) :is(.member_wrapper) {
  max-width: 500px;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 767.98px) {
  :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) {
    width: 100%;
  }
  :is(.find_container, .join_container, .join_write_container, .login_container, .mypage_container) .member_wrapper {
    width: 100%;
    margin: 0 auto;
  }
}
#find_idpw,
.mypage_container,
.join_wrapper,
.login_wrapper {
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  #find_idpw,
  .mypage_container,
  .join_wrapper,
  .login_wrapper {
    align-items: flex-start;
    padding-block: calc(var(--navbar-height) / 1.5) calc(var(--navbar-height) * 1.5);
  }
}

#find_idpw,
.login_wrapper {
  /* height: max(clamp(600px, 70vw, 750px), calc(var(--svh100) - var(--navbar-height))); */
  /* 뷰포트가 작을 때 (최소 높이) */
  /* 중간 크기일 때 (중간 높이) */
}
@media (max-width: 767.98px) {
  #find_idpw,
  .login_wrapper {
    height: auto;
  }
}
@media (min-width: 768px) {
  #find_idpw,
  .login_wrapper {
    height: calc(var(--svh100) - var(--navbar-height));
  }
}
@media (min-width: 768px) and (max-height: 900px) {
  #find_idpw,
  .login_wrapper {
    height: 700px;
  }
}

.privacy_container,
.agreement_container,
#site .member_wrapper {
  max-width: 1140px;
  padding-top: 120px;
  padding-bottom: 200px;
  margin: calc(var(--navbar-height) / 1.5) auto calc(var(--navbar-height) * 1.5);
  background-color: #f7f7f7;
  /* [ form ] */
  /* [ member-login ] */
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
  /* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
  /* [min-lager / tablet] 브라우저 높이 700 이하 */
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.privacy_container h1,
.agreement_container h1,
#site .member_wrapper h1 {
  margin-top: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  border: 0;
  margin-bottom: clamp(30px, 5vw, 40px);
  padding-bottom: 0px;
  letter-spacing: -0.03em;
}
.privacy_container h1 + p,
.agreement_container h1 + p,
#site .member_wrapper h1 + p {
  line-height: 1.4;
  font-size: clamp(13px, 3vw, 15px);
  max-height: 80px;
  /* max-height: 200px; */
  margin-bottom: 30px;
  text-align: center;
  color: #666;
}
.privacy_container .text-center,
.agreement_container .text-center,
#site .member_wrapper .text-center {
  margin-top: 40px;
}
.privacy_container .text-center .btn.btn-lg,
.agreement_container .text-center .btn.btn-lg,
#site .member_wrapper .text-center .btn.btn-lg {
  padding-left: 40px;
  padding-right: 40px;
}
.privacy_container #login_form input,
.agreement_container #login_form input,
#site .member_wrapper #login_form input {
  padding-left: 5px;
  font-size: 15px;
}
.privacy_container #login_form .form-group,
.agreement_container #login_form .form-group,
#site .member_wrapper #login_form .form-group {
  overflow: hidden;
  border-radius: 9999px;
}
.privacy_container #login_form .form-group:focus-within label[class*=label-]::before,
.agreement_container #login_form .form-group:focus-within label[class*=label-]::before,
#site .member_wrapper #login_form .form-group:focus-within label[class*=label-]::before {
  color: #000;
}
.privacy_container #login_form .form-group label,
.agreement_container #login_form .form-group label,
#site .member_wrapper #login_form .form-group label {
  position: relative;
}
.privacy_container #login_form .form-group label[class*=label-],
.agreement_container #login_form .form-group label[class*=label-],
#site .member_wrapper #login_form .form-group label[class*=label-] {
  /* text-indent: -9999px; */
  /* aspect-ratio: 1; */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 0 1 auto;
  padding-inline: 20px 10px;
}
.privacy_container #login_form .form-group label::before,
.agreement_container #login_form .form-group label::before,
#site .member_wrapper #login_form .form-group label::before {
  /* position: absolute; */
  text-indent: 0;
  font-family: var(--gms);
  font-variation-settings: var(--gms-300-out);
  font-size: 22px;
  color: #888;
  /* top: 60%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  line-height: 1;
}
.privacy_container #login_form .form-group label.label-id::before,
.agreement_container #login_form .form-group label.label-id::before,
#site .member_wrapper #login_form .form-group label.label-id::before {
  content: "\e7fd";
}
.privacy_container #login_form .form-group label.label-pw::before,
.agreement_container #login_form .form-group label.label-pw::before,
#site .member_wrapper #login_form .form-group label.label-pw::before {
  content: "\e897";
}
.privacy_container #login_form .form-group label.label-email::before,
.agreement_container #login_form .form-group label.label-email::before,
#site .member_wrapper #login_form .form-group label.label-email::before {
  content: "\e0e6";
}
@media (max-width: 767.98px) {
  .privacy_container,
  .agreement_container,
  #site .member_wrapper {
    padding: 60px 30px;
  }
  .privacy_container :where(#login_form, fieldset),
  .agreement_container :where(#login_form, fieldset),
  #site .member_wrapper :where(#login_form, fieldset) {
    display: flex;
    flex-direction: column;
  }
  .privacy_container :where(#login_form, #login_form input),
  .agreement_container :where(#login_form, #login_form input),
  #site .member_wrapper :where(#login_form, #login_form input) {
    font-size: clamp(13px, 3vw, 14px);
  }
  .privacy_container #login_form input,
  .agreement_container #login_form input,
  #site .member_wrapper #login_form input {
    border: 0;
    /* padding-left: 0; */
    padding-right: 35px;
  }
}
.privacy_container .join_agree h4,
.agreement_container .join_agree h4,
#site .member_wrapper .join_agree h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}
.privacy_container .join_agree .join_agree_box,
.agreement_container .join_agree .join_agree_box,
#site .member_wrapper .join_agree .join_agree_box {
  width: auto;
  height: 250px;
  border: 1px solid var(--page-grey-color);
  padding: 15px;
  overflow-y: scroll;
  line-height: 1.5;
}
.privacy_container .join_agree .join_agree_box + .checkbox,
.agreement_container .join_agree .join_agree_box + .checkbox,
#site .member_wrapper .join_agree .join_agree_box + .checkbox {
  margin: 0;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1em 1.25em;
  gap: 5px;
  background-color: #f7f7f7;
  font-size: clamp(12px, 3vw, 15px);
}
.privacy_container .join_agree .join_agree_box + .checkbox label,
.agreement_container .join_agree .join_agree_box + .checkbox label,
#site .member_wrapper .join_agree .join_agree_box + .checkbox label {
  display: flex;
  align-items: center;
  padding-left: 0;
  font-size: clamp(13px, 2vw, 14px);
}
.privacy_container .join_agree .join_agree_box + .checkbox input,
.agreement_container .join_agree .join_agree_box + .checkbox input,
#site .member_wrapper .join_agree .join_agree_box + .checkbox input {
  position: static;
  margin: 0;
  margin-right: 7px;
}
.privacy_container .join_agree .join_agree_box + .checkbox > a,
.agreement_container .join_agree .join_agree_box + .checkbox > a,
#site .member_wrapper .join_agree .join_agree_box + .checkbox > a {
  font-size: 14px;
  color: #1c54e4;
  font-weight: 500;
}
.privacy_container .join_agree .join_agree_box + .checkbox > a:hover,
.agreement_container .join_agree .join_agree_box + .checkbox > a:hover,
#site .member_wrapper .join_agree .join_agree_box + .checkbox > a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .privacy_container .join_agree .join_agree_box + .checkbox > a,
  .agreement_container .join_agree .join_agree_box + .checkbox > a,
  #site .member_wrapper .join_agree .join_agree_box + .checkbox > a {
    font-size: 0.75em;
  }
}
.privacy_container .form-group,
.agreement_container .form-group,
#site .member_wrapper .form-group {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.privacy_container .form-group > *,
.agreement_container .form-group > *,
#site .member_wrapper .form-group > * {
  width: auto;
  padding: 0;
}
.privacy_container .form-group:focus-within,
.agreement_container .form-group:focus-within,
#site .member_wrapper .form-group:focus-within {
  z-index: 100;
  border-color: var(--page-point-color);
}
.privacy_container .form-group:focus-within span.material-symbols-outlined,
.agreement_container .form-group:focus-within span.material-symbols-outlined,
#site .member_wrapper .form-group:focus-within span.material-symbols-outlined {
  opacity: 1;
  color: var(--page-point-color);
}
.privacy_container .form-group:nth-of-type(1),
.agreement_container .form-group:nth-of-type(1),
#site .member_wrapper .form-group:nth-of-type(1) {
  margin-bottom: -1px;
  margin-bottom: 7px !important;
}
.privacy_container .form-group:nth-of-type(2),
.agreement_container .form-group:nth-of-type(2),
#site .member_wrapper .form-group:nth-of-type(2) {
  margin-bottom: 0px;
}
.privacy_container .form-group > div:nth-child(2),
.agreement_container .form-group > div:nth-child(2),
#site .member_wrapper .form-group > div:nth-child(2) {
  flex: 1;
}
.privacy_container .form-group label span.material-symbols-outlined,
.agreement_container .form-group label span.material-symbols-outlined,
#site .member_wrapper .form-group label span.material-symbols-outlined {
  opacity: 0.5;
  translate: 0 1px;
  font-variation-settings: var(--gms-400-out);
  font-size: 1.25rem;
  color: #000;
}
.privacy_container .form-group label span.material-symbols-outlinedl:nth-child(1),
.agreement_container .form-group label span.material-symbols-outlinedl:nth-child(1),
#site .member_wrapper .form-group label span.material-symbols-outlinedl:nth-child(1) {
  width: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  .privacy_container .form-group > div:last-child,
  .agreement_container .form-group > div:last-child,
  #site .member_wrapper .form-group > div:last-child {
    width: 100%;
  }
}
.privacy_container :is(#find_btn, #login_btn),
.agreement_container :is(#find_btn, #login_btn),
#site .member_wrapper :is(#find_btn, #login_btn) {
  margin-top: 25px;
  height: 50px;
  width: 100%;
  border-radius: 9999px;
}
.privacy_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
.agreement_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
#site .member_wrapper :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
  z-index: 10;
  width: 100%;
  padding-block: 100px 120px;
  background: #f7f7f7;
}
.privacy_container .mypage_container,
.agreement_container .mypage_container,
#site .member_wrapper .mypage_container {
  padding-inline: 15px;
}
@media (max-width: 767.98px) {
  .privacy_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
  .agreement_container :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container),
  #site .member_wrapper :is(#find_idpw, .join_wrapper, .login_wrapper, .mypage_container) {
    margin-top: 0;
    position: relative;
    padding-block: 30px 100px;
    height: auto;
  }
}
.privacy_container :where(#find_idpw, .login_wrapper, .mypage_container),
.agreement_container :where(#find_idpw, .login_wrapper, .mypage_container),
#site .member_wrapper :where(#find_idpw, .login_wrapper, .mypage_container) {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .privacy_container :where(#find_idpw, .login_wrapper),
  .agreement_container :where(#find_idpw, .login_wrapper),
  #site .member_wrapper :where(#find_idpw, .login_wrapper) {
    padding: 0;
    height: calc(var(--svh100) - var(--navbar-height));
  }
}
@media (height <= 700px) {
  .privacy_container :where(#find_idpw, .login_wrapper, .mypage_container),
  .agreement_container :where(#find_idpw, .login_wrapper, .mypage_container),
  #site .member_wrapper :where(#find_idpw, .login_wrapper, .mypage_container) {
    height: auto;
    min-height: 700px;
    align-items: flex-start;
  }
}
.privacy_container .login_extra,
.agreement_container .login_extra,
#site .member_wrapper .login_extra {
  margin-top: 30px;
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.privacy_container .login_extra ul,
.agreement_container .login_extra ul,
#site .member_wrapper .login_extra ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 15px;
}
.privacy_container .login_extra ul li > a,
.agreement_container .login_extra ul li > a,
#site .member_wrapper .login_extra ul li > a {
  font-size: clamp(13px, 3vw, 14px);
}
.privacy_container .login_extra ul li + .privacy_container .login_extra ul li,
.privacy_container .login_extra ul li + .agreement_container .login_extra ul li,
.privacy_container .login_extra ul li + #site .member_wrapper .login_extra ul li,
.agreement_container .login_extra ul li + .privacy_container .login_extra ul li,
.agreement_container .login_extra ul li + .agreement_container .login_extra ul li,
.agreement_container .login_extra ul li + #site .member_wrapper .login_extra ul li,
#site .member_wrapper .login_extra ul li + .privacy_container .login_extra ul li,
#site .member_wrapper .login_extra ul li + .agreement_container .login_extra ul li,
#site .member_wrapper .login_extra ul li + #site .member_wrapper .login_extra ul li {
  margin-left: 0;
}
.privacy_container .login_extra ul li + .privacy_container .login_extra ul li::before,
.privacy_container .login_extra ul li + .agreement_container .login_extra ul li::before,
.privacy_container .login_extra ul li + #site .member_wrapper .login_extra ul li::before,
.agreement_container .login_extra ul li + .privacy_container .login_extra ul li::before,
.agreement_container .login_extra ul li + .agreement_container .login_extra ul li::before,
.agreement_container .login_extra ul li + #site .member_wrapper .login_extra ul li::before,
#site .member_wrapper .login_extra ul li + .privacy_container .login_extra ul li::before,
#site .member_wrapper .login_extra ul li + .agreement_container .login_extra ul li::before,
#site .member_wrapper .login_extra ul li + #site .member_wrapper .login_extra ul li::before {
  content: none;
}
@media (max-width: 767.98px) {
  .privacy_container .login_extra ul,
  .agreement_container .login_extra ul,
  #site .member_wrapper .login_extra ul {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .privacy_container .login_extra ul li + li::before,
  .agreement_container .login_extra ul li + li::before,
  #site .member_wrapper .login_extra ul li + li::before {
    content: none;
  }
}
@media (max-width: 767.98px) {
  .privacy_container #join_form tr th,
  .agreement_container #join_form tr th,
  #site .member_wrapper #join_form tr th {
    padding: 0px;
    margin-bottom: 0;
  }
  .privacy_container #join_form tr td,
  .agreement_container #join_form tr td,
  #site .member_wrapper #join_form tr td {
    display: flex;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 5px;
  }
  .privacy_container #join_form tr td > div:has(textarea),
  .agreement_container #join_form tr td > div:has(textarea),
  #site .member_wrapper #join_form tr td > div:has(textarea) {
    width: 100%;
  }
  .privacy_container #join_form tr td[style="vertical-align:middle"],
  .agreement_container #join_form tr td[style="vertical-align:middle"],
  #site .member_wrapper #join_form tr td[style="vertical-align:middle"] {
    align-items: center;
    padding-inline: 0px;
  }
  .privacy_container #join_form tr td[style="vertical-align:middle"] span,
  .agreement_container #join_form tr td[style="vertical-align:middle"] span,
  #site .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
    margin-top: 0;
  }
  .privacy_container #join_form tr td input:not(#mb_mailing),
  .agreement_container #join_form tr td input:not(#mb_mailing),
  #site .member_wrapper #join_form tr td input:not(#mb_mailing) {
    width: 100%;
  }
}
.privacy_container .table,
.agreement_container .table,
#site .member_wrapper .table {
  width: 100%;
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
.privacy_container .table tbody,
.agreement_container .table tbody,
#site .member_wrapper .table tbody {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}
.privacy_container .table tbody tr,
.agreement_container .table tbody tr,
#site .member_wrapper .table tbody tr {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* display: grid; */
  /* grid-template-columns: minmax(0, 1fr) minmax(0, 4fr); */
  margin-bottom: -1px;
}
.privacy_container .table tbody tr th,
.agreement_container .table tbody tr th,
#site .member_wrapper .table tbody tr th {
  font-size: 16px;
  text-align: left;
  width: auto;
}
.privacy_container .table tbody tr th span,
.agreement_container .table tbody tr th span,
#site .member_wrapper .table tbody tr th span {
  color: var(--page-point-color);
}
.privacy_container .table tbody tr td,
.agreement_container .table tbody tr td,
#site .member_wrapper .table tbody tr td {
  display: flex;
  gap: 10px;
}
.privacy_container .table tbody tbody tr td,
.agreement_container .table tbody tbody tr td,
#site .member_wrapper .table tbody tbody tr td {
  padding-inline: 15px;
  display: flex;
  gap: 5px;
}
.privacy_container .table tbody tbody tr :where(th, td),
.agreement_container .table tbody tbody tr :where(th, td),
#site .member_wrapper .table tbody tbody tr :where(th, td) {
  display: block;
  font-size: clamp(13px, 3vw, 15px);
}
@media (max-width: 767.98px) {
  .privacy_container .table, .privacy_container .table :where(tbody, tbody tr),
  .agreement_container .table,
  .agreement_container .table :where(tbody, tbody tr),
  #site .member_wrapper .table,
  #site .member_wrapper .table :where(tbody, tbody tr) {
    display: block;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .privacy_container .table tbody tr :where(th, td),
  .agreement_container .table tbody tr :where(th, td),
  #site .member_wrapper .table tbody tr :where(th, td) {
    display: block;
    width: 100%;
    font-size: clamp(15px, 2vw, 17px);
  }
  .privacy_container .table tbody tr th,
  .agreement_container .table tbody tr th,
  #site .member_wrapper .table tbody tr th {
    padding: 10px 30px;
  }
  .privacy_container .table .files_upload_wrap,
  .agreement_container .table .files_upload_wrap,
  #site .member_wrapper .table .files_upload_wrap {
    display: flex;
    flex-direction: column;
  }
  .privacy_container .table .files_upload_wrap .files,
  .agreement_container .table .files_upload_wrap .files,
  #site .member_wrapper .table .files_upload_wrap .files {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .privacy_container .table .files_upload_wrap .files input,
  .agreement_container .table .files_upload_wrap .files input,
  #site .member_wrapper .table .files_upload_wrap .files input {
    width: auto;
  }
  .privacy_container .table .files_upload_wrap .files input .file_add,
  .agreement_container .table .files_upload_wrap .files input .file_add,
  #site .member_wrapper .table .files_upload_wrap .files input .file_add {
    position: relative;
    right: auto;
  }
  .privacy_container .table .files_upload_wrap .files input .btn,
  .agreement_container .table .files_upload_wrap .files input .btn,
  #site .member_wrapper .table .files_upload_wrap .files input .btn {
    width: 100%;
    aspect-ratio: inherit;
    margin-top: 15px;
  }
}

#site :is(#find_idpw, .login_wrapper) .member_wrapper {
  max-width: 500px;
  margin-block: 0;
}

#site :is(#find_idpw, .login_wrapper, .join_wrapper, .mypage_container, .privacy_container, .agreement_container) .member_wrapper {
  background-color: #fff;
  padding-block: 70px;
}

/* [ member-privacy ] */
:is(.privacy_container, .agreement_container) {
  display: flex;
  margin: 0;
  text-align: left;
  /* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
}
:is(.privacy_container, .agreement_container) h1 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 40px;
}
:is(.privacy_container, .agreement_container) .privacy_body {
  font-size: 1rem;
  line-height: 1.6em;
  padding-inline: clamp(20px, 3vw, 50px);
}
@media (max-width: 767.98px) {
  :is(.privacy_container, .agreement_container) .member_wrapper {
    padding: 50px 30px;
  }
}

/* [ componets start ]*/
/* 페이지 준비중 */
.maintenance {
  background: #f4f4f4;
  padding: 120px 25px;
  text-align: center;
  border-radius: 20px;
}
.maintenance span.material-symbols-outlined {
  display: inline-block;
  line-height: 1;
  font-size: 74px;
  margin-bottom: 20px;
}
.maintenance .big-cont {
  display: block;
  line-height: 1;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
.maintenance .small-cont {
  display: block;
  line-height: 1.5;
  font-size: 14px;
  letter-spacing: -0.03em;
  color: #818181;
  margin-bottom: 20px;
}

/* 모바일 이미지 확장 스크롤 */
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (max-width: 575.98px) {
  .scroll-box-xs {
    position: relative;
  }
  .scroll-box-xs:not(.on)::before {
    cursor: pointer;
    box-sizing: content-box;
    content: "\e145";
    font-family: var(--gms);
    font-variation-settings: var(--gms-500-out);
    background-color: var(--page-point-color);
    border: 3px solid #fff;
    border-top: 0;
    border-right: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    font-size: 22px;
    aspect-ratio: 1/1.02;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    line-height: 0;
  }
  .scroll-box-xs.on {
    position: relative;
    overflow-x: auto;
  }
  .scroll-box-xs.on img {
    max-width: 900px;
    width: auto;
    height: auto;
  }
}
/* tabs(상품 게시판, 일반 탭) */
[role=tabpanel] [role=tablist] {
  display: flex;
  margin-bottom: 60px;
}
[role=tabpanel] .tab-pane {
  opacity: 0;
  animation: tabShow 0.3s forwards;
}
[role=tabpanel] .tab-content > :not(.active) {
  display: none;
}

@keyframes tabShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 캘린더 */
.calendar-wrap#bbsArea [class*=container] {
  padding: 0;
}
.calendar-wrap#bbsArea .fc .fc-toolbar > * > * {
  float: unset;
  margin: 0;
}
.calendar-wrap#bbsArea #fullcalendar a {
  text-decoration: none !important;
}
.calendar-wrap#bbsArea #calendar_loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1000;
  font-size: 36px;
  text-align: center;
  padding-top: 10%;
}
.calendar-wrap#bbsArea .calendar_wrapper {
  position: relative;
  margin-block: 0;
  font-family: inherit;
}
.calendar-wrap#bbsArea .calendar_wrapper .fc-toolbar h2 {
  font-size: 1.5em;
  font-weight: 700;
}
.calendar-wrap#bbsArea .fc-widget-header thead > tr {
  background-color: #fafafa;
}
.calendar-wrap#bbsArea .fc-day-number,
.calendar-wrap#bbsArea .fc-ltr .fc-popover .fc-header .fc-title,
.calendar-wrap#bbsArea .fc-rtl .fc-popover .fc-header .fc-close {
  /* font-family: "Open Sans", "notokr", sans-serif; */
}
.calendar-wrap#bbsArea .fc-day-header span {
  font-size: 0.875em;
}
.calendar-wrap#bbsArea .fc-unthemed td.fc-today {
  background-color: #e5f5fd;
}
.calendar-wrap#bbsArea .fc th.fc-day-header {
  padding-block: 5px;
}
.calendar-wrap#bbsArea .fc-basic-view .fc-day-number {
  font-weight: bold;
  padding: 5px 10px;
}
.calendar-wrap#bbsArea .fc-sat {
  color: #2151ff;
}
.calendar-wrap#bbsArea .fc-sat .fc-day-number {
  color: #2151ff;
}
.calendar-wrap#bbsArea .fc-sun {
  color: #ff0051;
}
.calendar-wrap#bbsArea .fc-sun .fc-day-number {
  color: #ff0051;
}
.calendar-wrap#bbsArea .fc-day-grid-event {
  /* margin: 2px 2px 0; */
  padding: 8px 7px 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 25px;
  box-sizing: border-box;
}
.calendar-wrap#bbsArea .fc-ltr .fc-h-event.fc-not-start,
.calendar-wrap#bbsArea .fc-rtl .fc-h-event.fc-not-end {
  padding-left: 10px;
}
.calendar-wrap#bbsArea .fc-event {
  cursor: pointer;
  border-color: var(--page-dark-color);
  max-width: 100%;
  /* display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis; */
  overflow: hidden;
  /* white-space: nowrap; */
}
.calendar-wrap#bbsArea .fc-event .fc-time {
  font-weight: 500;
}
.calendar-wrap#bbsArea .fc-event:focus {
  text-decoration: none !important;
}
.calendar-wrap#bbsArea .fc-event.fc-chk .fc-title {
  text-decoration: line-through;
}
.calendar-wrap#bbsArea .fc-event,
.calendar-wrap#bbsArea .fc-event-dot {
  cursor: pointer;
  /* background-color: var(--page-point-color) !important */
  background-color: #fff !important;
  color: var(--page-point-color) !important;
  font-weight: 700;
  border: 1px solid var(--page-point-color) !important;
}
.calendar-wrap#bbsArea .fc-event:hover,
.calendar-wrap#bbsArea .fc-event-dot:hover {
  background-color: var(--page-point-color) !important;
  color: #fff !important;
}
.calendar-wrap#bbsArea .fc-event.gcal-holiday-event,
.calendar-wrap#bbsArea .fc-event-dot.gcal-holiday-event {
  background-color: #fa1313 !important;
  color: #fff !important;
  border: 0 !important;
  pointer-events: none;
}
.calendar-wrap#bbsArea .fc-button {
  outline: none !important;
}
.calendar-wrap#bbsArea .fc-more {
  color: var(--page-dark-color);
}
.calendar-wrap#bbsArea .fc-more:hover, .calendar-wrap#bbsArea .fc-more:focus {
  color: #333;
}
.calendar-wrap#bbsArea .fc-popover .fc-header {
  padding: 8px 10px 5px;
  font-size: 0.875em;
  font-weight: 700;
}
.calendar-wrap#bbsArea .fc-unthemed .fc-popover .fc-header .fc-close {
  margin-top: 3px;
}
.calendar-wrap#bbsArea .fc-toolbar button {
  padding: 0 1em;
}
.calendar-wrap#bbsArea .fc-state-default {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: none;
}
.calendar-wrap#bbsArea .fc-state-default:not([disabled]):hover {
  background: #ddd;
}
.calendar-wrap#bbsArea .fc-state-default.fc-state-active {
  background: var(--page-point-color);
  border-color: var(--page-point-color);
  color: #fff;
}
.calendar-wrap#bbsArea .fc-state-default.fc-state-active:hover, .calendar-wrap#bbsArea .fc-state-default.fc-state-active:focus {
  background: #333;
  border-color: #333;
  color: #fff;
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar > * {
  float: unset;
}
@media (max-width: 767.98px) {
  .calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar .fc-center {
  grid-row: 1;
  grid-column: 2;
  gap: 20px;
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar .fc-left {
  display: flex;
  gap: 10px;
}
.calendar-wrap#bbsArea .fc-toolbar.fc-header-toolbar .fc-right {
  grid-column: 3;
}
.calendar-wrap#bbsArea .fc-toolbar .fc-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-wrap#bbsArea .form-horizontal .control-label {
  padding-top: 12px;
}
@media (max-width: 539px) {
  .calendar-wrap#bbsArea .fc-toolbar .fc-left {
    width: 100%;
    text-align: center;
  }
  .calendar-wrap#bbsArea .fc-toolbar .fc-left > * {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
  .calendar-wrap#bbsArea .fc-toolbar .fc-center {
    float: left;
    display: block;
    width: 100%;
    margin: 10px 0 0;
  }
  .calendar-wrap#bbsArea .fc-toolbar .fc-center > * {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
}
.calendar-wrap#bbsArea .writedata_start_time,
.calendar-wrap#bbsArea .writedata_end_time {
  display: inline-block;
}
.calendar-wrap#bbsArea .writedata_start_time.hide,
.calendar-wrap#bbsArea .writedata_end_time.hide {
  display: none;
}
.calendar-wrap#bbsArea #calendarModal_view .modal-body {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .calendar-wrap#bbsArea #calendarModal_view .modal-body > .row > div[class^=col-] {
    min-height: 400px;
  }
}
@media (max-width: 767.98px) {
  .calendar-wrap#bbsArea #calendarModal_view .modal-body {
    font-size: 13px;
  }
}
.calendar-wrap#bbsArea #calendarModal_view .view_left {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.125);
  padding: 20px 40px;
  font-family: "Open Sans", sans-serif;
  box-shadow: inset 0px 100px 100px -100px rgba(0, 0, 0, 0.75);
}
.calendar-wrap#bbsArea #calendarModal_view span[id^=viewdata_] {
  display: block;
  margin: 20px 0;
}
.calendar-wrap#bbsArea #calendarModal_view span[id^=viewdata_] .year {
  display: block;
  font-weight: 400;
  font-size: 1.25em;
}
.calendar-wrap#bbsArea #calendarModal_view span[id^=viewdata_] .date {
  font-weight: 700;
  font-size: 2em;
  margin-right: 0.5em;
}
.calendar-wrap#bbsArea #calendarModal_view span[id^=viewdata_] .time {
  opacity: 0.75;
  font-size: 1.25em;
  font-weight: 700;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_end::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
  font-size: 2em;
  margin: 0 0 25px;
  opacity: 0.5;
  animation: fadeArrow 2s infinite;
}
@media (max-width: 767.98px) {
  .calendar-wrap#bbsArea #calendarModal_view #viewdata_end::before {
    content: "\f054";
    float: left;
    margin-top: 12px;
    margin-left: -25px;
    margin-right: 25px;
  }
}
.calendar-wrap#bbsArea #calendarModal_view .view_right {
  padding: 20px 40px;
  font-family: "Open Sans", "notokr", sans-serif;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title {
  font-size: 1.875em;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  user-select: none;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title .viewdata_status {
  margin-right: 0.2em;
  display: none;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title .viewdata_status::before {
  content: "\f0c8";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  cursor: pointer;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title .viewdata_status.chk::before {
  content: "\f14a";
  opacity: 0.5;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title.chk .viewdata_status {
  display: inline-block;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_title.chk .text.chk {
  text-decoration: line-through;
  opacity: 0.5;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_location {
  opacity: 0.5;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_description {
  margin-top: 0;
  position: relative;
  height: 180px;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_description .inner {
  line-height: 1.6;
  color: #555;
  height: 180px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px 20px 20px 0;
  word-break: keep-all;
  position: absolute;
  z-index: 100;
  width: 100%;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_description::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  left: 0;
  height: 20px;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 101;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_description::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 20px;
  left: 0;
  height: 20px;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 101;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_writer {
  opacity: 0.5;
  text-align: right;
  position: absolute;
  right: 40px;
  bottom: 12px;
}
@media (max-width: 767.98px) {
  .calendar-wrap#bbsArea #calendarModal_view #viewdata_writer {
    position: relative;
    bottom: 0;
    right: 0;
  }
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_option {
  text-align: right;
  position: absolute;
  right: 28px;
  bottom: 20px;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_option .btn.btn-link {
  color: #fff;
  text-decoration: none !important;
}
.calendar-wrap#bbsArea #calendarModal_view #viewdata_option .btn.btn-link:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 767.98px) {
  .calendar-wrap#bbsArea #calendarModal_view #viewdata_option {
    position: relative;
    bottom: 0;
    right: -12px;
  }
}

@keyframes fadeArrow {
  0% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.25;
  }
}
#calendarModal_write {
  display: flex;
}
#calendarModal_write .hide {
  display: none;
}
#calendarModal_write .form-horizontal {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#calendarModal_write .col-sm-2 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
}
#calendarModal_write .col-sm-9 {
  display: grid;
  /* grid-template-columns: minmax(0,150px) minmax(0,150px) minmax(0,150px) minmax(0,150px); */
  align-items: center;
  gap: 10px;
}
[for=writedata_start] + #calendarModal_write .col-sm-9 {
  grid-template-columns: minmax(0, 150px) minmax(0, min-content) minmax(0, 150px) minmax(0, 150px);
}
#calendarModal_write .col-sm-9:has(.hide) {
  /* .writedata_end_time + label{
              grid-column: 1;
              grid-row: 2;

  } */
}
#calendarModal_write .col-sm-9 label {
  font-size: 16px;
  margin-right: 30px;
}
#calendarModal_write .col-sm-9 .hasDatepicker {
  max-width: 150px;
  width: 100% !important;
}
#calendarModal_write .col-sm-9 .writedata_end_time,
#calendarModal_write .col-sm-9 .writedata_start_time {
  display: flex;
  gap: 5px;
}
#calendarModal_write .col-sm-9 .writedata_end_time.hide,
#calendarModal_write .col-sm-9 .writedata_start_time.hide {
  display: none;
}
#calendarModal_write .col-sm-9 .writedata_end_time .form-control,
#calendarModal_write .col-sm-9 .writedata_start_time .form-control {
  flex: 1;
}
#calendarModal_write .col-sm-9 .writedata_start_time {
  grid-column: 1;
  grid-row: 2;
}
#calendarModal_write .col-sm-9 .writedata_end_time {
  grid-column: 3;
  grid-row: 2;
}
#calendarModal_write #writedata_description {
  width: 100% !important;
  height: 150px !important;
  resize: none;
}
#calendarModal_write .writedata_end_time + label {
  display: flex;
  gap: 5px;
  cursor: pointer;
}
#calendarModal_write #write_use_time + span {
  white-space: nowrap;
}

#calendarModal_view {
  overflow-y: auto;
}
@media (min-width: 768px) {
  #calendarModal_view .modal-dialog {
    max-width: 700px;
    width: 100%;
    margin: auto auto;
  }
}
#calendarModal_view .modal-dialog .modal-body {
  padding: 40px;
}
#calendarModal_view .visible-xs {
  display: none !important;
}
#calendarModal_view .row {
  display: flex;
  flex-direction: column-reverse;
  position: static;
}
#calendarModal_view .view_left {
  background-color: transparent !important;
  display: flex;
  justify-content: flex-end;
}
#calendarModal_view .view_left * {
  color: #000;
}
#calendarModal_view .view_left [data-dismiss] + .row {
  position: absolute;
  left: 40px;
  top: 40px;
  display: flex;
  flex-direction: row;
}
#calendarModal_view .view_left [data-dismiss] + .row > div {
  display: flex;
}
#calendarModal_view .view_left [data-dismiss] + .row > div + div #viewdata_end::before {
  content: " ~ ";
  display: block;
  margin-inline: 10px 0;
}
#calendarModal_view .view_left .btn {
  flex: 1;
  color: #fff !important;
}
#calendarModal_view .view_left .btn i {
  display: none;
}
#calendarModal_view .view_right {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}
#calendarModal_view .view_right .close {
  all: unset;
  aspect-ratio: 1;
  cursor: pointer;
  width: 40px;
  text-align: center;
  position: absolute;
  right: 25px;
  top: 30px;
  font-size: 38px !important;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000 !important;
}
#calendarModal_view .view_right .close::after {
  font-size: 24px;
}
#calendarModal_view .view_right .close:hover {
  opacity: 1 !important;
}
#calendarModal_view .view_right #viewdata_title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}
#calendarModal_view .view_right #viewdata_title span.text {
  word-break: break-all;
}
#calendarModal_view .view_right #viewdata_location {
  font-size: 15px;
  padding: 6px 15px 6px 10px;
  color: var(--page-point-color);
  border: 1px solid var(--page-point-color);
  /* background-color: var(--page-point-color); */
  border-radius: 9999px;
  margin-block: -10px 30px;
  font-weight: 700;
  /* color: #fff; */
  width: fit-content;
}
#calendarModal_view .view_right #viewdata_location i {
  font-size: 0.8em;
  transform: translateY(-1px);
}
#calendarModal_view .view_right #viewdata_description {
  font-size: 16px;
  line-height: 1.6;
  padding-block: 30px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
#calendarModal_view .view_right #viewdata_writer {
  opacity: 0.7;
  display: flex;
  justify-content: flex-end;
  font-size: 13px;
}
#calendarModal_view .view_right #viewdata_writer i {
  display: none;
}
#calendarModal_view #viewdata_end,
#calendarModal_view #viewdata_start {
  font-size: 24px;
  display: flex;
  gap: 10px;
  left: 40px;
  top: 40px;
  font-size: 18px;
  font-weight: 600;
}
#calendarModal_view #viewdata_end span,
#calendarModal_view #viewdata_start span {
  color: #444 !important;
}
#calendarModal_view #viewdata_option {
  position: static;
  display: flex;
  gap: 5px;
  margin-top: 30px;
}

/* -------------------------------------------------------- */
#site .main_login_other {
  margin-top: 15px;
}

#site .main_login_other .row {
  display: flex;
  justify-content: center;
  gap: 5px;
}

@media (max-width: 575.98px) {
  #site .main_login_other .row {
    /*sm*/
    flex-direction: column;
  }
}
#site .main_login_other .row > div {
  flex: 1;
}

#site .main_login_other .row .btn {
  min-width: 100%;
  width: 100%;
  gap: 10px;
  border-radius: 9999px;
  font-weight: 600;
}

#site .main_login_other .row .btn::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
}

#site .main_login_other #naver_login_btn {
  background-color: #03c75a;
  color: #fff;
}

#site .main_login_other #naver_login_btn::before {
  background: url("/public/img/icons/SVG/sns/naver_login_symbol_white.svg") no-repeat center/contain;
  width: 17px;
}

#site .main_login_other #kakao_login_btn {
  background-color: #fee500;
  color: #181600;
}

#site .main_login_other #kakao_login_btn::before {
  background: url("/public/img/icons/SVG/sns/kakao_login_symbol.svg") no-repeat center/contain;
}