@charset "utf-8";
@import url("/assets/fonts/pretendard/variable/pretendardvariable.css");
:root {
  --page-font-family: "Pretendard Variable", "notokr", sans-serif;
  --page-point-color: #0d4e7c;
  --page-point-color-light: #e1e8fa;
  --page-point-color-dark: #003458;
  --page-point-color-hover: var(--page-point-color-dark);
  --page-danger-color: #f34825;
  --page-danger-color-hover: #ce4825;
  --page-dark-color: #4f5356;
  --page-dark-color-hover: #333;
  --page-grey-color: #d5d5d5;
  --page-grey-color-hover: #c4c4c4;
  --navbar-height: clamp(60px, 10vw, 100px);
  --container-padding-inline: 15px;
  --form-height: 47px;
  --form-check-icon: "check_circle";
  --snb-height: 67px;
  --radius: 15px;
  --svh100: 100svh;
  --gms: "Material Symbols Outlined";
  --gms-grad-low: "GRAD" -25;
  --gms-grad-zero: "GRAD" 0;
  --gms-grad-high: "GRAD" 200;
  --gms-opsz: "opsz" 48;
  --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);
  --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);
}
@supports not (max-height: 100svh) {
  :root {
    --svh100: 100vh;
  }
}
#site > *:not(#force__wrapper) {
  visibility: hidden;
}
#site.loaded > *:not(#force__wrapper) {
  visibility: visible;
}
* {
  box-sizing: border-box;
  word-break: keep-all;
  float: unset;
}
:where(*::before, *::after) {
  content: none;
}
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 16px;
}
#site {
  margin: 0;
  padding: 0;
  font-family: var(--page-font-family);
}
#site > .container {
  max-width: inherit;
  width: 100%;
  padding: 0;
}
::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: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;
}
.caret {
  display: none;
}
span.material-symbols-outlined {
  font-family: var(--gms);
  overflow: hidden;
  display: inline-flex;
  line-height: 1;
  font-variation-settings: var(--gms-300-out), var(--gms-grad-zero);
  user-select: none;
}
: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;
}
:where(h1, h2, h3, h4, h5, h6, dt, b, strong) {
  color: #000;
}
:where(p, li, dd, small) {
  color: #555;
}
:where(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;
}

a:focus,
a:focus-visible,
a:active,
button:focus,
button:focus-visible,
button:active {
  outline: none !important;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.text-danger {
  color: var(--page-danger-color);
}
.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(12px, 5vw, 15px);
  line-height: 1;
  height: var(--form-height);
  padding: 0 1.2em;
  border-radius: 4px;
  outline: none;
}
.btn:is(.btn-primary) {
  background-color: var(--page-point-color);
  color: #fff;
}
.btn:is(.btn-primary):is(:hover, :focus) {
  background-color: var(--page-point-color-hover);
}
.btn.btn-danger {
  background-color: var(--page-danger-color);
  border: 1px solid var(--page-danger-color);
}
.btn.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;
}
@media (hover: hover) {
  .btn.btn-primary:where(:hover, :focus) {
    background-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);
  }
}
button[disabled] {
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
  filter: grayscale(1);
}
.img-box {
  position: relative;
  display: flex;
}
img {
  user-select: none;
  flex-shrink: 0;
  image-orientation: from-image;
}
img.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
:where(.container, .row) {
  position: relative;
}
.row {
  margin: 0;
}
.row::before,
.row::after {
  content: none;
}
.row:has(.col) {
  display: flex;
  gap: 30px;
}
.clearfix {
  width: 100%;
}
.col {
  flex: 1;
  padding: 0;
}
.col.auto {
  flex: 0 1 auto;
}
.col[rowspan="2"] {
  grid-row: span 2;
}
.col[rowspan="3"] {
  grid-row: span 3;
}
.col[colspan="2"] {
  grid-column: span 2;
}
.col[colspan="3"] {
  grid-column: span 3;
}
:where([class*="hidden"]:not(.swiper)) {
  display: none;
}
/* :where([class*="visible"]) {
  display: none;
} */
@media (min-width: 576px) {
  .hidden-sm {
    display: flex;
  }
}
@media (min-width: 768px) {
  .hidden-md {
    display: flex;
  }
}
@media (min-width: 992px) {
  .hidden-lg {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .hidden-xl {
    display: flex;
  }
}
@media (min-width: 1400px) {
  .hidden-xxl {
    display: flex;
  }
}
@media (max-width: 575.98px) {
  .visible-sm {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .visible-md {
    display: flex;
  }
}
@media (max-width: 991.98px) {
  .visible-lg {
    display: flex;
  }
}
@media (max-width: 1199.98px) {
  .visible-xl {
    display: flex;
  }
}
@media (max-width: 1399.98px) {
  .visible-xxl {
    display: flex;
  }
}
.center-block {
  display: block;
  margin-inline: auto;
}
.ui-widget {
  font-family: inherit;
  z-index: 10000;
}
.ui-widget :is(input, select, textarea, button) {
  font-family: inherit;
}
.ui-datepicker select:is(.ui-datepicker-month, .ui-datepicker-year) {
  -webkit-appearance: none;
  background: none;
  border: 0;
  width: auto;
}
#site.modal-open {
  overflow: unset;
}
#site.modal-open,
#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;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal-open .modal {
  z-index: 10000;
  display: flex !important;
  width: 100%;
  justify-content: center;
}
.modal.in {
  z-index: 20000;
  scale: 1;
}
.modal:not(.in) {
  display: none;
  opacity: 0;
  scale: 0;
}
.modal-body {
  position: relative;
  padding: 20px;
}
.modal .modal-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px;
}
.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.6;
  padding: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
}
.modal .modal-header .close span {
  font-variation-settings: var(--gms-400-out);
  font-size: 32px;
}
.modal .modal-header .close:hover {
  opacity: 1;
}
.modal.fade .modal-dialog {
  transform: translate(0, 0);
  margin: 0;
  overflow: hidden;
  height: fit-content;
  margin-block: auto;
}
.modal .modal-title {
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
}
.modal.fade .modal-dialog {
  position: relative;
  transform: translate(0, 0) !important;
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  height: fit-content;
  margin-block: auto;
}
@media (min-width: 768px) {
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  .modal-dialog {
    max-width: 600px;
    margin: 30px auto;
  }
}
.modal .modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
  border-radius: 0;
  border: 0;
}
@media (min-width: 768px) {
  .modal .modal-content {
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.125);
  }
}
.modal .modal-footer {
  display: flex;
  gap: 5px;
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal .modal-footer .btn {
  flex: 1;
}
#delete_modal.in + .modal {
  display: none;
}
.bootstrap-timepicker {
  display: flex;
  gap: 10px;
  max-width: 300px;
}
iframe[src*="https://www.google.com/"] {
  width: auto;
  height: auto;
  aspect-ratio: 2.3333333333;
  margin-bottom: -6px;
  background-color: #e5e3df;
}
iframe:where([src*="youtube"], [title*="YouTube"]) {
  width: auto;
  height: auto;
  aspect-ratio: 1.7777777778;
  background-color: #000;
}
[class*="container"] {
  width: 100%;
  padding: unset;
  margin-inline: auto;
}
[class*="container"]::before,
[class*="container"]::after {
  content: none;
}
@media (width >=1260px) {
  [class*="container"] {
    max-width: 1350px;
  }
}
:where(ol, ul)[class*="li-"] {
  display: flex;
  flex-direction: column;
}
:where(img) + :where(ol, ul)[class*="li-"] {
  margin-top: 20px;
}
:where(ol, ul)[class*="li-"] > li {
  position: relative;
  padding-left: 0.8em;
}
.li-check > li {
  position: relative;
  padding-left: 1.3em;
  font-size: 15px;
}
:where(ol, ul)[class*="li-"] small {
  font-size: 0.85em;
}
.li-cir > li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  width: 0.3em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--page-point-color);
}
.li-dash > li::before {
  content: "-";
  position: absolute;
  top: 0.7em;
  left: 0;
  line-height: 0;
}
.navbar {
  --navbar-menu-padding-inline: clamp(15px, 2vw, 40px);
  --navbar-menu-font-size: clamp(16px, 2vw, 18px);
  --navbar-dropdown-menu-font-size: clamp(15px, 2vw, 16px);
  --navbar-logo-width: clamp(100px, 15vw, 150px);
  --navbar-logo-font-size: clamp(20px, 3vw, 24px);
}
.navbar :is(ul, li, a) {
  all: unset;
  box-sizing: border-box;
}
.navbar a {
  cursor: pointer;
}
.navbar .navbar-header {
  margin-inline: 0;
}
.navbar :where(*):before,
.navbar :where(*):after {
  content: none;
}
.navbar {
  all: unset;
  box-sizing: border-box;
  z-index: 5000;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  height: var(--navbar-height);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.navbar:hover,
.navbar:has(.navbar-right > li:hover),
.navbar:has(.navbar-right > li.open) {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  gap: clamp(20px, 5vw, 60px);
}
.navbar .navbar-brand,
.navbar .navbar-brand:is(:hover, :focus) {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: none;
  margin-left: 0 !important;
}
.navbar .navbar-brand img {
  margin-top: 4px;
  width: auto;
  max-width: none;
  height: auto;
  transition: opacity 0.25s ease;
}
.navbar.is-scrolled .navbar-brand img {
  content: url("/public/img/logo/color_logo.svg");
  width: 202px;
}
.navbar:hover .navbar-brand img,
.navbar:has(.navbar-right > li:hover) .navbar-brand img,
.navbar:has(.navbar-right > li.open) .navbar-brand img {
  content: url("/public/img/logo/color_logo.svg");
  width: 202px;
}
.navbar .navbar-brand span {
  position: relative;
  display: block;
  font-size: var(--navbar-logo-font-size);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.navbar.is-scrolled .navbar-brand span {
  color: #0d4e7c;
}
.navbar:hover .navbar-brand span,
.navbar:has(.navbar-right > li:hover) .navbar-brand span,
.navbar:has(.navbar-right > li.open) .navbar-brand span {
  color: #0d4e7c;
}
.navbar .navbar-right > li > a {
  z-index: 100;
  font-size: var(--navbar-menu-font-size);
  color: #fff;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: -0.2px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
.navbar.is-scrolled .navbar-right > li > a {
  color: #2f2f2f;
}
.navbar:hover .navbar-right > li > a,
.navbar:has(.navbar-right > li:hover) .navbar-right > li > a,
.navbar:has(.navbar-right > li.open) .navbar-right > li > a {
  color: #2f2f2f;
}

body.is-login-page .navbar,
body:has(.login_wrapper) .navbar,
body:has(.login_container) .navbar,
body:has(#login_form) .navbar {
  background: #fff;
  border-bottom-color: #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.is-login-page .navbar .navbar-brand img,
body:has(.login_wrapper) .navbar .navbar-brand img,
body:has(.login_container) .navbar .navbar-brand img,
body:has(#login_form) .navbar .navbar-brand img {
  content: url("/public/img/logo/color_logo.svg");
  width: 202px;
}

body.is-login-page .navbar .navbar-brand span,
body:has(.login_wrapper) .navbar .navbar-brand span,
body:has(.login_container) .navbar .navbar-brand span,
body:has(#login_form) .navbar .navbar-brand span {
  color: #0d4e7c;
}

body.is-login-page .navbar .navbar-right > li > a,
body:has(.login_wrapper) .navbar .navbar-right > li > a,
body:has(.login_container) .navbar .navbar-right > li > a,
body:has(#login_form) .navbar .navbar-right > li > a {
  color: #2f2f2f;
}

.navbar .navbar-right :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
  position: relative;
  z-index: 100;
  color: #0d4e7c;
  background-color: transparent;
  text-shadow: none;
}
.navbar .navbar-right > li:hover > a,
.navbar .navbar-right > li.open > a,
.navbar:has(.navbar-right > li:hover) .navbar-right > li:hover > a,
.navbar:has(.navbar-right > li.open) .navbar-right > li.open > a {
  color: #0d4e7c !important;
}
.navbar .navbar-right :is(.dropdown-menu) {
  z-index: 50;
  background-color: #fff;
}
.navbar .navbar-right :is(.dropdown-menu) a {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  transition: none;
  font-size: var(--navbar-dropdown-menu-font-size);
  font-weight: 500;
  color: #333;
  width: 100%;
  transition: all 0.15s;
}
.navbar .navbar-right :is(.dropdown-menu) a:hover {
  background-color: inherit;
  color: var(--page-point-color);
  text-decoration: underline;
}
.navbar #gnbauth i {
  display: none;
}
@media (width >=768px) {
  .navbar .navbar-collapse {
    display: flex !important;
    align-self: stretch;
  }
  .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%;
    border-radius: 0.375rem 0.375rem 0 0;
    background-color: transparent;
    padding-inline: var(--navbar-menu-padding-inline);
    padding-block: 0;
    font-weight: 600;
  }
  .navbar .navbar-right :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
  }
  .navbar .navbar-right > :is(li:not(#gnbauth):last-child, li#gnbauth) {
    margin-right: calc(var(--navbar-menu-padding-inline) * -1);
  }
  .navbar .dropdown-menu {
    all: unset;
    box-sizing: border-box;
    z-index: 5;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    padding: 0;
    min-width: 160px;
    gap: 0;
    opacity: 0;
    transform-origin: center top;
    background: #fff;
    align-items: stretch;
  }
  .navbar .navbar-right > li.open .dropdown-menu {
    display: flex;
    animation: menuOpen 0.25s forwards;
  }
  @keyframes menuOpen {
    0% {
      opacity: 0;
      scale: 1 0.5;
    }
    100% {
      opacity: 1;
      scale: 1 1;
    }
  }
  .navbar .dropdown-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    color: #2f2f2f;
    border-bottom: 1px solid #eee;
    text-align: center;
  }
  .navbar .dropdown-menu li:last-child a {
    border-bottom: 0;
  }
  .navbar .dropdown-menu li.active a,
  .navbar .dropdown-menu li.on a {
    background: #0d4e7c;
    border-bottom-color: #0d4e7c;
    color: #fff;
  }
  .navbar .dropdown-menu a:hover {
    background: #0d4e7c;
    border-bottom-color: #0d4e7c;
    color: #fff;
    text-decoration: none;
  }
  .navbar .dropdown-menu li.active a:hover,
  .navbar .dropdown-menu li.on a:hover {
    background: #0d4e7c;
    color: #fff;
  }
  .navbar .dropdown.open > .dropdown-menu {
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    min-width: 150px !important;
    align-items: stretch !important;
  }
  .navbar .dropdown.open > .dropdown-menu > li {
    display: flex !important;
    width: 100% !important;
  }
  .navbar .dropdown.open > .dropdown-menu > li > a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 46px !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid #eee !important;
    background: #fff !important;
    color: #2f2f2f !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 22.5px !important;
    text-align: center !important;
    text-decoration: none !important;
  }
  .navbar .dropdown.open > .dropdown-menu > li > a:hover {
    background: #0d4e7c !important;
    border-bottom-color: #0d4e7c !important;
    color: #fff !important;
  }
  .navbar .dropdown.open > .dropdown-menu > li:last-child > a {
    border-bottom: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .navbar,
  .navbar.is-scrolled {
    background: #fff;
    border-bottom-color: #ddd;
    box-shadow: none;
  }
  .navbar .navbar-brand span,
  .navbar.is-scrolled .navbar-brand span {
    color: #0d4e7c;
  }
  .navbar .navbar-brand img,
  .navbar.is-scrolled .navbar-brand img,
  .navbar:has(.navbar-right > li:hover) .navbar-brand img,
  .navbar:has(.navbar-right > li.open) .navbar-brand img {
    content: url("/public/img/logo/color_logo.svg");
    width: min(10.75rem, 44vw);
  }
  body::before {
    content: none;
    display: none;
  }
  body.menu-overlay::before {
    content: none;
    display: none;
  }
  @keyframes menuHeight {
    from {
      height: 100%;
    }
    to {
      height: 0;
    }
  }
  .navbar {
    overflow: hidden;
    animation: menuHidden 0s 0.401s forwards;
  }
  @keyframes menuHidden {
    from {
      overflow: hidden;
    }
    to {
      overflow: visible;
    }
  }
  .navbar .navbar-header {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar .navbar-brand {
    order: 1;
  }
  .navbar .navbar-toggle {
    order: 2;
  }
  .navbar .navbar-toggle {
    all: unset;
    box-sizing: border-box;
    order: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent !important;
    color: #2f2f2f;
    cursor: pointer;
  }
  .navbar .navbar-toggle::before {
    content: "\e5d2";
    font-family: var(--gms);
    color: currentColor;
    font-size: 2rem;
    line-height: 1;
    font-variation-settings: var(--gms-500-out);
  }
  .navbar .navbar-toggle > * {
    display: none;
  }
  .navbar .navbar-toggle:where(:hover, :focus) {
    background: transparent !important;
    color: #0d4e7c;
  }
  .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;
    overflow: hidden;
    background: #fff;
  }
  @keyframes menuHeight {
    from {
      height: 100%;
    }
    to {
      height: 0;
    }
  }
  .navbar .navbar-collapse .navbar-right {
    display: flex;
    flex-direction: column;
    overflow: hidden auto;
    position: relative;
    width: 100%;
    padding-block: 0px;
    margin: 0;
    background: #fff;
  }
  .navbar .navbar-collapse.open {
    transition: all 0.5s;
    max-height: calc(100svh - var(--navbar-height));
    overflow: hidden auto;
  }
  .navbar .navbar-right > li {
    transition: inherit;
    display: block;
    width: 100%;
    overflow: visible;
  }
  .navbar .navbar-right > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 55px;
    padding: 0 15px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    color: #2f2f2f !important;
    font-weight: 600;
    text-decoration: none;
  }
  .navbar .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-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);
  }
  .navbar .navbar-right .dropdown-menu {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #eee;
    padding: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.25s ease,
      opacity 0.2s ease;
  }
  .navbar .navbar-right .dropdown-menu > li {
    display: block;
    width: 100%;
  }
  .navbar .navbar-right .dropdown-menu a {
    display: block;
    color: #555 !important;
    padding: 10px 15px;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
  }
  .navbar .navbar-right > li.open .dropdown-menu {
    display: flex !important;
    max-height: 40rem;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden;
  }
}
footer {
  margin-top: 0px;
  background-color: #080808;
  color: #fff;
}
footer img {
  opacity: 1;
}
footer li {
  font-size: clamp(13px, 2vw, 14px);
  color: #a9a9a9;
  line-height: 27px;
}
footer li.corp {
  margin-bottom: 26px;
}
footer li.corp strong {
  color: #eee;
  font-weight: 500;
  font-size: 16px;
}
footer li.copyright {
  margin-top: 16px;
  color: #666;
  font-size: 13px;
}
footer .footer-info {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  line-height: 1.5;
  color: #444;
  gap: 0 10px;
}
footer .footer-info span {
  font-weight: 600;
  color: #fff;
  margin-right: 8px;
}
footer .footer-logo {
  flex-shrink: 0;
  width: 120px;
}
footer .footer-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 65px 0 60px;
}
@media (max-width: 767.98px) {
  footer .footer-wrap {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 3.75rem 1rem 3.5rem;
  }

  footer .footer-info {
    gap: 0rem 0.75rem;
  }
}
#loginBtn {
  margin-left: auto;
  align-self: flex-end;
}
#loginBtn a {
  display: inline-flex;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  padding: 8px 13px;
  background: transparent;
  color: #7d7d7d;
  line-height: 1;
  border-radius: 0;
  border: none;
  border-radius: 0;
  font-size: clamp(11px, 2vw, 12px);
  background: rgba(255, 255, 255, 0.07);
}
html.logined #loginBtn a[href="/member/login"] {
  display: none;
}
html:not(.logined) #loginBtn a[href="/member/logout"] {
  display: none;
}
#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);
}
@media (max-width: 767.98px) {
  #loginBtn a {
    margin-left: inherit;
  }
}
#scrollTop {
  --width: 40px;
  --bottom: 25px;
  all: unset;
  box-sizing: border-box;
  z-index: 1000;
  cursor: pointer;
  position: fixed;
  right: 25px;
  bottom: var(--bottom);
  display: none;
  justify-content: center;
  align-items: center;
  width: var(--width);
  padding: 0;
  background: var(--page-point-color);
  border-radius: 50%;
  aspect-ratio: 1;
  text-align: center;
  color: #fff;
}
#scrollTop::before {
  content: "\e5d8";
  font-family: var(--gms);
  font-variation-settings: var(--gms-300-out);
  font-size: 1.75rem;
}
@media (max-width: 767.98px) {
  #scrollTop {
    display: none;
  }
}
.subpage-header {
  --background-image: url(/public/img/sub/sub-top01.jpg);
  position: relative;
  height: 300px;
  background-color: #888;
}
.subpage-header .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--background-image) no-repeat center / cover;
  filter: brightness(0.6);
}
.subpage-title {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.subpage-title h2 {
  line-height: 1;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 46px;
}
.breadcrumb {
  background: none;
  padding: 0;
  margin: 0px 0 0 0;
  display: flex;
  gap: 20px;
}
.breadcrumb li {
  position: relative;
  font-size: 0.9rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.breadcrumb li.active {
  color: #fff;
}
.breadcrumb li + li:before {
  content: "\e5cc";
  font-family: var(--gms);
  font-weight: 400;
  position: absolute;
  left: -24px;
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}
.breadcrumb li.home a {
  line-height: 1;
}
.breadcrumb li.home a::before {
  content: "HOME";
}
.snb {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #dedede;
}
.snb ul {
  position: relative;
  display: flex;
  margin: 0;
  justify-content: center;
}
.snb li {
  flex: 0 1 25%;
}
.snb a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  line-height: 1;
  font-size: 17px;
  height: var(--snb-height);
  color: #888;
}
.snb li.active a {
  background: #fff;
  font-weight: 700;
  color: #000;
}
.snb li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--page-point-color);
}
.subpage [class*="title-h"] {
  --h-line-height: 1.5;
  --h-letter-spacing: -0.03em;
  --p-font-weight: 400;
  --p-color: #606060;
  --p-line-height: 1.6;
}
.subpage [class*="title-h"] a {
  color: #337ab7;
}
.subpage [class*="title-h"] a:hover {
  text-decoration: underline;
  color: #1b5c94;
}
.subpage [class*="title-h"]:only-child {
  margin-bottom: 0;
}
.subpage [class*="title-h"] p.big {
  font-size: 22px;
}
.subpage [class*="title-h"] span.color {
  font-weight: 600;
  color: #000;
}
.subpage *:not([class*="title-h"]) + [class*="title-h"] {
  margin-top: var(--title-between);
}
.subpage [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);
}
.subpage [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;
}
.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) + 10px);
}
.subpage .title-h3 {
  position: relative;
  --h-font-size: 44px;
  --h-font-weight: 700;
  --h-color: #333;
  --p-font-size: 22px;
  --text-between: 10px;
  margin-bottom: 80px;
  text-align: center;
}
.subpage .title-h4 {
  --h-font-size: 28px;
  --h-font-weight: 700;
  --h-color: #333;
  --p-font-size: 15px;
  --text-between: 15px;
  --title-between: 80px;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
  position: relative;
}
.subpage .title-h4:has(p) {
  margin-bottom: 30px;
}
.subpage .title-h4 li + li {
  margin-top: 5px;
}
.subpage .title-h4 + .title-h4 {
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 50px;
}
.subpage .title-h4 b {
  font-weight: 500;
}
.subpage .title-h4 p:only-child {
  font-size: 16px;
  font-weight: 450;
}
.subpage .title-h4 :is(img, img + p) {
  margin-top: 30px;
}
.subpage .title-h5 {
  --h-font-size: 20px;
  --h-font-weight: 600;
  --h-color: #000;
  --p-font-size: 15px;
  --text-between: 8px;
  --title-between: 50px;
  margin-bottom: 15px;
}
.subpage .title-h5 + .title-h5 {
  margin-top: 28px;
}
.subpage .title-h5:has(p, ul) {
  margin-bottom: 15px;
}
.subpage .container > :where(img, [class*="-wrap"]) + :where(img, [class*="-wrap"]) {
  margin-top: 50px;
}
.box-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 2px solid #222;
}
.box-wrap .col {
  padding-block: 40px;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  border-bottom: 1px solid #ccc;
}
.box-wrap .col li {
  font-size: 16px;
}
.box-wrap .col li + li {
  margin-top: 5px;
}
.subpage {
  overflow: hidden;
  position: relative;
}
.subpage section {
  padding: 100px 0 150px;
  min-height: 300px;
}
.subpage section:nth-child(even) {
  padding-top: 0;
}
.subpage [class*="-wrap"] + [class*="-wrap"] {
  margin-top: 70px;
}
.row-wrap {
  display: flex;
  gap: 30px;
}
.greet-wrap {
  display: flex;
  gap: 70px;
}
.greet-wrap .img-box {
  background-color: #ccc;
}
.greet-wrap .info {
  padding-block: 20px;
}
.greet-wrap h5 {
  font-size: 24px;
  font-weight: 400;
}
.greet-wrap h5 span.color {
  font-weight: 700;
}
.greet-wrap p {
  font-size: 17px;
}
.greet-wrap p.name {
  text-align: right;
  font-size: 18px;
}
.cert-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 30px;
}
.cert-wrap p {
  color: #666;
  font-size: 18px;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cert-wrap .img-box {
  border: 1px solid #ddd;
  padding: 15px;
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
}
.map-wrap .info {
  display: flex;
  margin-top: 30px;
  gap: 25px;
}
.map-wrap .addr + li {
  margin-left: auto;
}
.map-wrap li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  letter-spacing: 0;
  font-weight: 500;
  color: #333;
}
.map-wrap li.addr {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.map-wrap li span.material-symbols-outlined {
  font-size: 14px;
  font-variation-settings: var(--gms-700-out), var(--gms-grad-zero);
  color: #fff;
  background: var(--page-point-color);
  border-radius: 50%;
  padding: 7px;
}
.partner-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.partner-wrap .col {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  margin-left: -1px;
  margin-top: -1px;
  padding: 0 40px;
}
.process-wrap {
  display: flex;
  gap: 1px;
}
.process-wrap .arrow {
  flex: 0;
  align-self: center;
}
.process-wrap .arrow::before {
  content: "\e5cc";
  display: block;
  font-family: var(--gms);
  font-size: 54px;
  font-variation-settings: var(--gms-600-out);
  color: #333;
}
.fp-section.main-visual .fp-tableCell {
  padding-top: var(--navbar-height);
  color: #fff;
}
.fp-section {
  overflow: hidden;
  position: relative;
  display: flex;
}
.fp-tableCell {
  position: relative;
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  flex-direction: column;
}
.fp-scroll-overflow .fp-tableCell {
  justify-content: flex-start;
}
.fp-scrollable {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.fp-scroller {
  overflow: hidden;
}
.iScrollIndicator {
  border: 0 !important;
}
.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}
.sub-visual .fp-tableCell,
.pt-nav .fp-tableCell {
  padding-top: var(--navbar-height);
}
.fp-tableCell:has(footer) {
  padding-block: 0;
}
:is(.fp-auto-height, .fp-auto-height .fp-tableCell) {
  overflow: unset;
  height: unset !important;
  padding-top: unset;
}
.fp-tableCell footer {
  width: 100%;
}
.fp-responsive .fp-section.footer {
  overflow: hidden;
}
.fp-right {
  position: fixed;
  z-index: 10000;
  transform: translateY(-50%);
  top: 55%;
  left: clamp(10px, 2.5vw, 60px);
}
.fp-right ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.fp-right li {
  display: block;
}
.fp-right a {
  all: unset;
  display: block;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.fp-right span {
  z-index: 1;
  display: block;
  width: 8px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: #ccc;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.fp-right :is(a.active, li:hover) span {
  background-color: var(--mw-color-magenta);
}
.fp-right .fp-sr-only {
  display: none;
}
@media (min-height: 800px) {
  .fp-responsive :is(.fp-section) {
    height: auto !important;
  }
}
@media (max-height: 799.98px) or (max-width: 767.98px) {
  .fp-responsive :is(.fp-section:not(.fp-auto-height), .fp-section:not(.fp-auto-height) .fp-tableCell) {
    height: auto !important;
    padding-top: 0;
    min-height: 900px;
  }
  .fp-responsive :is(.pt-nav, .row-wrap .col) {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  .fp-responsive :is(.fp-section:not(.fp-auto-height), .fp-section:not(.fp-auto-height) .fp-tableCell) {
    min-height: 100%;
  }
  .fp-tableCell {
    align-items: flex-start;
  }
}
#mainCarouselSwiper {
  position: relative;
}
#mainCarouselSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--svh100);
}
#mainCarouselSwiper .swiper-slide .btn {
  margin-top: 30px;
}
#mainCarouselSwiper .swiper-slide .swiper-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#mainCarouselSwiper .swiper-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#mainCarouselSwiper .swiper-caption {
  position: relative;
  z-index: 10;
  width: min(100%, var(--main-wrap));
  max-width: var(--main-wrap);
  margin: 0 auto;
  padding-inline: 0;
  padding-bottom: clamp(5rem, 8vw, 7.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}
#mainCarouselSwiper .swiper-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#mainCarouselSwiper .swiper-link-btn {
  display: none;
}
#mainCarouselSwiper .swiper-link-btn span::before {
  content: "더보기";
}
#mainCarouselSwiper .swiper-caption {
  text-align: left;
  color: #fff;
}
#mainCarouselSwiper .swiper-caption h1 {
  position: relative;
  max-width: 48rem;
  font-size: clamp(3rem, 5vw, 4.375rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 2.5rem;
  color: inherit;
}
#mainCarouselSwiper .swiper-caption p {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  font-weight: 350;
  letter-spacing: 0;
  color: inherit;
}
#mainCarouselSwiper .swiper-caption span {
  white-space: nowrap;
}

#mainCarouselSwiper .swiper-indicators-wrap {
  z-index: 12;
  position: absolute;
  left: 50%;
  bottom: clamp(5rem, 8vw, 7rem);
  transform: translateX(-50%);
  width: min(100%, var(--main-wrap));
  max-width: var(--main-wrap);
  height: 4rem;
  pointer-events: none;
}

#mainCarouselSwiper [class*="swiper-button"] {
  position: absolute;
  left: auto;
  right: auto;
  top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  opacity: 1;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 12;
  pointer-events: auto;
}

#mainCarouselSwiper .swiper-button-prev {
  right: 4.5rem;
  bottom: 0;
}
#mainCarouselSwiper [class*="swiper-button"]::after {
  content: none;
}
#mainCarouselSwiper [class*="swiper-button"]::before {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 2rem;
  color: #fff;
  font-family: var(--gms);
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
  opacity: 1;
}
#mainCarouselSwiper [class*="swiper-button"]:hover::before {
  opacity: 1;
}
#mainCarouselSwiper .swiper-button-next::before {
  content: "arrow_right_alt";
}
#mainCarouselSwiper .swiper-button-prev::before {
  content: "arrow_right_alt";
  transform: rotate(180deg);
}
#mainCarouselSwiper .swiper-button-next {
  right: 0;
  bottom: 0;
}
#mainCarouselSwiper .swiper-pagination-container,
#mainCarouselSwiper .swiper-pagination {
  display: none !important;
}
@media (max-width: 767.98px) {
  #mainCarouselSwiper .swiper-caption {
    width: min(100% - 2rem, var(--main-wrap));
    max-width: var(--main-wrap);
    padding-bottom: 6rem;
  }

  #mainCarouselSwiper .swiper-caption h1 {
    margin-bottom: 1.75rem;
  }

  #mainCarouselSwiper .swiper-caption p {
    font-size: 1rem;
    line-height: 1.55;
  }

  #mainCarouselSwiper [class*="swiper-button"] {
    display: none;
  }
}
.mainpage {
  overflow: hidden;
  position: relative;
}
.mainpage :is(.bg) {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #fff;
  filter: brightness(0.8);
}
.mainpage section {
  position: relative;
  padding-block: clamp(80px, 10vw, 100px) clamp(80px, 10vw, 120px);
}
.mainpage h3 {
  font-size: clamp(36px, 5vw, 50px);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}
[class^="board_box"] {
  margin-bottom: 0;
}
.page-header {
  margin-block: 0 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.page-header h4 {
  display: inline-block;
  font-size: clamp(18px, 3vw, 22px);
}
.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;
}
.type_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.type_list li {
  padding: 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.type_list li .info {
  opacity: 0.5;
  flex-shrink: 0;
}
.type_list span.subject {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.type_list a:hover {
  text-decoration: underline;
}
.type_list :where(li, a) {
  line-height: 1;
  font-size: clamp(14px, 3vw, 16px);
  color: #000;
}
.type_list .info span:not(.regdate) {
  display: none;
}
.type_thumb {
  display: grid;
  grid-template-columns: repeat(2, minmax(1fr));
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  gap: 10px;
}
.type_thumb > div {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.type_thumb .inner {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
}
.type_thumb .thumb {
  aspect-ratio: 1.6666666667;
  height: auto;
}
.type_thumb .bottom {
  padding: 0;
}
.type_thumb .info {
  display: none;
}
.type_thumb .bottom .title {
  padding: 0;
  margin-top: 5px;
}
.type_thumb .bottom .title a {
  font-size: clamp(15px, 3vw, 17px);
}
.type_swiper_s1 {
  position: relative;
  padding-bottom: 50px;
}
.type_swiper_s1 .top {
  position: relative;
  display: block;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.type_swiper_s1[data-board-option="goods"] .top {
  aspect-ratio: 1;
}
.type_swiper_s1 .thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.type_swiper_s1 .bottom {
  padding-top: 15px;
}
.type_swiper_s1 .bottom .title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.type_swiper_s1 .bottom .title a {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}
.type_swiper_s1 .bottom .info {
  margin-top: 5px;
  display: flex;
  gap: 10px;
  opacity: 0.7;
  font-size: 12px;
}
.type_swiper_s1 .bottom[data-bottom="list"] {
  padding: 0;
}
.type_swiper_s1 .cate {
  background-color: var(--page-point-color);
  color: #fff;
  display: flex;
  align-items: center;
  width: fit-content;
  padding-inline: 5px;
  height: 20px;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 5px;
}
.type_swiper_s1 .swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  overflow: hidden;
  gap: 30px;
  pointer-events: none;
  user-select: none;
}
.type_swiper_s1 .swiper:not(.swiper-initialized) .swiper-slide {
  width: 300px;
  flex-shrink: 0;
}
.type_swiper_s1 .swiper:not(.swiper-initialized)::before {
  content: '게시판 위젯 [data-swiper-id="' var(--board-option) '"]에 Swiper가 적용되지 않았습니다.';
  z-index: 100;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}
.type_swiper_s1 [class*="swiper-button"] {
  display: flex;
  align-items: center;
  top: 0;
  margin: 0;
  opacity: 1;
  width: fit-content;
  height: 100%;
}
.type_swiper_s1 [class*="swiper-button"]::after {
  content: none;
}
.type_swiper_s1 [class*="swiper-button"]::before {
  position: relative;
  font-family: "Font Awesome 5 Free";
  right: auto;
  top: 0;
  width: auto;
  line-height: 1;
  font-size: 32px;
  font-weight: 900;
  color: var(--page-point-color);
  opacity: 0.5;
}
.type_swiper_s1 [class*="swiper-button"]:hover::before {
  opacity: 1;
}
.type_swiper_s1 [class*="swiper-button"].swiper-button-next {
  right: -50px;
}
.type_swiper_s1 [class*="swiper-button"].swiper-button-next::before {
  content: "\f054";
}
.type_swiper_s1 [class*="swiper-button"].swiper-button-prev {
  left: -50px;
}
.type_swiper_s1 [class*="swiper-button"].swiper-button-prev::before {
  content: "\f053";
}
.type_swiper_s1 .contents_preview {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0 1px;
  height: 40px;
  margin-top: 5px;
}
#mainPopup {
  position: relative;
  top: calc(var(--navbar-height) - 140px);
}
.main_popup {
  display: none;
  position: absolute;
  top: 100px;
  min-width: 300px;
  z-index: 900;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin-bottom: 30px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
.main_popup.show {
  display: flex;
}
.main_popup button.close {
  opacity: 1;
  margin: 0;
  height: auto;
  color: inherit;
  font-size: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_popup span.material-symbols-outlined {
  line-height: 0.8;
  font-variation-settings: var(--gms-100-out);
  font-size: inherit;
}
.main_popup .main_popup_contents {
  overflow: hidden;
  padding: 10px;
  background: #fff;
}
.main_popup .main_popup_contents img {
  display: block;
  max-width: 100%;
  height: auto;
}
.main_popup_optional {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0px 7px 0px 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 35px;
  border-top: 1px solid #efefef;
  line-height: 1;
}
.main_popup_optional label {
  font-weight: 400;
  margin: 0;
  cursor: pointer;
}
.main_popup_optional label span {
  padding-left: 3px;
  display: inline-block;
  vertical-align: 2px;
}
.main_popup_optional :where(label, div) {
  opacity: 0.8;
}
.main_popup_optional :where(label, div):where(:hover, :focus) {
  opacity: 1;
}
.main_popup_optional :where(label, div, span) {
  float: unset;
  line-height: 1;
}
.main_popup_optional label {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 400;
}
.main_popup_optional label span.material-symbols-outlined {
  font-size: 1.25rem;
  margin-right: 2px;
  line-height: 0.8;
}
.main_popup.main_popup_left {
  left: 50px;
}
.main_popup.main_popup_center {
  left: 50%;
  transform: translate(-50%);
}
.main_popup.main_popup_right {
  right: 50px;
}
@media (max-width: 767px) {
  .main_popup.main_popup_left,
  .main_popup.main_popup_center,
  .main_popup.main_popup_right {
    left: 15px;
    right: 15px;
    transform: none;
  }
}
.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}
@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;
  }
}
:where(.table) {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
:where(.table) :where(th, td) {
  vertical-align: top;
  line-height: 1.5;
}
.table-style {
  --border-color: #ccc;
  border: 1px solid var(--border-color);
  border-top: 2px solid #222;
  background-color: #fff;
  margin: 0;
}
.table-style :is(th, td) {
  padding: 15px 19px;
  font-size: 16px;
  vertical-align: middle;
  border: 1px solid var(--border-color);
  text-align: center;
}
.table-style td {
  color: #444;
}
.table-style thead th {
  border-bottom: 0;
  background-color: #eee;
  border: 1px solid var(--border-color);
  color: #222;
  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: #f7f7f7;
  font-weight: 600;
}
.table-number tbody > tr {
  counter-increment: itemNum;
}
.table-number thead > tr > th:first-child {
  text-align: center;
}
.table-number tbody > tr > td:first-child {
  text-align: center;
}
.table-number tbody > tr > td:first-child::before {
  content: counter(itemNum) "";
  text-align: center;
}
.board_wrapper {
  margin-block: 0;
}
/* .board_wrapper tr {
  height: 4.875rem;
} */
.board_wrapper tr.notice {
  background-color: #f9fafb;
}
.board_wrapper tr.notice td.subject a {
  font-weight: 500;
}
.board_wrapper td.subject .is_secret {
  order: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board_wrapper td.subject span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.board_wrapper td.subject small {
  margin-top: 0;
}
.board_wrapper td.subject small.lock {
  order: 0;
  translate: 0 -1px;
  font-size: 0.9em;
}
.board_wrapper 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 td.subject small.comment::before {
  content: "[";
}
.board_wrapper td.subject small.comment::after {
  content: "]";
}
.board_wrapper td.subject small.comment i {
  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;
}
:where(.member_wrapper, .board_wrapper) .text-center {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
:where(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
  margin: 0;
}
:where(.member_wrapper, .board_wrapper) :where(.btn.btn-lg, .btn + .btn) {
  min-width: 180px;
}
: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);
}
:where(.member_wrapper, .board_wrapper) .checkbox {
  margin: 0;
}
:where(.member_wrapper, .board_wrapper) .checkbox label {
  cursor: pointer;
  width: fit-content;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox label, .radio label) {
  letter-spacing: -0.06em;
}
:where(.member_wrapper, .board_wrapper) .custom_checkbox + span a {
  font-weight: 500;
  color: #1b54e4;
  text-decoration: underline;
}
:where(.member_wrapper, .board_wrapper) :where(.custom_checkbox, .custom_radio) + span::before {
  color: #555;
  font-size: 1.1em;
  vertical-align: 0px;
  content: "\f0c8";
  font-family: "Font Awesome 6 Free";
  font-weight: 300;
  margin: 0px 7px 0 0px;
  transform: translateY(1px);
  display: inline-block;
}
:where(.member_wrapper, .board_wrapper) :where(.custom_checkbox, .custom_radio):checked + span::before {
  content: "\f14a";
  color: var(--page-point-color);
  font-weight: 900;
}
: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;
}
:where(.member_wrapper, .board_wrapper) :where(.checkbox, .radio) label {
  padding-left: 0;
  display: flex;
  align-items: center;
}
: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) {
  :where(.member_wrapper, .board_wrapper) div.text-center {
    margin-top: 0;
    margin-bottom: 50px;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  :where(.member_wrapper .text-center .btn + .btn) {
    margin-left: 0;
  }
  :where(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
    padding: 0;
    height: 50px;
    font-size: 14px;
  }
  :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;
  gap: 0 20px;
}
#bbsArea .category_wrap li {
  margin: 0;
}
#bbsArea .category_wrap a {
  color: #888;
  font-weight: 500;
  padding-bottom: 0;
  border-bottom: 0;
}
#bbsArea .category_wrap a:hover {
  color: #111;
}
#bbsArea .category_wrap li.on :where(a, a:hover, a:focus) {
  color: #000;
  font-weight: 600;
}
#bbsArea :is([class*="wrap"]) {
  margin: 0;
}
#bbsArea {
  position: relative;
}
#bbsArea .board_data_view {
  border-top: 2px 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: 80px 40px;
}
#bbsArea .pagination_wrap + .search_wrap {
  margin-top: 0px;
}
#bbsArea .pagination_wrap ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
#bbsArea .pagination_wrap li + li {
  margin-left: -1px;
}
#bbsArea .pagination_wrap a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  aspect-ratio: 1;
  font-size: 15px;
  border-radius: 9999px;
}
#bbsArea .pagination_wrap li:not(.active) a:hover {
  background-color: #eee;
}
#bbsArea .pagination_wrap li.active a {
  width: 28px;
  background-color: var(--page-point-color);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
#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;
}
#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;
    width: 100%;
  }
  #search_query.form-control {
    max-width: 100% !important;
  }
  #bbsArea .search_wrap #write_btn {
    width: 100%;
    min-width: auto;
  }
}
#bbsArea .badge {
  padding: 0;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}
#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-block: 50px 55px;
  border-bottom: 1px solid #e3e3e3;
}
#bbsArea .header_wrap h4.title {
  font-size: 28px;
  font-weight: 600;
  color: var(--main-text);
}
#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: 18px;
  opacity: 0.4;
}
#bbsArea .header_wrap .info span {
  font-size: 14px;
  color: #000;
}
#bbsArea .header_wrap .info span + span {
  margin-left: 9px;
}
/* #bbsArea .contents_wrap {
  padding: 60px 120px;
} */
#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 .download_wrap {
  padding: 15px;
  border-top: 1px solid #ddd;
}
#bbsArea .download_wrap th {
  text-align: left;
  width: 70px;
}
#bbsArea .download_wrap ul {
  display: flex;
  gap: 5px 20px;
  flex-wrap: wrap;
}
#bbsArea .download_wrap a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  #bbsArea .download_wrap ul {
    flex-direction: column;
  }
  #bbsArea .download_wrap tr {
    display: flex;
    flex-direction: column;
  }
  #bbsArea .download_wrap tr > * {
    width: 100%;
  }
  #bbsArea .download_wrap tr th {
    padding-bottom: 10px;
  }
  #bbsArea .download_wrap tr a {
    word-break: break-all;
  }
}
#bbsArea .reply_wrap {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
#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 {
  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;
}
: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 .info {
  display: flex;
  gap: 7px;
}
#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_list {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ccc;
  margin-block: 20px;
}
#bbsArea #reply_list .media {
  position: relative;
  margin: 0;
  padding: 20px 5px 40px;
}
#bbsArea #reply_list .media + .media {
  border-top: 1px solid #ddd;
}
#bbsArea #reply_list .media .media-left,
#bbsArea #reply_list .media > .pull-left {
  padding-right: 20px;
}
#bbsArea #reply_list .media .media-left img {
  border-radius: 100%;
}
#bbsArea #reply_list .media .media-body {
}
#bbsArea #reply_list .media .media-body {
  position: static;
}
#bbsArea #reply_list .media .media-body .info {
  position: absolute;
  left: 130px;
  bottom: 15px;
}
#bbsArea #reply_list .media .media-body .info .btn {
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  font-size: 12px;
  vertical-align: middle;
  color: #333;
  height: auto;
  max-width: unset;
}
#bbsArea #reply_list .media .media-body .info span {
  color: #aaa;
  font-size: 13px;
  margin-left: 6px;
  vertical-align: middle;
}
#bbsArea #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_list .media .media-body p {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  word-break: break-all;
}
#bbsArea #reply_write .info .form-control {
  display: inline-block;
  width: 120px;
}
#bbsArea #reply_write .info .form-control + .form-control {
  margin-left: 2px;
}
#bbsArea #reply_write .contents {
  margin-top: 5px;
}
#bbsArea #reply_write .contents .form-control {
  height: 100px;
  width: 100%;
  min-height: 100px;
  max-height: 300px;
  resize: vertical;
  padding: 10px 15px;
}
#bbsArea #reply_write .btn_wrap {
  margin-top: 5px;
  text-align: right;
}
#bbsArea #reply_write .btn_wrap .btn {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 539px) {
  #bbsArea #reply_write .info .form-control {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
  #bbsArea #reply_write .info .form-control + .form-control {
    margin-left: 0;
  }
}
#bbsArea .table.board_write_table {
  border-top: 1px solid #333;
  border-collapse: inherit;
}
#bbsArea .table.board_write_table tbody th {
  background-color: transparent;
  font-weight: 700;
}
#bbsArea .table.board_write_table tbody td {
  padding: 0px;
  border: 0;
}
#bbsArea .table.board_write_table .text-muted {
  margin-top: 8px;
}
#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;
}
#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 .files {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px 15px;
  flex: 1;
}
#bbsArea .table.board_write_table #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 :where(th > span:first-child, span.required_text) {
  position: static;
  margin: -0.15em 3px 0 0;
  color: #111;
}
#bbsArea .frm_textarea_cnt {
  display: none;
}
@media (width >=768px) {
  #bbsArea .table.board_write_table .files_upload_wrap {
    gap: 15px;
  }
  #bbsArea .table.board_write_table .files_upload_wrap .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    aspect-ratio: 1;
    height: 40px;
  }
  #bbsArea .table.board_write_table .files_upload_wrap {
    display: flex;
  }
}
@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 .fileInput .file_add {
    position: relative;
    right: auto;
  }
}
.form-control {
  width: 100%;
  font-family: var(--page-font-family);
  padding: 0.6rem 0.85rem;
  font-size: 16px;
  height: var(--form-height);
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid var(--page-grey-color);
}
#search_query.form-control {
  width: 100%;
  max-width: 320px;
  border: 1px solid #dddddd;
}
#search_query.form-control:focus {
  background-color: #fff;
  border-color: var(--page-point-color);
}
textarea.form-control {
  padding-block: 0.9rem;
}
.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;
}
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;
}
input.form-control {
  -webkit-appearance: none;
  padding-right: 20px;
}
input.form-control + .clear-input {
  display: none;
  border: 0;
  background-color: transparent;
}
input.form-control.valid-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.valid-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:hover {
  color: var(--page-point-color);
}
input.form-control + .clear-input {
  display: none;
  border: 0;
  background-color: transparent;
}
input.form-control.valid-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.valid-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:hover {
  color: var(--page-point-color);
}
@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;
}
.wr_form_item {
  position: relative;
}
.wr_form_item input.form-control {
  padding-right: 40px;
}
.wr_form_item :where(.input-group, .form-control) {
  width: 100%;
}
@media (max-width: 768px) {
  .wr_form_wrap {
    display: flex;
    flex-direction: column;
  }
}
.wr_form_item .form-control {
  background-color: transparent;
  padding-right: 35px;
}
.custom_file {
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
}
.custom_checkbox {
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
}
.custom_checkbox + span {
  user-select: none;
}
.custom_checkbox + span::before {
}
.custom_checkbox:checked + span::before {
  content: "\f14a";
  font-weight: 900;
}

.custom_checkbox + span::before {
  margin-left: -1.5rem;
}

.custom_checkbox[disabled],
.custom_checkbox[disabled] + span {
  opacity: 0.5;
}
.custom_radio {
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
}
.custom_radio + span {
  user-select: none;
}
.custom_radio + span::before {
  font-size: 1.1em;
  vertical-align: 0px;
  color: #555;
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 300;
  margin: 0 5px 0 -24px;
}
.custom_radio:checked + span::before {
  content: "\f192";
  font-weight: 900;
}
.custom_radio[disabled],
.custom_radio[disabled] + span {
  opacity: 0.5;
}
#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);
  margin: 0;
  border: 1px solid transparent;
}
#captcha:hover {
  border-color: #222 !important;
}
#captcha + br {
  display: none;
}
#captcha + br + input {
  margin: 0 0 0 -1px !important;
  border-radius: 0;
  margin-left: -1px;
}
#captcha + br + input:focus {
  z-index: 15;
}
td:has(#captcha) {
  display: flex;
  gap: 0;
}
: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: clamp(40px, 3vw, 70px) clamp(20px, 3vw, 30px);
}
:is(.table_video, .table_blog2, .table_pd)::before,
:is(.table_video, .table_blog2, .table_pd)::after {
  content: none;
}
@media (width >=576px) {
  :is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 2;
  }
}
@media (width >= 768px) {
  :is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 4;
  }
}
:is(.table_video, .table_blog2, .table_pd) > dd {
  width: 100%;
  padding: 0;
}
:is(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
  width: 100%;
  grid-column: span var(--board-template-columns);
}
:is(.table_video, .table_blog2, .table_pd) > dd.no_content {
  grid-column: span var(--board-template-columns);
}
:is(.board_list_list, .board_status_list) .table_default {
  border: 0;
  border-spacing: 0;
  border-top: 1px solid #333;
  margin-bottom: 0;
  width: 100%;
}
:is(.board_list_list, .board_status_list) .table_default :is(th, td) {
  padding: 17px 15px;
  font-size: clamp(15px, 3vw, 16px);
  border-bottom: 1px solid #ddd;
}
:is(.board_list_list, .board_status_list) .table_default td {
  color: #777;
  text-align: center;
}
:is(.board_list_list, .board_status_list) .table_default td.text-center {
  display: table-cell;
  text-align: center;
}
:is(.board_list_list, .board_status_list) .table_default thead th {
  background: #fff;
  border-bottom: 1px solid #ccc;
  font-weight: 600;
  color: #222;
}
:is(.board_list_list, .board_status_list) .table_default tbody th.num {
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  color: #999;
}
:is(.board_list_list, .board_status_list) .table_default tbody .subject a {
  overflow: hidden;
  color: #333;
  text-overflow: ellipsis;
}
:is(.board_list_list, .board_status_list) .table_default.table_responsive tbody th {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  :is(.board_list_list, .board_status_list) .table_default :is(colgroup, .num, .regdate, .hits, .writer) {
    display: none;
  }
  :is(.board_list_list, .board_status_list) .table_default .subject {
    width: 100%;
  }
  :is(.board_list_list, .board_status_list) .table_default .status {
    width: 35%;
  }
}
.table_blog dd::after,
.table_blog dd .info {
  display: none;
}
.table_blog dd {
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 0;
  padding: 50px 0px;
  gap: 30px;
}
.table_blog dd:hover {
  background-color: transparent;
}
.table_blog dd :is(.left, .right) {
  width: auto;
  height: auto;
}
.table_blog dd a {
  font-weight: 500;
}
:is(.table_blog dd:hover a, .table_blog dd a:is(:hover, :focus)) {
  color: var(--page-point-color);
}
@media (max-width: 767.98px) {
  .table_blog dd {
    flex-direction: column;
    gap: 0;
  }
}
/* .table_blog dd .right {
  display: flex;
  flex-direction: column;
  gap: 5px 15px;
  align-items: flex-start;
  width: auto;
  flex: 1;
} */
.table_blog dd .right .info {
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  grid-column: 2;
  grid-row: span 2;
  margin-bottom: 0;
}
.table_blog dd .right :where(.writer, .hits) {
  display: none;
}
.table_blog dd .right a {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 22px;
}
.table_blog dd .right .text {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.table_blog dd .right p {
  padding: 0;
  font-size: clamp(14px, 3vw, 16px);
}
@media (max-width: 767.98px) {
  .table_blog dd .right {
    padding-top: 0;
  }
  .table_blog dd .right p {
    line-height: 1.5;
  }
}
.table_blog dd .left {
  flex: 0 1 auto;
  width: 250px;
}
.table_blog dd .left .thumb {
  aspect-ratio: 1.6666666667;
  width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .table_blog dd .left {
    width: 100%;
    padding-left: 0;
    margin-right: 0;
  }
}
:where(.table_video, .table_blog2, .table_pd) .inner {
  border: 0;
}
: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: 10px;
}
:is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
  display: none;
}
:is(.table_video, .table_blog2) dd {
  margin-bottom: 0;
}
:is(.table_video, .table_blog2) .bottom {
  margin-top: 15px;
  padding: 0;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog {
  border-top: 2px solid var(--main-text) !important;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd {
  align-items: flex-start;
  gap: 2.1875rem;
  padding: 3.125rem 0;
  border-bottom: 1px solid #ddd;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .left {
  flex: 0 0 15.625rem;
  width: 15.625rem;
  margin: 0;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .left a {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 9.375rem;
  background: #e3e7ea;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .left span.thumb {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .left span.thumb + img.thumb {
  display: none;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .left img.thumb {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .right {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 0;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .right .title a {
  display: block;
  margin-bottom: 0.625rem;
  color: var(--main-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .right .text {
  color: var(--main-muted);
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd {
    gap: 1rem;
    padding: 2rem 0;
  }

  .notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .left {
    flex-basis: auto;
    width: 100%;
  }

  .notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .left a {
    height: auto;
    aspect-ratio: 5 / 3;
  }
}
:is(.table_video, .table_blog2) :where(.inner .bottom) a {
  display: block;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: 18px;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px 0;
  padding: 0;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info {
  display: flex;
  gap: 10px;
}
:where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info span {
  padding: 0;
  gap: 10px;
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.5;
}
:is(#form_history_list, #form_history_nologin) .board_wrapper {
  padding: 0;
  background: transparent;
  min-height: auto;
}
:is(.board_wrapper form[id*="form"] table.table, .board_wrapper form[id*="form"] :where(th, td)) {
  border: 0;
}
.board_wrapper form[id*="form"] table.table {
  width: 100%;
  display: flex;
  border-top: 0;
}
.board_wrapper form[id*="form"] table.table th {
  padding: 0;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  background-color: transparent;
  width: auto;
  border-top: 0;
}
.board_wrapper form[id*="form"] table.table :is(th, td) {
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .board_wrapper form[id*="form"] table.table th {
    margin-bottom: 15px;
  }
}
.board_wrapper form[id*="form"] table.table tbody {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.board_wrapper form[id*="form"] table.table tbody tr {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
  align-items: stretch;
  gap: 8px;
  padding: 25px 10px;
  border-bottom: 1px solid #ccc;
}
.board_wrapper form[id*="form"] #item_agree .checkbox {
  margin-top: 0;
}
.board_wrapper form[id*="form"] #item_agree label,
.board_wrapper form[id*="form"] #item_email .text-muted {
  font-size: clamp(13px, 2vw, 15px);
}
:where(.form-wrap, form) #list_btn {
  display: none;
}
@media (max-width: 767.98px) {
  .board_wrapper form[id*="form"] table.table tbody tr {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
:is(.find_container, .login_container) .member_wrapper .form-group {
  height: 52px;
}
:is(.find_container, .login_container) .member_wrapper .form-group input {
  border: 0;
  padding-left: 0;
}
:is(.find_container, .join_container, .join_write_container, .login_container) .form-group {
  height: 45px;
}
:is(.find_container, .join_container, .join_write_container, .login_container) .member_wrapper {
  padding: clamp(30px, 4vw, 60px) clamp(20px, 3vw, 60px);
  border-radius: 30px;
  background: #fff;
}
:is(.find_container, .join_container, .join_write_container) .member_wrapper {
}
:is(.find_container, .login_container) :is(.member_wrapper) {
  max-width: 500px;
}
@media (max-width: 767.98px) {
  :is(.find_container, .join_container, .join_write_container, .login_container) {
    width: 100%;
    padding: 0 15px;
  }
  :is(.find_container, .join_container, .join_write_container, .login_container) .member_wrapper {
    width: 100%;
    margin: 0 auto;
  }
}
.member_wrapper {
  max-width: 1140px;
  padding-top: 120px;
  padding-bottom: 200px;
  margin: 0 auto;
}
.member_wrapper h1 {
  margin-top: 0;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  border: 0;
  margin-bottom: 20px;
  padding-bottom: 0px;
  letter-spacing: -0.03em;
}
.member_wrapper h1 + p {
  line-height: 1.4;
  font-size: clamp(13px, 3vw, 15px);
  height: 80px;
  margin-bottom: 0;
  text-align: center;
  color: #666;
}
.member_wrapper .text-center {
  margin-top: 40px;
}
.member_wrapper .text-center .btn.btn-lg {
  padding-left: 40px;
  padding-right: 40px;
}
.member_wrapper #login_form input {
  padding-left: 5px;
  font-size: 15px;
}
#login_form .form-group label {
  position: relative;
}
#login_form .form-group label[class*="label-"] {
  text-indent: -9999px;
}
#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;
}
#login_form .form-group:focus-within label[class*="label-"]::before {
  color: #000;
}
#login_form .form-group label.label-id::before {
  content: "\e7fd";
}
#login_form .form-group label.label-pw::before {
  content: "\e897";
}
#login_form .form-group label.label-email::before {
  content: "\e0e6";
}
@media (max-width: 767.98px) {
  .member_wrapper {
    padding: 60px 30px;
  }
  .member_wrapper :where(#login_form, fieldset) {
    display: flex;
    flex-direction: column;
  }
  .member_wrapper :where(#login_form, #login_form input) {
    font-size: clamp(13px, 3vw, 14px);
  }
  .member_wrapper #login_form input {
    border: 0;
    padding-right: 35px;
  }
}
.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;
}
@media (min-width: 768px) {
  .member_wrapper #login_form .control-label {
  }
}
.member_wrapper .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);
}
.member_wrapper .join_agree_box + .checkbox label {
  display: flex;
  align-items: center;
  padding-left: 0;
  font-size: clamp(13px, 2vw, 14px);
}
.member_wrapper .join_agree_box + .checkbox input {
  position: static;
  margin: 0;
  margin-right: 7px;
}
.member_wrapper .join_agree_box + .checkbox > a {
  font-size: 14px;
  color: #1c54e4;
  font-weight: 500;
}
.member_wrapper .join_agree_box + .checkbox > a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .member_wrapper .join_agree_box + .checkbox > a {
    font-size: 0.75em;
  }
}
.member_wrapper .form-group {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}
.member_wrapper .form-group > * {
  width: auto;
  padding: 0;
}
.member_wrapper .form-group:focus-within {
  z-index: 100;
  border-color: var(--page-point-color);
}
.member_wrapper .form-group:focus-within span.material-symbols-outlined {
  opacity: 1;
  color: var(--page-point-color);
}
.member_wrapper .form-group:nth-of-type(1) {
  margin-bottom: -1px !important;
}
.member_wrapper .form-group:nth-of-type(2) {
  margin-bottom: 0px !important;
}
.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;
}
.member_wrapper .form-group > label:nth-child(1) {
  width: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-3px);
}
.member_wrapper .form-group > div:nth-child(2) {
  flex: 1;
}
@media (max-width: 767.98px) {
  .member_wrapper .form-group > div:last-child {
    width: 100%;
  }
}
:is(#find_btn, #login_btn) {
  margin-top: 25px;
  height: 50px;
  width: 100%;
  border-radius: 9999px;
}
:is(#find_idpw, .join_wrapper, .login_wrapper) {
  z-index: 10;
  width: 100%;
  padding: 100px 0 120px;
  background: #f7f7f7;
}
@media (max-width: 767.98px) {
  :is(#find_idpw, .join_wrapper, .login_wrapper) {
    margin-top: 0;
    position: relative;
    padding: 30px 0 100px;
    height: auto;
  }
}
:where(#find_idpw, .login_wrapper) {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width >=992px) {
  :where(#find_idpw, .login_wrapper) {
    padding: 0 !important;
    height: calc(var(--svh100) - var(--navbar-height)) !important;
  }
}
@media (height <=700px) {
  :where(#find_idpw, .login_wrapper) {
    height: auto;
    min-height: 700px;
    align-items: flex-start;
  }
}
.member_wrapper .login_extra {
  margin-top: 30px;
}
.member_wrapper .login_extra ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 15px;
}
.member_wrapper .login_extra li > a {
  font-size: clamp(13px, 3vw, 14px);
}
.member_wrapper .login_extra li + li {
  margin-left: 0;
}
.member_wrapper .login_extra li + li::before {
  content: none !important;
}
@media (max-width: 767.98px) {
  .member_wrapper .login_extra ul {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .member_wrapper .login_extra li + li::before {
    content: none;
  }
}
@media (max-width: 767.98px) {
  .member_wrapper #join_form tr th {
    padding: 10px 20px;
    margin-bottom: 10px;
  }
  .member_wrapper #join_form tr td {
    display: flex;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 5px;
  }
  .member_wrapper #join_form tr td > div:has(textarea) {
    width: 100%;
  }
  .member_wrapper #join_form tr td[style="vertical-align:middle"] {
    align-items: center;
    padding-inline: 20px;
  }
  .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
    margin-top: 0;
  }
  .member_wrapper #join_form tr td input:not(#mb_mailing) {
    width: 100%;
  }
}
.member_wrapper .join_agree h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}
.member_wrapper .table {
  width: 100%;
}
.member_wrapper .table tbody {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.member_wrapper .table tbody tr {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
  margin-bottom: -1px;
}
.member_wrapper .table tbody tr th {
  text-align: left;
  width: auto;
}
.member_wrapper .table tbody tr th span {
  color: var(--page-point-color);
}
.member_wrapper .table tbody tr td {
  padding-inline: 15px;
  display: flex;
  gap: 5px;
}
.member_wrapper .table tbody tr :where(th, td) {
  display: block;
  font-size: clamp(13px, 3vw, 15px);
}
@media (max-width: 767.98px) {
  :where(.member_wrapper .table, .member_wrapper .table :where(tbody, tbody tr)) {
    display: block;
    width: 100%;
  }
  .member_wrapper .table tbody tr :where(th, td) {
    display: block;
    width: 100%;
    font-size: clamp(15px, 2vw, 17px);
  }
  .member_wrapper .table tbody tr th {
    padding: 10px 30px;
  }
  .member_wrapper .table .files_upload_wrap {
    display: flex;
    flex-direction: column;
  }
  .member_wrapper .table .files_upload_wrap .files {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .member_wrapper .table .files_upload_wrap .files input {
    width: auto;
  }
  .member_wrapper .table .files_upload_wrap .files .file_add {
    position: relative;
    right: auto;
  }
  .member_wrapper .table .files_upload_wrap .btn {
    width: 100%;
    aspect-ratio: inherit;
    margin-top: 15px;
  }
}
:is(.privacy_container, .agreement_container) {
  text-align: left;
}
:is(.privacy_container, .agreement_container) h1 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 40px;
}
:where(.privacy_container, .agreement_container) .privacy_body {
  font-size: 1rem;
  line-height: 1.6em;
  padding-inline: clamp(20px, 3vw, 50px);
}
@media (max-width: 767.98px) {
  :where(.privacy_container, .agreement_container) .member_wrapper {
    padding: 50px 30px;
  }
}
.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;
}

/* main section */
:root {
  --main-primary: #0d4e7c;
  --main-primary-strong: #026ea8;
  --main-text: #2f2f2f;
  --main-muted: #6b7280;
  --main-line: #e5e7eb;
  --main-panel: #f3f4f6;
  --main-white: #fff;
  --main-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.08);
  --main-radius-sm: 0.25rem;
  --main-radius-md: 0.5rem;
  --main-space: clamp(5rem, 8vw, 8.75rem);
  --main-wrap: 1350px;
  --main-eyebrow: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  --main-title: clamp(2rem, 1.55rem + 1.5vw, 2.875rem);
  --main-text-lg: clamp(1rem, 0.93rem + 0.3vw, 1.25rem);
  --about-image: url("/public/img/main/about-thumb.png");
  --product-image-1: url("/public/img/main/main-product01.png");
  --product-image-2: url("/public/img/main/main-prod02.png");
  --product-image-3: url("/public/img/main/main-prod03.png");
  --product-image-4: url("/public/img/main/main-prod04.png");
  --sub-top-1: url("/public/img/sub/sub-top01.png");
  --sub-top-2: url("/public/img/sub/sub-top02.png");
  --sub-top-3: url("/public/img/sub/sub-top03.png");
  --sub-top-4: url("/public/img/sub/sub-top04.png");
  --sub-about-image: url("/public/img/sub/sub-about.png");
}

.wrap {
  width: min(100%, var(--main-wrap));
  max-width: var(--main-wrap);
  padding-inline: 0;
  margin: 0 auto;
}

.section {
  padding: var(--main-space) 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--main-primary);
  font-size: var(--main-eyebrow);
  font-weight: 600;
  line-height: 1.4;
}

.title {
  color: var(--main-text);
  font-size: var(--main-title);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.desc {
  color: var(--main-muted);
  font-size: var(--main-text-lg);
  line-height: 1.6;
  letter-spacing: -0.016em;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: 0.9375rem 1.25rem;
  border-radius: var(--main-radius-sm);
  background: var(--main-primary);
  color: var(--main-white) !important;
  font-size: 1rem;
  font-weight: 600;
  gap: 0.75rem;
  width: fit-content;
  transition: all 0.25s;
}

.link-btn:hover {
  background: var(--main-primary-strong);
}

.link-btn:hover::after {
  margin-left: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  gap: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--main-primary);
  color: var(--main-primary) !important;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
}

.text-link::after {
  content: "→";
  line-height: 1;
}

.section.product {
  padding-top: 7.5rem;
}

.section.newsletter {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
  background: #fff;
}

.main-board-slot {
  display: flow-root;
  width: 100%;
}

.main-board-slot .board_box_blog.col-sm-12,
.main-board-slot .board_box_blog.col-xs-12,
.main-board-slot [class*="board_box_"] {
  float: none;
  width: 100%;
  min-height: 0;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

.main-board-slot .board_box_blog {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 5vw, 4.375rem);
  padding: 0;
  background: transparent;
  margin-bottom: 0px !important;
}

.main-board-slot .page-header {
  display: grid;
  justify-items: center;
  gap: 0.9375rem;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: center;
  justify-content: center;
}

.main-board-slot .page-header h4::before {
  content: "PharMetric News";
  display: block;
  margin-bottom: 0.9375rem;
  color: var(--main-primary);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: none;
}

.main-board-slot .page-header h4 {
  display: block;
  color: var(--main-text);
  font-size: clamp(2.25rem, 4vw, 2.875rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: none;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.main-board-slot .main-board-more {
  min-width: 10rem;
  margin: -1.25rem auto 0;
  padding: 0.9375rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
  width: fit-content;
  gap: 1rem;
  border: 0;
  border-radius: var(--main-radius-sm);
  background: var(--main-primary);
  color: var(--main-white) !important;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  float: none !important;
}

.main-board-slot .main-board-more:hover {
  background: var(--main-primary-strong);
}

.main-board-slot .main-board-more::before {
  content: "View More";
}

.main-board-slot .main-board-more::after {
  content: "arrow_forward";
  font-family: "Material Symbols Outlined";
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.main-board-slot .main-board-more i {
  display: none;
}

.main-board-slot .table_blog.type_thumb {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  margin: 0 auto !important;
  padding: 0;
  border: 0 !important;
}

.main-board-slot .table_blog.type_thumb dd {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: var(--main-radius-md);
  background: #fff;
}

.main-board-slot .table_blog.type_thumb dd + dd {
  border-top: 0;
}

.main-board-slot .table_blog.type_thumb dd .left {
  width: 100%;
  margin: 0;
}

.main-board-slot .table_blog.type_thumb dd .left a {
  display: block;
  overflow: hidden;
  background: #e3e7ea;
  border-radius: var(--main-radius-md);
}

.main-board-slot .table_blog.type_thumb dd .left span.thumb {
  display: block;
  width: 100%;
  height: 17.5rem;
  aspect-ratio: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: var(--main-radius-md);
  transition: transform 0.3s ease;
}

.main-board-slot .table_blog.type_thumb dd .left span.thumb + img.thumb {
  display: none;
}

.main-board-slot .table_blog.type_thumb dd .left img.thumb {
  display: block;
  width: 100%;
  height: 17.5rem;
  object-fit: cover;
  object-position: center;
  border-radius: var(--main-radius-md);
  transition: transform 0.3s ease;
}

.main-board-slot .table_blog.type_thumb dd:hover .left span.thumb,
.main-board-slot .table_blog.type_thumb dd:hover .left img.thumb {
  transform: scale(1.04);
}

.main-board-slot .table_blog.type_thumb dd .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  width: 100%;
}

.main-board-slot .table_blog.type_thumb dd .right .title a {
  display: block;
  color: var(--main-text);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: left;
  -webkit-line-clamp: 2;
}

.main-board-slot .table_blog.type_thumb dd .right .title,
.main-board-slot .table_blog.type_thumb dd .right .subject {
  display: block;
  width: 100%;
}

.main-board-slot .table_blog.type_thumb dd .right .text {
  display: none;
}

.main-board-slot .table_blog.type_thumb dd .right .info {
  display: none;
}

@media (max-width: 900px) {
  .main-board-slot .table_blog.type_thumb {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .main-board-slot .page-header {
    margin: 0;
  }

  .main-board-slot .table_blog.type_thumb dd .left span.thumb,
  .main-board-slot .table_blog.type_thumb dd .left img.thumb {
    height: auto;
    aspect-ratio: 423 / 280;
  }
}

.section.board {
  padding: 7.5rem;
  background-color: #F3F4F6;
}

.media {
  border-radius: var(--main-radius-md);
  overflow: hidden;
}

.media-box {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.center-head {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 42rem);
  gap: clamp(2rem, 4vw, 6.25rem);
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 3.75rem;
}

.about-head {
  display: grid;
  /* gap: 2rem; */
}

.about-media {
  aspect-ratio: 27 / 20;
}

.about-media .media-box {
  background-image: var(--about-image);
}

.product-head {
  margin-bottom: 4.38rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.875rem;
}

.product-card {
  display: grid;
  background: var(--main-white);
  border-radius: var(--main-radius-md);
  overflow: hidden;
  box-shadow: var(--main-shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.product-card:nth-child(1) .product-media .media-box {
  background-image: var(--product-image-1);
}

.product-card:nth-child(2) .product-media .media-box {
  background-image: var(--product-image-2);
}

.product-card:nth-child(3) .product-media .media-box {
  background-image: var(--product-image-3);
}

.product-card:nth-child(4) .product-media .media-box {
  background-image: var(--product-image-4);
}

.product-name {
  transition: all 0.25s;
  color: var(--main-text);
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.01em;
}

.product-card:hover .product-name {
  background: var(--main-primary);
  color: #fff;
}

.section.validation {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 8vw, 8.75rem) 0;
  background: #f3f4f6;
}

.validation-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.8;
  pointer-events: none;
}

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

.validation .wrap {
  position: relative;
  z-index: 1;
}

.validation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(35rem, 43.75rem);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.25rem);
}

.validation-copy {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.75rem);
}

.validation-head {
  display: grid;
  gap: 0.94rem;
}

.validation-head .eyebrow {
  margin-bottom: 0;
}

.validation-title {
  margin: 0;
  color: var(--main-text);
  font-size: clamp(3rem, 5.6vw, 4.6875rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.validation-body {
  display: grid;
  gap: 0.75rem;
}

.validation-body h3 {
  margin: 0;
  color: var(--main-text);
  font-size: clamp(1.25rem, 1.35vw, 1.375rem);
  font-weight: 600;
  line-height: 1.5;
}

.validation-desc {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  color: var(--main-muted);
  font-size: var(--main-text-lg);
  line-height: 1.6;
  letter-spacing: -0.016em;
  list-style: none;
}

.validation-desc li {
  position: relative;
  padding-left: 1.5rem;
}

.validation-desc li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.82em;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.validation-benefits {
  display: grid;
  justify-items: center;
  gap: 1.875rem;
  padding-bottom: 1.875rem;
  width: 100%;
}

.validation-benefits-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.625rem 1.875rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #f3f4f6;
  box-shadow: 0.625rem 0.875rem 1.5rem rgba(0, 0, 0, 0.03);
  color: var(--main-primary);
  font-size: clamp(1.0625rem, 1.2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  width: fit-content;
}

.validation-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.validation-card {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 2.1875rem;
  overflow: hidden;
  outline-offset: -1px;
  border-radius: 0.75rem;
  box-shadow: 0.5rem 0.75rem 2.1875rem -0.125rem rgba(0, 0, 0, 0.12);
  gap: 2.25rem;
}

.validation-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 13.75rem;
  height: 14.875rem;
  border-top-right-radius: 7.5rem;
  background: #fff;
}

.validation-card-primary {
  background: var(--main-primary);
}

.validation-card-sky {
  background: var(--main-primary-strong);
}

.validation-card-gray {
  background: var(--main-muted);
}

.validation-icon {
  z-index: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  color: currentColor;
  font-size: 3.5rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 48;
}

.validation-card-primary .validation-icon {
  color: var(--main-primary);
}

.validation-card-sky .validation-icon {
  color: var(--main-primary-strong);
}

.validation-card-gray .validation-icon {
  color: var(--main-muted);
}

.validation-card h3 {
  z-index: 1;
  position: relative;
  margin: 0;
  color: var(--main-text);
  font-size: clamp(1.25rem, 1.35vw, 1.375rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.75rem;
}

.board-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 0;
}

.board-card + .board-card {
  border-left: 1px solid var(--main-line);
  padding-left: 3.75rem;
}

.board-card:hover .board-icon {
  background: var(--main-primary-strong);
  color: #fff;
}

.board-copy {
  display: grid;
  gap: 2.5rem;
  min-width: 0;
}

.board-head {
  display: grid;
  gap: 1.25rem;
}

.board-title {
  color: var(--main-text);
  font-size: 1.75rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.board-desc {
  color: var(--main-muted);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.034em;
}

.board-icon {
  flex: 0 0 6.25rem;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #026ea8;
  font-size: 3.5rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 48;
  transition: all 0.3s;
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .validation-grid {
    grid-template-columns: 1fr;
  }

  .validation-copy {
    max-width: 44rem;
  }

  .board-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .board-card + .board-card {
    border-left: 0;
    border-top: 1px solid var(--main-line);
    padding-left: 0;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    order: 1;
  }

  .about-media {
    order: 2;
  }

  .validation-card-list {
    grid-template-columns: 1fr;
  }

  .validation-card {
    min-height: 13rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .title br,
  .desc br,
  .board-desc br {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section.validation {
    padding: 4.5rem 0;
  }

  .validation-grid {
    gap: 3rem;
  }

  .validation-title {
    font-size: clamp(2.375rem, 12vw, 3.25rem);
    line-height: 1.15;
  }

  .validation-body .desc br {
    display: none;
  }

  .validation-benefits {
    align-items: stretch;
    justify-items: stretch;
  }

  .validation-benefits-label {
    width: 100%;
    padding-inline: 1.25rem;
  }

  .validation-card {
    min-height: 11.5rem;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .validation-card::before {
    width: 11rem;
    height: 11.75rem;
    border-bottom-right-radius: 6rem;
  }

  .board-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .board-icon {
    width: 5rem;
    height: 5rem;
    flex-basis: 5rem;
    font-size: 2.875rem;
  }
}

/* sub company */
.company-page,
.product-page,
.notice-page {
  width: 100%;
  font-family: var(--page-font-family);
}

.company-page {
  --sub-top-image: var(--sub-top-1);
}

.product-page {
  --sub-top-image: var(--sub-top-2);
}

.inquiry-page {
  --sub-top-image: var(--sub-top-3);
}

.notice-page {
  --sub-top-image: var(--sub-top-4);
}

.sub-top {
  width: 100%;
  min-height: 32rem;
  position: relative;
  overflow: hidden;
  background: #0d4e7c;
}

.company-page .sub-bg,
.product-page .sub-bg,
.inquiry-page .sub-bg,
.notice-page .sub-bg {
  position: absolute;
  inset: 0;
  background: var(--sub-top-image) center / cover no-repeat;
  /* height: 28.125rem; */
}

.sub-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.sub-top-title {
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-align: center;
  padding-top: var(--navbar-height);
}

.sub-top-title p {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35;
}

.sub-top-title h1 {
  color: #fff;
  font-size: clamp(3rem, 5vw, 3.625rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0.01em;
  letter-spacing: -0.01em;
}

.sub-top-nav {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--main-primary);
  backdrop-filter: blur(10px);
}

.sub-top-nav ul {
  width: min(100% - 2rem, 84.375rem);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.sub-top-nav li {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}

.sub-top-nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.125rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}

.sub-top-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  padding: 1.375rem 1rem;
  color: #fff !important;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.0125em;
}

.sub-top-nav li.is-active a {
  background: #fff;
  color: #0d4e7c !important;
  font-weight: 600;
}

.subpage-content h2 {
  color: #2f2f2f;
  font-size: clamp(2.125rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.company-page .subpage-content {
  background: #fff;
}

.company-page .company-intro {
  padding-top: clamp(5rem, 8vw, 6.875rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}

.company-page .intro-head {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(4rem, 6vw, 5.625rem);
}

.company-page .intro-title {
  color: #2f2f2f;
  font-size: clamp(2.125rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}

.company-page .greet-head {
  display: grid;
  gap: 1rem;
  text-align: center;
  justify-items: center;
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.company-page .greet-en {
  color: #0d4e7c;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
}

.company-page .greet-title {
  color: #2f2f2f;
  font-size: clamp(1.625rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.022em;
}

.company-page .greet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 33.125rem;
  align-items: center;
  gap: clamp(2rem, 7vw, 7.5rem);
}

.company-page .greet-copy {
  min-width: 0;
}

.company-page .greet-body {
  display: grid;
  gap: 1.75rem;
}

.company-page .greet-body p {
  color: #6b7280;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.016em;
}

.company-page .greet-media {
  display: flex;
  justify-content: center;
}

.company-page .greet-photo {
  width: min(100%, 33.125rem);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(17, 22, 39, 0.06), rgba(17, 22, 39, 0.06)),
    var(--sub-about-image) center / cover no-repeat;
}

@media (max-width: 767.98px) {
  .company-page .sub-top,
  .product-page .sub-top,
  .notice-page .sub-top {
    min-height: 28rem;
  }

  .company-page .sub-top-title,
  .product-page .sub-top-title,
  .notice-page .sub-top-title {
    top: 42%;
    width: calc(100% - 2rem);
  }

  .company-page .sub-top-nav ul,
  .product-page .sub-top-nav ul,
  .notice-page .sub-top-nav ul {
    width: 100%;
  }

  .company-page .sub-top-nav a,
  .product-page .sub-top-nav a,
  .notice-page .sub-top-nav a {
    min-height: 3.5rem;
    padding: 1rem 0.75rem;
    font-size: 1rem;
  }

  .company-page .greet-grid {
    grid-template-columns: 1fr;
  }

  .company-page .greet-media {
    order: 2;
  }

  .company-page .greet-body p br {
    display: none;
  }
}

.product-page .prd-section {
  padding-top: clamp(5rem, 8vw, 6.875rem);
  padding-bottom: clamp(6.5rem, 11vw, 9.375rem);
}

.product-page .prd-head {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(4rem, 6vw, 5.625rem);
}

.product-page .prd-head h2 {
  /* color: #2f2f2f; */
  /* font-size: clamp(2.125rem, 3vw, 2.75rem); */
  /* font-weight: 600; */
  /* line-height: 1.1; */
  /* letter-spacing: -0.018em; */
}

.product-page .prd-body {
  width: 100%;
}

.num_col {
  width: 150px;
}

.notice-page .iq-section {
  padding-top: clamp(5rem, 8vw, 6.875rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}

.notice-page .iq-head {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  margin-bottom: 5.625rem;
  text-align: center;
}

.notice-page .iq-head h2 {
  /* color: #2f2f2f; */
  /* font-size: clamp(2.125rem, 3vw, 2.75rem); */
  /* font-weight: 600; */
  /* line-height: 1.1; */
}

.notice-page .iq-box {
  width: 100%;
}

.notice-page #bbsArea.notice-wrap,
.notice-page #bbsArea.list-wrap,
.notice-page #bbsArea.bbs-area {
  width: 100%;
}

.notice-page #bbsArea :is(.board_wrapper, .search_wrap, .pagination_wrap) {
  width: 100%;
}

.notice-page #bbsArea .board_wrapper {
  background: transparent;
  min-height: 0;
  padding: 0;
}

.notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) {
  width: 100%;
  border-top: 2px solid #2f2f2f;
}

.notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) :is(th, td) {
  padding: 1rem 0.875rem;
  border-color: #e5e7eb;
  vertical-align: middle;
}

.notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) thead th {
  color: #2f2f2f;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  min-height: 4.375rem;
  height: 4.375rem;
}

.notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td {
  color: #2f2f2f;
  font-size: 1.125rem;
  text-align: center;
  min-height: 4.875rem;
  height: 4.875rem;
}

.notice-page
  #bbsArea
  :is(.table_notice, .table_list, .table_default):not(.board_write_table)
  tbody
  :is(td.writer, td.regdate, td.hits, th.writer, th.regdate, th.hits) {
  color: #999;
  text-align: center;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.03em;
}

.notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td.subject,
.notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td.title {
  text-align: left;
}

.notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td.subject a,
.notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td.title a {
  color: #2f2f2f;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.notice-page
  #bbsArea
  :is(.table_notice, .table_list, .table_default):not(.board_write_table)
  tbody
  tr.notice
  :is(th.num, td.num, td.cate, th.cate, td:first-child, th:first-child) {
  text-align: center;
}

.notice-page
  #bbsArea
  :is(.table_notice, .table_list, .table_default):not(.board_write_table)
  tbody
  tr.notice
  :is(th.num, td.num, td.cate, th.cate, td:first-child, th:first-child)
  .badge {
  padding: 0.5rem 0.7rem;
  background: #026ea8;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 0.125rem;
  min-width: 3.125rem;
}

.notice-page
  #bbsArea
  :is(.table_notice, .table_list, .table_default):not(.board_write_table)
  tbody
  tr.notice
  :is(td.subject, td.title)
  .badge {
  display: none !important;
}

.notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody tr:hover td {
  background: #fcfcfd;
}

.notice-page #bbsArea .search_wrap {
  margin-top: 2.5rem;
}

.notice-page #bbsArea .search_wrap > .btn,
.notice-page #bbsArea .search_wrap > button.btn,
.notice-page #bbsArea .search_wrap > input[type="submit"].btn,
.notice-page #bbsArea .search_wrap #search_btn {
  background-color: #8d939e;
  border-color: #8d939e;
}

.notice-page #bbsArea .pagination_wrap {
  margin-top: 3.75rem;
}

.notice-page #bbsArea .pagination_wrap ul {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.notice-page #bbsArea .pagination_wrap li {
  margin-left: 0;
}

.notice-page #bbsArea .pagination_wrap li + li {
  margin-left: 0;
}

.notice-page #bbsArea .pagination_wrap li:not(.box) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.notice-page #bbsArea .pagination_wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  color: #2f2f2f;
  font-family: Pretendard;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.notice-page #bbsArea .pagination_wrap li.active a {
  width: 2rem;
  height: 2rem;
  background: #0d4e7c;
  color: #fff;
  font-weight: 600;
}

.notice-page #bbsArea .pagination_wrap li:not(.active):not(.box) a:hover {
  background: #f3f4f6;
}

.notice-page #bbsArea .pagination_wrap .box a {
  width: 2.125rem;
  height: 2rem;
  border: 0;
  border-radius: 9999px;
  color: #aaa;
  background: transparent;
}

.notice-page #bbsArea .pagination_wrap .box a:hover {
  background: #f3f4f6;
  color: #666;
}

.notice-page #bbsArea .pagination_wrap .box i {
  font-size: 0.9375rem;
}

.notice-page #bbsArea[id$="_view"] .board_wrapper,
.notice-page #bbsArea .board_wrapper[id$="_view"] {
}

@media (max-width: 767.98px) {
  .notice-page .iq-section {
    padding-top: 5rem;
    padding-bottom: 5.625rem;
  }

  .notice-page .iq-head {
    margin-bottom: 2.5rem;
  }

  .notice-page .iq-box {
    width: 100%;
  }

  .notice-page #bbsArea .pagination_wrap {
    margin-top: 2.5rem;
  }

  .notice-page #bbsArea .pagination_wrap ul {
    gap: 0.875rem;
    flex-wrap: wrap;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) {
    display: table;
    table-layout: fixed;
    width: 100%;
    overflow-x: visible;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) colgroup {
    display: table-column-group !important;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) col {
    width: auto !important;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) col.num,
  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) col.cate {
    width: clamp(2.5rem, 10vw, 3.5rem) !important;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) col.writer,
  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) col.regdate,
  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) col.hits {
    width: clamp(3.5rem, 14vw, 5rem) !important;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) :is(.num, .regdate, .hits, .writer, .cate) {
    display: table-cell !important;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) :is(thead, tbody, tr) {
    width: 100%;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) :is(th, td) {
    box-sizing: border-box;
    white-space: normal;
    word-break: keep-all;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) thead th {
    height: 3.75rem;
    min-height: 0;
    padding: 0.875rem 0.375rem;
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td {
    height: auto;
    min-height: 0;
    padding: 1rem 0.375rem;
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td.subject,
  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td.title {
    display: table-cell !important;
    width: auto !important;
    text-align: left;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td.subject a,
  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) tbody td.title a {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) :is(th.num, td.num, th.cate, td.cate) {
    width: clamp(3.75rem, 14vw, 4.75rem);
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) .notice-badge-cell,
  .notice-page
    #bbsArea
    :is(.table_notice, .table_list, .table_default):not(.board_write_table)
    tbody
    tr.notice
    :is(th.num, td.num, td.cate, th.cate, td:first-child, th:first-child) {
    width: clamp(3.75rem, 14vw, 4.75rem);
    padding-inline: 0.25rem;
    text-align: center;
  }

  .notice-page
    #bbsArea
    :is(.table_notice, .table_list, .table_default):not(.board_write_table)
    tbody
    tr.notice
    :is(th.num, td.num, td.cate, th.cate, td:first-child, th:first-child)
    .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    padding: 0.375rem 0.5rem;
    white-space: nowrap;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) :is(th.writer, td.writer, th.regdate, td.regdate, th.hits, td.hits) {
    width: clamp(3.5rem, 14vw, 5rem);
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) :is(th.subject, td.subject, th.title, td.title) {
    width: auto;
  }
}

.inquiry-page {
  width: 100%;
  font-family: var(--page-font-family);
}

.inquiry-page .sub-top,
.inquiry-page .sub-bg,
.inquiry-page .sub-bg::after,
.inquiry-page .sub-top-nav,
.inquiry-page .sub-top-nav ul,
.inquiry-page .sub-top-nav li,
.inquiry-page .sub-top-nav li + li::before,
.inquiry-page .sub-top-nav a,
.inquiry-page .sub-top-nav li.is-active a {
  /* all: unset; */
}

.inquiry-page .sub-top {
  min-height: 28.125rem;
}

.inquiry-page .sub-bg {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--sub-top-image) center / cover no-repeat;
}

.inquiry-page .sub-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.inquiry-page .sub-top-title {
  z-index: 1;
  position: absolute;
  left: 50%;
  /* top: 46%; */
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-align: center;
}

.inquiry-page .sub-top-title p {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35;
}

.inquiry-page .sub-top-title h1 {
  /* display: block; */
  /* color: #fff; */
  /* font-size: clamp(3rem, 5vw, 4.375rem); */
  /* font-weight: 700; */
  /* line-height: 1.1; */
  /* letter-spacing: 0.01em; */
}

.inquiry-page .sub-top-title h1[data-aos="fade-up"] {
  opacity: 0;
  transition-property: opacity, transform;
}

.inquiry-page .sub-top-title h1[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

.inquiry-page .sub-top-nav {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 78, 124, 0.92);
  backdrop-filter: blur(10px);
}

.inquiry-page .sub-top-nav ul {
  width: min(100% - 2rem, 84.375rem);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.inquiry-page .sub-top-nav li {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  display: flex;
}

.inquiry-page .sub-top-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  width: 100%;
  padding: 1.375rem 1rem;
  color: #fff !important;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}

.inquiry-page .sub-top-nav li.is-active a {
  background: #fff;
  color: #0d4e7c !important;
  font-weight: 600;
}

.inquiry-page .subpage-content {
  background: #f3f4f6;
}

.inquiry-page .iq-section {
  padding-top: clamp(5rem, 8vw, 6.875rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}

.inquiry-page .iq-head {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  margin-bottom: 3.75rem;
  text-align: center;
}

.inquiry-page .iq-head h2 {
  color: #2f2f2f;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
}

.inquiry-page .iq-box {
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 7vw, 7.5rem);
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0.5rem 1rem 2.5rem rgba(54, 62, 80, 0.1);
}

.inquiry-page #bbsArea.product-inquiry-wrap,
.inquiry-page #bbsArea.bbs-area {
  width: 100%;
}

.inquiry-page #bbsArea :is(.board_wrapper, .search_wrap, .pagination_wrap) {
  width: 100%;
}

.inquiry-page #bbsArea .board_wrapper {
  background: transparent;
  min-height: 0;
  padding: 0;
}

.inquiry-page #bbsArea .table.board_write_table {
  display: block;
  width: 100%;
}

.inquiry-page #bbsArea .table.board_write_table tbody {
  display: grid;
  gap: 2rem;
}

.inquiry-page #bbsArea .table.board_write_table tbody tr {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding: 0;
  border: 0;
}

.inquiry-page #bbsArea .table.board_write_table tbody tr:has(textarea),
.inquiry-page #bbsArea .table.board_write_table tbody tr:has(.checkbox),
.inquiry-page #bbsArea .table.board_write_table tbody tr:has(.radio),
.inquiry-page #bbsArea .table.board_write_table tbody tr:has(.captchaBox),
.inquiry-page #bbsArea .table.board_write_table tbody tr#item_contents,
.inquiry-page #bbsArea .table.board_write_table tbody tr#item_agree {
  grid-template-columns: 1fr;
}

.inquiry-page #bbsArea .table.board_write_table tbody tr :is(th, td) {
  padding: 0;
}

.inquiry-page #bbsArea .table.board_write_table tbody tr th {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin-bottom: 0.625rem;
  color: #2f2f2f;
  font-size: 1rem;
  font-weight: 600;
}

.inquiry-page #bbsArea .table.board_write_table :where(th > span:first-child, span.required_text) {
  font-size: 1rem;
  font-weight: 600;
}

.inquiry-page
  #bbsArea
  .table.board_write_table
  :is(input[type="text"], input[type="email"], input[type="tel"], select, textarea) {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  background: #fff;
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: none;
}

.inquiry-page
  #bbsArea
  .table.board_write_table
  :is(input[type="text"], input[type="email"], input[type="tel"], select) {
  height: 3.25rem;
  padding: 0 0.9375rem;
}

.inquiry-page #bbsArea .table.board_write_table textarea {
  min-height: 10rem;
  padding: 0.875rem 0.9375rem;
  resize: vertical;
}

.inquiry-page #bbsArea .table.board_write_table :is(input, textarea)::placeholder {
  color: #aaa;
}

.inquiry-page #bbsArea .table.board_write_table .radio,
.inquiry-page #bbsArea .table.board_write_table .checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.inquiry-page #bbsArea .table.board_write_table :is(.radio label, .checkbox label) {
  display: inline-flex;
  align-items: center;
  gap: 0.6875rem;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.inquiry-page #bbsArea .table.board_write_table :is(.radio input, .checkbox input) {
  position: static;
  bottom: auto;
  left: auto;
  margin: 0 0.25rem 0 0;
  accent-color: #026ea8;
}

.inquiry-page #bbsArea .table.board_write_table .captchaBox,
.inquiry-page #bbsArea .table.board_write_table #CaptchaDiv {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  flex-wrap: wrap;
}

.inquiry-page #bbsArea .table.board_write_table #CaptchaDiv img,
.inquiry-page #bbsArea .table.board_write_table .captchaBox img {
  width: 8.6875rem;
  height: 3.25rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  object-fit: cover;
}

.inquiry-page #bbsArea .table.board_write_table #item_agree label a {
  color: #0d4e7c;
  text-decoration: underline;
}

.inquiry-page #bbsArea .search_wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
  padding-top: 0;
}

.inquiry-page #bbsArea #write_btn {
  width: 12.5rem;
  height: 3.6875rem;
  border: 0;
  border-radius: 0.25rem;
  background: #0d4e7c;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.inquiry-page #bbsArea #list_btn,
.inquiry-page #bbsArea #search_btn,
.inquiry-page #bbsArea #search_kind,
.inquiry-page #bbsArea #search_query,
.inquiry-page #bbsArea .write_btn_wrap {
  display: none !important;
}

/* inquiry form - actual rendered structure */
.subpage[data-page-id="contact01"] .subpage-content {
  background: #f3f4f6;
}

.subpage[data-page-id="contact01"] .se01 {
  padding-top: clamp(5rem, 8vw, 6.875rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}

.subpage[data-page-id="contact01"] .se01 > .container {
  width: min(100% - 2rem, 84.375rem);
  margin: 0 auto;
}

.subpage[data-page-id="contact01"] .title-h3 {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  margin-bottom: 3.75rem;
  padding: 0;
}

.subpage[data-page-id="contact01"] .title-h3::before {
  content: "제품 문의";
  color: #0d4e7c;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
}

.subpage[data-page-id="contact01"] .title-h3 h3 {
  color: #2f2f2f;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.subpage[data-page-id="contact01"] .form-con {
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 7vw, 7.5rem);
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0.5rem 1rem 2.5rem rgba(54, 62, 80, 0.1);
}

.subpage[data-page-id="contact01"] #bbsArea.bbs-area {
  width: 100%;
}

.subpage[data-page-id="contact01"] #bbsArea .board_wrapper {
  width: 100%;
  padding: 0;
  background: transparent;
  min-height: 0;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table {
  display: block;
  width: 100%;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr {
  display: block;
  padding: 0;
  border: 0;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr:nth-child(n + 5),
.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr#item_2,
.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr#item_3,
.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr#item_4,
.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr#item_captcha,
.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr#item_agree {
  grid-column: 1 / -1;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr :is(th, td) {
  display: block;
  width: 100%;
  padding: 0;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr th {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin-bottom: 0.625rem;
  color: #2f2f2f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table :where(th > span:first-child, span.required_text) {
  color: #f43900;
  font-size: 1rem;
  font-weight: 600;
}

.subpage[data-page-id="contact01"]
  #bbsArea
  .table.board_write_table
  :is(input[type="text"], input[type="email"], input[type="tel"], select, textarea) {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  background: #fff;
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: none;
}

.subpage[data-page-id="contact01"]
  #bbsArea
  .table.board_write_table
  :is(input[type="text"], input[type="email"], input[type="tel"], select) {
  height: 3.25rem;
  padding: 0 0.9375rem;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table textarea {
  min-height: 10rem !important;
  padding: 0.875rem 0.9375rem;
  resize: vertical;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table :is(input, textarea)::placeholder {
  color: #aaa;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #item_email .text-muted {
  margin-top: 0.5rem !important;
  color: #8a8f98;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table :is(.radio-inline, .checkbox-inline) {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  margin: 0.25rem 1.25rem 0.25rem 0 !important;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table :is(.custom_radio, .custom_checkbox) {
  margin: 0;
  accent-color: #026ea8;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #frm_data_4_wrap {
  position: relative;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table .frm_textarea_cnt {
  position: absolute;
  right: 0.9375rem;
  bottom: 0.875rem;
  color: #999;
  font-size: 0.875rem;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #item_captcha td {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  flex-wrap: wrap;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #captcha {
  width: 8.6875rem;
  height: 3.25rem;
  border: 1px solid #ddd !important;
  border-radius: 0.25rem;
  object-fit: cover;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #wr_captcha {
  flex: 1 1 0;
  min-width: 12rem;
  margin-top: 0 !important;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #item_agree .checkbox {
  margin: 0;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #item_agree label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
}

.subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #item_agree label a {
  color: #0d4e7c;
  text-decoration: underline;
}

.subpage[data-page-id="contact01"] #bbsArea .text-center {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
}

.subpage[data-page-id="contact01"] #bbsArea #list_btn {
  display: none !important;
}

.subpage[data-page-id="contact01"] #bbsArea #write_btn {
  width: 12.5rem;
  height: 3.6875rem;
  border: 0;
  border-radius: 0.25rem;
  background: #0d4e7c;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .subpage[data-page-id="contact01"] .se01 {
    padding-top: 5rem;
    padding-bottom: 5.625rem;
  }

  .subpage[data-page-id="contact01"] .title-h3 {
    margin-bottom: 2.5rem;
  }

  .subpage[data-page-id="contact01"] .form-con {
    padding: 1.5rem;
  }

  .subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .subpage[data-page-id="contact01"] #bbsArea .table.board_write_table tbody tr {
    grid-column: 1 / -1;
  }

  .subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #item_captcha td {
    flex-direction: column;
    align-items: stretch;
  }

  .subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #captcha,
  .subpage[data-page-id="contact01"] #bbsArea .table.board_write_table #wr_captcha {
    width: 100%;
  }
}

/* inquiry page - actual rendered structure */
.subpage[data-page-id="inqury01"] .subpage-content {
  background: #f3f4f6;
}

.subpage[data-page-id="inqury01"] .iq-section {
  padding-top: clamp(5rem, 8vw, 6.875rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}

.subpage[data-page-id="inqury01"] .iq-head {
  display: grid;
  justify-items: center;
  gap: 0;
  margin-bottom: 3.75rem;
  text-align: center;
}

.subpage[data-page-id="inqury01"] .iq-head .eyebrow {
  color: #0d4e7c;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.subpage[data-page-id="inqury01"] .iq-head .eyebrow::after {
  content: none;
}

.subpage[data-page-id="inqury01"] .iq-head h2 {
  color: #2f2f2f;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.018em;
  text-align: center;
}

.subpage[data-page-id="inqury01"] .iq-box {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 8vw, 7.5rem);
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0.5rem 1rem 2.5rem rgba(54, 62, 80, 0.1);
}

.subpage[data-page-id="inqury01"] #bbsArea.product-inquiry-wrap,
.subpage[data-page-id="inqury01"] #bbsArea.bbs-area {
  width: 100%;
}

.subpage[data-page-id="inqury01"] #bbsArea .board_wrapper {
  width: 100%;
  padding: 0;
  background: transparent;
  min-height: 0;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table {
  display: block;
  width: 100%;
  border: 0;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr {
  display: block;
  padding: 0;
  border: 0;
  min-width: 0;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr#item_2,
.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr#item_3,
.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr#item_4 {
  grid-column: 1 / -1;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr :is(th, td) {
  display: block;
  width: 100%;
  padding: 0;
  min-width: 0;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr th {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  margin-bottom: 0.625rem;
  color: #2f2f2f;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr th > .required_text {
  order: 2;
  color: #f43900;
}

.subpage[data-page-id="inqury01"]
  #bbsArea
  .table.board_write_table
  tbody
  tr
  th
  > :is(span:not(.required_text), .item_subject) {
  order: 1;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :where(th > span:first-child, span.required_text) {
  font-size: 1rem;
  font-weight: 600;
}

.subpage[data-page-id="inqury01"]
  #bbsArea
  .table.board_write_table
  :is(input[type="text"], input[type="email"], input[type="tel"], select, textarea) {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  background: #fff;
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: none;
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.subpage[data-page-id="inqury01"]
  #bbsArea
  .table.board_write_table
  :is(input[type="text"], input[type="email"], input[type="tel"], select) {
  height: 3.25rem;
  padding: 0 0.9375rem;
}

.subpage[data-page-id="inqury01"]
  #bbsArea
  .table.board_write_table
  :is(input[type="text"], input[type="email"], input[type="tel"], select, textarea):focus {
  border-color: #0d4e7c;
  box-shadow: 0 0 0 0.1875rem rgba(13, 78, 124, 0.08);
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table textarea {
  min-height: 10rem !important;
  padding: 0.875rem 0.9375rem;
  resize: vertical;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(input, textarea)::placeholder {
  color: #aaa;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_email .text-muted {
  display: none;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(.radio-inline, .checkbox-inline) {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 0px !important;
  margin-left: 0px !important;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_2 td,
.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_3 td {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  min-height: 3.25rem;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(.custom_radio, .custom_checkbox) {
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  display: none;
  position: absolute;
  margin: 0;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_radio + span,
.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_checkbox + span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  min-height: 1.5rem;
  color: #6b7280;
  user-select: none;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_radio + span::before,
.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_checkbox + span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #aaa;
  box-sizing: border-box;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_radio + span::before {
  border-radius: 50%;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_checkbox + span::before {
  border-radius: 0.125rem;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_radio:checked + span::before {
  content: "";
  border-color: #026ea8;
  background: radial-gradient(circle at center, #fff 0 0.1875rem, #026ea8 0.21875rem 100%);
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_checkbox:checked + span::before {
  content: "";
  border-color: #026ea8;
  background: #026ea8;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_checkbox:checked + span::after {
  content: "✓";
  display: block;
  position: absolute;
  left: -24px;
  top: 50%;
  width: 1rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: translateY(-52%);
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #frm_data_4_wrap {
  position: relative;
  width: 100%;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .frm_textarea_cnt {
  display: none;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_captcha td {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  flex-wrap: wrap;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #captcha {
  width: 8.6875rem;
  height: 3.25rem;
  border: 1px solid #ddd !important;
  border-radius: 0.25rem;
  object-fit: cover;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #wr_captcha {
  flex: 1 1 12rem;
  min-width: 12rem;
  max-width: 100%;
  margin-top: 0 !important;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree .checkbox {
  margin: 0;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree td {
  min-height: 3.25rem;
  display: flex;
  align-items: center;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree label {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
  padding-left: 0px !important;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree .custom_checkbox + span {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 1.5rem;
  padding-left: 1.8125rem;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree .custom_checkbox + span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 1.5rem;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 0.125rem;
  box-sizing: border-box;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree .custom_checkbox + span::after {
  content: none;
}

.subpage[data-page-id="inqury01"]
  #bbsArea
  .table.board_write_table
  #item_agree
  .custom_checkbox:checked
  + span::before {
  background: #026ea8;
  border-color: #026ea8;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree .custom_checkbox:checked + span::after {
  content: "check_circle";
  display: block;
  position: absolute;
  left: 0.1875rem;
  top: 50%;
  z-index: 1;
  width: 1.125rem;
  height: 1.125rem;
  overflow: hidden;
  color: #fff;
  font-family: var(--gms);
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  line-height: 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transform: translateY(-50%);
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree label a {
  color: #0d4e7c;
  text-decoration: underline;
  font-weight: 400;
}

#site form[enctype="multipart/form-data"] tr#item_agree .custom_checkbox + span {
  position: relative;
  padding-left: 1.8125rem;
}

#site form[enctype="multipart/form-data"] tr#item_agree .custom_checkbox + span::before {
  content: var(--form-check-icon) !important;
  margin: 0 !important;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #bbb !important;
  font-family: var(--gms) !important;
  font-style: normal;
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 24 !important;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
}

#site form[enctype="multipart/form-data"] tr#item_agree .custom_checkbox:checked + span::before {
  color: #026ea8 !important;
  font-weight: 700 !important;
  font-variation-settings:
    "FILL" 1,
    "wght" 700,
    "GRAD" 0,
    "opsz" 24 !important;
}

#site form[enctype="multipart/form-data"] tr#item_agree .custom_checkbox + span::after {
  content: none !important;
}

#site form[enctype="multipart/form-data"] .table.board_write_table :is(tr#item_2, tr#item_3, tr#item_4) td {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 0;
}

#site form[enctype="multipart/form-data"] .table.board_write_table :is(tr#item_2, tr#item_3, tr#item_4) td > label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  line-height: 1.5;
}

#site
  form[enctype="multipart/form-data"]
  .table.board_write_table
  :is(tr#item_2, tr#item_3, tr#item_4)
  td
  > label
  > input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: 0;
  vertical-align: middle;
}

#site
  form[enctype="multipart/form-data"]
  .table.board_write_table
  :is(tr#item_2, tr#item_3, tr#item_4)
  :is(.checkbox-inline, .checkbox, .radio-inline, .radio) {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

#site
  form[enctype="multipart/form-data"]
  .table.board_write_table
  :is(tr#item_2, tr#item_3, tr#item_4)
  :is(.checkbox-inline label, .checkbox label, .radio-inline label, .radio label) {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0;
  margin: 0;
}

#site form[enctype="multipart/form-data"] .table.board_write_table :is(tr#item_2, tr#item_3, tr#item_4) .text-muted {
  margin: 0 0 0 1.75rem;
}

.checkbox-inline,
.radio-inline {
  padding-left: 1.5rem;
}

.subpage[data-page-id="inqury01"] #bbsArea .text-center,
.subpage[data-page-id="inqury01"] #bbsArea .search_wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
  padding-top: 0;
}

.subpage[data-page-id="inqury01"] #bbsArea #list_btn,
.subpage[data-page-id="inqury01"] #bbsArea #search_btn,
.subpage[data-page-id="inqury01"] #bbsArea #search_kind,
.subpage[data-page-id="inqury01"] #bbsArea #search_query,
.subpage[data-page-id="inqury01"] #bbsArea .write_btn_wrap {
  display: none !important;
}

.subpage[data-page-id="inqury01"] #bbsArea #write_btn {
  width: 12.5rem;
  height: 3.6875rem;
  border: 0;
  border-radius: 0.25rem;
  background: #0d4e7c;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

#notice01_write .checkbox input[type="checkbox"],
#notice01_write .checkbox-inline input[type="checkbox"],
#notice01_write .radio input[type="radio"],
#notice01_write .radio-inline input[type="radio"] {
  bottom: 6px;
}

@media (max-width: 767.98px) {
  .subpage[data-page-id="inqury01"] .iq-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .subpage[data-page-id="inqury01"] .iq-head {
    margin-bottom: 2rem;
  }

  .subpage[data-page-id="inqury01"] .iq-box {
    padding: 1.5rem 1.25rem;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr {
    grid-column: 1 / -1;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_captcha td {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #captcha,
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #wr_captcha {
    width: 100%;
    min-width: 0;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree td {
    min-height: 0;
    align-items: flex-start;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .text-center,
  .subpage[data-page-id="inqury01"] #bbsArea .search_wrap {
    margin-top: 2.5rem;
  }

  .subpage[data-page-id="inqury01"] #bbsArea #write_btn {
    width: min(100%, 12.5rem);
  }
}

/* product board */
.table_pd .inner .top {
  border: 0px;
}
.product-page #bbsArea.blog-wrap {
  display: grid;
  gap: 2.5rem;
}

.product-page #bbsArea :is(.category_wrap, .tags_wrap) {
  display: flex;
  justify-content: center;
  margin: 0;
  padding-bottom: 4rem;
}

.product-page #bbsArea :is(.category_wrap, .tags_wrap) ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0px !important;
}

.product-page #bbsArea :is(.category_wrap, .tags_wrap) li {
  margin: 0;
}

.product-page #bbsArea :is(.category_wrap, .tags_wrap) a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.875rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 3.375rem;
  background: #f3f4f6;
  color: #5e677b;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  transition: all 0.2s ease;
}

.product-page #bbsArea :is(.category_wrap, .tags_wrap) li.on a {
  border-color: #0d4e7c;
  background: #fff;
  color: #0d4e7c;
  font-weight: 500;
}

.product-page #bbsArea :is(.category_wrap, .tags_wrap) a:hover,
.product-page #bbsArea :is(.category_wrap, .tags_wrap) a:focus {
  border-color: #0d4e7c;
  background: #fff;
  color: #0d4e7c;
}

#bbsArea .board_wrapper {
  width: 100%;
}

.product-page #bbsArea #board_data_pd.table_pd {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

.product-page #bbsArea #board_data_pd.table_pd::before,
.product-page #bbsArea #board_data_pd.table_pd::after {
  display: none;
}

.product-page #bbsArea #board_data_pd.table_pd > dd {
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

#bbsArea #board_data_pd.table_pd > dd .inner {
  height: 100%;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.1);
}

#bbsArea #board_data_pd.table_pd > dd .inner:hover .top a .thumb {
  transform: scale(1.125);
}
.table_pd .inner .top a .thumb {
  transition: all 0.25s;
}
#bbsArea #board_data_pd.table_pd > dd .top {
  position: relative;
  height: 19.21875rem;
  border-bottom: 1px solid #eee;
  background: #fff;
}

#bbsArea #board_data_pd.table_pd > dd .top > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* padding: 2rem; */
}
#bbsArea #board_data_pd.table_pd > dd .bottom {
  margin-top: 0;
  padding: 1.875rem;
  display: grid;
  gap: 0.75rem;
}

#bbsArea #board_data_pd.table_pd .title {
  gap: 0.375rem;
  width: 100%;
  min-width: 0;
}

#bbsArea #board_data_pd.table_pd :is(.title .badge, .board-tags-box .board-tag-pill) {
  padding: 0;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.0125em;
}

#bbsArea #board_data_pd.table_pd .board-tags-box {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

#bbsArea .board_pd_view .pd_preview_wrap {
  margin-top: 20px !important;
}

#bbsArea .board_pd_view .pd_preview_wrap #pd_preview_text {
  line-height: 1.65;
}

#bbsArea #board_data_pd.table_pd .title a {
  display: block;
  width: 100%;
  min-width: 0;
  color: #2f2f2f;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#bbsArea #board_data_pd.table_pd .title a > span {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#bbsArea #board_data_pd.table_pd .title a > span:hover {
  color: #2f2f2f !important;
}

#bbsArea #board_data_pd.table_pd .title a:hover,
#bbsArea #board_data_pd.table_pd .title a:focus {
  color: #2f2f2f;
}

#bbsArea #board_data_pd.table_pd .pd_preview {
  width: 100%;
}

#bbsArea #board_data_pd.table_pd .pd_preview #pd_preview_text,
#bbsArea #board_data_pd.table_pd .pd_preview #pd_preview_text p {
  margin: 0;
  padding: 0;
  color: #999;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  white-space: normal;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-page #bbsArea #board_data_pd.table_pd .info,
.product-page #bbsArea #board_data_pd.table_pd .writer,
.product-page #bbsArea #board_data_pd.table_pd .regdate,
.product-page #bbsArea #board_data_pd.table_pd .hits {
  display: none !important;
}

#bbsArea .search_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 0;
}

#bbsArea .board_wrapper + .search_wrap,
#bbsArea .board_wrapper + .pagination_wrap {
  margin-block: 80px 40px;
}

#bbsArea .search_wrap #search_kind,
#bbsArea .search_wrap #search_query {
  height: 3rem;
  border: 1px solid #d9dde3;
  box-shadow: none;
}

#bbsArea .search_wrap #search_kind {
  min-width: 8.5rem;
}

#bbsArea .search_wrap #search_query {
  min-width: min(100%, 20rem);
}

#bbsArea .search_wrap > .btn,
#bbsArea .search_wrap > button.btn,
#bbsArea .search_wrap > input[type="submit"].btn {
  height: 3rem;
  background-color: #8d939e;
  border-color: #8d939e;
}

#bbsArea .search_wrap .write_btn_wrap {
  margin-left: 0;
  right: 0px !important;
}

#bbsArea .search_wrap .write_btn_wrap .btn {
  height: 3rem;
  background-color: #0d4e7c;
  border-color: #0d4e7c;
}

#bbsArea .table.board_write_table td select.form-control {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
}

#bbsArea .pagination_wrap li + li {
  margin: 0 !important;
}

#bbsArea .pagination_wrap li:not(.box) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

#bbsArea .pagination_wrap a {
  width: 2rem;
  height: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2f2f2f;
  border-radius: 9999px;
}

#bbsArea .pagination_wrap li.active a {
  width: 2rem;
  background-color: #0d4e7c;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

#bbsArea .pagination_wrap li:not(.active):not(.box) a:hover {
  background-color: #f3f4f6;
  color: #2f2f2f;
}

#bbsArea .pagination_wrap .box a {
  width: 2.125rem;
  height: 2rem;
  border: 0;
  border-radius: 9999px;
  color: #aaa;
  background: transparent;
}

#bbsArea .pagination_wrap .box a:hover {
  background-color: #f3f4f6;
}

.table_pd .inner .bottom .title {
  margin-bottom: 0;
}

.table_pd .inner .bottom .title a {
  letter-spacing: -0.016em;
}

@media (max-width: 1199.98px) {
  #bbsArea #board_data_pd.table_pd {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .product-page #bbsArea.blog-wrap {
    gap: 1.5rem;
  }

  .product-page #bbsArea :is(.category_wrap, .tags_wrap) {
    justify-content: flex-start;
  }

  .product-page #bbsArea #board_data_pd.table_pd {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-page #bbsArea #board_data_pd.table_pd > dd .top {
    height: 15rem;
  }

  .product-page #bbsArea #board_data_pd.table_pd > dd .bottom {
    padding: 1.25rem;
  }

  .product-page #bbsArea #board_data_pd.table_pd .title a {
    font-size: 1.125rem;
  }

  .product-page #bbsArea .search_wrap {
    justify-content: stretch;
  }

  .product-page #bbsArea .search_wrap #search_kind,
  .product-page #bbsArea .search_wrap #search_query,
  .product-page #bbsArea .search_wrap .btn,
  .product-page #bbsArea .search_wrap .write_btn_wrap {
    width: 100%;
  }
}

.company-page .co-head {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(4rem, 6vw, 5.625rem);
}

.company-page .co-head h2 {
  color: #2f2f2f;
  font-size: clamp(2.125rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
}

.company-page .co-loc {
  padding-top: clamp(5rem, 8vw, 6.875rem);
  padding-bottom: clamp(6.5rem, 11vw, 9.375rem);
}

.company-page .loc-body {
  display: grid;
  gap: clamp(2.5rem, 6vw, 3.75rem);
}

.company-page .loc-map {
  width: 100%;
  height: 30rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #575757;
}

.company-page .loc-map iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  aspect-ratio: auto;
  margin: 0;
  border: 0;
}

.company-page .loc-frame {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(0deg, rgba(87, 87, 87, 0.2), rgba(87, 87, 87, 0.2)),
    linear-gradient(135deg, #c4ccd3 0%, #8e99a4 100%);
}

.company-page .loc-copy {
  width: min(100%, 84.5rem);
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 4rem);
  display: grid;
  /* grid-template-columns: repeat(2, max-content); */
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.company-page .loc-copy h3 {
  grid-column: 1 / -1;
  color: #2f2f2f;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.company-page .loc-copy > div:not(:has(.loc-info)) {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-width: 0;
}

.company-page .loc-copy > div:not(:has(.loc-info)) > div {
  display: flex;
  align-items: center;
}

.company-page .loc-copy > div:not(:has(.loc-info)) dl {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.company-page .loc-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(1.5rem, 4vw, 3.125rem);
  width: 100%;
  margin: 0;
  padding: 0;
}

.company-page .loc-copy > div:not(:has(.loc-info)) dt,
.company-page .loc-info > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0.75rem;
  white-space: nowrap;
}

.company-page .loc-copy > div:not(:has(.loc-info)) dt,
.company-page .loc-info dt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: #2f2f2f;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

.company-page .loc-copy > div:not(:has(.loc-info)) dd,
.company-page .loc-info dd {
  display: flex;
  align-items: center;
  margin: 0;
  color: #6b7280;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.company-page .loc-icon {
  width: 1.875rem;
  height: 1.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #026ea8;
  color: #fff;
  font-size: 1rem;
  font-variation-settings: var(--gms-400-fill);
}

@media (max-width: 767.98px) {
  .company-page .co-head {
    padding-bottom: 3.5rem;
  }

  .company-page .co-loc {
    padding-top: 5rem;
    padding-bottom: 5.625rem;
  }

  .company-page .loc-map {
    height: clamp(18rem, 62vw, 22rem);
  }

  .company-page .loc-copy {
    width: 100%;
    padding-inline: 0;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .company-page .loc-copy h3 {
    font-size: 1rem;
  }

  .company-page .loc-copy > div:not(:has(.loc-info)),
  .company-page .loc-info {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .company-page .loc-copy > div:not(:has(.loc-info)) > div,
  .company-page .loc-info > div {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }
}

/* Mobile optimization layer */
html,
body {
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  :root {
    --main-space: clamp(4.5rem, 10vw, 6rem);
    --main-title: clamp(2.125rem, 7vw, 2.875rem);
    --main-text-lg: clamp(0.9375rem, 3vw, 1.125rem);
  }

  .wrap,
  #mainCarouselSwiper .swiper-caption,
  #mainCarouselSwiper .swiper-indicators-wrap {
    width: min(100% - 3rem, var(--main-wrap));
    max-width: var(--main-wrap);
  }

  .section,
  .section.product,
  .section.newsletter,
  .section.validation,
  .section.board {
    padding-block: var(--main-space);
  }

  .section.board {
    padding-inline: 0;
  }

  .title,
  .validation-title,
  .main-board-slot .page-header h4 {
    line-height: 1.2;
  }

  .validation-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .validation-card-list,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .board-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
}

@media (max-width: 767.98px) {
  :root {
    --navbar-height: 4.25rem;
    --main-space: 4.5rem;
  }

  .wrap,
  #mainCarouselSwiper .swiper-caption,
  #mainCarouselSwiper .swiper-indicators-wrap {
    width: min(100% - 2rem, var(--main-wrap));
    padding-inline: 0;
  }

  .navbar .container {
    width: 100%;
    padding-inline: 1rem;
  }

  .sub-top {
    min-height: 23rem;
  }

  .sub-top-title {
    width: min(100% - 2rem, var(--main-wrap));
  }

  .sub-top-title h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.15;
  }

  .sub-top-nav ul {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .sub-top-nav li {
    flex: 1 0 auto;
    min-width: 9rem;
  }

  .sub-top-nav a {
    min-height: 3.25rem;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .section.newsletter,
  .section.validation,
  .section.board {
    padding-block: 4.5rem;
  }

  .section.board {
    padding-inline: 1rem;
  }

  .product-head,
  .main-board-slot .page-header,
  .co-head {
    margin-bottom: 2.5rem;
  }

  .product-grid,
  .validation-card-list,
  .main-board-slot .table_blog.type_thumb {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-board-slot .board_box_blog {
    gap: 2.5rem;
  }

  .main-board-slot .table_blog.type_thumb dd .left span.thumb,
  .main-board-slot .table_blog.type_thumb dd .left img.thumb {
    height: auto;
    aspect-ratio: 423 / 280;
  }

  .main-board-slot .main-board-more,
  .link-btn {
    min-width: 9.5rem;
    min-height: 3rem;
    padding: 0.875rem 1.125rem;
  }

  .validation-copy {
    gap: 2rem;
  }

  .validation-benefits {
    padding-bottom: 0;
  }

  .validation-card {
    min-height: 11.5rem;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .validation-card::before {
    width: 11rem;
    height: 11.75rem;
    border-top-right-radius: 6rem;
  }

  .board-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .board-icon {
    display: none;
  }

  .board-card + .board-card {
    padding-top: 2rem;
    margin-top: 2rem;
  }

  #bbsArea .search_wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  #bbsArea .search_wrap #search_kind,
  #bbsArea .search_wrap #search_query,
  #bbsArea .search_wrap .btn,
  #bbsArea .search_wrap .write_btn_wrap {
    width: 100%;
    max-width: 100%;
  }

  .notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd {
    flex-direction: column;
  }

  .notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .left,
  .notice-page[data-page-id="notice03"] #bbsArea .board_blog_list .table_blog dd .right {
    width: 100%;
    flex-basis: auto;
  }

  .company-page .loc-map {
    height: 18rem;
  }

  .company-page .loc-copy {
    gap: 1rem;
  }

  .company-page .loc-copy > div:not(:has(.loc-info)) dl {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody {
    gap: 1.25rem;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr th {
    margin-bottom: 0.5rem;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_2 td,
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_3 td,
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_4 td {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem 1rem;
    min-height: 0;
    padding-top: 0.25rem;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(.radio-inline, .checkbox-inline) {
    margin: 0 !important;
    padding-left: 0 !important;
    line-height: 1.4;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(.radio-inline label, .checkbox-inline label, .radio label, .checkbox label) {
    display: inline-flex;
    align-items: center;
    min-height: 1.5rem;
    margin: 0;
    padding-left: 0 !important;
    line-height: 1.4;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_radio + span,
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_checkbox + span {
    padding-left: 1.375rem;
    gap: 0;
    line-height: 1.4;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_radio + span::before,
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_checkbox + span::before {
    left: 0;
    top: 0.7em;
    transform: translateY(-50%);
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table .custom_checkbox:checked + span::after {
    left: 0;
    top: 0.7em;
    transform: translateY(-50%);
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree .custom_checkbox + span {
    padding-left: 1.875rem;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_agree label {
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .wrap,
  #mainCarouselSwiper .swiper-caption,
  #mainCarouselSwiper .swiper-indicators-wrap {
    width: min(100% - 1.5rem, var(--main-wrap));
  }

  .title br,
  .desc br,
  .board-desc br {
    display: none;
  }

  .eyebrow,
  .main-board-slot .page-header h4::before {
    font-size: 1rem;
  }

  .title,
  .main-board-slot .page-header h4,
  .validation-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .product-name,
  .board-title,
  .validation-card h3 {
    font-size: 1.125rem;
  }

  .company-page .loc-copy h3 {
    font-size: 0.9375rem;
    word-break: keep-all;
  }

  .company-page .loc-copy > div:not(:has(.loc-info)) dt,
  .company-page .loc-copy > div:not(:has(.loc-info)) dd {
    font-size: 1rem;
  }
}

/* Inquiry form control cleanup */
.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(#item_2, #item_3) td {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0.75rem 1.25rem !important;
  min-height: 0 !important;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(#item_2, #item_3) td :is(.radio-inline, .checkbox-inline, .radio, .checkbox) {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(#item_2, #item_3) td label {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 1.5rem !important;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 0 0 1.375rem !important;
  color: inherit;
  font: inherit;
  line-height: inherit !important;
  white-space: nowrap;
  cursor: pointer;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(#item_2, #item_3) td label > span {
  display: inline !important;
  min-height: 0 !important;
  padding: 0 !important;
  color: inherit;
  line-height: 22px !important;
  margin-left: 20px !important;
  overflow-wrap: anywhere;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(#item_2, #item_3) td input:is([type="radio"], [type="checkbox"]) {
  position: absolute !important;
  left: 0.125rem !important;
  top: 50% !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  appearance: none !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  transform: translateY(-50%) !important;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(#item_2, #item_3) td :is(.custom_radio, .custom_checkbox) + span::before,
.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(#item_2, #item_3) td :is(.custom_radio, .custom_checkbox) + span::after {
  content: none !important;
  display: none !important;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(#item_2, #item_3) td label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #aaa;
  box-sizing: border-box;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_2 td label::before {
  border-radius: 50%;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_2 td label:has(input[type="radio"]:checked)::before {
  border-color: #026ea8;
  background: radial-gradient(circle at center, #fff 0 0.1875rem, #026ea8 0.21875rem 100%);
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_3 td label::before {
  border-radius: 0.125rem;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_3 td label:has(input[type="checkbox"]:checked)::before {
  border-color: #026ea8;
  background: #026ea8;
}

.subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_3 td label:has(input[type="checkbox"]:checked)::after {
  content: "check";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Material Symbols Outlined";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media (max-width: 767.98px) {
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(#item_2, #item_3) td {
    gap: 0.625rem 1rem !important;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_2 td label {
    flex: 0 1 auto;
    white-space: normal;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_3 td :is(.checkbox-inline, .checkbox),
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_3 td label {
    flex: 0 1 calc(50% - 0.5rem);
    min-width: 7.5rem;
    white-space: normal;
  }
}

@media (max-width: 575.98px) {
  .subpage[data-page-id="inqury01"] .iq-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .subpage[data-page-id="inqury01"] .iq-head h2 {
    font-size: 1.75rem;
  }

  .subpage[data-page-id="inqury01"] .iq-box {
    padding: 1.25rem 1rem;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody {
    gap: 1.25rem;
  }
}

@media (max-width: 380px) {
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_3 td :is(.checkbox-inline, .checkbox),
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table #item_3 td label {
    flex-basis: 100%;
  }
}

@media (max-width: 767.98px) {
  .subpage[data-page-id="inqury01"] .iq-box,
  .subpage[data-page-id="inqury01"] #bbsArea,
  .subpage[data-page-id="inqury01"] #bbsArea .board_wrapper,
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody,
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tr,
  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table :is(th, td) {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr th {
    justify-content: flex-start;
    padding-left: 0 !important;
    text-indent: 0;
  }

  .subpage[data-page-id="inqury01"]
    #bbsArea
    .table.board_write_table
    :is(input[type="text"], input[type="email"], input[type="tel"], select, textarea) {
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

/* Global responsive refinements */
#site,
.subpage,
.mainpage,
.wrap,
#bbsArea,
#bbsArea .board_wrapper {
  min-width: 0;
}

.subpage :is(img, video, iframe, table),
#bbsArea :is(img, video, iframe, table) {
  max-width: 100%;
}

.subpage :is(.wrap, [class*="container"], [class*="-grid"], [class*="-body"], [class*="-copy"], [class*="-card"]),
#bbsArea :is(.board_wrapper, .search_wrap, .pagination_wrap, [class*="_wrap"], [class*="-wrap"]) {
  min-width: 0;
}

.subpage :is(p, li, dd, td, th, h1, h2, h3, h4, h5, h6),
#bbsArea :is(p, li, dd, td, th, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

.sub-top-nav {
  min-width: 0;
}

.sub-top-nav ul {
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.sub-top-nav a {
  white-space: normal;
  word-break: keep-all;
}

@media (max-width: 1199.98px) {
  .cert-wrap,
  .partner-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-wrap,
  .row-wrap,
  .greet-wrap {
    flex-wrap: wrap;
  }

  .process-wrap > *,
  .row-wrap > *,
  .greet-wrap > * {
    min-width: min(100%, 18rem);
  }
}

@media (max-width: 991.98px) {
  .subpage section {
    padding: 5rem 0 6.5rem;
  }

  .subpage section:nth-child(even) {
    padding-top: 0;
  }

  .subpage .title-h3 {
    margin-bottom: 3.5rem;
  }

  .box-wrap .col {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .map-wrap .info {
    flex-wrap: wrap;
  }

  .map-wrap .addr + li {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .subpage-header {
    height: 14rem;
  }

  .subpage-title h2 {
    font-size: clamp(2rem, 10vw, 2.875rem);
  }

  .subpage section {
    padding: 4rem 0 5rem;
    min-height: 0;
  }

  .subpage [class*="-wrap"] + [class*="-wrap"] {
    margin-top: 3rem;
  }

  .subpage .title-h3 {
    --h-font-size: clamp(1.875rem, 9vw, 2.5rem);
    --p-font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .subpage .title-h4 {
    --h-font-size: 1.5rem;
    --p-font-size: 0.9375rem;
    --title-between: 3rem;
  }

  .subpage .title-h5 {
    --h-font-size: 1.125rem;
  }

  .sub-top {
    min-height: 18rem;
  }

  .sub-top-nav {
    overflow: hidden;
  }

  .sub-top-nav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .sub-top-nav li {
    scroll-snap-align: start;
  }

  .sub-top-nav a {
    min-width: max-content;
    line-height: 1.35;
  }

  .snb ul {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .snb li {
    flex: 0 0 auto;
    min-width: 8rem;
  }

  .snb a {
    height: 3.25rem;
    padding-inline: 1rem;
    font-size: 0.9375rem;
  }

  .cert-wrap,
  .partner-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .greet-wrap,
  .row-wrap,
  .map-wrap .info,
  .process-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-wrap .arrow {
    display: none;
  }

  .map-wrap iframe {
    height: 18rem;
  }

  .map-wrap li,
  .map-wrap li.addr {
    font-size: 1rem;
  }

  #bbsArea :is(.table, .table_default, .table_list, .table_notice) {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #bbsArea :is(.category_wrap, .tags_wrap) ul,
  #bbsArea .pagination_wrap ul {
    /* justify-content: flex-start; */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #bbsArea .pagination_wrap a {
    flex: 0 0 auto;
  }
}

@media (max-width: 575.98px) {
  .wrap,
  .subpage .wrap,
  .subpage [class*="container"] {
    width: min(100% - 1.5rem, var(--main-wrap));
  }

  .sub-top {
    min-height: 16rem;
  }

  .sub-top-title {
    width: min(100% - 1.5rem, var(--main-wrap));
  }

  .sub-top-title h1 {
    font-size: clamp(2rem, 11vw, 2.5rem);
  }

  .sub-top-nav li {
    min-width: 7.5rem;
  }

  .sub-top-nav a {
    min-height: 3rem;
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
  }

  .box-wrap .col,
  .cert-wrap .img-box,
  .partner-wrap .col {
    padding-inline: 1rem;
  }

  #bbsArea .search_wrap {
    margin-top: 2rem;
  }

  .section.board {
    padding-inline: 1rem;
  }

  footer .footer-wrap {
    padding-inline: 1rem;
  }
}

/* Main visual slide responsive refinements */
@media (max-width: 767.98px) {
  #mainCarouselSwiper,
  #mainCarouselSwiper .swiper-slide {
    min-height: clamp(31rem, 74svh, 42rem);
  }

  #mainCarouselSwiper .swiper-slide {
    height: clamp(31rem, 74svh, 42rem);
    align-items: stretch;
  }

  #mainCarouselSwiper .swiper-bg img {
    object-position: 58% center;
  }

  #mainCarouselSwiper .swiper-caption {
    width: min(100% - 2rem, var(--main-wrap));
    min-height: 100%;
    padding-top: 4rem;
    padding-bottom: clamp(2.5rem, 9vw, 4rem);
    justify-content: flex-end;
    overflow: hidden;
  }

  #mainCarouselSwiper .swiper-caption h1 {
    max-width: min(100%, 34rem);
    margin-bottom: 1.25rem;
    font-size: clamp(2.25rem, 9.5vw, 3.25rem);
    line-height: 1.18;
    overflow-wrap: break-word;
    word-break: keep-all;
  }

  #mainCarouselSwiper .swiper-caption p {
    max-width: min(100%, 32rem);
    font-size: clamp(0.9375rem, 3.9vw, 1.125rem);
    line-height: 1.55;
    overflow-wrap: break-word;
    word-break: keep-all;
  }

  #mainCarouselSwiper .swiper-caption span {
    white-space: normal;
  }
}

@media (max-width: 575.98px) {
  #mainCarouselSwiper,
  #mainCarouselSwiper .swiper-slide {
    min-height: clamp(28rem, 70svh, 36rem);
  }

  #mainCarouselSwiper .swiper-slide {
    height: clamp(28rem, 70svh, 36rem);
  }

  #mainCarouselSwiper .swiper-bg img {
    object-position: 62% center;
  }

  #mainCarouselSwiper .swiper-caption {
    width: min(100% - 1.5rem, var(--main-wrap));
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  #mainCarouselSwiper .swiper-caption h1 {
    max-width: 100%;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.16;
  }

  #mainCarouselSwiper .swiper-caption p {
    max-width: 100%;
    font-size: 0.9375rem;
  }
}

@media (max-width: 380px) {
  #mainCarouselSwiper .swiper-caption h1 {
    font-size: clamp(1.75rem, 9vw, 2.125rem);
  }
}

@media (max-width: 767.98px) {
  body.aos-mobile-disabled [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table {
    overflow-x: hidden !important;
    overflow-y: hidden;
  }

  .subpage[data-page-id="inqury01"] #bbsArea .table.board_write_table tbody tr th {
    padding-left: 0 !important;
  }

  .notice-page #bbsArea :is(.table_notice, .table_list, .table_default):not(.board_write_table) {
    display: table !important;
    overflow-x: visible !important;
  }
}
